diff --git a/frontend/web-ui/.gitignore b/frontend/web-ui/.gitignore new file mode 100644 index 0000000..36ccc0d --- /dev/null +++ b/frontend/web-ui/.gitignore @@ -0,0 +1,32 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local +.env +.env.* + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +deploy.sh +jfrog.txt +json-server +temp +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? +.env.* +.env diff --git a/frontend/web-ui/.storybook/main.ts b/frontend/web-ui/.storybook/main.ts new file mode 100644 index 0000000..252c011 --- /dev/null +++ b/frontend/web-ui/.storybook/main.ts @@ -0,0 +1,18 @@ +import type { StorybookConfig } from '@storybook/react-vite'; + +const config: StorybookConfig = { + "stories": [ + "../src/**/*.mdx", + "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)" + ], + "addons": [ + "@chromatic-com/storybook", + "@storybook/addon-docs", + "@storybook/addon-onboarding" + ], + "framework": { + "name": "@storybook/react-vite", + "options": {} + } +}; +export default config; \ No newline at end of file diff --git a/frontend/web-ui/.storybook/preview.ts b/frontend/web-ui/.storybook/preview.ts new file mode 100644 index 0000000..dffe4af --- /dev/null +++ b/frontend/web-ui/.storybook/preview.ts @@ -0,0 +1,24 @@ +import type { Preview } from '@storybook/react-vite' +import React from 'react' +import { Provider } from 'react-redux' +import { store } from '../src/store' + +const preview: Preview = { + parameters: { + controls: { + matchers: { + color: /(background|color)$/i, + date: /Date$/i, + }, + }, + }, + decorators: [ + (Story) => React.createElement( + Provider, + { store }, + React.createElement(Story) + ), + ], +}; + +export default preview; \ No newline at end of file diff --git a/frontend/web-ui/Dockerfile b/frontend/web-ui/Dockerfile new file mode 100644 index 0000000..75230e4 --- /dev/null +++ b/frontend/web-ui/Dockerfile @@ -0,0 +1,42 @@ +# Node build stage +FROM node:alpine3.21 AS build +WORKDIR /app + +# Copy .npmrc for private registry configuration +COPY .npmrc ./ + +# Copy package files for dependency installation +COPY package*.json ./ + +# Install dependencies +RUN npm install + +# Copy source code and configuration files +COPY . . + +# Build the application +RUN npm run build + +# Nginx production stage +FROM nginx:1.27-alpine +WORKDIR /usr/share/nginx/html + +# Remove default nginx content +RUN rm -rf ./* + +# Copy built application from build stage +COPY --from=build /app/dist . + +# Set proper permissions for nginx to read files +RUN chmod -R 755 /usr/share/nginx/html + +# Copy nginx configuration and mime types +COPY nginx.conf /etc/nginx/nginx.conf +COPY mime.types /etc/nginx/mime.types + +# Expose the port that nginx is configured to listen on +EXPOSE 5173 + +# Start nginx +ENTRYPOINT ["nginx", "-g", "daemon off;"] + \ No newline at end of file diff --git a/frontend/web-ui/README.md b/frontend/web-ui/README.md new file mode 100644 index 0000000..48e8748 --- /dev/null +++ b/frontend/web-ui/README.md @@ -0,0 +1,321 @@ +# 🏢 Property Tax Web UI + +## 📋 Project Title & Description + +**Property Tax Web UI** + +A modern frontend application for managing and viewing property tax information. + +This platform empowers municipal staff, commissioners, and service managers to: +- 🔐 **Role-based Authentication:** Secure access using Keycloak OAuth 2.0. +- 🏠 **Property & Application Management:** View, search, and manage property tax applications. +- 👨‍💼 **Agent Assignment:** Assign agents to applications and manage priorities. +- 📊 **Dashboards:** Commissioner and Service Manager dashboards for workflow insights. +- 🗺️ **Interactive Maps:** Visualize property locations and jurisdiction zones. +- 💻 **Responsive UI:** Built with Material-UI and custom styles for optimal user experience. +- 📚 **Component Library:** Storybook integration for reusable UI components. +- 🔗 **API Integration:** Connects to multiple microservices for data, onboarding, and file storage. +- 🚀 **Production-ready Deployment:** Docker and Rancher Kubernetes support. +The UI is designed for efficiency, clarity, and scalability, making property tax management seamless for local government teams and stakeholders. + + +## 🛠️ Tech Stack + +- ⚛️ React 19 (TypeScript) +- ⚡ Vite (Build tool) +- 🎨 CSS (with custom styles, no CSS framework) +- 🧩 Storybook (UI component development) +- 🧹 ESLint (Linting, Flat config) +- 📦 npm (Package manager) +- 🗺️ Leaflet & React-Leaflet (interactive maps) +- 🗃️ Redux Toolkit (state management) +- 🧪 Zod (schema validation) +- 🧰 Docker (containerization for app and Storybook) +- 🗂️ MSW (Mock Service Worker for API mocking in development and Storybook) + +--- + +## 📋 Prerequisites + + +- **🟢 Node.js:** v18.x or higher recommended +- **📦 npm:** v9.x or higher (comes with Node.js) +- No global dependencies required + + + +--- + +## 🚀 Installation + +```sh +git clone +cd property-tax-web-ui +npm install +``` + + +--- + +## 🚀 Running the Project + + +### 🛠️ Development mode + +```sh +npm run dev +``` +- Starts the Vite development server at http://localhost:5174. + + +### 🏗️ Build for production + +```sh +npm run build +``` +- Builds the app for production (output in `dist/`). + + +### 👀 Preview production build + +```sh +npm run preview +``` +- Serves the production build locally for testing. + +### 📚 Run Storybook for UI components + +```sh +npm run storybook +``` +- 🧩 Starts Storybook for interactive UI component development and testing. + +### 🏗️ Build Storybook static files + +```sh +npm run build-storybook +``` +- 🏗️ Builds static Storybook files for deployment or static hosting. + +--- + +## Environment Variables + +Set the following environment variables in a `.env` file at the project root to connect with microservices and authentication providers: + +```env +VITE_ENUMERATION_HOST="" +VITE_TENANT_ID="" +VITE_FILESTORE_HOST="" +VITE_ONBOARDING_HOST="" +VITE_KEYCLOAK_URL="" +VITE_KEYCLOAK_REALM="" +VITE_KEYCLOAK_CLIENT_ID="" +VITE_KEYCLOAK_CLIENT_SECRET="" +VITE_KEYCLOAK_SCOPE="" +``` + +## 🗂️ Project Structure + +``` +src/ + App.tsx + index.css + main.tsx + app/ + global.css + components/ + JurisdictionDropdown/ + Pagination/ + profile-modal/ + Sidebar/ + features/ + comissioner-app-features/ + Com_DashBoard/ + login-signup/ + service-manager-app-features/ + pages/ + commisioner-pages/ + Login-SignUp/ + map-pages/ + service-manager-pages/ + routes/ + styles/ + lib/ + store/ + stories/ + utils/ + assets/ +docker-files/ + application/ + storybook/ +json-server/ + application_view/ + SearchPropertyAndApplicationInbox/ + ServiceManagerDashboard/ +public/ + wards.geojson +scripts/ + validate-geojson.ts +``` + + +--- + +## 📜 Scripts + +- `npm start` → Start development server +- `npm run build` → Build production bundle +- `npm run lint` → Run linter + +--- + +## 🎨 Styling & UI + +- Custom CSS (see `src/app/styles/`) +- No CSS framework (e.g., Tailwind, SCSS) is used by default +- Theme configuration can be added as needed + +--- + +## 🔗 API Integration + + +All API logic is organized under: + +- `src/app/features/[feature]/api/` + +Each feature package contains its own `api` folder, where all related API calls and services are defined and maintained for modularity and clarity. + +Example usage: + +```js +import { getAllApplications } from "src/app/features/service-manager-app-features/all-applications/api/allApplicationApi"; + +getAllApplications().then(data => console.log(data)); +``` + +API endpoints and integration details can be configured in the `.env` file and are used throughout these API modules. + + +## 🧑‍💼 Service Manager Module in DIGIT 3.0 + +The Service Manager module is designed for efficient management and supervision of property verification and application workflows. Service Managers can assign agents, monitor application statuses, review property details, and manage workload distribution. The interface is optimized for desktop use, providing a dashboard overview, application tracking, and agent management features. + + + +## ✨ Features of Each Page + +### 1. 🏠 Dashboard +- **🔑 Access:** Upon login, the Service Manager is directed to the Dashboard. +- **📝 Recent Applications:** + - Displays a list of the most recent property applications with their status (🔴 High/🟡 Medium/🟢 Low priority), date, and time. + - Each application card shows property name, application number, and a quick link to 🗺️ view location or 👨‍💼 assign agent. +- **📇 Agent Directory:** + - Search and filter agents by ward. + - View agent availability (🟢 Online/🌴 On Leave/⚪ Not Available), assigned wards, and total cases. + - Assign new applications to available agents directly from the dashboard. +- **🔗 Navigation:** + - Click **View All** to navigate to the All Applications page. +- **🖼️ Screenshot Reference:** `SM_Dashboard.png` + +### 2. 🗃️ All Applications +- **🔓 Access:** Click "View All" on the Dashboard or select "All Applications" from the sidebar. +- **📋 Application List:** + - Shows all property applications under enumeration and verification. + - Each card displays property name, application number, address, date/time, type, and status. + - Actions: 🌟 Set Priority, 👨‍💼 Assign Agent, and 🗺️ view property map. +- **🔍 Search & Filter:** + - Search by Application No. or property name. + - Sort applications by date (🆕 New-Old, 🕒 Old-New). +- **🚦 Status Indicators:** + - Due dates, assigned agent, and priority are visually highlighted. +- **🔗 Navigation:** + - Click on any application card to open the Application View. +- **🖼️ Screenshot Reference:** `SM_All_application.png` + +### 3. 🔍 Application View +- **🔓 Access:** Click any application in All Applications or Dashboard. +- **🗺️ Map Section:** + - Shows property location with options to ✏️ edit location or polygon. + - ▶️ Start/✅ Finish buttons for workflow actions. +- **🗂️ Tabs:** + - **📑 Property Details:** + - Owner information, IGSR details, property and assessment details. + - Editable fields for updating property data. + - **📄 Documents:** + - List of all uploaded documents (e.g., Sale Deed, Permission, Property Card). + - Document status (✅ Verified, ❌ Rejected, ⏳ Pending), 🡇 download, and 👁️ view options. + - Filter by document type (e.g., 👤 Citizen). + - **💧 Services and Utilities:** + - (Currently not used) + - **📜 Change Log:** + - Application history, previous actions, and downloadable logs. + - 👀 Preview application from logs. +- **📊 Track Application:** + - Timeline of application progress, inspection, comments, and document uploads. + - 📎 Downloadable files and ➕ add comment option. +- **🖼️ Screenshot References:** + - Property Details: `SM_Application View.jpg` + - Documents: `SM_application View.png` + - Change Log: `SM_application chnages.png` + +### 4. 🏡 Search Property +- **🔓 Access:** Select "Search Property" from the sidebar. +- **🔍 Search & Filter:** + - Search properties by property number or other criteria. + - Filter and sort results by date. +- **🗺️ Map View:** + - Visual map for quick property location reference. +- **📋 Property List:** + - Each card shows property name, application number, address, and assigned agent. + - Quick link to 👁️ view property details and location. +- **🖼️ Screenshot Reference:** `SM_Search.png` + +### 5. 📥 Application Inbox +- **🔓 Access:** Select "Application Inbox" from the sidebar. +- **🏡 Property Selection:** + - List of property applications with status (🔴 High/🟡 Medium/🟢 Low), due date, and assigned agent. + - Select one or more properties for reassignment. +- **🔍 Filter & Search:** + - Search by property name or application number. + - Filter by status or ward. +- **🔄 Reassignment:** + - Select new agent, provide reason for reassignment, and notify agent via 📲 SMS. + - 🔁 Reassign property with a single click. +- **🖼️ Screenshot Reference:** `SM_assign page` + +--- + +## 🧭 Service Manager Workflow and Navigation (Brief) + +The Service Manager workflow is designed for efficiency and clarity, using a sidebar-driven navigation system: + +1. **🔑 Login & Dashboard:** + - After login, the Service Manager lands on the 🏠 Dashboard, which provides an overview of recent applications and agent availability. + +2. **🗃️ All Applications:** + - Clicking "View All" or selecting "All Applications" from the sidebar displays the full list of property applications, with options to search, filter, set priority, and assign agents. + +3. **🔍 Application View:** + - Selecting any application opens a detailed view with tabs for 📑 Property Details, 📄 Documents, 💧 Services and Utilities (not used yet), and 📜 Change Log. All relevant information and actions for the application are accessible here. + +4. **☰ Sidebar Navigation:** + - The sidebar allows quick access to: + - 🏠 **Dashboard** + - 🗃️ **All Applications** + - 🏡 **Search Property** (search and filter properties, view on map) + - 📥 **Application Inbox** (manage and reassign applications) + +This structure ensures that Service Managers can efficiently monitor, assign, and track property applications, with all major actions accessible in just a few clicks. + + +## 📝 Notes + +- The "💧 Services and Utilities" tab in Application View is currently not in use. +- All navigation is sidebar-driven for quick access to main modules. +- 👨‍💼 Agent assignment and workload management are core features for Service Managers. + +**🛠️ Note:** Some features and pages are under development and will be documented as they are completed. + + diff --git a/frontend/web-ui/docker-files/application/Dockerfile b/frontend/web-ui/docker-files/application/Dockerfile new file mode 100644 index 0000000..75230e4 --- /dev/null +++ b/frontend/web-ui/docker-files/application/Dockerfile @@ -0,0 +1,42 @@ +# Node build stage +FROM node:alpine3.21 AS build +WORKDIR /app + +# Copy .npmrc for private registry configuration +COPY .npmrc ./ + +# Copy package files for dependency installation +COPY package*.json ./ + +# Install dependencies +RUN npm install + +# Copy source code and configuration files +COPY . . + +# Build the application +RUN npm run build + +# Nginx production stage +FROM nginx:1.27-alpine +WORKDIR /usr/share/nginx/html + +# Remove default nginx content +RUN rm -rf ./* + +# Copy built application from build stage +COPY --from=build /app/dist . + +# Set proper permissions for nginx to read files +RUN chmod -R 755 /usr/share/nginx/html + +# Copy nginx configuration and mime types +COPY nginx.conf /etc/nginx/nginx.conf +COPY mime.types /etc/nginx/mime.types + +# Expose the port that nginx is configured to listen on +EXPOSE 5173 + +# Start nginx +ENTRYPOINT ["nginx", "-g", "daemon off;"] + \ No newline at end of file diff --git a/frontend/web-ui/docker-files/storybook/Dockerfile b/frontend/web-ui/docker-files/storybook/Dockerfile new file mode 100644 index 0000000..726b252 --- /dev/null +++ b/frontend/web-ui/docker-files/storybook/Dockerfile @@ -0,0 +1,44 @@ +# Node build stage +FROM node:alpine3.21 AS node +WORKDIR /storybook-app + +# Copy only necessary package files +COPY package*.json ./ +COPY .npmrc ./ + +# Install dependencies +RUN npm install -g typescript +RUN npm install + +# Copy only Storybook-related files +COPY .storybook/ ./.storybook/ +COPY src/ ./src/ +COPY tsconfig*.json ./ +COPY vite.config.ts ./ + +# Build Storybook +RUN npm run build-storybook + +# Nginx production stage +FROM nginx:1.27 +WORKDIR /usr/share/nginx/html + +# Remove default nginx content +RUN rm -rf ./* + +# Copy built Storybook from node stage +COPY --from=node /storybook-app/storybook-static . + +# Set proper permissions for nginx to read files +RUN chmod -R 755 /usr/share/nginx/html + +# Copy nginx configuration and mime types +COPY nginx.conf /etc/nginx/nginx.conf +COPY mime.types /etc/nginx/mime.types + +# Expose the port that nginx is configured to listen on +EXPOSE 5173 + +# Start nginx +ENTRYPOINT ["nginx", "-g", "daemon off;"] + \ No newline at end of file diff --git a/frontend/web-ui/eslint.config.js b/frontend/web-ui/eslint.config.js new file mode 100644 index 0000000..69f9d84 --- /dev/null +++ b/frontend/web-ui/eslint.config.js @@ -0,0 +1,26 @@ +// For more info, see https://github.com/storybookjs/eslint-plugin-storybook#configuration-flat-config-format +import storybook from "eslint-plugin-storybook"; + +import js from '@eslint/js' +import globals from 'globals' +import reactHooks from 'eslint-plugin-react-hooks' +import reactRefresh from 'eslint-plugin-react-refresh' +import tseslint from 'typescript-eslint' +import { defineConfig, globalIgnores } from 'eslint/config' + +export default defineConfig([ + globalIgnores(['dist']), + { + files: ['**/*.{ts,tsx}'], + extends: [ + js.configs.recommended, + tseslint.configs.recommended, + reactHooks.configs['recommended-latest'], + reactRefresh.configs.vite, + ], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + }, +]) diff --git a/frontend/web-ui/index.html b/frontend/web-ui/index.html new file mode 100644 index 0000000..005fc3b --- /dev/null +++ b/frontend/web-ui/index.html @@ -0,0 +1,14 @@ + + + + + + + + Property Tax Portal + + +
+ + + \ No newline at end of file diff --git a/frontend/web-ui/mime.types b/frontend/web-ui/mime.types new file mode 100644 index 0000000..1c00d70 --- /dev/null +++ b/frontend/web-ui/mime.types @@ -0,0 +1,99 @@ + +types { + text/html html htm shtml; + text/css css; + text/xml xml; + image/gif gif; + image/jpeg jpeg jpg; + application/javascript js; + application/atom+xml atom; + application/rss+xml rss; + + text/mathml mml; + text/plain txt; + text/vnd.sun.j2me.app-descriptor jad; + text/vnd.wap.wml wml; + text/x-component htc; + + image/avif avif; + image/png png; + image/svg+xml svg svgz; + image/tiff tif tiff; + image/vnd.wap.wbmp wbmp; + image/webp webp; + image/x-icon ico; + image/x-jng jng; + image/x-ms-bmp bmp; + + font/woff woff; + font/woff2 woff2; + + application/java-archive jar war ear; + application/json json; + application/mac-binhex40 hqx; + application/msword doc; + application/pdf pdf; + application/postscript ps eps ai; + application/rtf rtf; + application/vnd.apple.mpegurl m3u8; + application/vnd.google-earth.kml+xml kml; + application/vnd.google-earth.kmz kmz; + application/vnd.ms-excel xls; + application/vnd.ms-fontobject eot; + application/vnd.ms-powerpoint ppt; + application/vnd.oasis.opendocument.graphics odg; + application/vnd.oasis.opendocument.presentation odp; + application/vnd.oasis.opendocument.spreadsheet ods; + application/vnd.oasis.opendocument.text odt; + application/vnd.openxmlformats-officedocument.presentationml.presentation + pptx; + application/vnd.openxmlformats-officedocument.spreadsheetml.sheet + xlsx; + application/vnd.openxmlformats-officedocument.wordprocessingml.document + docx; + application/vnd.wap.wmlc wmlc; + application/wasm wasm; + application/x-7z-compressed 7z; + application/x-cocoa cco; + application/x-java-archive-diff jardiff; + application/x-java-jnlp-file jnlp; + application/x-makeself run; + application/x-perl pl pm; + application/x-pilot prc pdb; + application/x-rar-compressed rar; + application/x-redhat-package-manager rpm; + application/x-sea sea; + application/x-shockwave-flash swf; + application/x-stuffit sit; + application/x-tcl tcl tk; + application/x-x509-ca-cert der pem crt; + application/x-xpinstall xpi; + application/xhtml+xml xhtml; + application/xspf+xml xspf; + application/zip zip; + + application/octet-stream bin exe dll; + application/octet-stream deb; + application/octet-stream dmg; + application/octet-stream iso img; + application/octet-stream msi msp msm; + + audio/midi mid midi kar; + audio/mpeg mp3; + audio/ogg ogg; + audio/x-m4a m4a; + audio/x-realaudio ra; + + video/3gpp 3gpp 3gp; + video/mp2t ts; + video/mp4 mp4; + video/mpeg mpeg mpg; + video/quicktime mov; + video/webm webm; + video/x-flv flv; + video/x-m4v m4v; + video/x-mng mng; + video/x-ms-asf asx asf; + video/x-ms-wmv wmv; + video/x-msvideo avi; +} diff --git a/frontend/web-ui/nginx.conf b/frontend/web-ui/nginx.conf new file mode 100644 index 0000000..d08ee82 --- /dev/null +++ b/frontend/web-ui/nginx.conf @@ -0,0 +1,17 @@ +events {} + +http { + include /etc/nginx/mime.types; + default_type application/octet-stream; + + server { + listen 5173; + server_name localhost; + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } + } +} \ No newline at end of file diff --git a/frontend/web-ui/package-lock.json b/frontend/web-ui/package-lock.json new file mode 100644 index 0000000..63815b5 --- /dev/null +++ b/frontend/web-ui/package-lock.json @@ -0,0 +1,7616 @@ +{ + "name": "service-manager-web-ui", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "service-manager-web-ui", + "version": "0.0.0", + "dependencies": { + "@dnd-kit/core": "^6.3.1", + "@dnd-kit/sortable": "^10.0.0", + "@dnd-kit/utilities": "^3.2.2", + "@emotion/react": "^11.14.0", + "@emotion/styled": "^11.14.1", + "@fontsource/roboto": "^5.2.8", + "@mui/icons-material": "^7.3.5", + "@mui/material": "^7.3.5", + "@reduxjs/toolkit": "^2.10.1", + "@types/leaflet": "^1.9.21", + "@types/react-redux": "^7.1.34", + "@types/uuid": "^10.0.0", + "axios": "^1.13.2", + "date-fns": "^4.1.0", + "leaflet": "^1.9.4", + "maplibre-gl": "^5.13.0", + "react": "^19.1.1", + "react-dom": "^19.1.1", + "react-icons": "^5.5.0", + "react-leaflet": "^5.0.0", + "react-map-gl": "^8.1.0", + "react-redux": "^9.2.0", + "react-router-dom": "^7.9.5", + "react-virtuoso": "^4.16.1", + "react-window": "^2.2.3", + "redux": "^5.0.1", + "redux-persist": "^6.0.0", + "uuid": "^13.0.0", + "zod": "^4.1.12" + }, + "devDependencies": { + "@chromatic-com/storybook": "^4.1.2", + "@eslint/js": "^9.39.1", + "@storybook/addon-actions": "^9.0.8", + "@storybook/addon-docs": "^10.0.7", + "@storybook/addon-onboarding": "^10.0.7", + "@storybook/react-vite": "^10.0.7", + "@types/leaflet": "^1.9.21", + "@types/maplibre-gl": "^1.13.2", + "@types/node": "^24.6.0", + "@types/react": "^19.1.16", + "@types/react-dom": "^19.1.9", + "@vitejs/plugin-react": "^5.1.1", + "eslint": "^9.39.1", + "eslint-plugin-react-hooks": "^5.2.0", + "eslint-plugin-react-refresh": "^0.4.22", + "eslint-plugin-storybook": "^10.0.7", + "globals": "^16.4.0", + "msw": "^2.12.2", + "storybook": "^10.0.7", + "typescript": "~5.9.3", + "typescript-eslint": "^8.45.0", + "vite": "^7.1.7" + } + }, + "node_modules/@adobe/css-tools": { + "version": "4.4.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@adobe/css-tools/-/css-tools-4.4.4.tgz", + "integrity": "sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@babel/generator": { + "version": "7.28.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.5" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.28.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/runtime/-/runtime-7.28.4.tgz", + "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@chromatic-com/storybook": { + "version": "4.1.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@chromatic-com/storybook/-/storybook-4.1.3.tgz", + "integrity": "sha512-hc0HO9GAV9pxqDE6fTVOV5KeLpTiCfV8Jrpk5ogKLiIgeq2C+NPjpt74YnrZTjiK8E19fYcMP+2WY9ZtX7zHmw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@neoconfetti/react": "^1.0.0", + "chromatic": "^13.3.3", + "filesize": "^10.0.12", + "jsonfile": "^6.1.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=20.0.0", + "yarn": ">=1.22.18" + }, + "peerDependencies": { + "storybook": "^0.0.0-0 || ^9.0.0 || ^9.1.0-0 || ^9.2.0-0 || ^10.0.0-0 || ^10.1.0-0 || ^10.2.0-0 || ^10.3.0-0" + } + }, + "node_modules/@dnd-kit/accessibility": { + "version": "3.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@dnd-kit/accessibility/-/accessibility-3.1.1.tgz", + "integrity": "sha512-2P+YgaXF+gRsIihwwY1gCsQSYnu9Zyj2py8kY5fFvUM1qm2WA2u639R6YNVfU4GWr+ZM5mqEsfHZZLoRONbemw==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@dnd-kit/core": { + "version": "6.3.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@dnd-kit/core/-/core-6.3.1.tgz", + "integrity": "sha512-xkGBRQQab4RLwgXxoqETICr6S5JlogafbhNsidmrkVv2YRs5MLwpjoF2qpiGjQt8S9AoxtIV603s0GIUpY5eYQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@dnd-kit/accessibility": "^3.1.1", + "@dnd-kit/utilities": "^3.2.2", + "tslib": "^2.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@dnd-kit/sortable": { + "version": "10.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@dnd-kit/sortable/-/sortable-10.0.0.tgz", + "integrity": "sha512-+xqhmIIzvAYMGfBYYnbKuNicfSsk4RksY2XdmJhT+HAC01nix6fHCztU68jooFiMUB01Ky3F0FyOvhG/BZrWkg==", + "license": "MIT", + "dependencies": { + "@dnd-kit/utilities": "^3.2.2", + "tslib": "^2.0.0" + }, + "peerDependencies": { + "@dnd-kit/core": "^6.3.0", + "react": ">=16.8.0" + } + }, + "node_modules/@dnd-kit/utilities": { + "version": "3.2.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@dnd-kit/utilities/-/utilities-3.2.2.tgz", + "integrity": "sha512-+MKAJEOfaBe5SmV6t34p80MMKhjvUz0vRrvVJbPT0WElzaOJ/1xs+D+KDv+tD/NE5ujfrChEcshd4fLn0wpiqg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@emotion/babel-plugin": { + "version": "11.13.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz", + "integrity": "sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.16.7", + "@babel/runtime": "^7.18.3", + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/serialize": "^1.3.3", + "babel-plugin-macros": "^3.1.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^4.0.0", + "find-root": "^1.1.0", + "source-map": "^0.5.7", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/cache": { + "version": "11.14.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@emotion/cache/-/cache-11.14.0.tgz", + "integrity": "sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==", + "license": "MIT", + "dependencies": { + "@emotion/memoize": "^0.9.0", + "@emotion/sheet": "^1.4.0", + "@emotion/utils": "^1.4.2", + "@emotion/weak-memoize": "^0.4.0", + "stylis": "4.2.0" + } + }, + "node_modules/@emotion/hash": { + "version": "0.9.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@emotion/hash/-/hash-0.9.2.tgz", + "integrity": "sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==", + "license": "MIT" + }, + "node_modules/@emotion/is-prop-valid": { + "version": "1.4.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@emotion/is-prop-valid/-/is-prop-valid-1.4.0.tgz", + "integrity": "sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==", + "license": "MIT", + "dependencies": { + "@emotion/memoize": "^0.9.0" + } + }, + "node_modules/@emotion/memoize": { + "version": "0.9.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@emotion/memoize/-/memoize-0.9.0.tgz", + "integrity": "sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==", + "license": "MIT" + }, + "node_modules/@emotion/react": { + "version": "11.14.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@emotion/react/-/react-11.14.0.tgz", + "integrity": "sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.13.5", + "@emotion/cache": "^11.14.0", + "@emotion/serialize": "^1.3.3", + "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0", + "@emotion/utils": "^1.4.2", + "@emotion/weak-memoize": "^0.4.0", + "hoist-non-react-statics": "^3.3.1" + }, + "peerDependencies": { + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/serialize": { + "version": "1.3.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@emotion/serialize/-/serialize-1.3.3.tgz", + "integrity": "sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==", + "license": "MIT", + "dependencies": { + "@emotion/hash": "^0.9.2", + "@emotion/memoize": "^0.9.0", + "@emotion/unitless": "^0.10.0", + "@emotion/utils": "^1.4.2", + "csstype": "^3.0.2" + } + }, + "node_modules/@emotion/sheet": { + "version": "1.4.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@emotion/sheet/-/sheet-1.4.0.tgz", + "integrity": "sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==", + "license": "MIT" + }, + "node_modules/@emotion/styled": { + "version": "11.14.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@emotion/styled/-/styled-11.14.1.tgz", + "integrity": "sha512-qEEJt42DuToa3gurlH4Qqc1kVpNq8wO8cJtDzU46TjlzWjDlsVyevtYCRijVq3SrHsROS+gVQ8Fnea108GnKzw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/runtime": "^7.18.3", + "@emotion/babel-plugin": "^11.13.5", + "@emotion/is-prop-valid": "^1.3.0", + "@emotion/serialize": "^1.3.3", + "@emotion/use-insertion-effect-with-fallbacks": "^1.2.0", + "@emotion/utils": "^1.4.2" + }, + "peerDependencies": { + "@emotion/react": "^11.0.0-rc.0", + "react": ">=16.8.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@emotion/unitless": { + "version": "0.10.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@emotion/unitless/-/unitless-0.10.0.tgz", + "integrity": "sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==", + "license": "MIT" + }, + "node_modules/@emotion/use-insertion-effect-with-fallbacks": { + "version": "1.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz", + "integrity": "sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0" + } + }, + "node_modules/@emotion/utils": { + "version": "1.4.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@emotion/utils/-/utils-1.4.2.tgz", + "integrity": "sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==", + "license": "MIT" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.4.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@emotion/weak-memoize/-/weak-memoize-0.4.0.tgz", + "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==", + "license": "MIT" + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/aix-ppc64/-/aix-ppc64-0.27.1.tgz", + "integrity": "sha512-HHB50pdsBX6k47S4u5g/CaLjqS3qwaOVE5ILsq64jyzgMhLuCuZ8rGzM9yhsAjfjkbgUPMzZEPa7DAp7yz6vuA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/android-arm/-/android-arm-0.27.1.tgz", + "integrity": "sha512-kFqa6/UcaTbGm/NncN9kzVOODjhZW8e+FRdSeypWe6j33gzclHtwlANs26JrupOntlcWmB0u8+8HZo8s7thHvg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/android-arm64/-/android-arm64-0.27.1.tgz", + "integrity": "sha512-45fuKmAJpxnQWixOGCrS+ro4Uvb4Re9+UTieUY2f8AEc+t7d4AaZ6eUJ3Hva7dtrxAAWHtlEFsXFMAgNnGU9uQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/android-x64/-/android-x64-0.27.1.tgz", + "integrity": "sha512-LBEpOz0BsgMEeHgenf5aqmn/lLNTFXVfoWMUox8CtWWYK9X4jmQzWjoGoNb8lmAYml/tQ/Ysvm8q7szu7BoxRQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/darwin-arm64/-/darwin-arm64-0.27.1.tgz", + "integrity": "sha512-veg7fL8eMSCVKL7IW4pxb54QERtedFDfY/ASrumK/SbFsXnRazxY4YykN/THYqFnFwJ0aVjiUrVG2PwcdAEqQQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/darwin-x64/-/darwin-x64-0.27.1.tgz", + "integrity": "sha512-+3ELd+nTzhfWb07Vol7EZ+5PTbJ/u74nC6iv4/lwIU99Ip5uuY6QoIf0Hn4m2HoV0qcnRivN3KSqc+FyCHjoVQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.1.tgz", + "integrity": "sha512-/8Rfgns4XD9XOSXlzUDepG8PX+AVWHliYlUkFI3K3GB6tqbdjYqdhcb4BKRd7C0BhZSoaCxhv8kTcBrcZWP+xg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/freebsd-x64/-/freebsd-x64-0.27.1.tgz", + "integrity": "sha512-GITpD8dK9C+r+5yRT/UKVT36h/DQLOHdwGVwwoHidlnA168oD3uxA878XloXebK4Ul3gDBBIvEdL7go9gCUFzQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-arm/-/linux-arm-0.27.1.tgz", + "integrity": "sha512-ieMID0JRZY/ZeCrsFQ3Y3NlHNCqIhTprJfDgSB3/lv5jJZ8FX3hqPyXWhe+gvS5ARMBJ242PM+VNz/ctNj//eA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-arm64/-/linux-arm64-0.27.1.tgz", + "integrity": "sha512-W9//kCrh/6in9rWIBdKaMtuTTzNj6jSeG/haWBADqLLa9P8O5YSRDzgD5y9QBok4AYlzS6ARHifAb75V6G670Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-ia32/-/linux-ia32-0.27.1.tgz", + "integrity": "sha512-VIUV4z8GD8rtSVMfAj1aXFahsi/+tcoXXNYmXgzISL+KB381vbSTNdeZHHHIYqFyXcoEhu9n5cT+05tRv13rlw==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-loong64/-/linux-loong64-0.27.1.tgz", + "integrity": "sha512-l4rfiiJRN7sTNI//ff65zJ9z8U+k6zcCg0LALU5iEWzY+a1mVZ8iWC1k5EsNKThZ7XCQ6YWtsZ8EWYm7r1UEsg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-mips64el/-/linux-mips64el-0.27.1.tgz", + "integrity": "sha512-U0bEuAOLvO/DWFdygTHWY8C067FXz+UbzKgxYhXC0fDieFa0kDIra1FAhsAARRJbvEyso8aAqvPdNxzWuStBnA==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-ppc64/-/linux-ppc64-0.27.1.tgz", + "integrity": "sha512-NzdQ/Xwu6vPSf/GkdmRNsOfIeSGnh7muundsWItmBsVpMoNPVpM61qNzAVY3pZ1glzzAxLR40UyYM23eaDDbYQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-riscv64/-/linux-riscv64-0.27.1.tgz", + "integrity": "sha512-7zlw8p3IApcsN7mFw0O1Z1PyEk6PlKMu18roImfl3iQHTnr/yAfYv6s4hXPidbDoI2Q0pW+5xeoM4eTCC0UdrQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-s390x/-/linux-s390x-0.27.1.tgz", + "integrity": "sha512-cGj5wli+G+nkVQdZo3+7FDKC25Uh4ZVwOAK6A06Hsvgr8WqBBuOy/1s+PUEd/6Je+vjfm6stX0kmib5b/O2Ykw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-x64/-/linux-x64-0.27.1.tgz", + "integrity": "sha512-z3H/HYI9MM0HTv3hQZ81f+AKb+yEoCRlUby1F80vbQ5XdzEMyY/9iNlAmhqiBKw4MJXwfgsh7ERGEOhrM1niMA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.1.tgz", + "integrity": "sha512-wzC24DxAvk8Em01YmVXyjl96Mr+ecTPyOuADAvjGg+fyBpGmxmcr2E5ttf7Im8D0sXZihpxzO1isus8MdjMCXQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/netbsd-x64/-/netbsd-x64-0.27.1.tgz", + "integrity": "sha512-1YQ8ybGi2yIXswu6eNzJsrYIGFpnlzEWRl6iR5gMgmsrR0FcNoV1m9k9sc3PuP5rUBLshOZylc9nqSgymI+TYg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.1.tgz", + "integrity": "sha512-5Z+DzLCrq5wmU7RDaMDe2DVXMRm2tTDvX2KU14JJVBN2CT/qov7XVix85QoJqHltpvAOZUAc3ndU56HSMWrv8g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/openbsd-x64/-/openbsd-x64-0.27.1.tgz", + "integrity": "sha512-Q73ENzIdPF5jap4wqLtsfh8YbYSZ8Q0wnxplOlZUOyZy7B4ZKW8DXGWgTCZmF8VWD7Tciwv5F4NsRf6vYlZtqg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.1.tgz", + "integrity": "sha512-ajbHrGM/XiK+sXM0JzEbJAen+0E+JMQZ2l4RR4VFwvV9JEERx+oxtgkpoKv1SevhjavK2z2ReHk32pjzktWbGg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/sunos-x64/-/sunos-x64-0.27.1.tgz", + "integrity": "sha512-IPUW+y4VIjuDVn+OMzHc5FV4GubIwPnsz6ubkvN8cuhEqH81NovB53IUlrlBkPMEPxvNnf79MGBoz8rZ2iW8HA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/win32-arm64/-/win32-arm64-0.27.1.tgz", + "integrity": "sha512-RIVRWiljWA6CdVu8zkWcRmGP7iRRIIwvhDKem8UMBjPql2TXM5PkDVvvrzMtj1V+WFPB4K7zkIGM7VzRtFkjdg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/win32-ia32/-/win32-ia32-0.27.1.tgz", + "integrity": "sha512-2BR5M8CPbptC1AK5JbJT1fWrHLvejwZidKx3UMSF0ecHMa+smhi16drIrCEggkgviBwLYd5nwrFLSl5Kho96RQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/win32-x64/-/win32-x64-0.27.1.tgz", + "integrity": "sha512-d5X6RMYv6taIymSk8JBP+nxv8DQAMY6A51GPgusqLdK9wBz5wWIXy1KjTck6HnjE9hqJzJRdk+1p/t5soSbCtw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.9.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", + "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.21.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@eslint/config-array/-/config-array-0.21.1.tgz", + "integrity": "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.7", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.4.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@eslint/config-helpers/-/config-helpers-0.4.2.tgz", + "integrity": "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.17.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@eslint/core/-/core-0.17.0.tgz", + "integrity": "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@eslint/eslintrc/-/eslintrc-3.3.3.tgz", + "integrity": "sha512-Kr+LPIUVKz2qkx1HAMH8q1q6azbqBAsXJUxBl/ODDuVPX45Z9DfwB8tPjTi6nNZ8BuM3nbJxC5zCAg5elnBUTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.1", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.39.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@eslint/js/-/js-9.39.1.tgz", + "integrity": "sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.7", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@eslint/object-schema/-/object-schema-2.1.7.tgz", + "integrity": "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.4.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz", + "integrity": "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.17.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@fontsource/roboto": { + "version": "5.2.9", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@fontsource/roboto/-/roboto-5.2.9.tgz", + "integrity": "sha512-ZTkyHiPk74B/aj8BZWbsxD5Yu+Lq+nR64eV4wirlrac2qXR7jYk2h6JlLYuOuoruTkGQWNw2fMuKNavw7/rg0w==", + "license": "OFL-1.1", + "funding": { + "url": "https://github.com/sponsors/ayuhito" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.7", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@humanfs/node/-/node-0.16.7.tgz", + "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.4.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@inquirer/ansi": { + "version": "1.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@inquirer/ansi/-/ansi-1.0.2.tgz", + "integrity": "sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/confirm": { + "version": "5.1.21", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@inquirer/confirm/-/confirm-5.1.21.tgz", + "integrity": "sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/core": "^10.3.2", + "@inquirer/type": "^3.0.10" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/core": { + "version": "10.3.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@inquirer/core/-/core-10.3.2.tgz", + "integrity": "sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@inquirer/ansi": "^1.0.2", + "@inquirer/figures": "^1.0.15", + "@inquirer/type": "^3.0.10", + "cli-width": "^4.1.0", + "mute-stream": "^2.0.0", + "signal-exit": "^4.1.0", + "wrap-ansi": "^6.2.0", + "yoctocolors-cjs": "^2.1.3" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@inquirer/core/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/@inquirer/core/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/core/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/core/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@inquirer/figures": { + "version": "1.0.15", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@inquirer/figures/-/figures-1.0.15.tgz", + "integrity": "sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@inquirer/type": { + "version": "3.0.10", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@inquirer/type/-/type-3.0.10.tgz", + "integrity": "sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@types/node": ">=18" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@joshwooding/vite-plugin-react-docgen-typescript": { + "version": "0.6.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@joshwooding/vite-plugin-react-docgen-typescript/-/vite-plugin-react-docgen-typescript-0.6.1.tgz", + "integrity": "sha512-J4BaTocTOYFkMHIra1JDWrMWpNmBl4EkplIwHEsV8aeUOtdWjwSnln9U7twjMFTAEB7mptNtSKyVi1Y2W9sDJw==", + "dev": true, + "license": "MIT", + "dependencies": { + "glob": "^10.0.0", + "magic-string": "^0.30.0", + "react-docgen-typescript": "^2.2.2" + }, + "peerDependencies": { + "typescript": ">= 4.3.x", + "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@mapbox/geojson-rewind": { + "version": "0.5.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mapbox/geojson-rewind/-/geojson-rewind-0.5.2.tgz", + "integrity": "sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==", + "license": "ISC", + "dependencies": { + "get-stream": "^6.0.1", + "minimist": "^1.2.6" + }, + "bin": { + "geojson-rewind": "geojson-rewind" + } + }, + "node_modules/@mapbox/jsonlint-lines-primitives": { + "version": "2.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz", + "integrity": "sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@mapbox/point-geometry": { + "version": "1.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mapbox/point-geometry/-/point-geometry-1.1.0.tgz", + "integrity": "sha512-YGcBz1cg4ATXDCM/71L9xveh4dynfGmcLDqufR+nQQy3fKwsAZsWd/x4621/6uJaeB9mwOHE6hPeDgXz9uViUQ==", + "license": "ISC" + }, + "node_modules/@mapbox/tiny-sdf": { + "version": "2.0.7", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mapbox/tiny-sdf/-/tiny-sdf-2.0.7.tgz", + "integrity": "sha512-25gQLQMcpivjOSA40g3gO6qgiFPDpWRoMfd+G/GoppPIeP6JDaMMkMrEJnMZhKyyS6iKwVt5YKu02vCUyJM3Ug==", + "license": "BSD-2-Clause" + }, + "node_modules/@mapbox/unitbezier": { + "version": "0.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mapbox/unitbezier/-/unitbezier-0.0.1.tgz", + "integrity": "sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==", + "license": "BSD-2-Clause" + }, + "node_modules/@mapbox/vector-tile": { + "version": "2.0.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mapbox/vector-tile/-/vector-tile-2.0.4.tgz", + "integrity": "sha512-AkOLcbgGTdXScosBWwmmD7cDlvOjkg/DetGva26pIRiZPdeJYjYKarIlb4uxVzi6bwHO6EWH82eZ5Nuv4T5DUg==", + "license": "BSD-3-Clause", + "dependencies": { + "@mapbox/point-geometry": "~1.1.0", + "@types/geojson": "^7946.0.16", + "pbf": "^4.0.1" + } + }, + "node_modules/@mapbox/whoots-js": { + "version": "3.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz", + "integrity": "sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==", + "license": "ISC", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@maplibre/maplibre-gl-style-spec": { + "version": "24.3.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@maplibre/maplibre-gl-style-spec/-/maplibre-gl-style-spec-24.3.1.tgz", + "integrity": "sha512-TUM5JD40H2mgtVXl5IwWz03BuQabw8oZQLJTmPpJA0YTYF+B+oZppy5lNMO6bMvHzB+/5mxqW9VLG3wFdeqtOw==", + "license": "ISC", + "dependencies": { + "@mapbox/jsonlint-lines-primitives": "~2.0.2", + "@mapbox/unitbezier": "^0.0.1", + "json-stringify-pretty-compact": "^4.0.0", + "minimist": "^1.2.8", + "quickselect": "^3.0.0", + "rw": "^1.3.3", + "tinyqueue": "^3.0.0" + }, + "bin": { + "gl-style-format": "dist/gl-style-format.mjs", + "gl-style-migrate": "dist/gl-style-migrate.mjs", + "gl-style-validate": "dist/gl-style-validate.mjs" + } + }, + "node_modules/@maplibre/mlt": { + "version": "1.1.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@maplibre/mlt/-/mlt-1.1.2.tgz", + "integrity": "sha512-SQKdJ909VGROkA6ovJgtHNs9YXV4YXUPS+VaZ50I2Mt951SLlUm2Cv34x5Xwc1HiFlsd3h2Yrs5cn7xzqBmENw==", + "license": "(MIT OR Apache-2.0)", + "dependencies": { + "@mapbox/point-geometry": "^1.1.0" + } + }, + "node_modules/@maplibre/vt-pbf": { + "version": "4.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@maplibre/vt-pbf/-/vt-pbf-4.1.0.tgz", + "integrity": "sha512-9LjFAoWtxdGRns8RK9vG3Fcw/fb3eHMxvAn2jffwn3jnVO1k49VOv6+FEza70rK7WzF8GnBiKa0K39RyfevKUw==", + "license": "MIT", + "dependencies": { + "@mapbox/point-geometry": "^1.1.0", + "@mapbox/vector-tile": "^2.0.4", + "@types/geojson-vt": "3.2.5", + "@types/supercluster": "^7.1.3", + "geojson-vt": "^4.0.2", + "pbf": "^4.0.1", + "supercluster": "^8.0.1" + } + }, + "node_modules/@mdx-js/react": { + "version": "3.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mdx-js/react/-/react-3.1.1.tgz", + "integrity": "sha512-f++rKLQgUVYDAtECQ6fn/is15GkEH9+nZPM3MS0RcxVqoTfawHvDlSCH7JbMhAM6uJ32v3eXLvLmLvjGu7PTQw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/mdx": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + }, + "peerDependencies": { + "@types/react": ">=16", + "react": ">=16" + } + }, + "node_modules/@mswjs/interceptors": { + "version": "0.40.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mswjs/interceptors/-/interceptors-0.40.0.tgz", + "integrity": "sha512-EFd6cVbHsgLa6wa4RljGj6Wk75qoHxUSyc5asLyyPSyuhIcdS2Q3Phw6ImS1q+CkALthJRShiYfKANcQMuMqsQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@open-draft/deferred-promise": "^2.2.0", + "@open-draft/logger": "^0.3.0", + "@open-draft/until": "^2.0.0", + "is-node-process": "^1.2.0", + "outvariant": "^1.4.3", + "strict-event-emitter": "^0.5.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@mui/core-downloads-tracker": { + "version": "7.3.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mui/core-downloads-tracker/-/core-downloads-tracker-7.3.6.tgz", + "integrity": "sha512-QaYtTHlr8kDFN5mE1wbvVARRKH7Fdw1ZuOjBJcFdVpfNfRYKF3QLT4rt+WaB6CKJvpqxRsmEo0kpYinhH5GeHg==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + } + }, + "node_modules/@mui/icons-material": { + "version": "7.3.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mui/icons-material/-/icons-material-7.3.6.tgz", + "integrity": "sha512-0FfkXEj22ysIq5pa41A2NbcAhJSvmcZQ/vcTIbjDsd6hlslG82k5BEBqqS0ZJprxwIL3B45qpJ+bPHwJPlF7uQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.28.4" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@mui/material": "^7.3.6", + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/material": { + "version": "7.3.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mui/material/-/material-7.3.6.tgz", + "integrity": "sha512-R4DaYF3dgCQCUAkr4wW1w26GHXcf5rCmBRHVBuuvJvaGLmZdD8EjatP80Nz5JCw0KxORAzwftnHzXVnjR8HnFw==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/runtime": "^7.28.4", + "@mui/core-downloads-tracker": "^7.3.6", + "@mui/system": "^7.3.6", + "@mui/types": "^7.4.9", + "@mui/utils": "^7.3.6", + "@popperjs/core": "^2.11.8", + "@types/react-transition-group": "^4.4.12", + "clsx": "^2.1.1", + "csstype": "^3.1.3", + "prop-types": "^15.8.1", + "react-is": "^19.2.0", + "react-transition-group": "^4.4.5" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@mui/material-pigment-css": "^7.3.6", + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, + "@mui/material-pigment-css": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/private-theming": { + "version": "7.3.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mui/private-theming/-/private-theming-7.3.6.tgz", + "integrity": "sha512-Ws9wZpqM+FlnbZXaY/7yvyvWQo1+02Tbx50mVdNmzWEi51C51y56KAbaDCYyulOOBL6BJxuaqG8rNNuj7ivVyw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.28.4", + "@mui/utils": "^7.3.6", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/styled-engine": { + "version": "7.3.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mui/styled-engine/-/styled-engine-7.3.6.tgz", + "integrity": "sha512-+wiYbtvj+zyUkmDB+ysH6zRjuQIJ+CM56w0fEXV+VDNdvOuSywG+/8kpjddvvlfMLsaWdQe5oTuYGBcodmqGzQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.28.4", + "@emotion/cache": "^11.14.0", + "@emotion/serialize": "^1.3.3", + "@emotion/sheet": "^1.4.0", + "csstype": "^3.1.3", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@emotion/react": "^11.4.1", + "@emotion/styled": "^11.3.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + } + } + }, + "node_modules/@mui/system": { + "version": "7.3.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mui/system/-/system-7.3.6.tgz", + "integrity": "sha512-8fehAazkHNP1imMrdD2m2hbA9sl7Ur6jfuNweh5o4l9YPty4iaZzRXqYvBCWQNwFaSHmMEj2KPbyXGp7Bt73Rg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.28.4", + "@mui/private-theming": "^7.3.6", + "@mui/styled-engine": "^7.3.6", + "@mui/types": "^7.4.9", + "@mui/utils": "^7.3.6", + "clsx": "^2.1.1", + "csstype": "^3.1.3", + "prop-types": "^15.8.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@emotion/react": "^11.5.0", + "@emotion/styled": "^11.3.0", + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@emotion/react": { + "optional": true + }, + "@emotion/styled": { + "optional": true + }, + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/types": { + "version": "7.4.9", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mui/types/-/types-7.4.9.tgz", + "integrity": "sha512-dNO8Z9T2cujkSIaCnWwprfeKmTWh97cnjkgmpFJ2sbfXLx8SMZijCYHOtP/y5nnUb/Rm2omxbDMmtUoSaUtKaw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.28.4" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@mui/utils": { + "version": "7.3.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@mui/utils/-/utils-7.3.6.tgz", + "integrity": "sha512-jn+Ba02O6PiFs7nKva8R2aJJ9kJC+3kQ2R0BbKNY3KQQ36Qng98GnPRFTlbwYTdMD6hLEBKaMLUktyg/rTfd2w==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.28.4", + "@mui/types": "^7.4.9", + "@types/prop-types": "^15.7.15", + "clsx": "^2.1.1", + "prop-types": "^15.8.1", + "react-is": "^19.2.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/mui-org" + }, + "peerDependencies": { + "@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0", + "react": "^17.0.0 || ^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@neoconfetti/react": { + "version": "1.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@neoconfetti/react/-/react-1.0.0.tgz", + "integrity": "sha512-klcSooChXXOzIm+SE5IISIAn3bYzYfPjbX7D7HoqZL84oAfgREeSg5vSIaSFH+DaGzzvImTyWe1OyrJ67vik4A==", + "dev": true, + "license": "MIT" + }, + "node_modules/@open-draft/deferred-promise": { + "version": "2.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@open-draft/deferred-promise/-/deferred-promise-2.2.0.tgz", + "integrity": "sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@open-draft/logger": { + "version": "0.3.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@open-draft/logger/-/logger-0.3.0.tgz", + "integrity": "sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-node-process": "^1.2.0", + "outvariant": "^1.4.0" + } + }, + "node_modules/@open-draft/until": { + "version": "2.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@open-draft/until/-/until-2.1.0.tgz", + "integrity": "sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@react-leaflet/core": { + "version": "3.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@react-leaflet/core/-/core-3.0.0.tgz", + "integrity": "sha512-3EWmekh4Nz+pGcr+xjf0KNyYfC3U2JjnkWsh0zcqaexYqmmB5ZhH37kz41JXGmKzpaMZCnPofBBm64i+YrEvGQ==", + "license": "Hippocratic-2.1", + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^19.0.0", + "react-dom": "^19.0.0" + } + }, + "node_modules/@reduxjs/toolkit": { + "version": "2.11.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@reduxjs/toolkit/-/toolkit-2.11.0.tgz", + "integrity": "sha512-hBjYg0aaRL1O2Z0IqWhnTLytnjDIxekmRxm1snsHjHaKVmIF1HiImWqsq+PuEbn6zdMlkIj9WofK1vR8jjx+Xw==", + "license": "MIT", + "dependencies": { + "@standard-schema/spec": "^1.0.0", + "@standard-schema/utils": "^0.3.0", + "immer": "^11.0.0", + "redux": "^5.0.1", + "redux-thunk": "^3.1.0", + "reselect": "^5.1.0" + }, + "peerDependencies": { + "react": "^16.9.0 || ^17.0.0 || ^18 || ^19", + "react-redux": "^7.2.1 || ^8.1.3 || ^9.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-redux": { + "optional": true + } + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.47", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.47.tgz", + "integrity": "sha512-8QagwMH3kNCuzD8EWL8R2YPW5e4OrHNSAHRFDdmFqEwEaD/KcNKjVoumo+gP2vW5eKB2UPbM6vTYiGZX0ixLnw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/pluginutils": { + "version": "5.3.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", + "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.3.tgz", + "integrity": "sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.3.tgz", + "integrity": "sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.3.tgz", + "integrity": "sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.3.tgz", + "integrity": "sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.3.tgz", + "integrity": "sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.3.tgz", + "integrity": "sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.3.tgz", + "integrity": "sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.3.tgz", + "integrity": "sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.3.tgz", + "integrity": "sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.3.tgz", + "integrity": "sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.3.tgz", + "integrity": "sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.3.tgz", + "integrity": "sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.3.tgz", + "integrity": "sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.3.tgz", + "integrity": "sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.3.tgz", + "integrity": "sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.3.tgz", + "integrity": "sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.3.tgz", + "integrity": "sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.3.tgz", + "integrity": "sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.3.tgz", + "integrity": "sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.3.tgz", + "integrity": "sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.3.tgz", + "integrity": "sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.3.tgz", + "integrity": "sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@standard-schema/spec": { + "version": "1.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@standard-schema/spec/-/spec-1.0.0.tgz", + "integrity": "sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==", + "license": "MIT" + }, + "node_modules/@standard-schema/utils": { + "version": "0.3.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@standard-schema/utils/-/utils-0.3.0.tgz", + "integrity": "sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==", + "license": "MIT" + }, + "node_modules/@storybook/addon-actions": { + "version": "9.0.8", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@storybook/addon-actions/-/addon-actions-9.0.8.tgz", + "integrity": "sha512-LFePu7PPnWN0Il/uoUpmA5T0J0C7d6haJIbg0pXrjxW2MQVSYXE4S4LSUz8fOImltBDV3xAl6tLPYHFj6VcrOA==", + "dev": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/addon-docs": { + "version": "10.1.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@storybook/addon-docs/-/addon-docs-10.1.4.tgz", + "integrity": "sha512-TWLDJNLS/S3AUyTf9x0Hb8k7d+VWMJCH9dWAS0QenvJG8ga9VaehO6r+e+3YyIDbO1ev3UST3GCjh9SY8tzwRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@mdx-js/react": "^3.0.0", + "@storybook/csf-plugin": "10.1.4", + "@storybook/icons": "^2.0.0", + "@storybook/react-dom-shim": "10.1.4", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "storybook": "^10.1.4" + } + }, + "node_modules/@storybook/addon-onboarding": { + "version": "10.1.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@storybook/addon-onboarding/-/addon-onboarding-10.1.4.tgz", + "integrity": "sha512-UdjkuPL9R+sbnkc9xvDKL68r/30jzFXbhtxbRp5MrmT+dFXvBSi0sHChiWUk/sDf142KpcDswv0r21mxdr6F8w==", + "dev": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "storybook": "^10.1.4" + } + }, + "node_modules/@storybook/builder-vite": { + "version": "10.1.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@storybook/builder-vite/-/builder-vite-10.1.4.tgz", + "integrity": "sha512-3mUQoCzMuhqAIjj8fdbGlwh+GgHaFpCvU+sxL8kIxnZqflW09SuwM5kS47Y5QDzYbHAPYCPqcBFyJ4EfRuf0rw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@storybook/csf-plugin": "10.1.4", + "@vitest/mocker": "3.2.4", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "storybook": "^10.1.4", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/@storybook/csf-plugin": { + "version": "10.1.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@storybook/csf-plugin/-/csf-plugin-10.1.4.tgz", + "integrity": "sha512-nudIBYx8fBz+1j2Xn1pdfGcgMJ78N/1NFB4MYAxI3YEzxGnQwUjihOO1x3siAXPbjFGmnVHoBx7+6IpO3F70GA==", + "dev": true, + "license": "MIT", + "dependencies": { + "unplugin": "^2.3.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "esbuild": "*", + "rollup": "*", + "storybook": "^10.1.4", + "vite": "*", + "webpack": "*" + }, + "peerDependenciesMeta": { + "esbuild": { + "optional": true + }, + "rollup": { + "optional": true + }, + "vite": { + "optional": true + }, + "webpack": { + "optional": true + } + } + }, + "node_modules/@storybook/global": { + "version": "5.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@storybook/global/-/global-5.0.0.tgz", + "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@storybook/icons": { + "version": "2.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@storybook/icons/-/icons-2.0.1.tgz", + "integrity": "sha512-/smVjw88yK3CKsiuR71vNgWQ9+NuY2L+e8X7IMrFjexjm6ZR8ULrV2DRkTA61aV6ryefslzHEGDInGpnNeIocg==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/@storybook/react": { + "version": "10.1.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@storybook/react/-/react-10.1.4.tgz", + "integrity": "sha512-ZBMPdQ99QBv/UtlIZBerDGNsQB30ffxk6twe45FIPutSlKXD6W9r0z7rGa5UWnqmmxa9HjARRhclOFsNGkhs9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@storybook/global": "^5.0.0", + "@storybook/react-dom-shim": "10.1.4", + "react-docgen": "^8.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "storybook": "^10.1.4", + "typescript": ">= 4.9.x" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@storybook/react-dom-shim": { + "version": "10.1.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@storybook/react-dom-shim/-/react-dom-shim-10.1.4.tgz", + "integrity": "sha512-PARu2HA5nYU1AkioNJNc430pz0oyaHFSSAdN3NEaWwkoGrCOo9ZpAXP9V7wlJANCi1pndbC84gSuHVnBXJBG6g==", + "dev": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "storybook": "^10.1.4" + } + }, + "node_modules/@storybook/react-vite": { + "version": "10.1.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@storybook/react-vite/-/react-vite-10.1.4.tgz", + "integrity": "sha512-PneYbxBGArczDtDAvQu6Ug5oeDYM5SQiEDSF0i+TNN0ZKO2ROsmbGSI9/7YTFontXR2CqweIO8GyOGQOcz5K9A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@joshwooding/vite-plugin-react-docgen-typescript": "0.6.1", + "@rollup/pluginutils": "^5.0.2", + "@storybook/builder-vite": "10.1.4", + "@storybook/react": "10.1.4", + "empathic": "^2.0.0", + "magic-string": "^0.30.0", + "react-docgen": "^8.0.0", + "resolve": "^1.22.8", + "tsconfig-paths": "^4.2.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0", + "storybook": "^10.1.4", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/@testing-library/dom": { + "version": "10.4.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@testing-library/dom/-/dom-10.4.1.tgz", + "integrity": "sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.3.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "picocolors": "1.1.1", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "6.9.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@testing-library/jest-dom/-/jest-dom-6.9.1.tgz", + "integrity": "sha512-zIcONa+hVtVSSep9UT3jZ5rizo2BsxgyDYU7WFD5eICBE7no3881HGeb/QkGfsJs6JTkY1aQhT7rIPC7e+0nnA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@adobe/css-tools": "^4.4.0", + "aria-query": "^5.0.0", + "css.escape": "^1.5.1", + "dom-accessibility-api": "^0.6.3", + "picocolors": "^1.1.1", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=14", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/dom-accessibility-api": { + "version": "0.6.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/dom-accessibility-api/-/dom-accessibility-api-0.6.3.tgz", + "integrity": "sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@testing-library/user-event": { + "version": "14.6.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@testing-library/user-event/-/user-event-14.6.1.tgz", + "integrity": "sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } + }, + "node_modules/@types/aria-query": { + "version": "5.0.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/aria-query/-/aria-query-5.0.4.tgz", + "integrity": "sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/chai": { + "version": "5.2.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/chai/-/chai-5.2.3.tgz", + "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/deep-eql": "*", + "assertion-error": "^2.0.1" + } + }, + "node_modules/@types/deep-eql": { + "version": "4.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/deep-eql/-/deep-eql-4.0.2.tgz", + "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/doctrine": { + "version": "0.0.9", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/doctrine/-/doctrine-0.0.9.tgz", + "integrity": "sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/geojson": { + "version": "7946.0.16", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/geojson/-/geojson-7946.0.16.tgz", + "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==", + "license": "MIT" + }, + "node_modules/@types/geojson-vt": { + "version": "3.2.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/geojson-vt/-/geojson-vt-3.2.5.tgz", + "integrity": "sha512-qDO7wqtprzlpe8FfQ//ClPV9xiuoh2nkIgiouIptON9w5jvD/fA4szvP9GBlDVdJ5dldAl0kX/sy3URbWwLx0g==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/hoist-non-react-statics": { + "version": "3.3.7", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.7.tgz", + "integrity": "sha512-PQTyIulDkIDro8P+IHbKCsw7U2xxBYflVzW/FgWdCAePD9xGSidgA76/GeJ6lBKoblyhf9pBY763gbrN+1dI8g==", + "license": "MIT", + "dependencies": { + "hoist-non-react-statics": "^3.3.0" + }, + "peerDependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/leaflet": { + "version": "1.9.21", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/leaflet/-/leaflet-1.9.21.tgz", + "integrity": "sha512-TbAd9DaPGSnzp6QvtYngntMZgcRk+igFELwR2N99XZn7RXUdKgsXMR+28bUO0rPsWp8MIu/f47luLIQuSLYv/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/maplibre-gl": { + "version": "1.13.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/maplibre-gl/-/maplibre-gl-1.13.2.tgz", + "integrity": "sha512-IC1RBMhKXpGDpiFsEwt17c/hbff0GCS/VmzqmrY6G+kyy2wfv2e7BoSQRAfqrvhBQPCoO8yc0SNCi5HkmCcVqw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/mdx": { + "version": "2.0.13", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/mdx/-/mdx-2.0.13.tgz", + "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "24.10.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/node/-/node-24.10.1.tgz", + "integrity": "sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", + "license": "MIT" + }, + "node_modules/@types/prop-types": { + "version": "15.7.15", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/prop-types/-/prop-types-15.7.15.tgz", + "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==", + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "19.2.7", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/react/-/react-19.2.7.tgz", + "integrity": "sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==", + "license": "MIT", + "peer": true, + "dependencies": { + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "19.2.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/react-dom/-/react-dom-19.2.3.tgz", + "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^19.2.0" + } + }, + "node_modules/@types/react-redux": { + "version": "7.1.34", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/react-redux/-/react-redux-7.1.34.tgz", + "integrity": "sha512-GdFaVjEbYv4Fthm2ZLvj1VSCedV7TqE5y1kNwnjSdBOTXuRSgowux6J8TAct15T3CKBr63UMk+2CO7ilRhyrAQ==", + "license": "MIT", + "dependencies": { + "@types/hoist-non-react-statics": "^3.3.0", + "@types/react": "*", + "hoist-non-react-statics": "^3.3.0", + "redux": "^4.0.0" + } + }, + "node_modules/@types/react-redux/node_modules/redux": { + "version": "4.2.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/redux/-/redux-4.2.1.tgz", + "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.9.2" + } + }, + "node_modules/@types/react-transition-group": { + "version": "4.4.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/react-transition-group/-/react-transition-group-4.4.12.tgz", + "integrity": "sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/resolve": { + "version": "1.20.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/resolve/-/resolve-1.20.6.tgz", + "integrity": "sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/statuses": { + "version": "2.0.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/statuses/-/statuses-2.0.6.tgz", + "integrity": "sha512-xMAgYwceFhRA2zY+XbEA7mxYbA093wdiW8Vu6gZPGWy9cmOyU9XesH1tNcEWsKFd5Vzrqx5T3D38PWx1FIIXkA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/supercluster": { + "version": "7.1.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/supercluster/-/supercluster-7.1.3.tgz", + "integrity": "sha512-Z0pOY34GDFl3Q6hUFYf3HkTwKEE02e7QgtJppBt+beEAxnyOpJua+voGFvxINBHa06GwLFFym7gRPY2SiKIfIA==", + "license": "MIT", + "dependencies": { + "@types/geojson": "*" + } + }, + "node_modules/@types/use-sync-external-store": { + "version": "0.0.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/use-sync-external-store/-/use-sync-external-store-0.0.6.tgz", + "integrity": "sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==", + "license": "MIT" + }, + "node_modules/@types/uuid": { + "version": "10.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@types/uuid/-/uuid-10.0.0.tgz", + "integrity": "sha512-7gqG38EyHgyP1S+7+xomFtL+ZNHcKv6DwNaCZmJmo1vgMugyF3TCnXVg4t1uk89mLNwnLtnY3TpOpCOyp1/xHQ==", + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.48.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.48.1.tgz", + "integrity": "sha512-X63hI1bxl5ohelzr0LY5coufyl0LJNthld+abwxpCoo6Gq+hSqhKwci7MUWkXo67mzgUK6YFByhmaHmUcuBJmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.48.1", + "@typescript-eslint/type-utils": "8.48.1", + "@typescript-eslint/utils": "8.48.1", + "@typescript-eslint/visitor-keys": "8.48.1", + "graphemer": "^1.4.0", + "ignore": "^7.0.0", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.48.1", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { + "version": "7.0.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/ignore/-/ignore-7.0.5.tgz", + "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.48.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@typescript-eslint/parser/-/parser-8.48.1.tgz", + "integrity": "sha512-PC0PDZfJg8sP7cmKe6L3QIL8GZwU5aRvUFedqSIpw3B+QjRSUZeeITC2M5XKeMXEzL6wccN196iy3JLwKNvDVA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@typescript-eslint/scope-manager": "8.48.1", + "@typescript-eslint/types": "8.48.1", + "@typescript-eslint/typescript-estree": "8.48.1", + "@typescript-eslint/visitor-keys": "8.48.1", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/project-service": { + "version": "8.48.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@typescript-eslint/project-service/-/project-service-8.48.1.tgz", + "integrity": "sha512-HQWSicah4s9z2/HifRPQ6b6R7G+SBx64JlFQpgSSHWPKdvCZX57XCbszg/bapbRsOEv42q5tayTYcEFpACcX1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/tsconfig-utils": "^8.48.1", + "@typescript-eslint/types": "^8.48.1", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.48.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@typescript-eslint/scope-manager/-/scope-manager-8.48.1.tgz", + "integrity": "sha512-rj4vWQsytQbLxC5Bf4XwZ0/CKd362DkWMUkviT7DCS057SK64D5lH74sSGzhI6PDD2HCEq02xAP9cX68dYyg1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.48.1", + "@typescript-eslint/visitor-keys": "8.48.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/tsconfig-utils": { + "version": "8.48.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.48.1.tgz", + "integrity": "sha512-k0Jhs4CpEffIBm6wPaCXBAD7jxBtrHjrSgtfCjUvPp9AZ78lXKdTR8fxyZO5y4vWNlOvYXRtngSZNSn+H53Jkw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.48.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@typescript-eslint/type-utils/-/type-utils-8.48.1.tgz", + "integrity": "sha512-1jEop81a3LrJQLTf/1VfPQdhIY4PlGDBc/i67EVWObrtvcziysbLN3oReexHOM6N3jyXgCrkBsZpqwH0hiDOQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.48.1", + "@typescript-eslint/typescript-estree": "8.48.1", + "@typescript-eslint/utils": "8.48.1", + "debug": "^4.3.4", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.48.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@typescript-eslint/types/-/types-8.48.1.tgz", + "integrity": "sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.48.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@typescript-eslint/typescript-estree/-/typescript-estree-8.48.1.tgz", + "integrity": "sha512-/9wQ4PqaefTK6POVTjJaYS0bynCgzh6ClJHGSBj06XEHjkfylzB+A3qvyaXnErEZSaxhIo4YdyBgq6j4RysxDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/project-service": "8.48.1", + "@typescript-eslint/tsconfig-utils": "8.48.1", + "@typescript-eslint/types": "8.48.1", + "@typescript-eslint/visitor-keys": "8.48.1", + "debug": "^4.3.4", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "tinyglobby": "^0.2.15", + "ts-api-utils": "^2.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.48.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@typescript-eslint/utils/-/utils-8.48.1.tgz", + "integrity": "sha512-fAnhLrDjiVfey5wwFRwrweyRlCmdz5ZxXz2G/4cLn0YDLjTapmN4gcCsTBR1N2rWnZSDeWpYtgLDsJt+FpmcwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.7.0", + "@typescript-eslint/scope-manager": "8.48.1", + "@typescript-eslint/types": "8.48.1", + "@typescript-eslint/typescript-estree": "8.48.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.48.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@typescript-eslint/visitor-keys/-/visitor-keys-8.48.1.tgz", + "integrity": "sha512-BmxxndzEWhE4TIEEMBs8lP3MBWN3jFPs/p6gPm/wkv02o41hI6cq9AuSmGAaTTHPtA1FTi2jBre4A9rm5ZmX+Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.48.1", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vis.gl/react-mapbox": { + "version": "8.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@vis.gl/react-mapbox/-/react-mapbox-8.1.0.tgz", + "integrity": "sha512-FwvH822oxEjWYOr+pP2L8hpv+7cZB2UsQbHHHT0ryrkvvqzmTgt7qHDhamv0EobKw86e1I+B4ojENdJ5G5BkyQ==", + "license": "MIT", + "peerDependencies": { + "mapbox-gl": ">=3.5.0", + "react": ">=16.3.0", + "react-dom": ">=16.3.0" + }, + "peerDependenciesMeta": { + "mapbox-gl": { + "optional": true + } + } + }, + "node_modules/@vis.gl/react-maplibre": { + "version": "8.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@vis.gl/react-maplibre/-/react-maplibre-8.1.0.tgz", + "integrity": "sha512-PkAK/gp3mUfhCLhUuc+4gc3PN9zCtVGxTF2hB6R5R5yYUw+hdg84OZ770U5MU4tPMTCG6fbduExuIW6RRKN6qQ==", + "license": "MIT", + "dependencies": { + "@maplibre/maplibre-gl-style-spec": "^19.2.1" + }, + "peerDependencies": { + "maplibre-gl": ">=4.0.0", + "react": ">=16.3.0", + "react-dom": ">=16.3.0" + }, + "peerDependenciesMeta": { + "maplibre-gl": { + "optional": true + } + } + }, + "node_modules/@vis.gl/react-maplibre/node_modules/@maplibre/maplibre-gl-style-spec": { + "version": "19.3.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@maplibre/maplibre-gl-style-spec/-/maplibre-gl-style-spec-19.3.3.tgz", + "integrity": "sha512-cOZZOVhDSulgK0meTsTkmNXb1ahVvmTmWmfx9gRBwc6hq98wS9JP35ESIoNq3xqEan+UN+gn8187Z6E4NKhLsw==", + "license": "ISC", + "dependencies": { + "@mapbox/jsonlint-lines-primitives": "~2.0.2", + "@mapbox/unitbezier": "^0.0.1", + "json-stringify-pretty-compact": "^3.0.0", + "minimist": "^1.2.8", + "rw": "^1.3.3", + "sort-object": "^3.0.3" + }, + "bin": { + "gl-style-format": "dist/gl-style-format.mjs", + "gl-style-migrate": "dist/gl-style-migrate.mjs", + "gl-style-validate": "dist/gl-style-validate.mjs" + } + }, + "node_modules/@vis.gl/react-maplibre/node_modules/json-stringify-pretty-compact": { + "version": "3.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/json-stringify-pretty-compact/-/json-stringify-pretty-compact-3.0.0.tgz", + "integrity": "sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==", + "license": "MIT" + }, + "node_modules/@vitejs/plugin-react": { + "version": "5.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@vitejs/plugin-react/-/plugin-react-5.1.1.tgz", + "integrity": "sha512-WQfkSw0QbQ5aJ2CHYw23ZGkqnRwqKHD/KYsMeTkZzPT4Jcf0DcBxBtwMJxnu6E7oxw5+JC6ZAiePgh28uJ1HBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.28.5", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-beta.47", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.18.0" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/@vitest/expect": { + "version": "3.2.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@vitest/expect/-/expect-3.2.4.tgz", + "integrity": "sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/chai": "^5.2.2", + "@vitest/spy": "3.2.4", + "@vitest/utils": "3.2.4", + "chai": "^5.2.0", + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/mocker": { + "version": "3.2.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@vitest/mocker/-/mocker-3.2.4.tgz", + "integrity": "sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "3.2.4", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.17" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "node_modules/@vitest/mocker/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/@vitest/pretty-format": { + "version": "3.2.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@vitest/pretty-format/-/pretty-format-3.2.4.tgz", + "integrity": "sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/spy": { + "version": "3.2.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@vitest/spy/-/spy-3.2.4.tgz", + "integrity": "sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyspy": "^4.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/utils": { + "version": "3.2.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@vitest/utils/-/utils-3.2.4.tgz", + "integrity": "sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "3.2.4", + "loupe": "^3.1.4", + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "peer": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/aria-query": { + "version": "5.3.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/aria-query/-/aria-query-5.3.0.tgz", + "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "dequal": "^2.0.3" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ast-types": { + "version": "0.16.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/ast-types/-/ast-types-0.16.1.tgz", + "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.13.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/axios/-/axios-1.13.2.tgz", + "integrity": "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.4", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.9.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/baseline-browser-mapping/-/baseline-browser-mapping-2.9.0.tgz", + "integrity": "sha512-Mh++g+2LPfzZToywfE1BUzvZbfOY52Nil0rn9H1CPC5DJ7fX+Vir7nToBeoiSbB1zTNeGYbELEvJESujgGrzXw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/browserslist": { + "version": "4.28.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "peer": true, + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bytewise": { + "version": "1.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/bytewise/-/bytewise-1.1.0.tgz", + "integrity": "sha512-rHuuseJ9iQ0na6UDhnrRVDh8YnWVlU6xM3VH6q/+yHDeUH2zIhUzP+2/h3LIrhLDBtTqzWpE3p3tP/boefskKQ==", + "license": "MIT", + "dependencies": { + "bytewise-core": "^1.2.2", + "typewise": "^1.0.3" + } + }, + "node_modules/bytewise-core": { + "version": "1.2.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/bytewise-core/-/bytewise-core-1.2.3.tgz", + "integrity": "sha512-nZD//kc78OOxeYtRlVk8/zXqTB4gf/nlguL1ggWA8FuchMyOxcyHR4QPQZMUmA7czC+YnaBrPUCubqAWe50DaA==", + "license": "MIT", + "dependencies": { + "typewise-core": "^1.2" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001759", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/caniuse-lite/-/caniuse-lite-1.0.30001759.tgz", + "integrity": "sha512-Pzfx9fOKoKvevQf8oCXoyNRQ5QyxJj+3O0Rqx2V5oxT61KGx8+n6hV/IUyJeifUci2clnmmKVpvtiqRzgiWjSw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chai": { + "version": "5.3.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/chai/-/chai-5.3.3.tgz", + "integrity": "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/check-error": { + "version": "2.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/check-error/-/check-error-2.1.1.tgz", + "integrity": "sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, + "node_modules/chromatic": { + "version": "13.3.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/chromatic/-/chromatic-13.3.4.tgz", + "integrity": "sha512-TR5rvyH0ESXobBB3bV8jc87AEAFQC7/n+Eb4XWhJz6hW3YNxIQPVjcbgLv+a4oKHEl1dUBueWSoIQsOVGTd+RQ==", + "dev": true, + "license": "MIT", + "bin": { + "chroma": "dist/bin.js", + "chromatic": "dist/bin.js", + "chromatic-cli": "dist/bin.js" + }, + "peerDependencies": { + "@chromatic-com/cypress": "^0.*.* || ^1.0.0", + "@chromatic-com/playwright": "^0.*.* || ^1.0.0" + }, + "peerDependenciesMeta": { + "@chromatic-com/cypress": { + "optional": true + }, + "@chromatic-com/playwright": { + "optional": true + } + } + }, + "node_modules/cli-width": { + "version": "4.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/cli-width/-/cli-width-4.1.0.tgz", + "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 12" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "license": "MIT" + }, + "node_modules/cookie": { + "version": "1.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/cookie/-/cookie-1.1.1.tgz", + "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cosmiconfig/node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==", + "dev": true, + "license": "MIT" + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "license": "MIT" + }, + "node_modules/date-fns": { + "version": "4.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/date-fns/-/date-fns-4.1.0.tgz", + "integrity": "sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/kossnocorp" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-eql": { + "version": "5.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "dev": true, + "license": "MIT" + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/earcut": { + "version": "3.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/earcut/-/earcut-3.0.2.tgz", + "integrity": "sha512-X7hshQbLyMJ/3RPhyObLARM2sNxxmRALLKx1+NVFFnQ9gKzmCrxm9+uLIAdBcvc8FNLpctqlQ2V6AE92Ol9UDQ==", + "license": "ISC" + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.264", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/electron-to-chromium/-/electron-to-chromium-1.5.264.tgz", + "integrity": "sha512-1tEf0nLgltC3iy9wtlYDlQDc5Rg9lEKVjEmIHJ21rI9OcqkvD45K1oyNIRA4rR1z3LgJ7KeGzEBojVcV6m4qjA==", + "dev": true, + "license": "ISC" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/empathic": { + "version": "2.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/empathic/-/empathic-2.0.0.tgz", + "integrity": "sha512-i6UzDscO/XfAcNYD75CfICkmfLedpyPDdozrLMmQc5ORaQcdMoc21OnlEylMIqI7U8eniKrPMxxtj8k0vhmJhA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "node_modules/error-ex": { + "version": "1.3.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/error-ex/-/error-ex-1.3.4.tgz", + "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/esbuild": { + "version": "0.27.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/esbuild/-/esbuild-0.27.1.tgz", + "integrity": "sha512-yY35KZckJJuVVPXpvjgxiCuVEJT67F6zDeVTv4rizyPrfGBUpZQsvmxnN+C371c2esD/hNMjj4tpBhuueLN7aA==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "peer": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.1", + "@esbuild/android-arm": "0.27.1", + "@esbuild/android-arm64": "0.27.1", + "@esbuild/android-x64": "0.27.1", + "@esbuild/darwin-arm64": "0.27.1", + "@esbuild/darwin-x64": "0.27.1", + "@esbuild/freebsd-arm64": "0.27.1", + "@esbuild/freebsd-x64": "0.27.1", + "@esbuild/linux-arm": "0.27.1", + "@esbuild/linux-arm64": "0.27.1", + "@esbuild/linux-ia32": "0.27.1", + "@esbuild/linux-loong64": "0.27.1", + "@esbuild/linux-mips64el": "0.27.1", + "@esbuild/linux-ppc64": "0.27.1", + "@esbuild/linux-riscv64": "0.27.1", + "@esbuild/linux-s390x": "0.27.1", + "@esbuild/linux-x64": "0.27.1", + "@esbuild/netbsd-arm64": "0.27.1", + "@esbuild/netbsd-x64": "0.27.1", + "@esbuild/openbsd-arm64": "0.27.1", + "@esbuild/openbsd-x64": "0.27.1", + "@esbuild/openharmony-arm64": "0.27.1", + "@esbuild/sunos-x64": "0.27.1", + "@esbuild/win32-arm64": "0.27.1", + "@esbuild/win32-ia32": "0.27.1", + "@esbuild/win32-x64": "0.27.1" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.39.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/eslint/-/eslint-9.39.1.tgz", + "integrity": "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.8.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.21.1", + "@eslint/config-helpers": "^0.4.2", + "@eslint/core": "^0.17.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.39.1", + "@eslint/plugin-kit": "^0.4.1", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.4.0", + "eslint-visitor-keys": "^4.2.1", + "espree": "^10.4.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "5.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz", + "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.24", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.24.tgz", + "integrity": "sha512-nLHIW7TEq3aLrEYWpVaJ1dRgFR+wLDPN8e8FpYAql/bMV2oBEfC37K0gLEGgv9fy66juNShSMV8OkTqzltcG/w==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "eslint": ">=8.40" + } + }, + "node_modules/eslint-plugin-storybook": { + "version": "10.1.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/eslint-plugin-storybook/-/eslint-plugin-storybook-10.1.4.tgz", + "integrity": "sha512-itG2eLrWyuP5RGIL3TMGA5KSGoBOX3aTnQd43qLJu36ZMzd9H4RHN1I8WTVvyiaInppYJMGB4nnXzSdNXUUeTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/utils": "^8.8.1" + }, + "peerDependencies": { + "eslint": ">=8", + "storybook": "^10.1.4" + } + }, + "node_modules/eslint-scope": { + "version": "8.4.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/eslint-scope/-/eslint-scope-8.4.0.tgz", + "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.2.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", + "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.4.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/espree/-/espree-10.4.0.tgz", + "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.15.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true, + "license": "MIT" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "license": "MIT", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/filesize": { + "version": "10.1.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/filesize/-/filesize-10.1.6.tgz", + "integrity": "sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">= 10.4.0" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", + "license": "MIT" + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/follow-redirects": { + "version": "1.15.11", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/follow-redirects/-/follow-redirects-1.15.11.tgz", + "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "4.0.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/form-data/-/form-data-4.0.5.tgz", + "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/geojson-vt": { + "version": "4.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/geojson-vt/-/geojson-vt-4.0.2.tgz", + "integrity": "sha512-AV9ROqlNqoZEIJGfm1ncNjEXfkz2hdFlZf0qkVfmkwdKa8vj7H16YUOT81rJw1rdFhyEDlN2Tds91p/glzbl5A==", + "license": "ISC" + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gl-matrix": { + "version": "3.4.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/gl-matrix/-/gl-matrix-3.4.4.tgz", + "integrity": "sha512-latSnyDNt/8zYUB6VIJ6PCh2jBjJX6gnDsoCZ7LyW7GkqrD51EWwa9qCoGixj8YqBtETQK/xY7OmpTF8xz1DdQ==", + "license": "MIT" + }, + "node_modules/glob": { + "version": "10.5.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "16.5.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/globals/-/globals-16.5.0.tgz", + "integrity": "sha512-c/c15i26VrJ4IRt5Z89DnIzCGDn9EcebibhAOjw5ibqEHsE1wLUgkPn9RDmNcUKyU87GeaL633nyJ+pplFR2ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC", + "optional": true + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/graphql": { + "version": "16.12.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/graphql/-/graphql-16.12.0.tgz", + "integrity": "sha512-DKKrynuQRne0PNpEbzuEdHlYOMksHSUI8Zc9Unei5gTsMNA2/vMpoMz/yKba50pejK56qj98qM0SjYxAKi13gQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/headers-polyfill": { + "version": "4.0.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/headers-polyfill/-/headers-polyfill-4.0.3.tgz", + "integrity": "sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "license": "BSD-3-Clause", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hoist-non-react-statics/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "11.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/immer/-/immer-11.0.1.tgz", + "integrity": "sha512-naDCyggtcBWANtIrjQEajhhBEuL9b0Zg4zmlWK2CzS6xCWSE39/vvf4LqnMjUAWHBhot4m9MHCM/Z+mfWhUkiA==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "license": "MIT" + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-node-process": { + "version": "1.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/is-node-process/-/is-node-process-1.2.0.tgz", + "integrity": "sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stringify-pretty-compact": { + "version": "4.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/json-stringify-pretty-compact/-/json-stringify-pretty-compact-4.0.0.tgz", + "integrity": "sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==", + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/jsonfile/-/jsonfile-6.2.0.tgz", + "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/kdbush": { + "version": "4.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/kdbush/-/kdbush-4.0.2.tgz", + "integrity": "sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==", + "license": "ISC" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/leaflet": { + "version": "1.9.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/leaflet/-/leaflet-1.9.4.tgz", + "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==", + "license": "BSD-2-Clause", + "peer": true + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "license": "MIT" + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/loupe": { + "version": "3.2.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/loupe/-/loupe-3.2.1.tgz", + "integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "dev": true, + "license": "MIT", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/maplibre-gl": { + "version": "5.14.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/maplibre-gl/-/maplibre-gl-5.14.0.tgz", + "integrity": "sha512-O2ok6N/bQ9NA9nJ22r/PRQQYkUe9JwfDMjBPkQ+8OwsVH4TpA5skIAM2wc0k+rni5lVbAVONVyBvgi1rF2vEPA==", + "license": "BSD-3-Clause", + "peer": true, + "dependencies": { + "@mapbox/geojson-rewind": "^0.5.2", + "@mapbox/jsonlint-lines-primitives": "^2.0.2", + "@mapbox/point-geometry": "^1.1.0", + "@mapbox/tiny-sdf": "^2.0.7", + "@mapbox/unitbezier": "^0.0.1", + "@mapbox/vector-tile": "^2.0.4", + "@mapbox/whoots-js": "^3.1.0", + "@maplibre/maplibre-gl-style-spec": "^24.3.1", + "@maplibre/mlt": "^1.1.2", + "@maplibre/vt-pbf": "^4.1.0", + "@types/geojson": "^7946.0.16", + "@types/geojson-vt": "3.2.5", + "@types/supercluster": "^7.1.3", + "earcut": "^3.0.2", + "geojson-vt": "^4.0.2", + "gl-matrix": "^3.4.4", + "kdbush": "^4.0.2", + "murmurhash-js": "^1.0.0", + "pbf": "^4.0.1", + "potpack": "^2.1.0", + "quickselect": "^3.0.0", + "supercluster": "^8.0.1", + "tinyqueue": "^3.0.0" + }, + "engines": { + "node": ">=16.14.0", + "npm": ">=8.1.0" + }, + "funding": { + "url": "https://github.com/maplibre/maplibre-gl-js?sponsor=1" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/msw": { + "version": "2.12.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/msw/-/msw-2.12.4.tgz", + "integrity": "sha512-rHNiVfTyKhzc0EjoXUBVGteNKBevdjOlVC6GlIRXpy+/3LHEIGRovnB5WPjcvmNODVQ1TNFnoa7wsGbd0V3epg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@inquirer/confirm": "^5.0.0", + "@mswjs/interceptors": "^0.40.0", + "@open-draft/deferred-promise": "^2.2.0", + "@types/statuses": "^2.0.6", + "cookie": "^1.0.2", + "graphql": "^16.12.0", + "headers-polyfill": "^4.0.2", + "is-node-process": "^1.2.0", + "outvariant": "^1.4.3", + "path-to-regexp": "^6.3.0", + "picocolors": "^1.1.1", + "rettime": "^0.7.0", + "statuses": "^2.0.2", + "strict-event-emitter": "^0.5.1", + "tough-cookie": "^6.0.0", + "type-fest": "^5.2.0", + "until-async": "^3.0.2", + "yargs": "^17.7.2" + }, + "bin": { + "msw": "cli/index.js" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/mswjs" + }, + "peerDependencies": { + "typescript": ">= 4.8.x" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/murmurhash-js": { + "version": "1.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/murmurhash-js/-/murmurhash-js-1.0.0.tgz", + "integrity": "sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==", + "license": "MIT" + }, + "node_modules/mute-stream": { + "version": "2.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/mute-stream/-/mute-stream-2.0.0.tgz", + "integrity": "sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==", + "dev": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-releases": { + "version": "2.0.27", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/outvariant": { + "version": "1.4.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/outvariant/-/outvariant-1.4.3.tgz", + "integrity": "sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==", + "dev": true, + "license": "MIT" + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true, + "license": "BlueOak-1.0.0" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/path-to-regexp": { + "version": "6.3.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/path-to-regexp/-/path-to-regexp-6.3.0.tgz", + "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pathval": { + "version": "2.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/pathval/-/pathval-2.0.1.tgz", + "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, + "node_modules/pbf": { + "version": "4.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/pbf/-/pbf-4.0.1.tgz", + "integrity": "sha512-SuLdBvS42z33m8ejRbInMapQe8n0D3vN/Xd5fmWM3tufNgRQFBpaW2YVJxQZV4iPNqb0vEFvssMEo5w9c6BTIA==", + "license": "BSD-3-Clause", + "dependencies": { + "resolve-protobuf-schema": "^2.1.0" + }, + "bin": { + "pbf": "bin/pbf" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/potpack": { + "version": "2.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/potpack/-/potpack-2.1.0.tgz", + "integrity": "sha512-pcaShQc1Shq0y+E7GqJqvZj8DTthWV1KeHGdi0Z6IAin2Oi3JnLCOfwnCo84qc+HAp52wT9nK9H7FAJp5a44GQ==", + "license": "ISC" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pretty-format/node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", + "dev": true, + "license": "MIT" + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/protocol-buffers-schema": { + "version": "3.6.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz", + "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==", + "license": "MIT" + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/quickselect": { + "version": "3.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/quickselect/-/quickselect-3.0.0.tgz", + "integrity": "sha512-XdjUArbK4Bm5fLLvlm5KpTFOiOThgfWWI4axAZDWg4E/0mKdZyI9tNEfds27qCi1ze/vwTR16kvmmGhRra3c2g==", + "license": "ISC" + }, + "node_modules/react": { + "version": "19.2.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react/-/react-19.2.1.tgz", + "integrity": "sha512-DGrYcCWK7tvYMnWh79yrPHt+vdx9tY+1gPZa7nJQtO/p8bLTDaHp4dzwEhQB7pZ4Xe3ok4XKuEPrVuc+wlpkmw==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-docgen": { + "version": "8.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-docgen/-/react-docgen-8.0.2.tgz", + "integrity": "sha512-+NRMYs2DyTP4/tqWz371Oo50JqmWltR1h2gcdgUMAWZJIAvrd0/SqlCfx7tpzpl/s36rzw6qH2MjoNrxtRNYhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.28.0", + "@babel/traverse": "^7.28.0", + "@babel/types": "^7.28.2", + "@types/babel__core": "^7.20.5", + "@types/babel__traverse": "^7.20.7", + "@types/doctrine": "^0.0.9", + "@types/resolve": "^1.20.2", + "doctrine": "^3.0.0", + "resolve": "^1.22.1", + "strip-indent": "^4.0.0" + }, + "engines": { + "node": "^20.9.0 || >=22" + } + }, + "node_modules/react-docgen-typescript": { + "version": "2.4.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-docgen-typescript/-/react-docgen-typescript-2.4.0.tgz", + "integrity": "sha512-ZtAp5XTO5HRzQctjPU0ybY0RRCQO19X/8fxn3w7y2VVTUbGHDKULPTL4ky3vB05euSgG5NpALhEhDPvQ56wvXg==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "typescript": ">= 4.3.x" + } + }, + "node_modules/react-dom": { + "version": "19.2.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-dom/-/react-dom-19.2.1.tgz", + "integrity": "sha512-ibrK8llX2a4eOskq1mXKu/TGZj9qzomO+sNfO98M6d9zIPOEhlBkMkBUBLd1vgS0gQsLDBzA+8jJBVXDnfHmJg==", + "license": "MIT", + "peer": true, + "dependencies": { + "scheduler": "^0.27.0" + }, + "peerDependencies": { + "react": "^19.2.1" + } + }, + "node_modules/react-icons": { + "version": "5.5.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-icons/-/react-icons-5.5.0.tgz", + "integrity": "sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==", + "license": "MIT", + "peerDependencies": { + "react": "*" + } + }, + "node_modules/react-is": { + "version": "19.2.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-is/-/react-is-19.2.1.tgz", + "integrity": "sha512-L7BnWgRbMwzMAubQcS7sXdPdNLmKlucPlopgAzx7FtYbksWZgEWiuYM5x9T6UqS2Ne0rsgQTq5kY2SGqpzUkYA==", + "license": "MIT" + }, + "node_modules/react-leaflet": { + "version": "5.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-leaflet/-/react-leaflet-5.0.0.tgz", + "integrity": "sha512-CWbTpr5vcHw5bt9i4zSlPEVQdTVcML390TjeDG0cK59z1ylexpqC6M1PJFjV8jD7CF+ACBFsLIDs6DRMoLEofw==", + "license": "Hippocratic-2.1", + "dependencies": { + "@react-leaflet/core": "^3.0.0" + }, + "peerDependencies": { + "leaflet": "^1.9.0", + "react": "^19.0.0", + "react-dom": "^19.0.0" + } + }, + "node_modules/react-map-gl": { + "version": "8.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-map-gl/-/react-map-gl-8.1.0.tgz", + "integrity": "sha512-vDx/QXR3Tb+8/ap/z6gdMjJQ8ZEyaZf6+uMSPz7jhWF5VZeIsKsGfPvwHVPPwGF43Ryn+YR4bd09uEFNR5OPdg==", + "license": "MIT", + "dependencies": { + "@vis.gl/react-mapbox": "8.1.0", + "@vis.gl/react-maplibre": "8.1.0" + }, + "peerDependencies": { + "mapbox-gl": ">=1.13.0", + "maplibre-gl": ">=1.13.0", + "react": ">=16.3.0", + "react-dom": ">=16.3.0" + }, + "peerDependenciesMeta": { + "mapbox-gl": { + "optional": true + }, + "maplibre-gl": { + "optional": true + } + } + }, + "node_modules/react-redux": { + "version": "9.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-redux/-/react-redux-9.2.0.tgz", + "integrity": "sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==", + "license": "MIT", + "peer": true, + "dependencies": { + "@types/use-sync-external-store": "^0.0.6", + "use-sync-external-store": "^1.4.0" + }, + "peerDependencies": { + "@types/react": "^18.2.25 || ^19", + "react": "^18.0 || ^19", + "redux": "^5.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "redux": { + "optional": true + } + } + }, + "node_modules/react-refresh": { + "version": "0.18.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-refresh/-/react-refresh-0.18.0.tgz", + "integrity": "sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-router": { + "version": "7.10.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-router/-/react-router-7.10.0.tgz", + "integrity": "sha512-FVyCOH4IZ0eDDRycODfUqoN8ZSR2LbTvtx6RPsBgzvJ8xAXlMZNCrOFpu+jb8QbtZnpAd/cEki2pwE848pNGxw==", + "license": "MIT", + "dependencies": { + "cookie": "^1.0.1", + "set-cookie-parser": "^2.6.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + } + } + }, + "node_modules/react-router-dom": { + "version": "7.10.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-router-dom/-/react-router-dom-7.10.0.tgz", + "integrity": "sha512-Q4haR150pN/5N75O30iIsRJcr3ef7p7opFaKpcaREy0GQit6uCRu1NEiIFIwnHJQy0bsziRFBweR/5EkmHgVUQ==", + "license": "MIT", + "dependencies": { + "react-router": "7.10.0" + }, + "engines": { + "node": ">=20.0.0" + }, + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + } + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/react-virtuoso": { + "version": "4.16.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-virtuoso/-/react-virtuoso-4.16.1.tgz", + "integrity": "sha512-V9ZDw7TFspJb02gNWqHyVZvaMaCFaoL30F/tOVepCI12kdLjA2oxFfWvNC66AVJdOH5cwiq8317p2Q9OpG+TDw==", + "license": "MIT", + "peerDependencies": { + "react": ">=16 || >=17 || >= 18 || >= 19", + "react-dom": ">=16 || >=17 || >= 18 || >=19" + } + }, + "node_modules/react-window": { + "version": "2.2.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/react-window/-/react-window-2.2.3.tgz", + "integrity": "sha512-gTRqQYC8ojbiXyd9duYFiSn2TJw0ROXCgYjenOvNKITWzK0m0eCvkUsEUM08xvydkMh7ncp+LE0uS3DeNGZxnQ==", + "license": "MIT", + "peerDependencies": { + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + } + }, + "node_modules/recast": { + "version": "0.23.11", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/recast/-/recast-0.23.11.tgz", + "integrity": "sha512-YTUo+Flmw4ZXiWfQKGcwwc11KnoRAYgzAE2E7mXKCjSviTKShtxBsN6YUUBB2gtaBzKzeKunxhUwNHQuRryhWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ast-types": "^0.16.1", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tiny-invariant": "^1.3.3", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/recast/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "license": "MIT", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/redent/node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/redux": { + "version": "5.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/redux/-/redux-5.0.1.tgz", + "integrity": "sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==", + "license": "MIT", + "peer": true + }, + "node_modules/redux-persist": { + "version": "6.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/redux-persist/-/redux-persist-6.0.0.tgz", + "integrity": "sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==", + "license": "MIT", + "peerDependencies": { + "redux": ">4.0.0" + } + }, + "node_modules/redux-thunk": { + "version": "3.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/redux-thunk/-/redux-thunk-3.1.0.tgz", + "integrity": "sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==", + "license": "MIT", + "peerDependencies": { + "redux": "^5.0.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/reselect": { + "version": "5.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/reselect/-/reselect-5.1.1.tgz", + "integrity": "sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.11", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-protobuf-schema": { + "version": "2.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz", + "integrity": "sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==", + "license": "MIT", + "dependencies": { + "protocol-buffers-schema": "^3.3.1" + } + }, + "node_modules/rettime": { + "version": "0.7.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/rettime/-/rettime-0.7.0.tgz", + "integrity": "sha512-LPRKoHnLKd/r3dVxcwO7vhCW+orkOGj9ViueosEBK6ie89CijnfRlhaDhHq/3Hxu4CkWQtxwlBG0mzTQY6uQjw==", + "dev": true, + "license": "MIT" + }, + "node_modules/rollup": { + "version": "4.53.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/rollup/-/rollup-4.53.3.tgz", + "integrity": "sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.53.3", + "@rollup/rollup-android-arm64": "4.53.3", + "@rollup/rollup-darwin-arm64": "4.53.3", + "@rollup/rollup-darwin-x64": "4.53.3", + "@rollup/rollup-freebsd-arm64": "4.53.3", + "@rollup/rollup-freebsd-x64": "4.53.3", + "@rollup/rollup-linux-arm-gnueabihf": "4.53.3", + "@rollup/rollup-linux-arm-musleabihf": "4.53.3", + "@rollup/rollup-linux-arm64-gnu": "4.53.3", + "@rollup/rollup-linux-arm64-musl": "4.53.3", + "@rollup/rollup-linux-loong64-gnu": "4.53.3", + "@rollup/rollup-linux-ppc64-gnu": "4.53.3", + "@rollup/rollup-linux-riscv64-gnu": "4.53.3", + "@rollup/rollup-linux-riscv64-musl": "4.53.3", + "@rollup/rollup-linux-s390x-gnu": "4.53.3", + "@rollup/rollup-linux-x64-gnu": "4.53.3", + "@rollup/rollup-linux-x64-musl": "4.53.3", + "@rollup/rollup-openharmony-arm64": "4.53.3", + "@rollup/rollup-win32-arm64-msvc": "4.53.3", + "@rollup/rollup-win32-ia32-msvc": "4.53.3", + "@rollup/rollup-win32-x64-gnu": "4.53.3", + "@rollup/rollup-win32-x64-msvc": "4.53.3", + "fsevents": "~2.3.2" + } + }, + "node_modules/rw": { + "version": "1.3.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/rw/-/rw-1.3.3.tgz", + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==", + "license": "BSD-3-Clause" + }, + "node_modules/scheduler": { + "version": "0.27.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/scheduler/-/scheduler-0.27.0.tgz", + "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", + "license": "MIT" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/set-cookie-parser": { + "version": "2.7.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/set-cookie-parser/-/set-cookie-parser-2.7.2.tgz", + "integrity": "sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==", + "license": "MIT" + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sort-asc": { + "version": "0.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/sort-asc/-/sort-asc-0.2.0.tgz", + "integrity": "sha512-umMGhjPeHAI6YjABoSTrFp2zaBtXBej1a0yKkuMUyjjqu6FJsTF+JYwCswWDg+zJfk/5npWUUbd33HH/WLzpaA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-desc": { + "version": "0.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/sort-desc/-/sort-desc-0.2.0.tgz", + "integrity": "sha512-NqZqyvL4VPW+RAxxXnB8gvE1kyikh8+pR+T+CXLksVRN9eiQqkQlPwqWYU0mF9Jm7UnctShlxLyAt1CaBOTL1w==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-object": { + "version": "3.0.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/sort-object/-/sort-object-3.0.3.tgz", + "integrity": "sha512-nK7WOY8jik6zaG9CRwZTaD5O7ETWDLZYMM12pqY8htll+7dYeqGfEUPcUBHOpSJg2vJOrvFIY2Dl5cX2ih1hAQ==", + "license": "MIT", + "dependencies": { + "bytewise": "^1.1.0", + "get-value": "^2.0.2", + "is-extendable": "^0.1.1", + "sort-asc": "^0.2.0", + "sort-desc": "^0.2.0", + "union-value": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "2.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/storybook": { + "version": "10.1.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/storybook/-/storybook-10.1.4.tgz", + "integrity": "sha512-FrBjm8I8O+pYEOPHcdW9xWwgXSZxte7lza9q2lN3jFN4vuW79m5j0OnTQeR8z9MmIbBTvkIpp3yMBebl53Yt5Q==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "@storybook/global": "^5.0.0", + "@storybook/icons": "^2.0.0", + "@testing-library/jest-dom": "^6.6.3", + "@testing-library/user-event": "^14.6.1", + "@vitest/expect": "3.2.4", + "@vitest/spy": "3.2.4", + "esbuild": "^0.18.0 || ^0.19.0 || ^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.23.0 || ^0.24.0 || ^0.25.0 || ^0.26.0 || ^0.27.0", + "recast": "^0.23.5", + "semver": "^7.6.2", + "use-sync-external-store": "^1.5.0", + "ws": "^8.18.0" + }, + "bin": { + "storybook": "dist/bin/dispatcher.js" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "prettier": "^2 || ^3" + }, + "peerDependenciesMeta": { + "prettier": { + "optional": true + } + } + }, + "node_modules/storybook/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/strict-event-emitter": { + "version": "0.5.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/strict-event-emitter/-/strict-event-emitter-0.5.1.tgz", + "integrity": "sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "6.2.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/ansi-regex/-/ansi-regex-6.2.2.tgz", + "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-indent": { + "version": "4.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/strip-indent/-/strip-indent-4.1.1.tgz", + "integrity": "sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/stylis": { + "version": "4.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/stylis/-/stylis-4.2.0.tgz", + "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==", + "license": "MIT" + }, + "node_modules/supercluster": { + "version": "8.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/supercluster/-/supercluster-8.0.1.tgz", + "integrity": "sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==", + "license": "ISC", + "dependencies": { + "kdbush": "^4.0.2" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tagged-tag": { + "version": "1.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/tagged-tag/-/tagged-tag-1.0.0.tgz", + "integrity": "sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyqueue": { + "version": "3.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/tinyqueue/-/tinyqueue-3.0.0.tgz", + "integrity": "sha512-gRa9gwYU3ECmQYv3lslts5hxuIa90veaEcxDYuu3QGOIAEM2mOZkVHp48ANJuu1CURtRdHKUBY5Lm1tHV+sD4g==", + "license": "ISC" + }, + "node_modules/tinyrainbow": { + "version": "2.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/tinyrainbow/-/tinyrainbow-2.0.0.tgz", + "integrity": "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tinyspy": { + "version": "4.0.4", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/tinyspy/-/tinyspy-4.0.4.tgz", + "integrity": "sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tldts": { + "version": "7.0.19", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/tldts/-/tldts-7.0.19.tgz", + "integrity": "sha512-8PWx8tvC4jDB39BQw1m4x8y5MH1BcQ5xHeL2n7UVFulMPH/3Q0uiamahFJ3lXA0zO2SUyRXuVVbWSDmstlt9YA==", + "dev": true, + "license": "MIT", + "dependencies": { + "tldts-core": "^7.0.19" + }, + "bin": { + "tldts": "bin/cli.js" + } + }, + "node_modules/tldts-core": { + "version": "7.0.19", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/tldts-core/-/tldts-core-7.0.19.tgz", + "integrity": "sha512-lJX2dEWx0SGH4O6p+7FPwYmJ/bu1JbcGJ8RLaG9b7liIgZ85itUVEPbMtWRVrde/0fnDPEPHW10ZsKW3kVsE9A==", + "dev": true, + "license": "MIT" + }, + "node_modules/tough-cookie": { + "version": "6.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/tough-cookie/-/tough-cookie-6.0.0.tgz", + "integrity": "sha512-kXuRi1mtaKMrsLUxz3sQYvVl37B0Ns6MzfrtV5DvJceE9bPyspOqk9xxv7XbZWcfLWbFmm997vl83qUWVJA64w==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "tldts": "^7.0.5" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/ts-api-utils": { + "version": "2.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/ts-api-utils/-/ts-api-utils-2.1.0.tgz", + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/ts-dedent": { + "version": "2.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/ts-dedent/-/ts-dedent-2.2.0.tgz", + "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.10" + } + }, + "node_modules/tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "5.3.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/type-fest/-/type-fest-5.3.0.tgz", + "integrity": "sha512-d9CwU93nN0IA1QL+GSNDdwLAu1Ew5ZjTwupvedwg3WdfoH6pIDvYQ2hV0Uc2nKBLPq7NB5apCx57MLS5qlmO5g==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "dependencies": { + "tagged-tag": "^1.0.0" + }, + "engines": { + "node": ">=20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "peer": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.48.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/typescript-eslint/-/typescript-eslint-8.48.1.tgz", + "integrity": "sha512-FbOKN1fqNoXp1hIl5KYpObVrp0mCn+CLgn479nmu2IsRMrx2vyv74MmsBLVlhg8qVwNFGbXSp8fh1zp8pEoC2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.48.1", + "@typescript-eslint/parser": "8.48.1", + "@typescript-eslint/typescript-estree": "8.48.1", + "@typescript-eslint/utils": "8.48.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <6.0.0" + } + }, + "node_modules/typewise": { + "version": "1.0.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/typewise/-/typewise-1.0.3.tgz", + "integrity": "sha512-aXofE06xGhaQSPzt8hlTY+/YWQhm9P0jYUp1f2XtmW/3Bk0qzXcyFWAtPoo2uTGQj1ZwbDuSyuxicq+aDo8lCQ==", + "license": "MIT", + "dependencies": { + "typewise-core": "^1.2.0" + } + }, + "node_modules/typewise-core": { + "version": "1.2.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/typewise-core/-/typewise-core-1.2.0.tgz", + "integrity": "sha512-2SCC/WLzj2SbUwzFOzqMCkz5amXLlxtJqDKTICqg30x+2DZxcfZN2MvQZmGfXWKNWaKK9pBPsvkcwv8bF/gxKg==", + "license": "MIT" + }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "dev": true, + "license": "MIT" + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "license": "MIT", + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unplugin": { + "version": "2.3.11", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/unplugin/-/unplugin-2.3.11.tgz", + "integrity": "sha512-5uKD0nqiYVzlmCRs01Fhs2BdkEgBS3SAVP6ndrBsuK42iC2+JHyxM05Rm9G8+5mkmRtzMZGY8Ct5+mliZxU/Ww==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/remapping": "^2.3.5", + "acorn": "^8.15.0", + "picomatch": "^4.0.3", + "webpack-virtual-modules": "^0.6.2" + }, + "engines": { + "node": ">=18.12.0" + } + }, + "node_modules/until-async": { + "version": "3.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/until-async/-/until-async-3.0.2.tgz", + "integrity": "sha512-IiSk4HlzAMqTUseHHe3VhIGyuFmN90zMTpD3Z3y8jeQbzLIq500MVM7Jq2vUAnTKAFPJrqwkzr6PoTcPhGcOiw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/kettanaito" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/update-browserslist-db/-/update-browserslist-db-1.2.1.tgz", + "integrity": "sha512-R9NcHbbZ45RoWfTdhn1J9SS7zxNvlddv4YRrHTUaFdtjbmfncfedB45EC9IaqJQ97iAR1GZgOfyRQO+ExIF6EQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/use-sync-external-store": { + "version": "1.6.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz", + "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/uuid": { + "version": "13.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/uuid/-/uuid-13.0.0.tgz", + "integrity": "sha512-XQegIaBTVUjSHliKqcnFqYypAd4S+WCYt5NIeRs6w/UAry7z8Y9j5ZwRRL4kzq9U3sD6v+85er9FvkEaBpji2w==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], + "license": "MIT", + "bin": { + "uuid": "dist-node/bin/uuid" + } + }, + "node_modules/vite": { + "version": "7.2.6", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/vite/-/vite-7.2.6.tgz", + "integrity": "sha512-tI2l/nFHC5rLh7+5+o7QjKjSR04ivXDF4jcgV0f/bTQ+OJiITy5S6gaynVsEM+7RqzufMnVbIon6Sr5x1SDYaQ==", + "dev": true, + "license": "MIT", + "peer": true, + "dependencies": { + "esbuild": "^0.25.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/@esbuild/aix-ppc64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz", + "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/android-arm/-/android-arm-0.25.12.tgz", + "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/android-arm64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz", + "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/android-x64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/android-x64/-/android-x64-0.25.12.tgz", + "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz", + "integrity": "sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/darwin-x64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz", + "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz", + "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/freebsd-x64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz", + "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz", + "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-arm64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz", + "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ia32": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz", + "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-loong64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz", + "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-mips64el": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz", + "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-ppc64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz", + "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-riscv64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz", + "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-s390x": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz", + "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/linux-x64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz", + "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz", + "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/netbsd-x64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz", + "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz", + "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/openbsd-x64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz", + "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/openharmony-arm64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz", + "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/sunos-x64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz", + "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-arm64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz", + "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-ia32": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz", + "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz", + "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/vite/node_modules/esbuild": { + "version": "0.25.12", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/esbuild/-/esbuild-0.25.12.tgz", + "integrity": "sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.12", + "@esbuild/android-arm": "0.25.12", + "@esbuild/android-arm64": "0.25.12", + "@esbuild/android-x64": "0.25.12", + "@esbuild/darwin-arm64": "0.25.12", + "@esbuild/darwin-x64": "0.25.12", + "@esbuild/freebsd-arm64": "0.25.12", + "@esbuild/freebsd-x64": "0.25.12", + "@esbuild/linux-arm": "0.25.12", + "@esbuild/linux-arm64": "0.25.12", + "@esbuild/linux-ia32": "0.25.12", + "@esbuild/linux-loong64": "0.25.12", + "@esbuild/linux-mips64el": "0.25.12", + "@esbuild/linux-ppc64": "0.25.12", + "@esbuild/linux-riscv64": "0.25.12", + "@esbuild/linux-s390x": "0.25.12", + "@esbuild/linux-x64": "0.25.12", + "@esbuild/netbsd-arm64": "0.25.12", + "@esbuild/netbsd-x64": "0.25.12", + "@esbuild/openbsd-arm64": "0.25.12", + "@esbuild/openbsd-x64": "0.25.12", + "@esbuild/openharmony-arm64": "0.25.12", + "@esbuild/sunos-x64": "0.25.12", + "@esbuild/win32-arm64": "0.25.12", + "@esbuild/win32-ia32": "0.25.12", + "@esbuild/win32-x64": "0.25.12" + } + }, + "node_modules/webpack-virtual-modules": { + "version": "0.6.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz", + "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/ansi-styles/-/ansi-styles-6.2.3.tgz", + "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ws": { + "version": "8.18.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/ws/-/ws-8.18.3.tgz", + "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yoctocolors-cjs": { + "version": "2.1.3", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/yoctocolors-cjs/-/yoctocolors-cjs-2.1.3.tgz", + "integrity": "sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "4.1.13", + "resolved": "https://infyartifactory.jfrog.io/artifactory/api/npm/npm-remote/zod/-/zod-4.1.13.tgz", + "integrity": "sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + } +} diff --git a/frontend/web-ui/package.json b/frontend/web-ui/package.json new file mode 100644 index 0000000..426aaa8 --- /dev/null +++ b/frontend/web-ui/package.json @@ -0,0 +1,72 @@ +{ + "name": "service-manager-web-ui", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "tsc -b && vite build", + "lint": "eslint .", + "preview": "vite preview", + "storybook": "storybook dev -p 6006", + "build-storybook": "storybook build" + }, + "dependencies": { + "@dnd-kit/core": "^6.3.1", + "@dnd-kit/sortable": "^10.0.0", + "@dnd-kit/utilities": "^3.2.2", + "@emotion/react": "^11.14.0", + "@emotion/styled": "^11.14.1", + "@fontsource/roboto": "^5.2.8", + "@mui/icons-material": "^7.3.5", + "@mui/material": "^7.3.5", + "@reduxjs/toolkit": "^2.10.1", + "@types/leaflet": "^1.9.21", + "@types/react-redux": "^7.1.34", + "@types/uuid": "^10.0.0", + "axios": "^1.13.2", + "date-fns": "^4.1.0", + "leaflet": "^1.9.4", + "maplibre-gl": "^5.13.0", + "react": "^19.1.1", + "react-dom": "^19.1.1", + "react-icons": "^5.5.0", + "react-leaflet": "^5.0.0", + "react-map-gl": "^8.1.0", + "react-redux": "^9.2.0", + "react-router-dom": "^7.9.5", + "react-virtuoso": "^4.16.1", + "react-window": "^2.2.3", + "redux": "^5.0.1", + "redux-persist": "^6.0.0", + "uuid": "^13.0.0", + "zod": "^4.1.12" + }, + "devDependencies": { + "@chromatic-com/storybook": "^4.1.2", + "@eslint/js": "^9.39.1", + "@storybook/addon-actions": "^9.0.8", + "@storybook/addon-docs": "^10.0.7", + "@storybook/addon-onboarding": "^10.0.7", + "@storybook/react-vite": "^10.0.7", + "@types/leaflet": "^1.9.21", + "@types/maplibre-gl": "^1.13.2", + "@types/node": "^24.6.0", + "@types/react": "^19.1.16", + "@types/react-dom": "^19.1.9", + "@vitejs/plugin-react": "^5.1.1", + "eslint": "^9.39.1", + "eslint-plugin-react-hooks": "^5.2.0", + "eslint-plugin-react-refresh": "^0.4.22", + "eslint-plugin-storybook": "^10.0.7", + "globals": "^16.4.0", + "msw": "^2.12.2", + "storybook": "^10.0.7", + "typescript": "~5.9.3", + "typescript-eslint": "^8.45.0", + "vite": "^7.1.7" + }, + "overrides": { + "js-yaml": "4.1.1" + } +} diff --git a/frontend/web-ui/public/propertyTaxLogo.svg b/frontend/web-ui/public/propertyTaxLogo.svg new file mode 100644 index 0000000..1555055 --- /dev/null +++ b/frontend/web-ui/public/propertyTaxLogo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/frontend/web-ui/public/wards.geojson b/frontend/web-ui/public/wards.geojson new file mode 100644 index 0000000..415ce80 --- /dev/null +++ b/frontend/web-ui/public/wards.geojson @@ -0,0 +1,386862 @@ +{ + "type": "FeatureCollection", + "name": "GBAGeoJson", + "crs": { + "type": "name", + "properties": { + "name": "urn:ogc:def:crs:OGC:1.3:CRS84" + } + }, + "features": [ + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "1", + "group": "Cox Town", + "Corporatio": "Central", + "ac_no": "161", + "ac": "C.V. Raman Nagar", + "corporat_1": "1", + "ward_id": "6", + "ward_name": "6 - Cox Town", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಸಿ.ವಿ. ರಾಮನ್ ನಗರ", + "ward_name_": "ಕಾಕ್ಸ್ ಟೌನ್", + "dig_ward_n": "Cox Town", + "Assembly": "161 - C.V. Raman Nagar", + "Slno": "6" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.618751404146906, + 12.992969747357201 + ], + [ + 77.618750307834503, + 12.9929717667099 + ], + [ + 77.618706397233595, + 12.9930526236124 + ], + [ + 77.618612874884604, + 12.9932353930355 + ], + [ + 77.618272507086601, + 12.993900565052799 + ], + [ + 77.618234449258495, + 12.9939706393442 + ], + [ + 77.618036831739602, + 12.994334508545901 + ], + [ + 77.618035487771493, + 12.9943369839102 + ], + [ + 77.617990064619093, + 12.994420619575401 + ], + [ + 77.617930180282997, + 12.994522879549599 + ], + [ + 77.617828729965495, + 12.994696118244301 + ], + [ + 77.617770587774302, + 12.994795492286899 + ], + [ + 77.617634827143803, + 12.9950272325905 + ], + [ + 77.617598631373795, + 12.9950897074923 + ], + [ + 77.617587776731597, + 12.995101370735901 + ], + [ + 77.617427817508599, + 12.9952732423878 + ], + [ + 77.617345259564701, + 12.9953621588114 + ], + [ + 77.616996181036995, + 12.995567816448199 + ], + [ + 77.616911670758597, + 12.9956352953589 + ], + [ + 77.616785240294305, + 12.9957453629124 + ], + [ + 77.616780435478304, + 12.995749545381999 + ], + [ + 77.616831514279895, + 12.995788555145801 + ], + [ + 77.616953034922204, + 12.9961016585842 + ], + [ + 77.616966368388006, + 12.996136013098001 + ], + [ + 77.6170096392202, + 12.9962475032771 + ], + [ + 77.617211445455595, + 12.996768322442501 + ], + [ + 77.617311302652396, + 12.997024934539301 + ], + [ + 77.617371215191497, + 12.997178896356701 + ], + [ + 77.617394308222501, + 12.9972396442675 + ], + [ + 77.617509134249303, + 12.997482409474999 + ], + [ + 77.617542927778203, + 12.9975542952198 + ], + [ + 77.617750597881994, + 12.997996052311199 + ], + [ + 77.617752948200902, + 12.9980005457007 + ], + [ + 77.617776175753605, + 12.9980364138637 + ], + [ + 77.617816158176595, + 12.9980981549897 + ], + [ + 77.6178706198762, + 12.998182688773801 + ], + [ + 77.617935563213805, + 12.998283492186101 + ], + [ + 77.617936150420803, + 12.9982844041368 + ], + [ + 77.617948387411403, + 12.9982880579186 + ], + [ + 77.618050682325602, + 12.998324478354901 + ], + [ + 77.618386017911405, + 12.9984650675124 + ], + [ + 77.618397004338206, + 12.998469473783199 + ], + [ + 77.618854077408201, + 12.998678295329199 + ], + [ + 77.618976529957294, + 12.9987696601771 + ], + [ + 77.6191194108156, + 12.998942126366799 + ], + [ + 77.6192277119018, + 12.999111553552501 + ], + [ + 77.619340398819602, + 12.99931481454 + ], + [ + 77.619412798854796, + 12.9994100719797 + ], + [ + 77.619427298111702, + 12.999420089101701 + ], + [ + 77.619687076753394, + 12.999604136809401 + ], + [ + 77.6198206548234, + 12.999698773932 + ], + [ + 77.6198258164641, + 12.9997024303598 + ], + [ + 77.619897192175401, + 12.999752998706199 + ], + [ + 77.619954041557804, + 12.999793078633999 + ], + [ + 77.620111757534403, + 12.999897638069401 + ], + [ + 77.620182709281195, + 12.999964678067601 + ], + [ + 77.620268527671897, + 12.9998881352758 + ], + [ + 77.620713425556303, + 12.9994913217358 + ], + [ + 77.620716726913699, + 12.9994883766943 + ], + [ + 77.621181508129396, + 12.9990738274566 + ], + [ + 77.621643455568105, + 12.9986618033118 + ], + [ + 77.621674763071397, + 12.9986338787492 + ], + [ + 77.621741201485094, + 12.9985746203585 + ], + [ + 77.622279269705999, + 12.998100535325699 + ], + [ + 77.622291871284304, + 12.998089431539 + ], + [ + 77.622302378836494, + 12.9980801728996 + ], + [ + 77.622360283123598, + 12.9980291539286 + ], + [ + 77.622395423320697, + 12.9979981930591 + ], + [ + 77.622517051053805, + 12.997891027232599 + ], + [ + 77.623163499286804, + 12.9973214446192 + ], + [ + 77.623435724175593, + 12.9970801635521 + ], + [ + 77.624153282982107, + 12.9964441643746 + ], + [ + 77.624616682042998, + 12.99604988306 + ], + [ + 77.625034928161995, + 12.995799545922299 + ], + [ + 77.625050403865004, + 12.995790283953299 + ], + [ + 77.625425576555202, + 12.995548215312899 + ], + [ + 77.625988562918707, + 12.9952949425815 + ], + [ + 77.626097688000698, + 12.9952458496173 + ], + [ + 77.626231898249102, + 12.995185471318999 + ], + [ + 77.626951930304401, + 12.9949399125552 + ], + [ + 77.627088494529204, + 12.994903144225599 + ], + [ + 77.627136657993503, + 12.9948901771854 + ], + [ + 77.627675374873903, + 12.994745134413501 + ], + [ + 77.627843431526003, + 12.9947144386616 + ], + [ + 77.628064660521005, + 12.9946740304984 + ], + [ + 77.628120485660801, + 12.9946638342022 + ], + [ + 77.6291546061546, + 12.9944749471191 + ], + [ + 77.629152197693401, + 12.9944475340187 + ], + [ + 77.629151335182897, + 12.994437714546599 + ], + [ + 77.629133682975393, + 12.9944017568505 + ], + [ + 77.629080169379094, + 12.994350352561399 + ], + [ + 77.628891886945098, + 12.994186257091499 + ], + [ + 77.629097796023601, + 12.994274513440599 + ], + [ + 77.629705520360005, + 12.994167191130799 + ], + [ + 77.630064954543798, + 12.994103715244799 + ], + [ + 77.630191087770001, + 12.994081441511399 + ], + [ + 77.630339184292296, + 12.9940552873352 + ], + [ + 77.630441476443096, + 12.9940384532081 + ], + [ + 77.630442508307397, + 12.9940382837552 + ], + [ + 77.630494059953307, + 12.994029800685199 + ], + [ + 77.630602437483901, + 12.9940119662095 + ], + [ + 77.631270502018296, + 12.9939015764165 + ], + [ + 77.631282495223701, + 12.993899594768299 + ], + [ + 77.631607159556197, + 12.9938459477737 + ], + [ + 77.631633982007799, + 12.993841151671701 + ], + [ + 77.631783201076303, + 12.993814471306001 + ], + [ + 77.631106002800806, + 12.990680537405501 + ], + [ + 77.630944503275302, + 12.989778447199299 + ], + [ + 77.630783003749897, + 12.9897000045727 + ], + [ + 77.628983437609605, + 12.9893562412971 + ], + [ + 77.628257697800706, + 12.9892167902027 + ], + [ + 77.627187567205596, + 12.9889766359688 + ], + [ + 77.625104975673807, + 12.988377629184599 + ], + [ + 77.624609107606901, + 12.988219976779099 + ], + [ + 77.623561794418706, + 12.987912389983199 + ], + [ + 77.622546458386907, + 12.9876916268336 + ], + [ + 77.621156715457801, + 12.987488832578601 + ], + [ + 77.620076514654002, + 12.987374379842599 + ], + [ + 77.620019521880494, + 12.987265415298401 + ], + [ + 77.619306630895807, + 12.987202588892499 + ], + [ + 77.619430013330302, + 12.9879873180916 + ], + [ + 77.619475035917802, + 12.988272569868901 + ], + [ + 77.619491484039798, + 12.988376091935301 + ], + [ + 77.619495995505005, + 12.9884044833115 + ], + [ + 77.619512655303296, + 12.988787537727999 + ], + [ + 77.619512686906702, + 12.9887882673706 + ], + [ + 77.619547801872599, + 12.9896111522698 + ], + [ + 77.6195487891993, + 12.9896480243226 + ], + [ + 77.619554425174996, + 12.9898583959483 + ], + [ + 77.619550761330402, + 12.989908903206 + ], + [ + 77.619510156374901, + 12.9904686490437 + ], + [ + 77.619507027884495, + 12.990505023264101 + ], + [ + 77.619478850532701, + 12.9908325902129 + ], + [ + 77.619477753123206, + 12.990840213474399 + ], + [ + 77.619443242147995, + 12.991079849657901 + ], + [ + 77.619397273736297, + 12.991399178005199 + ], + [ + 77.619358313123101, + 12.991692052283801 + ], + [ + 77.619353880897506, + 12.9917037284826 + ], + [ + 77.619202548775107, + 12.992102419562499 + ], + [ + 77.619106401603204, + 12.9922897705476 + ], + [ + 77.618876317049796, + 12.9927381089937 + ], + [ + 77.618861174200305, + 12.9927676155431 + ], + [ + 77.618751404146906, + 12.992969747357201 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "2", + "group": "GM Palya", + "Corporatio": "Central", + "ac_no": "161", + "ac": "C.V. Raman Nagar", + "corporat_1": "1", + "ward_id": "38", + "ward_name": "38 - GM Palya", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಸಿ.ವಿ. ರಾಮನ್ ನಗರ", + "ward_name_": "ಜಿ.ಎಂ. ಪಾಳ್ಯ", + "dig_ward_n": "GM Palya", + "Assembly": "161 - C.V. Raman Nagar", + "Slno": "38" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.666546376317399, + 12.972147002472299 + ], + [ + 77.666528033259198, + 12.9719924854745 + ], + [ + 77.666522455148893, + 12.971955277940999 + ], + [ + 77.666512295867506, + 12.971920375845199 + ], + [ + 77.666487612795905, + 12.9718732010815 + ], + [ + 77.666456009830895, + 12.971824968026 + ], + [ + 77.666315266898096, + 12.9716378288337 + ], + [ + 77.666157782058207, + 12.9714463442102 + ], + [ + 77.666141699822902, + 12.971449896773899 + ], + [ + 77.666053769019499, + 12.971464348956999 + ], + [ + 77.665716988618996, + 12.971519745784599 + ], + [ + 77.665531077866802, + 12.9715781129532 + ], + [ + 77.665406238324493, + 12.9717487776367 + ], + [ + 77.665335291930106, + 12.9718443604659 + ], + [ + 77.664917903252899, + 12.971791046623 + ], + [ + 77.664794016853804, + 12.971781023651699 + ], + [ + 77.664505936072999, + 12.9717602612481 + ], + [ + 77.664310713494203, + 12.9717184604231 + ], + [ + 77.664234152457595, + 12.971702066780299 + ], + [ + 77.663961473306799, + 12.971643502656899 + ], + [ + 77.663902932008298, + 12.9716309299617 + ], + [ + 77.663611852764802, + 12.9715989048652 + ], + [ + 77.663507519019404, + 12.971587437037099 + ], + [ + 77.663057361885194, + 12.9715379580676 + ], + [ + 77.662806441564896, + 12.971573032952101 + ], + [ + 77.662630237861904, + 12.9715976637754 + ], + [ + 77.661983994525897, + 12.9717872155208 + ], + [ + 77.661566334341799, + 12.971978943606301 + ], + [ + 77.661503028278602, + 12.9723995325849 + ], + [ + 77.661477141591902, + 12.9727153066731 + ], + [ + 77.661537764904395, + 12.972915465698399 + ], + [ + 77.661823505023605, + 12.973199368499699 + ], + [ + 77.662255973520899, + 12.973529572545999 + ], + [ + 77.662344009627304, + 12.9735573538825 + ], + [ + 77.662890039962093, + 12.974128504143801 + ], + [ + 77.663590687148798, + 12.9746949812028 + ], + [ + 77.664025060286093, + 12.974991020315001 + ], + [ + 77.664164808693101, + 12.975068465156999 + ], + [ + 77.664303422272894, + 12.975088288484001 + ], + [ + 77.664655197950495, + 12.9750871304871 + ], + [ + 77.665108106216493, + 12.9750604711642 + ], + [ + 77.665199427346195, + 12.975053281879701 + ], + [ + 77.665345697781106, + 12.9750565632843 + ], + [ + 77.665604170670704, + 12.975068254923199 + ], + [ + 77.6658191846861, + 12.975118634971301 + ], + [ + 77.666029325426607, + 12.975169065695701 + ], + [ + 77.666066894625601, + 12.9753856407126 + ], + [ + 77.666063286112703, + 12.9756187236567 + ], + [ + 77.666075048480707, + 12.976150426288299 + ], + [ + 77.666018519259794, + 12.976563319175201 + ], + [ + 77.666115385501797, + 12.9770762222357 + ], + [ + 77.666131966384299, + 12.977488364464 + ], + [ + 77.666145361761394, + 12.9776017620852 + ], + [ + 77.666299968412702, + 12.9778152964182 + ], + [ + 77.666442858548706, + 12.977988024643 + ], + [ + 77.666513686151006, + 12.977988338794599 + ], + [ + 77.666632739032906, + 12.978039112174599 + ], + [ + 77.666788950189996, + 12.9781393981485 + ], + [ + 77.667123268309496, + 12.978356446197701 + ], + [ + 77.667446810310807, + 12.9785772285787 + ], + [ + 77.667790440639905, + 12.978803162313801 + ], + [ + 77.668075123291899, + 12.978986677677099 + ], + [ + 77.668395047206204, + 12.9792749994284 + ], + [ + 77.668688175964604, + 12.9794604082067 + ], + [ + 77.669066617098096, + 12.979626636468 + ], + [ + 77.669536719323702, + 12.979827366874 + ], + [ + 77.669962496415096, + 12.9799855279109 + ], + [ + 77.670074921764098, + 12.980033811117 + ], + [ + 77.670079536036198, + 12.979740804835201 + ], + [ + 77.670134907302099, + 12.9796023766706 + ], + [ + 77.670467134897194, + 12.9794639485059 + ], + [ + 77.670836276669604, + 12.9793716630628 + ], + [ + 77.671034690372295, + 12.9791271066386 + ], + [ + 77.670740179778704, + 12.978462064565401 + ], + [ + 77.670152210822707, + 12.977168348109 + ], + [ + 77.670448677808594, + 12.977018384263999 + ], + [ + 77.670517891890896, + 12.977078369801999 + ], + [ + 77.670772683140996, + 12.9769415573397 + ], + [ + 77.671049856333894, + 12.9768206020017 + ], + [ + 77.671290954708795, + 12.9772022717549 + ], + [ + 77.671896168648303, + 12.9768671369267 + ], + [ + 77.672013832588206, + 12.976969804482099 + ], + [ + 77.672586002335393, + 12.9783056362709 + ], + [ + 77.672773117406507, + 12.978755657730201 + ], + [ + 77.674165474029095, + 12.9782953840828 + ], + [ + 77.674400801909002, + 12.978886010918499 + ], + [ + 77.674744565184596, + 12.978837561060899 + ], + [ + 77.6748645362606, + 12.9789413821844 + ], + [ + 77.675148076949299, + 12.978875498881999 + ], + [ + 77.675510297313494, + 12.9788339704326 + ], + [ + 77.675591047076196, + 12.9788985702427 + ], + [ + 77.676835632276394, + 12.978566234962001 + ], + [ + 77.678148601282302, + 12.978206271774299 + ], + [ + 77.679337917455996, + 12.9779755749743 + ], + [ + 77.679337235629205, + 12.977911951638999 + ], + [ + 77.679333694575206, + 12.977581519655899 + ], + [ + 77.679314237156206, + 12.976894023324901 + ], + [ + 77.679344968811904, + 12.976699480235499 + ], + [ + 77.679377524221906, + 12.976513952138699 + ], + [ + 77.679298913673705, + 12.976162444639201 + ], + [ + 77.679061290661707, + 12.9756928779031 + ], + [ + 77.678916463347903, + 12.975286720453701 + ], + [ + 77.678714555835896, + 12.9746523520708 + ], + [ + 77.678702229584104, + 12.9746136229148 + ], + [ + 77.678695432099602, + 12.974592266596799 + ], + [ + 77.678676113839103, + 12.974536550961099 + ], + [ + 77.678538597425302, + 12.974139934192401 + ], + [ + 77.678442366564695, + 12.973863136312501 + ], + [ + 77.678370463284907, + 12.973653841234499 + ], + [ + 77.678360266050007, + 12.9736155526428 + ], + [ + 77.678239771607807, + 12.973169620867401 + ], + [ + 77.6781162423203, + 12.9727090402806 + ], + [ + 77.678044468827096, + 12.972721628127299 + ], + [ + 77.677973619337294, + 12.9727340537692 + ], + [ + 77.677192800409401, + 12.97287099373 + ], + [ + 77.676717186715805, + 12.972971873746999 + ], + [ + 77.676292495310705, + 12.973081701758201 + ], + [ + 77.676257884083995, + 12.9730906527163 + ], + [ + 77.676248697783706, + 12.9730930057062 + ], + [ + 77.675773694846896, + 12.973197265532299 + ], + [ + 77.675769677345301, + 12.9731984360964 + ], + [ + 77.675396886771694, + 12.973277929811699 + ], + [ + 77.675142390970194, + 12.9733291047046 + ], + [ + 77.675000191174604, + 12.9733569128057 + ], + [ + 77.674974184407802, + 12.973361998962201 + ], + [ + 77.674965945388294, + 12.9733636113308 + ], + [ + 77.674862026755406, + 12.973383933133199 + ], + [ + 77.674490652302197, + 12.9734882540842 + ], + [ + 77.674483192925905, + 12.973490589256301 + ], + [ + 77.674386011800905, + 12.9735198157878 + ], + [ + 77.674207159658593, + 12.9735736031835 + ], + [ + 77.673956946187602, + 12.973648446757499 + ], + [ + 77.673690098833504, + 12.9737291072841 + ], + [ + 77.673620661643497, + 12.973750147319601 + ], + [ + 77.673456027493401, + 12.9738060429159 + ], + [ + 77.673273608224093, + 12.9738677673996 + ], + [ + 77.673214532770402, + 12.9738887008176 + ], + [ + 77.672954137688905, + 12.9739805866325 + ], + [ + 77.672857053355003, + 12.9740150350232 + ], + [ + 77.6727017774475, + 12.9740701311789 + ], + [ + 77.672685707292104, + 12.9740748132668 + ], + [ + 77.672524526562199, + 12.9741306728531 + ], + [ + 77.672469137517794, + 12.9741469609819 + ], + [ + 77.672345464139994, + 12.974183328434901 + ], + [ + 77.672105659285094, + 12.9742625803816 + ], + [ + 77.671848069126398, + 12.974347661029 + ], + [ + 77.671651917477206, + 12.974417430225699 + ], + [ + 77.671617510606694, + 12.974430205262101 + ], + [ + 77.671122835895204, + 12.9745798286995 + ], + [ + 77.6707497542575, + 12.9746864208955 + ], + [ + 77.670522000846702, + 12.9747621600812 + ], + [ + 77.670419747770893, + 12.9747911501141 + ], + [ + 77.670294702359698, + 12.974826602112101 + ], + [ + 77.670213464879296, + 12.974874864065701 + ], + [ + 77.670192897813095, + 12.9748897552745 + ], + [ + 77.6701008915052, + 12.974953937020301 + ], + [ + 77.669818594370597, + 12.9750437865418 + ], + [ + 77.669442897996404, + 12.975175247023399 + ], + [ + 77.669259936727798, + 12.975240362302699 + ], + [ + 77.669213500918005, + 12.975258906708101 + ], + [ + 77.669026066761703, + 12.975336489311401 + ], + [ + 77.668846571242398, + 12.975402697995699 + ], + [ + 77.668742041611296, + 12.975426355547 + ], + [ + 77.668525438400806, + 12.975468101798 + ], + [ + 77.668134782563996, + 12.9755466402267 + ], + [ + 77.668022000712398, + 12.9755523144712 + ], + [ + 77.667928203697102, + 12.975556664632901 + ], + [ + 77.667633680730106, + 12.9755800127461 + ], + [ + 77.667314090958101, + 12.975574257623499 + ], + [ + 77.666984963007707, + 12.9754839074294 + ], + [ + 77.666886811154995, + 12.9754578125753 + ], + [ + 77.666646708880094, + 12.975401555006799 + ], + [ + 77.666598028035295, + 12.9753715649555 + ], + [ + 77.666560992914796, + 12.975353877032299 + ], + [ + 77.666515862387499, + 12.975332884422601 + ], + [ + 77.666610965252005, + 12.9744251343225 + ], + [ + 77.666902392170996, + 12.9743814931511 + ], + [ + 77.666913626177205, + 12.9743012023463 + ], + [ + 77.666804992778907, + 12.973400058720401 + ], + [ + 77.666791762440099, + 12.9733471204098 + ], + [ + 77.666845741953097, + 12.9733341452755 + ], + [ + 77.666842057027793, + 12.9732585244037 + ], + [ + 77.666815417999103, + 12.973189914327399 + ], + [ + 77.666796324952401, + 12.9731810762542 + ], + [ + 77.666731959532697, + 12.973191899408601 + ], + [ + 77.6666609182532, + 12.973008562771501 + ], + [ + 77.666846379720894, + 12.972800011165701 + ], + [ + 77.666964765898399, + 12.9726181197265 + ], + [ + 77.666885491533804, + 12.972580538731901 + ], + [ + 77.666709073419, + 12.972503301422201 + ], + [ + 77.666572640545795, + 12.9724504971377 + ], + [ + 77.666568117421605, + 12.972404244919799 + ], + [ + 77.666558194601294, + 12.9722835186189 + ], + [ + 77.666550383951304, + 12.9721989061487 + ], + [ + 77.666546376317399, + 12.972147002472299 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "31", + "group": "Kadirenahalli", + "Corporatio": "South", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "4", + "ward_id": "5", + "ward_name": "5 - Kadirenahalli", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ಕದಿರೇನಹಳ್ಳಿ", + "dig_ward_n": "Kadirenahalli", + "Assembly": "171 - Padmanabanagar", + "Slno": "5" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.5624147960161, + 12.9176316195722 + ], + [ + 77.561589126258596, + 12.9180631318479 + ], + [ + 77.561704410881504, + 12.9184328154991 + ], + [ + 77.561355336771896, + 12.918593827542299 + ], + [ + 77.561656751316704, + 12.919559899801399 + ], + [ + 77.561542110741996, + 12.919653930834601 + ], + [ + 77.561758510928001, + 12.920006869233299 + ], + [ + 77.561842881238704, + 12.9201723896137 + ], + [ + 77.5617630192652, + 12.920317944500701 + ], + [ + 77.5620882635925, + 12.920480888688401 + ], + [ + 77.5620882635925, + 12.920480888688401 + ], + [ + 77.563358488028996, + 12.919492109599499 + ], + [ + 77.563433198037799, + 12.9194236167295 + ], + [ + 77.563577022841002, + 12.919246030309299 + ], + [ + 77.563888856523405, + 12.918778817020099 + ], + [ + 77.564101840534903, + 12.918440187647301 + ], + [ + 77.564153825806002, + 12.918344814121699 + ], + [ + 77.564229255847707, + 12.9182048867407 + ], + [ + 77.564278677770503, + 12.918113206415899 + ], + [ + 77.564458460929202, + 12.917736506080701 + ], + [ + 77.5644783342116, + 12.917694779850301 + ], + [ + 77.5644783342116, + 12.917694779850301 + ], + [ + 77.564497910020194, + 12.917653678188501 + ], + [ + 77.564614610368807, + 12.9173566498777 + ], + [ + 77.564686405466404, + 12.917171865392699 + ], + [ + 77.564716149101301, + 12.917097642480099 + ], + [ + 77.564850876766499, + 12.916761435761099 + ], + [ + 77.564971277542796, + 12.9168833490506 + ], + [ + 77.565168461560802, + 12.9170835603993 + ], + [ + 77.565199647925198, + 12.9171145795674 + ], + [ + 77.565202190881394, + 12.917117108656401 + ], + [ + 77.565374521678905, + 12.917307400060601 + ], + [ + 77.565480819983506, + 12.9174018889648 + ], + [ + 77.565532266408297, + 12.917479306572501 + ], + [ + 77.565659036796205, + 12.917773942802899 + ], + [ + 77.5657306872871, + 12.9179132744126 + ], + [ + 77.565812746837594, + 12.9181206558951 + ], + [ + 77.565864227825799, + 12.9182507580801 + ], + [ + 77.565953596888093, + 12.9184904249099 + ], + [ + 77.565967215828707, + 12.9185275586155 + ], + [ + 77.566065458473801, + 12.918796360043499 + ], + [ + 77.566480510509393, + 12.9186788184291 + ], + [ + 77.566704366952294, + 12.918621727468301 + ], + [ + 77.566733459846802, + 12.918614307773399 + ], + [ + 77.566904226908505, + 12.918570755559401 + ], + [ + 77.567073375578104, + 12.9185281867566 + ], + [ + 77.567118038303605, + 12.918536909785001 + ], + [ + 77.567118038303605, + 12.918536909785001 + ], + [ + 77.567034231535104, + 12.918197576903999 + ], + [ + 77.566835220649693, + 12.9174218208799 + ], + [ + 77.566617854391396, + 12.9174739887819 + ], + [ + 77.5665801775733, + 12.9173416368824 + ], + [ + 77.567461718509804, + 12.917127168840899 + ], + [ + 77.567139925199598, + 12.9168211194908 + ], + [ + 77.567168515579098, + 12.9161591644372 + ], + [ + 77.567142914664302, + 12.9161610965817 + ], + [ + 77.566982335545504, + 12.9161558449075 + ], + [ + 77.566842864260593, + 12.916147653720699 + ], + [ + 77.566838007398502, + 12.9159512340044 + ], + [ + 77.566815386546494, + 12.915740623287601 + ], + [ + 77.566786334475196, + 12.915616130806599 + ], + [ + 77.566751508777799, + 12.9154988648867 + ], + [ + 77.566707674216104, + 12.9153601390802 + ], + [ + 77.566684835828895, + 12.9152689363045 + ], + [ + 77.566669542501501, + 12.9152031117716 + ], + [ + 77.566657263049507, + 12.9151514063634 + ], + [ + 77.566663650466893, + 12.915060986286299 + ], + [ + 77.566657512948495, + 12.9150347733303 + ], + [ + 77.566639527152404, + 12.914985074437199 + ], + [ + 77.566628575314297, + 12.914914904068601 + ], + [ + 77.566584831687706, + 12.914783384280099 + ], + [ + 77.566508927448297, + 12.914795604115801 + ], + [ + 77.566466662238696, + 12.914808927139401 + ], + [ + 77.566437729662198, + 12.9148106316966 + ], + [ + 77.566320540417493, + 12.9148175347001 + ], + [ + 77.566190631366098, + 12.9148388905458 + ], + [ + 77.566076745627996, + 12.9148543519448 + ], + [ + 77.565814062031805, + 12.9149028284452 + ], + [ + 77.565643188905398, + 12.914921718019899 + ], + [ + 77.565607362467404, + 12.9148492604425 + ], + [ + 77.565613109155905, + 12.9148351489186 + ], + [ + 77.565851549912296, + 12.9142409206636 + ], + [ + 77.565863793843903, + 12.914214499862601 + ], + [ + 77.565531138870298, + 12.9142987482157 + ], + [ + 77.565024190006497, + 12.914436618859 + ], + [ + 77.564978538139997, + 12.9144490344079 + ], + [ + 77.564725196314399, + 12.9145162831069 + ], + [ + 77.564720445738899, + 12.914517544004999 + ], + [ + 77.564602539498296, + 12.9145689006297 + ], + [ + 77.564479120456795, + 12.914603329061499 + ], + [ + 77.564232783677795, + 12.914672045326601 + ], + [ + 77.563984367484593, + 12.914741341940699 + ], + [ + 77.563714549445606, + 12.914807097282001 + ], + [ + 77.563312522782695, + 12.914922920504999 + ], + [ + 77.563204312798803, + 12.9149540957358 + ], + [ + 77.563008517515001, + 12.9150119928956 + ], + [ + 77.562766696241795, + 12.9150835004569 + ], + [ + 77.562431727471903, + 12.915182550324801 + ], + [ + 77.562431335971695, + 12.9151827240164 + ], + [ + 77.562179919677007, + 12.915294024103201 + ], + [ + 77.562179354215502, + 12.9152944795733 + ], + [ + 77.562113209683801, + 12.9153477450332 + ], + [ + 77.562073976141306, + 12.9153740908258 + ], + [ + 77.561823066907706, + 12.9155425745854 + ], + [ + 77.561818419976404, + 12.9155456946411 + ], + [ + 77.561585939029797, + 12.915688530752799 + ], + [ + 77.561531860619695, + 12.915690494997699 + ], + [ + 77.561256475377306, + 12.9156940006445 + ], + [ + 77.561256475377306, + 12.9156940006445 + ], + [ + 77.560866826232797, + 12.9156933565963 + ], + [ + 77.560374451404698, + 12.9156234773696 + ], + [ + 77.560716672774404, + 12.916812733405401 + ], + [ + 77.561255509304999, + 12.916721579504101 + ], + [ + 77.561915183964999, + 12.9164216359151 + ], + [ + 77.561992988429594, + 12.916549076941999 + ], + [ + 77.562206768456306, + 12.917008180941 + ], + [ + 77.562410415520901, + 12.917622576482399 + ], + [ + 77.5624147960161, + 12.9176316195722 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "3", + "group": "Hoysalanagar", + "Corporatio": "Central", + "ac_no": "161", + "ac": "C.V. Raman Nagar", + "corporat_1": "1", + "ward_id": "12", + "ward_name": "12 - Hoysala Nagara", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಸಿ.ವಿ. ರಾಮನ್ ನಗರ", + "ward_name_": "ಹೊಯ್ಸಳ ನಗರ", + "dig_ward_n": "Hoysalanagar", + "Assembly": "161 - C.V. Raman Nagar", + "Slno": "12" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.629195439211799, + 12.977672215567001 + ], + [ + 77.629032420385798, + 12.977779340203901 + ], + [ + 77.629006211033996, + 12.977796563193101 + ], + [ + 77.628898551191597, + 12.977867309466101 + ], + [ + 77.628846052859402, + 12.9779018086249 + ], + [ + 77.628846000708194, + 12.9779018425785 + ], + [ + 77.628818649565403, + 12.9779198160901 + ], + [ + 77.628536505089201, + 12.978105221460799 + ], + [ + 77.628495558802598, + 12.9781321280272 + ], + [ + 77.6284955029858, + 12.9781321638247 + ], + [ + 77.628406920695596, + 12.9781894874838 + ], + [ + 77.628144466196602, + 12.978307326001 + ], + [ + 77.627772677988105, + 12.978430786568399 + ], + [ + 77.627472411426197, + 12.978511740948999 + ], + [ + 77.627354725913705, + 12.9785345933381 + ], + [ + 77.627073654222301, + 12.978589173298101 + ], + [ + 77.626702434867497, + 12.978657292693001 + ], + [ + 77.626425705895898, + 12.978677027733299 + ], + [ + 77.626294353647495, + 12.978669320666199 + ], + [ + 77.626315380557998, + 12.9787526739764 + ], + [ + 77.626382057896095, + 12.9790162487415 + ], + [ + 77.626397286088405, + 12.9791504776216 + ], + [ + 77.626439702302505, + 12.9792968537273 + ], + [ + 77.626446924614797, + 12.9793814757523 + ], + [ + 77.626441464266506, + 12.979409762589601 + ], + [ + 77.626440360334001, + 12.979414290810301 + ], + [ + 77.626360141048394, + 12.9794088677783 + ], + [ + 77.626309571523905, + 12.979405448861799 + ], + [ + 77.626276062775204, + 12.9793944947459 + ], + [ + 77.626250038022704, + 12.9793834650128 + ], + [ + 77.626225235826297, + 12.979379198526001 + ], + [ + 77.625694316357894, + 12.9794816789049 + ], + [ + 77.625772643191098, + 12.979812892253101 + ], + [ + 77.625879297047803, + 12.9802646509404 + ], + [ + 77.625501623395294, + 12.980321541648401 + ], + [ + 77.625574815693, + 12.980766862896999 + ], + [ + 77.625330673409806, + 12.980764811941899 + ], + [ + 77.625297277419307, + 12.9807646108267 + ], + [ + 77.625120508980203, + 12.980763546854501 + ], + [ + 77.6250047704564, + 12.9807624572355 + ], + [ + 77.624312444047106, + 12.9809015727903 + ], + [ + 77.624353311812399, + 12.9809553650277 + ], + [ + 77.624416818576194, + 12.9812460749819 + ], + [ + 77.624553506317895, + 12.9818714385066 + ], + [ + 77.624557749625396, + 12.981891722479901 + ], + [ + 77.623818215653799, + 12.981812235929601 + ], + [ + 77.623346107243904, + 12.981773858219499 + ], + [ + 77.622928483611901, + 12.9817399093882 + ], + [ + 77.622790777471707, + 12.9824437046941 + ], + [ + 77.622515269204598, + 12.983842262229301 + ], + [ + 77.622493369613395, + 12.9841146372042 + ], + [ + 77.622496794607699, + 12.9852362066678 + ], + [ + 77.622497860037399, + 12.985584900772301 + ], + [ + 77.622508311983907, + 12.9859224468369 + ], + [ + 77.622525699071304, + 12.9867288488279 + ], + [ + 77.622546458386907, + 12.9876916268336 + ], + [ + 77.623561794418706, + 12.987912389983199 + ], + [ + 77.624609107606901, + 12.988219976779099 + ], + [ + 77.625104975673807, + 12.988377629184599 + ], + [ + 77.627187567205596, + 12.9889766359688 + ], + [ + 77.628257697800706, + 12.9892167902027 + ], + [ + 77.628983437609605, + 12.9893562412971 + ], + [ + 77.630783003749897, + 12.9897000045727 + ], + [ + 77.630826839335398, + 12.989450833876299 + ], + [ + 77.630974496044402, + 12.9887586930531 + ], + [ + 77.632218042390093, + 12.989067849287499 + ], + [ + 77.632780983592994, + 12.989183206091401 + ], + [ + 77.633357190828207, + 12.988213632154901 + ], + [ + 77.6336409685657, + 12.9876553052242 + ], + [ + 77.633787041448997, + 12.987096526112399 + ], + [ + 77.633682497015101, + 12.986102602644101 + ], + [ + 77.633914334842103, + 12.986206926236701 + ], + [ + 77.634092464088496, + 12.9853560758811 + ], + [ + 77.633925500709196, + 12.9851247162756 + ], + [ + 77.633887431681998, + 12.9849816861362 + ], + [ + 77.633886046134904, + 12.9848502353257 + ], + [ + 77.634130081414099, + 12.984732163814201 + ], + [ + 77.634330802252805, + 12.984542978655901 + ], + [ + 77.634441544784494, + 12.984432236124199 + ], + [ + 77.634515373138996, + 12.9843191864564 + ], + [ + 77.634570744404897, + 12.9839385090036 + ], + [ + 77.633809389499305, + 12.9837954665668 + ], + [ + 77.633061877410299, + 12.983700873987701 + ], + [ + 77.633284516041698, + 12.9823015959568 + ], + [ + 77.633777727615694, + 12.9823642105428 + ], + [ + 77.634790402079801, + 12.9824657424536 + ], + [ + 77.634800776492597, + 12.9824667665336 + ], + [ + 77.635199538306594, + 12.9824988597227 + ], + [ + 77.635479012219506, + 12.9825208694207 + ], + [ + 77.635594270238698, + 12.9825309931484 + ], + [ + 77.636521610905604, + 12.982620961596799 + ], + [ + 77.637076437754203, + 12.9827655234893 + ], + [ + 77.637450151329304, + 12.982879173778199 + ], + [ + 77.637872954133002, + 12.9830070055259 + ], + [ + 77.638155696514403, + 12.983120448812 + ], + [ + 77.638288102790696, + 12.9831733089382 + ], + [ + 77.639363557564295, + 12.983603927342401 + ], + [ + 77.639534702812398, + 12.983672202847099 + ], + [ + 77.640321734549104, + 12.983942004097701 + ], + [ + 77.640492699056594, + 12.984006563207901 + ], + [ + 77.640517559334597, + 12.9829988002821 + ], + [ + 77.640569937978796, + 12.9824824208489 + ], + [ + 77.640749340514802, + 12.980713746075301 + ], + [ + 77.640841335825499, + 12.9790396288764 + ], + [ + 77.640826052347094, + 12.9784003891832 + ], + [ + 77.640864713817507, + 12.977699549426999 + ], + [ + 77.640918399438405, + 12.976726359642299 + ], + [ + 77.640952845327803, + 12.976101950941599 + ], + [ + 77.640802976362707, + 12.9760956804227 + ], + [ + 77.640366483629805, + 12.9760774163282 + ], + [ + 77.640239247756199, + 12.976071898537899 + ], + [ + 77.639889818240604, + 12.976056729912999 + ], + [ + 77.639654540572593, + 12.976046251463799 + ], + [ + 77.639496733289107, + 12.9760410771009 + ], + [ + 77.639024450831997, + 12.9760244153175 + ], + [ + 77.639000227019494, + 12.9760235951693 + ], + [ + 77.638995198322604, + 12.976023424875599 + ], + [ + 77.638992914825096, + 12.976023348678201 + ], + [ + 77.638992787658097, + 12.9760233445485 + ], + [ + 77.638639143353203, + 12.9760113870403 + ], + [ + 77.638318335613803, + 12.9759999622111 + ], + [ + 77.637990044003303, + 12.9759886129106 + ], + [ + 77.637650814444697, + 12.9759773741507 + ], + [ + 77.637490128619305, + 12.9759722286556 + ], + [ + 77.637339864543094, + 12.975972623637199 + ], + [ + 77.637330082255801, + 12.9759726894371 + ], + [ + 77.6370210107265, + 12.9759747655007 + ], + [ + 77.637020493996999, + 12.9759747707415 + ], + [ + 77.637011140021798, + 12.975974833088801 + ], + [ + 77.636351963617798, + 12.975979262838599 + ], + [ + 77.636255775657503, + 12.9759799101962 + ], + [ + 77.636229213253202, + 12.9759800828539 + ], + [ + 77.635704886822495, + 12.9759836215615 + ], + [ + 77.635704340598707, + 12.975983625291899 + ], + [ + 77.635685879507903, + 12.9759837500991 + ], + [ + 77.635631804150805, + 12.975660200824301 + ], + [ + 77.635581373487099, + 12.975354682714 + ], + [ + 77.635573010742704, + 12.9753564080687 + ], + [ + 77.635572959266696, + 12.975356418527999 + ], + [ + 77.635426244546693, + 12.9753866963141 + ], + [ + 77.635425990860298, + 12.975386749476201 + ], + [ + 77.635230358929604, + 12.975427125283399 + ], + [ + 77.6352004831366, + 12.9754330743694 + ], + [ + 77.634869007494302, + 12.9755019306838 + ], + [ + 77.634651912383205, + 12.9755526887341 + ], + [ + 77.634017296321304, + 12.9757025345009 + ], + [ + 77.633682916603405, + 12.9757691603191 + ], + [ + 77.633548286729194, + 12.9758326333383 + ], + [ + 77.633440414476397, + 12.9758845580363 + ], + [ + 77.633404503490695, + 12.975901844409799 + ], + [ + 77.633446212831402, + 12.9755434461769 + ], + [ + 77.633504781275704, + 12.975091148525401 + ], + [ + 77.6335159598855, + 12.9749498776641 + ], + [ + 77.633528064857899, + 12.9747871414594 + ], + [ + 77.633527600212702, + 12.974743104980099 + ], + [ + 77.633506388313194, + 12.974697020102401 + ], + [ + 77.633409051907194, + 12.9745030158894 + ], + [ + 77.633392180117994, + 12.974469389318299 + ], + [ + 77.633302324285907, + 12.974290294121101 + ], + [ + 77.6332261285025, + 12.974150018255701 + ], + [ + 77.633021094956405, + 12.9737725522797 + ], + [ + 77.633014038812505, + 12.9738034489539 + ], + [ + 77.632869540232406, + 12.974436144010699 + ], + [ + 77.6328677147484, + 12.974444135081599 + ], + [ + 77.632731050318398, + 12.9750425206624 + ], + [ + 77.632548664888304, + 12.975308969587401 + ], + [ + 77.632538119197505, + 12.9753243746944 + ], + [ + 77.632516615952895, + 12.9753557889417 + ], + [ + 77.632501216572805, + 12.975378286169599 + ], + [ + 77.632487892024102, + 12.975397751326801 + ], + [ + 77.632079543419707, + 12.9759943098124 + ], + [ + 77.632055921843104, + 12.976024809552801 + ], + [ + 77.632025128641004, + 12.976064570472399 + ], + [ + 77.631977921825396, + 12.976125524408401 + ], + [ + 77.631918471139898, + 12.976202289090899 + ], + [ + 77.631796346001295, + 12.9763599796497 + ], + [ + 77.631790418559007, + 12.976367633713799 + ], + [ + 77.631658890994402, + 12.9764525304809 + ], + [ + 77.631589276810203, + 12.976483882385001 + ], + [ + 77.631587659494599, + 12.976484610642199 + ], + [ + 77.631578443368596, + 12.976488761139301 + ], + [ + 77.631526779157099, + 12.9765120292176 + ], + [ + 77.631306715147204, + 12.9766111382107 + ], + [ + 77.631035175485593, + 12.9767334300227 + ], + [ + 77.630869558019199, + 12.976808017528199 + ], + [ + 77.630678742703196, + 12.9768939537931 + ], + [ + 77.630620383463196, + 12.9769202363897 + ], + [ + 77.630538672991904, + 12.976957036057801 + ], + [ + 77.630393595362705, + 12.9770223732492 + ], + [ + 77.630248092223596, + 12.9770879016839 + ], + [ + 77.630136397464995, + 12.977149901697301 + ], + [ + 77.630114458370201, + 12.977162080289601 + ], + [ + 77.630103490198806, + 12.977168169119601 + ], + [ + 77.629982551724893, + 12.977235300917 + ], + [ + 77.629648406490105, + 12.9774207797401 + ], + [ + 77.629535876155401, + 12.977483244222 + ], + [ + 77.6295342734212, + 12.977484134031601 + ], + [ + 77.629534045369496, + 12.9774842601056 + ], + [ + 77.629485803019406, + 12.977511039126799 + ], + [ + 77.629195439211799, + 12.977672215567001 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "4", + "group": "Indiranagar", + "Corporatio": "Central", + "ac_no": "161", + "ac": "C.V. Raman Nagar", + "corporat_1": "1", + "ward_id": "11", + "ward_name": "11 - Indiranagar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಸಿ.ವಿ. ರಾಮನ್ ನಗರ", + "ward_name_": "ಇಂದಿರಾನಗರ", + "dig_ward_n": "Indiranagar", + "Assembly": "161 - C.V. Raman Nagar", + "Slno": "11" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.643567007285498, + 12.9703026431685 + ], + [ + 77.643457583607002, + 12.970299238238001 + ], + [ + 77.643317062190803, + 12.9702950200349 + ], + [ + 77.641972832016705, + 12.9702488265882 + ], + [ + 77.641956701514104, + 12.9702478611726 + ], + [ + 77.641630418443597, + 12.970237070201 + ], + [ + 77.641232118692599, + 12.9702238969689 + ], + [ + 77.641225725445693, + 12.9702236854458 + ], + [ + 77.641226691887994, + 12.970194295123701 + ], + [ + 77.641225274836501, + 12.970223670146501 + ], + [ + 77.641213243115999, + 12.9705223782193 + ], + [ + 77.641203289328004, + 12.970769497981699 + ], + [ + 77.641196085557695, + 12.9709483322184 + ], + [ + 77.641173928006296, + 12.971498437609 + ], + [ + 77.641169167884499, + 12.971616611451401 + ], + [ + 77.641159642869098, + 12.9720232400093 + ], + [ + 77.641146294639, + 12.9726117192593 + ], + [ + 77.641144321427603, + 12.972698690130001 + ], + [ + 77.641139150754, + 12.972917818119001 + ], + [ + 77.641129463759995, + 12.9730377729175 + ], + [ + 77.641102094747495, + 12.9733766783235 + ], + [ + 77.641097124290695, + 12.9734381973169 + ], + [ + 77.641064305979796, + 12.9738445673695 + ], + [ + 77.641048235007901, + 12.9740436185999 + ], + [ + 77.641045424532393, + 12.974078427295501 + ], + [ + 77.641038847188398, + 12.974159888089501 + ], + [ + 77.640986202415803, + 12.9754443866327 + ], + [ + 77.640978042601404, + 12.975605230252199 + ], + [ + 77.6409549527026, + 12.976060405475801 + ], + [ + 77.640952845327803, + 12.976101950941599 + ], + [ + 77.640918399438405, + 12.976726359642299 + ], + [ + 77.640864713817507, + 12.977699549426999 + ], + [ + 77.640826052347094, + 12.9784003891832 + ], + [ + 77.640841335825499, + 12.9790396288764 + ], + [ + 77.640749340514802, + 12.980713746075301 + ], + [ + 77.640569937978796, + 12.9824824208489 + ], + [ + 77.640517559334597, + 12.9829988002821 + ], + [ + 77.640492699056594, + 12.984006563207901 + ], + [ + 77.640321734549104, + 12.983942004097701 + ], + [ + 77.639534702812398, + 12.983672202847099 + ], + [ + 77.639363557564295, + 12.983603927342401 + ], + [ + 77.638288102790696, + 12.9831733089382 + ], + [ + 77.638155696514403, + 12.983120448812 + ], + [ + 77.637872954133002, + 12.9830070055259 + ], + [ + 77.637450151329304, + 12.982879173778199 + ], + [ + 77.637076437754203, + 12.9827655234893 + ], + [ + 77.636521610905604, + 12.982620961596799 + ], + [ + 77.635594270238698, + 12.9825309931484 + ], + [ + 77.635479012219506, + 12.9825208694207 + ], + [ + 77.635199538306594, + 12.9824988597227 + ], + [ + 77.634800776492597, + 12.9824667665336 + ], + [ + 77.634790402079801, + 12.9824657424536 + ], + [ + 77.633777727615694, + 12.9823642105428 + ], + [ + 77.633284516041698, + 12.9823015959568 + ], + [ + 77.633061877410299, + 12.983700873987701 + ], + [ + 77.633809389499305, + 12.9837954665668 + ], + [ + 77.634570744404897, + 12.9839385090036 + ], + [ + 77.634515373138996, + 12.9843191864564 + ], + [ + 77.634441544784494, + 12.984432236124199 + ], + [ + 77.634330802252805, + 12.984542978655901 + ], + [ + 77.634130081414099, + 12.984732163814201 + ], + [ + 77.633886046134904, + 12.9848502353257 + ], + [ + 77.633887431681998, + 12.9849816861362 + ], + [ + 77.633925500709196, + 12.9851247162756 + ], + [ + 77.634092464088496, + 12.9853560758811 + ], + [ + 77.633914334842103, + 12.986206926236701 + ], + [ + 77.633682497015101, + 12.986102602644101 + ], + [ + 77.633787041448997, + 12.987096526112399 + ], + [ + 77.6336409685657, + 12.9876553052242 + ], + [ + 77.633357190828207, + 12.988213632154901 + ], + [ + 77.632780983592994, + 12.989183206091401 + ], + [ + 77.633962593563794, + 12.989413787194099 + ], + [ + 77.634539021283899, + 12.9894808266453 + ], + [ + 77.635652619112193, + 12.9894970364786 + ], + [ + 77.636064902209796, + 12.989566142659299 + ], + [ + 77.636519352855103, + 12.9896690925546 + ], + [ + 77.636814748826097, + 12.989758963387199 + ], + [ + 77.6372783413657, + 12.9899137376665 + ], + [ + 77.640062305053107, + 12.990600941210801 + ], + [ + 77.641365836936799, + 12.9909147117174 + ], + [ + 77.641813421335797, + 12.991015072136699 + ], + [ + 77.6433981618964, + 12.990854548501099 + ], + [ + 77.643181781520795, + 12.9893941332954 + ], + [ + 77.642947015044996, + 12.987593073377401 + ], + [ + 77.642923714998602, + 12.987464236851499 + ], + [ + 77.644760349699894, + 12.9870434961613 + ], + [ + 77.644607983066905, + 12.986382975356999 + ], + [ + 77.644653253522193, + 12.986358322107201 + ], + [ + 77.645939059918604, + 12.986816311918901 + ], + [ + 77.646161184977302, + 12.986127037252301 + ], + [ + 77.647515495906106, + 12.986684028276001 + ], + [ + 77.647934696373895, + 12.986851401863801 + ], + [ + 77.648051900867202, + 12.986773418376 + ], + [ + 77.648080653690499, + 12.986607125798001 + ], + [ + 77.648105925349597, + 12.986058053502999 + ], + [ + 77.648203958319499, + 12.985692307096301 + ], + [ + 77.648250436678296, + 12.985568745301601 + ], + [ + 77.648280122821006, + 12.985490524592899 + ], + [ + 77.6483812328525, + 12.9852646787546 + ], + [ + 77.648416233833302, + 12.985186498727099 + ], + [ + 77.648894628602605, + 12.9844205090511 + ], + [ + 77.649280895946703, + 12.983762736771901 + ], + [ + 77.650003134800599, + 12.982536914909 + ], + [ + 77.650411441646298, + 12.9818405228161 + ], + [ + 77.650556782704399, + 12.981592864802201 + ], + [ + 77.650736157929302, + 12.9812988143907 + ], + [ + 77.650846528227504, + 12.981117884665499 + ], + [ + 77.650924930854003, + 12.981018840569901 + ], + [ + 77.651158411329106, + 12.980721725824999 + ], + [ + 77.651597328407107, + 12.980251999130999 + ], + [ + 77.651678152988296, + 12.9801642226574 + ], + [ + 77.652481322444103, + 12.979296672087001 + ], + [ + 77.652577557968897, + 12.9791963164883 + ], + [ + 77.6527176294654, + 12.9790492144793 + ], + [ + 77.654227750276107, + 12.977472055152599 + ], + [ + 77.654352012652097, + 12.977354475244599 + ], + [ + 77.654580098138993, + 12.9770985074317 + ], + [ + 77.654592681650698, + 12.977084386261399 + ], + [ + 77.654680878114206, + 12.9769834988578 + ], + [ + 77.654703137914396, + 12.976958036130799 + ], + [ + 77.6547532882403, + 12.9769100217323 + ], + [ + 77.654750608171398, + 12.976908946053999 + ], + [ + 77.654767951009703, + 12.9768906251809 + ], + [ + 77.655431576367107, + 12.976202753566101 + ], + [ + 77.655594523473496, + 12.9761023808123 + ], + [ + 77.655766422026005, + 12.975915585485501 + ], + [ + 77.656160747223595, + 12.9754870869097 + ], + [ + 77.6568571361842, + 12.9747207979817 + ], + [ + 77.656246152163206, + 12.9743003680522 + ], + [ + 77.655767448642393, + 12.9739766000319 + ], + [ + 77.655100001283898, + 12.9748140231015 + ], + [ + 77.654461145720703, + 12.975454203265601 + ], + [ + 77.654486275770495, + 12.975467267271799 + ], + [ + 77.654278739565299, + 12.975688400567799 + ], + [ + 77.654255142541203, + 12.9757135426423 + ], + [ + 77.654209119510199, + 12.9757047485879 + ], + [ + 77.654083618230104, + 12.9756338483284 + ], + [ + 77.653503095498607, + 12.9753571649319 + ], + [ + 77.653372577862697, + 12.975401316372499 + ], + [ + 77.653154457175006, + 12.975654342100301 + ], + [ + 77.653090347549806, + 12.9757259543114 + ], + [ + 77.652716348004603, + 12.9762391425317 + ], + [ + 77.652350256490095, + 12.976288835944301 + ], + [ + 77.652058621217705, + 12.976328421948001 + ], + [ + 77.651864505770803, + 12.9763547710581 + ], + [ + 77.651567604082501, + 12.9763950715395 + ], + [ + 77.650810779143399, + 12.9765123990763 + ], + [ + 77.650482859167994, + 12.9765632338672 + ], + [ + 77.650273387529495, + 12.9765957062432 + ], + [ + 77.650049232390998, + 12.976630454725999 + ], + [ + 77.647612644915, + 12.977347151155 + ], + [ + 77.6475142698404, + 12.9786845656349 + ], + [ + 77.646628222719698, + 12.978580537589799 + ], + [ + 77.646629153699806, + 12.9785732828426 + ], + [ + 77.646631413834399, + 12.978555661598 + ], + [ + 77.646658934687807, + 12.978327272882 + ], + [ + 77.646710031999703, + 12.9774978830789 + ], + [ + 77.646716272762006, + 12.977380377530601 + ], + [ + 77.646718228854596, + 12.977347609362599 + ], + [ + 77.646742999970996, + 12.976892867427001 + ], + [ + 77.646801626094302, + 12.9758166264116 + ], + [ + 77.646806930702894, + 12.975719456897499 + ], + [ + 77.646813215462402, + 12.975598703179299 + ], + [ + 77.646817456273098, + 12.9755172139699 + ], + [ + 77.646848250162506, + 12.974999703921601 + ], + [ + 77.646876056175699, + 12.974526265048301 + ], + [ + 77.646899938055398, + 12.9741172333827 + ], + [ + 77.646904588167601, + 12.974040381678099 + ], + [ + 77.646905818391502, + 12.9740200580099 + ], + [ + 77.6469350647711, + 12.973519502476201 + ], + [ + 77.646948733822398, + 12.9732878670508 + ], + [ + 77.646956884239998, + 12.9732056912147 + ], + [ + 77.646961739383997, + 12.973156741648801 + ], + [ + 77.6473927579936, + 12.9731053535064 + ], + [ + 77.647499835562598, + 12.9730859121214 + ], + [ + 77.6475371394137, + 12.9730745215683 + ], + [ + 77.647603132220993, + 12.973062838930501 + ], + [ + 77.647698996574903, + 12.9730447350498 + ], + [ + 77.647931486157503, + 12.972970186165499 + ], + [ + 77.648014617960996, + 12.9729277434429 + ], + [ + 77.648091538911103, + 12.9728878107802 + ], + [ + 77.648218249996603, + 12.9728375837306 + ], + [ + 77.648340998800194, + 12.9727665988599 + ], + [ + 77.648490968881504, + 12.972674538603499 + ], + [ + 77.648583859003395, + 12.972611198238001 + ], + [ + 77.648678035278294, + 12.972551515003801 + ], + [ + 77.648736297661898, + 12.9725166658944 + ], + [ + 77.648793468135906, + 12.9724965089164 + ], + [ + 77.648875507708993, + 12.972468758115999 + ], + [ + 77.649002464512293, + 12.972441773191999 + ], + [ + 77.649047031969303, + 12.9724095103563 + ], + [ + 77.649086586561197, + 12.972379638075701 + ], + [ + 77.649086599203102, + 12.9723794401025 + ], + [ + 77.649086641138894, + 12.9723794857487 + ], + [ + 77.649134099263506, + 12.9723793781466 + ], + [ + 77.649191515429706, + 12.9723805133561 + ], + [ + 77.649322058714205, + 12.972383093457101 + ], + [ + 77.649349248061895, + 12.9723834687323 + ], + [ + 77.6493983016573, + 12.972384146143099 + ], + [ + 77.649431532881096, + 12.9723846053064 + ], + [ + 77.649431493618494, + 12.9723840293381 + ], + [ + 77.649455683505707, + 12.9723849121531 + ], + [ + 77.649530704354305, + 12.9723611211431 + ], + [ + 77.649580771796593, + 12.972345243351301 + ], + [ + 77.649621305899302, + 12.972332388785301 + ], + [ + 77.649836474585896, + 12.9723528013707 + ], + [ + 77.649901056685493, + 12.972362306570499 + ], + [ + 77.650115959602005, + 12.972395976280399 + ], + [ + 77.650131153608001, + 12.972398356387499 + ], + [ + 77.650205718881097, + 12.972409649686 + ], + [ + 77.650375654136695, + 12.9724353884476 + ], + [ + 77.650489560137203, + 12.972453086029301 + ], + [ + 77.6505734540699, + 12.972466120750299 + ], + [ + 77.650665104391706, + 12.9724764791194 + ], + [ + 77.650709307588201, + 12.9724817208962 + ], + [ + 77.650755289805204, + 12.9718759938179 + ], + [ + 77.650801001957305, + 12.971528517985501 + ], + [ + 77.650905959426794, + 12.970010375777999 + ], + [ + 77.650747862286195, + 12.969449971215701 + ], + [ + 77.650428087938295, + 12.968418120580999 + ], + [ + 77.650102349058898, + 12.968483547752101 + ], + [ + 77.650012726154301, + 12.968501399457301 + ], + [ + 77.649654977406001, + 12.9685886079013 + ], + [ + 77.649368611484405, + 12.968620884982199 + ], + [ + 77.648791907511395, + 12.968745328878001 + ], + [ + 77.648612696992899, + 12.9687844188099 + ], + [ + 77.648037025806602, + 12.9688433541696 + ], + [ + 77.647758106735793, + 12.968872166008 + ], + [ + 77.647737882803995, + 12.968974004342099 + ], + [ + 77.647679481965298, + 12.9691677004953 + ], + [ + 77.647628309475706, + 12.9694460168218 + ], + [ + 77.647566209235507, + 12.969779777627901 + ], + [ + 77.647442584177895, + 12.9704472934091 + ], + [ + 77.6455625969284, + 12.9703693061099 + ], + [ + 77.645309737961, + 12.970358326802501 + ], + [ + 77.645059238490603, + 12.970350699262299 + ], + [ + 77.645003929971793, + 12.970349014933401 + ], + [ + 77.644471779149001, + 12.9703318407109 + ], + [ + 77.644096280040898, + 12.970319848527501 + ], + [ + 77.643567007285498, + 12.9703026431685 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "5", + "group": "Jeevan Bhimanagar", + "Corporatio": "Central", + "ac_no": "161", + "ac": "C.V. Raman Nagar", + "corporat_1": "1", + "ward_id": "35", + "ward_name": "35 - Jeevan Bhimanagar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಸಿ.ವಿ. ರಾಮನ್ ನಗರ", + "ward_name_": "ಜೀವನ್ ಭೀಮನಗರ", + "dig_ward_n": "Jeevan Bhimanagar", + "Assembly": "161 - C.V. Raman Nagar", + "Slno": "35" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.653970560089903, + 12.9579466514343 + ], + [ + 77.653435856373903, + 12.956096120747 + ], + [ + 77.653232828399197, + 12.956128420652099 + ], + [ + 77.653032107560406, + 12.956133034924299 + ], + [ + 77.651421726578604, + 12.956652140541699 + ], + [ + 77.651514012021707, + 12.956988982408999 + ], + [ + 77.650717899459707, + 12.957256051838399 + ], + [ + 77.650927126453993, + 12.9581527345139 + ], + [ + 77.650049973216596, + 12.9583819215141 + ], + [ + 77.650062586380201, + 12.9584135090124 + ], + [ + 77.650120501830997, + 12.9585832134384 + ], + [ + 77.650227272545493, + 12.9589117520831 + ], + [ + 77.649636750290696, + 12.959045727365799 + ], + [ + 77.648974194936002, + 12.9593098313785 + ], + [ + 77.649205085494501, + 12.959765093939801 + ], + [ + 77.649310421643307, + 12.9597512275851 + ], + [ + 77.649420236680996, + 12.9597376881567 + ], + [ + 77.6497209357331, + 12.9597007499671 + ], + [ + 77.649773270778994, + 12.9596957002352 + ], + [ + 77.650498489674902, + 12.9596262082474 + ], + [ + 77.650825151526007, + 12.959594650712599 + ], + [ + 77.650899936242197, + 12.959589372146301 + ], + [ + 77.651366524923105, + 12.9595609059306 + ], + [ + 77.651501727294999, + 12.9595527533106 + ], + [ + 77.652052620020399, + 12.9595184927968 + ], + [ + 77.652068064415701, + 12.9629874062857 + ], + [ + 77.650367821397893, + 12.963011146480399 + ], + [ + 77.650382706066793, + 12.9633019700109 + ], + [ + 77.650471186514594, + 12.9636450699919 + ], + [ + 77.651154438529105, + 12.965220714008501 + ], + [ + 77.651903104186204, + 12.967069883574499 + ], + [ + 77.652257249574106, + 12.968026191478501 + ], + [ + 77.652289188295896, + 12.968019725698801 + ], + [ + 77.652706958168494, + 12.967946582116101 + ], + [ + 77.652749496651893, + 12.9679405021287 + ], + [ + 77.653099354242102, + 12.970444070087501 + ], + [ + 77.653890122819504, + 12.970330489632101 + ], + [ + 77.654354577152205, + 12.970250510369199 + ], + [ + 77.655057186585495, + 12.9701292458453 + ], + [ + 77.655282966666903, + 12.970084675789799 + ], + [ + 77.655655173119598, + 12.9700199248181 + ], + [ + 77.655776528422905, + 12.9700011004286 + ], + [ + 77.655789169784697, + 12.9701343232955 + ], + [ + 77.655876732280703, + 12.9706602492597 + ], + [ + 77.656204969927202, + 12.9703772831605 + ], + [ + 77.656424161940905, + 12.9701083409 + ], + [ + 77.656518607726397, + 12.970074344214799 + ], + [ + 77.656667918780599, + 12.9700732886194 + ], + [ + 77.657007045278206, + 12.9700148008023 + ], + [ + 77.657403906404895, + 12.9699490005536 + ], + [ + 77.657585375788699, + 12.969885842308599 + ], + [ + 77.657526376939103, + 12.969529149397101 + ], + [ + 77.657446624689896, + 12.969121178635801 + ], + [ + 77.657375255686205, + 12.968906222520999 + ], + [ + 77.657273809488601, + 12.9682443937609 + ], + [ + 77.657951735067101, + 12.96816519671 + ], + [ + 77.658336664449095, + 12.9676564927538 + ], + [ + 77.658492041276503, + 12.9674335737829 + ], + [ + 77.658461267373696, + 12.967192230651801 + ], + [ + 77.658988944956903, + 12.967114566712 + ], + [ + 77.659482107125697, + 12.9670395130636 + ], + [ + 77.659584992095702, + 12.967023781211999 + ], + [ + 77.659704199604107, + 12.9670812830632 + ], + [ + 77.659929865120802, + 12.967025901695999 + ], + [ + 77.6604417319286, + 12.9669481553877 + ], + [ + 77.660535685276102, + 12.9669338849545 + ], + [ + 77.661547298744793, + 12.966780124769 + ], + [ + 77.661645422835093, + 12.966803964194 + ], + [ + 77.661964826616796, + 12.9663060900342 + ], + [ + 77.661786866561798, + 12.9661915991604 + ], + [ + 77.661786230868699, + 12.9661859594716 + ], + [ + 77.661771021480703, + 12.966000919964101 + ], + [ + 77.661767681478196, + 12.965991395355401 + ], + [ + 77.661763455176199, + 12.9659793430923 + ], + [ + 77.661706306752393, + 12.9658163868862 + ], + [ + 77.661683639697102, + 12.9657420890219 + ], + [ + 77.661652470096797, + 12.9656802997543 + ], + [ + 77.661646209301793, + 12.9656329357788 + ], + [ + 77.661630366712302, + 12.9656048668749 + ], + [ + 77.6615587820218, + 12.9655321986204 + ], + [ + 77.6615078972455, + 12.965511263583799 + ], + [ + 77.661393248130395, + 12.9655034023776 + ], + [ + 77.661274664885198, + 12.965450411801299 + ], + [ + 77.661140491930595, + 12.965447267120201 + ], + [ + 77.661068584513401, + 12.965452519492199 + ], + [ + 77.661000031862599, + 12.9651776862293 + ], + [ + 77.6607198377598, + 12.965194102400201 + ], + [ + 77.660545811479395, + 12.9649621292803 + ], + [ + 77.660534214115202, + 12.9649001396849 + ], + [ + 77.660676048982396, + 12.9648747974364 + ], + [ + 77.660795663283693, + 12.964853425990199 + ], + [ + 77.660889091909397, + 12.9646168534774 + ], + [ + 77.660935816483601, + 12.964498540916001 + ], + [ + 77.661059805141903, + 12.9643019146159 + ], + [ + 77.661087014582804, + 12.9641537060365 + ], + [ + 77.661341867879301, + 12.9641906230832 + ], + [ + 77.661608342074103, + 12.964237584152199 + ], + [ + 77.661780854827398, + 12.9642730844539 + ], + [ + 77.661791204348603, + 12.96427184935 + ], + [ + 77.661790976200194, + 12.964250396151099 + ], + [ + 77.661707551202298, + 12.9629018092813 + ], + [ + 77.661680386894005, + 12.9627835170404 + ], + [ + 77.661538945175195, + 12.962529755614399 + ], + [ + 77.661450732621802, + 12.9621538514648 + ], + [ + 77.6614466832267, + 12.9621365947401 + ], + [ + 77.661351259730196, + 12.9621499921669 + ], + [ + 77.660947199323004, + 12.9622116592476 + ], + [ + 77.660820447170494, + 12.9616066091946 + ], + [ + 77.659998620540307, + 12.96168615185 + ], + [ + 77.659967560222896, + 12.9616887277726 + ], + [ + 77.659864664061004, + 12.961323905493799 + ], + [ + 77.659773413080899, + 12.9610255892976 + ], + [ + 77.660163812118, + 12.960870281382 + ], + [ + 77.659899942258406, + 12.9602552835872 + ], + [ + 77.659853304057805, + 12.9602546309297 + ], + [ + 77.659836574739202, + 12.9602514141586 + ], + [ + 77.659790727953407, + 12.9602168761879 + ], + [ + 77.659807613077206, + 12.960180567953699 + ], + [ + 77.659764608042593, + 12.9599257990351 + ], + [ + 77.659754222584993, + 12.959869443126999 + ], + [ + 77.659747338899194, + 12.959817568398901 + ], + [ + 77.659728930512102, + 12.959710478639201 + ], + [ + 77.659669496011304, + 12.959209703075301 + ], + [ + 77.659669114826798, + 12.959197577118401 + ], + [ + 77.659031655101401, + 12.959188381037199 + ], + [ + 77.657855960394699, + 12.9592851605285 + ], + [ + 77.657349594854907, + 12.9593148076115 + ], + [ + 77.657057727271706, + 12.9593318952315 + ], + [ + 77.656299880163502, + 12.959376263188499 + ], + [ + 77.655262415807101, + 12.9593585841105 + ], + [ + 77.655182438839006, + 12.9593627876216 + ], + [ + 77.654901649955903, + 12.9593769439659 + ], + [ + 77.654352224527997, + 12.959403206708 + ], + [ + 77.653971639013605, + 12.957950765343201 + ], + [ + 77.653970560089903, + 12.9579466514343 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "6", + "group": "Kaggadasapura", + "Corporatio": "Central", + "ac_no": "161", + "ac": "C.V. Raman Nagar", + "corporat_1": "1", + "ward_id": "37", + "ward_name": "37 - Kaggadasapura", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಸಿ.ವಿ. ರಾಮನ್ ನಗರ", + "ward_name_": "ಕಗ್ಗದಾಸಪುರ", + "dig_ward_n": "Kaggadasapura", + "Assembly": "161 - C.V. Raman Nagar", + "Slno": "37" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.672773117406507, + 12.978755657730201 + ], + [ + 77.672586002335393, + 12.9783056362709 + ], + [ + 77.672013832588206, + 12.976969804482099 + ], + [ + 77.671896168648303, + 12.9768671369267 + ], + [ + 77.671290954708795, + 12.9772022717549 + ], + [ + 77.671049856333894, + 12.9768206020017 + ], + [ + 77.670772683140996, + 12.9769415573397 + ], + [ + 77.670517891890896, + 12.977078369801999 + ], + [ + 77.670448677808594, + 12.977018384263999 + ], + [ + 77.670152210822707, + 12.977168348109 + ], + [ + 77.670740179778704, + 12.978462064565401 + ], + [ + 77.671034690372295, + 12.9791271066386 + ], + [ + 77.670836276669604, + 12.9793716630628 + ], + [ + 77.670467134897194, + 12.9794639485059 + ], + [ + 77.670134907302099, + 12.9796023766706 + ], + [ + 77.670079536036198, + 12.979740804835201 + ], + [ + 77.670074921764098, + 12.980033811117 + ], + [ + 77.670008014817796, + 12.980386802936801 + ], + [ + 77.669800372570904, + 12.9804860097882 + ], + [ + 77.669456609295395, + 12.9805759880952 + ], + [ + 77.669292802633905, + 12.9806105951363 + ], + [ + 77.669045939073598, + 12.980652123585701 + ], + [ + 77.668991721375804, + 12.9807547911412 + ], + [ + 77.669121366743894, + 12.9811686750842 + ], + [ + 77.669143274099497, + 12.981261045261601 + ], + [ + 77.669132255395795, + 12.9815619817371 + ], + [ + 77.669123180930299, + 12.9820600659249 + ], + [ + 77.669070315354702, + 12.9822853258951 + ], + [ + 77.668830221850399, + 12.9823940113241 + ], + [ + 77.668548751248906, + 12.9824055470045 + ], + [ + 77.668549552137193, + 12.9826892925633 + ], + [ + 77.668524936529593, + 12.983026056377399 + ], + [ + 77.668516608013704, + 12.983132772087799 + ], + [ + 77.667669732403397, + 12.9831034556679 + ], + [ + 77.667652428882903, + 12.9829258061899 + ], + [ + 77.6672544479095, + 12.982938495438299 + ], + [ + 77.666453004194906, + 12.9829508940482 + ], + [ + 77.666404814205606, + 12.982609200616499 + ], + [ + 77.666305524071007, + 12.9825228522238 + ], + [ + 77.666278644816103, + 12.9822780201906 + ], + [ + 77.666266372235896, + 12.982277972651 + ], + [ + 77.6662661554209, + 12.9822576486703 + ], + [ + 77.666260135575399, + 12.982197144829399 + ], + [ + 77.665727700589997, + 12.982177717323401 + ], + [ + 77.665689632864996, + 12.9823144151294 + ], + [ + 77.665571968925093, + 12.9824609182703 + ], + [ + 77.665474492425801, + 12.982604537491101 + ], + [ + 77.665355098133801, + 12.9826616391091 + ], + [ + 77.665216093185194, + 12.9826547177008 + ], + [ + 77.664736208881095, + 12.982618957091599 + ], + [ + 77.664284010209897, + 12.982697399718299 + ], + [ + 77.6643497070324, + 12.9829785584205 + ], + [ + 77.664363509432604, + 12.9830523673574 + ], + [ + 77.664395861035402, + 12.9832253750599 + ], + [ + 77.664408930813806, + 12.983295266278599 + ], + [ + 77.664731594608796, + 12.985434816673999 + ], + [ + 77.665225321729395, + 12.985417513153401 + ], + [ + 77.6656948239211, + 12.985354066911301 + ], + [ + 77.666776870741401, + 12.98513719612 + ], + [ + 77.6670064307811, + 12.9851279675757 + ], + [ + 77.667485161517206, + 12.985290620669099 + ], + [ + 77.667723950101205, + 12.985416359585299 + ], + [ + 77.667973208636099, + 12.985491188787799 + ], + [ + 77.668195215704799, + 12.985631192234001 + ], + [ + 77.668264180596495, + 12.985673394802999 + ], + [ + 77.668353954637993, + 12.985723288260299 + ], + [ + 77.668712198057605, + 12.9858968981491 + ], + [ + 77.668884045442994, + 12.985976437593999 + ], + [ + 77.669479770859098, + 12.9861216343529 + ], + [ + 77.669795645510504, + 12.9861556532462 + ], + [ + 77.670451671585994, + 12.9860709942671 + ], + [ + 77.670814962312207, + 12.9860164446296 + ], + [ + 77.671282951448802, + 12.985899839695 + ], + [ + 77.671353385780506, + 12.986025589179199 + ], + [ + 77.671712231859004, + 12.985878487264801 + ], + [ + 77.672138943367301, + 12.985993797204101 + ], + [ + 77.672932890629895, + 12.9863695678106 + ], + [ + 77.673367211560205, + 12.9863888128444 + ], + [ + 77.674362038287995, + 12.986375688887501 + ], + [ + 77.674711870023799, + 12.986371073088501 + ], + [ + 77.674924392574894, + 12.986368268061 + ], + [ + 77.675790211677594, + 12.985820711722299 + ], + [ + 77.675798428390706, + 12.985816464323101 + ], + [ + 77.676061963163903, + 12.985680243144101 + ], + [ + 77.676101525921496, + 12.985659793262201 + ], + [ + 77.676456690772198, + 12.9854762086803 + ], + [ + 77.676461838548306, + 12.9854727824317 + ], + [ + 77.676826903317306, + 12.985229822006 + ], + [ + 77.676925460005805, + 12.9851642303333 + ], + [ + 77.677259848650607, + 12.984942037105499 + ], + [ + 77.677367364558094, + 12.9848705957549 + ], + [ + 77.677496911822502, + 12.984817316535199 + ], + [ + 77.677608709726599, + 12.984773253961199 + ], + [ + 77.677660194267105, + 12.984742234358601 + ], + [ + 77.677719157546704, + 12.984656934928299 + ], + [ + 77.6778095392838, + 12.9846560034942 + ], + [ + 77.6778721310842, + 12.9846406785231 + ], + [ + 77.678026705467005, + 12.984558910558899 + ], + [ + 77.678241902385693, + 12.984439253299801 + ], + [ + 77.678356754648902, + 12.9843578946028 + ], + [ + 77.678472097794796, + 12.984268626244999 + ], + [ + 77.678590993345196, + 12.9840810788096 + ], + [ + 77.678814617424294, + 12.984049413726099 + ], + [ + 77.6789543134919, + 12.984029905973101 + ], + [ + 77.679067874034203, + 12.983989212375899 + ], + [ + 77.679144542746599, + 12.983944382214901 + ], + [ + 77.679704104655499, + 12.98361678397 + ], + [ + 77.679713436553001, + 12.9836279799602 + ], + [ + 77.679799364266302, + 12.9835875710538 + ], + [ + 77.679841758488394, + 12.9835679370774 + ], + [ + 77.680013978087501, + 12.983413715979101 + ], + [ + 77.680097376324099, + 12.9832891491289 + ], + [ + 77.680240076296002, + 12.9830760051507 + ], + [ + 77.680247438979904, + 12.9830646369932 + ], + [ + 77.680331924652606, + 12.9829281063047 + ], + [ + 77.680438723231006, + 12.9827555157039 + ], + [ + 77.6804163772306, + 12.982497154394901 + ], + [ + 77.680381723243997, + 12.9823258700981 + ], + [ + 77.680380523461295, + 12.9823213655852 + ], + [ + 77.680297265322693, + 12.982073795462201 + ], + [ + 77.680294877872896, + 12.982065915531299 + ], + [ + 77.6802147646831, + 12.981843155796801 + ], + [ + 77.680185085104895, + 12.9817598994458 + ], + [ + 77.680143208627001, + 12.981559329769199 + ], + [ + 77.6801390457465, + 12.9815469512553 + ], + [ + 77.680061666022297, + 12.9813106125556 + ], + [ + 77.680022388453196, + 12.981191320023701 + ], + [ + 77.679979031197902, + 12.9810599272442 + ], + [ + 77.679972997671001, + 12.9810416427581 + ], + [ + 77.6799628723072, + 12.9810101289402 + ], + [ + 77.6798981335359, + 12.9807714013346 + ], + [ + 77.679881039331207, + 12.98070893827 + ], + [ + 77.679822633424493, + 12.980495520300099 + ], + [ + 77.679751296364401, + 12.9802320177354 + ], + [ + 77.6797509816559, + 12.9802026611942 + ], + [ + 77.679751238742497, + 12.9800118199348 + ], + [ + 77.679653310143294, + 12.979469673447101 + ], + [ + 77.679640163570696, + 12.9794320658362 + ], + [ + 77.679505418638001, + 12.979046610246501 + ], + [ + 77.679371234929604, + 12.9782372113131 + ], + [ + 77.679337917455996, + 12.9779755749743 + ], + [ + 77.678148601282302, + 12.978206271774299 + ], + [ + 77.676835632276394, + 12.978566234962001 + ], + [ + 77.675591047076196, + 12.9788985702427 + ], + [ + 77.675510297313494, + 12.9788339704326 + ], + [ + 77.675148076949299, + 12.978875498881999 + ], + [ + 77.6748645362606, + 12.9789413821844 + ], + [ + 77.674744565184596, + 12.978837561060899 + ], + [ + 77.674400801909002, + 12.978886010918499 + ], + [ + 77.674165474029095, + 12.9782953840828 + ], + [ + 77.672773117406507, + 12.978755657730201 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "11", + "group": "Nagavarapalya", + "Corporatio": "Central", + "ac_no": "161", + "ac": "C.V. Raman Nagar", + "corporat_1": "1", + "ward_id": "10", + "ward_name": "10 - Nagavarapalya", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಸಿ.ವಿ. ರಾಮನ್ ನಗರ", + "ward_name_": "ನಾಗವಾರಪಾಳ್ಯ", + "dig_ward_n": "Nagavarapalya", + "Assembly": "161 - C.V. Raman Nagar", + "Slno": "10" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.655427262801595, + 12.980314531740699 + ], + [ + 77.655240313811603, + 12.9802468675889 + ], + [ + 77.655223733152795, + 12.9802408658818 + ], + [ + 77.655075282231707, + 12.980187135246601 + ], + [ + 77.655059091228495, + 12.9801805251763 + ], + [ + 77.654411115961096, + 12.9798845060063 + ], + [ + 77.654076142943097, + 12.979732090898899 + ], + [ + 77.653664797027304, + 12.979544319165701 + ], + [ + 77.653386840554006, + 12.979447783143099 + ], + [ + 77.653178580315895, + 12.9793384074103 + ], + [ + 77.653074367953593, + 12.979299653815801 + ], + [ + 77.653120446742193, + 12.9792472382524 + ], + [ + 77.653059039762297, + 12.979217051075199 + ], + [ + 77.652963253485296, + 12.979169962606001 + ], + [ + 77.6527176294654, + 12.9790492144793 + ], + [ + 77.652577557968897, + 12.9791963164883 + ], + [ + 77.652481322444103, + 12.979296672087001 + ], + [ + 77.651678152988296, + 12.9801642226574 + ], + [ + 77.651597328407107, + 12.980251999130999 + ], + [ + 77.651158411329106, + 12.980721725824999 + ], + [ + 77.650924930854003, + 12.981018840569901 + ], + [ + 77.650846528227504, + 12.981117884665499 + ], + [ + 77.650736157929302, + 12.9812988143907 + ], + [ + 77.650556782704399, + 12.981592864802201 + ], + [ + 77.650411441646298, + 12.9818405228161 + ], + [ + 77.650003134800599, + 12.982536914909 + ], + [ + 77.649280895946703, + 12.983762736771901 + ], + [ + 77.648894628602605, + 12.9844205090511 + ], + [ + 77.648416233833302, + 12.985186498727099 + ], + [ + 77.6483812328525, + 12.9852646787546 + ], + [ + 77.648280122821006, + 12.985490524592899 + ], + [ + 77.648250436678296, + 12.985568745301601 + ], + [ + 77.648203958319499, + 12.985692307096301 + ], + [ + 77.648105925349597, + 12.986058053502999 + ], + [ + 77.648080653690499, + 12.986607125798001 + ], + [ + 77.648051900867202, + 12.986773418376 + ], + [ + 77.647934696373895, + 12.986851401863801 + ], + [ + 77.648039352636303, + 12.9868932466046 + ], + [ + 77.648323901092297, + 12.9870134342009 + ], + [ + 77.649045689675305, + 12.9873188769902 + ], + [ + 77.650281575859594, + 12.987890092382401 + ], + [ + 77.650622364415796, + 12.988046968392901 + ], + [ + 77.650760075996899, + 12.988111059498101 + ], + [ + 77.650840493745704, + 12.988147504020301 + ], + [ + 77.651794401759304, + 12.9886233436984 + ], + [ + 77.651855162028198, + 12.9886520838014 + ], + [ + 77.652451755099705, + 12.988932820856901 + ], + [ + 77.653041075541907, + 12.9892109745855 + ], + [ + 77.653149624823797, + 12.989262208602099 + ], + [ + 77.654736086297206, + 12.990009986423001 + ], + [ + 77.6548074944223, + 12.990043644265899 + ], + [ + 77.655180155573504, + 12.990219384542501 + ], + [ + 77.655891428636806, + 12.990563306677 + ], + [ + 77.657206909781195, + 12.991199165102399 + ], + [ + 77.657498345540802, + 12.9913403646239 + ], + [ + 77.658183842255298, + 12.9916724827454 + ], + [ + 77.658576813423295, + 12.9918626894656 + ], + [ + 77.659823951939202, + 12.9924597083346 + ], + [ + 77.659952079472205, + 12.9925207733131 + ], + [ + 77.660109254457694, + 12.9925956823493 + ], + [ + 77.660332068179798, + 12.992702935968801 + ], + [ + 77.660619110318194, + 12.9928400207341 + ], + [ + 77.661351781487895, + 12.9931916104902 + ], + [ + 77.661471578656204, + 12.993249103030299 + ], + [ + 77.662543422487403, + 12.9937665978445 + ], + [ + 77.662635974986401, + 12.9938114226347 + ], + [ + 77.663166747437003, + 12.9940684870498 + ], + [ + 77.663546134441503, + 12.9942260763173 + ], + [ + 77.663586039003903, + 12.994242605507401 + ], + [ + 77.663689808148803, + 12.994285817878501 + ], + [ + 77.6639853598965, + 12.9944088942415 + ], + [ + 77.664160331797802, + 12.994481757702999 + ], + [ + 77.664164289475096, + 12.994474941688701 + ], + [ + 77.6647906967724, + 12.9934764346858 + ], + [ + 77.664997081771901, + 12.9931474504293 + ], + [ + 77.665531872888394, + 12.9923831166148 + ], + [ + 77.665876293705793, + 12.9920039295779 + ], + [ + 77.666113401213593, + 12.991742886695601 + ], + [ + 77.666259722952304, + 12.991581794103 + ], + [ + 77.666307629142395, + 12.991542689738999 + ], + [ + 77.666340176960702, + 12.991516122149999 + ], + [ + 77.666777692751396, + 12.9911589914394 + ], + [ + 77.666895047679205, + 12.991063197382401 + ], + [ + 77.666906997690802, + 12.9910534427735 + ], + [ + 77.667303134415803, + 12.990816568658101 + ], + [ + 77.667871572524902, + 12.990476662011799 + ], + [ + 77.668363717322507, + 12.990194944702001 + ], + [ + 77.668212609554104, + 12.9900090446242 + ], + [ + 77.668254716579796, + 12.9899623135796 + ], + [ + 77.668163617367, + 12.989842421635 + ], + [ + 77.668055684754805, + 12.9898175580089 + ], + [ + 77.6678892329722, + 12.989758289222101 + ], + [ + 77.667885191038593, + 12.989757201506 + ], + [ + 77.667714086155897, + 12.989602955066999 + ], + [ + 77.667628812846999, + 12.989526083677999 + ], + [ + 77.667410108260199, + 12.9886712424536 + ], + [ + 77.667366090474999, + 12.987999801235601 + ], + [ + 77.667492483890896, + 12.9872193331601 + ], + [ + 77.667526007944204, + 12.985937310298899 + ], + [ + 77.667816666894893, + 12.9858744766291 + ], + [ + 77.667925890716205, + 12.9855952749268 + ], + [ + 77.667950615195707, + 12.985532073138099 + ], + [ + 77.667973208636099, + 12.985491188787799 + ], + [ + 77.667723950101205, + 12.985416359585299 + ], + [ + 77.667485161517206, + 12.985290620669099 + ], + [ + 77.6670064307811, + 12.9851279675757 + ], + [ + 77.666776870741401, + 12.98513719612 + ], + [ + 77.6656948239211, + 12.985354066911301 + ], + [ + 77.665225321729395, + 12.985417513153401 + ], + [ + 77.664731594608796, + 12.985434816673999 + ], + [ + 77.664408930813806, + 12.983295266278599 + ], + [ + 77.664233125074006, + 12.983438223174399 + ], + [ + 77.664200012287395, + 12.9834645350724 + ], + [ + 77.664004312188894, + 12.9836856130645 + ], + [ + 77.663601862767607, + 12.983739424961 + ], + [ + 77.663329171280793, + 12.983489271131001 + ], + [ + 77.662987388101797, + 12.983292899045701 + ], + [ + 77.6629636406945, + 12.9832795915631 + ], + [ + 77.662899342782296, + 12.983242985648801 + ], + [ + 77.662531599467698, + 12.983203842745599 + ], + [ + 77.662277985884003, + 12.983177080933 + ], + [ + 77.661759237695406, + 12.9832851554733 + ], + [ + 77.661673629097606, + 12.983301841659699 + ], + [ + 77.661421219268703, + 12.98344219384 + ], + [ + 77.661383213534904, + 12.9834956572465 + ], + [ + 77.661182402921597, + 12.983777764746099 + ], + [ + 77.660947004028898, + 12.984109912833199 + ], + [ + 77.6609146333316, + 12.9840978227008 + ], + [ + 77.660649229799105, + 12.9840994111143 + ], + [ + 77.660159403257694, + 12.9840581272967 + ], + [ + 77.659836583632, + 12.983912372360599 + ], + [ + 77.659797820347706, + 12.983894701313501 + ], + [ + 77.659680379149293, + 12.9838416999154 + ], + [ + 77.658770996463801, + 12.983194949968 + ], + [ + 77.658715265617303, + 12.983115998602299 + ], + [ + 77.658621520912803, + 12.982970599103201 + ], + [ + 77.658611876684603, + 12.982875841615099 + ], + [ + 77.658597746256206, + 12.982738218902099 + ], + [ + 77.658597110516197, + 12.9827325792061 + ], + [ + 77.658569545544907, + 12.982468619046401 + ], + [ + 77.658567614311394, + 12.982449441723 + ], + [ + 77.658520797291501, + 12.9819993538761 + ], + [ + 77.658490547163197, + 12.9818076925004 + ], + [ + 77.658444824225001, + 12.981514557766401 + ], + [ + 77.658415295575594, + 12.981444846915799 + ], + [ + 77.658364011139, + 12.9813866509883 + ], + [ + 77.6583361742817, + 12.9813677386287 + ], + [ + 77.6577373189768, + 12.9811434980775 + ], + [ + 77.657116444601797, + 12.9809059301536 + ], + [ + 77.656891052893997, + 12.980825799659 + ], + [ + 77.656850587213299, + 12.980810403927 + ], + [ + 77.656733267963503, + 12.980768691972299 + ], + [ + 77.656512505889907, + 12.980690772263801 + ], + [ + 77.656219041262602, + 12.9805887854401 + ], + [ + 77.655929436116395, + 12.980488140091101 + ], + [ + 77.655884353401902, + 12.980472472467399 + ], + [ + 77.655552089558597, + 12.9803584261495 + ], + [ + 77.655427262801595, + 12.980314531740699 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "7", + "group": "Kasturi Nagar", + "Corporatio": "Central", + "ac_no": "161", + "ac": "C.V. Raman Nagar", + "corporat_1": "1", + "ward_id": "9", + "ward_name": "9 - Kasturi Nagar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಸಿ.ವಿ. ರಾಮನ್ ನಗರ", + "ward_name_": "ಕಸ್ತೂರಿ ನಗರ", + "dig_ward_n": "Kasturi Nagar", + "Assembly": "161 - C.V. Raman Nagar", + "Slno": "9" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.661211450057493, + 12.999937622568 + ], + [ + 77.660773033747901, + 12.999708446515401 + ], + [ + 77.660733848299003, + 12.999688688064399 + ], + [ + 77.660698354088595, + 12.9993314560112 + ], + [ + 77.660598741304597, + 12.998533408764301 + ], + [ + 77.660797966872707, + 12.998460130394401 + ], + [ + 77.660112127129594, + 12.9970071577168 + ], + [ + 77.659633766965001, + 12.9971595945185 + ], + [ + 77.6589353920685, + 12.9973848567078 + ], + [ + 77.658506851652007, + 12.997484854203501 + ], + [ + 77.658306067589706, + 12.997513800649299 + ], + [ + 77.657968126895994, + 12.997538175354601 + ], + [ + 77.657453901626795, + 12.997603195603499 + ], + [ + 77.657240740471195, + 12.997614341051699 + ], + [ + 77.657091301574397, + 12.997600931261401 + ], + [ + 77.656871570908507, + 12.997567327261001 + ], + [ + 77.656523822320295, + 12.997529056273001 + ], + [ + 77.656080321988895, + 12.9975246741852 + ], + [ + 77.6560870664173, + 12.9976087408631 + ], + [ + 77.655657349176096, + 12.9976908298658 + ], + [ + 77.654870795009103, + 12.9978410845527 + ], + [ + 77.654854611301303, + 12.997844372190899 + ], + [ + 77.654236467734293, + 12.9979699511021 + ], + [ + 77.653058612504907, + 12.9982309690579 + ], + [ + 77.652662048206807, + 12.9982472559266 + ], + [ + 77.651987761935601, + 12.998105962756201 + ], + [ + 77.651957102205003, + 12.9981014247416 + ], + [ + 77.650994758885105, + 12.9978652079147 + ], + [ + 77.648930359350302, + 12.997848232413601 + ], + [ + 77.647212777047699, + 12.9979611679295 + ], + [ + 77.645716123829501, + 12.998234601118099 + ], + [ + 77.645567063073003, + 12.998261833760299 + ], + [ + 77.644663205665594, + 12.9984269607057 + ], + [ + 77.640715248774598, + 12.998705360941701 + ], + [ + 77.640696348290803, + 12.9987348153391 + ], + [ + 77.640652925870995, + 12.998821080347801 + ], + [ + 77.640579683067799, + 12.9989189412444 + ], + [ + 77.640527755102298, + 12.999017714559599 + ], + [ + 77.640492979572102, + 12.999105020852101 + ], + [ + 77.640469191609597, + 12.9991967323894 + ], + [ + 77.640431560357897, + 12.9992863262383 + ], + [ + 77.640152542142999, + 12.9998124678933 + ], + [ + 77.640078728207001, + 12.999951658011399 + ], + [ + 77.640065173384102, + 12.999976639472701 + ], + [ + 77.640020447383307, + 13.0000601541963 + ], + [ + 77.639679037589005, + 13.0006976549936 + ], + [ + 77.639654112803299, + 13.0007441961728 + ], + [ + 77.639619990810701, + 13.0008016148171 + ], + [ + 77.639589368170704, + 13.0008531447191 + ], + [ + 77.639469118693896, + 13.001055493299001 + ], + [ + 77.639244494812999, + 13.0013762274163 + ], + [ + 77.639192879896598, + 13.0014501538513 + ], + [ + 77.639049993003894, + 13.001605185497599 + ], + [ + 77.638959466662499, + 13.001702092678199 + ], + [ + 77.638908295075097, + 13.0017635927708 + ], + [ + 77.638868336182199, + 13.0018509517088 + ], + [ + 77.638801867743695, + 13.001990525923301 + ], + [ + 77.638761006185604, + 13.002086620917799 + ], + [ + 77.638747371271904, + 13.002118685853601 + ], + [ + 77.638675696268606, + 13.002256054488701 + ], + [ + 77.638605851513304, + 13.002511976293199 + ], + [ + 77.638593794167093, + 13.0025696908976 + ], + [ + 77.638565675805495, + 13.0026332150796 + ], + [ + 77.638526440204799, + 13.002679913467899 + ], + [ + 77.638445749463102, + 13.0027270324338 + ], + [ + 77.638086872053506, + 13.0029100392463 + ], + [ + 77.637702365713807, + 13.0031061155368 + ], + [ + 77.637436630112106, + 13.003242068697601 + ], + [ + 77.6373661452714, + 13.003277887769499 + ], + [ + 77.637214411891705, + 13.0033549942549 + ], + [ + 77.637126872312294, + 13.003407828777201 + ], + [ + 77.6367378026914, + 13.003642151673199 + ], + [ + 77.636586184435799, + 13.003734032791501 + ], + [ + 77.636506057647907, + 13.003780017194201 + ], + [ + 77.636439677082706, + 13.0038190863722 + ], + [ + 77.636423076883901, + 13.0038282881842 + ], + [ + 77.636339026288695, + 13.003884476627601 + ], + [ + 77.636340738815704, + 13.003895187168601 + ], + [ + 77.636350741838399, + 13.0039577592939 + ], + [ + 77.636646083750094, + 13.004227123406601 + ], + [ + 77.636650748989197, + 13.004231378920901 + ], + [ + 77.636706520678104, + 13.0042782400715 + ], + [ + 77.636832590867598, + 13.0043842392326 + ], + [ + 77.636941991123805, + 13.004484552755001 + ], + [ + 77.637140755874796, + 13.0046668092414 + ], + [ + 77.637141386520995, + 13.004667639384699 + ], + [ + 77.637254036922201, + 13.004815848935401 + ], + [ + 77.637298966097902, + 13.0048718541646 + ], + [ + 77.637330475045403, + 13.004911058759101 + ], + [ + 77.637346068809407, + 13.00492953298 + ], + [ + 77.637412692717405, + 13.0050084683128 + ], + [ + 77.637448172228304, + 13.005041985343199 + ], + [ + 77.637449398738994, + 13.0050436667595 + ], + [ + 77.637452261211493, + 13.005047590058 + ], + [ + 77.637458090290096, + 13.0050543063404 + ], + [ + 77.637593493407607, + 13.00517150178 + ], + [ + 77.638007083268704, + 13.005404440673701 + ], + [ + 77.638053326009597, + 13.0054297328802 + ], + [ + 77.638067893908499, + 13.0054377000396 + ], + [ + 77.638311220578501, + 13.0054148992667 + ], + [ + 77.638463157857004, + 13.0054077079582 + ], + [ + 77.638541459325893, + 13.005406911684799 + ], + [ + 77.638634177404299, + 13.0054082272834 + ], + [ + 77.638819937857605, + 13.0054413449593 + ], + [ + 77.639200346795405, + 13.0055312038164 + ], + [ + 77.639327511713205, + 13.0055773380262 + ], + [ + 77.639700337449796, + 13.0057124442801 + ], + [ + 77.639703803865402, + 13.0057135373628 + ], + [ + 77.640110575053399, + 13.005846039070001 + ], + [ + 77.640674009343101, + 13.0059825909309 + ], + [ + 77.641012652017096, + 13.006036989713699 + ], + [ + 77.641017775753994, + 13.006037812953499 + ], + [ + 77.641092263695697, + 13.0060502118434 + ], + [ + 77.6410925128868, + 13.006050253573401 + ], + [ + 77.641094494391695, + 13.0060505830187 + ], + [ + 77.641637936311497, + 13.006093608170101 + ], + [ + 77.641945180628497, + 13.006125486463 + ], + [ + 77.642277205031505, + 13.00615937051 + ], + [ + 77.642302573737794, + 13.006162499898 + ], + [ + 77.642557327642706, + 13.006185877103301 + ], + [ + 77.642711795955094, + 13.006200114137 + ], + [ + 77.642852529170597, + 13.0062223948471 + ], + [ + 77.642855877828097, + 13.006222893741899 + ], + [ + 77.643157612257596, + 13.0062678446711 + ], + [ + 77.643177800177, + 13.0062710267506 + ], + [ + 77.643363477497999, + 13.006296237025101 + ], + [ + 77.643404964244297, + 13.006298150518401 + ], + [ + 77.643463717092899, + 13.006300861041501 + ], + [ + 77.643541477764103, + 13.0063034573721 + ], + [ + 77.644145373857, + 13.006345861073999 + ], + [ + 77.644233535658699, + 13.00635173713 + ], + [ + 77.644513142390807, + 13.006383893938301 + ], + [ + 77.644548886494803, + 13.006388046587301 + ], + [ + 77.644760612723303, + 13.006399202601299 + ], + [ + 77.644764359880995, + 13.0063994010927 + ], + [ + 77.644861108136595, + 13.006400673301 + ], + [ + 77.644971687168393, + 13.0064029337177 + ], + [ + 77.645112780694603, + 13.0064048829759 + ], + [ + 77.645193948807602, + 13.0064029261587 + ], + [ + 77.645474864567902, + 13.0063955448261 + ], + [ + 77.645527785219301, + 13.0063904881944 + ], + [ + 77.645607810957699, + 13.0065522840115 + ], + [ + 77.645792571088094, + 13.0069253104698 + ], + [ + 77.645845142770796, + 13.006995916984801 + ], + [ + 77.646070075027097, + 13.007301907719199 + ], + [ + 77.646096343902698, + 13.0073355172355 + ], + [ + 77.646178110251896, + 13.007390016380199 + ], + [ + 77.646241789815704, + 13.0074221150212 + ], + [ + 77.646288664913698, + 13.007444221828299 + ], + [ + 77.646350448812498, + 13.007514734219599 + ], + [ + 77.646378420110096, + 13.007546067832401 + ], + [ + 77.646485003144306, + 13.0077143677654 + ], + [ + 77.646548238182007, + 13.007813096486499 + ], + [ + 77.646624583689103, + 13.007899269693899 + ], + [ + 77.646704443647195, + 13.0079910532515 + ], + [ + 77.647218902903006, + 13.0077971092108 + ], + [ + 77.647495199457694, + 13.0076929481626 + ], + [ + 77.647763951046699, + 13.0075916318804 + ], + [ + 77.647849753329496, + 13.007559285348099 + ], + [ + 77.647953109673907, + 13.0075351594027 + ], + [ + 77.647981287657799, + 13.007528582324101 + ], + [ + 77.647981994881803, + 13.0075952006799 + ], + [ + 77.648379739885996, + 13.007582106414199 + ], + [ + 77.648396915797505, + 13.0075815200184 + ], + [ + 77.648568536764799, + 13.007575661924699 + ], + [ + 77.648615148242598, + 13.007572927535399 + ], + [ + 77.6488579573046, + 13.007555768153599 + ], + [ + 77.6489690163624, + 13.007548987889701 + ], + [ + 77.649071379254707, + 13.007536650151 + ], + [ + 77.649303704810507, + 13.007508304957099 + ], + [ + 77.649509006204198, + 13.0074836233093 + ], + [ + 77.649573441749993, + 13.0074784482171 + ], + [ + 77.649678155496602, + 13.0074706032209 + ], + [ + 77.649736773597596, + 13.0074598412805 + ], + [ + 77.649953961525199, + 13.007361636931099 + ], + [ + 77.650008736292307, + 13.007326810967401 + ], + [ + 77.650042626230501, + 13.0073065274333 + ], + [ + 77.650226828459694, + 13.0071928504201 + ], + [ + 77.650384114485405, + 13.0070929992348 + ], + [ + 77.650414010114503, + 13.007074332282199 + ], + [ + 77.6504613360825, + 13.0070447820043 + ], + [ + 77.650615428588694, + 13.0069698022093 + ], + [ + 77.650634335888398, + 13.0069605795864 + ], + [ + 77.650740991394102, + 13.0069188370218 + ], + [ + 77.650844769059105, + 13.006877123825401 + ], + [ + 77.650864272350105, + 13.0068701490711 + ], + [ + 77.650969885193703, + 13.0068385802814 + ], + [ + 77.651088356371105, + 13.006824948870999 + ], + [ + 77.651105604665403, + 13.006822513218699 + ], + [ + 77.651188343713599, + 13.0068058582725 + ], + [ + 77.651264185826804, + 13.0067904030302 + ], + [ + 77.651323919116393, + 13.006776241641401 + ], + [ + 77.651388810082395, + 13.0067597690397 + ], + [ + 77.651465695627707, + 13.006734139881299 + ], + [ + 77.651568297552203, + 13.006690179958399 + ], + [ + 77.651473698299696, + 13.006501538577099 + ], + [ + 77.651261807121699, + 13.006079003367001 + ], + [ + 77.651831430773896, + 13.0059851006912 + ], + [ + 77.652224601450897, + 13.0059212318059 + ], + [ + 77.652543045596303, + 13.0058694187966 + ], + [ + 77.652876434766995, + 13.005815194118901 + ], + [ + 77.652919980230095, + 13.005849675894799 + ], + [ + 77.653174911114903, + 13.006051541480399 + ], + [ + 77.653350873771103, + 13.0061920265307 + ], + [ + 77.653464679825703, + 13.0062812019946 + ], + [ + 77.653525097383195, + 13.0063313999682 + ], + [ + 77.653534430767095, + 13.006339005940401 + ], + [ + 77.653672825800001, + 13.006451797455799 + ], + [ + 77.653686570789304, + 13.0064629989735 + ], + [ + 77.653855601076302, + 13.0066012959965 + ], + [ + 77.654085613046306, + 13.0067886556609 + ], + [ + 77.654217904386201, + 13.0069374913994 + ], + [ + 77.654621172637803, + 13.0073895788034 + ], + [ + 77.654730028745107, + 13.007511741889401 + ], + [ + 77.6549731648864, + 13.007784598794601 + ], + [ + 77.655013359028999, + 13.007828227826099 + ], + [ + 77.655587126763095, + 13.008447954132899 + ], + [ + 77.655681263239202, + 13.0085446624797 + ], + [ + 77.655852652348003, + 13.008720734217199 + ], + [ + 77.656079066388003, + 13.0089533340378 + ], + [ + 77.656101185236395, + 13.008975692349599 + ], + [ + 77.656202950935693, + 13.0090695064345 + ], + [ + 77.656323573956598, + 13.0091557258595 + ], + [ + 77.657495699261602, + 13.009993533450899 + ], + [ + 77.657547488468794, + 13.0100307401731 + ], + [ + 77.657563348415593, + 13.010042134751201 + ], + [ + 77.657592385224106, + 13.010062996457201 + ], + [ + 77.658131077394302, + 13.010450010363 + ], + [ + 77.658168205758599, + 13.0104755978064 + ], + [ + 77.658454176708602, + 13.010672546422301 + ], + [ + 77.658601899887302, + 13.010751641717601 + ], + [ + 77.658905309600996, + 13.010914095668401 + ], + [ + 77.659360426574096, + 13.0111406628487 + ], + [ + 77.659514297267506, + 13.011217262554499 + ], + [ + 77.6600244691695, + 13.011433360818099 + ], + [ + 77.660561791820598, + 13.011617615859601 + ], + [ + 77.660854734669698, + 13.0117180691926 + ], + [ + 77.660858996540995, + 13.0117195305107 + ], + [ + 77.661008682171996, + 13.011771068747199 + ], + [ + 77.661335457974104, + 13.0118834079965 + ], + [ + 77.661684865914907, + 13.0120035275453 + ], + [ + 77.661797642580794, + 13.0120497979043 + ], + [ + 77.662297617450704, + 13.0123890831658 + ], + [ + 77.662339861271903, + 13.011707719954201 + ], + [ + 77.662418209922194, + 13.0107944938649 + ], + [ + 77.6624509830839, + 13.010412476044101 + ], + [ + 77.662474854368597, + 13.010221390302499 + ], + [ + 77.662493581262794, + 13.0100670764763 + ], + [ + 77.662504492266905, + 13.0099771713286 + ], + [ + 77.662521440209105, + 13.009515140294001 + ], + [ + 77.662532027492801, + 13.0092123966675 + ], + [ + 77.662562246040096, + 13.008375323421699 + ], + [ + 77.662568941546596, + 13.0081934478743 + ], + [ + 77.662583948128201, + 13.0081066038328 + ], + [ + 77.662602564301295, + 13.0079988743556 + ], + [ + 77.662664893256505, + 13.007634620959101 + ], + [ + 77.662707972668102, + 13.007391262293201 + ], + [ + 77.662725172295893, + 13.0072941025457 + ], + [ + 77.662956011648902, + 13.0059942423772 + ], + [ + 77.662957090802493, + 13.0059874558921 + ], + [ + 77.663036673688296, + 13.005513489688401 + ], + [ + 77.663070787487996, + 13.0053110065274 + ], + [ + 77.663127647786794, + 13.0049739109702 + ], + [ + 77.663163474939296, + 13.004729555374601 + ], + [ + 77.663169383986101, + 13.004689250607299 + ], + [ + 77.663188833867096, + 13.004556595361301 + ], + [ + 77.663194154232499, + 13.0044803887812 + ], + [ + 77.663246268788697, + 13.003733923025299 + ], + [ + 77.663268841666294, + 13.003414312164701 + ], + [ + 77.663304291654697, + 13.0029123739057 + ], + [ + 77.663297277756897, + 13.002255231292899 + ], + [ + 77.6634492305745, + 13.000195269416499 + ], + [ + 77.6634690613419, + 12.999926431814201 + ], + [ + 77.663571366420697, + 12.9985395408772 + ], + [ + 77.663592043111507, + 12.9982592324225 + ], + [ + 77.663866542811306, + 12.997813755717599 + ], + [ + 77.664070306274397, + 12.9974841867122 + ], + [ + 77.663844943064603, + 12.9973543788877 + ], + [ + 77.663516492190595, + 12.997169179412399 + ], + [ + 77.662790684613199, + 12.996759924510799 + ], + [ + 77.662612889764901, + 12.997074136182199 + ], + [ + 77.661908386719503, + 12.9983191744056 + ], + [ + 77.662192312194506, + 12.998446812353301 + ], + [ + 77.66131822218, + 12.999873712452199 + ], + [ + 77.661259016348097, + 12.9999703615249 + ], + [ + 77.661211450057493, + 12.999937622568 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "8", + "group": "Kodihalli", + "Corporatio": "Central", + "ac_no": "161", + "ac": "C.V. Raman Nagar", + "corporat_1": "1", + "ward_id": "34", + "ward_name": "34 - Kodihalli", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಸಿ.ವಿ. ರಾಮನ್ ನಗರ", + "ward_name_": "ಕೋಡಿಹಳ್ಳಿ", + "dig_ward_n": "Kodihalli", + "Assembly": "161 - C.V. Raman Nagar", + "Slno": "34" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.644654703776496, + 12.9573019081643 + ], + [ + 77.644120774853803, + 12.9568055334079 + ], + [ + 77.643622848872397, + 12.956976674271599 + ], + [ + 77.643575092222804, + 12.9572224169082 + ], + [ + 77.643312692874403, + 12.957887952488299 + ], + [ + 77.643631778827299, + 12.957901841953801 + ], + [ + 77.643754453845602, + 12.9579071811254 + ], + [ + 77.643635324115493, + 12.957969194411101 + ], + [ + 77.643444704326996, + 12.9580684229276 + ], + [ + 77.643259664585699, + 12.9582091991137 + ], + [ + 77.643256062897706, + 12.9582109322743 + ], + [ + 77.643130214583607, + 12.958271493163799 + ], + [ + 77.643060785543895, + 12.958347858104901 + ], + [ + 77.642978885993102, + 12.9586321532457 + ], + [ + 77.642961347579302, + 12.958693035509301 + ], + [ + 77.642956379618298, + 12.958710279523901 + ], + [ + 77.642863948847406, + 12.9591575191887 + ], + [ + 77.642854880228896, + 12.9592013974252 + ], + [ + 77.642854410511703, + 12.9592036715439 + ], + [ + 77.642850668417793, + 12.959221775801399 + ], + [ + 77.642693756160497, + 12.959627641972199 + ], + [ + 77.642662009770206, + 12.9597229490375 + ], + [ + 77.642589964517001, + 12.959939240711501 + ], + [ + 77.642499150236603, + 12.960225864101499 + ], + [ + 77.642465669696605, + 12.9603794257965 + ], + [ + 77.642460162651602, + 12.960404682153101 + ], + [ + 77.642450138879198, + 12.960428411536601 + ], + [ + 77.642437710255194, + 12.960457833289199 + ], + [ + 77.642417678889601, + 12.960505254852 + ], + [ + 77.642411297430201, + 12.960520362212501 + ], + [ + 77.642333633565897, + 12.960525667642701 + ], + [ + 77.642223544867804, + 12.9605326003885 + ], + [ + 77.642195759197406, + 12.9605343504712 + ], + [ + 77.641892708870998, + 12.960553433045799 + ], + [ + 77.641670864282005, + 12.9605674026771 + ], + [ + 77.641675898186904, + 12.960604327024701 + ], + [ + 77.641702688149905, + 12.960800834661599 + ], + [ + 77.641704082714796, + 12.9616444609892 + ], + [ + 77.641704215500496, + 12.9617247840247 + ], + [ + 77.641704364865802, + 12.9618147959022 + ], + [ + 77.641704506930196, + 12.961900710915 + ], + [ + 77.641674951224104, + 12.9624814228426 + ], + [ + 77.641673865480996, + 12.962502746976099 + ], + [ + 77.641673512308301, + 12.962509694125901 + ], + [ + 77.641666390887707, + 12.9626531818336 + ], + [ + 77.641636813572404, + 12.9632327900223 + ], + [ + 77.641626214473405, + 12.9633740545209 + ], + [ + 77.641622631869296, + 12.9634215078647 + ], + [ + 77.641619268265998, + 12.963466059057801 + ], + [ + 77.641557014725606, + 12.964290582995 + ], + [ + 77.641544820382904, + 12.9645799741023 + ], + [ + 77.641542242127699, + 12.964641158029901 + ], + [ + 77.641493940721105, + 12.965787486501 + ], + [ + 77.641493288042199, + 12.9657976491968 + ], + [ + 77.641489988429299, + 12.965849045739199 + ], + [ + 77.641475152602297, + 12.9660801543421 + ], + [ + 77.641462125804097, + 12.966280358094901 + ], + [ + 77.641462066393501, + 12.9662812747499 + ], + [ + 77.641441216788607, + 12.9666018687739 + ], + [ + 77.641428132523302, + 12.966803345105101 + ], + [ + 77.641426877090794, + 12.966822640109401 + ], + [ + 77.641415715847501, + 12.9669943252335 + ], + [ + 77.6413933568749, + 12.9674394787866 + ], + [ + 77.641391593325096, + 12.967474864060801 + ], + [ + 77.641361052778706, + 12.968087999246499 + ], + [ + 77.641328417019807, + 12.9685479320423 + ], + [ + 77.641326973730102, + 12.9685682787101 + ], + [ + 77.641325518559995, + 12.968588372545399 + ], + [ + 77.641287277660297, + 12.9691163705224 + ], + [ + 77.641257133289201, + 12.9696526960839 + ], + [ + 77.641227027642302, + 12.970188317503 + ], + [ + 77.641226879575896, + 12.9701909578499 + ], + [ + 77.641226691887994, + 12.970194295123701 + ], + [ + 77.641225725445693, + 12.9702236854458 + ], + [ + 77.641232118692599, + 12.9702238969689 + ], + [ + 77.641630418443597, + 12.970237070201 + ], + [ + 77.641956701514104, + 12.9702478611726 + ], + [ + 77.641972832016705, + 12.9702488265882 + ], + [ + 77.643317062190803, + 12.9702950200349 + ], + [ + 77.643457583607002, + 12.970299238238001 + ], + [ + 77.643567007285498, + 12.9703026431685 + ], + [ + 77.644096280040898, + 12.970319848527501 + ], + [ + 77.644471779149001, + 12.9703318407109 + ], + [ + 77.645003929971793, + 12.970349014933401 + ], + [ + 77.645059238490603, + 12.970350699262299 + ], + [ + 77.645309737961, + 12.970358326802501 + ], + [ + 77.6455625969284, + 12.9703693061099 + ], + [ + 77.647442584177895, + 12.9704472934091 + ], + [ + 77.647566209235507, + 12.969779777627901 + ], + [ + 77.647628309475706, + 12.9694460168218 + ], + [ + 77.647679481965298, + 12.9691677004953 + ], + [ + 77.647737882803995, + 12.968974004342099 + ], + [ + 77.647758106735793, + 12.968872166008 + ], + [ + 77.648037025806602, + 12.9688433541696 + ], + [ + 77.648612696992899, + 12.9687844188099 + ], + [ + 77.648791907511395, + 12.968745328878001 + ], + [ + 77.649368611484405, + 12.968620884982199 + ], + [ + 77.649654977406001, + 12.9685886079013 + ], + [ + 77.650012726154301, + 12.968501399457301 + ], + [ + 77.650102349058898, + 12.968483547752101 + ], + [ + 77.650428087938295, + 12.968418120580999 + ], + [ + 77.650518286411, + 12.968400262878699 + ], + [ + 77.650615297036097, + 12.968373301758101 + ], + [ + 77.650792096403293, + 12.9683240718945 + ], + [ + 77.651089436236205, + 12.968240865382599 + ], + [ + 77.651188749316603, + 12.968213880605999 + ], + [ + 77.651412272103997, + 12.9681732081691 + ], + [ + 77.651511680820903, + 12.9681552562796 + ], + [ + 77.651548450899696, + 12.968148106024101 + ], + [ + 77.651805341750006, + 12.9681035834678 + ], + [ + 77.651850178149004, + 12.9680958125243 + ], + [ + 77.652257249574106, + 12.968026191478501 + ], + [ + 77.651903104186204, + 12.967069883574499 + ], + [ + 77.651154438529105, + 12.965220714008501 + ], + [ + 77.650471186514594, + 12.9636450699919 + ], + [ + 77.650382706066793, + 12.9633019700109 + ], + [ + 77.650367821397893, + 12.963011146480399 + ], + [ + 77.652068064415701, + 12.9629874062857 + ], + [ + 77.652052620020399, + 12.9595184927968 + ], + [ + 77.651501727294999, + 12.9595527533106 + ], + [ + 77.651366524923105, + 12.9595609059306 + ], + [ + 77.650899936242197, + 12.959589372146301 + ], + [ + 77.650825151526007, + 12.959594650712599 + ], + [ + 77.650498489674902, + 12.9596262082474 + ], + [ + 77.649773270778994, + 12.9596957002352 + ], + [ + 77.6497209357331, + 12.9597007499671 + ], + [ + 77.649420236680996, + 12.9597376881567 + ], + [ + 77.649310421643307, + 12.9597512275851 + ], + [ + 77.649205085494501, + 12.959765093939801 + ], + [ + 77.648974194936002, + 12.9593098313785 + ], + [ + 77.648795593893297, + 12.959025422242 + ], + [ + 77.648619225867094, + 12.958625935178899 + ], + [ + 77.648417887205696, + 12.958224255078401 + ], + [ + 77.6483205847954, + 12.957987901495001 + ], + [ + 77.647946942597201, + 12.9574352833157 + ], + [ + 77.645601039999704, + 12.956869811550501 + ], + [ + 77.645140059474102, + 12.9570657157646 + ], + [ + 77.644693880728099, + 12.9573683763694 + ], + [ + 77.644654703776496, + 12.9573019081643 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "9", + "group": "Konena Agrahara", + "Corporatio": "Central", + "ac_no": "161", + "ac": "C.V. Raman Nagar", + "corporat_1": "1", + "ward_id": "33", + "ward_name": "33 - Konena Agrahara", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಸಿ.ವಿ. ರಾಮನ್ ನಗರ", + "ward_name_": "ಕೊನೆನ ಅಗ್ರಹಾರ", + "dig_ward_n": "Konena Agrahara", + "Assembly": "161 - C.V. Raman Nagar", + "Slno": "33" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.656496220101104, + 12.952799771431 + ], + [ + 77.656167831261797, + 12.9527760190189 + ], + [ + 77.655859600960696, + 12.9527531898527 + ], + [ + 77.655525455912894, + 12.952729495306 + ], + [ + 77.655433849041998, + 12.952722524644599 + ], + [ + 77.655276573963206, + 12.952711706500001 + ], + [ + 77.655266776506807, + 12.952710677145101 + ], + [ + 77.655124242479801, + 12.9527016825333 + ], + [ + 77.654311661425197, + 12.952650400013599 + ], + [ + 77.653834511959502, + 12.9526044464968 + ], + [ + 77.653692754581897, + 12.952591210750199 + ], + [ + 77.653338486701003, + 12.9525699768403 + ], + [ + 77.653117294081596, + 12.9525575500403 + ], + [ + 77.652896677064305, + 12.952545117184499 + ], + [ + 77.652563247831907, + 12.9525252779721 + ], + [ + 77.652523977372894, + 12.9525229406413 + ], + [ + 77.6525209319163, + 12.952507162200201 + ], + [ + 77.6524920635581, + 12.952418025269299 + ], + [ + 77.652462608655796, + 12.952327076668499 + ], + [ + 77.652390604018095, + 12.952105348292701 + ], + [ + 77.652365015731306, + 12.9520265615784 + ], + [ + 77.652321477626003, + 12.95188359056 + ], + [ + 77.652297962886195, + 12.9518375308845 + ], + [ + 77.652239827508495, + 12.951783919023599 + ], + [ + 77.652141399021204, + 12.951730717441899 + ], + [ + 77.651965826054095, + 12.9516771720654 + ], + [ + 77.651974221265903, + 12.9516545016343 + ], + [ + 77.651758080381597, + 12.9515753964622 + ], + [ + 77.651517741883694, + 12.951440075024999 + ], + [ + 77.651343107435494, + 12.951311989236901 + ], + [ + 77.650882594423706, + 12.9509338613216 + ], + [ + 77.6505421187737, + 12.9506380752977 + ], + [ + 77.650380258676805, + 12.9504658179651 + ], + [ + 77.649543757720807, + 12.949481717596599 + ], + [ + 77.6493752834714, + 12.9492282206461 + ], + [ + 77.649255048214002, + 12.949072477699101 + ], + [ + 77.649184688366702, + 12.948897030223501 + ], + [ + 77.649079310742096, + 12.948513027523299 + ], + [ + 77.649052793076905, + 12.9483461681441 + ], + [ + 77.649039206910601, + 12.948095612749301 + ], + [ + 77.649050980670197, + 12.947902391247 + ], + [ + 77.649063912107707, + 12.947818695244299 + ], + [ + 77.649089062602798, + 12.9477472967501 + ], + [ + 77.649191060876603, + 12.9475938108382 + ], + [ + 77.649282492487302, + 12.9474754391077 + ], + [ + 77.649317282301496, + 12.947444595590101 + ], + [ + 77.649324669716904, + 12.9474354864692 + ], + [ + 77.649374389510001, + 12.9474011033764 + ], + [ + 77.649301506527706, + 12.947095817745399 + ], + [ + 77.649201677710096, + 12.946800969288899 + ], + [ + 77.649146535222997, + 12.946649081183899 + ], + [ + 77.649132627986305, + 12.9465859845726 + ], + [ + 77.649071580025307, + 12.9463110681936 + ], + [ + 77.649025259318293, + 12.9460134170386 + ], + [ + 77.648802590047097, + 12.9461331227829 + ], + [ + 77.648292878456402, + 12.946600167547199 + ], + [ + 77.648195102942694, + 12.9467174741905 + ], + [ + 77.648110974892305, + 12.946818832590299 + ], + [ + 77.647777283481005, + 12.947164387049201 + ], + [ + 77.6477732900116, + 12.947167815387299 + ], + [ + 77.647684714911605, + 12.947229695100701 + ], + [ + 77.647475631787998, + 12.947327806166101 + ], + [ + 77.647138411163695, + 12.947502878918 + ], + [ + 77.646762072412699, + 12.9476806072283 + ], + [ + 77.646541183507594, + 12.9478601437748 + ], + [ + 77.646532620898796, + 12.9478670062706 + ], + [ + 77.646386862396199, + 12.9480198067175 + ], + [ + 77.646208036850794, + 12.9482576369284 + ], + [ + 77.646163782986704, + 12.948319066066601 + ], + [ + 77.646044645204199, + 12.948485147040399 + ], + [ + 77.645732612440895, + 12.948919690751101 + ], + [ + 77.645657200311604, + 12.9490288649106 + ], + [ + 77.645402647735395, + 12.9494007157524 + ], + [ + 77.645248583744205, + 12.9496394234252 + ], + [ + 77.645041087495599, + 12.9499972452225 + ], + [ + 77.644916193448395, + 12.950327126146499 + ], + [ + 77.644692345489105, + 12.951075141812399 + ], + [ + 77.6444985874991, + 12.951722606775601 + ], + [ + 77.644360235049007, + 12.9526319315242 + ], + [ + 77.644279883000607, + 12.9532549662091 + ], + [ + 77.644261038824098, + 12.9533240420264 + ], + [ + 77.644253662983004, + 12.953334280201799 + ], + [ + 77.644228478564003, + 12.9533480869583 + ], + [ + 77.644141833504406, + 12.953374939532701 + ], + [ + 77.643802581227803, + 12.953467594877701 + ], + [ + 77.643031070832393, + 12.953731766896 + ], + [ + 77.642836033600204, + 12.9538143516013 + ], + [ + 77.642758542272702, + 12.953847163680001 + ], + [ + 77.642525572958405, + 12.953945808994799 + ], + [ + 77.642513592016698, + 12.953956093866401 + ], + [ + 77.642465702631796, + 12.9539547386739 + ], + [ + 77.642387954217099, + 12.9539204014237 + ], + [ + 77.642095467182301, + 12.9538647679394 + ], + [ + 77.641709707554597, + 12.953654509483201 + ], + [ + 77.641677479113298, + 12.9536369435735 + ], + [ + 77.641606755902302, + 12.953598395387401 + ], + [ + 77.641591751542506, + 12.9535902172895 + ], + [ + 77.641487742052504, + 12.953433514316 + ], + [ + 77.641117996744896, + 12.9533834837749 + ], + [ + 77.640776284846098, + 12.953218435036501 + ], + [ + 77.640769009498698, + 12.953204667736101 + ], + [ + 77.640772640170397, + 12.9532939415723 + ], + [ + 77.640788810825995, + 12.953324859258901 + ], + [ + 77.640806574862296, + 12.9533588233303 + ], + [ + 77.6408634823825, + 12.953467624248599 + ], + [ + 77.641100481591806, + 12.953920742059999 + ], + [ + 77.641261616886695, + 12.9542974086262 + ], + [ + 77.6412928971138, + 12.954697977292 + ], + [ + 77.641450523711995, + 12.954692213712899 + ], + [ + 77.642233211013505, + 12.954663594202399 + ], + [ + 77.643216486738098, + 12.9546637559778 + ], + [ + 77.643328173310707, + 12.954663774112801 + ], + [ + 77.643662456578596, + 12.9560561414304 + ], + [ + 77.643737643599096, + 12.9563693079337 + ], + [ + 77.643656451407196, + 12.956803765892699 + ], + [ + 77.643622848872397, + 12.956976674271599 + ], + [ + 77.644120774853803, + 12.9568055334079 + ], + [ + 77.644654703776496, + 12.9573019081643 + ], + [ + 77.644693880728099, + 12.9573683763694 + ], + [ + 77.645140059474102, + 12.9570657157646 + ], + [ + 77.645601039999704, + 12.956869811550501 + ], + [ + 77.647946942597201, + 12.9574352833157 + ], + [ + 77.6483205847954, + 12.957987901495001 + ], + [ + 77.648417887205696, + 12.958224255078401 + ], + [ + 77.648619225867094, + 12.958625935178899 + ], + [ + 77.648795593893297, + 12.959025422242 + ], + [ + 77.648974194936002, + 12.9593098313785 + ], + [ + 77.649636750290696, + 12.959045727365799 + ], + [ + 77.650227272545493, + 12.9589117520831 + ], + [ + 77.650120501830997, + 12.9585832134384 + ], + [ + 77.650062586380201, + 12.9584135090124 + ], + [ + 77.650049973216596, + 12.9583819215141 + ], + [ + 77.650927126453993, + 12.9581527345139 + ], + [ + 77.650717899459707, + 12.957256051838399 + ], + [ + 77.651514012021707, + 12.956988982408999 + ], + [ + 77.651421726578604, + 12.956652140541699 + ], + [ + 77.653032107560406, + 12.956133034924299 + ], + [ + 77.653232828399197, + 12.956128420652099 + ], + [ + 77.653435856373903, + 12.956096120747 + ], + [ + 77.653970560089903, + 12.9579466514343 + ], + [ + 77.653971639013605, + 12.957950765343201 + ], + [ + 77.654352224527997, + 12.959403206708 + ], + [ + 77.654901649955903, + 12.9593769439659 + ], + [ + 77.655182438839006, + 12.9593627876216 + ], + [ + 77.655262415807101, + 12.9593585841105 + ], + [ + 77.656299880163502, + 12.959376263188499 + ], + [ + 77.657057727271706, + 12.9593318952315 + ], + [ + 77.657349594854907, + 12.9593148076115 + ], + [ + 77.657855960394699, + 12.9592851605285 + ], + [ + 77.659031655101401, + 12.959188381037199 + ], + [ + 77.659669114826798, + 12.959197577118401 + ], + [ + 77.659666018143795, + 12.959099073024101 + ], + [ + 77.659664471106794, + 12.959061823888099 + ], + [ + 77.659775159882301, + 12.959076502321899 + ], + [ + 77.660386850353603, + 12.959159461640599 + ], + [ + 77.660574558808804, + 12.959195066501501 + ], + [ + 77.660850064571207, + 12.959247324887199 + ], + [ + 77.660888703733406, + 12.9592537053631 + ], + [ + 77.661144199152901, + 12.959243188917499 + ], + [ + 77.661165005391496, + 12.959242261634801 + ], + [ + 77.661375950327098, + 12.9592328562599 + ], + [ + 77.661439964533898, + 12.9592300020294 + ], + [ + 77.661442965527002, + 12.959229831321601 + ], + [ + 77.661488293371903, + 12.9592272494332 + ], + [ + 77.662152784591797, + 12.9591865775564 + ], + [ + 77.662199902105797, + 12.9591781910257 + ], + [ + 77.663077325517705, + 12.9590224153321 + ], + [ + 77.663476869476199, + 12.958915567024 + ], + [ + 77.663581969069696, + 12.958891906918 + ], + [ + 77.663579984143396, + 12.958884291775901 + ], + [ + 77.663380307772201, + 12.958118183983901 + ], + [ + 77.663373699682396, + 12.958092279122599 + ], + [ + 77.663195438243804, + 12.9574521491423 + ], + [ + 77.663189945991704, + 12.9574324255946 + ], + [ + 77.663119908367406, + 12.9571801927328 + ], + [ + 77.663040636266899, + 12.956871592375901 + ], + [ + 77.6630292311863, + 12.9568276687483 + ], + [ + 77.663048093310493, + 12.956706647351201 + ], + [ + 77.663369793169394, + 12.9557220490627 + ], + [ + 77.662382112169794, + 12.9556858512309 + ], + [ + 77.662354506390201, + 12.9556883919761 + ], + [ + 77.662179481737994, + 12.9556867938112 + ], + [ + 77.661909767268298, + 12.955659061840301 + ], + [ + 77.6618953891345, + 12.9557145415435 + ], + [ + 77.661812044114896, + 12.955726685970699 + ], + [ + 77.661185554518795, + 12.9557011620543 + ], + [ + 77.660970030279699, + 12.955692381274799 + ], + [ + 77.660913331508496, + 12.9556658589497 + ], + [ + 77.660910933059, + 12.955656849541301 + ], + [ + 77.660891193842104, + 12.955587038389 + ], + [ + 77.660856464359398, + 12.955460918422901 + ], + [ + 77.660847386229904, + 12.9554192293143 + ], + [ + 77.661674624731504, + 12.955417549960201 + ], + [ + 77.661817714165295, + 12.955393502465 + ], + [ + 77.661776206848899, + 12.954954652732701 + ], + [ + 77.6623866265098, + 12.954919052015301 + ], + [ + 77.662400164412901, + 12.9547845341932 + ], + [ + 77.662395893714105, + 12.954599382711301 + ], + [ + 77.662394610464105, + 12.9545869742058 + ], + [ + 77.6623678654408, + 12.954237183641199 + ], + [ + 77.661998823123696, + 12.954288384468599 + ], + [ + 77.660991803992403, + 12.9543280370217 + ], + [ + 77.661012033955899, + 12.954064717404499 + ], + [ + 77.661011170470005, + 12.954037624470599 + ], + [ + 77.661001108659505, + 12.9537949407061 + ], + [ + 77.660997594683195, + 12.9536267198636 + ], + [ + 77.660989931148706, + 12.953230434946599 + ], + [ + 77.660983215170106, + 12.952869146773899 + ], + [ + 77.660508013234406, + 12.952877543946901 + ], + [ + 77.660424426748804, + 12.9528790211721 + ], + [ + 77.660074391171307, + 12.952885206598699 + ], + [ + 77.660015102809993, + 12.952885812168001 + ], + [ + 77.659777445646398, + 12.9528950149005 + ], + [ + 77.659545407952507, + 12.952904390397601 + ], + [ + 77.659478221540994, + 12.9529071046178 + ], + [ + 77.6592066149027, + 12.952917782759799 + ], + [ + 77.659026495135805, + 12.9529241388248 + ], + [ + 77.658728997633304, + 12.9529362100626 + ], + [ + 77.658684639259803, + 12.952933275185201 + ], + [ + 77.6584138840809, + 12.952915712763801 + ], + [ + 77.658405237859299, + 12.9529146717797 + ], + [ + 77.658021625964494, + 12.952894873194101 + ], + [ + 77.657330443262396, + 12.9528601446293 + ], + [ + 77.657130748873001, + 12.9528457105435 + ], + [ + 77.656810206532001, + 12.9528225410989 + ], + [ + 77.656526183974606, + 12.952801944705801 + ], + [ + 77.656496220101104, + 12.952799771431 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "10", + "group": "Krishnaianna palya", + "Corporatio": "Central", + "ac_no": "161", + "ac": "C.V. Raman Nagar", + "corporat_1": "1", + "ward_id": "8", + "ward_name": "8 - Krishnaianna palya", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಸಿ.ವಿ. ರಾಮನ್ ನಗರ", + "ward_name_": "ಕೃಷ್ಣಯ್ಯನ ಪಾಳ್ಯ", + "dig_ward_n": "Krishnaianna palya", + "Assembly": "161 - C.V. Raman Nagar", + "Slno": "8" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.644653253522193, + 12.986358322107201 + ], + [ + 77.644607983066905, + 12.986382975356999 + ], + [ + 77.644760349699894, + 12.9870434961613 + ], + [ + 77.644788333335896, + 12.9871669440427 + ], + [ + 77.645715128212203, + 12.987507405354901 + ], + [ + 77.645442140972804, + 12.9884696551392 + ], + [ + 77.645604154868707, + 12.9885417885345 + ], + [ + 77.645819982567502, + 12.988635676445901 + ], + [ + 77.646020782235794, + 12.9886578531972 + ], + [ + 77.6463618564553, + 12.988642426767001 + ], + [ + 77.646590308263498, + 12.988637111785501 + ], + [ + 77.647134217018007, + 12.9885911172923 + ], + [ + 77.6471295026207, + 12.988651574686299 + ], + [ + 77.647160104044104, + 12.9892169172576 + ], + [ + 77.647145863072396, + 12.9892831595422 + ], + [ + 77.647134413327095, + 12.9895631058146 + ], + [ + 77.6471006365785, + 12.989659856162399 + ], + [ + 77.647214561544203, + 12.9907395671435 + ], + [ + 77.647004108467002, + 12.9908030935868 + ], + [ + 77.646778456503796, + 12.9909019605805 + ], + [ + 77.646704012200303, + 12.990940645202899 + ], + [ + 77.646560022524795, + 12.9910094005426 + ], + [ + 77.644017401334594, + 12.9914929982475 + ], + [ + 77.643564955231895, + 12.991574253575299 + ], + [ + 77.643732121513295, + 12.9920207936417 + ], + [ + 77.644103093260796, + 12.9930409659473 + ], + [ + 77.644161486961707, + 12.993319194758 + ], + [ + 77.644223315586302, + 12.9941870854512 + ], + [ + 77.644138123535896, + 12.994392359251 + ], + [ + 77.644023043641994, + 12.9945997161566 + ], + [ + 77.643976542812098, + 12.994696995397099 + ], + [ + 77.643868348361295, + 12.9948379263967 + ], + [ + 77.643724059418901, + 12.9950000211784 + ], + [ + 77.643689042918794, + 12.9950453452088 + ], + [ + 77.643656840093101, + 12.995126418898 + ], + [ + 77.643579366089895, + 12.9952696807831 + ], + [ + 77.643512742931094, + 12.995423335645899 + ], + [ + 77.643497711255904, + 12.995435381062901 + ], + [ + 77.643249192655901, + 12.9955789944913 + ], + [ + 77.643155435184696, + 12.995612788518001 + ], + [ + 77.642932552750807, + 12.995693125752901 + ], + [ + 77.642682921991295, + 12.995860977490601 + ], + [ + 77.642149798073305, + 12.9966275205124 + ], + [ + 77.642102729039294, + 12.9966957546874 + ], + [ + 77.641310940555101, + 12.9978308061399 + ], + [ + 77.640962041767594, + 12.998323322578001 + ], + [ + 77.640749594844095, + 12.998651838147399 + ], + [ + 77.640715248774598, + 12.998705360941701 + ], + [ + 77.644663205665594, + 12.9984269607057 + ], + [ + 77.645567063073003, + 12.998261833760299 + ], + [ + 77.645716123829501, + 12.998234601118099 + ], + [ + 77.647212777047699, + 12.9979611679295 + ], + [ + 77.648930359350302, + 12.997848232413601 + ], + [ + 77.650994758885105, + 12.9978652079147 + ], + [ + 77.651957102205003, + 12.9981014247416 + ], + [ + 77.651987761935601, + 12.998105962756201 + ], + [ + 77.652662048206807, + 12.9982472559266 + ], + [ + 77.653058612504907, + 12.9982309690579 + ], + [ + 77.654236467734293, + 12.9979699511021 + ], + [ + 77.654854611301303, + 12.997844372190899 + ], + [ + 77.654870795009103, + 12.9978410845527 + ], + [ + 77.655657349176096, + 12.9976908298658 + ], + [ + 77.6560870664173, + 12.9976087408631 + ], + [ + 77.656080321988895, + 12.9975246741852 + ], + [ + 77.656523822320295, + 12.997529056273001 + ], + [ + 77.656871570908507, + 12.997567327261001 + ], + [ + 77.657091301574397, + 12.997600931261401 + ], + [ + 77.657240740471195, + 12.997614341051699 + ], + [ + 77.657453901626795, + 12.997603195603499 + ], + [ + 77.657968126895994, + 12.997538175354601 + ], + [ + 77.658306067589706, + 12.997513800649299 + ], + [ + 77.658506851652007, + 12.997484854203501 + ], + [ + 77.6589353920685, + 12.9973848567078 + ], + [ + 77.659633766965001, + 12.9971595945185 + ], + [ + 77.660112127129594, + 12.9970071577168 + ], + [ + 77.660797966872707, + 12.998460130394401 + ], + [ + 77.660598741304597, + 12.998533408764301 + ], + [ + 77.660698354088595, + 12.9993314560112 + ], + [ + 77.660733848299003, + 12.999688688064399 + ], + [ + 77.660773033747901, + 12.999708446515401 + ], + [ + 77.661211450057493, + 12.999937622568 + ], + [ + 77.661259016348097, + 12.9999703615249 + ], + [ + 77.66131822218, + 12.999873712452199 + ], + [ + 77.662192312194506, + 12.998446812353301 + ], + [ + 77.661908386719503, + 12.9983191744056 + ], + [ + 77.662612889764901, + 12.997074136182199 + ], + [ + 77.662790684613199, + 12.996759924510799 + ], + [ + 77.662833704274405, + 12.9966905999015 + ], + [ + 77.663205772051995, + 12.9961616890263 + ], + [ + 77.663535830531401, + 12.995527060767399 + ], + [ + 77.663540351904402, + 12.995519109739099 + ], + [ + 77.664135422264707, + 12.9945215364917 + ], + [ + 77.664160331797802, + 12.994481757702999 + ], + [ + 77.6639853598965, + 12.9944088942415 + ], + [ + 77.663689808148803, + 12.994285817878501 + ], + [ + 77.663586039003903, + 12.994242605507401 + ], + [ + 77.663546134441503, + 12.9942260763173 + ], + [ + 77.663166747437003, + 12.9940684870498 + ], + [ + 77.662635974986401, + 12.9938114226347 + ], + [ + 77.662543422487403, + 12.9937665978445 + ], + [ + 77.661471578656204, + 12.993249103030299 + ], + [ + 77.661351781487895, + 12.9931916104902 + ], + [ + 77.660619110318194, + 12.9928400207341 + ], + [ + 77.660332068179798, + 12.992702935968801 + ], + [ + 77.660109254457694, + 12.9925956823493 + ], + [ + 77.659952079472205, + 12.9925207733131 + ], + [ + 77.659823951939202, + 12.9924597083346 + ], + [ + 77.658576813423295, + 12.9918626894656 + ], + [ + 77.658183842255298, + 12.9916724827454 + ], + [ + 77.657498345540802, + 12.9913403646239 + ], + [ + 77.657206909781195, + 12.991199165102399 + ], + [ + 77.655891428636806, + 12.990563306677 + ], + [ + 77.655180155573504, + 12.990219384542501 + ], + [ + 77.6548074944223, + 12.990043644265899 + ], + [ + 77.654736086297206, + 12.990009986423001 + ], + [ + 77.653149624823797, + 12.989262208602099 + ], + [ + 77.653041075541907, + 12.9892109745855 + ], + [ + 77.652451755099705, + 12.988932820856901 + ], + [ + 77.651855162028198, + 12.9886520838014 + ], + [ + 77.651794401759304, + 12.9886233436984 + ], + [ + 77.650840493745704, + 12.988147504020301 + ], + [ + 77.650760075996899, + 12.988111059498101 + ], + [ + 77.650622364415796, + 12.988046968392901 + ], + [ + 77.650281575859594, + 12.987890092382401 + ], + [ + 77.649045689675305, + 12.9873188769902 + ], + [ + 77.648323901092297, + 12.9870134342009 + ], + [ + 77.648039352636303, + 12.9868932466046 + ], + [ + 77.647934696373895, + 12.986851401863801 + ], + [ + 77.647515495906106, + 12.986684028276001 + ], + [ + 77.646161184977302, + 12.986127037252301 + ], + [ + 77.645939059918604, + 12.986816311918901 + ], + [ + 77.644653253522193, + 12.986358322107201 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "89", + "group": "RAMA MANDIRA", + "Corporatio": "West", + "ac_no": "165", + "ac": "Rajajinagar", + "corporat_1": "5", + "ward_id": "56", + "ward_name": "56 - Rama Mandira", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜಾಜಿನಗರ", + "ward_name_": "ರಾಮ ಮಂದಿರ", + "dig_ward_n": "RAMA MANDIRA", + "Assembly": "165 - Rajajinagar", + "Slno": "56" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.555023280118107, + 12.980073868767599 + ], + [ + 77.554730244656497, + 12.980020125516001 + ], + [ + 77.554676131927494, + 12.98001019889 + ], + [ + 77.554421354170003, + 12.9799634668574 + ], + [ + 77.553855779284902, + 12.9798597316261 + ], + [ + 77.553784878452603, + 12.9798467263165 + ], + [ + 77.553744785901003, + 12.979839373026801 + ], + [ + 77.553784205468403, + 12.980130756417401 + ], + [ + 77.553810707522501, + 12.9803266580239 + ], + [ + 77.553820769221602, + 12.9804010304854 + ], + [ + 77.5538473117373, + 12.980599259893999 + ], + [ + 77.553850066414199, + 12.9806198317193 + ], + [ + 77.553317583024906, + 12.9806370129931 + ], + [ + 77.553145537777596, + 12.980642563448599 + ], + [ + 77.553049399957402, + 12.9806457212218 + ], + [ + 77.552719662532994, + 12.9806565506107 + ], + [ + 77.552704057056502, + 12.980657063446699 + ], + [ + 77.552141428646493, + 12.9806751527318 + ], + [ + 77.551642079759304, + 12.980691206605499 + ], + [ + 77.551484951848195, + 12.9806972663482 + ], + [ + 77.551368723728103, + 12.9807051831949 + ], + [ + 77.550701258011998, + 12.980749001784 + ], + [ + 77.550689470171093, + 12.980749782407701 + ], + [ + 77.5503007806157, + 12.9807755179776 + ], + [ + 77.550136536995296, + 12.980779714227999 + ], + [ + 77.550085492228803, + 12.980781018201 + ], + [ + 77.5499202807855, + 12.980784897660699 + ], + [ + 77.549749899264398, + 12.9807899570604 + ], + [ + 77.549402792720997, + 12.9807987581577 + ], + [ + 77.549211315849405, + 12.9808036130372 + ], + [ + 77.549023442895802, + 12.980808375515901 + ], + [ + 77.549025139317095, + 12.9809139366814 + ], + [ + 77.549031594061901, + 12.981315553095801 + ], + [ + 77.549039195324895, + 12.981788478533099 + ], + [ + 77.549040812340607, + 12.9818922967848 + ], + [ + 77.549054211652404, + 12.982752778085199 + ], + [ + 77.549059738551406, + 12.9830974998229 + ], + [ + 77.549063698126005, + 12.9833444533167 + ], + [ + 77.549063769529397, + 12.9833500992601 + ], + [ + 77.549078661309096, + 12.984416039487 + ], + [ + 77.549145974681494, + 12.984956500613 + ], + [ + 77.549201081638003, + 12.9850854410443 + ], + [ + 77.549306222185805, + 12.984976726656299 + ], + [ + 77.550139560696394, + 12.9848255537553 + ], + [ + 77.550607250552801, + 12.9847398743882 + ], + [ + 77.551262284140705, + 12.9846288129554 + ], + [ + 77.551595916957993, + 12.984562758502801 + ], + [ + 77.553238854805102, + 12.9844180119263 + ], + [ + 77.554155756868198, + 12.984353198104101 + ], + [ + 77.554277712632498, + 12.987020520004 + ], + [ + 77.554318399012502, + 12.9875214757135 + ], + [ + 77.555948067978804, + 12.9875034314642 + ], + [ + 77.555984737007407, + 12.988365056700101 + ], + [ + 77.556704725555704, + 12.9883406227323 + ], + [ + 77.557035099150397, + 12.988329410744999 + ], + [ + 77.557860525653894, + 12.988289664602201 + ], + [ + 77.558148787041802, + 12.9883077522731 + ], + [ + 77.558571264548902, + 12.988495414149501 + ], + [ + 77.559143890477799, + 12.9888455170477 + ], + [ + 77.5595212727535, + 12.9882953763905 + ], + [ + 77.559815302111204, + 12.987769604215201 + ], + [ + 77.559835829370996, + 12.987693737523299 + ], + [ + 77.559965612389504, + 12.9872102391572 + ], + [ + 77.560063057838406, + 12.9868862935243 + ], + [ + 77.560081817546404, + 12.9866941243173 + ], + [ + 77.560091140815899, + 12.9865554721449 + ], + [ + 77.560098306255796, + 12.9864488994605 + ], + [ + 77.560181360455402, + 12.9852261571335 + ], + [ + 77.560248693161199, + 12.983424228653099 + ], + [ + 77.559508192124099, + 12.983483980362401 + ], + [ + 77.558525475286402, + 12.9835459726228 + ], + [ + 77.558250103049403, + 12.9835704816357 + ], + [ + 77.558117241240296, + 12.9836197451825 + ], + [ + 77.558021860897696, + 12.9836825904582 + ], + [ + 77.557781511319206, + 12.9838279512844 + ], + [ + 77.557493148642493, + 12.984060104669799 + ], + [ + 77.557020065535895, + 12.984573962351501 + ], + [ + 77.556772516030904, + 12.984797866282699 + ], + [ + 77.556512412711001, + 12.9850114305041 + ], + [ + 77.556344104656603, + 12.9850723770583 + ], + [ + 77.556175225741299, + 12.985077526127601 + ], + [ + 77.556288952335507, + 12.983568900061799 + ], + [ + 77.556094843047802, + 12.9835628966818 + ], + [ + 77.556060034173399, + 12.983029642372699 + ], + [ + 77.555665417530903, + 12.9830439863933 + ], + [ + 77.555624869530305, + 12.982730493067301 + ], + [ + 77.5552639467017, + 12.9827357858368 + ], + [ + 77.555083113558993, + 12.9800848485324 + ], + [ + 77.555047767864707, + 12.980078364906101 + ], + [ + 77.555028562322207, + 12.9800748341424 + ], + [ + 77.555023280118107, + 12.980073868767599 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "12", + "group": "Arfath Nagara", + "Corporatio": "Central", + "ac_no": "168", + "ac": "Chamrajapet", + "corporat_1": "1", + "ward_id": "51", + "ward_name": "51 - Old Guddadahalli", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಾಮರಾಜಪೇಟೆ", + "ward_name_": "ಹಳೆ ಗುಡ್ಡದಹಳ್ಳಿ", + "dig_ward_n": "Arfath Nagara", + "Assembly": "168 - Chamrajapet", + "Slno": "51" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.548445235488899, + 12.960794393089399 + ], + [ + 77.548380015879502, + 12.9606319770122 + ], + [ + 77.548122726712094, + 12.960104538627199 + ], + [ + 77.548122378617407, + 12.9601038255869 + ], + [ + 77.547195061060606, + 12.9602312271477 + ], + [ + 77.546484928961405, + 12.9602877653276 + ], + [ + 77.546414034729196, + 12.960293409837099 + ], + [ + 77.546379765776194, + 12.9602961383444 + ], + [ + 77.546370426813994, + 12.9602961411597 + ], + [ + 77.546370026587098, + 12.9602969139242 + ], + [ + 77.546317924330197, + 12.9603973767453 + ], + [ + 77.546290254570195, + 12.9604507242314 + ], + [ + 77.546257496461394, + 12.960513159764201 + ], + [ + 77.546256355716807, + 12.960515393449199 + ], + [ + 77.546235482039606, + 12.960556289742501 + ], + [ + 77.546181489928998, + 12.960648288396699 + ], + [ + 77.546174511254407, + 12.960660179416699 + ], + [ + 77.546107671919401, + 12.960774071842801 + ], + [ + 77.546096674647998, + 12.9607928115938 + ], + [ + 77.546066833031105, + 12.960843660547599 + ], + [ + 77.545962344254093, + 12.9610221106813 + ], + [ + 77.545820093828596, + 12.9612650563627 + ], + [ + 77.545769729409201, + 12.961351378255699 + ], + [ + 77.545744015212804, + 12.9613910525064 + ], + [ + 77.545742321007495, + 12.9613936665422 + ], + [ + 77.5457412498792, + 12.961395318616701 + ], + [ + 77.545739380629698, + 12.961398202693999 + ], + [ + 77.545728941486701, + 12.961414308796 + ], + [ + 77.545655072083804, + 12.961528282577399 + ], + [ + 77.545651091413404, + 12.961534423521099 + ], + [ + 77.5456030649935, + 12.961608525737301 + ], + [ + 77.545593466587306, + 12.961623334367699 + ], + [ + 77.545522635374397, + 12.961732617434301 + ], + [ + 77.545520884026402, + 12.9617353196645 + ], + [ + 77.545514121695902, + 12.961745753076601 + ], + [ + 77.545472132864504, + 12.961810539317399 + ], + [ + 77.545212761935204, + 12.9621789797477 + ], + [ + 77.545206551995193, + 12.962187842949801 + ], + [ + 77.545175485957003, + 12.962232183512601 + ], + [ + 77.545171334508694, + 12.9622381101942 + ], + [ + 77.545266654544406, + 12.962326395381 + ], + [ + 77.545349160217, + 12.9624001245099 + ], + [ + 77.545395728709707, + 12.9624454486327 + ], + [ + 77.545396260899196, + 12.9624459665351 + ], + [ + 77.545418630227601, + 12.962468520541099 + ], + [ + 77.545443961173106, + 12.962494061350601 + ], + [ + 77.545523853511696, + 12.962593790622099 + ], + [ + 77.5455463727411, + 12.9626568130198 + ], + [ + 77.545538317694096, + 12.962671025631 + ], + [ + 77.5455309567417, + 12.9626840126773 + ], + [ + 77.545527707027105, + 12.9626897462377 + ], + [ + 77.545524598062698, + 12.9626916558551 + ], + [ + 77.545469241402003, + 12.962725615586701 + ], + [ + 77.545430436726903, + 12.9627494228955 + ], + [ + 77.545354469693606, + 12.962808891180501 + ], + [ + 77.545284041885495, + 12.9628439071634 + ], + [ + 77.545255625674002, + 12.9628580361101 + ], + [ + 77.545245362002802, + 12.962863139882399 + ], + [ + 77.545145949696206, + 12.9629125704099 + ], + [ + 77.545131329567994, + 12.962918660000501 + ], + [ + 77.545073113232206, + 12.962942908259899 + ], + [ + 77.5449515931072, + 12.9629935243356 + ], + [ + 77.544934756411294, + 12.9630023170809 + ], + [ + 77.544799502938105, + 12.9630729535951 + ], + [ + 77.544779801774197, + 12.9630832424746 + ], + [ + 77.544763902471104, + 12.963091545400699 + ], + [ + 77.544748854457495, + 12.963099405434701 + ], + [ + 77.544719588579994, + 12.963121212171099 + ], + [ + 77.544696260912602, + 12.9631385952913 + ], + [ + 77.544677627124798, + 12.9631524812715 + ], + [ + 77.544601427952202, + 12.9632092629396 + ], + [ + 77.544582471282993, + 12.9632473920904 + ], + [ + 77.544550085438104, + 12.963312534297399 + ], + [ + 77.544495866289495, + 12.9632990172991 + ], + [ + 77.544446437536394, + 12.963286693914 + ], + [ + 77.544423675068202, + 12.963281019527599 + ], + [ + 77.544373931842799, + 12.963344520870701 + ], + [ + 77.544306053344698, + 12.9634311737715 + ], + [ + 77.544223274272994, + 12.963536848472 + ], + [ + 77.544222720452098, + 12.963537555880199 + ], + [ + 77.544208829359505, + 12.9635552894146 + ], + [ + 77.544123223797698, + 12.9636643011294 + ], + [ + 77.544088950084898, + 12.963707945690601 + ], + [ + 77.54393088546, + 12.963909229399301 + ], + [ + 77.543913931570998, + 12.9639308840982 + ], + [ + 77.543864954191093, + 12.963993444618501 + ], + [ + 77.543887502323898, + 12.964011289038099 + ], + [ + 77.543904422717006, + 12.964024680165601 + ], + [ + 77.544284394082098, + 12.9641902129753 + ], + [ + 77.544353192905106, + 12.964220185032101 + ], + [ + 77.544498213019196, + 12.9642447255285 + ], + [ + 77.544584378522202, + 12.9642593060997 + ], + [ + 77.5445911047415, + 12.964260444651901 + ], + [ + 77.544634627198704, + 12.964267808775199 + ], + [ + 77.544715059413903, + 12.9642814190231 + ], + [ + 77.544769600918301, + 12.964290648543599 + ], + [ + 77.545375004501807, + 12.964265422479301 + ], + [ + 77.545387252222497, + 12.964264912385801 + ], + [ + 77.545690413819401, + 12.964252280767999 + ], + [ + 77.545805248669595, + 12.964247811862499 + ], + [ + 77.545819567694494, + 12.9642472552854 + ], + [ + 77.545931493615797, + 12.964242900611501 + ], + [ + 77.546000619940898, + 12.964240211404199 + ], + [ + 77.546206331098901, + 12.9642738513284 + ], + [ + 77.546329371565605, + 12.964293973748701 + ], + [ + 77.546372021382993, + 12.964300949487701 + ], + [ + 77.547043920119904, + 12.9645316494378 + ], + [ + 77.547082797100302, + 12.964544997978599 + ], + [ + 77.547253414897199, + 12.9646035800387 + ], + [ + 77.547432014307503, + 12.9646649026494 + ], + [ + 77.5474852126314, + 12.964683168523999 + ], + [ + 77.547788713223994, + 12.9647873770774 + ], + [ + 77.547856773859806, + 12.964821439893001 + ], + [ + 77.548484429494394, + 12.9651355664649 + ], + [ + 77.548494727591901, + 12.9651407201577 + ], + [ + 77.548497077589403, + 12.9651424399253 + ], + [ + 77.548502911746198, + 12.9651467094782 + ], + [ + 77.548505688775904, + 12.965142870564501 + ], + [ + 77.548605767813896, + 12.965047819525701 + ], + [ + 77.548681901175399, + 12.9649425710532 + ], + [ + 77.548688171061102, + 12.9649339041472 + ], + [ + 77.5487028855581, + 12.964913562182 + ], + [ + 77.5487397344735, + 12.964862620824199 + ], + [ + 77.548768151490407, + 12.964823337233501 + ], + [ + 77.548796544783897, + 12.964809497232499 + ], + [ + 77.548813655005702, + 12.964801156906899 + ], + [ + 77.548835947063395, + 12.9647902912373 + ], + [ + 77.548843080449501, + 12.9647868144041 + ], + [ + 77.549064651120304, + 12.9646726307455 + ], + [ + 77.549041542522801, + 12.964550291111401 + ], + [ + 77.5488539550837, + 12.9636069165989 + ], + [ + 77.548624228437305, + 12.9624813919645 + ], + [ + 77.549196642151799, + 12.962360731684999 + ], + [ + 77.5492473918044, + 12.9623510752977 + ], + [ + 77.549301000159105, + 12.962312042775499 + ], + [ + 77.549462000555593, + 12.9621470426884 + ], + [ + 77.549566247779097, + 12.9620605994436 + ], + [ + 77.549593874332302, + 12.9620289433918 + ], + [ + 77.549618119933299, + 12.962017531846801 + ], + [ + 77.549787814291307, + 12.961937660257 + ], + [ + 77.550204955725604, + 12.9618339549911 + ], + [ + 77.550266428346305, + 12.9618181979834 + ], + [ + 77.550308032130999, + 12.9618075360298 + ], + [ + 77.550340869739102, + 12.9617991219529 + ], + [ + 77.550351433022897, + 12.961796409246899 + ], + [ + 77.550367819398204, + 12.961792184003199 + ], + [ + 77.550404609946995, + 12.9617826967204 + ], + [ + 77.550888870998904, + 12.9616821063545 + ], + [ + 77.551069661791701, + 12.961636568824 + ], + [ + 77.551227485449601, + 12.961598863760999 + ], + [ + 77.551215110023406, + 12.961563165043501 + ], + [ + 77.551103379840498, + 12.9612166344725 + ], + [ + 77.551048768365703, + 12.9608749939501 + ], + [ + 77.551036996978596, + 12.9608013524032 + ], + [ + 77.551036665828093, + 12.9607999525706 + ], + [ + 77.551031188129201, + 12.960801457215799 + ], + [ + 77.551028550784395, + 12.9608021814397 + ], + [ + 77.551019899276099, + 12.960804558313299 + ], + [ + 77.551015251087804, + 12.9608058352872 + ], + [ + 77.551010253822696, + 12.9608072078353 + ], + [ + 77.5509914112031, + 12.960812384131399 + ], + [ + 77.550968714970793, + 12.9608181646636 + ], + [ + 77.550962485501202, + 12.960819751662401 + ], + [ + 77.550945604373197, + 12.9608240522497 + ], + [ + 77.550937727487096, + 12.9608260583373 + ], + [ + 77.550915574264906, + 12.960831700734699 + ], + [ + 77.550868431486805, + 12.9608437089865 + ], + [ + 77.550829117804895, + 12.960853722455999 + ], + [ + 77.550682464178806, + 12.960891076749 + ], + [ + 77.550383545635597, + 12.9609369202251 + ], + [ + 77.5503798451211, + 12.960936819156201 + ], + [ + 77.550362550582605, + 12.9609363489551 + ], + [ + 77.550362356158004, + 12.9609363436323 + ], + [ + 77.5503530237972, + 12.9609360899468 + ], + [ + 77.5503252557357, + 12.9609343897526 + ], + [ + 77.550321802812505, + 12.9609341778414 + ], + [ + 77.550261356457, + 12.960930475910899 + ], + [ + 77.550255926865702, + 12.960930193018999 + ], + [ + 77.5488125345681, + 12.9608550810156 + ], + [ + 77.548515482095794, + 12.9608488375129 + ], + [ + 77.548461656411803, + 12.9608352848505 + ], + [ + 77.548445235488899, + 12.960794393089399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "13", + "group": "Bharathi Nagar", + "Corporatio": "Central", + "ac_no": "162", + "ac": "Shivajinagar", + "corporat_1": "1", + "ward_id": "4", + "ward_name": "4 - Bharathi Nagar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಿವಾಜಿನಗರ", + "ward_name_": "ಭಾರತಿ ನಗರ", + "dig_ward_n": "Bharathi Nagar", + "Assembly": "162 - Shivajinagar", + "Slno": "4" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6081943366556, + 12.986458707844401 + ], + [ + 77.607846608597598, + 12.9866177229966 + ], + [ + 77.6076913513634, + 12.9866547931823 + ], + [ + 77.607347819761898, + 12.986715371286699 + ], + [ + 77.607266235701502, + 12.986734348577601 + ], + [ + 77.607194260156305, + 12.9867375928964 + ], + [ + 77.607165485725105, + 12.986740403672201 + ], + [ + 77.607142588892202, + 12.986739624634801 + ], + [ + 77.607163843418107, + 12.9869280584594 + ], + [ + 77.607140517806101, + 12.9871572919755 + ], + [ + 77.607120762192693, + 12.987432894840101 + ], + [ + 77.607098941717197, + 12.9875828531582 + ], + [ + 77.607092561871696, + 12.9877026318995 + ], + [ + 77.607057570508204, + 12.9882779013787 + ], + [ + 77.607045249800706, + 12.9886744866036 + ], + [ + 77.607035475080906, + 12.9889207338723 + ], + [ + 77.607041871548304, + 12.9891516731193 + ], + [ + 77.607060685540702, + 12.989553057795099 + ], + [ + 77.607125240931794, + 12.9901332572563 + ], + [ + 77.607162065678295, + 12.9903196030572 + ], + [ + 77.607165675042694, + 12.990389582287801 + ], + [ + 77.607167954037095, + 12.9904322814903 + ], + [ + 77.607167975706702, + 12.9904326805868 + ], + [ + 77.607168630712493, + 12.9904449479479 + ], + [ + 77.607177843205505, + 12.9906175750292 + ], + [ + 77.607183870047095, + 12.990699652150401 + ], + [ + 77.6071848064975, + 12.9907124045356 + ], + [ + 77.607189899013704, + 12.990781755448401 + ], + [ + 77.607204453868206, + 12.9909799671976 + ], + [ + 77.607204691146293, + 12.990983193657501 + ], + [ + 77.607209194533596, + 12.9910836536041 + ], + [ + 77.607213250291395, + 12.991170178191799 + ], + [ + 77.6072139851684, + 12.991185859697101 + ], + [ + 77.607217636897403, + 12.9912637732766 + ], + [ + 77.607226680976297, + 12.991456698376901 + ], + [ + 77.6072282798999, + 12.9914908146329 + ], + [ + 77.607229194745102, + 12.991510321239801 + ], + [ + 77.607227234780495, + 12.9916255348531 + ], + [ + 77.607227024382098, + 12.9916379446066 + ], + [ + 77.607226893046402, + 12.991645661175999 + ], + [ + 77.607226697017595, + 12.991657152905301 + ], + [ + 77.607246012976006, + 12.992185566602201 + ], + [ + 77.607249323282105, + 12.992276126130999 + ], + [ + 77.607251022747406, + 12.9923226056505 + ], + [ + 77.6072510354862, + 12.9923229434036 + ], + [ + 77.6072574039774, + 12.992502676424101 + ], + [ + 77.607258367385299, + 12.992532038908999 + ], + [ + 77.607264787038702, + 12.9927276987959 + ], + [ + 77.607269727219801, + 12.992878271841899 + ], + [ + 77.607274294282007, + 12.993017459151501 + ], + [ + 77.607278735499307, + 12.9930453222658 + ], + [ + 77.607282920407002, + 12.9930715780496 + ], + [ + 77.607310044598506, + 12.9932429564793 + ], + [ + 77.607355509783005, + 12.9934062466803 + ], + [ + 77.6074041199806, + 12.993484807385901 + ], + [ + 77.607535953975002, + 12.9935376891339 + ], + [ + 77.607726873301104, + 12.9935143156503 + ], + [ + 77.608296048948802, + 12.9934871430324 + ], + [ + 77.608496885252507, + 12.993476091475999 + ], + [ + 77.608531832906706, + 12.993474263327601 + ], + [ + 77.608683915726701, + 12.993466307736099 + ], + [ + 77.608763103235106, + 12.9934607403471 + ], + [ + 77.608815100127799, + 12.9934570849084 + ], + [ + 77.608835517332693, + 12.9934459790787 + ], + [ + 77.608891247838599, + 12.993415665825299 + ], + [ + 77.608951369399506, + 12.993383441973 + ], + [ + 77.609168165525304, + 12.9931915448082 + ], + [ + 77.609485053485699, + 12.992935402119899 + ], + [ + 77.609602816971702, + 12.9928426468464 + ], + [ + 77.609777328438398, + 12.9927051944442 + ], + [ + 77.609806006281502, + 12.9926826061452 + ], + [ + 77.6102828696784, + 12.992307410015901 + ], + [ + 77.610534147728899, + 12.992149725014601 + ], + [ + 77.6106101599471, + 12.9921020245042 + ], + [ + 77.610783973833506, + 12.9919929506164 + ], + [ + 77.611099122202901, + 12.991791029351299 + ], + [ + 77.611158608273101, + 12.9917531651025 + ], + [ + 77.611451822132594, + 12.991601152272599 + ], + [ + 77.611705446240506, + 12.991518994196699 + ], + [ + 77.611772026738606, + 12.991497426697499 + ], + [ + 77.612214907887704, + 12.9913969840579 + ], + [ + 77.612307511476999, + 12.991371051356801 + ], + [ + 77.612419863321307, + 12.991339587992501 + ], + [ + 77.612592684303806, + 12.9912926785235 + ], + [ + 77.613046497017393, + 12.991081455499099 + ], + [ + 77.613289691458803, + 12.9909367198129 + ], + [ + 77.613406430351404, + 12.990867788616701 + ], + [ + 77.613859054496004, + 12.990653188556101 + ], + [ + 77.613945483151994, + 12.9906037382056 + ], + [ + 77.613353137451497, + 12.9893869036728 + ], + [ + 77.613280943535301, + 12.989238596177101 + ], + [ + 77.613280721953203, + 12.9892386381569 + ], + [ + 77.612818304622294, + 12.989336890875199 + ], + [ + 77.611953313287799, + 12.9895115879541 + ], + [ + 77.611951290249607, + 12.989510797926901 + ], + [ + 77.611891550212604, + 12.9895214943746 + ], + [ + 77.611480489788903, + 12.988687041714501 + ], + [ + 77.6114092332664, + 12.9884954731052 + ], + [ + 77.611349506673704, + 12.9883419785542 + ], + [ + 77.611266396738998, + 12.988387201413801 + ], + [ + 77.611255122827899, + 12.988415813482 + ], + [ + 77.611158257355001, + 12.988449068924499 + ], + [ + 77.611124292408505, + 12.988447392717701 + ], + [ + 77.610861391990198, + 12.9884903873608 + ], + [ + 77.6106396263108, + 12.988532085657001 + ], + [ + 77.610364752980701, + 12.9885802577859 + ], + [ + 77.610202465562594, + 12.9886040822472 + ], + [ + 77.609750430223698, + 12.988654072509901 + ], + [ + 77.609660098687996, + 12.9881881959681 + ], + [ + 77.609656608166006, + 12.988179297074799 + ], + [ + 77.609573677861405, + 12.9877378703963 + ], + [ + 77.609573551780599, + 12.9877372654654 + ], + [ + 77.6094240846395, + 12.9870679105607 + ], + [ + 77.609342482332707, + 12.9865224996596 + ], + [ + 77.609346447768701, + 12.986521656689799 + ], + [ + 77.609218801017505, + 12.986102022399001 + ], + [ + 77.6091515785144, + 12.985727680725599 + ], + [ + 77.609138171024199, + 12.985736525275099 + ], + [ + 77.6087836196007, + 12.985970406231999 + ], + [ + 77.608359884595799, + 12.9863531387329 + ], + [ + 77.6083534233763, + 12.986359793178901 + ], + [ + 77.6081943366556, + 12.986458707844401 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "34", + "group": "Austin Town", + "Corporatio": "Central", + "ac_no": "163", + "ac": "Shanthinagar", + "corporat_1": "1", + "ward_id": "28", + "ward_name": "28 - Austin Town", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಾಂತಿನಗರ", + "ward_name_": "ಆಸ್ಟಿನ್ ಟೌನ್", + "dig_ward_n": "Austin Town", + "Assembly": "163 - Shanthinagar", + "Slno": "28" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.613192000422501, + 12.9537390496447 + ], + [ + 77.613161000504405, + 12.9538140503349 + ], + [ + 77.613196000346207, + 12.953962050282099 + ], + [ + 77.613191000505097, + 12.9540020498345 + ], + [ + 77.6124560005711, + 12.954146049928401 + ], + [ + 77.612417999995898, + 12.9540070500067 + ], + [ + 77.612417999995898, + 12.9540070500067 + ], + [ + 77.611992282586201, + 12.9541258578898 + ], + [ + 77.611525000388696, + 12.9543750492843 + ], + [ + 77.611354000629504, + 12.9545550495061 + ], + [ + 77.611331000276707, + 12.9546120495427 + ], + [ + 77.611328000705001, + 12.954639049554901 + ], + [ + 77.611340000128095, + 12.954812049757299 + ], + [ + 77.6113640000559, + 12.9549380500094 + ], + [ + 77.611464931418794, + 12.955179965038401 + ], + [ + 77.611484271034897, + 12.9552263173164 + ], + [ + 77.611553000436999, + 12.9553910495415 + ], + [ + 77.611559532888606, + 12.955406670182301 + ], + [ + 77.611622000793005, + 12.955556050040199 + ], + [ + 77.611674000828103, + 12.9556800501664 + ], + [ + 77.611791469249098, + 12.955965980135 + ], + [ + 77.611803609916095, + 12.9560087708153 + ], + [ + 77.611830641798804, + 12.9561458889811 + ], + [ + 77.611840546847006, + 12.9562124171531 + ], + [ + 77.611846059967803, + 12.9562512985268 + ], + [ + 77.611867888808703, + 12.9564052497847 + ], + [ + 77.611888368831501, + 12.9565473336352 + ], + [ + 77.611902958148306, + 12.956710427879001 + ], + [ + 77.611928693791299, + 12.956998115337599 + ], + [ + 77.611941155053103, + 12.9571374175608 + ], + [ + 77.611950770320405, + 12.957215451917 + ], + [ + 77.611956980266399, + 12.957265851268 + ], + [ + 77.611961200743096, + 12.9573001047085 + ], + [ + 77.612039270722505, + 12.9579337048468 + ], + [ + 77.612075312994406, + 12.958239445822301 + ], + [ + 77.612099903839194, + 12.958448048096701 + ], + [ + 77.612153017085305, + 12.958903744182599 + ], + [ + 77.612184020228895, + 12.959188903248 + ], + [ + 77.612186131358698, + 12.9592083174186 + ], + [ + 77.612193713167002, + 12.959279565738401 + ], + [ + 77.612226343660495, + 12.959586222576901 + ], + [ + 77.612285014050897, + 12.960022664999901 + ], + [ + 77.612303145267205, + 12.960160255143901 + ], + [ + 77.6123091314671, + 12.960204723010699 + ], + [ + 77.612364930027695, + 12.9606192518178 + ], + [ + 77.612394249116903, + 12.960930707334599 + ], + [ + 77.612458621285896, + 12.9614041604967 + ], + [ + 77.612475393286402, + 12.9617741294574 + ], + [ + 77.612474341580096, + 12.961775477080501 + ], + [ + 77.612467166661204, + 12.9617817357418 + ], + [ + 77.612468792129306, + 12.961782584002499 + ], + [ + 77.612485150571899, + 12.961791123386 + ], + [ + 77.612521646436207, + 12.961765166685399 + ], + [ + 77.612710141219793, + 12.9616311046574 + ], + [ + 77.613359984519704, + 12.9615456999919 + ], + [ + 77.614159278851503, + 12.9615354047907 + ], + [ + 77.615521171333597, + 12.961509537356999 + ], + [ + 77.615547399117105, + 12.961509889926401 + ], + [ + 77.615708000422998, + 12.9615120504742 + ], + [ + 77.616031000498793, + 12.961551049994499 + ], + [ + 77.6162754830263, + 12.961618163230201 + ], + [ + 77.616286000443907, + 12.9616210505427 + ], + [ + 77.6162949045669, + 12.961623902576701 + ], + [ + 77.616310369863797, + 12.9616288559636 + ], + [ + 77.616414000237896, + 12.9616620502752 + ], + [ + 77.617047953401197, + 12.9618735427249 + ], + [ + 77.617046021256598, + 12.9617221914043 + ], + [ + 77.617190932095596, + 12.961684836610299 + ], + [ + 77.617238591660296, + 12.960945469307999 + ], + [ + 77.617322317922799, + 12.9609300121519 + ], + [ + 77.617366050730894, + 12.9601076230435 + ], + [ + 77.617342283416093, + 12.958948919972601 + ], + [ + 77.616542173590105, + 12.959118269965501 + ], + [ + 77.616544299204307, + 12.9591013094588 + ], + [ + 77.616568833534501, + 12.9587940849578 + ], + [ + 77.616581311580305, + 12.958793677672601 + ], + [ + 77.616584069866306, + 12.9587561634025 + ], + [ + 77.616585201448899, + 12.9587407776121 + ], + [ + 77.616617669916494, + 12.958299156366399 + ], + [ + 77.616641291076107, + 12.9579778811128 + ], + [ + 77.616643170266201, + 12.957952323420299 + ], + [ + 77.616661000812698, + 12.9579500500799 + ], + [ + 77.616665000233994, + 12.957903050064999 + ], + [ + 77.616685000189804, + 12.9576100503426 + ], + [ + 77.6167120004353, + 12.957316050645201 + ], + [ + 77.616752000707294, + 12.9570720502157 + ], + [ + 77.616762094637707, + 12.9570246402292 + ], + [ + 77.616763831970104, + 12.957024912766199 + ], + [ + 77.616804586336798, + 12.9569126840519 + ], + [ + 77.616964376596101, + 12.956472651535501 + ], + [ + 77.617133472782101, + 12.9561550853304 + ], + [ + 77.617154400862105, + 12.956115781252301 + ], + [ + 77.617318950004204, + 12.955769923116501 + ], + [ + 77.617318633406995, + 12.9557699488844 + ], + [ + 77.617318946256702, + 12.955769564496199 + ], + [ + 77.617361573860705, + 12.9556508159244 + ], + [ + 77.617489215837594, + 12.9549216849129 + ], + [ + 77.6175224196529, + 12.9544037399906 + ], + [ + 77.617559529707407, + 12.9538248535221 + ], + [ + 77.617564655706403, + 12.9537448971644 + ], + [ + 77.617565756105293, + 12.9537218570115 + ], + [ + 77.617567924605396, + 12.953676476277799 + ], + [ + 77.617587358131999, + 12.953635204222699 + ], + [ + 77.616902776513101, + 12.9540333514609 + ], + [ + 77.616489974745093, + 12.9541869661926 + ], + [ + 77.615648534799504, + 12.9545140197227 + ], + [ + 77.614296916180294, + 12.955015327147599 + ], + [ + 77.614245509424293, + 12.955021087709 + ], + [ + 77.614198304200002, + 12.955045161681699 + ], + [ + 77.614113720304402, + 12.9550741997971 + ], + [ + 77.614017769348607, + 12.954718539868001 + ], + [ + 77.614003146140206, + 12.954662308733001 + ], + [ + 77.613984446970207, + 12.9545677684079 + ], + [ + 77.613975218806701, + 12.954532133167399 + ], + [ + 77.613966892750497, + 12.9545028805546 + ], + [ + 77.613960075568897, + 12.954474104463101 + ], + [ + 77.6139540003999, + 12.954455050330299 + ], + [ + 77.613930288940495, + 12.9544219588721 + ], + [ + 77.613913000147207, + 12.9543020498381 + ], + [ + 77.613901635293303, + 12.9542590534772 + ], + [ + 77.613891701261693, + 12.9542214723248 + ], + [ + 77.613830000790003, + 12.953988049984 + ], + [ + 77.613812153570095, + 12.9539126080982 + ], + [ + 77.613808000346907, + 12.953895050201 + ], + [ + 77.613801999983494, + 12.953873049740601 + ], + [ + 77.613799166293205, + 12.953860394123399 + ], + [ + 77.613793728814699, + 12.953836105966399 + ], + [ + 77.613784505993195, + 12.953794911200101 + ], + [ + 77.613772000186898, + 12.9537390497876 + ], + [ + 77.613767000780399, + 12.953719050298201 + ], + [ + 77.613760000750702, + 12.9536900502093 + ], + [ + 77.613737000393698, + 12.9535890497929 + ], + [ + 77.613724000321398, + 12.9535940497169 + ], + [ + 77.613719211235406, + 12.953595355346801 + ], + [ + 77.613698713903602, + 12.9536009463692 + ], + [ + 77.613482000097704, + 12.953660049587899 + ], + [ + 77.613192000422501, + 12.9537390496447 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "14", + "group": "New Thippasandra", + "Corporatio": "Central", + "ac_no": "161", + "ac": "C.V. Raman Nagar", + "corporat_1": "1", + "ward_id": "36", + "ward_name": "36 - New Thippasandra", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಸಿ.ವಿ. ರಾಮನ್ ನಗರ", + "ward_name_": "ನ್ಯೂ ತಿಪ್ಪಸಂದ್ರ", + "dig_ward_n": "New Thippasandra", + "Assembly": "161 - C.V. Raman Nagar", + "Slno": "36" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.652289188295896, + 12.968019725698801 + ], + [ + 77.652257249574106, + 12.968026191478501 + ], + [ + 77.651850178149004, + 12.9680958125243 + ], + [ + 77.651805341750006, + 12.9681035834678 + ], + [ + 77.651548450899696, + 12.968148106024101 + ], + [ + 77.651511680820903, + 12.9681552562796 + ], + [ + 77.651412272103997, + 12.9681732081691 + ], + [ + 77.651188749316603, + 12.968213880605999 + ], + [ + 77.651089436236205, + 12.968240865382599 + ], + [ + 77.650792096403293, + 12.9683240718945 + ], + [ + 77.650615297036097, + 12.968373301758101 + ], + [ + 77.650518286411, + 12.968400262878699 + ], + [ + 77.650428087938295, + 12.968418120580999 + ], + [ + 77.650747862286195, + 12.969449971215701 + ], + [ + 77.650905959426794, + 12.970010375777999 + ], + [ + 77.650801001957305, + 12.971528517985501 + ], + [ + 77.650755289805204, + 12.9718759938179 + ], + [ + 77.650709307588201, + 12.9724817208962 + ], + [ + 77.650665104391706, + 12.9724764791194 + ], + [ + 77.6505734540699, + 12.972466120750299 + ], + [ + 77.650489560137203, + 12.972453086029301 + ], + [ + 77.650375654136695, + 12.9724353884476 + ], + [ + 77.650205718881097, + 12.972409649686 + ], + [ + 77.650131153608001, + 12.972398356387499 + ], + [ + 77.650115959602005, + 12.972395976280399 + ], + [ + 77.649901056685493, + 12.972362306570499 + ], + [ + 77.649836474585896, + 12.9723528013707 + ], + [ + 77.649621305899302, + 12.972332388785301 + ], + [ + 77.649580771796593, + 12.972345243351301 + ], + [ + 77.649530704354305, + 12.9723611211431 + ], + [ + 77.649455683505707, + 12.9723849121531 + ], + [ + 77.649431493618494, + 12.9723840293381 + ], + [ + 77.649431532881096, + 12.9723846053064 + ], + [ + 77.6493983016573, + 12.972384146143099 + ], + [ + 77.649349248061895, + 12.9723834687323 + ], + [ + 77.649322058714205, + 12.972383093457101 + ], + [ + 77.649191515429706, + 12.9723805133561 + ], + [ + 77.649134099263506, + 12.9723793781466 + ], + [ + 77.649086641138894, + 12.9723794857487 + ], + [ + 77.649086599203102, + 12.9723794401025 + ], + [ + 77.649086586561197, + 12.972379638075701 + ], + [ + 77.649047031969303, + 12.9724095103563 + ], + [ + 77.649002464512293, + 12.972441773191999 + ], + [ + 77.648875507708993, + 12.972468758115999 + ], + [ + 77.648793468135906, + 12.9724965089164 + ], + [ + 77.648736297661898, + 12.9725166658944 + ], + [ + 77.648678035278294, + 12.972551515003801 + ], + [ + 77.648583859003395, + 12.972611198238001 + ], + [ + 77.648490968881504, + 12.972674538603499 + ], + [ + 77.648340998800194, + 12.9727665988599 + ], + [ + 77.648218249996603, + 12.9728375837306 + ], + [ + 77.648091538911103, + 12.9728878107802 + ], + [ + 77.648014617960996, + 12.9729277434429 + ], + [ + 77.647931486157503, + 12.972970186165499 + ], + [ + 77.647698996574903, + 12.9730447350498 + ], + [ + 77.647603132220993, + 12.973062838930501 + ], + [ + 77.6475371394137, + 12.9730745215683 + ], + [ + 77.647499835562598, + 12.9730859121214 + ], + [ + 77.6473927579936, + 12.9731053535064 + ], + [ + 77.646961739383997, + 12.973156741648801 + ], + [ + 77.646956884239998, + 12.9732056912147 + ], + [ + 77.646948733822398, + 12.9732878670508 + ], + [ + 77.6469350647711, + 12.973519502476201 + ], + [ + 77.646905818391502, + 12.9740200580099 + ], + [ + 77.646904588167601, + 12.974040381678099 + ], + [ + 77.646899938055398, + 12.9741172333827 + ], + [ + 77.646876056175699, + 12.974526265048301 + ], + [ + 77.646848250162506, + 12.974999703921601 + ], + [ + 77.646817456273098, + 12.9755172139699 + ], + [ + 77.646813215462402, + 12.975598703179299 + ], + [ + 77.646806930702894, + 12.975719456897499 + ], + [ + 77.646801626094302, + 12.9758166264116 + ], + [ + 77.646742999970996, + 12.976892867427001 + ], + [ + 77.646718228854596, + 12.977347609362599 + ], + [ + 77.646716272762006, + 12.977380377530601 + ], + [ + 77.646710031999703, + 12.9774978830789 + ], + [ + 77.646658934687807, + 12.978327272882 + ], + [ + 77.646631413834399, + 12.978555661598 + ], + [ + 77.646629153699806, + 12.9785732828426 + ], + [ + 77.646628222719698, + 12.978580537589799 + ], + [ + 77.6475142698404, + 12.9786845656349 + ], + [ + 77.647612644915, + 12.977347151155 + ], + [ + 77.650049232390998, + 12.976630454725999 + ], + [ + 77.650273387529495, + 12.9765957062432 + ], + [ + 77.650482859167994, + 12.9765632338672 + ], + [ + 77.650810779143399, + 12.9765123990763 + ], + [ + 77.651567604082501, + 12.9763950715395 + ], + [ + 77.651864505770803, + 12.9763547710581 + ], + [ + 77.652058621217705, + 12.976328421948001 + ], + [ + 77.652350256490095, + 12.976288835944301 + ], + [ + 77.652716348004603, + 12.9762391425317 + ], + [ + 77.653090347549806, + 12.9757259543114 + ], + [ + 77.653154457175006, + 12.975654342100301 + ], + [ + 77.653372577862697, + 12.975401316372499 + ], + [ + 77.653503095498607, + 12.9753571649319 + ], + [ + 77.654083618230104, + 12.9756338483284 + ], + [ + 77.654209119510199, + 12.9757047485879 + ], + [ + 77.654255142541203, + 12.9757135426423 + ], + [ + 77.654278739565299, + 12.975688400567799 + ], + [ + 77.654486275770495, + 12.975467267271799 + ], + [ + 77.654461145720703, + 12.975454203265601 + ], + [ + 77.655100001283898, + 12.9748140231015 + ], + [ + 77.655767448642393, + 12.9739766000319 + ], + [ + 77.656246152163206, + 12.9743003680522 + ], + [ + 77.6568571361842, + 12.9747207979817 + ], + [ + 77.656160747223595, + 12.9754870869097 + ], + [ + 77.655766422026005, + 12.975915585485501 + ], + [ + 77.655594523473496, + 12.9761023808123 + ], + [ + 77.655431576367107, + 12.976202753566101 + ], + [ + 77.654767951009703, + 12.9768906251809 + ], + [ + 77.654750608171398, + 12.976908946053999 + ], + [ + 77.6547532882403, + 12.9769100217323 + ], + [ + 77.654703137914396, + 12.976958036130799 + ], + [ + 77.654680878114206, + 12.9769834988578 + ], + [ + 77.654592681650698, + 12.977084386261399 + ], + [ + 77.654580098138993, + 12.9770985074317 + ], + [ + 77.654352012652097, + 12.977354475244599 + ], + [ + 77.654227750276107, + 12.977472055152599 + ], + [ + 77.6527176294654, + 12.9790492144793 + ], + [ + 77.652963253485296, + 12.979169962606001 + ], + [ + 77.653059039762297, + 12.979217051075199 + ], + [ + 77.653120446742193, + 12.9792472382524 + ], + [ + 77.653074367953593, + 12.979299653815801 + ], + [ + 77.653178580315895, + 12.9793384074103 + ], + [ + 77.653386840554006, + 12.979447783143099 + ], + [ + 77.653664797027304, + 12.979544319165701 + ], + [ + 77.654076142943097, + 12.979732090898899 + ], + [ + 77.654411115961096, + 12.9798845060063 + ], + [ + 77.655059091228495, + 12.9801805251763 + ], + [ + 77.655075282231707, + 12.980187135246601 + ], + [ + 77.655223733152795, + 12.9802408658818 + ], + [ + 77.655240313811603, + 12.9802468675889 + ], + [ + 77.655427262801595, + 12.980314531740699 + ], + [ + 77.655552089558597, + 12.9803584261495 + ], + [ + 77.655884353401902, + 12.980472472467399 + ], + [ + 77.655929436116395, + 12.980488140091101 + ], + [ + 77.656219041262602, + 12.9805887854401 + ], + [ + 77.656512505889907, + 12.980690772263801 + ], + [ + 77.656733267963503, + 12.980768691972299 + ], + [ + 77.656850587213299, + 12.980810403927 + ], + [ + 77.656891052893997, + 12.980825799659 + ], + [ + 77.657116444601797, + 12.9809059301536 + ], + [ + 77.6577373189768, + 12.9811434980775 + ], + [ + 77.6583361742817, + 12.9813677386287 + ], + [ + 77.658364011139, + 12.9813866509883 + ], + [ + 77.658415295575594, + 12.981444846915799 + ], + [ + 77.658444824225001, + 12.981514557766401 + ], + [ + 77.658490547163197, + 12.9818076925004 + ], + [ + 77.658520797291501, + 12.9819993538761 + ], + [ + 77.658567614311394, + 12.982449441723 + ], + [ + 77.658569545544907, + 12.982468619046401 + ], + [ + 77.658597110516197, + 12.9827325792061 + ], + [ + 77.658597746256206, + 12.982738218902099 + ], + [ + 77.658611876684603, + 12.982875841615099 + ], + [ + 77.658621520912803, + 12.982970599103201 + ], + [ + 77.658715265617303, + 12.983115998602299 + ], + [ + 77.658770996463801, + 12.983194949968 + ], + [ + 77.659680379149293, + 12.9838416999154 + ], + [ + 77.659797820347706, + 12.983894701313501 + ], + [ + 77.659836583632, + 12.983912372360599 + ], + [ + 77.660159403257694, + 12.9840581272967 + ], + [ + 77.660649229799105, + 12.9840994111143 + ], + [ + 77.6609146333316, + 12.9840978227008 + ], + [ + 77.660947004028898, + 12.984109912833199 + ], + [ + 77.661182402921597, + 12.983777764746099 + ], + [ + 77.661383213534904, + 12.9834956572465 + ], + [ + 77.661421219268703, + 12.98344219384 + ], + [ + 77.661673629097606, + 12.983301841659699 + ], + [ + 77.661759237695406, + 12.9832851554733 + ], + [ + 77.662277985884003, + 12.983177080933 + ], + [ + 77.662531599467698, + 12.983203842745599 + ], + [ + 77.662899342782296, + 12.983242985648801 + ], + [ + 77.6629636406945, + 12.9832795915631 + ], + [ + 77.662987388101797, + 12.983292899045701 + ], + [ + 77.663329171280793, + 12.983489271131001 + ], + [ + 77.663601862767607, + 12.983739424961 + ], + [ + 77.664004312188894, + 12.9836856130645 + ], + [ + 77.664200012287395, + 12.9834645350724 + ], + [ + 77.664233125074006, + 12.983438223174399 + ], + [ + 77.664408930813806, + 12.983295266278599 + ], + [ + 77.664395861035402, + 12.9832253750599 + ], + [ + 77.664363509432604, + 12.9830523673574 + ], + [ + 77.6643497070324, + 12.9829785584205 + ], + [ + 77.664284010209897, + 12.982697399718299 + ], + [ + 77.664736208881095, + 12.982618957091599 + ], + [ + 77.665216093185194, + 12.9826547177008 + ], + [ + 77.665355098133801, + 12.9826616391091 + ], + [ + 77.665474492425801, + 12.982604537491101 + ], + [ + 77.665571968925093, + 12.9824609182703 + ], + [ + 77.665689632864996, + 12.9823144151294 + ], + [ + 77.665727700589997, + 12.982177717323401 + ], + [ + 77.666260135575399, + 12.982197144829399 + ], + [ + 77.6662661554209, + 12.9822576486703 + ], + [ + 77.666266372235896, + 12.982277972651 + ], + [ + 77.666278644816103, + 12.9822780201906 + ], + [ + 77.666305524071007, + 12.9825228522238 + ], + [ + 77.666404814205606, + 12.982609200616499 + ], + [ + 77.666453004194906, + 12.9829508940482 + ], + [ + 77.6672544479095, + 12.982938495438299 + ], + [ + 77.667652428882903, + 12.9829258061899 + ], + [ + 77.667669732403397, + 12.9831034556679 + ], + [ + 77.668516608013704, + 12.983132772087799 + ], + [ + 77.668524936529593, + 12.983026056377399 + ], + [ + 77.668549552137193, + 12.9826892925633 + ], + [ + 77.668548751248906, + 12.9824055470045 + ], + [ + 77.668830221850399, + 12.9823940113241 + ], + [ + 77.669070315354702, + 12.9822853258951 + ], + [ + 77.669123180930299, + 12.9820600659249 + ], + [ + 77.669132255395795, + 12.9815619817371 + ], + [ + 77.669143274099497, + 12.981261045261601 + ], + [ + 77.669121366743894, + 12.9811686750842 + ], + [ + 77.668991721375804, + 12.9807547911412 + ], + [ + 77.669045939073598, + 12.980652123585701 + ], + [ + 77.669292802633905, + 12.9806105951363 + ], + [ + 77.669456609295395, + 12.9805759880952 + ], + [ + 77.669800372570904, + 12.9804860097882 + ], + [ + 77.670008014817796, + 12.980386802936801 + ], + [ + 77.670074921764098, + 12.980033811117 + ], + [ + 77.669962496415096, + 12.9799855279109 + ], + [ + 77.669536719323702, + 12.979827366874 + ], + [ + 77.669066617098096, + 12.979626636468 + ], + [ + 77.668688175964604, + 12.9794604082067 + ], + [ + 77.668395047206204, + 12.9792749994284 + ], + [ + 77.668075123291899, + 12.978986677677099 + ], + [ + 77.667790440639905, + 12.978803162313801 + ], + [ + 77.667446810310807, + 12.9785772285787 + ], + [ + 77.667123268309496, + 12.978356446197701 + ], + [ + 77.666788950189996, + 12.9781393981485 + ], + [ + 77.666632739032906, + 12.978039112174599 + ], + [ + 77.666513686151006, + 12.977988338794599 + ], + [ + 77.666442858548706, + 12.977988024643 + ], + [ + 77.666299968412702, + 12.9778152964182 + ], + [ + 77.666145361761394, + 12.9776017620852 + ], + [ + 77.666131966384299, + 12.977488364464 + ], + [ + 77.666115385501797, + 12.9770762222357 + ], + [ + 77.666018519259794, + 12.976563319175201 + ], + [ + 77.666075048480707, + 12.976150426288299 + ], + [ + 77.666063286112703, + 12.9756187236567 + ], + [ + 77.666066894625601, + 12.9753856407126 + ], + [ + 77.666029325426607, + 12.975169065695701 + ], + [ + 77.6658191846861, + 12.975118634971301 + ], + [ + 77.665604170670704, + 12.975068254923199 + ], + [ + 77.665345697781106, + 12.9750565632843 + ], + [ + 77.665199427346195, + 12.975053281879701 + ], + [ + 77.665108106216493, + 12.9750604711642 + ], + [ + 77.664655197950495, + 12.9750871304871 + ], + [ + 77.664303422272894, + 12.975088288484001 + ], + [ + 77.664164808693101, + 12.975068465156999 + ], + [ + 77.664025060286093, + 12.974991020315001 + ], + [ + 77.663590687148798, + 12.9746949812028 + ], + [ + 77.662890039962093, + 12.974128504143801 + ], + [ + 77.662344009627304, + 12.9735573538825 + ], + [ + 77.662255973520899, + 12.973529572545999 + ], + [ + 77.661823505023605, + 12.973199368499699 + ], + [ + 77.661537764904395, + 12.972915465698399 + ], + [ + 77.661477141591902, + 12.9727153066731 + ], + [ + 77.661503028278602, + 12.9723995325849 + ], + [ + 77.661566334341799, + 12.971978943606301 + ], + [ + 77.661573740722005, + 12.9717010752079 + ], + [ + 77.661518188256807, + 12.9716203385504 + ], + [ + 77.661023889638599, + 12.9715892607879 + ], + [ + 77.660802752997, + 12.971583618571 + ], + [ + 77.660156612645906, + 12.9715665141429 + ], + [ + 77.659596065646994, + 12.971585797746901 + ], + [ + 77.659288147901506, + 12.971540388991301 + ], + [ + 77.659041969673694, + 12.971507899531099 + ], + [ + 77.658637233365894, + 12.9714533166288 + ], + [ + 77.658734710133601, + 12.97125357384 + ], + [ + 77.658361286861904, + 12.9710575152068 + ], + [ + 77.658103739653896, + 12.9709844882635 + ], + [ + 77.657752647818796, + 12.9707769079514 + ], + [ + 77.657702445541901, + 12.9707119249193 + ], + [ + 77.657688725362704, + 12.970558488264899 + ], + [ + 77.657657663448006, + 12.9703442497526 + ], + [ + 77.657629743785407, + 12.970154822434001 + ], + [ + 77.657629120150602, + 12.970150311839401 + ], + [ + 77.657585375788699, + 12.969885842308599 + ], + [ + 77.657403906404895, + 12.9699490005536 + ], + [ + 77.657007045278206, + 12.9700148008023 + ], + [ + 77.656667918780599, + 12.9700732886194 + ], + [ + 77.656518607726397, + 12.970074344214799 + ], + [ + 77.656424161940905, + 12.9701083409 + ], + [ + 77.656204969927202, + 12.9703772831605 + ], + [ + 77.655876732280703, + 12.9706602492597 + ], + [ + 77.655789169784697, + 12.9701343232955 + ], + [ + 77.655776528422905, + 12.9700011004286 + ], + [ + 77.655655173119598, + 12.9700199248181 + ], + [ + 77.655282966666903, + 12.970084675789799 + ], + [ + 77.655057186585495, + 12.9701292458453 + ], + [ + 77.654354577152205, + 12.970250510369199 + ], + [ + 77.653890122819504, + 12.970330489632101 + ], + [ + 77.653099354242102, + 12.970444070087501 + ], + [ + 77.652749496651893, + 12.9679405021287 + ], + [ + 77.652706958168494, + 12.967946582116101 + ], + [ + 77.652289188295896, + 12.968019725698801 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "15", + "group": "Old Baiyappanahalli", + "Corporatio": "Central", + "ac_no": "161", + "ac": "C.V. Raman Nagar", + "corporat_1": "1", + "ward_id": "7", + "ward_name": "7 - Old Baiyappanahalli", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಸಿ.ವಿ. ರಾಮನ್ ನಗರ", + "ward_name_": "ಹಳೆ ಬೈಯಪ್ಪನಹಳ್ಳಿ", + "dig_ward_n": "Old Baiyappanahalli", + "Assembly": "161 - C.V. Raman Nagar", + "Slno": "7" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.632579151063396, + 12.9936339587184 + ], + [ + 77.632957742948506, + 12.9935533306022 + ], + [ + 77.634115378281095, + 12.9933100922 + ], + [ + 77.634468656043495, + 12.993286181781301 + ], + [ + 77.634542722334004, + 12.993266232967001 + ], + [ + 77.634818305401694, + 12.9931911644008 + ], + [ + 77.636326456388304, + 12.9928811217227 + ], + [ + 77.637340031487199, + 12.992682243313199 + ], + [ + 77.637369609668298, + 12.9928660126849 + ], + [ + 77.637405022878994, + 12.993166035321 + ], + [ + 77.637413893863894, + 12.9932427346815 + ], + [ + 77.637439802339003, + 12.9934062137647 + ], + [ + 77.637471390880094, + 12.9936712673399 + ], + [ + 77.637889605845601, + 12.9936354009961 + ], + [ + 77.637924243729799, + 12.993722154535201 + ], + [ + 77.637954095359802, + 12.9937969242365 + ], + [ + 77.637962350786296, + 12.993817601521 + ], + [ + 77.637984095070806, + 12.9939060272351 + ], + [ + 77.638056806567107, + 12.9942017173795 + ], + [ + 77.637901132247094, + 12.9942360482349 + ], + [ + 77.637919523980202, + 12.994777904372301 + ], + [ + 77.637939056006303, + 12.9951006731999 + ], + [ + 77.638195319402499, + 12.995073533954001 + ], + [ + 77.638705719255, + 12.995019481419 + ], + [ + 77.638878411990902, + 12.995015467850299 + ], + [ + 77.638993076700899, + 12.9949952370189 + ], + [ + 77.639027837135103, + 12.9949891055503 + ], + [ + 77.639034935209395, + 12.994988129099401 + ], + [ + 77.639196295931299, + 12.994965937470001 + ], + [ + 77.639372299656003, + 12.9949483388658 + ], + [ + 77.639407038235007, + 12.994947985743 + ], + [ + 77.639471899485002, + 12.9949473264064 + ], + [ + 77.639541526889701, + 12.9949432299343 + ], + [ + 77.639722208651094, + 12.994925892507901 + ], + [ + 77.639883769810993, + 12.9949103899413 + ], + [ + 77.6398862954252, + 12.9949105205522 + ], + [ + 77.640036622956202, + 12.9949182971799 + ], + [ + 77.640047957807198, + 12.9949188838757 + ], + [ + 77.640315179887907, + 12.994886804297501 + ], + [ + 77.640448769724301, + 12.994870767335501 + ], + [ + 77.640659469882607, + 12.995683945917801 + ], + [ + 77.641177536516693, + 12.9953986215063 + ], + [ + 77.6412315468597, + 12.9953879088067 + ], + [ + 77.641324341085706, + 12.995777686486701 + ], + [ + 77.642369384656305, + 12.995777216206299 + ], + [ + 77.642480140509903, + 12.9957853859023 + ], + [ + 77.642718617465604, + 12.995802977130699 + ], + [ + 77.642719159592403, + 12.9958030176861 + ], + [ + 77.642706661033898, + 12.9958189544343 + ], + [ + 77.642682921991295, + 12.995860977490601 + ], + [ + 77.642932552750807, + 12.995693125752901 + ], + [ + 77.643155435184696, + 12.995612788518001 + ], + [ + 77.643249192655901, + 12.9955789944913 + ], + [ + 77.643497711255904, + 12.995435381062901 + ], + [ + 77.643512742931094, + 12.995423335645899 + ], + [ + 77.643579366089895, + 12.9952696807831 + ], + [ + 77.643656840093101, + 12.995126418898 + ], + [ + 77.643689042918794, + 12.9950453452088 + ], + [ + 77.643724059418901, + 12.9950000211784 + ], + [ + 77.643868348361295, + 12.9948379263967 + ], + [ + 77.643976542812098, + 12.994696995397099 + ], + [ + 77.644023043641994, + 12.9945997161566 + ], + [ + 77.644138123535896, + 12.994392359251 + ], + [ + 77.644223315586302, + 12.9941870854512 + ], + [ + 77.644161486961707, + 12.993319194758 + ], + [ + 77.644103093260796, + 12.9930409659473 + ], + [ + 77.643732121513295, + 12.9920207936417 + ], + [ + 77.643564955231895, + 12.991574253575299 + ], + [ + 77.644017401334594, + 12.9914929982475 + ], + [ + 77.646560022524795, + 12.9910094005426 + ], + [ + 77.646704012200303, + 12.990940645202899 + ], + [ + 77.646778456503796, + 12.9909019605805 + ], + [ + 77.647004108467002, + 12.9908030935868 + ], + [ + 77.647214561544203, + 12.9907395671435 + ], + [ + 77.6471006365785, + 12.989659856162399 + ], + [ + 77.647134413327095, + 12.9895631058146 + ], + [ + 77.647145863072396, + 12.9892831595422 + ], + [ + 77.647160104044104, + 12.9892169172576 + ], + [ + 77.6471295026207, + 12.988651574686299 + ], + [ + 77.647134217018007, + 12.9885911172923 + ], + [ + 77.646590308263498, + 12.988637111785501 + ], + [ + 77.6463618564553, + 12.988642426767001 + ], + [ + 77.646020782235794, + 12.9886578531972 + ], + [ + 77.645819982567502, + 12.988635676445901 + ], + [ + 77.645604154868707, + 12.9885417885345 + ], + [ + 77.645442140972804, + 12.9884696551392 + ], + [ + 77.645715128212203, + 12.987507405354901 + ], + [ + 77.644788333335896, + 12.9871669440427 + ], + [ + 77.644760349699894, + 12.9870434961613 + ], + [ + 77.642923714998602, + 12.987464236851499 + ], + [ + 77.642947015044996, + 12.987593073377401 + ], + [ + 77.643181781520795, + 12.9893941332954 + ], + [ + 77.6433981618964, + 12.990854548501099 + ], + [ + 77.641813421335797, + 12.991015072136699 + ], + [ + 77.641365836936799, + 12.9909147117174 + ], + [ + 77.640062305053107, + 12.990600941210801 + ], + [ + 77.6372783413657, + 12.9899137376665 + ], + [ + 77.636814748826097, + 12.989758963387199 + ], + [ + 77.636519352855103, + 12.9896690925546 + ], + [ + 77.636064902209796, + 12.989566142659299 + ], + [ + 77.635652619112193, + 12.9894970364786 + ], + [ + 77.634539021283899, + 12.9894808266453 + ], + [ + 77.633962593563794, + 12.989413787194099 + ], + [ + 77.632780983592994, + 12.989183206091401 + ], + [ + 77.632218042390093, + 12.989067849287499 + ], + [ + 77.630974496044402, + 12.9887586930531 + ], + [ + 77.630826839335398, + 12.989450833876299 + ], + [ + 77.630783003749897, + 12.9897000045727 + ], + [ + 77.630944503275302, + 12.989778447199299 + ], + [ + 77.631106002800806, + 12.990680537405501 + ], + [ + 77.631783201076303, + 12.993814471306001 + ], + [ + 77.631792339292204, + 12.993812838377799 + ], + [ + 77.631842733674603, + 12.993803828352799 + ], + [ + 77.631874970252795, + 12.9937980640077 + ], + [ + 77.631912896525094, + 12.9937909040425 + ], + [ + 77.632579151063396, + 12.9936339587184 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "16", + "group": "Azad Nagar", + "Corporatio": "Central", + "ac_no": "168", + "ac": "Chamrajapet", + "corporat_1": "1", + "ward_id": "54", + "ward_name": "54 - Azad Nagar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಾಮರಾಜಪೇಟೆ", + "ward_name_": "ಆಜಾದ್ ನಗರ", + "dig_ward_n": "Azad Nagar", + "Assembly": "168 - Chamrajapet", + "Slno": "54" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.555726275621097, + 12.9516241427193 + ], + [ + 77.555792298172506, + 12.951595168702401 + ], + [ + 77.555826135420602, + 12.9515824141005 + ], + [ + 77.556078619491998, + 12.9515008837429 + ], + [ + 77.556137631949696, + 12.9514673879608 + ], + [ + 77.556187948439799, + 12.9514388272817 + ], + [ + 77.556308168775601, + 12.951372146594601 + ], + [ + 77.556436793897802, + 12.951339263127601 + ], + [ + 77.556568355799399, + 12.951311997403399 + ], + [ + 77.556652758781695, + 12.951289711800699 + ], + [ + 77.556718670601398, + 12.9512608317253 + ], + [ + 77.556758784296903, + 12.9512398490373 + ], + [ + 77.556802278957804, + 12.951217096707399 + ], + [ + 77.556912724804107, + 12.9512081081965 + ], + [ + 77.556917925075396, + 12.9512080571492 + ], + [ + 77.556993317024094, + 12.951207316167199 + ], + [ + 77.557044585223494, + 12.9512102008587 + ], + [ + 77.557139856471295, + 12.951181032472601 + ], + [ + 77.557227029335706, + 12.951105325949101 + ], + [ + 77.557277955774595, + 12.9510610976333 + ], + [ + 77.557372443234598, + 12.9509551428131 + ], + [ + 77.557430467925897, + 12.9508868136689 + ], + [ + 77.5574962661005, + 12.9508466403994 + ], + [ + 77.557515410843294, + 12.9508402908378 + ], + [ + 77.557587496013795, + 12.950816383139999 + ], + [ + 77.557613078804906, + 12.9507845108746 + ], + [ + 77.557619541658497, + 12.9507338925425 + ], + [ + 77.557626938505393, + 12.9506759596675 + ], + [ + 77.557641260151797, + 12.9506125768934 + ], + [ + 77.557644564704802, + 12.9505500756534 + ], + [ + 77.557647533495995, + 12.950493936257001 + ], + [ + 77.557665147716406, + 12.9504147106167 + ], + [ + 77.557745071136395, + 12.950348425070199 + ], + [ + 77.557844555960699, + 12.9503372843088 + ], + [ + 77.5579086618568, + 12.950327619335701 + ], + [ + 77.557972742904397, + 12.950317957302 + ], + [ + 77.558064237657803, + 12.950313669960099 + ], + [ + 77.558078939589194, + 12.950287551137 + ], + [ + 77.558072847318002, + 12.9501419281829 + ], + [ + 77.557903468976406, + 12.950138706412 + ], + [ + 77.557837910560593, + 12.950137459201599 + ], + [ + 77.557828700065798, + 12.950137549639701 + ], + [ + 77.557764438110098, + 12.950130838207199 + ], + [ + 77.557745053207597, + 12.9501288141635 + ], + [ + 77.557673897455203, + 12.9501213834825 + ], + [ + 77.557606422829807, + 12.9501143376517 + ], + [ + 77.557502498453502, + 12.9501034847111 + ], + [ + 77.557455376351399, + 12.950098684687701 + ], + [ + 77.557391270075698, + 12.950092154129701 + ], + [ + 77.557173890519493, + 12.950059279057101 + ], + [ + 77.557153924778007, + 12.950056301195 + ], + [ + 77.5571404233132, + 12.950054287109699 + ], + [ + 77.556996300387596, + 12.9500327891814 + ], + [ + 77.556969195195904, + 12.9500253288492 + ], + [ + 77.556943238206898, + 12.9500181842961 + ], + [ + 77.556854057017304, + 12.9499936371834 + ], + [ + 77.556766521021999, + 12.9499695436888 + ], + [ + 77.556764241440206, + 12.949971824712399 + ], + [ + 77.556755710290105, + 12.9499820723683 + ], + [ + 77.5567511330608, + 12.9499861277516 + ], + [ + 77.556720906337503, + 12.9500129057335 + ], + [ + 77.556687909991197, + 12.9500516266296 + ], + [ + 77.556563891170001, + 12.950140931148701 + ], + [ + 77.556527192542205, + 12.950160223318401 + ], + [ + 77.556353731089303, + 12.9502514088321 + ], + [ + 77.556168968544696, + 12.950311946840801 + ], + [ + 77.556060277289703, + 12.950326937510599 + ], + [ + 77.556046405037705, + 12.9503288507362 + ], + [ + 77.556036740192297, + 12.9503301851181 + ], + [ + 77.555819982304399, + 12.9503582855004 + ], + [ + 77.555779260909702, + 12.9503661051547 + ], + [ + 77.555734842834994, + 12.950374635053301 + ], + [ + 77.555733219279404, + 12.9503749473173 + ], + [ + 77.555697021962004, + 12.9503820784059 + ], + [ + 77.5556432107158, + 12.950391125072599 + ], + [ + 77.555632019580003, + 12.9503930065527 + ], + [ + 77.555575754009297, + 12.950402466676501 + ], + [ + 77.555565844151701, + 12.9504058805016 + ], + [ + 77.555556687897905, + 12.950409033964201 + ], + [ + 77.555554995254298, + 12.9504096170397 + ], + [ + 77.555554718045499, + 12.9504097128157 + ], + [ + 77.555518384024296, + 12.9504222280412 + ], + [ + 77.555511430665305, + 12.9504242504415 + ], + [ + 77.555482221235806, + 12.9504327467412 + ], + [ + 77.555477281543403, + 12.950434051010999 + ], + [ + 77.555391137711595, + 12.950456789649399 + ], + [ + 77.555598285648003, + 12.951735222290401 + ], + [ + 77.554926595743197, + 12.9518314522556 + ], + [ + 77.554270239624501, + 12.9517862929789 + ], + [ + 77.554294657490701, + 12.9518798147505 + ], + [ + 77.554296569764503, + 12.9518873109895 + ], + [ + 77.554401037996897, + 12.951896974614201 + ], + [ + 77.554333071533506, + 12.9520233922362 + ], + [ + 77.554140658545293, + 12.952273512139801 + ], + [ + 77.553975541827796, + 12.952536884799001 + ], + [ + 77.553827740877793, + 12.9525294025565 + ], + [ + 77.553762832905306, + 12.9527676250108 + ], + [ + 77.553724771680706, + 12.953089106381499 + ], + [ + 77.553698944429598, + 12.953143479553599 + ], + [ + 77.553724092021099, + 12.954172491809899 + ], + [ + 77.554269862722506, + 12.9541317119319 + ], + [ + 77.554243637367094, + 12.9546166190965 + ], + [ + 77.554216169216403, + 12.9549452704992 + ], + [ + 77.554290675741598, + 12.954967150614801 + ], + [ + 77.554811556757201, + 12.9550679181283 + ], + [ + 77.555104490893498, + 12.955041103212601 + ], + [ + 77.555107401711496, + 12.9550532894407 + ], + [ + 77.555265380488905, + 12.9556531592265 + ], + [ + 77.555338295527704, + 12.955964767450601 + ], + [ + 77.555313487768501, + 12.9560238982738 + ], + [ + 77.555300334468797, + 12.956019295027 + ], + [ + 77.555297704947705, + 12.956018431826401 + ], + [ + 77.555261983444396, + 12.956010127589201 + ], + [ + 77.555259300599701, + 12.9560183040346 + ], + [ + 77.555244386148601, + 12.956064868422301 + ], + [ + 77.555218242907998, + 12.9561445436753 + ], + [ + 77.555171485557494, + 12.9562870409761 + ], + [ + 77.555164649343695, + 12.956307875909999 + ], + [ + 77.555153280503106, + 12.9563415754294 + ], + [ + 77.555118295074394, + 12.9564452827717 + ], + [ + 77.555108649214006, + 12.956473875285999 + ], + [ + 77.555106198771298, + 12.956481085458201 + ], + [ + 77.555099091597398, + 12.956501998038201 + ], + [ + 77.555074693554104, + 12.9565737834088 + ], + [ + 77.555059762796603, + 12.956617711627599 + ], + [ + 77.5550566487738, + 12.956626875269199 + ], + [ + 77.555047002678805, + 12.9566549040262 + ], + [ + 77.555045157029298, + 12.9566602679142 + ], + [ + 77.555029998086596, + 12.9567043131115 + ], + [ + 77.555003648887293, + 12.9567808752522 + ], + [ + 77.555000751916197, + 12.956788921893301 + ], + [ + 77.554997169674607, + 12.9567988725265 + ], + [ + 77.554994648947996, + 12.9568058755924 + ], + [ + 77.554953847010694, + 12.956920584532501 + ], + [ + 77.554951607409507, + 12.9569268819473 + ], + [ + 77.554930520796702, + 12.956970754024701 + ], + [ + 77.554889551711895, + 12.957092199000099 + ], + [ + 77.554884079638697, + 12.957108421029099 + ], + [ + 77.554857172502096, + 12.9571881787632 + ], + [ + 77.554853456498293, + 12.9571991949854 + ], + [ + 77.554847181465902, + 12.957217794670999 + ], + [ + 77.554835656119494, + 12.957251961007501 + ], + [ + 77.554833501262607, + 12.957258348840099 + ], + [ + 77.554826392029398, + 12.957279424062699 + ], + [ + 77.554826270421302, + 12.9572797839299 + ], + [ + 77.5548225624472, + 12.957290774776499 + ], + [ + 77.554819168307006, + 12.9573008346892 + ], + [ + 77.554817954086403, + 12.95730443515 + ], + [ + 77.554710442607799, + 12.957623132461601 + ], + [ + 77.5546437714614, + 12.9578207664181 + ], + [ + 77.554637312219896, + 12.957839912697899 + ], + [ + 77.554636264303298, + 12.9578430200441 + ], + [ + 77.554608790196298, + 12.957924461066799 + ], + [ + 77.554597836130597, + 12.957956931421799 + ], + [ + 77.554580475601298, + 12.958008394853699 + ], + [ + 77.5544882356687, + 12.958184064118701 + ], + [ + 77.554577511789802, + 12.9582121151509 + ], + [ + 77.554615080672903, + 12.9582239188427 + ], + [ + 77.554674782613603, + 12.958242677018699 + ], + [ + 77.554892437898602, + 12.9583110644007 + ], + [ + 77.555116942759796, + 12.9585079793129 + ], + [ + 77.555204398760793, + 12.958584687561 + ], + [ + 77.555283232680694, + 12.9587021162402 + ], + [ + 77.555288503621696, + 12.9587099679761 + ], + [ + 77.555303495162804, + 12.958732298924099 + ], + [ + 77.555327169024395, + 12.958767562610401 + ], + [ + 77.555328105316704, + 12.9587689537838 + ], + [ + 77.555345169051293, + 12.9587943090498 + ], + [ + 77.555364388786899, + 12.9588228676015 + ], + [ + 77.555387279800001, + 12.958856880442999 + ], + [ + 77.555415727787803, + 12.9588991505696 + ], + [ + 77.555427925799293, + 12.9589172753121 + ], + [ + 77.555440508241105, + 12.958935970881001 + ], + [ + 77.555451679234594, + 12.9589525698205 + ], + [ + 77.555485774947002, + 12.95900323185 + ], + [ + 77.555640514423303, + 12.959233156748599 + ], + [ + 77.555664375722102, + 12.959256809986901 + ], + [ + 77.555733879787297, + 12.9593257094336 + ], + [ + 77.555811688490493, + 12.9594028400575 + ], + [ + 77.555883050099396, + 12.959473580533 + ], + [ + 77.555896429011298, + 12.959487001076599 + ], + [ + 77.556184916428705, + 12.959773275627899 + ], + [ + 77.556310542674595, + 12.9598973970448 + ], + [ + 77.556467624512905, + 12.960008702871299 + ], + [ + 77.556628269587904, + 12.960122533081799 + ], + [ + 77.556679959722103, + 12.9601591602986 + ], + [ + 77.5568700055519, + 12.960293847924699 + ], + [ + 77.556896855130802, + 12.9603128766634 + ], + [ + 77.556922845364099, + 12.9603288493057 + ], + [ + 77.557104850345397, + 12.960440705779 + ], + [ + 77.557195646950703, + 12.960495861714801 + ], + [ + 77.557243990131994, + 12.960525228948701 + ], + [ + 77.557313409899805, + 12.960567399821301 + ], + [ + 77.557349072899299, + 12.960588093721899 + ], + [ + 77.557356025723706, + 12.960592128020799 + ], + [ + 77.557357427781994, + 12.9605929418146 + ], + [ + 77.557502579467098, + 12.960677566565799 + ], + [ + 77.5576038408839, + 12.960736603761299 + ], + [ + 77.557686984413706, + 12.9607850768107 + ], + [ + 77.557710665847495, + 12.960795057717499 + ], + [ + 77.558058785143501, + 12.9609417871266 + ], + [ + 77.558145482966594, + 12.9609622440588 + ], + [ + 77.558349608722096, + 12.9610104078023 + ], + [ + 77.558417182791004, + 12.961026351902699 + ], + [ + 77.558920455174601, + 12.96114583081 + ], + [ + 77.5589475899436, + 12.961152273125901 + ], + [ + 77.559020655740895, + 12.9611696194399 + ], + [ + 77.559166309011601, + 12.9612041974472 + ], + [ + 77.559229640172902, + 12.961218968786399 + ], + [ + 77.559259224453598, + 12.9612258694291 + ], + [ + 77.559347534468898, + 12.9612475875621 + ], + [ + 77.559424313422994, + 12.9612634761033 + ], + [ + 77.559516458883806, + 12.961282544564 + ], + [ + 77.5596493450617, + 12.9613100436497 + ], + [ + 77.559685837508297, + 12.961317595457601 + ], + [ + 77.559805962288195, + 12.9613424535661 + ], + [ + 77.559834645016196, + 12.9613483890771 + ], + [ + 77.559949384244405, + 12.9613721328121 + ], + [ + 77.560105776279897, + 12.9614044968651 + ], + [ + 77.560150742200307, + 12.9614138019883 + ], + [ + 77.560227974474202, + 12.961429784291401 + ], + [ + 77.5607238567667, + 12.961502829364999 + ], + [ + 77.5610445048233, + 12.9615148409034 + ], + [ + 77.5610851039647, + 12.9615163621772 + ], + [ + 77.561702988341395, + 12.9615395067283 + ], + [ + 77.561817058073203, + 12.961545973968001 + ], + [ + 77.562071757813399, + 12.9615686173914 + ], + [ + 77.562263655798901, + 12.961585927731001 + ], + [ + 77.562589541739399, + 12.9616489888275 + ], + [ + 77.562635743893395, + 12.961657928976701 + ], + [ + 77.562712874028605, + 12.9616731923537 + ], + [ + 77.562777086073297, + 12.9616858996377 + ], + [ + 77.562780551704407, + 12.9616869939303 + ], + [ + 77.562941963029999, + 12.9617308285188 + ], + [ + 77.563255029188397, + 12.961817359616701 + ], + [ + 77.563269302145699, + 12.9616902623301 + ], + [ + 77.563271384259195, + 12.961644939873599 + ], + [ + 77.563281492820394, + 12.9607944248817 + ], + [ + 77.559221400804304, + 12.960718649887299 + ], + [ + 77.559232686741197, + 12.9602053892966 + ], + [ + 77.559240670986796, + 12.9602056983826 + ], + [ + 77.559221727234402, + 12.9594308912655 + ], + [ + 77.5592215721081, + 12.959424545998999 + ], + [ + 77.559221437311606, + 12.9594190181621 + ], + [ + 77.55922127433, + 12.959412354955701 + ], + [ + 77.559219284245899, + 12.959402406669399 + ], + [ + 77.559219508527704, + 12.959393977009601 + ], + [ + 77.559219661527194, + 12.959388216864999 + ], + [ + 77.559220099092997, + 12.9593717235539 + ], + [ + 77.559220104319706, + 12.9593715139002 + ], + [ + 77.559220127684895, + 12.9593706454475 + ], + [ + 77.559220383190606, + 12.959361034661301 + ], + [ + 77.559220456257606, + 12.9593582693619 + ], + [ + 77.559220764329893, + 12.959346771638801 + ], + [ + 77.559220790904206, + 12.9593456763867 + ], + [ + 77.559220972449594, + 12.959338833618901 + ], + [ + 77.559221860624902, + 12.959304329059099 + ], + [ + 77.559228885568302, + 12.959031413913801 + ], + [ + 77.559230695621196, + 12.9589611043864 + ], + [ + 77.559239402753803, + 12.9586228481788 + ], + [ + 77.559248184583197, + 12.958281709203099 + ], + [ + 77.559248559018698, + 12.958267149912 + ], + [ + 77.559252930961605, + 12.9581315882483 + ], + [ + 77.559263801464596, + 12.957805981764899 + ], + [ + 77.559267036647597, + 12.9577090839148 + ], + [ + 77.559267957201499, + 12.9576864884177 + ], + [ + 77.559273122806403, + 12.957515909956101 + ], + [ + 77.559275399992003, + 12.9574506524882 + ], + [ + 77.559278464007903, + 12.9573628740175 + ], + [ + 77.559280162765305, + 12.957314208819501 + ], + [ + 77.559280693665897, + 12.957299004728 + ], + [ + 77.559293407147706, + 12.9569092644235 + ], + [ + 77.559294006668594, + 12.9568906789177 + ], + [ + 77.559294281545206, + 12.9568821511865 + ], + [ + 77.559240849878407, + 12.956881574164001 + ], + [ + 77.559239581283606, + 12.956881559529499 + ], + [ + 77.5592349339706, + 12.9568815564221 + ], + [ + 77.559129589854393, + 12.956758628366099 + ], + [ + 77.559006567018898, + 12.956615070970001 + ], + [ + 77.558812362934503, + 12.956475816911301 + ], + [ + 77.558793715527997, + 12.956462445578801 + ], + [ + 77.558785985741196, + 12.9564569164855 + ], + [ + 77.558764813707199, + 12.956441769367901 + ], + [ + 77.558737132144699, + 12.9564219665506 + ], + [ + 77.558641090679899, + 12.956353260911801 + ], + [ + 77.558434697102399, + 12.956205608468199 + ], + [ + 77.558398178777097, + 12.956179484200099 + ], + [ + 77.558394690157101, + 12.956176130507799 + ], + [ + 77.558328399693707, + 12.9561273563227 + ], + [ + 77.558283493557894, + 12.956094315351599 + ], + [ + 77.558262013655494, + 12.956078511681801 + ], + [ + 77.5581765776124, + 12.956015650902399 + ], + [ + 77.557988055093105, + 12.955877466853201 + ], + [ + 77.557904771595503, + 12.9558159255464 + ], + [ + 77.557823420592399, + 12.955755813467301 + ], + [ + 77.557813039981497, + 12.955748142978001 + ], + [ + 77.557776897189996, + 12.9557214357924 + ], + [ + 77.557773995784103, + 12.955719205644799 + ], + [ + 77.557712941388004, + 12.9556690734243 + ], + [ + 77.557654393333095, + 12.955620999943701 + ], + [ + 77.557641345552994, + 12.9556102215435 + ], + [ + 77.557446820933507, + 12.955449534761 + ], + [ + 77.557314041592605, + 12.9552630041821 + ], + [ + 77.557313887999797, + 12.955262666893301 + ], + [ + 77.557305551023205, + 12.9552443949917 + ], + [ + 77.557292391615206, + 12.955215551187599 + ], + [ + 77.557256072767998, + 12.955135945378901 + ], + [ + 77.557218700547594, + 12.9550540334349 + ], + [ + 77.5571884592499, + 12.9549877508697 + ], + [ + 77.557167879726606, + 12.954899873797 + ], + [ + 77.557130739023094, + 12.9547412829507 + ], + [ + 77.557122307668905, + 12.954705279765101 + ], + [ + 77.557003671116803, + 12.9541986968103 + ], + [ + 77.556979147742894, + 12.954093979083201 + ], + [ + 77.556968682967707, + 12.954095922179 + ], + [ + 77.556948556077103, + 12.9540996604523 + ], + [ + 77.556935115101197, + 12.954063073112 + ], + [ + 77.556749490715006, + 12.9535577935516 + ], + [ + 77.556602942189798, + 12.9533562220767 + ], + [ + 77.556560646941705, + 12.9532980469899 + ], + [ + 77.556533543097302, + 12.953260424651299 + ], + [ + 77.556481736355096, + 12.953188197439699 + ], + [ + 77.556422336335999, + 12.9531053848211 + ], + [ + 77.556313948014406, + 12.9529542744091 + ], + [ + 77.555968673419102, + 12.952405422998 + ], + [ + 77.5559213232291, + 12.9523054409406 + ], + [ + 77.555789800905401, + 12.952027724906999 + ], + [ + 77.555690268200706, + 12.9517638782995 + ], + [ + 77.555650156391096, + 12.951657546978 + ], + [ + 77.555726275621097, + 12.9516241427193 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "17", + "group": "Hormavu Hagara", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "3", + "ward_name": "3 - Hormavu Agara", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಹೊರಮಾವು ಅಗರ", + "dig_ward_n": "Hormavu Hagara", + "Assembly": "151 - K.R. Pura", + "Slno": "3" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.641402936163004, + 13.041245950222701 + ], + [ + 77.641426436073203, + 13.041230498227 + ], + [ + 77.641477676570602, + 13.0412084564748 + ], + [ + 77.641504983718207, + 13.041206676400201 + ], + [ + 77.641521723380293, + 13.0412269571446 + ], + [ + 77.641609284689395, + 13.0413055047896 + ], + [ + 77.641883401463502, + 13.041947838938301 + ], + [ + 77.641953530354002, + 13.042215205333401 + ], + [ + 77.642115703413296, + 13.0426885753443 + ], + [ + 77.642637087105797, + 13.043786857309801 + ], + [ + 77.642907366859802, + 13.043984877165 + ], + [ + 77.643376625674506, + 13.044553742583799 + ], + [ + 77.643491250005596, + 13.0447868164038 + ], + [ + 77.643916785592495, + 13.045370468488599 + ], + [ + 77.644022167681896, + 13.0456514405686 + ], + [ + 77.644281847812394, + 13.0465018832813 + ], + [ + 77.644289917821695, + 13.046528313715401 + ], + [ + 77.644391182434802, + 13.047076948316199 + ], + [ + 77.644514120386901, + 13.0473573060282 + ], + [ + 77.644517617913195, + 13.047376253369199 + ], + [ + 77.644627194304604, + 13.047555958651101 + ], + [ + 77.64492887227, + 13.0479224652252 + ], + [ + 77.645229479260095, + 13.048220562265801 + ], + [ + 77.645372146285595, + 13.048469569191001 + ], + [ + 77.645512671089605, + 13.048714836146999 + ], + [ + 77.645564834029102, + 13.0490345947868 + ], + [ + 77.6455233454069, + 13.0492597021018 + ], + [ + 77.6454775071021, + 13.0495261421688 + ], + [ + 77.645563026271205, + 13.0502392957774 + ], + [ + 77.645684783789406, + 13.0510125332271 + ], + [ + 77.645688534243703, + 13.0510363526638 + ], + [ + 77.645695750381194, + 13.0512561809666 + ], + [ + 77.645925893139193, + 13.0523930157735 + ], + [ + 77.646040219674106, + 13.0528776012961 + ], + [ + 77.646056853564104, + 13.0529481037821 + ], + [ + 77.646126536868607, + 13.053081244223099 + ], + [ + 77.646318933214701, + 13.0537485427975 + ], + [ + 77.646418481177705, + 13.0539387430793 + ], + [ + 77.646711337269494, + 13.0543869508921 + ], + [ + 77.6467551678261, + 13.0545885714523 + ], + [ + 77.646839892250895, + 13.0550482812894 + ], + [ + 77.647030128705396, + 13.055514749697799 + ], + [ + 77.6472882194889, + 13.0556010929315 + ], + [ + 77.6472925864921, + 13.055530837825 + ], + [ + 77.647293403712197, + 13.0555176899349 + ], + [ + 77.647302142589197, + 13.055377094085999 + ], + [ + 77.6473048030293, + 13.0553491708952 + ], + [ + 77.647332186129304, + 13.055061727281 + ], + [ + 77.647323802047197, + 13.054274729817701 + ], + [ + 77.647176106543995, + 13.054250269424999 + ], + [ + 77.647138039981002, + 13.054245012945501 + ], + [ + 77.647100537246104, + 13.054238621442799 + ], + [ + 77.647154686211294, + 13.0535910099237 + ], + [ + 77.647206471138901, + 13.053370277062299 + ], + [ + 77.647217278027199, + 13.053222109257099 + ], + [ + 77.647253206176799, + 13.0527295169402 + ], + [ + 77.6474761123729, + 13.0519751580301 + ], + [ + 77.647744062877194, + 13.0515568527355 + ], + [ + 77.647760028045496, + 13.051522092829501 + ], + [ + 77.647947816859102, + 13.051113232034 + ], + [ + 77.647999534853895, + 13.0509632336274 + ], + [ + 77.648015409388407, + 13.0509171924708 + ], + [ + 77.648015413457301, + 13.0509171806697 + ], + [ + 77.648010435407301, + 13.0508705509151 + ], + [ + 77.647994941569493, + 13.0507254187971 + ], + [ + 77.6478544561635, + 13.0506207082549 + ], + [ + 77.647386364637995, + 13.0499986955643 + ], + [ + 77.6473088358143, + 13.049895672724499 + ], + [ + 77.647045605859901, + 13.049513294461899 + ], + [ + 77.647230570726904, + 13.0494684900563 + ], + [ + 77.647239504939705, + 13.0494657914118 + ], + [ + 77.647424028865899, + 13.049410047657499 + ], + [ + 77.647268242832595, + 13.0490581886186 + ], + [ + 77.647468955537605, + 13.0488698088612 + ], + [ + 77.647352437907799, + 13.048636118575599 + ], + [ + 77.647235445790898, + 13.0484606514947 + ], + [ + 77.6472043694787, + 13.0484140435481 + ], + [ + 77.647204571404004, + 13.048324831135799 + ], + [ + 77.647244326028201, + 13.0482182752543 + ], + [ + 77.647286807410794, + 13.048184434707 + ], + [ + 77.647439628466103, + 13.0480626990965 + ], + [ + 77.647533133477907, + 13.0480557317596 + ], + [ + 77.647686421129094, + 13.048044309638501 + ], + [ + 77.647738285218196, + 13.048040445002 + ], + [ + 77.647847634742007, + 13.048033679434599 + ], + [ + 77.648158432074595, + 13.0480158175644 + ], + [ + 77.648221019898699, + 13.0479939262869 + ], + [ + 77.648354659748506, + 13.047947183157101 + ], + [ + 77.648393301149, + 13.047952433743699 + ], + [ + 77.648566905551803, + 13.0479766288161 + ], + [ + 77.648776652446799, + 13.047879624595399 + ], + [ + 77.6491350771539, + 13.0478996681552 + ], + [ + 77.649679253712193, + 13.0477868163289 + ], + [ + 77.649982167136201, + 13.0477317680912 + ], + [ + 77.650218269230706, + 13.0476220711677 + ], + [ + 77.650320935042998, + 13.0475826250459 + ], + [ + 77.650561848121498, + 13.0474920756842 + ], + [ + 77.651054701787103, + 13.0473652356375 + ], + [ + 77.651302152202305, + 13.0473015518022 + ], + [ + 77.652172232400702, + 13.0470758182521 + ], + [ + 77.652533293814699, + 13.0468088721152 + ], + [ + 77.652716686651203, + 13.046673282270699 + ], + [ + 77.652782478888298, + 13.0466246401761 + ], + [ + 77.652865777093695, + 13.0465625766229 + ], + [ + 77.652871610405697, + 13.046558230206101 + ], + [ + 77.653079710012506, + 13.0465536316113 + ], + [ + 77.653348340988501, + 13.0465476947046 + ], + [ + 77.653385770210903, + 13.0465473107972 + ], + [ + 77.653423763217404, + 13.0465457918617 + ], + [ + 77.653472700152903, + 13.0465499757992 + ], + [ + 77.653860115471502, + 13.0465830976435 + ], + [ + 77.654642034329399, + 13.0466496525385 + ], + [ + 77.655197987942003, + 13.046696973125901 + ], + [ + 77.6558268102131, + 13.046793791847801 + ], + [ + 77.656139976351199, + 13.046842008313901 + ], + [ + 77.656139974739304, + 13.0468420630518 + ], + [ + 77.656129771744702, + 13.0471885360902 + ], + [ + 77.656129330310605, + 13.047203538705 + ], + [ + 77.656102788020604, + 13.048104877793699 + ], + [ + 77.655798254893298, + 13.048115909414101 + ], + [ + 77.655631593823301, + 13.048040832363901 + ], + [ + 77.655118309213293, + 13.0480799787703 + ], + [ + 77.655083728696894, + 13.0481853529008 + ], + [ + 77.655049785388897, + 13.0482873237414 + ], + [ + 77.654975476777196, + 13.048510555497099 + ], + [ + 77.654931002179694, + 13.048641858224499 + ], + [ + 77.654874286907997, + 13.0488092975596 + ], + [ + 77.654846509427202, + 13.0488913034117 + ], + [ + 77.654846512929296, + 13.0488913492943 + ], + [ + 77.654894049963602, + 13.0495141550778 + ], + [ + 77.654987236390099, + 13.0498813302142 + ], + [ + 77.654999345790301, + 13.049927205653599 + ], + [ + 77.655107472257498, + 13.0503368376474 + ], + [ + 77.655135194348802, + 13.050441861160801 + ], + [ + 77.655145086460706, + 13.050479335228999 + ], + [ + 77.655151734296595, + 13.0505086271707 + ], + [ + 77.655154939139607, + 13.0505390836983 + ], + [ + 77.655173522348804, + 13.050725554982201 + ], + [ + 77.655194286802598, + 13.0509339130688 + ], + [ + 77.655217904472707, + 13.050986751100799 + ], + [ + 77.655336478548804, + 13.0512520274733 + ], + [ + 77.655404323397704, + 13.051742727058199 + ], + [ + 77.655443856489995, + 13.052028655406 + ], + [ + 77.655462304978101, + 13.052162084604401 + ], + [ + 77.655481679243593, + 13.0523022110588 + ], + [ + 77.655531209135205, + 13.0526604458873 + ], + [ + 77.655526964280696, + 13.052694366612499 + ], + [ + 77.655523295273298, + 13.052728281423899 + ], + [ + 77.655459206653106, + 13.053305980083101 + ], + [ + 77.655519200009905, + 13.0538541734545 + ], + [ + 77.655553486678798, + 13.0540446624655 + ], + [ + 77.655491664464293, + 13.0544032657575 + ], + [ + 77.655519538219096, + 13.0550714881203 + ], + [ + 77.655133385395203, + 13.055152242359201 + ], + [ + 77.655158105348093, + 13.0552558783662 + ], + [ + 77.655194572715303, + 13.055409870491401 + ], + [ + 77.655269081696801, + 13.055724501495201 + ], + [ + 77.655302362614506, + 13.0558654218813 + ], + [ + 77.655330006180805, + 13.055982471160901 + ], + [ + 77.655371190943598, + 13.0560999667389 + ], + [ + 77.655523660090694, + 13.056534937596901 + ], + [ + 77.655483010363895, + 13.056665217480999 + ], + [ + 77.655381691944299, + 13.0569926079067 + ], + [ + 77.655381972889401, + 13.057072780886401 + ], + [ + 77.655383525923099, + 13.057541398505499 + ], + [ + 77.655445665147695, + 13.058397851365701 + ], + [ + 77.6554505444916, + 13.058531051249201 + ], + [ + 77.655481008900693, + 13.059333626008 + ], + [ + 77.655531642113999, + 13.0595984765308 + ], + [ + 77.655627460669507, + 13.060103390238099 + ], + [ + 77.655662520950898, + 13.060381054467999 + ], + [ + 77.655696314862396, + 13.0606486850916 + ], + [ + 77.655716178680393, + 13.0608059932686 + ], + [ + 77.655722227218504, + 13.0608822548852 + ], + [ + 77.655754122068402, + 13.061284399816 + ], + [ + 77.655784656652699, + 13.0616623803773 + ], + [ + 77.655799849886606, + 13.0619212178702 + ], + [ + 77.655801461167897, + 13.061948668867601 + ], + [ + 77.655804320859104, + 13.0619973845668 + ], + [ + 77.6558170509159, + 13.062214244268899 + ], + [ + 77.655826370339298, + 13.062425566008701 + ], + [ + 77.655849468153093, + 13.0629493387358 + ], + [ + 77.655849850277704, + 13.0629580136701 + ], + [ + 77.655855826795204, + 13.063093521176601 + ], + [ + 77.655857072681698, + 13.063121782394999 + ], + [ + 77.655857384107904, + 13.063128846665901 + ], + [ + 77.655857892770101, + 13.0631403921742 + ], + [ + 77.655861636640694, + 13.063225332821199 + ], + [ + 77.655863214906802, + 13.063261152248399 + ], + [ + 77.655870511591303, + 13.0634266938132 + ], + [ + 77.6558984128405, + 13.0640597100367 + ], + [ + 77.655925611121901, + 13.064233332888399 + ], + [ + 77.655937841160295, + 13.064309913046401 + ], + [ + 77.656001039403293, + 13.0647056526046 + ], + [ + 77.656014256926696, + 13.0647884188306 + ], + [ + 77.656035631773705, + 13.064922261136401 + ], + [ + 77.656094129938694, + 13.0652885658022 + ], + [ + 77.656096423315006, + 13.0653030165294 + ], + [ + 77.656141852279703, + 13.0655892670854 + ], + [ + 77.656151563859197, + 13.065650460171399 + ], + [ + 77.656201624742707, + 13.065753835195901 + ], + [ + 77.656231405003894, + 13.0659534038106 + ], + [ + 77.656239459179901, + 13.066006395098601 + ], + [ + 77.656289729442094, + 13.066344649053599 + ], + [ + 77.656316414078006, + 13.0666098833708 + ], + [ + 77.656333853212601, + 13.0667832134287 + ], + [ + 77.656343865966903, + 13.066882737996201 + ], + [ + 77.656363208319704, + 13.0670756384577 + ], + [ + 77.656522687800205, + 13.067823811031801 + ], + [ + 77.656522063148103, + 13.067832402194099 + ], + [ + 77.656507703361598, + 13.068029899821401 + ], + [ + 77.6565066438163, + 13.068044470634099 + ], + [ + 77.656501169431195, + 13.068119761147001 + ], + [ + 77.656483270361406, + 13.0683659404427 + ], + [ + 77.656483092406603, + 13.0683683879897 + ], + [ + 77.656472710032403, + 13.068511186821601 + ], + [ + 77.656463445749694, + 13.068638599382499 + ], + [ + 77.656446173680294, + 13.068854461075601 + ], + [ + 77.656450109690098, + 13.0694913096021 + ], + [ + 77.656452302914303, + 13.0698982238745 + ], + [ + 77.656453367207803, + 13.070095643089299 + ], + [ + 77.6564553680589, + 13.070466915223401 + ], + [ + 77.656466239167599, + 13.070944470105999 + ], + [ + 77.6564671989874, + 13.0709908356841 + ], + [ + 77.656468623712698, + 13.0710596276173 + ], + [ + 77.656469048724503, + 13.0715835885955 + ], + [ + 77.656441661331399, + 13.072586696625301 + ], + [ + 77.656434535147994, + 13.0728476983434 + ], + [ + 77.656433429034394, + 13.0728882167589 + ], + [ + 77.656432226270894, + 13.0729322747413 + ], + [ + 77.656461632420402, + 13.073527079339501 + ], + [ + 77.656463487483293, + 13.073632351076601 + ], + [ + 77.656467502112704, + 13.0738601434233 + ], + [ + 77.656464602936495, + 13.073939844882 + ], + [ + 77.656459032441902, + 13.0740929858766 + ], + [ + 77.656464112800904, + 13.0741751780832 + ], + [ + 77.656477679927505, + 13.0743946829168 + ], + [ + 77.656488694564501, + 13.0745728912639 + ], + [ + 77.656491173574196, + 13.074612999639401 + ], + [ + 77.656530968179695, + 13.0745638961395 + ], + [ + 77.656531590884896, + 13.074563127768799 + ], + [ + 77.656630798301805, + 13.0744407121432 + ], + [ + 77.656903820825306, + 13.0741038190593 + ], + [ + 77.657108621320702, + 13.073851107995001 + ], + [ + 77.657222127051398, + 13.0737110484704 + ], + [ + 77.657348504098906, + 13.0735551058788 + ], + [ + 77.657473427596102, + 13.073400956983599 + ], + [ + 77.657690746401201, + 13.0731327971667 + ], + [ + 77.657822860075896, + 13.072969775172099 + ], + [ + 77.657864736227197, + 13.072884682252599 + ], + [ + 77.658197868645402, + 13.072207753273601 + ], + [ + 77.658276544626901, + 13.0720478821342 + ], + [ + 77.658344714352594, + 13.071909359588 + ], + [ + 77.658408634275006, + 13.0717794710968 + ], + [ + 77.658420738596803, + 13.071754875530999 + ], + [ + 77.658531436559301, + 13.071481985282601 + ], + [ + 77.658644727212703, + 13.071202703068 + ], + [ + 77.658714958776997, + 13.071037784219399 + ], + [ + 77.6587524336923, + 13.0709497849684 + ], + [ + 77.658838144599997, + 13.0707485150129 + ], + [ + 77.658911124434994, + 13.0705402119028 + ], + [ + 77.658917926799006, + 13.0705207962031 + ], + [ + 77.658959961200594, + 13.070400819126901 + ], + [ + 77.658969924118793, + 13.0703723818173 + ], + [ + 77.659025731493202, + 13.070213093883201 + ], + [ + 77.659084739968094, + 13.0700446695596 + ], + [ + 77.659151370705104, + 13.069847472477701 + ], + [ + 77.6592727649209, + 13.0694881959017 + ], + [ + 77.659527115858396, + 13.068735423551299 + ], + [ + 77.659594892904707, + 13.0685348296737 + ], + [ + 77.659610243255898, + 13.068489398389101 + ], + [ + 77.6596503242246, + 13.068370774822 + ], + [ + 77.659659384793201, + 13.0682324887816 + ], + [ + 77.659660804728702, + 13.0682108171619 + ], + [ + 77.659668436970193, + 13.068204903697101 + ], + [ + 77.659701669047806, + 13.0681791554598 + ], + [ + 77.659798518520702, + 13.068104115696899 + ], + [ + 77.660007129010495, + 13.0679426696982 + ], + [ + 77.660025941685305, + 13.0679281104289 + ], + [ + 77.660088346429305, + 13.0678798149124 + ], + [ + 77.660151371540906, + 13.067869523100001 + ], + [ + 77.660253461215405, + 13.0678528521277 + ], + [ + 77.660505840908598, + 13.067783225076001 + ], + [ + 77.660771691238097, + 13.0677098815815 + ], + [ + 77.660794467693904, + 13.067703597938401 + ], + [ + 77.660952521993593, + 13.067659993931001 + ], + [ + 77.660983579910393, + 13.0676514251639 + ], + [ + 77.661784348972503, + 13.0674305049865 + ], + [ + 77.661785498625804, + 13.0674301878124 + ], + [ + 77.661785507315003, + 13.067430056025 + ], + [ + 77.661785849752206, + 13.0674248623517 + ], + [ + 77.661820542414304, + 13.0674164767841 + ], + [ + 77.661893176016306, + 13.0673989204912 + ], + [ + 77.662560305003495, + 13.06723766985 + ], + [ + 77.662560393235495, + 13.067237648162701 + ], + [ + 77.663144034155295, + 13.0670909251981 + ], + [ + 77.663595412575901, + 13.066977451060099 + ], + [ + 77.6657228305438, + 13.066230198532701 + ], + [ + 77.665794694558102, + 13.0662049563054 + ], + [ + 77.6668777748298, + 13.0659387141297 + ], + [ + 77.667016422785807, + 13.0659046314153 + ], + [ + 77.667026184622003, + 13.065829780304099 + ], + [ + 77.667027554523102, + 13.0658192806083 + ], + [ + 77.667036057185001, + 13.065754085194801 + ], + [ + 77.667049520799395, + 13.0656508513591 + ], + [ + 77.667052206055999, + 13.065630264473 + ], + [ + 77.667061288552105, + 13.065560628372801 + ], + [ + 77.667067810941205, + 13.065510619378699 + ], + [ + 77.667098756373505, + 13.065314920998199 + ], + [ + 77.667135209599806, + 13.065084397303499 + ], + [ + 77.667181950827597, + 13.064788806120101 + ], + [ + 77.667187201476494, + 13.0647556050288 + ], + [ + 77.667206504923897, + 13.064633532314 + ], + [ + 77.667284355400497, + 13.064141210327501 + ], + [ + 77.667295889934707, + 13.064051070159501 + ], + [ + 77.667002268245895, + 13.0635461114957 + ], + [ + 77.666758146555196, + 13.0630242495176 + ], + [ + 77.666499486717001, + 13.062471306298299 + ], + [ + 77.666389054365794, + 13.0622352320937 + ], + [ + 77.666388505280494, + 13.062234127502601 + ], + [ + 77.666139306903801, + 13.0617323908752 + ], + [ + 77.666112882632206, + 13.0616791877684 + ], + [ + 77.665990669633203, + 13.061433124133099 + ], + [ + 77.665965142058397, + 13.061381725740301 + ], + [ + 77.665681773159505, + 13.0608111859668 + ], + [ + 77.665618462329107, + 13.0606837138505 + ], + [ + 77.6655961446519, + 13.0606387786593 + ], + [ + 77.665563089586897, + 13.059763925273399 + ], + [ + 77.665561555803805, + 13.059723330785401 + ], + [ + 77.665554615072097, + 13.0595884116322 + ], + [ + 77.665519347729798, + 13.058902816624901 + ], + [ + 77.665465481431198, + 13.057639764764501 + ], + [ + 77.665400235746404, + 13.056765284899599 + ], + [ + 77.665349755199301, + 13.0560860093383 + ], + [ + 77.665266681057204, + 13.054899063693799 + ], + [ + 77.665258615121701, + 13.0547838181836 + ], + [ + 77.6649289173141, + 13.053683959270501 + ], + [ + 77.664758019557695, + 13.0527845950628 + ], + [ + 77.664629229257798, + 13.0521061257044 + ], + [ + 77.664622064954401, + 13.052082485694401 + ], + [ + 77.664614888547902, + 13.052057716578499 + ], + [ + 77.664513697966896, + 13.0516974055662 + ], + [ + 77.664435911618696, + 13.0514393910513 + ], + [ + 77.664394132189599, + 13.051300807823701 + ], + [ + 77.664343448382894, + 13.0511326907307 + ], + [ + 77.664287066565606, + 13.0509456711801 + ], + [ + 77.664245584511207, + 13.0508080758432 + ], + [ + 77.665763910911494, + 13.0500256826291 + ], + [ + 77.665978049384904, + 13.050016699946701 + ], + [ + 77.667456347771804, + 13.049959675606299 + ], + [ + 77.667815414584894, + 13.0499322581813 + ], + [ + 77.668082050505006, + 13.049931766066701 + ], + [ + 77.668705152410396, + 13.049929854091801 + ], + [ + 77.669049275563296, + 13.049928827847101 + ], + [ + 77.669320768155799, + 13.0499280178781 + ], + [ + 77.669335371735599, + 13.049943695293701 + ], + [ + 77.669368084796702, + 13.049978812308201 + ], + [ + 77.669402701444398, + 13.0500159727788 + ], + [ + 77.669463508705206, + 13.0500812486053 + ], + [ + 77.669515726233797, + 13.0500833610444 + ], + [ + 77.6700194923433, + 13.050103739902401 + ], + [ + 77.670026850180605, + 13.050144675617499 + ], + [ + 77.670045829823593, + 13.050250267355899 + ], + [ + 77.670696944281204, + 13.0506579699999 + ], + [ + 77.671141279370104, + 13.0509018104497 + ], + [ + 77.671293229371102, + 13.0511080182863 + ], + [ + 77.671358094656298, + 13.051140301730101 + ], + [ + 77.671397459989507, + 13.051159894107199 + ], + [ + 77.671454638986404, + 13.0511883516113 + ], + [ + 77.671555515176493, + 13.0512385573307 + ], + [ + 77.672103269072593, + 13.051245319505201 + ], + [ + 77.672282520819095, + 13.051180480064501 + ], + [ + 77.672362853004401, + 13.0511514220347 + ], + [ + 77.672427164683199, + 13.0511281593863 + ], + [ + 77.672303718372902, + 13.0509938742078 + ], + [ + 77.672303560821902, + 13.050993704193701 + ], + [ + 77.6721887580795, + 13.0510566454677 + ], + [ + 77.672042133886293, + 13.0510890361839 + ], + [ + 77.671843170120695, + 13.0510910918806 + ], + [ + 77.671705381605307, + 13.0509690089866 + ], + [ + 77.671472570922205, + 13.0507964456629 + ], + [ + 77.671281195650707, + 13.0505719930474 + ], + [ + 77.671100537753702, + 13.050368013948599 + ], + [ + 77.670909271890494, + 13.0501538511057 + ], + [ + 77.670740218867095, + 13.050052674806 + ], + [ + 77.670676020243803, + 13.0499401216174 + ], + [ + 77.670642650463094, + 13.049765497694899 + ], + [ + 77.670558014037894, + 13.0497046192651 + ], + [ + 77.670494257818703, + 13.0496332311854 + ], + [ + 77.670366858800605, + 13.049500746000801 + ], + [ + 77.670239681023702, + 13.049388845583801 + ], + [ + 77.6701644352747, + 13.049224945162299 + ], + [ + 77.670089851911499, + 13.0491227929672 + ], + [ + 77.6699941664764, + 13.049010566357699 + ], + [ + 77.669964286586904, + 13.0488585657027 + ], + [ + 77.669949747170506, + 13.048784595198301 + ], + [ + 77.669913253207, + 13.048614994476001 + ], + [ + 77.669894500630903, + 13.0485278573128 + ], + [ + 77.669849971085, + 13.048291595919601 + ], + [ + 77.669831275120004, + 13.048156523861 + ], + [ + 77.669815828750401, + 13.048044933262 + ], + [ + 77.669778332109502, + 13.0479196536632 + ], + [ + 77.6697779799496, + 13.047920066529599 + ], + [ + 77.6697591953521, + 13.0478573074016 + ], + [ + 77.669695580174206, + 13.047644774179 + ], + [ + 77.669608402454202, + 13.0473472003954 + ], + [ + 77.669511942758504, + 13.0471629331558 + ], + [ + 77.6693723927891, + 13.046876190982699 + ], + [ + 77.669348416578202, + 13.0465985447397 + ], + [ + 77.669197264096894, + 13.046208999838701 + ], + [ + 77.669130750489202, + 13.045880331268 + ], + [ + 77.6691064435215, + 13.045571814363001 + ], + [ + 77.669009436473104, + 13.0454083717019 + ], + [ + 77.668975268665505, + 13.0453285581023 + ], + [ + 77.668968064843597, + 13.045221741589099 + ], + [ + 77.668725234306095, + 13.045201161999501 + ], + [ + 77.6687686503967, + 13.045005450603201 + ], + [ + 77.669249615423396, + 13.0445244855764 + ], + [ + 77.669357468187002, + 13.0444282925711 + ], + [ + 77.669498842755502, + 13.044276715714201 + ], + [ + 77.669587748411899, + 13.044168862950601 + ], + [ + 77.669630015035494, + 13.043975019470199 + ], + [ + 77.6697029887263, + 13.0438908237834 + ], + [ + 77.669827295324197, + 13.043774811741701 + ], + [ + 77.669689506550696, + 13.042911015418801 + ], + [ + 77.669644999458697, + 13.0423472268357 + ], + [ + 77.669633931304503, + 13.042226760764301 + ], + [ + 77.669819654323504, + 13.041927264556801 + ], + [ + 77.669814124680499, + 13.0418663722771 + ], + [ + 77.669749604821803, + 13.041760673800599 + ], + [ + 77.669767887681104, + 13.0416469500221 + ], + [ + 77.669826493580004, + 13.0415423716309 + ], + [ + 77.6698351888773, + 13.041006828846101 + ], + [ + 77.6698382347859, + 13.040819214806101 + ], + [ + 77.669816259078104, + 13.0404472751929 + ], + [ + 77.669624308597704, + 13.0404597915428 + ], + [ + 77.669453661192307, + 13.0394670654469 + ], + [ + 77.669726214641699, + 13.039436348046999 + ], + [ + 77.670147416806699, + 13.0394415597258 + ], + [ + 77.670151399811303, + 13.0394244564743 + ], + [ + 77.670166711735206, + 13.039201854569299 + ], + [ + 77.670359566184104, + 13.039179939290999 + ], + [ + 77.670502015493, + 13.0389651695639 + ], + [ + 77.670651039385305, + 13.038908189840299 + ], + [ + 77.670716785220193, + 13.0386978031688 + ], + [ + 77.670749046576404, + 13.0382319864324 + ], + [ + 77.670721168275804, + 13.037911044678401 + ], + [ + 77.670669121789601, + 13.037481326752401 + ], + [ + 77.670699252997494, + 13.0373576839017 + ], + [ + 77.670701444525307, + 13.0372897465391 + ], + [ + 77.670716785220193, + 13.037209755773301 + ], + [ + 77.670793804653201, + 13.0369696909823 + ], + [ + 77.670838986216296, + 13.036934711707699 + ], + [ + 77.671024084878098, + 13.036812284246301 + ], + [ + 77.671213555949294, + 13.0367044314828 + ], + [ + 77.671478815448793, + 13.0365543120956 + ], + [ + 77.671971490567103, + 13.0363753523993 + ], + [ + 77.6724553202001, + 13.036189944651101 + ], + [ + 77.672826974993498, + 13.0360339953849 + ], + [ + 77.673041541271999, + 13.0360032168352 + ], + [ + 77.673149075814393, + 13.035911567923501 + ], + [ + 77.673232151591804, + 13.0358401519044 + ], + [ + 77.673333841524794, + 13.035799765558 + ], + [ + 77.673447156160194, + 13.0356233552733 + ], + [ + 77.673452306825396, + 13.0355589719578 + ], + [ + 77.673508791673598, + 13.0354159902458 + ], + [ + 77.6736096019537, + 13.0353129884379 + ], + [ + 77.673679135287202, + 13.035186905072999 + ], + [ + 77.673769147757795, + 13.0349425735648 + ], + [ + 77.673834781438103, + 13.034753053077701 + ], + [ + 77.673833504548398, + 13.034626991008601 + ], + [ + 77.673919499800405, + 13.0344626138944 + ], + [ + 77.673948380537297, + 13.034427896891 + ], + [ + 77.673863613516005, + 13.0340257848662 + ], + [ + 77.673771415409703, + 13.033626255311701 + ], + [ + 77.673756840711903, + 13.033499455441 + ], + [ + 77.673113350563099, + 13.033217518851099 + ], + [ + 77.672725398409, + 13.033049428781201 + ], + [ + 77.671969691731107, + 13.0326872259008 + ], + [ + 77.6714488825709, + 13.0324057751073 + ], + [ + 77.670903165108498, + 13.032120278047801 + ], + [ + 77.670366100754407, + 13.0318232174267 + ], + [ + 77.669948025172602, + 13.031573688743 + ], + [ + 77.669447895097207, + 13.0313106638501 + ], + [ + 77.669076905254698, + 13.0311500141589 + ], + [ + 77.668744602145296, + 13.0310130119998 + ], + [ + 77.668355457714597, + 13.0309372235713 + ], + [ + 77.668065421228803, + 13.030896414417599 + ], + [ + 77.667894897264802, + 13.030824998398399 + ], + [ + 77.667687936556305, + 13.0307929340633 + ], + [ + 77.667188024422401, + 13.0306209526295 + ], + [ + 77.666902360345901, + 13.0304985251682 + ], + [ + 77.665820917770702, + 13.0299344843641 + ], + [ + 77.6654973594799, + 13.0297012891996 + ], + [ + 77.665237929859401, + 13.0294884986121 + ], + [ + 77.664794859046907, + 13.0292844528431 + ], + [ + 77.664206537031006, + 13.028988285433099 + ], + [ + 77.663849689895997, + 13.0288348234166 + ], + [ + 77.663826370379496, + 13.028785269444199 + ], + [ + 77.663642905665199, + 13.028713232152301 + ], + [ + 77.663206349345401, + 13.028353213712499 + ], + [ + 77.662722130987405, + 13.028095268270601 + ], + [ + 77.662323781519305, + 13.0278343997236 + ], + [ + 77.662053056891594, + 13.0276480033358 + ], + [ + 77.661771020409205, + 13.0274895619683 + ], + [ + 77.661486617888798, + 13.0273917111023 + ], + [ + 77.661401148303497, + 13.0272733685995 + ], + [ + 77.661322536754696, + 13.027153563816499 + ], + [ + 77.661099012620198, + 13.026767449340101 + ], + [ + 77.660829477298293, + 13.026482974837201 + ], + [ + 77.660265936888393, + 13.025783129676199 + ], + [ + 77.660234238715901, + 13.0257469067696 + ], + [ + 77.6599985704933, + 13.025463166613299 + ], + [ + 77.659575362926503, + 13.0250607443951 + ], + [ + 77.659472741284205, + 13.0249327170439 + ], + [ + 77.659166647266403, + 13.025292602694799 + ], + [ + 77.658577471520204, + 13.026005583128599 + ], + [ + 77.657273205711903, + 13.0275838992105 + ], + [ + 77.656321940183503, + 13.0287350286433 + ], + [ + 77.655435117871704, + 13.029849595518399 + ], + [ + 77.6551151603786, + 13.030251717713901 + ], + [ + 77.654756066677194, + 13.0307030258298 + ], + [ + 77.653655082506404, + 13.0320867260347 + ], + [ + 77.653146581358897, + 13.0327257964856 + ], + [ + 77.652547569918994, + 13.033490416676999 + ], + [ + 77.650303698500096, + 13.0363546045478 + ], + [ + 77.6497074181231, + 13.0370806716214 + ], + [ + 77.649145389283703, + 13.037776339384701 + ], + [ + 77.6478329445859, + 13.0393872410406 + ], + [ + 77.647805805962506, + 13.039420550441999 + ], + [ + 77.644922172614599, + 13.0428991572053 + ], + [ + 77.644626775265706, + 13.0428610645851 + ], + [ + 77.644530996311701, + 13.0430245801036 + ], + [ + 77.643535708938401, + 13.0429678226412 + ], + [ + 77.643664802196099, + 13.042268551608601 + ], + [ + 77.643730859422803, + 13.041336402674199 + ], + [ + 77.643746200117604, + 13.041093143085201 + ], + [ + 77.643790030674197, + 13.0403852795967 + ], + [ + 77.643772498451597, + 13.0390900866501 + ], + [ + 77.643765403808302, + 13.0389646622009 + ], + [ + 77.643709261218604, + 13.0389381336848 + ], + [ + 77.643574998919505, + 13.0389304710122 + ], + [ + 77.642959637854503, + 13.038954823218001 + ], + [ + 77.642368436912193, + 13.0389766688339 + ], + [ + 77.642167486791493, + 13.0390340534501 + ], + [ + 77.642084459346506, + 13.039135132907299 + ], + [ + 77.641977596140094, + 13.0392652304131 + ], + [ + 77.641868717021595, + 13.039370231860699 + ], + [ + 77.641808351182405, + 13.0394340860138 + ], + [ + 77.641737788691003, + 13.0394596497332 + ], + [ + 77.6417334895186, + 13.0394609948787 + ], + [ + 77.641648247989295, + 13.039487665635701 + ], + [ + 77.641458454039693, + 13.0395110584313 + ], + [ + 77.641464380381606, + 13.039711257373501 + ], + [ + 77.641469455693795, + 13.0398826860123 + ], + [ + 77.6414719225574, + 13.0399660088024 + ], + [ + 77.641471311569802, + 13.0399660150381 + ], + [ + 77.6414615577159, + 13.039966114586299 + ], + [ + 77.641464722258902, + 13.0403184083415 + ], + [ + 77.641460352815102, + 13.040403063701399 + ], + [ + 77.6414593276658, + 13.0404229253636 + ], + [ + 77.641454691961798, + 13.040512741740599 + ], + [ + 77.641449234892207, + 13.040602695686999 + ], + [ + 77.641444889830098, + 13.040674324556701 + ], + [ + 77.641400452740001, + 13.0410451721551 + ], + [ + 77.641397002208606, + 13.041139142953201 + ], + [ + 77.641394645445303, + 13.0412033264498 + ], + [ + 77.641393505427899, + 13.041258671343 + ], + [ + 77.641402936163004, + 13.041245950222701 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "48", + "group": "Rajeshwari Nagara", + "Corporatio": "West", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "5", + "ward_id": "27", + "ward_name": "27 - Bhima Nayak Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ಭೀಮ ನಾಯಕ್ ವಾರ್ಡ್", + "dig_ward_n": "Rajeshwari Nagara", + "Assembly": "155 - Dasarahalli", + "Slno": "27" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.515514408223495, + 13.009676439673401 + ], + [ + 77.515193061123, + 13.009654021650199 + ], + [ + 77.514597784733098, + 13.0100197660328 + ], + [ + 77.513868707386806, + 13.0103478201142 + ], + [ + 77.513584189455997, + 13.0104112737534 + ], + [ + 77.513899410760601, + 13.0113528438839 + ], + [ + 77.513731565650403, + 13.0113794534745 + ], + [ + 77.513852646841499, + 13.0119896844087 + ], + [ + 77.513305325638797, + 13.012157422266 + ], + [ + 77.513096261673596, + 13.012312324315699 + ], + [ + 77.513196559361504, + 13.012469934967999 + ], + [ + 77.513360310688498, + 13.012894664972499 + ], + [ + 77.513356216905294, + 13.012936626249999 + ], + [ + 77.513427858110902, + 13.013123916830301 + ], + [ + 77.513472889725804, + 13.0132364958677 + ], + [ + 77.513633031117806, + 13.0135679778327 + ], + [ + 77.513633058992497, + 13.013568092304901 + ], + [ + 77.513820861295699, + 13.013470864954501 + ], + [ + 77.5138720335855, + 13.0136873237399 + ], + [ + 77.514000987755594, + 13.013658923119101 + ], + [ + 77.514349982771293, + 13.0135309923949 + ], + [ + 77.515003964633706, + 13.013231122777199 + ], + [ + 77.515001825555501, + 13.0135784396799 + ], + [ + 77.514928981440306, + 13.0139288449927 + ], + [ + 77.514795181691696, + 13.014450046717901 + ], + [ + 77.514135937430297, + 13.0164323134352 + ], + [ + 77.513910924525703, + 13.017145802939201 + ], + [ + 77.513984612622906, + 13.0175326654493 + ], + [ + 77.514018898056904, + 13.0177046043427 + ], + [ + 77.515029523432204, + 13.017976317741001 + ], + [ + 77.515118441227102, + 13.0181428626839 + ], + [ + 77.515514560211201, + 13.018885384658899 + ], + [ + 77.517557149672797, + 13.018183780756299 + ], + [ + 77.517558485335599, + 13.0181838328357 + ], + [ + 77.517601214197398, + 13.0180474586837 + ], + [ + 77.517697673963596, + 13.018024175291901 + ], + [ + 77.518848027036, + 13.01807330069 + ], + [ + 77.518827558120094, + 13.017516546178101 + ], + [ + 77.518794807854704, + 13.017242262705301 + ], + [ + 77.517663900252302, + 13.0173814513333 + ], + [ + 77.517518315088097, + 13.016180181832601 + ], + [ + 77.517524455762896, + 13.0161098199343 + ], + [ + 77.517588421124998, + 13.016031782192499 + ], + [ + 77.517688718812806, + 13.015981377487099 + ], + [ + 77.518375459566698, + 13.015864186877799 + ], + [ + 77.518315589701103, + 13.0156815672457 + ], + [ + 77.518316602807502, + 13.0156799727008 + ], + [ + 77.518292040108406, + 13.015567393663501 + ], + [ + 77.518169226613097, + 13.014771152835699 + ], + [ + 77.518713699775503, + 13.0146892771722 + ], + [ + 77.518709386709403, + 13.014607718362701 + ], + [ + 77.518597026955007, + 13.0135532523409 + ], + [ + 77.517942021646803, + 13.0136433155708 + ], + [ + 77.5178969900319, + 13.013377219664401 + ], + [ + 77.518249311246393, + 13.0132385427593 + ], + [ + 77.518148757697205, + 13.0127713397543 + ], + [ + 77.518539538586893, + 13.0126703840416 + ], + [ + 77.518541005210594, + 13.0126709073696 + ], + [ + 77.518549653878594, + 13.0126719527295 + ], + [ + 77.518559722037395, + 13.012642491832599 + ], + [ + 77.518599191096001, + 13.01261613346 + ], + [ + 77.518700101490793, + 13.0125722381136 + ], + [ + 77.518725146360197, + 13.012486164227701 + ], + [ + 77.518709433698206, + 13.0124129090345 + ], + [ + 77.518679810199998, + 13.0123307541313 + ], + [ + 77.518673686650402, + 13.0121806099558 + ], + [ + 77.518682067067701, + 13.012098085966 + ], + [ + 77.518711718454298, + 13.0120119673498 + ], + [ + 77.518750491626406, + 13.0119167253399 + ], + [ + 77.518807046614, + 13.0118145345311 + ], + [ + 77.518832747077894, + 13.0117363597377 + ], + [ + 77.518832268010698, + 13.0116889316638 + ], + [ + 77.518814514496299, + 13.0116416713555 + ], + [ + 77.518818237233205, + 13.011611142733599 + ], + [ + 77.518835870775803, + 13.0115895138185 + ], + [ + 77.518914460835305, + 13.0115593874407 + ], + [ + 77.518967173433396, + 13.0115329004239 + ], + [ + 77.518973493457395, + 13.0114832063447 + ], + [ + 77.518983711902493, + 13.011402864486399 + ], + [ + 77.519030300830394, + 13.011226233320601 + ], + [ + 77.5190595071752, + 13.011096074351601 + ], + [ + 77.519106395996502, + 13.0110151775734 + ], + [ + 77.5191200697803, + 13.0109915858995 + ], + [ + 77.519141785040304, + 13.0109179672108 + ], + [ + 77.519135154513606, + 13.010888668498101 + ], + [ + 77.519132138564601, + 13.010875145584899 + ], + [ + 77.519113832085196, + 13.0108301493661 + ], + [ + 77.519113090643202, + 13.010756748786299 + ], + [ + 77.519151909173701, + 13.010666023730399 + ], + [ + 77.519150447274995, + 13.010655842153 + ], + [ + 77.519137661690294, + 13.0105667792657 + ], + [ + 77.519137091356498, + 13.0105103172812 + ], + [ + 77.519132268133006, + 13.0104889064662 + ], + [ + 77.519105438578507, + 13.010455286523101 + ], + [ + 77.519103337965504, + 13.0104540248857 + ], + [ + 77.519048079586796, + 13.0104208337233 + ], + [ + 77.519008177464798, + 13.010404280983201 + ], + [ + 77.518945995292398, + 13.0103484173349 + ], + [ + 77.518910220653396, + 13.010284391764801 + ], + [ + 77.5188699649987, + 13.0102328325593 + ], + [ + 77.518834099159704, + 13.010159773051701 + ], + [ + 77.518802264024799, + 13.0100866743946 + ], + [ + 77.518800566926302, + 13.010084082706101 + ], + [ + 77.518778785190904, + 13.0100508191783 + ], + [ + 77.518773604486796, + 13.0100429080141 + ], + [ + 77.518707477213596, + 13.009938520504599 + ], + [ + 77.518617724575194, + 13.009775636116601 + ], + [ + 77.518527801022302, + 13.0095958130696 + ], + [ + 77.518455322956896, + 13.0094327608586 + ], + [ + 77.518388335147904, + 13.009300147788499 + ], + [ + 77.518314992964903, + 13.0091905646699 + ], + [ + 77.518204023770096, + 13.0091340134025 + ], + [ + 77.518064835142198, + 13.0088863395204 + ], + [ + 77.517955780020202, + 13.0088021264022 + ], + [ + 77.517211639705394, + 13.0090721520016 + ], + [ + 77.516394571606398, + 13.0093878279595 + ], + [ + 77.516296388373803, + 13.009422058362301 + ], + [ + 77.516296605522797, + 13.009424677257799 + ], + [ + 77.515514408223495, + 13.009676439673401 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "18", + "group": "Chamrajpete", + "Corporatio": "Central", + "ac_no": "168", + "ac": "Chamrajapet", + "corporat_1": "1", + "ward_id": "55", + "ward_name": "55 - Chamarajpet", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಾಮರಾಜಪೇಟೆ", + "ward_name_": "ಚಾಮರಾಜಪೇಟೆ", + "dig_ward_n": "Chamrajpete", + "Assembly": "168 - Chamrajapet", + "Slno": "55" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.561691943914795, + 12.9533678424049 + ], + [ + 77.561520486657002, + 12.9533588635207 + ], + [ + 77.561408808195196, + 12.953353015228901 + ], + [ + 77.561201744099407, + 12.95334217195 + ], + [ + 77.561085160395095, + 12.9533573988141 + ], + [ + 77.561024083928203, + 12.9533653761479 + ], + [ + 77.560807458217596, + 12.953450776105299 + ], + [ + 77.560762609345701, + 12.953468456862099 + ], + [ + 77.560740743918998, + 12.9534795377362 + ], + [ + 77.560593511456304, + 12.9535541509551 + ], + [ + 77.560480814594996, + 12.953611263392199 + ], + [ + 77.560356909992194, + 12.9536553957803 + ], + [ + 77.560282199299195, + 12.953662100313799 + ], + [ + 77.560257976767105, + 12.953664274552301 + ], + [ + 77.560198940655596, + 12.953671544120199 + ], + [ + 77.560184145281795, + 12.953673365481199 + ], + [ + 77.560146253420996, + 12.953678031207399 + ], + [ + 77.560108477482203, + 12.9536826831403 + ], + [ + 77.559812839636805, + 12.953679970571899 + ], + [ + 77.559811377626701, + 12.953679956935 + ], + [ + 77.559660772785705, + 12.953646428213499 + ], + [ + 77.559504074926494, + 12.9535802089265 + ], + [ + 77.559346721640907, + 12.9535060907125 + ], + [ + 77.559261705306199, + 12.95346277598 + ], + [ + 77.559178036282802, + 12.953420147251601 + ], + [ + 77.559131433024703, + 12.953396403355599 + ], + [ + 77.558807792110599, + 12.9532188916619 + ], + [ + 77.558789553655899, + 12.953215951211099 + ], + [ + 77.558776001449701, + 12.953213766085 + ], + [ + 77.558771991519507, + 12.953213119756899 + ], + [ + 77.558616337682906, + 12.953188022248399 + ], + [ + 77.558582227915394, + 12.953187801720199 + ], + [ + 77.558579933176304, + 12.953187787221999 + ], + [ + 77.558579659575301, + 12.953187785392601 + ], + [ + 77.558579454142006, + 12.953187783796899 + ], + [ + 77.558558201750699, + 12.953187646556101 + ], + [ + 77.558537254285397, + 12.9531875117386 + ], + [ + 77.558477579930397, + 12.9531871267481 + ], + [ + 77.558478109465696, + 12.953182604252699 + ], + [ + 77.558480451822305, + 12.953153456444699 + ], + [ + 77.558482195833307, + 12.953131744558799 + ], + [ + 77.557898545103697, + 12.9531690813811 + ], + [ + 77.557898221065599, + 12.953169101729401 + ], + [ + 77.557873316048003, + 12.953170654539599 + ], + [ + 77.557706118087495, + 12.9531810818288 + ], + [ + 77.557597310744498, + 12.9531878674595 + ], + [ + 77.557219471686494, + 12.953213639247201 + ], + [ + 77.557063578248403, + 12.9532242722491 + ], + [ + 77.556814857484895, + 12.953241237248699 + ], + [ + 77.556600589614504, + 12.9532558518064 + ], + [ + 77.556533543097302, + 12.953260424651299 + ], + [ + 77.556560646941705, + 12.9532980469899 + ], + [ + 77.556602942189798, + 12.9533562220767 + ], + [ + 77.556749490715006, + 12.9535577935516 + ], + [ + 77.556935115101197, + 12.954063073112 + ], + [ + 77.556948556077103, + 12.9540996604523 + ], + [ + 77.556968682967707, + 12.954095922179 + ], + [ + 77.556979147742894, + 12.954093979083201 + ], + [ + 77.557003671116803, + 12.9541986968103 + ], + [ + 77.557122307668905, + 12.954705279765101 + ], + [ + 77.557130739023094, + 12.9547412829507 + ], + [ + 77.557167879726606, + 12.954899873797 + ], + [ + 77.5571884592499, + 12.9549877508697 + ], + [ + 77.557218700547594, + 12.9550540334349 + ], + [ + 77.557256072767998, + 12.955135945378901 + ], + [ + 77.557292391615206, + 12.955215551187599 + ], + [ + 77.557305551023205, + 12.9552443949917 + ], + [ + 77.557313887999797, + 12.955262666893301 + ], + [ + 77.557314041592605, + 12.9552630041821 + ], + [ + 77.557446820933507, + 12.955449534761 + ], + [ + 77.557641345552994, + 12.9556102215435 + ], + [ + 77.557654393333095, + 12.955620999943701 + ], + [ + 77.557712941388004, + 12.9556690734243 + ], + [ + 77.557773995784103, + 12.955719205644799 + ], + [ + 77.557776897189996, + 12.9557214357924 + ], + [ + 77.557813039981497, + 12.955748142978001 + ], + [ + 77.557823420592399, + 12.955755813467301 + ], + [ + 77.557904771595503, + 12.9558159255464 + ], + [ + 77.557988055093105, + 12.955877466853201 + ], + [ + 77.5581765776124, + 12.956015650902399 + ], + [ + 77.558262013655494, + 12.956078511681801 + ], + [ + 77.558283493557894, + 12.956094315351599 + ], + [ + 77.558328399693707, + 12.9561273563227 + ], + [ + 77.558394690157101, + 12.956176130507799 + ], + [ + 77.558398178777097, + 12.956179484200099 + ], + [ + 77.558434697102399, + 12.956205608468199 + ], + [ + 77.558641090679899, + 12.956353260911801 + ], + [ + 77.558737132144699, + 12.9564219665506 + ], + [ + 77.558764813707199, + 12.956441769367901 + ], + [ + 77.558785985741196, + 12.9564569164855 + ], + [ + 77.558793715527997, + 12.956462445578801 + ], + [ + 77.558812362934503, + 12.956475816911301 + ], + [ + 77.559006567018898, + 12.956615070970001 + ], + [ + 77.559129589854393, + 12.956758628366099 + ], + [ + 77.5592349339706, + 12.9568815564221 + ], + [ + 77.559239581283606, + 12.956881559529499 + ], + [ + 77.559240849878407, + 12.956881574164001 + ], + [ + 77.559294281545206, + 12.9568821511865 + ], + [ + 77.559294006668594, + 12.9568906789177 + ], + [ + 77.559293407147706, + 12.9569092644235 + ], + [ + 77.559280693665897, + 12.957299004728 + ], + [ + 77.559280162765305, + 12.957314208819501 + ], + [ + 77.559278464007903, + 12.9573628740175 + ], + [ + 77.559275399992003, + 12.9574506524882 + ], + [ + 77.559273122806403, + 12.957515909956101 + ], + [ + 77.559267957201499, + 12.9576864884177 + ], + [ + 77.559267036647597, + 12.9577090839148 + ], + [ + 77.559263801464596, + 12.957805981764899 + ], + [ + 77.559252930961605, + 12.9581315882483 + ], + [ + 77.559248559018698, + 12.958267149912 + ], + [ + 77.559248184583197, + 12.958281709203099 + ], + [ + 77.559239402753803, + 12.9586228481788 + ], + [ + 77.559230695621196, + 12.9589611043864 + ], + [ + 77.559228885568302, + 12.959031413913801 + ], + [ + 77.559221860624902, + 12.959304329059099 + ], + [ + 77.559220972449594, + 12.959338833618901 + ], + [ + 77.559220790904206, + 12.9593456763867 + ], + [ + 77.559220764329893, + 12.959346771638801 + ], + [ + 77.559220456257606, + 12.9593582693619 + ], + [ + 77.559220383190606, + 12.959361034661301 + ], + [ + 77.559220127684895, + 12.9593706454475 + ], + [ + 77.559220104319706, + 12.9593715139002 + ], + [ + 77.559220099092997, + 12.9593717235539 + ], + [ + 77.559219661527194, + 12.959388216864999 + ], + [ + 77.559219508527704, + 12.959393977009601 + ], + [ + 77.559219284245899, + 12.959402406669399 + ], + [ + 77.55922127433, + 12.959412354955701 + ], + [ + 77.559221437311606, + 12.9594190181621 + ], + [ + 77.5592215721081, + 12.959424545998999 + ], + [ + 77.559221727234402, + 12.9594308912655 + ], + [ + 77.559240670986796, + 12.9602056983826 + ], + [ + 77.559232686741197, + 12.9602053892966 + ], + [ + 77.559221400804304, + 12.960718649887299 + ], + [ + 77.563281492820394, + 12.9607944248817 + ], + [ + 77.563271384259195, + 12.961644939873599 + ], + [ + 77.563269302145699, + 12.9616902623301 + ], + [ + 77.563255029188397, + 12.961817359616701 + ], + [ + 77.563270138913893, + 12.9618199498008 + ], + [ + 77.5633648279547, + 12.9618461200171 + ], + [ + 77.563981371087706, + 12.962120119072299 + ], + [ + 77.564017670338401, + 12.9621334379774 + ], + [ + 77.564206178292906, + 12.9622026032305 + ], + [ + 77.564430997180907, + 12.962286216370201 + ], + [ + 77.564541380218401, + 12.962326913506001 + ], + [ + 77.564619927312407, + 12.9623509845272 + ], + [ + 77.564822627585897, + 12.9624110995598 + ], + [ + 77.564824229817702, + 12.9624115779598 + ], + [ + 77.5648321930816, + 12.9622253319225 + ], + [ + 77.564858659003093, + 12.961483150244399 + ], + [ + 77.564880640009903, + 12.961483364756999 + ], + [ + 77.564893395209594, + 12.9607546495574 + ], + [ + 77.5649078378257, + 12.9604561192935 + ], + [ + 77.564907839223693, + 12.9604560759139 + ], + [ + 77.564909486764194, + 12.960417545428401 + ], + [ + 77.564909515539298, + 12.960416397758101 + ], + [ + 77.564910017670996, + 12.960396623426099 + ], + [ + 77.5649100537278, + 12.9603951974201 + ], + [ + 77.564910298606904, + 12.9603855605719 + ], + [ + 77.565192522671694, + 12.9603893395079 + ], + [ + 77.565290726931494, + 12.9603906547565 + ], + [ + 77.5654877165682, + 12.960394891175801 + ], + [ + 77.565688873576505, + 12.960399217369501 + ], + [ + 77.565830885490001, + 12.960402270714599 + ], + [ + 77.566049081584296, + 12.960407781141299 + ], + [ + 77.566394322957095, + 12.9604165000995 + ], + [ + 77.566443192846407, + 12.9604177348373 + ], + [ + 77.566856627875495, + 12.960428174967801 + ], + [ + 77.566892237700699, + 12.9604290741956 + ], + [ + 77.567267129729601, + 12.9604377995374 + ], + [ + 77.567560945408005, + 12.9604450762706 + ], + [ + 77.5677796626495, + 12.960450492453401 + ], + [ + 77.567840184372301, + 12.960451991435001 + ], + [ + 77.568142574576598, + 12.9604594801533 + ], + [ + 77.568408523080294, + 12.960466065966401 + ], + [ + 77.568585324754693, + 12.960471097293199 + ], + [ + 77.568987214027999, + 12.960487079478 + ], + [ + 77.569211259096804, + 12.9604959888108 + ], + [ + 77.569435958444103, + 12.960504924013099 + ], + [ + 77.569435955621898, + 12.960505008061901 + ], + [ + 77.569439000474603, + 12.9605050448616 + ], + [ + 77.569606246574594, + 12.960509610570799 + ], + [ + 77.570027010416098, + 12.960521097145101 + ], + [ + 77.570102014844593, + 12.9605231446451 + ], + [ + 77.5701350002049, + 12.960524044943099 + ], + [ + 77.570201000472096, + 12.960525044777199 + ], + [ + 77.570609000584, + 12.9605400452692 + ], + [ + 77.570610867449403, + 12.9605401009158 + ], + [ + 77.570659430736697, + 12.960541539348799 + ], + [ + 77.5707440006897, + 12.960544045106399 + ], + [ + 77.570746582815502, + 12.960544053032899 + ], + [ + 77.570901416611804, + 12.9605445493766 + ], + [ + 77.571056000750801, + 12.9605450453834 + ], + [ + 77.571109000351896, + 12.960545044985899 + ], + [ + 77.5712213679504, + 12.9605445394653 + ], + [ + 77.571331000700795, + 12.960544045553201 + ], + [ + 77.571354055581395, + 12.960545013073601 + ], + [ + 77.571729906264295, + 12.960560789223701 + ], + [ + 77.571736000598804, + 12.96056104522 + ], + [ + 77.571737807273706, + 12.9605618775166 + ], + [ + 77.571809650265607, + 12.960594963051699 + ], + [ + 77.571812000239603, + 12.960596045656001 + ], + [ + 77.572925433887306, + 12.960252051811 + ], + [ + 77.5731746314124, + 12.9601750621656 + ], + [ + 77.573220000473498, + 12.9601610456878 + ], + [ + 77.573286843165306, + 12.960140871328599 + ], + [ + 77.574140805418295, + 12.9598831332474 + ], + [ + 77.5745134769125, + 12.959770654553701 + ], + [ + 77.574504962207996, + 12.959746608569599 + ], + [ + 77.574502072423996, + 12.959738447392599 + ], + [ + 77.574185496159103, + 12.9588432876076 + ], + [ + 77.574059207606396, + 12.9584861880326 + ], + [ + 77.573739523456197, + 12.9575822283946 + ], + [ + 77.573715429628805, + 12.9575378596964 + ], + [ + 77.573693163928496, + 12.9574968599521 + ], + [ + 77.573680003861497, + 12.9574783564121 + ], + [ + 77.573651688240801, + 12.9574385448737 + ], + [ + 77.573557780614806, + 12.957376231719399 + ], + [ + 77.5735288116867, + 12.957358449088 + ], + [ + 77.5734361018595, + 12.957300641283499 + ], + [ + 77.573379396588507, + 12.9572729689787 + ], + [ + 77.573335185170706, + 12.957265574858599 + ], + [ + 77.573264630353904, + 12.9572537756837 + ], + [ + 77.573222076336094, + 12.957251245594099 + ], + [ + 77.573152555530498, + 12.9572471127744 + ], + [ + 77.5730854708235, + 12.957243123902 + ], + [ + 77.572144589758906, + 12.957228705095799 + ], + [ + 77.570754584161904, + 12.957208553957701 + ], + [ + 77.570423425324094, + 12.957197142439 + ], + [ + 77.569651997430398, + 12.957170678079301 + ], + [ + 77.569630948885802, + 12.9571699561646 + ], + [ + 77.568874365156105, + 12.957143484803 + ], + [ + 77.568647049863301, + 12.957135531137 + ], + [ + 77.568573538816693, + 12.957132958754199 + ], + [ + 77.568535497615898, + 12.9571316084449 + ], + [ + 77.568513491367, + 12.9571308272238 + ], + [ + 77.568047223461903, + 12.9571142713179 + ], + [ + 77.567904490118394, + 12.957109203144199 + ], + [ + 77.567868838346101, + 12.957107937584 + ], + [ + 77.567777019516697, + 12.957104677315501 + ], + [ + 77.567405575061599, + 12.9570947885148 + ], + [ + 77.567404749478996, + 12.957094766841699 + ], + [ + 77.567007950162207, + 12.957084176147299 + ], + [ + 77.566458216342397, + 12.957069501805901 + ], + [ + 77.566405036028002, + 12.9570680826755 + ], + [ + 77.566021087461493, + 12.957057833584599 + ], + [ + 77.566001349847497, + 12.957057306246501 + ], + [ + 77.565984294474106, + 12.957056850949201 + ], + [ + 77.5655955303924, + 12.957046730895099 + ], + [ + 77.565296297609905, + 12.957038940835201 + ], + [ + 77.565173354119494, + 12.9570357396492 + ], + [ + 77.565008753761404, + 12.9570314544767 + ], + [ + 77.564629483776201, + 12.9570211409539 + ], + [ + 77.564600197381907, + 12.957020344375101 + ], + [ + 77.564572223090096, + 12.9570195836555 + ], + [ + 77.564520977440694, + 12.957018191155401 + ], + [ + 77.564433441108093, + 12.9570156653841 + ], + [ + 77.564236286936406, + 12.957010404791999 + ], + [ + 77.5641552752396, + 12.9570082438089 + ], + [ + 77.564125199342001, + 12.9570074413993 + ], + [ + 77.564030183059401, + 12.957004906939201 + ], + [ + 77.563952347466696, + 12.957002830257 + ], + [ + 77.563883998761995, + 12.9570010070594 + ], + [ + 77.563873818045906, + 12.957000735086799 + ], + [ + 77.563672066893403, + 12.956995353093101 + ], + [ + 77.563588352664496, + 12.9569931200648 + ], + [ + 77.563536790278803, + 12.956991744038801 + ], + [ + 77.563447312866799, + 12.956989293960699 + ], + [ + 77.563387002134306, + 12.9569876426538 + ], + [ + 77.563478583329101, + 12.9539606018017 + ], + [ + 77.562793219884497, + 12.9538030128101 + ], + [ + 77.562603715664295, + 12.9536789732835 + ], + [ + 77.562588546821502, + 12.9536695847573 + ], + [ + 77.562586221072294, + 12.953667349002099 + ], + [ + 77.562507732846697, + 12.953592457754899 + ], + [ + 77.562436589650304, + 12.9535039405579 + ], + [ + 77.562358332503607, + 12.953451632475501 + ], + [ + 77.562353286576595, + 12.953448223690801 + ], + [ + 77.561692261864707, + 12.953367857346599 + ], + [ + 77.561691943914795, + 12.9533678424049 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "35", + "group": "Vannarpet", + "Corporatio": "Central", + "ac_no": "163", + "ac": "Shanthinagar", + "corporat_1": "1", + "ward_id": "29", + "ward_name": "29 - Vannarpet", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಾಂತಿನಗರ", + "ward_name_": "ವನ್ನಾರ್‌ಪೇಟೆ", + "dig_ward_n": "Vannarpet", + "Assembly": "163 - Shanthinagar", + "Slno": "29" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6188808078535, + 12.952190369419201 + ], + [ + 77.618869511593005, + 12.952123771779799 + ], + [ + 77.618867000804102, + 12.9521240508869 + ], + [ + 77.618646000632296, + 12.952123050469501 + ], + [ + 77.618627000055099, + 12.9521520506628 + ], + [ + 77.618622000631902, + 12.9521560506798 + ], + [ + 77.618519208734796, + 12.9522397082276 + ], + [ + 77.618160000526103, + 12.952532050689999 + ], + [ + 77.618018359608897, + 12.952626029928201 + ], + [ + 77.618005551019607, + 12.952634528871201 + ], + [ + 77.617949, + 12.952672050829101 + ], + [ + 77.617862000789799, + 12.952773050504 + ], + [ + 77.617810000817698, + 12.9528530506938 + ], + [ + 77.617782000779101, + 12.9529400505594 + ], + [ + 77.617764000863403, + 12.953081050338101 + ], + [ + 77.617759000484796, + 12.953239050110099 + ], + [ + 77.617745010995193, + 12.9534279053165 + ], + [ + 77.617737546422902, + 12.9535286737819 + ], + [ + 77.617631651465203, + 12.953577255398001 + ], + [ + 77.617628575203796, + 12.953613423138201 + ], + [ + 77.617587358131999, + 12.953635204222699 + ], + [ + 77.617567924605396, + 12.953676476277799 + ], + [ + 77.617565756105293, + 12.9537218570115 + ], + [ + 77.617564655706403, + 12.9537448971644 + ], + [ + 77.617559529707407, + 12.9538248535221 + ], + [ + 77.6175224196529, + 12.9544037399906 + ], + [ + 77.617489215837594, + 12.9549216849129 + ], + [ + 77.617361573860705, + 12.9556508159244 + ], + [ + 77.617318946256702, + 12.955769564496199 + ], + [ + 77.617318633406995, + 12.9557699488844 + ], + [ + 77.617318950004204, + 12.955769923116501 + ], + [ + 77.617154400862105, + 12.956115781252301 + ], + [ + 77.617133472782101, + 12.9561550853304 + ], + [ + 77.616964376596101, + 12.956472651535501 + ], + [ + 77.616804586336798, + 12.9569126840519 + ], + [ + 77.616763831970104, + 12.957024912766199 + ], + [ + 77.616762094637707, + 12.9570246402292 + ], + [ + 77.616752000707294, + 12.9570720502157 + ], + [ + 77.6167120004353, + 12.957316050645201 + ], + [ + 77.616685000189804, + 12.9576100503426 + ], + [ + 77.616665000233994, + 12.957903050064999 + ], + [ + 77.616661000812698, + 12.9579500500799 + ], + [ + 77.616643170266201, + 12.957952323420299 + ], + [ + 77.616641291076107, + 12.9579778811128 + ], + [ + 77.616617669916494, + 12.958299156366399 + ], + [ + 77.616585201448899, + 12.9587407776121 + ], + [ + 77.616584069866306, + 12.9587561634025 + ], + [ + 77.616581311580305, + 12.958793677672601 + ], + [ + 77.616568833534501, + 12.9587940849578 + ], + [ + 77.616544299204307, + 12.9591013094588 + ], + [ + 77.616542173590105, + 12.959118269965501 + ], + [ + 77.617342283416093, + 12.958948919972601 + ], + [ + 77.617366050730894, + 12.9601076230435 + ], + [ + 77.617322317922799, + 12.9609300121519 + ], + [ + 77.617238591660296, + 12.960945469307999 + ], + [ + 77.617190932095596, + 12.961684836610299 + ], + [ + 77.617046021256598, + 12.9617221914043 + ], + [ + 77.617047953401197, + 12.9618735427249 + ], + [ + 77.617137931818505, + 12.9619113767318 + ], + [ + 77.617680000187306, + 12.962080050570099 + ], + [ + 77.617784607165206, + 12.9621135885849 + ], + [ + 77.617811000828894, + 12.9621220501488 + ], + [ + 77.617814283581495, + 12.9621230867793 + ], + [ + 77.617820778792705, + 12.9621060172794 + ], + [ + 77.618539535374794, + 12.9623324282702 + ], + [ + 77.618934630822594, + 12.9624571909712 + ], + [ + 77.618974225089801, + 12.9623621566748 + ], + [ + 77.619140082604503, + 12.961964064633801 + ], + [ + 77.619142990402494, + 12.9619570844658 + ], + [ + 77.619165406567802, + 12.961903914916601 + ], + [ + 77.619306281531095, + 12.9615697671102 + ], + [ + 77.619380618967398, + 12.9613934440489 + ], + [ + 77.619546163239505, + 12.9609897231974 + ], + [ + 77.619549633963004, + 12.9609812584665 + ], + [ + 77.619554004709599, + 12.960970599307601 + ], + [ + 77.619608432431704, + 12.9608378642001 + ], + [ + 77.619780571700403, + 12.9604180548159 + ], + [ + 77.619805990204199, + 12.9603559599781 + ], + [ + 77.619842841263207, + 12.960265812755299 + ], + [ + 77.619864359992604, + 12.9602131707893 + ], + [ + 77.619882612151699, + 12.960168519915401 + ], + [ + 77.6200368635063, + 12.9597911759528 + ], + [ + 77.620159905012898, + 12.9595008435744 + ], + [ + 77.620282898481705, + 12.959229269344901 + ], + [ + 77.6202898913577, + 12.9592138290989 + ], + [ + 77.620315520420704, + 12.959132263465101 + ], + [ + 77.620362047243404, + 12.959041280741801 + ], + [ + 77.620371616363897, + 12.959022568581 + ], + [ + 77.620455996253199, + 12.9588575653872 + ], + [ + 77.620497485315298, + 12.958796421779301 + ], + [ + 77.620519705761097, + 12.958763675044001 + ], + [ + 77.620547465198797, + 12.9587227643714 + ], + [ + 77.620605674649596, + 12.958636979743799 + ], + [ + 77.621068220961007, + 12.9580010598056 + ], + [ + 77.621113824972696, + 12.957908637237001 + ], + [ + 77.621120816347997, + 12.957894469011 + ], + [ + 77.621152783096804, + 12.9578296873959 + ], + [ + 77.6211729066667, + 12.9577427955153 + ], + [ + 77.621201804465997, + 12.9576180208067 + ], + [ + 77.621205508901497, + 12.9575336792588 + ], + [ + 77.6212143576995, + 12.957332188498 + ], + [ + 77.621199798265494, + 12.9570963171383 + ], + [ + 77.621099432388604, + 12.9565716656465 + ], + [ + 77.621095656459204, + 12.9565519269335 + ], + [ + 77.621082926695095, + 12.956501157410999 + ], + [ + 77.620986915066396, + 12.9561182516115 + ], + [ + 77.6209862259918, + 12.9561161319014 + ], + [ + 77.621187479964206, + 12.956048078767701 + ], + [ + 77.621847656675399, + 12.955687700678901 + ], + [ + 77.622177189035298, + 12.9554880223775 + ], + [ + 77.622345984644497, + 12.9553814146243 + ], + [ + 77.622502342682495, + 12.9552854676464 + ], + [ + 77.6226391559658, + 12.955223279790401 + ], + [ + 77.623062033386802, + 12.954978081958 + ], + [ + 77.623189962690603, + 12.9549087869185 + ], + [ + 77.623374749462798, + 12.9548021791653 + ], + [ + 77.623942507630204, + 12.9544092584963 + ], + [ + 77.624439099650701, + 12.954115272760401 + ], + [ + 77.624485246891894, + 12.9539084508343 + ], + [ + 77.624549211543794, + 12.953876468508399 + ], + [ + 77.624602515420406, + 12.9538569237536 + ], + [ + 77.624749989479, + 12.9537378784292 + ], + [ + 77.624785525396703, + 12.9537005657156 + ], + [ + 77.624816947071807, + 12.9536382170552 + ], + [ + 77.624788473415904, + 12.953568032178699 + ], + [ + 77.624775358502305, + 12.953464587108201 + ], + [ + 77.624764033523704, + 12.9534043904433 + ], + [ + 77.624665657517198, + 12.9527797503022 + ], + [ + 77.623593035808597, + 12.9529841717462 + ], + [ + 77.623555464962195, + 12.9527762657107 + ], + [ + 77.623542705051904, + 12.9527056540127 + ], + [ + 77.623532330962206, + 12.952648249719999 + ], + [ + 77.623531692470493, + 12.9526447156617 + ], + [ + 77.623529839864105, + 12.952640820722699 + ], + [ + 77.623528852812498, + 12.9526387455799 + ], + [ + 77.622774192453207, + 12.952795288211499 + ], + [ + 77.622459699581299, + 12.952850368883899 + ], + [ + 77.622251814462601, + 12.952898342372899 + ], + [ + 77.621692123758294, + 12.9530085037178 + ], + [ + 77.621613944739295, + 12.953014722503401 + ], + [ + 77.621256808766105, + 12.9530857943389 + ], + [ + 77.620850810906006, + 12.953149758990801 + ], + [ + 77.620427045087098, + 12.9532323799995 + ], + [ + 77.620364115034604, + 12.953240889947899 + ], + [ + 77.620373357690895, + 12.953295245094001 + ], + [ + 77.620374644453705, + 12.9533028154436 + ], + [ + 77.620388752361293, + 12.9533857834966 + ], + [ + 77.619827355883203, + 12.953494881189901 + ], + [ + 77.620069322970195, + 12.954535029364701 + ], + [ + 77.620085269786401, + 12.954532869650301 + ], + [ + 77.619712611429193, + 12.954609833777299 + ], + [ + 77.619377078194105, + 12.9533887623966 + ], + [ + 77.619765788496693, + 12.9532713134715 + ], + [ + 77.619758946174102, + 12.953199673408299 + ], + [ + 77.6197152636108, + 12.952963365506699 + ], + [ + 77.619702569225296, + 12.952894693311601 + ], + [ + 77.619668533073295, + 12.952710571024401 + ], + [ + 77.619667533756797, + 12.9527075844346 + ], + [ + 77.6196367207978, + 12.9526155323992 + ], + [ + 77.619506159435701, + 12.9522254861586 + ], + [ + 77.618985935403202, + 12.9522621378848 + ], + [ + 77.618905695857904, + 12.952267790675901 + ], + [ + 77.6188808078535, + 12.952190369419201 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "19", + "group": "Cheluvadi Palya", + "Corporatio": "Central", + "ac_no": "168", + "ac": "Chamrajapet", + "corporat_1": "1", + "ward_id": "45", + "ward_name": "45 - Cheluvadi Palya", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಾಮರಾಜಪೇಟೆ", + "ward_name_": "ಚೆಲುವಾಡಿ ಪಾಳ್ಯ", + "dig_ward_n": "Cheluvadi Palya", + "Assembly": "168 - Chamrajapet", + "Slno": "45" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.566951000187203, + 12.9631040448745 + ], + [ + 77.566832000400396, + 12.9630630444929 + ], + [ + 77.566792100346802, + 12.9630496675871 + ], + [ + 77.566721812850503, + 12.963026103086101 + ], + [ + 77.566698353496406, + 12.9630182386074 + ], + [ + 77.566679886615901, + 12.963012047774599 + ], + [ + 77.566628444670499, + 12.9629931516391 + ], + [ + 77.566536114939098, + 12.9629592367704 + ], + [ + 77.566175845903203, + 12.962826900935999 + ], + [ + 77.566173842247593, + 12.9628355197601 + ], + [ + 77.566165374056695, + 12.9628719383392 + ], + [ + 77.566158444580694, + 12.962901740213701 + ], + [ + 77.566151911273096, + 12.9629298405935 + ], + [ + 77.566089585708397, + 12.963197893550699 + ], + [ + 77.566064737876601, + 12.963304761394999 + ], + [ + 77.566050470375302, + 12.9633661200665 + ], + [ + 77.566034774489395, + 12.963433626366299 + ], + [ + 77.566025304903704, + 12.9634743543547 + ], + [ + 77.566030329628006, + 12.963585751194501 + ], + [ + 77.566033501987903, + 12.963656093504399 + ], + [ + 77.566040433338301, + 12.963658283793499 + ], + [ + 77.566047189252501, + 12.963691436252301 + ], + [ + 77.566071979184997, + 12.963813095667399 + ], + [ + 77.566074078217099, + 12.963823395116499 + ], + [ + 77.566076279131806, + 12.9638341976879 + ], + [ + 77.566092958019794, + 12.9639160469036 + ], + [ + 77.566122902533493, + 12.964019248319101 + ], + [ + 77.566133618941393, + 12.964074307109801 + ], + [ + 77.565814990273097, + 12.9640935945822 + ], + [ + 77.5655256920748, + 12.964110170660801 + ], + [ + 77.565511425892097, + 12.9641103113049 + ], + [ + 77.565482372404404, + 12.964113288678799 + ], + [ + 77.565457143264794, + 12.9641146137775 + ], + [ + 77.565426992376004, + 12.964117601964 + ], + [ + 77.565392413283405, + 12.964116866469499 + ], + [ + 77.565194980750704, + 12.964128500125399 + ], + [ + 77.565185258575696, + 12.9641436652868 + ], + [ + 77.565182541288706, + 12.9641730234404 + ], + [ + 77.565183364370299, + 12.964226565256499 + ], + [ + 77.5651566463808, + 12.9644038932167 + ], + [ + 77.5651465272678, + 12.9645945123129 + ], + [ + 77.565148143079099, + 12.964645086268099 + ], + [ + 77.565158460894494, + 12.964688039779 + ], + [ + 77.565215779469995, + 12.964712231499901 + ], + [ + 77.565230782041795, + 12.964837481925301 + ], + [ + 77.565240540153397, + 12.9648793645657 + ], + [ + 77.565254150536205, + 12.9651364853055 + ], + [ + 77.565202757265098, + 12.965101471395499 + ], + [ + 77.565193007487693, + 12.965113945883999 + ], + [ + 77.5652017758364, + 12.965219882915999 + ], + [ + 77.565206788692393, + 12.965280648991399 + ], + [ + 77.565218772063005, + 12.9653790196624 + ], + [ + 77.565303175163294, + 12.965770259104699 + ], + [ + 77.565305532693102, + 12.965786112471299 + ], + [ + 77.565343100024407, + 12.9659230438374 + ], + [ + 77.565353833579294, + 12.9659436036117 + ], + [ + 77.565396403175299, + 12.9660855266496 + ], + [ + 77.565522282000899, + 12.9665693108279 + ], + [ + 77.565528353299797, + 12.966645019679801 + ], + [ + 77.565524404997603, + 12.9666881138143 + ], + [ + 77.565494505499998, + 12.966735409072999 + ], + [ + 77.565504158906194, + 12.966736414294401 + ], + [ + 77.565601472219299, + 12.966746548245601 + ], + [ + 77.565653005620206, + 12.9667519143417 + ], + [ + 77.565681121842502, + 12.966742602557201 + ], + [ + 77.565780947844701, + 12.966764204490801 + ], + [ + 77.565888119821494, + 12.966772182140801 + ], + [ + 77.566028290993899, + 12.9667782776494 + ], + [ + 77.566057464523297, + 12.966779546579099 + ], + [ + 77.566134514408304, + 12.9667697521389 + ], + [ + 77.566192013969996, + 12.9667624091335 + ], + [ + 77.566203453320895, + 12.966758268714299 + ], + [ + 77.566222731515694, + 12.9667512900277 + ], + [ + 77.566262569140704, + 12.9667368691906 + ], + [ + 77.566271589083001, + 12.9667591063545 + ], + [ + 77.566271847084593, + 12.9667597416475 + ], + [ + 77.566290415323394, + 12.966805522575701 + ], + [ + 77.566348030102404, + 12.9669475724662 + ], + [ + 77.566424672579103, + 12.967136536155 + ], + [ + 77.566430914002297, + 12.9671519254393 + ], + [ + 77.566433408646205, + 12.9671510308068 + ], + [ + 77.566451808275701, + 12.9671444347948 + ], + [ + 77.566460115510907, + 12.9671414572842 + ], + [ + 77.566595946166103, + 12.9670927638133 + ], + [ + 77.566651190907905, + 12.9670729590293 + ], + [ + 77.566952601212193, + 12.966980518373999 + ], + [ + 77.566972644226595, + 12.966974371394 + ], + [ + 77.567020237422099, + 12.966959774545201 + ], + [ + 77.567019051282799, + 12.9669563973977 + ], + [ + 77.567039805592202, + 12.9669569090676 + ], + [ + 77.567229011696597, + 12.9669615245 + ], + [ + 77.567361059776303, + 12.9669647487395 + ], + [ + 77.567513167341204, + 12.966968462489 + ], + [ + 77.567751020066495, + 12.966975149732299 + ], + [ + 77.567750730180094, + 12.9669799363715 + ], + [ + 77.567749253078901, + 12.9670043152425 + ], + [ + 77.567747530221098, + 12.9670327539417 + ], + [ + 77.567738218782097, + 12.967186457972799 + ], + [ + 77.5677695216133, + 12.967186149037699 + ], + [ + 77.567872724971295, + 12.9671851304726 + ], + [ + 77.5679402861699, + 12.9671844636554 + ], + [ + 77.567936638684401, + 12.9672380120131 + ], + [ + 77.567934586804597, + 12.9672681388949 + ], + [ + 77.5679279522993, + 12.9673655368601 + ], + [ + 77.567926232602503, + 12.9673907800164 + ], + [ + 77.567908763644098, + 12.9676472273973 + ], + [ + 77.567903482068004, + 12.9677247550412 + ], + [ + 77.567902240244507, + 12.96774297366 + ], + [ + 77.567888707852802, + 12.967941635352 + ], + [ + 77.567883859440101, + 12.968012808357701 + ], + [ + 77.567871539084194, + 12.968193669120399 + ], + [ + 77.567870234173398, + 12.968212831565801 + ], + [ + 77.567906763812701, + 12.9682110652296 + ], + [ + 77.568045682141999, + 12.9682043491716 + ], + [ + 77.5680750980992, + 12.9682029267776 + ], + [ + 77.568076158392699, + 12.968193860111199 + ], + [ + 77.568135632861896, + 12.9681872027287 + ], + [ + 77.568154172859906, + 12.968185127884301 + ], + [ + 77.568573911384803, + 12.9681381433412 + ], + [ + 77.568629395143205, + 12.9681319327072 + ], + [ + 77.568991710312304, + 12.9680922171717 + ], + [ + 77.569030775881799, + 12.9680878408667 + ], + [ + 77.569036686880096, + 12.9680871789914 + ], + [ + 77.569251042302, + 12.968063165242301 + ], + [ + 77.569289484924099, + 12.968058859196899 + ], + [ + 77.569305570845501, + 12.968057056958401 + ], + [ + 77.569451539403204, + 12.968040704804601 + ], + [ + 77.569485189906601, + 12.968036934826999 + ], + [ + 77.569602634040393, + 12.968023778844101 + ], + [ + 77.569619766157203, + 12.9680218596465 + ], + [ + 77.569661632594503, + 12.968017169192199 + ], + [ + 77.569721969030994, + 12.9680104098915 + ], + [ + 77.569860075803803, + 12.9679949383388 + ], + [ + 77.569876164473598, + 12.9679931360391 + ], + [ + 77.569917442006798, + 12.9679885118936 + ], + [ + 77.5699354050018, + 12.9679864995441 + ], + [ + 77.570107389476803, + 12.9679672329966 + ], + [ + 77.570174667409802, + 12.967959695812301 + ], + [ + 77.570221263607706, + 12.967955847540701 + ], + [ + 77.570219748647204, + 12.967926111887101 + ], + [ + 77.570219717338901, + 12.9679261130999 + ], + [ + 77.570214758103006, + 12.9678307351485 + ], + [ + 77.570213704251202, + 12.967810465809301 + ], + [ + 77.570202122763703, + 12.967587752318201 + ], + [ + 77.570200742941395, + 12.9675612171562 + ], + [ + 77.570197483916104, + 12.9674985408598 + ], + [ + 77.570193072160905, + 12.9674025585065 + ], + [ + 77.57019169342, + 12.967375500235301 + ], + [ + 77.570183765811905, + 12.967219905912099 + ], + [ + 77.570182053340204, + 12.9671857362649 + ], + [ + 77.570178000459194, + 12.9671048705088 + ], + [ + 77.570176147721497, + 12.967067896129601 + ], + [ + 77.570173306421495, + 12.967011267013399 + ], + [ + 77.570160022760504, + 12.9667466637614 + ], + [ + 77.570159187146999, + 12.9667300611755 + ], + [ + 77.570158247599693, + 12.9667115009357 + ], + [ + 77.570154495707598, + 12.9666384109094 + ], + [ + 77.570152222401902, + 12.966594120023 + ], + [ + 77.570150630787197, + 12.966563104931501 + ], + [ + 77.570149184335605, + 12.96653492253 + ], + [ + 77.5701473498779, + 12.9664991875013 + ], + [ + 77.570145335872994, + 12.9664599624098 + ], + [ + 77.570144344223806, + 12.966440633847601 + ], + [ + 77.570141894867007, + 12.966392923331799 + ], + [ + 77.570141875200505, + 12.966392533235499 + ], + [ + 77.570140258305997, + 12.966360849839401 + ], + [ + 77.570138710464704, + 12.9663305082885 + ], + [ + 77.570134717654497, + 12.966252254707999 + ], + [ + 77.570132424729096, + 12.9662073072043 + ], + [ + 77.5701321329297, + 12.966201587631099 + ], + [ + 77.570130078934, + 12.966161337516599 + ], + [ + 77.570129442315107, + 12.9661488617326 + ], + [ + 77.570119529507906, + 12.965954580459799 + ], + [ + 77.570110858675903, + 12.9657830105023 + ], + [ + 77.570101553378294, + 12.9655965687835 + ], + [ + 77.5701015256967, + 12.9655960260831 + ], + [ + 77.570099985397903, + 12.965565160453 + ], + [ + 77.570099477004902, + 12.9655554822913 + ], + [ + 77.570096037922198, + 12.9654899691136 + ], + [ + 77.570090680982005, + 12.965387950177799 + ], + [ + 77.570082751465193, + 12.9652315960272 + ], + [ + 77.570077686514693, + 12.9651317244161 + ], + [ + 77.570077258010798, + 12.9651193296922 + ], + [ + 77.570076867331693, + 12.9651080169285 + ], + [ + 77.570070344713599, + 12.964978953864399 + ], + [ + 77.5700660290115, + 12.964893554453001 + ], + [ + 77.570058743509804, + 12.964751645527301 + ], + [ + 77.570050316759904, + 12.9645874949769 + ], + [ + 77.570041324717195, + 12.9644123369418 + ], + [ + 77.570033648753096, + 12.964262805835199 + ], + [ + 77.570030044663099, + 12.964192606269201 + ], + [ + 77.569870716754707, + 12.9641624062624 + ], + [ + 77.569453535214507, + 12.964049203541901 + ], + [ + 77.569390437795406, + 12.964025970903799 + ], + [ + 77.569352831964295, + 12.9640121236807 + ], + [ + 77.568646088233606, + 12.963751891143501 + ], + [ + 77.568479405652994, + 12.963690516013299 + ], + [ + 77.568349663114603, + 12.963642743566901 + ], + [ + 77.568276752237097, + 12.963615896089699 + ], + [ + 77.568227160868503, + 12.963802887768001 + ], + [ + 77.568217000063697, + 12.963782045123599 + ], + [ + 77.568163000420498, + 12.9637330453651 + ], + [ + 77.567929000629505, + 12.963628045130299 + ], + [ + 77.567916881789202, + 12.9636224142389 + ], + [ + 77.567887083131097, + 12.963608569245499 + ], + [ + 77.567649957418496, + 12.963498397482899 + ], + [ + 77.567604000660594, + 12.9634770451744 + ], + [ + 77.567472490323894, + 12.963316621942299 + ], + [ + 77.567463000375895, + 12.9633050447665 + ], + [ + 77.567459073560102, + 12.963303357008501 + ], + [ + 77.567356000100503, + 12.9632590449245 + ], + [ + 77.567350135404993, + 12.963256487284401 + ], + [ + 77.567253336501807, + 12.9632142743133 + ], + [ + 77.567223000737897, + 12.9632010452604 + ], + [ + 77.567130000497301, + 12.9631610452646 + ], + [ + 77.567004000710497, + 12.963121044576001 + ], + [ + 77.566951000187203, + 12.9631040448745 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "22", + "group": "Kasturbha Nagar", + "Corporatio": "Central", + "ac_no": "168", + "ac": "Chamrajapet", + "corporat_1": "1", + "ward_id": "53", + "ward_name": "53 - Kasturbha Nagar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಾಮರಾಜಪೇಟೆ", + "ward_name_": "ಕಸ್ತೂರ್ಭಾ ನಗರ", + "dig_ward_n": "Kasturbha Nagar", + "Assembly": "168 - Chamrajapet", + "Slno": "53" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.554270239624501, + 12.9517862929789 + ], + [ + 77.554151600633602, + 12.951331903978 + ], + [ + 77.554143148938607, + 12.951330804221699 + ], + [ + 77.554052417974503, + 12.951318998443099 + ], + [ + 77.553839585258899, + 12.9512913044423 + ], + [ + 77.553767815213604, + 12.950800835671901 + ], + [ + 77.5536875124631, + 12.9507731846683 + ], + [ + 77.553387293566999, + 12.950669808289501 + ], + [ + 77.553265885119998, + 12.9508290572397 + ], + [ + 77.553238578335893, + 12.950827672466099 + ], + [ + 77.553197179004997, + 12.950825572952599 + ], + [ + 77.553128479004201, + 12.9508070486514 + ], + [ + 77.552945582504805, + 12.9506552526343 + ], + [ + 77.552766748019096, + 12.950563270126001 + ], + [ + 77.552762788767396, + 12.9505684080683 + ], + [ + 77.55272640538, + 12.950615614568299 + ], + [ + 77.552699447210401, + 12.950650890632399 + ], + [ + 77.552675895189495, + 12.950681711770599 + ], + [ + 77.552671055514907, + 12.9506880445861 + ], + [ + 77.552587661105804, + 12.9507971697992 + ], + [ + 77.552490350288494, + 12.9509245069421 + ], + [ + 77.552268574638305, + 12.9512147120961 + ], + [ + 77.552255981806297, + 12.951231190871701 + ], + [ + 77.552091214802303, + 12.951446248365899 + ], + [ + 77.552023841937896, + 12.951529099198 + ], + [ + 77.552023790331006, + 12.9515290969932 + ], + [ + 77.551958729377901, + 12.951609040407201 + ], + [ + 77.551884135197099, + 12.951700903541701 + ], + [ + 77.551869333717605, + 12.951719132270201 + ], + [ + 77.5518080535237, + 12.9517945971975 + ], + [ + 77.551762634340506, + 12.951850317842601 + ], + [ + 77.551762424188496, + 12.951850576484899 + ], + [ + 77.551674428842006, + 12.9519585296456 + ], + [ + 77.5515907441129, + 12.9520622015116 + ], + [ + 77.551583461249905, + 12.95207122437 + ], + [ + 77.551477194941697, + 12.951981919051899 + ], + [ + 77.551469826314204, + 12.951993284524301 + ], + [ + 77.551463044848404, + 12.9520057735738 + ], + [ + 77.551368911345605, + 12.952090266028501 + ], + [ + 77.551322443596305, + 12.952106531809701 + ], + [ + 77.551296643678498, + 12.9521125675974 + ], + [ + 77.551211593517607, + 12.9521324628488 + ], + [ + 77.551160866141601, + 12.9521261837422 + ], + [ + 77.551105661156797, + 12.9521064362823 + ], + [ + 77.551093260571903, + 12.952102001574101 + ], + [ + 77.551053584389294, + 12.952093200149401 + ], + [ + 77.551027505666497, + 12.952087415015299 + ], + [ + 77.550990108968307, + 12.952079119780301 + ], + [ + 77.550898226433503, + 12.952058738586 + ], + [ + 77.550824817411396, + 12.9520865605287 + ], + [ + 77.550723384794495, + 12.9521327270699 + ], + [ + 77.550718323612898, + 12.9521328724017 + ], + [ + 77.550483954645998, + 12.952139589044201 + ], + [ + 77.5503237547005, + 12.952163097421799 + ], + [ + 77.549976234003907, + 12.952214093559199 + ], + [ + 77.549849925082995, + 12.9522326287595 + ], + [ + 77.549694793863196, + 12.952255393287199 + ], + [ + 77.549502663464295, + 12.9522835874289 + ], + [ + 77.549463265410594, + 12.952290805073 + ], + [ + 77.549461307922897, + 12.9522911639362 + ], + [ + 77.549237218887896, + 12.9523322153187 + ], + [ + 77.549131438941203, + 12.952351592762099 + ], + [ + 77.549130393690504, + 12.9523511657152 + ], + [ + 77.549123345156005, + 12.9523482830809 + ], + [ + 77.549132013591603, + 12.952423645673599 + ], + [ + 77.549156820548703, + 12.9526393237064 + ], + [ + 77.549171689501307, + 12.952766760031899 + ], + [ + 77.549187094178805, + 12.952898772578401 + ], + [ + 77.549187704323401, + 12.952902155502199 + ], + [ + 77.549215204998006, + 12.9531717963769 + ], + [ + 77.549216507928193, + 12.9531844203829 + ], + [ + 77.549218348433598, + 12.9532022575384 + ], + [ + 77.5492294036695, + 12.953309392379699 + ], + [ + 77.549234681835699, + 12.953360532824799 + ], + [ + 77.549234987385702, + 12.9533634931978 + ], + [ + 77.549237558555006, + 12.953388409073099 + ], + [ + 77.5492385723186, + 12.953402488679799 + ], + [ + 77.549241954742897, + 12.9534494646391 + ], + [ + 77.549242010479503, + 12.953450234748701 + ], + [ + 77.549242922264796, + 12.9534628923968 + ], + [ + 77.549246387182706, + 12.9535099181421 + ], + [ + 77.549246390396405, + 12.9535099623804 + ], + [ + 77.549250942120693, + 12.9535717274492 + ], + [ + 77.549251437989895, + 12.9535784543096 + ], + [ + 77.549259375560197, + 12.953686171676001 + ], + [ + 77.5492606355905, + 12.9537032691533 + ], + [ + 77.549260699679607, + 12.953704135851901 + ], + [ + 77.549263130025906, + 12.9537371183315 + ], + [ + 77.549263629137798, + 12.953743892140199 + ], + [ + 77.549264273760301, + 12.9537506627175 + ], + [ + 77.549269678153394, + 12.953886984169801 + ], + [ + 77.549271680821803, + 12.953937501660199 + ], + [ + 77.549271709296306, + 12.953938217828799 + ], + [ + 77.549273222275701, + 12.953976369876401 + ], + [ + 77.549274343848595, + 12.954004663536701 + ], + [ + 77.549274629489801, + 12.9540117321573 + ], + [ + 77.549276840835404, + 12.954066371015999 + ], + [ + 77.549277687753801, + 12.954087317680999 + ], + [ + 77.549278091061396, + 12.954097259070201 + ], + [ + 77.549284498988996, + 12.954255609805401 + ], + [ + 77.549287713476701, + 12.9543350488805 + ], + [ + 77.549288185926002, + 12.9543467152097 + ], + [ + 77.549294990356501, + 12.9543929502503 + ], + [ + 77.549345005749998, + 12.954723231607799 + ], + [ + 77.549346219452602, + 12.9547312488143 + ], + [ + 77.549577898067895, + 12.9547111860289 + ], + [ + 77.549581483770297, + 12.9547108762698 + ], + [ + 77.549567276827602, + 12.954729084648401 + ], + [ + 77.549533224632896, + 12.954770402787901 + ], + [ + 77.549509367265998, + 12.9547993520691 + ], + [ + 77.549460735328694, + 12.954858365447601 + ], + [ + 77.549429314627105, + 12.954896492077401 + ], + [ + 77.549356270183296, + 12.954985126911801 + ], + [ + 77.549307377912299, + 12.955044453614001 + ], + [ + 77.549291824914306, + 12.9550694312684 + ], + [ + 77.549215404967697, + 12.9551921651562 + ], + [ + 77.549199635346696, + 12.9552174918591 + ], + [ + 77.549196925353002, + 12.9552218441763 + ], + [ + 77.5491937449614, + 12.9552269518773 + ], + [ + 77.549192044643107, + 12.9552296825297 + ], + [ + 77.549190344315605, + 12.9552324122788 + ], + [ + 77.549190155793596, + 12.9552327149779 + ], + [ + 77.549090620123593, + 12.9553925735304 + ], + [ + 77.548969195860593, + 12.9555875842084 + ], + [ + 77.548913938215307, + 12.955683128932 + ], + [ + 77.548467351246103, + 12.9564553051554 + ], + [ + 77.548405175976796, + 12.956568845896999 + ], + [ + 77.548441918394602, + 12.956576506342699 + ], + [ + 77.548720771083893, + 12.956634646061501 + ], + [ + 77.548855871818205, + 12.9566562661636 + ], + [ + 77.549180215865405, + 12.956708171534 + ], + [ + 77.549345883002601, + 12.956734683413501 + ], + [ + 77.549520621923193, + 12.956763464394299 + ], + [ + 77.549575257665595, + 12.956772164620199 + ], + [ + 77.549590618231804, + 12.9567746107657 + ], + [ + 77.5497143829664, + 12.9567943176369 + ], + [ + 77.549763971475898, + 12.9568017373467 + ], + [ + 77.550029264765897, + 12.9568465711261 + ], + [ + 77.550394309905599, + 12.956906238162 + ], + [ + 77.550447567531506, + 12.956918278245199 + ], + [ + 77.550571147164206, + 12.9569462152421 + ], + [ + 77.550677641199997, + 12.9569702901052 + ], + [ + 77.550748626153407, + 12.9569863376868 + ], + [ + 77.551202176243393, + 12.957086921620499 + ], + [ + 77.551496659712598, + 12.9571722428683 + ], + [ + 77.551687396481896, + 12.9572275619403 + ], + [ + 77.551687491638504, + 12.957227589015099 + ], + [ + 77.552119730963, + 12.957353485471 + ], + [ + 77.552147858823503, + 12.9573616083433 + ], + [ + 77.552150372732498, + 12.957362334478599 + ], + [ + 77.552195374543302, + 12.957375330551701 + ], + [ + 77.552235956100802, + 12.9573870147526 + ], + [ + 77.552317752088001, + 12.957410565753101 + ], + [ + 77.552441935837606, + 12.9574463198401 + ], + [ + 77.552449454140302, + 12.9574496341183 + ], + [ + 77.552701156591198, + 12.9575438486276 + ], + [ + 77.552722973974994, + 12.957552015232199 + ], + [ + 77.552867911547295, + 12.9576062663683 + ], + [ + 77.552887530921097, + 12.9576136097721 + ], + [ + 77.552913539899095, + 12.9576235177892 + ], + [ + 77.552953024377501, + 12.957638362994 + ], + [ + 77.553005872863096, + 12.957658232301601 + ], + [ + 77.553060256390495, + 12.9576786792154 + ], + [ + 77.553070586395194, + 12.9576825621861 + ], + [ + 77.553081315891106, + 12.9576865966343 + ], + [ + 77.553090490005303, + 12.9576900455322 + ], + [ + 77.553116373756893, + 12.957699776771999 + ], + [ + 77.553191573602604, + 12.9577280494929 + ], + [ + 77.553200300157101, + 12.9577313302141 + ], + [ + 77.553301719459299, + 12.957769460932299 + ], + [ + 77.553350063692207, + 12.957787636976301 + ], + [ + 77.5534521876573, + 12.9578260317552 + ], + [ + 77.553498425920395, + 12.957843647496301 + ], + [ + 77.553691023667596, + 12.9579162615124 + ], + [ + 77.553780977556301, + 12.957950176895899 + ], + [ + 77.553922197499006, + 12.9580034203292 + ], + [ + 77.553953854661998, + 12.9580153552995 + ], + [ + 77.553967747395205, + 12.9580197417433 + ], + [ + 77.554021689039004, + 12.958036771354401 + ], + [ + 77.554147800264602, + 12.9580765856483 + ], + [ + 77.554208826458606, + 12.958095852249601 + ], + [ + 77.554447198798101, + 12.9581711081888 + ], + [ + 77.554458184164801, + 12.9581745763023 + ], + [ + 77.554488128463902, + 12.9581840299356 + ], + [ + 77.5544882356687, + 12.958184064118701 + ], + [ + 77.554580475601298, + 12.958008394853699 + ], + [ + 77.554597836130597, + 12.957956931421799 + ], + [ + 77.554608790196298, + 12.957924461066799 + ], + [ + 77.554636264303298, + 12.9578430200441 + ], + [ + 77.554637312219896, + 12.957839912697899 + ], + [ + 77.5546437714614, + 12.9578207664181 + ], + [ + 77.554710442607799, + 12.957623132461601 + ], + [ + 77.554817954086403, + 12.95730443515 + ], + [ + 77.554819168307006, + 12.9573008346892 + ], + [ + 77.5548225624472, + 12.957290774776499 + ], + [ + 77.554826270421302, + 12.9572797839299 + ], + [ + 77.554826392029398, + 12.957279424062699 + ], + [ + 77.554833501262607, + 12.957258348840099 + ], + [ + 77.554835656119494, + 12.957251961007501 + ], + [ + 77.554847181465902, + 12.957217794670999 + ], + [ + 77.554853456498293, + 12.9571991949854 + ], + [ + 77.554857172502096, + 12.9571881787632 + ], + [ + 77.554884079638697, + 12.957108421029099 + ], + [ + 77.554889551711895, + 12.957092199000099 + ], + [ + 77.554930520796702, + 12.956970754024701 + ], + [ + 77.554951607409507, + 12.9569268819473 + ], + [ + 77.554953847010694, + 12.956920584532501 + ], + [ + 77.554994648947996, + 12.9568058755924 + ], + [ + 77.554997169674607, + 12.9567988725265 + ], + [ + 77.555000751916197, + 12.956788921893301 + ], + [ + 77.555003648887293, + 12.9567808752522 + ], + [ + 77.555029998086596, + 12.9567043131115 + ], + [ + 77.555045157029298, + 12.9566602679142 + ], + [ + 77.555047002678805, + 12.9566549040262 + ], + [ + 77.5550566487738, + 12.956626875269199 + ], + [ + 77.555059762796603, + 12.956617711627599 + ], + [ + 77.555074693554104, + 12.9565737834088 + ], + [ + 77.555099091597398, + 12.956501998038201 + ], + [ + 77.555106198771298, + 12.956481085458201 + ], + [ + 77.555108649214006, + 12.956473875285999 + ], + [ + 77.555118295074394, + 12.9564452827717 + ], + [ + 77.555153280503106, + 12.9563415754294 + ], + [ + 77.555164649343695, + 12.956307875909999 + ], + [ + 77.555171485557494, + 12.9562870409761 + ], + [ + 77.555218242907998, + 12.9561445436753 + ], + [ + 77.555244386148601, + 12.956064868422301 + ], + [ + 77.555259300599701, + 12.9560183040346 + ], + [ + 77.555261983444396, + 12.956010127589201 + ], + [ + 77.555297704947705, + 12.956018431826401 + ], + [ + 77.555300334468797, + 12.956019295027 + ], + [ + 77.555313487768501, + 12.9560238982738 + ], + [ + 77.555338295527704, + 12.955964767450601 + ], + [ + 77.555265380488905, + 12.9556531592265 + ], + [ + 77.555107401711496, + 12.9550532894407 + ], + [ + 77.555104490893498, + 12.955041103212601 + ], + [ + 77.554811556757201, + 12.9550679181283 + ], + [ + 77.554290675741598, + 12.954967150614801 + ], + [ + 77.554216169216403, + 12.9549452704992 + ], + [ + 77.554243637367094, + 12.9546166190965 + ], + [ + 77.554269862722506, + 12.9541317119319 + ], + [ + 77.553724092021099, + 12.954172491809899 + ], + [ + 77.553698944429598, + 12.953143479553599 + ], + [ + 77.553724771680706, + 12.953089106381499 + ], + [ + 77.553762832905306, + 12.9527676250108 + ], + [ + 77.553827740877793, + 12.9525294025565 + ], + [ + 77.553975541827796, + 12.952536884799001 + ], + [ + 77.554140658545293, + 12.952273512139801 + ], + [ + 77.554333071533506, + 12.9520233922362 + ], + [ + 77.554401037996897, + 12.951896974614201 + ], + [ + 77.554296569764503, + 12.9518873109895 + ], + [ + 77.554294657490701, + 12.9518798147505 + ], + [ + 77.554270239624501, + 12.9517862929789 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "20", + "group": "JJR Nagara", + "Corporatio": "Central", + "ac_no": "168", + "ac": "Chamrajapet", + "corporat_1": "1", + "ward_id": "52", + "ward_name": "52 - JJR Nagara", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಾಮರಾಜಪೇಟೆ", + "ward_name_": "ಜೆಜೆಆರ್ ನಗರ", + "dig_ward_n": "JJR Nagara", + "Assembly": "168 - Chamrajapet", + "Slno": "52" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.551324767883102, + 12.961819231217399 + ], + [ + 77.551342600154101, + 12.9618104199754 + ], + [ + 77.551421174530404, + 12.9617562570558 + ], + [ + 77.551554674684496, + 12.961695991271901 + ], + [ + 77.55158551964, + 12.961902951016601 + ], + [ + 77.551594362889503, + 12.9619012981991 + ], + [ + 77.551688735806806, + 12.962353614243 + ], + [ + 77.5516922345968, + 12.962376723610801 + ], + [ + 77.551753404413901, + 12.962385219418699 + ], + [ + 77.551893860956696, + 12.9630487182755 + ], + [ + 77.551933955371595, + 12.9631556082006 + ], + [ + 77.551928757889598, + 12.963155959114101 + ], + [ + 77.551928916566396, + 12.963156614375199 + ], + [ + 77.551985849718804, + 12.9633870450897 + ], + [ + 77.552019832950606, + 12.963514822041001 + ], + [ + 77.552087799413997, + 12.963725518077601 + ], + [ + 77.552101392706703, + 12.963793484541 + ], + [ + 77.552185476823496, + 12.9641119069881 + ], + [ + 77.552192560302103, + 12.9641320744665 + ], + [ + 77.552266523658005, + 12.964361683112401 + ], + [ + 77.552309370084799, + 12.964482664480199 + ], + [ + 77.5526425626677, + 12.9644404335635 + ], + [ + 77.552697815320798, + 12.9644371034932 + ], + [ + 77.552702113752403, + 12.9644368444975 + ], + [ + 77.552732000231103, + 12.9644350434505 + ], + [ + 77.552751000788504, + 12.964434043045101 + ], + [ + 77.552763972975796, + 12.964433037628501 + ], + [ + 77.552790811126002, + 12.964430957493899 + ], + [ + 77.552973124050894, + 12.9644168286113 + ], + [ + 77.553151000262304, + 12.964403043082299 + ], + [ + 77.553155047745307, + 12.964402746789 + ], + [ + 77.553192000720202, + 12.9644000433687 + ], + [ + 77.55320683715, + 12.9643984712391 + ], + [ + 77.553322121989893, + 12.9643862555533 + ], + [ + 77.553343000467194, + 12.964384043207501 + ], + [ + 77.553357823377596, + 12.964381778247301 + ], + [ + 77.553430422172397, + 12.9643706869449 + ], + [ + 77.553462991001595, + 12.964365710933899 + ], + [ + 77.553509367327905, + 12.9643586262751 + ], + [ + 77.553539663419798, + 12.9643539978021 + ], + [ + 77.553559000526704, + 12.964351043463999 + ], + [ + 77.5536270006873, + 12.9643400433108 + ], + [ + 77.553628092131802, + 12.9643400262763 + ], + [ + 77.553658264020797, + 12.964339567578801 + ], + [ + 77.553781714689094, + 12.9643376866652 + ], + [ + 77.553797274972794, + 12.9643374499427 + ], + [ + 77.553824000268506, + 12.9643370431184 + ], + [ + 77.553825232530102, + 12.964336833167501 + ], + [ + 77.553827696141397, + 12.964336414178 + ], + [ + 77.553843715578793, + 12.9643336884289 + ], + [ + 77.553850120601396, + 12.964332599240199 + ], + [ + 77.553890046901699, + 12.964325807293999 + ], + [ + 77.553928286649196, + 12.9643193020287 + ], + [ + 77.554064999937907, + 12.964296043229799 + ], + [ + 77.554307152599804, + 12.9642409387302 + ], + [ + 77.554377000371005, + 12.9642250433755 + ], + [ + 77.554501999960806, + 12.9641960431083 + ], + [ + 77.554549489911196, + 12.9642043025587 + ], + [ + 77.554616000380804, + 12.9642158689659 + ], + [ + 77.554640000522198, + 12.9642200431562 + ], + [ + 77.554882920367504, + 12.9642939904071 + ], + [ + 77.554883246511807, + 12.9640033623569 + ], + [ + 77.554946005911503, + 12.963988166574699 + ], + [ + 77.554956482102895, + 12.963969362781601 + ], + [ + 77.554959718840607, + 12.9639635533754 + ], + [ + 77.5550040754908, + 12.9639058393344 + ], + [ + 77.5550386484108, + 12.9638253089736 + ], + [ + 77.555101341021796, + 12.963691235981001 + ], + [ + 77.555152179675602, + 12.9635934820554 + ], + [ + 77.555232452069106, + 12.963439127364699 + ], + [ + 77.555237365329404, + 12.963429524129401 + ], + [ + 77.555283861002906, + 12.963346868732399 + ], + [ + 77.555319284459301, + 12.963282475830701 + ], + [ + 77.555366510480795, + 12.963218505233501 + ], + [ + 77.555422465781206, + 12.9631092406234 + ], + [ + 77.555452054860595, + 12.9630391090072 + ], + [ + 77.555457150342704, + 12.9630307534664 + ], + [ + 77.555470425505405, + 12.9630096258023 + ], + [ + 77.555477980874002, + 12.9629976006463 + ], + [ + 77.555509272001899, + 12.9629478009515 + ], + [ + 77.5555554483782, + 12.962875597452401 + ], + [ + 77.555587589971907, + 12.962843269031699 + ], + [ + 77.555623189460107, + 12.9627876033218 + ], + [ + 77.555653588031703, + 12.9627400719364 + ], + [ + 77.555655781370305, + 12.962736641644399 + ], + [ + 77.555668336647997, + 12.962717008139499 + ], + [ + 77.555670893582203, + 12.962713009614699 + ], + [ + 77.555937200962006, + 12.962296594510301 + ], + [ + 77.556166407678205, + 12.9619381915979 + ], + [ + 77.556245826687004, + 12.961819267104699 + ], + [ + 77.556300316287604, + 12.961737671745899 + ], + [ + 77.556391435878496, + 12.961601226263101 + ], + [ + 77.556867828621293, + 12.9608588632621 + ], + [ + 77.556947649849405, + 12.960739334817699 + ], + [ + 77.557048995922798, + 12.960587573611001 + ], + [ + 77.557098287098199, + 12.960513762848199 + ], + [ + 77.557104850345397, + 12.960440705779 + ], + [ + 77.556922845364099, + 12.9603288493057 + ], + [ + 77.556896855130802, + 12.9603128766634 + ], + [ + 77.5568700055519, + 12.960293847924699 + ], + [ + 77.556679959722103, + 12.9601591602986 + ], + [ + 77.556628269587904, + 12.960122533081799 + ], + [ + 77.556467624512905, + 12.960008702871299 + ], + [ + 77.556310542674595, + 12.9598973970448 + ], + [ + 77.556184916428705, + 12.959773275627899 + ], + [ + 77.555896429011298, + 12.959487001076599 + ], + [ + 77.555883050099396, + 12.959473580533 + ], + [ + 77.555811688490493, + 12.9594028400575 + ], + [ + 77.555733879787297, + 12.9593257094336 + ], + [ + 77.555664375722102, + 12.959256809986901 + ], + [ + 77.555640514423303, + 12.959233156748599 + ], + [ + 77.555485774947002, + 12.95900323185 + ], + [ + 77.555451679234594, + 12.9589525698205 + ], + [ + 77.555440508241105, + 12.958935970881001 + ], + [ + 77.555427925799293, + 12.9589172753121 + ], + [ + 77.555415727787803, + 12.9588991505696 + ], + [ + 77.555387279800001, + 12.958856880442999 + ], + [ + 77.555364388786899, + 12.9588228676015 + ], + [ + 77.555345169051293, + 12.9587943090498 + ], + [ + 77.555328105316704, + 12.9587689537838 + ], + [ + 77.555327169024395, + 12.958767562610401 + ], + [ + 77.555303495162804, + 12.958732298924099 + ], + [ + 77.555288503621696, + 12.9587099679761 + ], + [ + 77.555283232680694, + 12.9587021162402 + ], + [ + 77.555204398760793, + 12.958584687561 + ], + [ + 77.555116942759796, + 12.9585079793129 + ], + [ + 77.554892437898602, + 12.9583110644007 + ], + [ + 77.554674782613603, + 12.958242677018699 + ], + [ + 77.554615080672903, + 12.9582239188427 + ], + [ + 77.554577511789802, + 12.9582121151509 + ], + [ + 77.5544882356687, + 12.958184064118701 + ], + [ + 77.554488128463902, + 12.9581840299356 + ], + [ + 77.554458184164801, + 12.9581745763023 + ], + [ + 77.554447198798101, + 12.9581711081888 + ], + [ + 77.554208826458606, + 12.958095852249601 + ], + [ + 77.554147800264602, + 12.9580765856483 + ], + [ + 77.554021689039004, + 12.958036771354401 + ], + [ + 77.553967747395205, + 12.9580197417433 + ], + [ + 77.553953854661998, + 12.9580153552995 + ], + [ + 77.553922197499006, + 12.9580034203292 + ], + [ + 77.553780977556301, + 12.957950176895899 + ], + [ + 77.553691023667596, + 12.9579162615124 + ], + [ + 77.553498425920395, + 12.957843647496301 + ], + [ + 77.5534521876573, + 12.9578260317552 + ], + [ + 77.553350063692207, + 12.957787636976301 + ], + [ + 77.553301719459299, + 12.957769460932299 + ], + [ + 77.553200300157101, + 12.9577313302141 + ], + [ + 77.553191573602604, + 12.9577280494929 + ], + [ + 77.553116373756893, + 12.957699776771999 + ], + [ + 77.553090490005303, + 12.9576900455322 + ], + [ + 77.553081315891106, + 12.9576865966343 + ], + [ + 77.553070586395194, + 12.9576825621861 + ], + [ + 77.553060256390495, + 12.9576786792154 + ], + [ + 77.553005872863096, + 12.957658232301601 + ], + [ + 77.552953024377501, + 12.957638362994 + ], + [ + 77.552913539899095, + 12.9576235177892 + ], + [ + 77.552887530921097, + 12.9576136097721 + ], + [ + 77.552867911547295, + 12.9576062663683 + ], + [ + 77.552722973974994, + 12.957552015232199 + ], + [ + 77.552701156591198, + 12.9575438486276 + ], + [ + 77.552449454140302, + 12.9574496341183 + ], + [ + 77.552441935837606, + 12.9574463198401 + ], + [ + 77.552317752088001, + 12.957410565753101 + ], + [ + 77.552235956100802, + 12.9573870147526 + ], + [ + 77.552195374543302, + 12.957375330551701 + ], + [ + 77.552150372732498, + 12.957362334478599 + ], + [ + 77.552147858823503, + 12.9573616083433 + ], + [ + 77.552119730963, + 12.957353485471 + ], + [ + 77.551687491638504, + 12.957227589015099 + ], + [ + 77.551687396481896, + 12.9572275619403 + ], + [ + 77.551496659712598, + 12.9571722428683 + ], + [ + 77.551202176243393, + 12.957086921620499 + ], + [ + 77.550748626153407, + 12.9569863376868 + ], + [ + 77.550677641199997, + 12.9569702901052 + ], + [ + 77.550571147164206, + 12.9569462152421 + ], + [ + 77.550447567531506, + 12.956918278245199 + ], + [ + 77.550394309905599, + 12.956906238162 + ], + [ + 77.550029264765897, + 12.9568465711261 + ], + [ + 77.549763971475898, + 12.9568017373467 + ], + [ + 77.5497143829664, + 12.9567943176369 + ], + [ + 77.549590618231804, + 12.9567746107657 + ], + [ + 77.549575257665595, + 12.956772164620199 + ], + [ + 77.549520621923193, + 12.956763464394299 + ], + [ + 77.549345883002601, + 12.956734683413501 + ], + [ + 77.549180215865405, + 12.956708171534 + ], + [ + 77.548855871818205, + 12.9566562661636 + ], + [ + 77.548720771083893, + 12.956634646061501 + ], + [ + 77.548441918394602, + 12.956576506342699 + ], + [ + 77.548405175976796, + 12.956568845896999 + ], + [ + 77.548392446551702, + 12.956591956437901 + ], + [ + 77.5483757827364, + 12.956622213044 + ], + [ + 77.548253144405905, + 12.956844037650299 + ], + [ + 77.548235220309806, + 12.9568764586407 + ], + [ + 77.548166338756204, + 12.9570010493211 + ], + [ + 77.548068808018797, + 12.9571774603415 + ], + [ + 77.548027913778299, + 12.957251198424499 + ], + [ + 77.547913898711798, + 12.9574567918493 + ], + [ + 77.547788771827896, + 12.957682897850599 + ], + [ + 77.547727900276101, + 12.9577928941256 + ], + [ + 77.547690550465106, + 12.957860466588199 + ], + [ + 77.547591081166303, + 12.9580404272502 + ], + [ + 77.547243975359095, + 12.9586683440827 + ], + [ + 77.547237758659605, + 12.958679698228 + ], + [ + 77.547122425175601, + 12.9589059413769 + ], + [ + 77.5470988978756, + 12.9589520965311 + ], + [ + 77.547092863146801, + 12.958962957409399 + ], + [ + 77.547083255205905, + 12.958980253398099 + ], + [ + 77.546872409234695, + 12.9593597950398 + ], + [ + 77.546869915184899, + 12.9593642834642 + ], + [ + 77.546868945425501, + 12.959366028509301 + ], + [ + 77.546865283462196, + 12.9593726144622 + ], + [ + 77.546864320906195, + 12.959374343174501 + ], + [ + 77.546863079744199, + 12.959376575132501 + ], + [ + 77.546718646901098, + 12.9596362881034 + ], + [ + 77.546633877585094, + 12.959788716246701 + ], + [ + 77.546631211634704, + 12.959793512626799 + ], + [ + 77.5466267933529, + 12.959801455755199 + ], + [ + 77.546622279763795, + 12.959810534569 + ], + [ + 77.546378570720094, + 12.960280440568001 + ], + [ + 77.546371839863795, + 12.960293418746 + ], + [ + 77.546371095406201, + 12.960294854408099 + ], + [ + 77.546370426813994, + 12.9602961411597 + ], + [ + 77.546379765776194, + 12.9602961383444 + ], + [ + 77.546414034729196, + 12.960293409837099 + ], + [ + 77.546484928961405, + 12.9602877653276 + ], + [ + 77.547195061060606, + 12.9602312271477 + ], + [ + 77.548122378617407, + 12.9601038255869 + ], + [ + 77.548122726712094, + 12.960104538627199 + ], + [ + 77.548380015879502, + 12.9606319770122 + ], + [ + 77.548445235488899, + 12.960794393089399 + ], + [ + 77.548461656411803, + 12.9608352848505 + ], + [ + 77.548515482095794, + 12.9608488375129 + ], + [ + 77.5488125345681, + 12.9608550810156 + ], + [ + 77.550255926865702, + 12.960930193018999 + ], + [ + 77.550261356457, + 12.960930475910899 + ], + [ + 77.550321802812505, + 12.9609341778414 + ], + [ + 77.5503252557357, + 12.9609343897526 + ], + [ + 77.5503530237972, + 12.9609360899468 + ], + [ + 77.550362356158004, + 12.9609363436323 + ], + [ + 77.550362550582605, + 12.9609363489551 + ], + [ + 77.5503798451211, + 12.960936819156201 + ], + [ + 77.550383545635597, + 12.9609369202251 + ], + [ + 77.550682464178806, + 12.960891076749 + ], + [ + 77.550829117804895, + 12.960853722455999 + ], + [ + 77.550868431486805, + 12.9608437089865 + ], + [ + 77.550915574264906, + 12.960831700734699 + ], + [ + 77.550937727487096, + 12.9608260583373 + ], + [ + 77.550945604373197, + 12.9608240522497 + ], + [ + 77.550962485501202, + 12.960819751662401 + ], + [ + 77.550968714970793, + 12.9608181646636 + ], + [ + 77.5509914112031, + 12.960812384131399 + ], + [ + 77.551010253822696, + 12.9608072078353 + ], + [ + 77.551015251087804, + 12.9608058352872 + ], + [ + 77.551019899276099, + 12.960804558313299 + ], + [ + 77.551028550784395, + 12.9608021814397 + ], + [ + 77.551031188129201, + 12.960801457215799 + ], + [ + 77.551036665828093, + 12.9607999525706 + ], + [ + 77.551036996978596, + 12.9608013524032 + ], + [ + 77.551048768365703, + 12.9608749939501 + ], + [ + 77.551103379840498, + 12.9612166344725 + ], + [ + 77.551215110023406, + 12.961563165043501 + ], + [ + 77.551227485449601, + 12.961598863760999 + ], + [ + 77.551228703316099, + 12.961598507604499 + ], + [ + 77.551324767883102, + 12.961819231217399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "23", + "group": "Padarayanapura", + "Corporatio": "Central", + "ac_no": "168", + "ac": "Chamrajapet", + "corporat_1": "1", + "ward_id": "50", + "ward_name": "50 - Padarayanapura", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಾಮರಾಜಪೇಟೆ", + "ward_name_": "ಪಾದರಾಯನಪುರ", + "dig_ward_n": "Padarayanapura", + "Assembly": "168 - Chamrajapet", + "Slno": "50" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.551324767883102, + 12.961819231217399 + ], + [ + 77.551228703316099, + 12.961598507604499 + ], + [ + 77.551227485449601, + 12.961598863760999 + ], + [ + 77.551069661791701, + 12.961636568824 + ], + [ + 77.550888870998904, + 12.9616821063545 + ], + [ + 77.550404609946995, + 12.9617826967204 + ], + [ + 77.550367819398204, + 12.961792184003199 + ], + [ + 77.550351433022897, + 12.961796409246899 + ], + [ + 77.550340869739102, + 12.9617991219529 + ], + [ + 77.550308032130999, + 12.9618075360298 + ], + [ + 77.550266428346305, + 12.9618181979834 + ], + [ + 77.550204955725604, + 12.9618339549911 + ], + [ + 77.549787814291307, + 12.961937660257 + ], + [ + 77.549618119933299, + 12.962017531846801 + ], + [ + 77.549593874332302, + 12.9620289433918 + ], + [ + 77.549566247779097, + 12.9620605994436 + ], + [ + 77.549462000555593, + 12.9621470426884 + ], + [ + 77.549301000159105, + 12.962312042775499 + ], + [ + 77.5492473918044, + 12.9623510752977 + ], + [ + 77.549196642151799, + 12.962360731684999 + ], + [ + 77.548624228437305, + 12.9624813919645 + ], + [ + 77.5488539550837, + 12.9636069165989 + ], + [ + 77.549041542522801, + 12.964550291111401 + ], + [ + 77.549064651120304, + 12.9646726307455 + ], + [ + 77.548843080449501, + 12.9647868144041 + ], + [ + 77.548835947063395, + 12.9647902912373 + ], + [ + 77.548813655005702, + 12.964801156906899 + ], + [ + 77.548796544783897, + 12.964809497232499 + ], + [ + 77.548768151490407, + 12.964823337233501 + ], + [ + 77.5487397344735, + 12.964862620824199 + ], + [ + 77.5487028855581, + 12.964913562182 + ], + [ + 77.548688171061102, + 12.9649339041472 + ], + [ + 77.548681901175399, + 12.9649425710532 + ], + [ + 77.548605767813896, + 12.965047819525701 + ], + [ + 77.548505688775904, + 12.965142870564501 + ], + [ + 77.548502911746198, + 12.9651467094782 + ], + [ + 77.548502976720698, + 12.965146757628901 + ], + [ + 77.548506910082907, + 12.965149635489601 + ], + [ + 77.548550076616905, + 12.9651792971835 + ], + [ + 77.548592055721002, + 12.965208143828299 + ], + [ + 77.548625718039403, + 12.965231274391099 + ], + [ + 77.548626064991296, + 12.965231512217899 + ], + [ + 77.548662712638205, + 12.965256694213799 + ], + [ + 77.548790461814704, + 12.965344476639199 + ], + [ + 77.5488117366572, + 12.9653590959059 + ], + [ + 77.548814787850304, + 12.9653611927739 + ], + [ + 77.548860398652707, + 12.9653987484207 + ], + [ + 77.548943149742797, + 12.9654668866026 + ], + [ + 77.548982864251101, + 12.9654995869414 + ], + [ + 77.549050434679103, + 12.9655552234812 + ], + [ + 77.549090489240101, + 12.965588205058401 + ], + [ + 77.549090648102904, + 12.9655883363114 + ], + [ + 77.549103961534797, + 12.965599298619299 + ], + [ + 77.549115856394096, + 12.9656090930925 + ], + [ + 77.549217406771305, + 12.9656927094445 + ], + [ + 77.549298166270503, + 12.9657592064226 + ], + [ + 77.549340569390694, + 12.965794120939 + ], + [ + 77.549406954574096, + 12.9658487814834 + ], + [ + 77.549411398899593, + 12.9658524412372 + ], + [ + 77.5495838162213, + 12.965994408928401 + ], + [ + 77.549585794058402, + 12.965996037466301 + ], + [ + 77.549623765939899, + 12.9660273037889 + ], + [ + 77.549639557986893, + 12.9660403070916 + ], + [ + 77.549654691379502, + 12.9660527684446 + ], + [ + 77.549700397189497, + 12.966090402471499 + ], + [ + 77.549724389514097, + 12.9661101574042 + ], + [ + 77.549796851463796, + 12.966169823087499 + ], + [ + 77.549799622663102, + 12.966172104280499 + ], + [ + 77.549826143748504, + 12.9661939422008 + ], + [ + 77.549952886283407, + 12.9662983005654 + ], + [ + 77.5499608329566, + 12.9663048441701 + ], + [ + 77.549987733087207, + 12.966326992759299 + ], + [ + 77.549999146798399, + 12.9663363916604 + ], + [ + 77.550002569234593, + 12.966339209449799 + ], + [ + 77.550010529846702, + 12.9663457646609 + ], + [ + 77.550063128026295, + 12.966389074372801 + ], + [ + 77.550094588778407, + 12.9664290044847 + ], + [ + 77.550144882142206, + 12.966492837247699 + ], + [ + 77.550381109880504, + 12.9667926625217 + ], + [ + 77.550437054418595, + 12.966863668415 + ], + [ + 77.550437703985693, + 12.9668644932337 + ], + [ + 77.550507231507893, + 12.9669527368424 + ], + [ + 77.550511137294805, + 12.966957694705499 + ], + [ + 77.550614066128603, + 12.967088334706199 + ], + [ + 77.550745627252397, + 12.9672553130977 + ], + [ + 77.550758050188804, + 12.9672710805057 + ], + [ + 77.550762440353793, + 12.9672766524863 + ], + [ + 77.550765238319002, + 12.9672802018646 + ], + [ + 77.550765357787398, + 12.967280354282 + ], + [ + 77.550768701705806, + 12.967284594877601 + ], + [ + 77.550768792232901, + 12.967284709633301 + ], + [ + 77.550772022108504, + 12.967288787820101 + ], + [ + 77.550774595055103, + 12.967292042165001 + ], + [ + 77.550774735027602, + 12.9672922178714 + ], + [ + 77.550775927713104, + 12.9672937267063 + ], + [ + 77.550776041572007, + 12.967293871047501 + ], + [ + 77.550776465275007, + 12.967294408067801 + ], + [ + 77.550825306113197, + 12.9673562383459 + ], + [ + 77.550848290261996, + 12.967385334887201 + ], + [ + 77.5509050614084, + 12.9673661506845 + ], + [ + 77.550927532138999, + 12.967360152724799 + ], + [ + 77.551272131013206, + 12.967268178503099 + ], + [ + 77.551512123468697, + 12.9672315680938 + ], + [ + 77.551822050541901, + 12.967179913581599 + ], + [ + 77.552260434231101, + 12.967092236843699 + ], + [ + 77.552187710115206, + 12.966685117727801 + ], + [ + 77.551788067310198, + 12.966745607880201 + ], + [ + 77.551675254759402, + 12.96676190056 + ], + [ + 77.551688503867794, + 12.9666582264038 + ], + [ + 77.5516911003579, + 12.966633613214601 + ], + [ + 77.551684078621193, + 12.9664513130936 + ], + [ + 77.551688406362302, + 12.966367009674199 + ], + [ + 77.552065720657296, + 12.966277325308599 + ], + [ + 77.552085462442903, + 12.9662725728066 + ], + [ + 77.5521000333774, + 12.966269162971599 + ], + [ + 77.552094258014804, + 12.966249166375199 + ], + [ + 77.552070814937693, + 12.966194921202099 + ], + [ + 77.552065304428396, + 12.9661756023135 + ], + [ + 77.552055080149898, + 12.9661397547428 + ], + [ + 77.552047621642402, + 12.966113604006599 + ], + [ + 77.552037935264593, + 12.966079644815 + ], + [ + 77.552002399930998, + 12.965977888533899 + ], + [ + 77.552369025624301, + 12.9658669175135 + ], + [ + 77.552759227503103, + 12.965751725952 + ], + [ + 77.552997239206306, + 12.965685357304 + ], + [ + 77.553345865322896, + 12.9655594857302 + ], + [ + 77.553666265692698, + 12.965461839903201 + ], + [ + 77.554480998061393, + 12.9651811081507 + ], + [ + 77.554766306962094, + 12.965091090904 + ], + [ + 77.554678143882597, + 12.964776037646001 + ], + [ + 77.554715541788596, + 12.964767308167399 + ], + [ + 77.554757253448997, + 12.964752670067799 + ], + [ + 77.554774057620705, + 12.964746772636 + ], + [ + 77.554784993598005, + 12.9647429348831 + ], + [ + 77.554809443964402, + 12.964734354995199 + ], + [ + 77.554838283675906, + 12.9647176370067 + ], + [ + 77.554976925216707, + 12.9646372673113 + ], + [ + 77.554993744398601, + 12.9646275173655 + ], + [ + 77.555073154897599, + 12.9645829912279 + ], + [ + 77.555208993605802, + 12.964506824746699 + ], + [ + 77.555219083143399, + 12.9645008369235 + ], + [ + 77.555261074789996, + 12.9644759146305 + ], + [ + 77.555261070155694, + 12.9644758216197 + ], + [ + 77.555264565232093, + 12.964473751805 + ], + [ + 77.555325568443493, + 12.9644376332589 + ], + [ + 77.555325069090401, + 12.9644351003429 + ], + [ + 77.555219992351894, + 12.9644021150381 + ], + [ + 77.5551949670798, + 12.964394258530399 + ], + [ + 77.555137876322902, + 12.964376337009501 + ], + [ + 77.554945755089904, + 12.9643160264018 + ], + [ + 77.554882920367504, + 12.9642939904071 + ], + [ + 77.554640000522198, + 12.9642200431562 + ], + [ + 77.554616000380804, + 12.9642158689659 + ], + [ + 77.554549489911196, + 12.9642043025587 + ], + [ + 77.554501999960806, + 12.9641960431083 + ], + [ + 77.554377000371005, + 12.9642250433755 + ], + [ + 77.554307152599804, + 12.9642409387302 + ], + [ + 77.554064999937907, + 12.964296043229799 + ], + [ + 77.553928286649196, + 12.9643193020287 + ], + [ + 77.553890046901699, + 12.964325807293999 + ], + [ + 77.553850120601396, + 12.964332599240199 + ], + [ + 77.553843715578793, + 12.9643336884289 + ], + [ + 77.553827696141397, + 12.964336414178 + ], + [ + 77.553825232530102, + 12.964336833167501 + ], + [ + 77.553824000268506, + 12.9643370431184 + ], + [ + 77.553797274972794, + 12.9643374499427 + ], + [ + 77.553781714689094, + 12.9643376866652 + ], + [ + 77.553658264020797, + 12.964339567578801 + ], + [ + 77.553628092131802, + 12.9643400262763 + ], + [ + 77.5536270006873, + 12.9643400433108 + ], + [ + 77.553559000526704, + 12.964351043463999 + ], + [ + 77.553539663419798, + 12.9643539978021 + ], + [ + 77.553509367327905, + 12.9643586262751 + ], + [ + 77.553462991001595, + 12.964365710933899 + ], + [ + 77.553430422172397, + 12.9643706869449 + ], + [ + 77.553357823377596, + 12.964381778247301 + ], + [ + 77.553343000467194, + 12.964384043207501 + ], + [ + 77.553322121989893, + 12.9643862555533 + ], + [ + 77.55320683715, + 12.9643984712391 + ], + [ + 77.553192000720202, + 12.9644000433687 + ], + [ + 77.553155047745307, + 12.964402746789 + ], + [ + 77.553151000262304, + 12.964403043082299 + ], + [ + 77.552973124050894, + 12.9644168286113 + ], + [ + 77.552790811126002, + 12.964430957493899 + ], + [ + 77.552763972975796, + 12.964433037628501 + ], + [ + 77.552751000788504, + 12.964434043045101 + ], + [ + 77.552732000231103, + 12.9644350434505 + ], + [ + 77.552702113752403, + 12.9644368444975 + ], + [ + 77.552697815320798, + 12.9644371034932 + ], + [ + 77.5526425626677, + 12.9644404335635 + ], + [ + 77.552309370084799, + 12.964482664480199 + ], + [ + 77.552266523658005, + 12.964361683112401 + ], + [ + 77.552192560302103, + 12.9641320744665 + ], + [ + 77.552185476823496, + 12.9641119069881 + ], + [ + 77.552101392706703, + 12.963793484541 + ], + [ + 77.552087799413997, + 12.963725518077601 + ], + [ + 77.552019832950606, + 12.963514822041001 + ], + [ + 77.551985849718804, + 12.9633870450897 + ], + [ + 77.551928916566396, + 12.963156614375199 + ], + [ + 77.551928757889598, + 12.963155959114101 + ], + [ + 77.551933955371595, + 12.9631556082006 + ], + [ + 77.551893860956696, + 12.9630487182755 + ], + [ + 77.551753404413901, + 12.962385219418699 + ], + [ + 77.5516922345968, + 12.962376723610801 + ], + [ + 77.551688735806806, + 12.962353614243 + ], + [ + 77.551594362889503, + 12.9619012981991 + ], + [ + 77.55158551964, + 12.961902951016601 + ], + [ + 77.551554674684496, + 12.961695991271901 + ], + [ + 77.551421174530404, + 12.9617562570558 + ], + [ + 77.551342600154101, + 12.9618104199754 + ], + [ + 77.551324767883102, + 12.961819231217399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "21", + "group": "KR Market", + "Corporatio": "Central", + "ac_no": "168", + "ac": "Chamrajapet", + "corporat_1": "1", + "ward_id": "44", + "ward_name": "44 - KR Market", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಾಮರಾಜಪೇಟೆ", + "ward_name_": "ಕೆ.ಆರ್. ಮಾರುಕಟ್ಟೆ", + "dig_ward_n": "KR Market", + "Assembly": "168 - Chamrajapet", + "Slno": "44" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.566856627875495, + 12.960428174967801 + ], + [ + 77.566443192846407, + 12.9604177348373 + ], + [ + 77.566394322957095, + 12.9604165000995 + ], + [ + 77.566049081584296, + 12.960407781141299 + ], + [ + 77.565830885490001, + 12.960402270714599 + ], + [ + 77.565688873576505, + 12.960399217369501 + ], + [ + 77.5654877165682, + 12.960394891175801 + ], + [ + 77.565290726931494, + 12.9603906547565 + ], + [ + 77.565192522671694, + 12.9603893395079 + ], + [ + 77.564910298606904, + 12.9603855605719 + ], + [ + 77.5649100537278, + 12.9603951974201 + ], + [ + 77.564910017670996, + 12.960396623426099 + ], + [ + 77.564909515539298, + 12.960416397758101 + ], + [ + 77.564909486764194, + 12.960417545428401 + ], + [ + 77.564907839223693, + 12.9604560759139 + ], + [ + 77.5649078378257, + 12.9604561192935 + ], + [ + 77.564893395209594, + 12.9607546495574 + ], + [ + 77.564880640009903, + 12.961483364756999 + ], + [ + 77.564858659003093, + 12.961483150244399 + ], + [ + 77.5648321930816, + 12.9622253319225 + ], + [ + 77.564824229817702, + 12.9624115779598 + ], + [ + 77.565196273317397, + 12.9625226075394 + ], + [ + 77.565212944731798, + 12.9625276272421 + ], + [ + 77.565385122728102, + 12.9625794706468 + ], + [ + 77.565572268302304, + 12.9626386090313 + ], + [ + 77.565717895491403, + 12.9626847330532 + ], + [ + 77.565815143164698, + 12.9627154936942 + ], + [ + 77.565980640583604, + 12.9627678425013 + ], + [ + 77.565993927550593, + 12.962772228767699 + ], + [ + 77.565995479218302, + 12.9627727166928 + ], + [ + 77.566098473105001, + 12.962805077494499 + ], + [ + 77.566158735193596, + 12.962822074455399 + ], + [ + 77.566175845903203, + 12.962826900935999 + ], + [ + 77.566536114939098, + 12.9629592367704 + ], + [ + 77.566628444670499, + 12.9629931516391 + ], + [ + 77.566679886615901, + 12.963012047774599 + ], + [ + 77.566698353496406, + 12.9630182386074 + ], + [ + 77.566721812850503, + 12.963026103086101 + ], + [ + 77.566792100346802, + 12.9630496675871 + ], + [ + 77.566832000400396, + 12.9630630444929 + ], + [ + 77.566951000187203, + 12.9631040448745 + ], + [ + 77.567004000710497, + 12.963121044576001 + ], + [ + 77.567130000497301, + 12.9631610452646 + ], + [ + 77.567223000737897, + 12.9632010452604 + ], + [ + 77.567253336501807, + 12.9632142743133 + ], + [ + 77.567350135404993, + 12.963256487284401 + ], + [ + 77.567356000100503, + 12.9632590449245 + ], + [ + 77.567459073560102, + 12.963303357008501 + ], + [ + 77.567463000375895, + 12.9633050447665 + ], + [ + 77.567472490323894, + 12.963316621942299 + ], + [ + 77.567604000660594, + 12.9634770451744 + ], + [ + 77.567649957418496, + 12.963498397482899 + ], + [ + 77.567887083131097, + 12.963608569245499 + ], + [ + 77.567916881789202, + 12.9636224142389 + ], + [ + 77.567929000629505, + 12.963628045130299 + ], + [ + 77.568163000420498, + 12.9637330453651 + ], + [ + 77.568217000063697, + 12.963782045123599 + ], + [ + 77.568227160868503, + 12.963802887768001 + ], + [ + 77.568276752237097, + 12.963615896089699 + ], + [ + 77.568349663114603, + 12.963642743566901 + ], + [ + 77.568479405652994, + 12.963690516013299 + ], + [ + 77.568646088233606, + 12.963751891143501 + ], + [ + 77.569352831964295, + 12.9640121236807 + ], + [ + 77.569390437795406, + 12.964025970903799 + ], + [ + 77.569453535214507, + 12.964049203541901 + ], + [ + 77.569870716754707, + 12.9641624062624 + ], + [ + 77.570030044663099, + 12.964192606269201 + ], + [ + 77.570033648753096, + 12.964262805835199 + ], + [ + 77.570041324717195, + 12.9644123369418 + ], + [ + 77.570050316759904, + 12.9645874949769 + ], + [ + 77.570058743509804, + 12.964751645527301 + ], + [ + 77.5700660290115, + 12.964893554453001 + ], + [ + 77.570070344713599, + 12.964978953864399 + ], + [ + 77.570076867331693, + 12.9651080169285 + ], + [ + 77.570077258010798, + 12.9651193296922 + ], + [ + 77.570077686514693, + 12.9651317244161 + ], + [ + 77.570082751465193, + 12.9652315960272 + ], + [ + 77.570090680982005, + 12.965387950177799 + ], + [ + 77.570096037922198, + 12.9654899691136 + ], + [ + 77.570099477004902, + 12.9655554822913 + ], + [ + 77.570099985397903, + 12.965565160453 + ], + [ + 77.5701015256967, + 12.9655960260831 + ], + [ + 77.570101553378294, + 12.9655965687835 + ], + [ + 77.570110858675903, + 12.9657830105023 + ], + [ + 77.570119529507906, + 12.965954580459799 + ], + [ + 77.570129442315107, + 12.9661488617326 + ], + [ + 77.570130078934, + 12.966161337516599 + ], + [ + 77.5701321329297, + 12.966201587631099 + ], + [ + 77.570132424729096, + 12.9662073072043 + ], + [ + 77.570134717654497, + 12.966252254707999 + ], + [ + 77.570138710464704, + 12.9663305082885 + ], + [ + 77.570140258305997, + 12.966360849839401 + ], + [ + 77.570141875200505, + 12.966392533235499 + ], + [ + 77.570141894867007, + 12.966392923331799 + ], + [ + 77.570144344223806, + 12.966440633847601 + ], + [ + 77.570145335872994, + 12.9664599624098 + ], + [ + 77.5701473498779, + 12.9664991875013 + ], + [ + 77.570149184335605, + 12.96653492253 + ], + [ + 77.570150630787197, + 12.966563104931501 + ], + [ + 77.570152222401902, + 12.966594120023 + ], + [ + 77.570154495707598, + 12.9666384109094 + ], + [ + 77.570158247599693, + 12.9667115009357 + ], + [ + 77.570159187146999, + 12.9667300611755 + ], + [ + 77.570160022760504, + 12.9667466637614 + ], + [ + 77.570173306421495, + 12.967011267013399 + ], + [ + 77.570176147721497, + 12.967067896129601 + ], + [ + 77.570178000459194, + 12.9671048705088 + ], + [ + 77.570182053340204, + 12.9671857362649 + ], + [ + 77.570183765811905, + 12.967219905912099 + ], + [ + 77.57019169342, + 12.967375500235301 + ], + [ + 77.570193072160905, + 12.9674025585065 + ], + [ + 77.570197483916104, + 12.9674985408598 + ], + [ + 77.570200742941395, + 12.9675612171562 + ], + [ + 77.570202122763703, + 12.967587752318201 + ], + [ + 77.570213704251202, + 12.967810465809301 + ], + [ + 77.570214758103006, + 12.9678307351485 + ], + [ + 77.570219717338901, + 12.9679261130999 + ], + [ + 77.570219748647204, + 12.967926111887101 + ], + [ + 77.570221263607706, + 12.967955847540701 + ], + [ + 77.570223959578598, + 12.9679556311819 + ], + [ + 77.570251395128196, + 12.967953426753001 + ], + [ + 77.570258717228, + 12.9679528385448 + ], + [ + 77.570266904536396, + 12.9679521803541 + ], + [ + 77.570303909900503, + 12.967949207401199 + ], + [ + 77.5703334422046, + 12.9679468340829 + ], + [ + 77.570358442156305, + 12.9679356670862 + ], + [ + 77.570449785535004, + 12.9678948655448 + ], + [ + 77.570522331988499, + 12.967862689728999 + ], + [ + 77.570682076988305, + 12.9677918402095 + ], + [ + 77.570744720479496, + 12.9677640571935 + ], + [ + 77.570966182570899, + 12.967665834784199 + ], + [ + 77.571088015890993, + 12.967611799770999 + ], + [ + 77.571118629644801, + 12.967598221941399 + ], + [ + 77.571152455709296, + 12.967583219243201 + ], + [ + 77.571220655281806, + 12.967552970818099 + ], + [ + 77.571281150017995, + 12.967526226213501 + ], + [ + 77.571287207928705, + 12.9675235481455 + ], + [ + 77.571411770116498, + 12.9674684804955 + ], + [ + 77.571439108640007, + 12.967456394075899 + ], + [ + 77.571487167475098, + 12.9674351478674 + ], + [ + 77.571543870635296, + 12.967406354621501 + ], + [ + 77.571594817808602, + 12.967377618258601 + ], + [ + 77.571753155764497, + 12.9672869016891 + ], + [ + 77.571792713907399, + 12.967264237927999 + ], + [ + 77.571833498295902, + 12.9672408709019 + ], + [ + 77.571956379149995, + 12.967188147844301 + ], + [ + 77.571992416760295, + 12.96717268502 + ], + [ + 77.572102911419194, + 12.9671252764707 + ], + [ + 77.572220922910205, + 12.967067644220201 + ], + [ + 77.572467102923497, + 12.966988417120801 + ], + [ + 77.572639200327501, + 12.9669401056659 + ], + [ + 77.572663641846603, + 12.9669332444206 + ], + [ + 77.5727047769618, + 12.9669216963444 + ], + [ + 77.572706846173702, + 12.966921089545499 + ], + [ + 77.572748513366406, + 12.9669088784911 + ], + [ + 77.572780403897596, + 12.966899532273199 + ], + [ + 77.572891743829004, + 12.9668669018216 + ], + [ + 77.573083626914794, + 12.9668106654418 + ], + [ + 77.573176497012, + 12.966773484371 + ], + [ + 77.573188283061398, + 12.9667687656422 + ], + [ + 77.573280299014897, + 12.9667319272629 + ], + [ + 77.5733492952983, + 12.9666668741678 + ], + [ + 77.573392571427803, + 12.966620144415501 + ], + [ + 77.573405108818505, + 12.9666075989017 + ], + [ + 77.573453717049901, + 12.9665754965377 + ], + [ + 77.573543043746497, + 12.966542851386601 + ], + [ + 77.573565183382399, + 12.9665347606562 + ], + [ + 77.573666518717204, + 12.9664977278957 + ], + [ + 77.573743115797399, + 12.966443892643399 + ], + [ + 77.573863992369496, + 12.9663851021163 + ], + [ + 77.573866048387202, + 12.966389035266699 + ], + [ + 77.573868103465301, + 12.9663929666195 + ], + [ + 77.573868357195906, + 12.9663935432198 + ], + [ + 77.5738716991237, + 12.9664011415869 + ], + [ + 77.573947980419206, + 12.966574560926301 + ], + [ + 77.573958129773899, + 12.966597635771199 + ], + [ + 77.573966391684394, + 12.9666164189368 + ], + [ + 77.574053461053893, + 12.9668143612928 + ], + [ + 77.574058522531203, + 12.966825868124699 + ], + [ + 77.574100150925602, + 12.966903037162201 + ], + [ + 77.574129705351893, + 12.9669578252735 + ], + [ + 77.574150512062104, + 12.966996396306101 + ], + [ + 77.574160028910896, + 12.9670140386377 + ], + [ + 77.574162809578198, + 12.9670191924 + ], + [ + 77.574189447186896, + 12.967068573312 + ], + [ + 77.574211612796503, + 12.967109663255499 + ], + [ + 77.574247618912494, + 12.967176411497499 + ], + [ + 77.574320297010701, + 12.9673111399938 + ], + [ + 77.574382642757399, + 12.967427301849201 + ], + [ + 77.574391510652504, + 12.9674438239881 + ], + [ + 77.574421640104902, + 12.9674999606199 + ], + [ + 77.574454148559198, + 12.967560529508599 + ], + [ + 77.574498156595396, + 12.967642525498199 + ], + [ + 77.574581519255602, + 12.967798674584101 + ], + [ + 77.574656715531006, + 12.967939235950601 + ], + [ + 77.574659344530403, + 12.9679441508876 + ], + [ + 77.574660245286296, + 12.967945835034 + ], + [ + 77.574666994819907, + 12.967958451737699 + ], + [ + 77.574733563148797, + 12.968082886085099 + ], + [ + 77.574788737987802, + 12.968186800232701 + ], + [ + 77.574801534526699, + 12.9682109004304 + ], + [ + 77.574845703370798, + 12.968294085469299 + ], + [ + 77.574850968384595, + 12.9683037896879 + ], + [ + 77.5748745440482, + 12.9683472434505 + ], + [ + 77.574877393933093, + 12.968352495893599 + ], + [ + 77.574884268275298, + 12.9683490399273 + ], + [ + 77.575439561118699, + 12.9680397592684 + ], + [ + 77.575611384498998, + 12.9679522308041 + ], + [ + 77.575613941058805, + 12.9679509117581 + ], + [ + 77.575642620306098, + 12.967936111246599 + ], + [ + 77.575867956322199, + 12.967819821045699 + ], + [ + 77.576156220947894, + 12.967671247196099 + ], + [ + 77.576160610160699, + 12.967668983062699 + ], + [ + 77.576506833476898, + 12.967482416943 + ], + [ + 77.576687946680593, + 12.9673848218525 + ], + [ + 77.576857995486094, + 12.967292793060601 + ], + [ + 77.577070976431699, + 12.967176623477499 + ], + [ + 77.577259416966299, + 12.967092778209301 + ], + [ + 77.577379887374207, + 12.9670391759396 + ], + [ + 77.577670508137004, + 12.966908927263701 + ], + [ + 77.577983492198896, + 12.9667686552537 + ], + [ + 77.578040610335904, + 12.966743056637901 + ], + [ + 77.578054997382594, + 12.966736608937801 + ], + [ + 77.577979716110804, + 12.966582640726299 + ], + [ + 77.577823811733595, + 12.966262881315201 + ], + [ + 77.577513072223297, + 12.9655970846055 + ], + [ + 77.577368950928602, + 12.965250461453 + ], + [ + 77.577368498972206, + 12.965249510987199 + ], + [ + 77.577324965005502, + 12.965158026494001 + ], + [ + 77.577314523108498, + 12.965136083125101 + ], + [ + 77.577092956800001, + 12.9646704731519 + ], + [ + 77.576997603881296, + 12.9644681411542 + ], + [ + 77.576931111395098, + 12.964328765444399 + ], + [ + 77.576852778669306, + 12.9641597749208 + ], + [ + 77.576344213213304, + 12.962859383663 + ], + [ + 77.576026073980302, + 12.9622601577521 + ], + [ + 77.575651219350505, + 12.961833600001601 + ], + [ + 77.575078059907796, + 12.9610839122721 + ], + [ + 77.574502072423996, + 12.959738447392599 + ], + [ + 77.574504962207996, + 12.959746608569599 + ], + [ + 77.5745134769125, + 12.959770654553701 + ], + [ + 77.574140805418295, + 12.9598831332474 + ], + [ + 77.573286843165306, + 12.960140871328599 + ], + [ + 77.573220000473498, + 12.9601610456878 + ], + [ + 77.5731746314124, + 12.9601750621656 + ], + [ + 77.572925433887306, + 12.960252051811 + ], + [ + 77.571812000239603, + 12.960596045656001 + ], + [ + 77.571809650265607, + 12.960594963051699 + ], + [ + 77.571737807273706, + 12.9605618775166 + ], + [ + 77.571736000598804, + 12.96056104522 + ], + [ + 77.571729906264295, + 12.960560789223701 + ], + [ + 77.571354055581395, + 12.960545013073601 + ], + [ + 77.571331000700795, + 12.960544045553201 + ], + [ + 77.5712213679504, + 12.9605445394653 + ], + [ + 77.571109000351896, + 12.960545044985899 + ], + [ + 77.571056000750801, + 12.9605450453834 + ], + [ + 77.570901416611804, + 12.9605445493766 + ], + [ + 77.570746582815502, + 12.960544053032899 + ], + [ + 77.5707440006897, + 12.960544045106399 + ], + [ + 77.570659430736697, + 12.960541539348799 + ], + [ + 77.570610867449403, + 12.9605401009158 + ], + [ + 77.570609000584, + 12.9605400452692 + ], + [ + 77.570201000472096, + 12.960525044777199 + ], + [ + 77.5701350002049, + 12.960524044943099 + ], + [ + 77.570102014844593, + 12.9605231446451 + ], + [ + 77.570027010416098, + 12.960521097145101 + ], + [ + 77.569606246574594, + 12.960509610570799 + ], + [ + 77.569439000474603, + 12.9605050448616 + ], + [ + 77.569435955621898, + 12.960505008061901 + ], + [ + 77.569435958444103, + 12.960504924013099 + ], + [ + 77.569211259096804, + 12.9604959888108 + ], + [ + 77.568987214027999, + 12.960487079478 + ], + [ + 77.568585324754693, + 12.960471097293199 + ], + [ + 77.568408523080294, + 12.960466065966401 + ], + [ + 77.568142574576598, + 12.9604594801533 + ], + [ + 77.567840184372301, + 12.960451991435001 + ], + [ + 77.5677796626495, + 12.960450492453401 + ], + [ + 77.567560945408005, + 12.9604450762706 + ], + [ + 77.567267129729601, + 12.9604377995374 + ], + [ + 77.566892237700699, + 12.9604290741956 + ], + [ + 77.566856627875495, + 12.960428174967801 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "25", + "group": "Sidedahalli", + "Corporatio": "North", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "2", + "ward_id": "22", + "ward_name": "22 - Sidedahalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ಸಿಡೇದ ಹಳ್ಳಿ", + "dig_ward_n": "Sidedahalli", + "Assembly": "155 - Dasarahalli", + "Slno": "22" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.495043766904502, + 13.0580034090168 + ], + [ + 77.494710015114606, + 13.058195424886501 + ], + [ + 77.4941953404944, + 13.0584203169515 + ], + [ + 77.493729427571594, + 13.058644737736 + ], + [ + 77.493400049091505, + 13.0588678408349 + ], + [ + 77.493012538656401, + 13.0591297527963 + ], + [ + 77.492635738897803, + 13.0594871805202 + ], + [ + 77.491970112516498, + 13.0600071223709 + ], + [ + 77.492277738417101, + 13.0607919147881 + ], + [ + 77.492319664942201, + 13.0608988754216 + ], + [ + 77.492326381423396, + 13.060916225504799 + ], + [ + 77.492349306787503, + 13.060975447121599 + ], + [ + 77.492350788398298, + 13.060979273587799 + ], + [ + 77.492488722078093, + 13.061335580715699 + ], + [ + 77.492553168376602, + 13.0615000672995 + ], + [ + 77.492587892193697, + 13.0616180684402 + ], + [ + 77.492609562156602, + 13.0616880925472 + ], + [ + 77.492619308940803, + 13.061719589209201 + ], + [ + 77.492662852803093, + 13.061860300411301 + ], + [ + 77.492675714303601, + 13.061905541695801 + ], + [ + 77.492678279354394, + 13.061914565447401 + ], + [ + 77.492724977469805, + 13.062078830104401 + ], + [ + 77.492727560668598, + 13.0620879169243 + ], + [ + 77.492796239043301, + 13.0620998491716 + ], + [ + 77.492807805919895, + 13.062101859001601 + ], + [ + 77.492944834015503, + 13.0621256660675 + ], + [ + 77.492995459066293, + 13.0621344620084 + ], + [ + 77.493031767926396, + 13.0621407704928 + ], + [ + 77.493033760242696, + 13.0621411198986 + ], + [ + 77.493036931177897, + 13.0621713906827 + ], + [ + 77.493043989709193, + 13.062238783757699 + ], + [ + 77.493044722579, + 13.0622457814748 + ], + [ + 77.493035816854501, + 13.062375575662101 + ], + [ + 77.493038443089404, + 13.062507754952399 + ], + [ + 77.493030763217405, + 13.0625398714469 + ], + [ + 77.493016695407505, + 13.062598664144399 + ], + [ + 77.492957041644999, + 13.062850284412701 + ], + [ + 77.492950938220105, + 13.062876026007499 + ], + [ + 77.492745905092406, + 13.063757949127501 + ], + [ + 77.492744754558302, + 13.0637787541376 + ], + [ + 77.492738163886202, + 13.0639009321398 + ], + [ + 77.492727883308802, + 13.064091531188099 + ], + [ + 77.492716124587702, + 13.0643398904016 + ], + [ + 77.4927010954125, + 13.064684314428799 + ], + [ + 77.492684797103095, + 13.065095378850399 + ], + [ + 77.492666738214496, + 13.065574530751899 + ], + [ + 77.492628288895204, + 13.0667347623911 + ], + [ + 77.4928784791217, + 13.070222248784599 + ], + [ + 77.492937317898594, + 13.0715934081851 + ], + [ + 77.492931597233706, + 13.073405513972901 + ], + [ + 77.493013759937597, + 13.0734229758142 + ], + [ + 77.492973780620204, + 13.0735258676138 + ], + [ + 77.492972704364803, + 13.073528641790199 + ], + [ + 77.4949412927823, + 13.0734363489179 + ], + [ + 77.4971798354199, + 13.073348153616999 + ], + [ + 77.497197945467406, + 13.0732231436396 + ], + [ + 77.497394377093997, + 13.0722331655502 + ], + [ + 77.497534711762697, + 13.0715038372308 + ], + [ + 77.497658803463494, + 13.0705251116963 + ], + [ + 77.497780628966495, + 13.0705238557633 + ], + [ + 77.497610614990705, + 13.0689095954436 + ], + [ + 77.498040921085305, + 13.068915005563801 + ], + [ + 77.497978048433495, + 13.067951271339499 + ], + [ + 77.498239544659199, + 13.067903374967299 + ], + [ + 77.498282410312797, + 13.068066870476599 + ], + [ + 77.498870778828504, + 13.0680320846502 + ], + [ + 77.498873366595603, + 13.068103008140699 + ], + [ + 77.499195123531095, + 13.068093625368199 + ], + [ + 77.499197949380402, + 13.0681159181794 + ], + [ + 77.4995144445016, + 13.0680845198538 + ], + [ + 77.499424017324102, + 13.0675733551144 + ], + [ + 77.499716649717996, + 13.0674791601379 + ], + [ + 77.499584240871499, + 13.066587176292099 + ], + [ + 77.499475049188703, + 13.0657924873244 + ], + [ + 77.500973631180898, + 13.065518250627701 + ], + [ + 77.502891265263699, + 13.065198385818 + ], + [ + 77.502906443815405, + 13.0652684903403 + ], + [ + 77.503344653122298, + 13.0652150064873 + ], + [ + 77.503611155933001, + 13.0651640042044 + ], + [ + 77.503624947436194, + 13.0650322061746 + ], + [ + 77.503876208844105, + 13.065075984647599 + ], + [ + 77.503857302596003, + 13.0651415640769 + ], + [ + 77.504116351871701, + 13.065236809708599 + ], + [ + 77.504181233645099, + 13.065273730677699 + ], + [ + 77.504252265441195, + 13.065309843930899 + ], + [ + 77.504551765559796, + 13.0648391327298 + ], + [ + 77.5049923830003, + 13.0641466297712 + ], + [ + 77.505023768423499, + 13.0640972427089 + ], + [ + 77.504963458511995, + 13.0640700542211 + ], + [ + 77.505058538438803, + 13.0639237452675 + ], + [ + 77.505078915681693, + 13.0638923891876 + ], + [ + 77.505111038781905, + 13.0638404877966 + ], + [ + 77.505116888655806, + 13.0638310357304 + ], + [ + 77.505220729373704, + 13.063568579187899 + ], + [ + 77.506559262767993, + 13.061537491450499 + ], + [ + 77.506816439380799, + 13.061144638986899 + ], + [ + 77.506889339837997, + 13.0609401127042 + ], + [ + 77.507079691031706, + 13.0609198625773 + ], + [ + 77.507164741565106, + 13.060857087183599 + ], + [ + 77.507180941666704, + 13.060743686472399 + ], + [ + 77.507606147854403, + 13.0600170464858 + ], + [ + 77.507816795654307, + 13.059676504779899 + ], + [ + 77.507992212379307, + 13.0594600815477 + ], + [ + 77.508419236932298, + 13.058833086990701 + ], + [ + 77.509100928434407, + 13.057602386585 + ], + [ + 77.509588177570294, + 13.056743864748499 + ], + [ + 77.509753090873701, + 13.056476865505299 + ], + [ + 77.509858478748598, + 13.0563041805173 + ], + [ + 77.509871519649195, + 13.056283725534 + ], + [ + 77.5101338596901, + 13.055854282647401 + ], + [ + 77.510151405254007, + 13.0558236197336 + ], + [ + 77.510202136613003, + 13.0557336859396 + ], + [ + 77.510219306602906, + 13.055703248927101 + ], + [ + 77.510304200318203, + 13.0555544792745 + ], + [ + 77.510319945402998, + 13.055529227632899 + ], + [ + 77.510322315966903, + 13.0555254262489 + ], + [ + 77.5103240381181, + 13.055522664745499 + ], + [ + 77.510330257491006, + 13.055512969613 + ], + [ + 77.510334244976306, + 13.055506754684901 + ], + [ + 77.510541700508895, + 13.055174968961101 + ], + [ + 77.510644299066001, + 13.055011345742599 + ], + [ + 77.510736126181101, + 13.0548647674095 + ], + [ + 77.510779200041398, + 13.054795458550901 + ], + [ + 77.510859691199499, + 13.0546670599382 + ], + [ + 77.510925436609796, + 13.054561391585599 + ], + [ + 77.511059772634994, + 13.054346639164899 + ], + [ + 77.511305208042501, + 13.053954628567499 + ], + [ + 77.511311440425104, + 13.0539444038564 + ], + [ + 77.511416353135104, + 13.0537818873711 + ], + [ + 77.511430604923206, + 13.0537613609602 + ], + [ + 77.5111579359708, + 13.053808238307401 + ], + [ + 77.511156927537797, + 13.0538075750058 + ], + [ + 77.510960501306002, + 13.0534380101882 + ], + [ + 77.509236202992597, + 13.053829850145499 + ], + [ + 77.509081987443096, + 13.053282394617099 + ], + [ + 77.508951726050697, + 13.0530967729044 + ], + [ + 77.507766098962193, + 13.0532352434773 + ], + [ + 77.507764231873495, + 13.0532331411044 + ], + [ + 77.507803721836495, + 13.053122059108601 + ], + [ + 77.507809095529296, + 13.0529616165928 + ], + [ + 77.507845722164802, + 13.0526522975054 + ], + [ + 77.507883095455199, + 13.0520065070114 + ], + [ + 77.507875519688795, + 13.0519142831492 + ], + [ + 77.507529686821798, + 13.051927730404399 + ], + [ + 77.506844220023098, + 13.051975318202899 + ], + [ + 77.506495917838805, + 13.051989493291799 + ], + [ + 77.506451367559393, + 13.0517383917171 + ], + [ + 77.505230538028201, + 13.0520675828439 + ], + [ + 77.505234334927195, + 13.052085681395001 + ], + [ + 77.505687431518695, + 13.0539562868759 + ], + [ + 77.505035883682595, + 13.0540808251569 + ], + [ + 77.504323079212497, + 13.054190175842701 + ], + [ + 77.503779498801805, + 13.054271158488801 + ], + [ + 77.5033439855724, + 13.054351164352299 + ], + [ + 77.503468017600198, + 13.0551267442161 + ], + [ + 77.503543955576504, + 13.055474033894001 + ], + [ + 77.5038818795705, + 13.056859775396701 + ], + [ + 77.5017457360956, + 13.0571937485802 + ], + [ + 77.501608018671007, + 13.056952215372901 + ], + [ + 77.501259530019198, + 13.057085917932101 + ], + [ + 77.501269610898305, + 13.0571356097626 + ], + [ + 77.501072429414094, + 13.057198406413599 + ], + [ + 77.500845451761904, + 13.057253829621599 + ], + [ + 77.500922070383893, + 13.0576306724186 + ], + [ + 77.500169839144604, + 13.0577193380925 + ], + [ + 77.499841871057299, + 13.057734127959501 + ], + [ + 77.499583962717296, + 13.057748456200599 + ], + [ + 77.499374960681607, + 13.057652947558299 + ], + [ + 77.499055392438905, + 13.0574647698047 + ], + [ + 77.498910535384795, + 13.057418906654901 + ], + [ + 77.498890716765501, + 13.0573338901882 + ], + [ + 77.498614411500995, + 13.057142988369 + ], + [ + 77.497624736280599, + 13.0571756426276 + ], + [ + 77.4972931699632, + 13.0571907138238 + ], + [ + 77.496956579913601, + 13.0571907138238 + ], + [ + 77.496711544895604, + 13.057127997638601 + ], + [ + 77.496681262545295, + 13.057133639101099 + ], + [ + 77.496589454992701, + 13.0566819039588 + ], + [ + 77.496422415900895, + 13.0567220938154 + ], + [ + 77.495985351209697, + 13.056896668505299 + ], + [ + 77.495766363437696, + 13.0569827663012 + ], + [ + 77.495514690310202, + 13.057091966090001 + ], + [ + 77.495468220788396, + 13.0569280668308 + ], + [ + 77.495190663326895, + 13.0569774826269 + ], + [ + 77.4951611451649, + 13.0568319879547 + ], + [ + 77.495105884111993, + 13.0568344998208 + ], + [ + 77.495008235319602, + 13.0565161208 + ], + [ + 77.494601940987394, + 13.056613141625901 + ], + [ + 77.495043766904502, + 13.0580034090168 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "24", + "group": "Shettihalli", + "Corporatio": "North", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "2", + "ward_id": "27", + "ward_name": "27 - Shettihalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ಶೆಟ್ಟಿಹಳ್ಳಿ", + "dig_ward_n": "Shettihalli", + "Assembly": "155 - Dasarahalli", + "Slno": "27" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.510061770009898, + 13.0643898788902 + ], + [ + 77.510101959866503, + 13.064668696020799 + ], + [ + 77.510750021305299, + 13.064568221379099 + ], + [ + 77.510885662071502, + 13.0656056220542 + ], + [ + 77.510991830487995, + 13.0658105790293 + ], + [ + 77.511100616030205, + 13.0664406050025 + ], + [ + 77.511131010087695, + 13.0670686935531 + ], + [ + 77.511162261785898, + 13.0670643503785 + ], + [ + 77.511214088556301, + 13.0675887402939 + ], + [ + 77.511809400808104, + 13.067541014839099 + ], + [ + 77.511929970378105, + 13.0690782768564 + ], + [ + 77.512742322637095, + 13.068695848060599 + ], + [ + 77.514219885809496, + 13.068152701685801 + ], + [ + 77.515911467511501, + 13.067550703379201 + ], + [ + 77.515904379967097, + 13.067767379737999 + ], + [ + 77.516205094352898, + 13.068204782481001 + ], + [ + 77.517204335267095, + 13.069529545859799 + ], + [ + 77.517362389110602, + 13.069703291878501 + ], + [ + 77.517602353115393, + 13.0700556440881 + ], + [ + 77.517844658541193, + 13.0704753912519 + ], + [ + 77.518049184823795, + 13.070850018601201 + ], + [ + 77.518417737135096, + 13.071587123223701 + ], + [ + 77.518964174155698, + 13.0714437902935 + ], + [ + 77.519239913234998, + 13.0713751536179 + ], + [ + 77.5193433286763, + 13.0713526366279 + ], + [ + 77.519818729514796, + 13.071253439099699 + ], + [ + 77.520211495370404, + 13.071187120964099 + ], + [ + 77.520264231765395, + 13.071179019842299 + ], + [ + 77.520336177820496, + 13.071167968414899 + ], + [ + 77.520709734687699, + 13.0711127006859 + ], + [ + 77.521059049478794, + 13.0710732129458 + ], + [ + 77.522153569156998, + 13.0709739873472 + ], + [ + 77.523548802906902, + 13.0708707116996 + ], + [ + 77.523481977487805, + 13.070530509566099 + ], + [ + 77.523443502246494, + 13.0700890567977 + ], + [ + 77.523516402703706, + 13.069866305400801 + ], + [ + 77.523804544094801, + 13.0698556070724 + ], + [ + 77.524218208049206, + 13.0697702890313 + ], + [ + 77.524914944137393, + 13.069706108317799 + ], + [ + 77.525473585180507, + 13.069490287370501 + ], + [ + 77.525787678043002, + 13.0692051437063 + ], + [ + 77.525962970752801, + 13.0686990459351 + ], + [ + 77.525933731567306, + 13.0679821993711 + ], + [ + 77.526427394377606, + 13.067611633303899 + ], + [ + 77.526965161231999, + 13.067262150407799 + ], + [ + 77.526906432388202, + 13.0668045966497 + ], + [ + 77.526906745569505, + 13.066802588781201 + ], + [ + 77.526016091035899, + 13.0669265564963 + ], + [ + 77.525189267405196, + 13.0671038241193 + ], + [ + 77.525167800559899, + 13.0671092506108 + ], + [ + 77.525136919116207, + 13.0671163381552 + ], + [ + 77.525118694001904, + 13.067049006483 + ], + [ + 77.525058260029198, + 13.0668627685963 + ], + [ + 77.524996180733595, + 13.066600466170099 + ], + [ + 77.5249828889946, + 13.0665546535466 + ], + [ + 77.524975424353499, + 13.066521996928 + ], + [ + 77.5249698555685, + 13.0665007342946 + ], + [ + 77.524951053204802, + 13.066408001170201 + ], + [ + 77.524940337776897, + 13.066371474560199 + ], + [ + 77.524648954337295, + 13.065416403275901 + ], + [ + 77.524799817783403, + 13.065347046590899 + ], + [ + 77.525565715555302, + 13.0650685440631 + ], + [ + 77.525395551206898, + 13.0645655182523 + ], + [ + 77.525349039196499, + 13.064402314884999 + ], + [ + 77.525282720030603, + 13.0643851022771 + ], + [ + 77.525248801067903, + 13.064335489466 + ], + [ + 77.525160459888895, + 13.0640947660814 + ], + [ + 77.526876847996405, + 13.0634446737233 + ], + [ + 77.526881078868996, + 13.0634464745304 + ], + [ + 77.527347663449007, + 13.0632406536938 + ], + [ + 77.527252969749199, + 13.0631688174937 + ], + [ + 77.527214425401496, + 13.0631441673741 + ], + [ + 77.527193571716396, + 13.063115079845 + ], + [ + 77.527205465528695, + 13.0631106322777 + ], + [ + 77.527480103651797, + 13.0630079336165 + ], + [ + 77.527734504910001, + 13.062888247714501 + ], + [ + 77.527772943300505, + 13.0628701636612 + ], + [ + 77.528012072176793, + 13.062757663164501 + ], + [ + 77.528080741276199, + 13.062717872853 + ], + [ + 77.528122193572401, + 13.0626938532758 + ], + [ + 77.528369375305104, + 13.0625506216375 + ], + [ + 77.528535436135996, + 13.0624543970346 + ], + [ + 77.5286061190656, + 13.062408397223299 + ], + [ + 77.528638912652397, + 13.0623870552678 + ], + [ + 77.528710095405899, + 13.0623407298113 + ], + [ + 77.528720538633095, + 13.0623339338014 + ], + [ + 77.528963829766198, + 13.0621756012162 + ], + [ + 77.529213951674194, + 13.061989252720499 + ], + [ + 77.529396746046601, + 13.061853065107201 + ], + [ + 77.529688502660406, + 13.0616105799641 + ], + [ + 77.529743276240097, + 13.0615650563774 + ], + [ + 77.529908608415496, + 13.061646525727999 + ], + [ + 77.530282729511597, + 13.061700188564499 + ], + [ + 77.5310656500465, + 13.061792832895501 + ], + [ + 77.531205249363495, + 13.0610414266212 + ], + [ + 77.531212463467199, + 13.0610172530317 + ], + [ + 77.531510140334007, + 13.060165735191701 + ], + [ + 77.531609365956299, + 13.059927796199499 + ], + [ + 77.531700491527701, + 13.0596068316867 + ], + [ + 77.531752129351602, + 13.059355730111999 + ], + [ + 77.531838315793195, + 13.059127222231499 + ], + [ + 77.532035124876401, + 13.058649506933101 + ], + [ + 77.532251801235205, + 13.058165528898 + ], + [ + 77.532362987088703, + 13.0582047002374 + ], + [ + 77.532518406813296, + 13.0582588693271 + ], + [ + 77.532795833553095, + 13.058345944873199 + ], + [ + 77.532743879321103, + 13.059057546991999 + ], + [ + 77.532688191471905, + 13.059180060260299 + ], + [ + 77.5326578162814, + 13.0592721983381 + ], + [ + 77.532655791251997, + 13.0594382493843 + ], + [ + 77.532677053902006, + 13.059667075814501 + ], + [ + 77.532694266510006, + 13.0597298512081 + ], + [ + 77.532788746008706, + 13.0597310535594 + ], + [ + 77.533201262874101, + 13.0596259934043 + ], + [ + 77.5334721877947, + 13.059537664846699 + ], + [ + 77.533445862629605, + 13.0594586893514 + ], + [ + 77.533529394403402, + 13.059012174051199 + ], + [ + 77.533565021970603, + 13.0588752958491 + ], + [ + 77.533878898938994, + 13.058917314862599 + ], + [ + 77.534090006512898, + 13.0589643964078 + ], + [ + 77.534277320187599, + 13.059015527978501 + ], + [ + 77.534452994915398, + 13.0591283687616 + ], + [ + 77.534680260681498, + 13.0586944983627 + ], + [ + 77.5347672351744, + 13.058525374602199 + ], + [ + 77.534941518330996, + 13.058332807949 + ], + [ + 77.535015638246506, + 13.0582022075896 + ], + [ + 77.535068736408903, + 13.058132925742401 + ], + [ + 77.535079299640998, + 13.058119141841299 + ], + [ + 77.535187398193401, + 13.0579317415008 + ], + [ + 77.535223634506195, + 13.0578704020554 + ], + [ + 77.535281064405893, + 13.0577975614067 + ], + [ + 77.535395544342805, + 13.057727549217001 + ], + [ + 77.535488784034897, + 13.057639025596201 + ], + [ + 77.535063275718898, + 13.0575083289484 + ], + [ + 77.534993110266797, + 13.057530792837699 + ], + [ + 77.534956205694996, + 13.057526637391399 + ], + [ + 77.534910819853593, + 13.057525634649 + ], + [ + 77.534939246735107, + 13.0574327504454 + ], + [ + 77.534949889276803, + 13.0572903499052 + ], + [ + 77.534985918212797, + 13.057208684504999 + ], + [ + 77.535157694458604, + 13.057209722903901 + ], + [ + 77.535160985104199, + 13.057099359711801 + ], + [ + 77.535143519369697, + 13.0567571325657 + ], + [ + 77.535203899804799, + 13.0567265796883 + ], + [ + 77.535222832910094, + 13.056651507391701 + ], + [ + 77.535231024931804, + 13.0566190268987 + ], + [ + 77.535191613421304, + 13.056351623772599 + ], + [ + 77.535200219725297, + 13.056255941922601 + ], + [ + 77.535203310976598, + 13.056217255548599 + ], + [ + 77.535199141207499, + 13.056147277689901 + ], + [ + 77.535238188713393, + 13.056089890881299 + ], + [ + 77.535252870055501, + 13.056006865360599 + ], + [ + 77.535145544382402, + 13.0559896527527 + ], + [ + 77.535097849619206, + 13.055929180004799 + ], + [ + 77.535124698177796, + 13.05573805917 + ], + [ + 77.535182247737495, + 13.0555745251493 + ], + [ + 77.535218132855107, + 13.0554683197416 + ], + [ + 77.535254011778207, + 13.0553719744728 + ], + [ + 77.535310208766901, + 13.055291240649799 + ], + [ + 77.535322740375804, + 13.0552210990185 + ], + [ + 77.535303654513797, + 13.055100447368099 + ], + [ + 77.535304379948599, + 13.0548328295377 + ], + [ + 77.534841200525094, + 13.054879156256099 + ], + [ + 77.534686156004994, + 13.0548806762362 + ], + [ + 77.534550942969702, + 13.0548820017223 + ], + [ + 77.534079170662494, + 13.0548764619066 + ], + [ + 77.533563674042199, + 13.054846644320801 + ], + [ + 77.533511509624304, + 13.054843627420301 + ], + [ + 77.533422750673495, + 13.054837721104599 + ], + [ + 77.533203478901299, + 13.054854509483899 + ], + [ + 77.532952083539101, + 13.054827609669999 + ], + [ + 77.532914253542799, + 13.054823668012199 + ], + [ + 77.532843110226594, + 13.054816254507401 + ], + [ + 77.532738906902907, + 13.054805990942899 + ], + [ + 77.532652698226897, + 13.054797498951199 + ], + [ + 77.532248692527205, + 13.0547577046007 + ], + [ + 77.531755957612901, + 13.0546733122096 + ], + [ + 77.531576010267401, + 13.054592632512399 + ], + [ + 77.531416312156594, + 13.0545208303352 + ], + [ + 77.531283531973898, + 13.0544340419058 + ], + [ + 77.531158032524701, + 13.054270387137899 + ], + [ + 77.530792066412104, + 13.0535692622806 + ], + [ + 77.530741549586907, + 13.053472633597 + ], + [ + 77.5306869094794, + 13.0533670105422 + ], + [ + 77.530622052587006, + 13.0532761688522 + ], + [ + 77.530531522475201, + 13.053152827557399 + ], + [ + 77.530424831536195, + 13.053082723270601 + ], + [ + 77.530018938854795, + 13.0528156534471 + ], + [ + 77.529970566348396, + 13.052781345773599 + ], + [ + 77.529954542121104, + 13.0527699805775 + ], + [ + 77.529760787641493, + 13.052634096706001 + ], + [ + 77.529299692647299, + 13.052262536917199 + ], + [ + 77.529062632619997, + 13.0520593155436 + ], + [ + 77.528880431667403, + 13.051926705857399 + ], + [ + 77.528805001278997, + 13.051872105796001 + ], + [ + 77.528461665688994, + 13.0516394307048 + ], + [ + 77.528354549315495, + 13.051584010925099 + ], + [ + 77.528281652451795, + 13.051551972711099 + ], + [ + 77.527946652534496, + 13.0514592535249 + ], + [ + 77.5275353580451, + 13.0513401753187 + ], + [ + 77.527101729905993, + 13.051233737372 + ], + [ + 77.526917374081407, + 13.051172295577301 + ], + [ + 77.526839271375806, + 13.051138049082301 + ], + [ + 77.526711009777898, + 13.0510421788091 + ], + [ + 77.5264537847208, + 13.0508380221134 + ], + [ + 77.525384171664498, + 13.0500387296652 + ], + [ + 77.525209345879205, + 13.0498947513335 + ], + [ + 77.524896627809198, + 13.0497272734008 + ], + [ + 77.524406652747302, + 13.049459884125699 + ], + [ + 77.524277512936905, + 13.049380636699301 + ], + [ + 77.524075139993002, + 13.049256449426201 + ], + [ + 77.5239740851476, + 13.049173864067001 + ], + [ + 77.523925170813101, + 13.0491212621881 + ], + [ + 77.523902679352901, + 13.049096784249601 + ], + [ + 77.523876832398898, + 13.0490686546768 + ], + [ + 77.523799194688706, + 13.048966641885499 + ], + [ + 77.523713024512105, + 13.0488184091944 + ], + [ + 77.523589286340396, + 13.0486005236212 + ], + [ + 77.523447976372395, + 13.0482969791871 + ], + [ + 77.523292424200093, + 13.047895320553801 + ], + [ + 77.523248268210295, + 13.0477760714447 + ], + [ + 77.523119507076004, + 13.0474283290994 + ], + [ + 77.523110384409193, + 13.047437452833 + ], + [ + 77.5228904206528, + 13.046990496317299 + ], + [ + 77.522716718258494, + 13.0467474630666 + ], + [ + 77.522606098432803, + 13.046553576078001 + ], + [ + 77.522519425440393, + 13.046414833198201 + ], + [ + 77.522411141491702, + 13.0462415189411 + ], + [ + 77.522198086456697, + 13.0459104725521 + ], + [ + 77.522133916049, + 13.045952502638601 + ], + [ + 77.521924016844594, + 13.046089983497099 + ], + [ + 77.521872584687401, + 13.046123670437799 + ], + [ + 77.5218097264124, + 13.046164792326699 + ], + [ + 77.520840415012998, + 13.046798914619901 + ], + [ + 77.520744317068306, + 13.0468642237387 + ], + [ + 77.520500080759106, + 13.047031488018099 + ], + [ + 77.519731278961899, + 13.047609297629601 + ], + [ + 77.519429537114405, + 13.0478154196872 + ], + [ + 77.519360625759006, + 13.047862493458901 + ], + [ + 77.518702631108596, + 13.0483805409719 + ], + [ + 77.5188813090856, + 13.048853016204299 + ], + [ + 77.519117331077297, + 13.0494480234746 + ], + [ + 77.519203378780603, + 13.049642250446899 + ], + [ + 77.519335363700307, + 13.0499364591078 + ], + [ + 77.519361214671704, + 13.050043495325101 + ], + [ + 77.519386375332303, + 13.050139244784299 + ], + [ + 77.519390589758601, + 13.0501572732929 + ], + [ + 77.519407335527902, + 13.0501726772107 + ], + [ + 77.519417017614302, + 13.0501950789182 + ], + [ + 77.519664069186405, + 13.0511822725932 + ], + [ + 77.519725832057006, + 13.051412111546 + ], + [ + 77.519791032904706, + 13.0518260131298 + ], + [ + 77.519803516304407, + 13.0518834845846 + ], + [ + 77.519819428439803, + 13.051956740715699 + ], + [ + 77.519840751527695, + 13.052093022066201 + ], + [ + 77.519862963385194, + 13.052171364744799 + ], + [ + 77.519912576196404, + 13.0523779160402 + ], + [ + 77.520758082280494, + 13.0567161260585 + ], + [ + 77.521046583308006, + 13.0581775524108 + ], + [ + 77.520535330883604, + 13.059208916691301 + ], + [ + 77.520377176110202, + 13.059180785125299 + ], + [ + 77.520379695077906, + 13.0591861496132 + ], + [ + 77.520382058356503, + 13.0591911824259 + ], + [ + 77.520190129500094, + 13.0591732891241 + ], + [ + 77.520167611176007, + 13.0591678619466 + ], + [ + 77.519919537178197, + 13.059149495224901 + ], + [ + 77.519746398592304, + 13.0591586077821 + ], + [ + 77.519635022893894, + 13.059215308137601 + ], + [ + 77.519498334536706, + 13.0593226338107 + ], + [ + 77.519215401756199, + 13.0595029619335 + ], + [ + 77.5189479754725, + 13.0597133681472 + ], + [ + 77.518633574610902, + 13.0599490775513 + ], + [ + 77.518203468937799, + 13.060191560754101 + ], + [ + 77.518079503573404, + 13.060235683743301 + ], + [ + 77.517818372122903, + 13.0603285755545 + ], + [ + 77.517759787704193, + 13.060344957130299 + ], + [ + 77.517369796769799, + 13.0604537853094 + ], + [ + 77.517076149507602, + 13.060521018139401 + ], + [ + 77.516876172507295, + 13.0605670102227 + ], + [ + 77.516511155407997, + 13.060639454856201 + ], + [ + 77.516484719860301, + 13.060645358998 + ], + [ + 77.516445232644699, + 13.060655510985001 + ], + [ + 77.5162244758681, + 13.0607122656951 + ], + [ + 77.516088209313594, + 13.0607361793035 + ], + [ + 77.515929515769102, + 13.0607636992124 + ], + [ + 77.515631122778302, + 13.0608174245264 + ], + [ + 77.515595483728603, + 13.060824547515899 + ], + [ + 77.515581108347504, + 13.060826946136199 + ], + [ + 77.515438414888706, + 13.0608418871788 + ], + [ + 77.515088553734898, + 13.0609322520283 + ], + [ + 77.514802124678198, + 13.061029904683 + ], + [ + 77.514593343181204, + 13.0611166374257 + ], + [ + 77.514411447395901, + 13.0611850388424 + ], + [ + 77.514238503497396, + 13.0612273779926 + ], + [ + 77.514111775663295, + 13.0612263521208 + ], + [ + 77.514019238580502, + 13.0611636393841 + ], + [ + 77.513990903638401, + 13.061152621501799 + ], + [ + 77.513920690182999, + 13.0611013543404 + ], + [ + 77.513756157901199, + 13.0609542877931 + ], + [ + 77.513665826020798, + 13.0608715562137 + ], + [ + 77.513576401296206, + 13.060800147455399 + ], + [ + 77.5134852031224, + 13.0607242384985 + ], + [ + 77.513242254248595, + 13.060565103823 + ], + [ + 77.513106019433195, + 13.0604783391159 + ], + [ + 77.513082303511496, + 13.0604664061471 + ], + [ + 77.5128483938268, + 13.060348709840399 + ], + [ + 77.512745748204196, + 13.060288565571 + ], + [ + 77.512548833194103, + 13.060173184482901 + ], + [ + 77.512488479614902, + 13.060128597093501 + ], + [ + 77.512449606778702, + 13.060100741162699 + ], + [ + 77.512207337781106, + 13.059951762849501 + ], + [ + 77.512160344886894, + 13.059918339026201 + ], + [ + 77.512071530777007, + 13.0598844440348 + ], + [ + 77.511967349609805, + 13.0598346356918 + ], + [ + 77.511903272997799, + 13.059820576837399 + ], + [ + 77.511897536540303, + 13.059822891291899 + ], + [ + 77.511851633457596, + 13.0598402776819 + ], + [ + 77.511721020138495, + 13.059897990543901 + ], + [ + 77.511601544389194, + 13.0599658284693 + ], + [ + 77.511530460169794, + 13.0599992704439 + ], + [ + 77.511487345334601, + 13.0600075948613 + ], + [ + 77.511463337272502, + 13.0600103787487 + ], + [ + 77.511438530866897, + 13.0599020405693 + ], + [ + 77.511402080638305, + 13.0596691641089 + ], + [ + 77.511376767979598, + 13.0595719634993 + ], + [ + 77.511339305244704, + 13.059377562280201 + ], + [ + 77.511308930054199, + 13.0591441795666 + ], + [ + 77.511282604889104, + 13.0590145787538 + ], + [ + 77.511260809905593, + 13.058909760649099 + ], + [ + 77.511249918131199, + 13.0588579162157 + ], + [ + 77.511246597631995, + 13.058830745569701 + ], + [ + 77.510947061052406, + 13.058877950762399 + ], + [ + 77.510669002525802, + 13.058940947278501 + ], + [ + 77.510664406514294, + 13.058942121273301 + ], + [ + 77.510191376169999, + 13.059033310121199 + ], + [ + 77.510097402925098, + 13.059062356397201 + ], + [ + 77.510002733581402, + 13.059096781613 + ], + [ + 77.5098037760837, + 13.0591727195893 + ], + [ + 77.509547105724096, + 13.059267388933 + ], + [ + 77.508741467077996, + 13.0594033811921 + ], + [ + 77.507992212379307, + 13.0594600815477 + ], + [ + 77.507816795654307, + 13.059676504779899 + ], + [ + 77.507606147854403, + 13.0600170464858 + ], + [ + 77.507180941666704, + 13.060743686472399 + ], + [ + 77.507164741565106, + 13.060857087183599 + ], + [ + 77.507079691031706, + 13.0609198625773 + ], + [ + 77.506889339837997, + 13.0609401127042 + ], + [ + 77.506816439380799, + 13.061144638986899 + ], + [ + 77.506559262767993, + 13.061537491450499 + ], + [ + 77.505220729373704, + 13.063568579187899 + ], + [ + 77.505977071616897, + 13.0636764111141 + ], + [ + 77.507544431446206, + 13.0638181620031 + ], + [ + 77.508467837237006, + 13.063824237041199 + ], + [ + 77.509053065907096, + 13.0637725992173 + ], + [ + 77.509297269782394, + 13.0637745609483 + ], + [ + 77.509132231247406, + 13.0640216124976 + ], + [ + 77.509065215983398, + 13.0641026762873 + ], + [ + 77.509073632442295, + 13.0642700562431 + ], + [ + 77.509184755014104, + 13.0642590452366 + ], + [ + 77.509184248761002, + 13.064208799609 + ], + [ + 77.509354476390996, + 13.0641965229695 + ], + [ + 77.509648419640797, + 13.064195826871501 + ], + [ + 77.509832695796405, + 13.0642484772017 + ], + [ + 77.509931731573502, + 13.0642963814082 + ], + [ + 77.510061770009898, + 13.0643898788902 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "30", + "group": "Agaram", + "Corporatio": "Central", + "ac_no": "163", + "ac": "Shanthinagar", + "corporat_1": "1", + "ward_id": "30", + "ward_name": "30 - Agaram", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಾಂತಿನಗರ", + "ward_name_": "ಅಗರಂ", + "dig_ward_n": "Agaram", + "Assembly": "163 - Shanthinagar", + "Slno": "30" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.620448740858805, + 12.966854017339699 + ], + [ + 77.620412339431198, + 12.966951501394201 + ], + [ + 77.620272131780695, + 12.967252170711699 + ], + [ + 77.620247933820494, + 12.967305491131 + ], + [ + 77.620243446710205, + 12.9673168281443 + ], + [ + 77.620207334391495, + 12.9674198526554 + ], + [ + 77.620192442762203, + 12.967462335899601 + ], + [ + 77.620059526254593, + 12.967841533653599 + ], + [ + 77.620049447980406, + 12.967868737695801 + ], + [ + 77.620036233995293, + 12.967926463679699 + ], + [ + 77.619990396755099, + 12.9681244992397 + ], + [ + 77.619977978336806, + 12.9681781491204 + ], + [ + 77.619966281735202, + 12.9682286839735 + ], + [ + 77.619965189512101, + 12.9682343413368 + ], + [ + 77.619923948781306, + 12.9685294968483 + ], + [ + 77.619898582997806, + 12.9686912383065 + ], + [ + 77.619848908148995, + 12.969005676404301 + ], + [ + 77.619814705790702, + 12.969269492839601 + ], + [ + 77.619808245939495, + 12.9693193172689 + ], + [ + 77.619764542666005, + 12.9696564234352 + ], + [ + 77.619754537983198, + 12.9697335929957 + ], + [ + 77.619713600416404, + 12.9700493578736 + ], + [ + 77.619694959992401, + 12.9701969319672 + ], + [ + 77.619684907252505, + 12.970276638812701 + ], + [ + 77.619615247228893, + 12.970828418287001 + ], + [ + 77.619597708222798, + 12.970963473468901 + ], + [ + 77.619591324285807, + 12.9710126322229 + ], + [ + 77.6195556102371, + 12.971287630165699 + ], + [ + 77.619551353972597, + 12.9713204029733 + ], + [ + 77.619504963015103, + 12.971677612915 + ], + [ + 77.619525024241199, + 12.971850092940301 + ], + [ + 77.619544190530902, + 12.9720148703931 + ], + [ + 77.619526734098002, + 12.972217186045 + ], + [ + 77.619500435003005, + 12.9723282615033 + ], + [ + 77.619496316166106, + 12.972345656749701 + ], + [ + 77.619488139359603, + 12.9723801900588 + ], + [ + 77.619478219456994, + 12.9723861143103 + ], + [ + 77.619322784097207, + 12.972478972050601 + ], + [ + 77.619579262889104, + 12.9726389769584 + ], + [ + 77.619597526775905, + 12.972650370296 + ], + [ + 77.619684408485796, + 12.9727045720312 + ], + [ + 77.619897248149698, + 12.972741952526601 + ], + [ + 77.620019127543102, + 12.9727249157832 + ], + [ + 77.620032802199205, + 12.972723038036101 + ], + [ + 77.620129587312803, + 12.972709756604299 + ], + [ + 77.620276688858098, + 12.9726895719892 + ], + [ + 77.620343790854093, + 12.972686952652399 + ], + [ + 77.620822841741102, + 12.972668258924999 + ], + [ + 77.621015570761699, + 12.972685044476099 + ], + [ + 77.621032027061602, + 12.9726864776742 + ], + [ + 77.621609098668699, + 12.972821394524701 + ], + [ + 77.621633997550106, + 12.9728272153927 + ], + [ + 77.621676017124997, + 12.972852770456401 + ], + [ + 77.621706034551906, + 12.9728710258403 + ], + [ + 77.621909808856699, + 12.9729949547693 + ], + [ + 77.622226216027002, + 12.9731823619768 + ], + [ + 77.622261531533596, + 12.9732032795295 + ], + [ + 77.622275369827804, + 12.973211475815299 + ], + [ + 77.622289127846102, + 12.973219659358501 + ], + [ + 77.622611395030205, + 12.973411355945601 + ], + [ + 77.622935260394499, + 12.973604583472101 + ], + [ + 77.623109089414797, + 12.973710109853799 + ], + [ + 77.623490883405395, + 12.9739428602389 + ], + [ + 77.623775849086101, + 12.974116582089099 + ], + [ + 77.623776032655798, + 12.9741166940673 + ], + [ + 77.623971880368202, + 12.974235549701699 + ], + [ + 77.624573935062799, + 12.974603262629399 + ], + [ + 77.624675801327996, + 12.974667723881 + ], + [ + 77.624746073843198, + 12.974712192521199 + ], + [ + 77.624769111669906, + 12.9747269214259 + ], + [ + 77.624935212033805, + 12.974833113335199 + ], + [ + 77.625086480405301, + 12.9749298217404 + ], + [ + 77.625274698896703, + 12.975050153470001 + ], + [ + 77.625317067459605, + 12.9750824744683 + ], + [ + 77.625349554601399, + 12.9751058610843 + ], + [ + 77.625356220718103, + 12.975110899876199 + ], + [ + 77.625458660109302, + 12.975188325275001 + ], + [ + 77.625545136238102, + 12.975254078892901 + ], + [ + 77.625610470557305, + 12.9753001274863 + ], + [ + 77.625659637203896, + 12.975334781041299 + ], + [ + 77.625660676633103, + 12.975335514054899 + ], + [ + 77.625973203179697, + 12.9755557875728 + ], + [ + 77.626122036563302, + 12.9756931842683 + ], + [ + 77.626385970230601, + 12.975935569318599 + ], + [ + 77.626580947280104, + 12.9761357384871 + ], + [ + 77.626635654624096, + 12.9761916491561 + ], + [ + 77.626825750397998, + 12.9764708889332 + ], + [ + 77.626837984719998, + 12.9764888606925 + ], + [ + 77.626851427124606, + 12.9765079224091 + ], + [ + 77.626904095541306, + 12.976650948947899 + ], + [ + 77.626909738559903, + 12.9766662734447 + ], + [ + 77.626922750409307, + 12.9767016090724 + ], + [ + 77.626983589043206, + 12.9768668230633 + ], + [ + 77.627045292001398, + 12.9770471315494 + ], + [ + 77.627088724126594, + 12.977174050429401 + ], + [ + 77.627142517741603, + 12.9772525554837 + ], + [ + 77.627172903184501, + 12.977296634919201 + ], + [ + 77.627212092219295, + 12.9773534863716 + ], + [ + 77.627223162853397, + 12.9773640654861 + ], + [ + 77.627322012300993, + 12.9774585265671 + ], + [ + 77.627453641897603, + 12.977542136063599 + ], + [ + 77.627504012018605, + 12.977574130879001 + ], + [ + 77.627569385044296, + 12.9776039603413 + ], + [ + 77.627829162083302, + 12.9777244245986 + ], + [ + 77.628035235776096, + 12.9777853337397 + ], + [ + 77.628043430417506, + 12.977787756063 + ], + [ + 77.6282854564448, + 12.9779174333526 + ], + [ + 77.628470274264899, + 12.9781058902147 + ], + [ + 77.628493102158004, + 12.9781291670895 + ], + [ + 77.628493808006596, + 12.978129888102799 + ], + [ + 77.628495558802598, + 12.9781321280272 + ], + [ + 77.628536505089201, + 12.978105221460799 + ], + [ + 77.628818649565403, + 12.9779198160901 + ], + [ + 77.628846000708194, + 12.9779018425785 + ], + [ + 77.628846052859402, + 12.9779018086249 + ], + [ + 77.628898551191597, + 12.977867309466101 + ], + [ + 77.629006211033996, + 12.977796563193101 + ], + [ + 77.629032420385798, + 12.977779340203901 + ], + [ + 77.629195439211799, + 12.977672215567001 + ], + [ + 77.629485803019406, + 12.977511039126799 + ], + [ + 77.629534045369496, + 12.9774842601056 + ], + [ + 77.6295342734212, + 12.977484134031601 + ], + [ + 77.629535876155401, + 12.977483244222 + ], + [ + 77.629648406490105, + 12.9774207797401 + ], + [ + 77.629982551724893, + 12.977235300917 + ], + [ + 77.630103490198806, + 12.977168169119601 + ], + [ + 77.630114458370201, + 12.977162080289601 + ], + [ + 77.630136397464995, + 12.977149901697301 + ], + [ + 77.630248092223596, + 12.9770879016839 + ], + [ + 77.630393595362705, + 12.9770223732492 + ], + [ + 77.630538672991904, + 12.976957036057801 + ], + [ + 77.630620383463196, + 12.9769202363897 + ], + [ + 77.630678742703196, + 12.9768939537931 + ], + [ + 77.630869558019199, + 12.976808017528199 + ], + [ + 77.631035175485593, + 12.9767334300227 + ], + [ + 77.631306715147204, + 12.9766111382107 + ], + [ + 77.631526779157099, + 12.9765120292176 + ], + [ + 77.631578443368596, + 12.976488761139301 + ], + [ + 77.631587659494599, + 12.976484610642199 + ], + [ + 77.631589276810203, + 12.976483882385001 + ], + [ + 77.631658890994402, + 12.9764525304809 + ], + [ + 77.631790418559007, + 12.976367633713799 + ], + [ + 77.631796346001295, + 12.9763599796497 + ], + [ + 77.631918471139898, + 12.976202289090899 + ], + [ + 77.631977921825396, + 12.976125524408401 + ], + [ + 77.632025128641004, + 12.976064570472399 + ], + [ + 77.632055921843104, + 12.976024809552801 + ], + [ + 77.632079543419707, + 12.9759943098124 + ], + [ + 77.632487892024102, + 12.975397751326801 + ], + [ + 77.632501216572805, + 12.975378286169599 + ], + [ + 77.632516615952895, + 12.9753557889417 + ], + [ + 77.632538119197505, + 12.9753243746944 + ], + [ + 77.632548664888304, + 12.975308969587401 + ], + [ + 77.632731050318398, + 12.9750425206624 + ], + [ + 77.6328677147484, + 12.974444135081599 + ], + [ + 77.632869540232406, + 12.974436144010699 + ], + [ + 77.633014038812505, + 12.9738034489539 + ], + [ + 77.633021094956405, + 12.9737725522797 + ], + [ + 77.633053829014102, + 12.973657746232799 + ], + [ + 77.633054141708797, + 12.9736566481346 + ], + [ + 77.633146380998397, + 12.973333144672999 + ], + [ + 77.632973186185296, + 12.9732639679958 + ], + [ + 77.632680366085907, + 12.973231078921099 + ], + [ + 77.632230809117999, + 12.973242799992899 + ], + [ + 77.631821652170899, + 12.973272038709201 + ], + [ + 77.631811039312893, + 12.9732730928874 + ], + [ + 77.631339572799405, + 12.9733199419423 + ], + [ + 77.631112560737904, + 12.9733716674539 + ], + [ + 77.631059256861306, + 12.9733592298827 + ], + [ + 77.630917372883005, + 12.972804328723701 + ], + [ + 77.630864968613395, + 12.9724220927441 + ], + [ + 77.6305034098867, + 12.972573551656801 + ], + [ + 77.630212135072099, + 12.972687645223299 + ], + [ + 77.629965627601706, + 12.9727676175665 + ], + [ + 77.629867732279394, + 12.9725834197891 + ], + [ + 77.629785294210507, + 12.972450842985699 + ], + [ + 77.6295387055318, + 12.9719565756051 + ], + [ + 77.629401506299104, + 12.9715828781952 + ], + [ + 77.629479685318103, + 12.971542011889801 + ], + [ + 77.6288423097227, + 12.9710923576485 + ], + [ + 77.628415858335003, + 12.9708671998476 + ], + [ + 77.628186663136603, + 12.970752309805 + ], + [ + 77.628149873092994, + 12.9707338679753 + ], + [ + 77.628133008830503, + 12.970725414398199 + ], + [ + 77.6281231140063, + 12.9707204543627 + ], + [ + 77.628098771906096, + 12.970708252193999 + ], + [ + 77.628092414616205, + 12.9707042790768 + ], + [ + 77.628093882690493, + 12.9707018855577 + ], + [ + 77.628204720503106, + 12.970521230432 + ], + [ + 77.628229988494198, + 12.970480046005701 + ], + [ + 77.628237346106999, + 12.9704680547454 + ], + [ + 77.628237923919798, + 12.9704671129715 + ], + [ + 77.628248218577099, + 12.9704503328563 + ], + [ + 77.628265878990803, + 12.970421547846801 + ], + [ + 77.628266211377806, + 12.9704210069577 + ], + [ + 77.628267547231104, + 12.9704188297864 + ], + [ + 77.628268421195102, + 12.9704174053079 + ], + [ + 77.628276000680799, + 12.970405051343599 + ], + [ + 77.628286988107703, + 12.970385996661999 + ], + [ + 77.628288523361604, + 12.9703833341501 + ], + [ + 77.628289551991799, + 12.970381550357301 + ], + [ + 77.628292046215293, + 12.970377224910299 + ], + [ + 77.628301554477702, + 12.970360735508599 + ], + [ + 77.628303241823602, + 12.970357819407599 + ], + [ + 77.628311969320606, + 12.9703426821729 + ], + [ + 77.628372522608799, + 12.970237659297 + ], + [ + 77.628494509517097, + 12.970026106774601 + ], + [ + 77.628497994208502, + 12.9700200485105 + ], + [ + 77.628503632754303, + 12.9700102355811 + ], + [ + 77.628677000600604, + 12.9697080520324 + ], + [ + 77.628752107132598, + 12.9695803220387 + ], + [ + 77.6287749311238, + 12.9695415066438 + ], + [ + 77.628817496654506, + 12.969469116078001 + ], + [ + 77.628824429811004, + 12.9694573242374 + ], + [ + 77.628916694904206, + 12.9693004140588 + ], + [ + 77.628935727830395, + 12.9692680457779 + ], + [ + 77.628947143409803, + 12.9692486308137 + ], + [ + 77.628955478392697, + 12.9692344551543 + ], + [ + 77.628964283075206, + 12.9692194815518 + ], + [ + 77.6289810001159, + 12.969191052063101 + ], + [ + 77.629007821842293, + 12.9690927056606 + ], + [ + 77.629038000837696, + 12.9689820515708 + ], + [ + 77.629044000029097, + 12.968809051648799 + ], + [ + 77.628998000540506, + 12.9684860515873 + ], + [ + 77.6289840006324, + 12.968439052113901 + ], + [ + 77.628968301780603, + 12.9683134666166 + ], + [ + 77.628959000097197, + 12.968239051688499 + ], + [ + 77.628946062361095, + 12.968133577148301 + ], + [ + 77.6291703105599, + 12.968106467090999 + ], + [ + 77.629755037369407, + 12.968031671872099 + ], + [ + 77.630275863976607, + 12.9680670600999 + ], + [ + 77.630718918396894, + 12.968097587397899 + ], + [ + 77.631249708816, + 12.968165885299801 + ], + [ + 77.631345475060698, + 12.9681782076491 + ], + [ + 77.6313617214348, + 12.968180298234399 + ], + [ + 77.632347757106302, + 12.968327290337699 + ], + [ + 77.633098554140204, + 12.968441652474199 + ], + [ + 77.633120463726399, + 12.9683352800911 + ], + [ + 77.633126007733594, + 12.968418219307299 + ], + [ + 77.633138000001694, + 12.968384052033 + ], + [ + 77.633148000026097, + 12.9682730518751 + ], + [ + 77.633153300156707, + 12.968244845277599 + ], + [ + 77.633238000704296, + 12.967794052082599 + ], + [ + 77.633309000136293, + 12.967413052258699 + ], + [ + 77.633343558632603, + 12.9672219186501 + ], + [ + 77.633361930317093, + 12.967120307821199 + ], + [ + 77.633379966903604, + 12.967020555084501 + ], + [ + 77.633439000885701, + 12.966694052606799 + ], + [ + 77.633460855150602, + 12.9666150008019 + ], + [ + 77.633548958938505, + 12.966296308582301 + ], + [ + 77.633557532738394, + 12.9662652953867 + ], + [ + 77.633583993286095, + 12.966169579647399 + ], + [ + 77.633592394926694, + 12.9661391888369 + ], + [ + 77.633648000317294, + 12.9659380519655 + ], + [ + 77.6338970007791, + 12.9654530522545 + ], + [ + 77.633829628664699, + 12.965444186994601 + ], + [ + 77.633821000300898, + 12.9654430520206 + ], + [ + 77.633579000069602, + 12.9654410522039 + ], + [ + 77.633578000272493, + 12.965374051930601 + ], + [ + 77.633579000737598, + 12.965353051990499 + ], + [ + 77.6335880002609, + 12.965204051931799 + ], + [ + 77.633592135112494, + 12.9651089668954 + ], + [ + 77.633595000832699, + 12.9650430522428 + ], + [ + 77.633627999998296, + 12.9650430525146 + ], + [ + 77.633630442876097, + 12.9650430521818 + ], + [ + 77.633645000678897, + 12.965043052094201 + ], + [ + 77.633651000381406, + 12.9650130523827 + ], + [ + 77.633671000867594, + 12.964894052523 + ], + [ + 77.633680045282006, + 12.9647342635008 + ], + [ + 77.633686000612997, + 12.9646290526986 + ], + [ + 77.633686703946694, + 12.964620783901299 + ], + [ + 77.633690000313806, + 12.9645820520944 + ], + [ + 77.634053000056795, + 12.9644820527806 + ], + [ + 77.634275000581596, + 12.9644800521283 + ], + [ + 77.634175000481207, + 12.9643560525003 + ], + [ + 77.634082000394997, + 12.964117052054201 + ], + [ + 77.634053000820401, + 12.963848051969 + ], + [ + 77.634061548955998, + 12.963775393682401 + ], + [ + 77.634067000811996, + 12.963729052329899 + ], + [ + 77.634085000227799, + 12.9635530522616 + ], + [ + 77.634093000292296, + 12.963468052630599 + ], + [ + 77.634105000086805, + 12.9633480523872 + ], + [ + 77.634110999984003, + 12.963288052265799 + ], + [ + 77.634182000366295, + 12.9632970524796 + ], + [ + 77.634176000287297, + 12.9630760526118 + ], + [ + 77.634324032987706, + 12.9627596345185 + ], + [ + 77.634337358956898, + 12.9623340919036 + ], + [ + 77.634340024150703, + 12.962189283038899 + ], + [ + 77.634271431354094, + 12.9617130528678 + ], + [ + 77.634374999975904, + 12.961713052555201 + ], + [ + 77.634538000368195, + 12.961690052403 + ], + [ + 77.634560497269405, + 12.961631936945899 + ], + [ + 77.634310523768505, + 12.9616276536282 + ], + [ + 77.634354225344296, + 12.9615763782817 + ], + [ + 77.634551450563094, + 12.961301273431401 + ], + [ + 77.634562088173396, + 12.961288791763801 + ], + [ + 77.634686220061099, + 12.961277620630501 + ], + [ + 77.634716170077397, + 12.9611517061967 + ], + [ + 77.634720561354499, + 12.9611313350457 + ], + [ + 77.634711374785098, + 12.961133686559601 + ], + [ + 77.634853888225095, + 12.9607299848875 + ], + [ + 77.6348621602246, + 12.9607065516473 + ], + [ + 77.635005429978605, + 12.9603007030424 + ], + [ + 77.635062446315203, + 12.9601386415483 + ], + [ + 77.635074879404002, + 12.9601035167289 + ], + [ + 77.635081897005094, + 12.9600836917535 + ], + [ + 77.635109674002507, + 12.9600052214409 + ], + [ + 77.635115943437398, + 12.959983801392299 + ], + [ + 77.635129915571596, + 12.9599360593448 + ], + [ + 77.635172117503899, + 12.9597829434079 + ], + [ + 77.635193678387395, + 12.959705668898 + ], + [ + 77.635237551166796, + 12.9595484372831 + ], + [ + 77.635242092369595, + 12.959532163381301 + ], + [ + 77.635269758492598, + 12.9594330133616 + ], + [ + 77.635348516763003, + 12.9591487716032 + ], + [ + 77.635447785117293, + 12.958835169217499 + ], + [ + 77.635454667369103, + 12.9588134285796 + ], + [ + 77.6354654542953, + 12.958779351215099 + ], + [ + 77.635483353448194, + 12.958722804543999 + ], + [ + 77.635547958649695, + 12.958570829568 + ], + [ + 77.635558623389002, + 12.958544748605201 + ], + [ + 77.635635287259703, + 12.9583858055133 + ], + [ + 77.635712432473099, + 12.9582258692129 + ], + [ + 77.635742282367005, + 12.958160765519599 + ], + [ + 77.635747788619099, + 12.958148756776099 + ], + [ + 77.635759019027205, + 12.958124263696901 + ], + [ + 77.635793357632394, + 12.958049369490499 + ], + [ + 77.635842997535903, + 12.957941102943201 + ], + [ + 77.635915342366999, + 12.957665106485299 + ], + [ + 77.635917595239803, + 12.957656513041201 + ], + [ + 77.635945391128701, + 12.9575504714159 + ], + [ + 77.636000889878105, + 12.9573947500397 + ], + [ + 77.636010168730905, + 12.9573687138219 + ], + [ + 77.636067151698597, + 12.9572088262564 + ], + [ + 77.636073925407203, + 12.9571898195268 + ], + [ + 77.636084059573605, + 12.957161383327399 + ], + [ + 77.636087955074103, + 12.9571504542032 + ], + [ + 77.636118272593194, + 12.957065386771699 + ], + [ + 77.636138868379007, + 12.957007596807999 + ], + [ + 77.636158686071397, + 12.9569473809408 + ], + [ + 77.636178666237896, + 12.956886674684901 + ], + [ + 77.636185374796597, + 12.956866292724101 + ], + [ + 77.636194490613804, + 12.956838596789201 + ], + [ + 77.636207483726594, + 12.9567991181935 + ], + [ + 77.636262025225193, + 12.9566349993906 + ], + [ + 77.636274009737505, + 12.956598936855899 + ], + [ + 77.636300115300799, + 12.956520382279701 + ], + [ + 77.636346408180898, + 12.9563787560345 + ], + [ + 77.636375746875402, + 12.9563219959636 + ], + [ + 77.636610769293696, + 12.9554170255175 + ], + [ + 77.636667702518295, + 12.9552178188134 + ], + [ + 77.636886474789804, + 12.9549665980967 + ], + [ + 77.637404700394001, + 12.954371507837401 + ], + [ + 77.637633777807906, + 12.954111484372699 + ], + [ + 77.637652664971895, + 12.9540900458327 + ], + [ + 77.637670262343704, + 12.9540700712279 + ], + [ + 77.637704164555899, + 12.9540315886908 + ], + [ + 77.637715884605498, + 12.954018285653101 + ], + [ + 77.637934393152605, + 12.953775540144701 + ], + [ + 77.637943491689896, + 12.953765820369799 + ], + [ + 77.638000048254199, + 12.953696716808601 + ], + [ + 77.638042371164502, + 12.953642323059199 + ], + [ + 77.638088978050206, + 12.953585387988699 + ], + [ + 77.638342866878006, + 12.9532684466094 + ], + [ + 77.638639766740994, + 12.952897810782501 + ], + [ + 77.638661872602498, + 12.9528702153948 + ], + [ + 77.638848495297495, + 12.952637243941499 + ], + [ + 77.638872102103406, + 12.952607774124999 + ], + [ + 77.639395872559405, + 12.9519539193236 + ], + [ + 77.639698154196196, + 12.951575942318 + ], + [ + 77.639695816021103, + 12.951572578241899 + ], + [ + 77.639739157861001, + 12.951533743315901 + ], + [ + 77.639759642318495, + 12.951510951458101 + ], + [ + 77.639771490475297, + 12.9514982008566 + ], + [ + 77.639735528771396, + 12.9514449201675 + ], + [ + 77.639916853533805, + 12.9511932680643 + ], + [ + 77.639963775135797, + 12.9511899729637 + ], + [ + 77.639981708409806, + 12.9511887134368 + ], + [ + 77.640035536865696, + 12.951184942689199 + ], + [ + 77.640183288392805, + 12.951167915522699 + ], + [ + 77.640336099745596, + 12.9511503057822 + ], + [ + 77.640649175443102, + 12.950652970944599 + ], + [ + 77.640786787273697, + 12.9504487450423 + ], + [ + 77.6410152704468, + 12.9503819705773 + ], + [ + 77.641457242652905, + 12.949970889030199 + ], + [ + 77.641584221077295, + 12.9498700859117 + ], + [ + 77.641591505766698, + 12.9498643025197 + ], + [ + 77.642417936599003, + 12.949208225611899 + ], + [ + 77.6430722037599, + 12.9485397282139 + ], + [ + 77.643358076778497, + 12.948358997182799 + ], + [ + 77.643770270888794, + 12.948037982742401 + ], + [ + 77.643743822567103, + 12.947905126474 + ], + [ + 77.643725203874993, + 12.9478274094892 + ], + [ + 77.643718113490607, + 12.947797814565201 + ], + [ + 77.643850085911396, + 12.947720948092799 + ], + [ + 77.643946164339098, + 12.9476649883246 + ], + [ + 77.644275695608698, + 12.9476098906815 + ], + [ + 77.644198600626396, + 12.947423840289099 + ], + [ + 77.644187868576296, + 12.947397940225001 + ], + [ + 77.644289747379204, + 12.947346138584001 + ], + [ + 77.644870887694296, + 12.947050648501801 + ], + [ + 77.646363610300298, + 12.94580482804 + ], + [ + 77.646890711426806, + 12.9452695305862 + ], + [ + 77.646976905122301, + 12.945181996224999 + ], + [ + 77.647134878450501, + 12.945021566243399 + ], + [ + 77.647521247945804, + 12.944629184735801 + ], + [ + 77.647540449073503, + 12.9446103226738 + ], + [ + 77.647645393815196, + 12.944507227193901 + ], + [ + 77.648732165894998, + 12.943530400029699 + ], + [ + 77.648846782488107, + 12.9434273784792 + ], + [ + 77.648977928942202, + 12.943355019226299 + ], + [ + 77.649163330714799, + 12.943245321049799 + ], + [ + 77.650108267300496, + 12.942686222897301 + ], + [ + 77.650241848389797, + 12.942465575141 + ], + [ + 77.650732543199794, + 12.9423093333358 + ], + [ + 77.651003431577706, + 12.9422067823471 + ], + [ + 77.651032719812704, + 12.942195694243701 + ], + [ + 77.651770677596105, + 12.941916319166801 + ], + [ + 77.652489242131196, + 12.9415571464466 + ], + [ + 77.6526742451545, + 12.941377669154701 + ], + [ + 77.652703819192496, + 12.941361402417201 + ], + [ + 77.654242828257296, + 12.9405149103958 + ], + [ + 77.654675996948995, + 12.940219588300099 + ], + [ + 77.655015807305901, + 12.940184497710501 + ], + [ + 77.655879757153201, + 12.940095280866 + ], + [ + 77.656000558825198, + 12.9400872745704 + ], + [ + 77.656447489878801, + 12.940108693015601 + ], + [ + 77.656493181973801, + 12.940108542659001 + ], + [ + 77.656775023059396, + 12.9401076134827 + ], + [ + 77.657139537300296, + 12.940119707504699 + ], + [ + 77.657280544197903, + 12.940117140877399 + ], + [ + 77.657427822710005, + 12.940108864019001 + ], + [ + 77.657514544907102, + 12.940089912012001 + ], + [ + 77.657584455408298, + 12.9400598389393 + ], + [ + 77.657717167094603, + 12.939926364397399 + ], + [ + 77.657778216360995, + 12.9398749260024 + ], + [ + 77.657801695736794, + 12.9398633941772 + ], + [ + 77.657881546664797, + 12.939847899856501 + ], + [ + 77.657920662595401, + 12.9398452425371 + ], + [ + 77.658011257011196, + 12.939865774422699 + ], + [ + 77.658055997157604, + 12.939850638058401 + ], + [ + 77.6580735770399, + 12.9398256154475 + ], + [ + 77.658077858601501, + 12.9397950822203 + ], + [ + 77.658096632406597, + 12.9394482130971 + ], + [ + 77.658103750962198, + 12.939087911896801 + ], + [ + 77.658108470355998, + 12.938772804888099 + ], + [ + 77.658113765400699, + 12.9384576920061 + ], + [ + 77.658126218791395, + 12.9381662202464 + ], + [ + 77.658138899577494, + 12.937896201791901 + ], + [ + 77.658168829823296, + 12.937895896632 + ], + [ + 77.658285696824706, + 12.9378969635441 + ], + [ + 77.658594843939298, + 12.937899457446299 + ], + [ + 77.658882166773793, + 12.937906690526599 + ], + [ + 77.658887946526093, + 12.937908890067099 + ], + [ + 77.658908163690299, + 12.937915459337299 + ], + [ + 77.658917516627497, + 12.9379289148628 + ], + [ + 77.658921149660898, + 12.937945816451499 + ], + [ + 77.658921508752002, + 12.937979690070801 + ], + [ + 77.658909907151298, + 12.938297125595 + ], + [ + 77.658930064498705, + 12.938298049254 + ], + [ + 77.659056164878194, + 12.9383012800985 + ], + [ + 77.659664770580406, + 12.938315398291399 + ], + [ + 77.6600586002629, + 12.938323801875301 + ], + [ + 77.660290595608899, + 12.9383248223705 + ], + [ + 77.660362459474896, + 12.9383161843549 + ], + [ + 77.660408314372603, + 12.938297648561299 + ], + [ + 77.6604272130472, + 12.938277075156501 + ], + [ + 77.660434491701494, + 12.9382691503933 + ], + [ + 77.660455776928899, + 12.938213600352301 + ], + [ + 77.660456892160994, + 12.938210201247299 + ], + [ + 77.660564348218202, + 12.9380295552857 + ], + [ + 77.660543543468805, + 12.9380218629091 + ], + [ + 77.659336018782597, + 12.937549737891599 + ], + [ + 77.659230684521404, + 12.9374772010262 + ], + [ + 77.6590053958965, + 12.937322059752599 + ], + [ + 77.659094714251594, + 12.9372564531543 + ], + [ + 77.658888870069006, + 12.937136448778499 + ], + [ + 77.657891548647896, + 12.9365550167182 + ], + [ + 77.656156392336996, + 12.9355434160843 + ], + [ + 77.656026446255098, + 12.935467655633101 + ], + [ + 77.655065539016306, + 12.9349074341337 + ], + [ + 77.655166754901003, + 12.9347701315773 + ], + [ + 77.6580317926297, + 12.930883561192401 + ], + [ + 77.659124347382701, + 12.9294179605838 + ], + [ + 77.660435850034801, + 12.929678963960299 + ], + [ + 77.660543951849505, + 12.929700477021999 + ], + [ + 77.660747147068605, + 12.929809070273601 + ], + [ + 77.661084653761193, + 12.929827084069601 + ], + [ + 77.661093180847601, + 12.929821657127199 + ], + [ + 77.661329941444393, + 12.929671004048 + ], + [ + 77.661816876437001, + 12.928961389625499 + ], + [ + 77.662271877724507, + 12.9287243815689 + ], + [ + 77.662631202588798, + 12.9285372102335 + ], + [ + 77.662208807085307, + 12.927936144897799 + ], + [ + 77.662066199660501, + 12.927171682049201 + ], + [ + 77.661947359124298, + 12.9265230452711 + ], + [ + 77.662757574272504, + 12.926728605783399 + ], + [ + 77.6626808229056, + 12.926570907827699 + ], + [ + 77.662655483306906, + 12.9265188437353 + ], + [ + 77.662471960352505, + 12.9261417668127 + ], + [ + 77.661828577039799, + 12.9238526404704 + ], + [ + 77.661601016577393, + 12.9230429798399 + ], + [ + 77.661327755253794, + 12.9223512827474 + ], + [ + 77.661160480700701, + 12.9216122055919 + ], + [ + 77.6615566719139, + 12.9215200851555 + ], + [ + 77.661593422873196, + 12.921511805721201 + ], + [ + 77.662037275925101, + 12.9214090354362 + ], + [ + 77.662407459141505, + 12.9213070158926 + ], + [ + 77.662694979489999, + 12.921226165457901 + ], + [ + 77.662789656498404, + 12.921198097874401 + ], + [ + 77.662216166867694, + 12.9187907591081 + ], + [ + 77.661995280916599, + 12.918261138711401 + ], + [ + 77.6603541042346, + 12.9163446031682 + ], + [ + 77.654663987008107, + 12.9204497373259 + ], + [ + 77.654419032254395, + 12.920473683989099 + ], + [ + 77.654381129912295, + 12.9204819741338 + ], + [ + 77.654185313851798, + 12.920471543482501 + ], + [ + 77.654138587437302, + 12.920461855347799 + ], + [ + 77.654088995238098, + 12.920453325589399 + ], + [ + 77.654018143720194, + 12.920448399710001 + ], + [ + 77.653956020800706, + 12.9204524190532 + ], + [ + 77.653611797932598, + 12.920451401481399 + ], + [ + 77.653599270279798, + 12.9206276915665 + ], + [ + 77.653599565570602, + 12.9207101236904 + ], + [ + 77.653599923649793, + 12.920961942417801 + ], + [ + 77.652325310977403, + 12.9211047604584 + ], + [ + 77.651817172058202, + 12.921170902665301 + ], + [ + 77.651592852030603, + 12.921186732464401 + ], + [ + 77.6515859454734, + 12.921186802623099 + ], + [ + 77.651501304382904, + 12.9211842746651 + ], + [ + 77.651500871880202, + 12.9211978300584 + ], + [ + 77.651488285022197, + 12.9215322159134 + ], + [ + 77.651479890604406, + 12.921936572676801 + ], + [ + 77.651486821533197, + 12.922320447251 + ], + [ + 77.651484551261404, + 12.922378798331501 + ], + [ + 77.651482293942905, + 12.9224368059885 + ], + [ + 77.651479363852403, + 12.922704467986 + ], + [ + 77.651478725384905, + 12.922753032218299 + ], + [ + 77.651492847279101, + 12.9230001944796 + ], + [ + 77.651517908001907, + 12.9231930416059 + ], + [ + 77.651559635940501, + 12.9233834608865 + ], + [ + 77.651622831761401, + 12.9236990087509 + ], + [ + 77.651685908579793, + 12.9240032652773 + ], + [ + 77.651737707486902, + 12.9242206841325 + ], + [ + 77.651637128738201, + 12.924235257095701 + ], + [ + 77.651072337162901, + 12.924333593663601 + ], + [ + 77.650890724373795, + 12.9243602820359 + ], + [ + 77.650687601461499, + 12.924366862262699 + ], + [ + 77.650454430498797, + 12.924362455003299 + ], + [ + 77.650264724021994, + 12.924385837403401 + ], + [ + 77.650077203038094, + 12.9244628043762 + ], + [ + 77.649756927539897, + 12.9245942590683 + ], + [ + 77.649630782018704, + 12.9246407099376 + ], + [ + 77.649489949689197, + 12.9246590785809 + ], + [ + 77.649192733009102, + 12.924694844277401 + ], + [ + 77.648862233022399, + 12.9246857774129 + ], + [ + 77.6483437682854, + 12.9246469986607 + ], + [ + 77.6481369888957, + 12.924634416764301 + ], + [ + 77.647906012326203, + 12.9246198217156 + ], + [ + 77.6474699472667, + 12.924589239102801 + ], + [ + 77.646924816352893, + 12.924532659914099 + ], + [ + 77.646687413397999, + 12.924509094904501 + ], + [ + 77.646391267989401, + 12.924482737606301 + ], + [ + 77.646366418592905, + 12.924481757354201 + ], + [ + 77.646095277264905, + 12.924471058696099 + ], + [ + 77.645856421281493, + 12.9244734804881 + ], + [ + 77.645760902669906, + 12.924476707411699 + ], + [ + 77.645581293276095, + 12.924475140521499 + ], + [ + 77.645365999334004, + 12.924473935236101 + ], + [ + 77.6451661145516, + 12.9244601517799 + ], + [ + 77.644893388446107, + 12.924416616528701 + ], + [ + 77.644727045274905, + 12.9243629688398 + ], + [ + 77.644543280853298, + 12.924294817248599 + ], + [ + 77.644436398519801, + 12.9242575056281 + ], + [ + 77.644368336527904, + 12.924234683289299 + ], + [ + 77.644014708219899, + 12.924116104282801 + ], + [ + 77.643865163477599, + 12.9240724490852 + ], + [ + 77.643533617075903, + 12.9239640113031 + ], + [ + 77.643091385762403, + 12.923839755191301 + ], + [ + 77.642852979756896, + 12.923775543402799 + ], + [ + 77.642341634607504, + 12.923647468738499 + ], + [ + 77.641835386645596, + 12.9235114365712 + ], + [ + 77.641548373021095, + 12.923422871818399 + ], + [ + 77.641374643623294, + 12.9233783305549 + ], + [ + 77.641242722476605, + 12.9233683730699 + ], + [ + 77.641087031732795, + 12.923397050841899 + ], + [ + 77.640861058089001, + 12.923474997832001 + ], + [ + 77.640503582685994, + 12.9236164458201 + ], + [ + 77.6403250851167, + 12.9236870759837 + ], + [ + 77.639947911171603, + 12.923818568305901 + ], + [ + 77.6399247704462, + 12.9238266358318 + ], + [ + 77.639885775884395, + 12.9238405822923 + ], + [ + 77.639290565879705, + 12.9240577739405 + ], + [ + 77.639277582310498, + 12.924136952533701 + ], + [ + 77.639265655850394, + 12.9242070881643 + ], + [ + 77.639297341725197, + 12.9245929745846 + ], + [ + 77.639298700856898, + 12.924609335106499 + ], + [ + 77.639316455143899, + 12.924823150279799 + ], + [ + 77.639213239420499, + 12.925134740631901 + ], + [ + 77.639195730591993, + 12.925385613401099 + ], + [ + 77.639115828750306, + 12.925669865738101 + ], + [ + 77.639166003864005, + 12.9258432642971 + ], + [ + 77.639236732010701, + 12.925891107114399 + ], + [ + 77.639313015863607, + 12.9259196962982 + ], + [ + 77.639356431443204, + 12.9259429716162 + ], + [ + 77.6394781966724, + 12.9259722299657 + ], + [ + 77.639560655591197, + 12.9259860762306 + ], + [ + 77.639567836661399, + 12.9259884455003 + ], + [ + 77.639640368207395, + 12.9260123721031 + ], + [ + 77.639688945390603, + 12.926022009699899 + ], + [ + 77.639737852980204, + 12.9260317126034 + ], + [ + 77.639851632386296, + 12.926025768972201 + ], + [ + 77.639871898883399, + 12.9260247102201 + ], + [ + 77.640145427501594, + 12.9259801602474 + ], + [ + 77.640380067086198, + 12.9259597179508 + ], + [ + 77.640550243594603, + 12.925939927783901 + ], + [ + 77.640816325147398, + 12.925953211816999 + ], + [ + 77.641095646522501, + 12.925967156564001 + ], + [ + 77.641098384029206, + 12.9259695490826 + ], + [ + 77.641320478927099, + 12.926163630247499 + ], + [ + 77.641333604601101, + 12.9262075384464 + ], + [ + 77.641400514866703, + 12.9264394882779 + ], + [ + 77.641593432543004, + 12.9271037973985 + ], + [ + 77.641706700492193, + 12.9275837143872 + ], + [ + 77.641823670449796, + 12.927977770176099 + ], + [ + 77.641869873414095, + 12.92821105863 + ], + [ + 77.641845711480599, + 12.928212432552501 + ], + [ + 77.641875668410904, + 12.928925819908899 + ], + [ + 77.641893566732605, + 12.929158526765701 + ], + [ + 77.641901010351901, + 12.929255306435 + ], + [ + 77.641768767780903, + 12.929324401068101 + ], + [ + 77.641500617485306, + 12.929388096276201 + ], + [ + 77.641245107632997, + 12.929449405640799 + ], + [ + 77.641003972730999, + 12.9293999001489 + ], + [ + 77.640304612467702, + 12.9295127528799 + ], + [ + 77.639936261123694, + 12.9295721911291 + ], + [ + 77.6398472105069, + 12.9296006669757 + ], + [ + 77.639702130650505, + 12.929647060592 + ], + [ + 77.6395790515557, + 12.929686418027 + ], + [ + 77.639580862442898, + 12.929712357308601 + ], + [ + 77.639588413605793, + 12.929820491943801 + ], + [ + 77.639588991539995, + 12.9298287676315 + ], + [ + 77.639515099243994, + 12.9301475996376 + ], + [ + 77.639477236272995, + 12.930219930119099 + ], + [ + 77.639465971554401, + 12.930250338964999 + ], + [ + 77.639474251836006, + 12.930303268937401 + ], + [ + 77.639490256793593, + 12.9303561225534 + ], + [ + 77.639545795367596, + 12.9304956682235 + ], + [ + 77.639523262232203, + 12.9305564841522 + ], + [ + 77.639469635029798, + 12.930598681099299 + ], + [ + 77.639050639872593, + 12.9307884713251 + ], + [ + 77.638812399901596, + 12.930904483257001 + ], + [ + 77.6385217213126, + 12.931283367909201 + ], + [ + 77.638093550599194, + 12.9318444457467 + ], + [ + 77.638047249235299, + 12.9319534567456 + ], + [ + 77.63800552443, + 12.932051694385001 + ], + [ + 77.637950874402705, + 12.932164780173499 + ], + [ + 77.6378730958115, + 12.9323257239519 + ], + [ + 77.637762233766495, + 12.932471842216399 + ], + [ + 77.637332588190404, + 12.933038126247601 + ], + [ + 77.637260997521906, + 12.933132483976101 + ], + [ + 77.637168729751906, + 12.9332540961249 + ], + [ + 77.637130468151199, + 12.9332976225908 + ], + [ + 77.637095042556297, + 12.933337923213299 + ], + [ + 77.636721717480896, + 12.9337626223102 + ], + [ + 77.636178224557995, + 12.934380904681699 + ], + [ + 77.635784223008102, + 12.934829104601301 + ], + [ + 77.635679320132297, + 12.934948437480999 + ], + [ + 77.635663572734202, + 12.934965839120601 + ], + [ + 77.635617740520104, + 12.9350160169885 + ], + [ + 77.635535524985301, + 12.9351060316413 + ], + [ + 77.635319270356007, + 12.9353431046728 + ], + [ + 77.635237885703603, + 12.935432009615001 + ], + [ + 77.635154798875703, + 12.9355231902684 + ], + [ + 77.6350756796746, + 12.9356096222382 + ], + [ + 77.635048374756096, + 12.935639450513801 + ], + [ + 77.635029932545095, + 12.935655646207399 + ], + [ + 77.634974224417206, + 12.9357045677861 + ], + [ + 77.634899497520905, + 12.9357696899666 + ], + [ + 77.6348092252301, + 12.9358891756312 + ], + [ + 77.634756418030804, + 12.935958594251 + ], + [ + 77.634719515657096, + 12.936007525427099 + ], + [ + 77.634693337479902, + 12.936028796937601 + ], + [ + 77.634637893412005, + 12.936073847399101 + ], + [ + 77.634576816278397, + 12.9361230228249 + ], + [ + 77.634586214501397, + 12.9361409951697 + ], + [ + 77.634587683589302, + 12.9361438043869 + ], + [ + 77.634598550911704, + 12.936164586851399 + ], + [ + 77.634567076877701, + 12.9362371767866 + ], + [ + 77.634531758888301, + 12.936272539881999 + ], + [ + 77.634491881795995, + 12.936312468800301 + ], + [ + 77.634269311055803, + 12.936496527952301 + ], + [ + 77.633849293018898, + 12.9368451963991 + ], + [ + 77.633661462943195, + 12.9370156466991 + ], + [ + 77.633639022761997, + 12.937036010395399 + ], + [ + 77.633533669914399, + 12.937131614686701 + ], + [ + 77.633484352747502, + 12.9371763691125 + ], + [ + 77.633302445982594, + 12.9373408203866 + ], + [ + 77.633113946185105, + 12.9375900329626 + ], + [ + 77.632974678952607, + 12.937821277202501 + ], + [ + 77.632924404867794, + 12.9379047533061 + ], + [ + 77.632856358130994, + 12.9380578902538 + ], + [ + 77.6326569204507, + 12.938502565018 + ], + [ + 77.632653862291704, + 12.938509383230301 + ], + [ + 77.6326446527722, + 12.9385094762298 + ], + [ + 77.632638956991897, + 12.93852070714 + ], + [ + 77.632394243811504, + 12.9390032348579 + ], + [ + 77.632130878753301, + 12.939524225676299 + ], + [ + 77.632051930457493, + 12.9396808622412 + ], + [ + 77.632018640474499, + 12.9397467408876 + ], + [ + 77.631975680401595, + 12.9398317592825 + ], + [ + 77.631950985881701, + 12.9398806320444 + ], + [ + 77.631692560877795, + 12.9404885271561 + ], + [ + 77.631689238766896, + 12.9404960888281 + ], + [ + 77.631530574552301, + 12.9408571736758 + ], + [ + 77.631438908669395, + 12.941065785401801 + ], + [ + 77.631438460675298, + 12.941066804456399 + ], + [ + 77.631437867847296, + 12.941068152911599 + ], + [ + 77.631437803007302, + 12.9410682935951 + ], + [ + 77.631276918853402, + 12.941419849944999 + ], + [ + 77.631263424310006, + 12.9414504763352 + ], + [ + 77.631171912456594, + 12.941671606875399 + ], + [ + 77.630964914382901, + 12.942172894085401 + ], + [ + 77.630938966038997, + 12.942235733586701 + ], + [ + 77.630867074500998, + 12.942409835865099 + ], + [ + 77.630805197371799, + 12.9425596852252 + ], + [ + 77.630759845190497, + 12.9426695200626 + ], + [ + 77.630521178564706, + 12.9431999538526 + ], + [ + 77.630520668221195, + 12.943201088269401 + ], + [ + 77.630440317105197, + 12.943379665591999 + ], + [ + 77.630435897552601, + 12.943389209583801 + ], + [ + 77.630017822085094, + 12.9442920357386 + ], + [ + 77.630014752627901, + 12.944298666147599 + ], + [ + 77.630009138680904, + 12.9443122739985 + ], + [ + 77.629997541298096, + 12.9443383352537 + ], + [ + 77.629905090116694, + 12.944545951995799 + ], + [ + 77.629670004660994, + 12.945074563407699 + ], + [ + 77.629642920171406, + 12.945126782982401 + ], + [ + 77.629546445844298, + 12.945314085491701 + ], + [ + 77.629425128212702, + 12.9455479386082 + ], + [ + 77.629106326888703, + 12.9461632179896 + ], + [ + 77.6289810999248, + 12.9463485492989 + ], + [ + 77.628931161294403, + 12.946422457316899 + ], + [ + 77.628925488054804, + 12.9464304203293 + ], + [ + 77.6289231244278, + 12.946433920512501 + ], + [ + 77.6288302532122, + 12.946571410296301 + ], + [ + 77.628828550972401, + 12.946573686004699 + ], + [ + 77.628749683339194, + 12.946689000230799 + ], + [ + 77.628699786173698, + 12.946761955611301 + ], + [ + 77.628652786481197, + 12.9468306736541 + ], + [ + 77.628437604748399, + 12.9471716246734 + ], + [ + 77.628413878817696, + 12.9472147770846 + ], + [ + 77.628358935030505, + 12.947313485468801 + ], + [ + 77.628312739764098, + 12.9473964801481 + ], + [ + 77.628200860528693, + 12.9475974890861 + ], + [ + 77.628051140637098, + 12.9478677650338 + ], + [ + 77.627671057702798, + 12.9485518606417 + ], + [ + 77.627651108360595, + 12.9485877548488 + ], + [ + 77.6276157850088, + 12.948640332084301 + ], + [ + 77.6275082658142, + 12.9488003686534 + ], + [ + 77.627283100830098, + 12.949068016633101 + ], + [ + 77.627169589902905, + 12.9491725580842 + ], + [ + 77.627140262695306, + 12.9491995678107 + ], + [ + 77.627047609207807, + 12.9492848982692 + ], + [ + 77.627012837467902, + 12.9493169235406 + ], + [ + 77.626839109614295, + 12.9494487734587 + ], + [ + 77.626853000335501, + 12.949474051862699 + ], + [ + 77.626889000531904, + 12.949485051085199 + ], + [ + 77.626918834926897, + 12.9495094938565 + ], + [ + 77.626921095360402, + 12.9495113456474 + ], + [ + 77.627145791881304, + 12.9496702822556 + ], + [ + 77.627005508500801, + 12.9499326064439 + ], + [ + 77.626781000009501, + 12.9503220517018 + ], + [ + 77.626562000756195, + 12.9507320515538 + ], + [ + 77.626532592836597, + 12.9507816989332 + ], + [ + 77.626391999988499, + 12.9510190515087 + ], + [ + 77.6262970004246, + 12.9512480512027 + ], + [ + 77.626269390826593, + 12.9513528384393 + ], + [ + 77.626261349873403, + 12.9513833564697 + ], + [ + 77.626170000719497, + 12.951730051492 + ], + [ + 77.626104027282494, + 12.952019390558499 + ], + [ + 77.626096459686593, + 12.952032326974299 + ], + [ + 77.626036032592495, + 12.952133891212601 + ], + [ + 77.625886302305901, + 12.9521375180673 + ], + [ + 77.625869000621094, + 12.9521520513846 + ], + [ + 77.625804896272101, + 12.9521556464256 + ], + [ + 77.625808020629094, + 12.9522369385577 + ], + [ + 77.625823424897604, + 12.9522556730051 + ], + [ + 77.625845761042399, + 12.9522823254336 + ], + [ + 77.625836734357605, + 12.952313882927999 + ], + [ + 77.625815394354404, + 12.9523822754674 + ], + [ + 77.625783789125904, + 12.952427827187901 + ], + [ + 77.625682441327598, + 12.9525789703341 + ], + [ + 77.625611128510599, + 12.9526622888192 + ], + [ + 77.625545368283298, + 12.952765217873001 + ], + [ + 77.625319811801305, + 12.9530546234704 + ], + [ + 77.625297356818606, + 12.9530804163598 + ], + [ + 77.625271738824793, + 12.9531232854858 + ], + [ + 77.625115872217805, + 12.953333977780099 + ], + [ + 77.625069567135597, + 12.9533800054081 + ], + [ + 77.624885896194002, + 12.9535844223682 + ], + [ + 77.624816947071807, + 12.9536382170552 + ], + [ + 77.624785525396703, + 12.9537005657156 + ], + [ + 77.624749989479, + 12.9537378784292 + ], + [ + 77.624602515420406, + 12.9538569237536 + ], + [ + 77.624549211543794, + 12.953876468508399 + ], + [ + 77.624485246891894, + 12.9539084508343 + ], + [ + 77.624439099650701, + 12.954115272760401 + ], + [ + 77.623942507630204, + 12.9544092584963 + ], + [ + 77.623374749462798, + 12.9548021791653 + ], + [ + 77.623189962690603, + 12.9549087869185 + ], + [ + 77.623062033386802, + 12.954978081958 + ], + [ + 77.6226391559658, + 12.955223279790401 + ], + [ + 77.622502342682495, + 12.9552854676464 + ], + [ + 77.622345984644497, + 12.9553814146243 + ], + [ + 77.622177189035298, + 12.9554880223775 + ], + [ + 77.621847656675399, + 12.955687700678901 + ], + [ + 77.621187479964206, + 12.956048078767701 + ], + [ + 77.6209862259918, + 12.9561161319014 + ], + [ + 77.620986915066396, + 12.9561182516115 + ], + [ + 77.621082926695095, + 12.956501157410999 + ], + [ + 77.621095656459204, + 12.9565519269335 + ], + [ + 77.621099432388604, + 12.9565716656465 + ], + [ + 77.621199798265494, + 12.9570963171383 + ], + [ + 77.6212143576995, + 12.957332188498 + ], + [ + 77.621205508901497, + 12.9575336792588 + ], + [ + 77.621201804465997, + 12.9576180208067 + ], + [ + 77.6211729066667, + 12.9577427955153 + ], + [ + 77.621152783096804, + 12.9578296873959 + ], + [ + 77.621120816347997, + 12.957894469011 + ], + [ + 77.621113824972696, + 12.957908637237001 + ], + [ + 77.621068220961007, + 12.9580010598056 + ], + [ + 77.620605674649596, + 12.958636979743799 + ], + [ + 77.620547465198797, + 12.9587227643714 + ], + [ + 77.620519705761097, + 12.958763675044001 + ], + [ + 77.620497485315298, + 12.958796421779301 + ], + [ + 77.620455996253199, + 12.9588575653872 + ], + [ + 77.620371616363897, + 12.959022568581 + ], + [ + 77.620362047243404, + 12.959041280741801 + ], + [ + 77.620315520420704, + 12.959132263465101 + ], + [ + 77.6202898913577, + 12.9592138290989 + ], + [ + 77.620282898481705, + 12.959229269344901 + ], + [ + 77.620159905012898, + 12.9595008435744 + ], + [ + 77.6200368635063, + 12.9597911759528 + ], + [ + 77.619882612151699, + 12.960168519915401 + ], + [ + 77.619864359992604, + 12.9602131707893 + ], + [ + 77.619842841263207, + 12.960265812755299 + ], + [ + 77.619805990204199, + 12.9603559599781 + ], + [ + 77.619780571700403, + 12.9604180548159 + ], + [ + 77.619608432431704, + 12.9608378642001 + ], + [ + 77.619554004709599, + 12.960970599307601 + ], + [ + 77.619549633963004, + 12.9609812584665 + ], + [ + 77.619546163239505, + 12.9609897231974 + ], + [ + 77.619380618967398, + 12.9613934440489 + ], + [ + 77.619306281531095, + 12.9615697671102 + ], + [ + 77.619165406567802, + 12.961903914916601 + ], + [ + 77.619142990402494, + 12.9619570844658 + ], + [ + 77.619140082604503, + 12.961964064633801 + ], + [ + 77.618974225089801, + 12.9623621566748 + ], + [ + 77.618934630822594, + 12.9624571909712 + ], + [ + 77.618931308538194, + 12.962466552205401 + ], + [ + 77.618926653953196, + 12.962479668808401 + ], + [ + 77.618898840157698, + 12.962558056506101 + ], + [ + 77.618419671304096, + 12.963637450988699 + ], + [ + 77.6184135372703, + 12.9636512681715 + ], + [ + 77.618408371584295, + 12.9636629046942 + ], + [ + 77.618377724456806, + 12.9637260928535 + ], + [ + 77.618377711845497, + 12.963726120082899 + ], + [ + 77.618369652413605, + 12.963742737363001 + ], + [ + 77.618222473357605, + 12.9640461933803 + ], + [ + 77.618222436397502, + 12.9640462705428 + ], + [ + 77.618211503204904, + 12.964068812450799 + ], + [ + 77.618208088208902, + 12.9640759187778 + ], + [ + 77.618207181213606, + 12.964077800691999 + ], + [ + 77.6181985923659, + 12.964095676339999 + ], + [ + 77.618198200229202, + 12.9640964951697 + ], + [ + 77.618189878192695, + 12.964113811626801 + ], + [ + 77.618187437022101, + 12.964118996520201 + ], + [ + 77.618072002719202, + 12.9643641805669 + ], + [ + 77.618057366232506, + 12.964395947508899 + ], + [ + 77.617904506617293, + 12.9647532068687 + ], + [ + 77.617765378967107, + 12.965102423140401 + ], + [ + 77.6177227108181, + 12.965202460744001 + ], + [ + 77.617680001264702, + 12.9653025936219 + ], + [ + 77.617671534358905, + 12.9653224465281 + ], + [ + 77.617677677418598, + 12.9653220802763 + ], + [ + 77.6177400037908, + 12.9653183689881 + ], + [ + 77.6177644777583, + 12.9653203668669 + ], + [ + 77.618950950242194, + 12.965417267213599 + ], + [ + 77.619001587199307, + 12.9654214029276 + ], + [ + 77.619192642960002, + 12.965437006167599 + ], + [ + 77.619578704426402, + 12.9654681272754 + ], + [ + 77.619621516230893, + 12.965488024086399 + ], + [ + 77.619725539536105, + 12.9657161858053 + ], + [ + 77.619739000513505, + 12.965737050238999 + ], + [ + 77.619754140109407, + 12.965778531847601 + ], + [ + 77.619757039069697, + 12.965784786838499 + ], + [ + 77.619854395882399, + 12.9659578302683 + ], + [ + 77.619869866280197, + 12.9659853272306 + ], + [ + 77.619896659321398, + 12.9660329503672 + ], + [ + 77.620011709208001, + 12.9661887608149 + ], + [ + 77.620340084448799, + 12.966538916286201 + ], + [ + 77.620424524473705, + 12.9666306653001 + ], + [ + 77.620459757107, + 12.966646152787099 + ], + [ + 77.620519958541195, + 12.966672616463001 + ], + [ + 77.620515525319703, + 12.9666839077634 + ], + [ + 77.620448740858805, + 12.966854017339699 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "116", + "group": "Peryar Nagara", + "Corporatio": "North", + "ac_no": "159", + "ac": "Pulakeshinagar", + "corporat_1": "2", + "ward_id": "68", + "ward_name": "68 - Periyar Nagar", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಪುಲಕೇಶಿನಗರ", + "ward_name_": "ಪೆರಿಯಾರ್ ನಗರ", + "dig_ward_n": "Periyar Nagar", + "Assembly": "159 - Pulakeshinagar", + "Slno": "68" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.613188017390598, + 13.008819883441801 + ], + [ + 77.612680412276404, + 13.008989316165399 + ], + [ + 77.612674401160007, + 13.0090219479395 + ], + [ + 77.612403614683899, + 13.0091244231599 + ], + [ + 77.612028921769195, + 13.009198846504299 + ], + [ + 77.611737525751494, + 13.0092446454855 + ], + [ + 77.611864617924297, + 13.009922470406799 + ], + [ + 77.611789049605306, + 13.0099410762429 + ], + [ + 77.611830268688394, + 13.010102231407901 + ], + [ + 77.611617282052293, + 13.0101647994132 + ], + [ + 77.611261238169206, + 13.010179805094101 + ], + [ + 77.611010062893797, + 13.010224907868301 + ], + [ + 77.6109606898723, + 13.0102380274948 + ], + [ + 77.610917531167999, + 13.010090200436901 + ], + [ + 77.610676956437203, + 13.010157492545201 + ], + [ + 77.609714524765195, + 13.010375999415601 + ], + [ + 77.609686133588198, + 13.010450534668999 + ], + [ + 77.609649464703807, + 13.0105231774243 + ], + [ + 77.609615051622299, + 13.0105912803682 + ], + [ + 77.609553914529997, + 13.010801941254099 + ], + [ + 77.6095114075396, + 13.0109290674042 + ], + [ + 77.609506710044599, + 13.0109754150775 + ], + [ + 77.609523565552195, + 13.0110845551067 + ], + [ + 77.609617359271894, + 13.011270783216601 + ], + [ + 77.609795431406198, + 13.0115521643754 + ], + [ + 77.609937454765202, + 13.011699986123199 + ], + [ + 77.609983351732893, + 13.0117592883242 + ], + [ + 77.610020447952493, + 13.0118072191725 + ], + [ + 77.610077465679893, + 13.0119154398123 + ], + [ + 77.610119604887203, + 13.012020108166 + ], + [ + 77.610119309259005, + 13.0120673845135 + ], + [ + 77.610119174345499, + 13.0120889984399 + ], + [ + 77.610111778809298, + 13.012207647033099 + ], + [ + 77.610104825630302, + 13.012258534511499 + ], + [ + 77.610091964440997, + 13.012350135450101 + ], + [ + 77.610079655384197, + 13.0124394722768 + ], + [ + 77.610074839823895, + 13.0124745283533 + ], + [ + 77.610045170910297, + 13.0126471503459 + ], + [ + 77.610044929982095, + 13.0126618930072 + ], + [ + 77.610044819714801, + 13.012668610157601 + ], + [ + 77.610043482448205, + 13.012705889782 + ], + [ + 77.610132397732798, + 13.0128906275067 + ], + [ + 77.610252549188601, + 13.013190597352001 + ], + [ + 77.610285236676404, + 13.0132808165013 + ], + [ + 77.610434289612897, + 13.013609164081 + ], + [ + 77.610595531598506, + 13.013923040401499 + ], + [ + 77.610786677946805, + 13.0141750506347 + ], + [ + 77.610871114718094, + 13.014295863333899 + ], + [ + 77.610938531679096, + 13.014390381637099 + ], + [ + 77.611232242443705, + 13.0148118359626 + ], + [ + 77.612126654552398, + 13.014098522617701 + ], + [ + 77.612770006533907, + 13.014813801596 + ], + [ + 77.612658944004593, + 13.0149929901098 + ], + [ + 77.612641196899403, + 13.0152437395317 + ], + [ + 77.613278006442997, + 13.015312403654599 + ], + [ + 77.613259108111194, + 13.015506680466499 + ], + [ + 77.613255340541002, + 13.015560801675299 + ], + [ + 77.613224575796906, + 13.0160027802189 + ], + [ + 77.6132119407781, + 13.016115835064699 + ], + [ + 77.613194104300007, + 13.016282018260499 + ], + [ + 77.613123552654699, + 13.0167961115514 + ], + [ + 77.613535422006805, + 13.0167402212415 + ], + [ + 77.613789033864904, + 13.017815352324501 + ], + [ + 77.614048236389706, + 13.0177537590212 + ], + [ + 77.6141933447892, + 13.0177109401492 + ], + [ + 77.614328316868196, + 13.018012860430799 + ], + [ + 77.614804053785207, + 13.0178067650155 + ], + [ + 77.614607118166106, + 13.0172171031329 + ], + [ + 77.614429647114093, + 13.0163961563954 + ], + [ + 77.614351686829096, + 13.0163979512895 + ], + [ + 77.6142830903744, + 13.0160996079924 + ], + [ + 77.615065680465094, + 13.015916984554901 + ], + [ + 77.6148280982502, + 13.0151750410599 + ], + [ + 77.615197352535901, + 13.0150439414763 + ], + [ + 77.614987535953404, + 13.0144027557399 + ], + [ + 77.613586087129505, + 13.0147760174365 + ], + [ + 77.613343352656898, + 13.0147393782224 + ], + [ + 77.6134466864806, + 13.010765171660401 + ], + [ + 77.6134466864806, + 13.010765171660401 + ], + [ + 77.613418897639406, + 13.010094713430201 + ], + [ + 77.613366520388595, + 13.0097261669269 + ], + [ + 77.613362325847305, + 13.00969664928 + ], + [ + 77.6133604683898, + 13.0096842459669 + ], + [ + 77.613354146778207, + 13.009685438934699 + ], + [ + 77.613349891593501, + 13.009664025577299 + ], + [ + 77.613305714617795, + 13.009413229502201 + ], + [ + 77.613291115707298, + 13.0093303522636 + ], + [ + 77.613290480782595, + 13.009324712283799 + ], + [ + 77.613276891057396, + 13.009236765721299 + ], + [ + 77.613258363941398, + 13.0091172491879 + ], + [ + 77.613188017390598, + 13.008819883441801 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "26", + "group": "Ambabavani", + "Corporatio": "North", + "ac_no": "150", + "ac": "Yelahanka", + "corporat_1": "2", + "ward_id": "9", + "ward_name": "9 - Doddabettahalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಯಲಹಂಕ", + "ward_name_": "ದೊಡ್ಡಬೆಟ್ಟಹಳ್ಳಿ", + "dig_ward_n": "Ambabavani Ward", + "Assembly": "150 - Yelahanka", + "Slno": "9" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.548573899150398, + 13.0832904223341 + ], + [ + 77.548268131678896, + 13.081765107346399 + ], + [ + 77.548244422923602, + 13.0817685478337 + ], + [ + 77.548202030051897, + 13.081774699786401 + ], + [ + 77.5478172022504, + 13.0818305431624 + ], + [ + 77.547721201808002, + 13.081849560119799 + ], + [ + 77.547225613424402, + 13.0819414102852 + ], + [ + 77.547217008747694, + 13.0819448831896 + ], + [ + 77.547217015495406, + 13.0819449120337 + ], + [ + 77.547259920581993, + 13.0821409618702 + ], + [ + 77.547307688438707, + 13.0823607074786 + ], + [ + 77.547338502372597, + 13.0825024441544 + ], + [ + 77.547354237283798, + 13.082574820285201 + ], + [ + 77.547369089900997, + 13.082643489197901 + ], + [ + 77.547402012380701, + 13.0827956959962 + ], + [ + 77.547412823099407, + 13.0828453833876 + ], + [ + 77.547446146173897, + 13.0829985384594 + ], + [ + 77.547495096642393, + 13.0832216611612 + ], + [ + 77.547006784238604, + 13.083293111733401 + ], + [ + 77.546799702436104, + 13.0833211301631 + ], + [ + 77.546663982659695, + 13.0833427975149 + ], + [ + 77.546539793815299, + 13.0833654803237 + ], + [ + 77.546419072346296, + 13.0833892581821 + ], + [ + 77.5463908846706, + 13.0833929243258 + ], + [ + 77.546433378847993, + 13.0835483516598 + ], + [ + 77.545186645025296, + 13.083527901982899 + ], + [ + 77.545178104666803, + 13.0838182227068 + ], + [ + 77.5451691158936, + 13.0841209704249 + ], + [ + 77.5451640821464, + 13.0843039706981 + ], + [ + 77.545176265967598, + 13.084424688264001 + ], + [ + 77.545194905079995, + 13.0846131016326 + ], + [ + 77.545214990274999, + 13.0847179306973 + ], + [ + 77.545259272652999, + 13.085271992269901 + ], + [ + 77.544654883692402, + 13.0858764964368 + ], + [ + 77.544297781409099, + 13.0860812254067 + ], + [ + 77.544025525510705, + 13.086237311587199 + ], + [ + 77.543440717350293, + 13.0868620352941 + ], + [ + 77.543350969338306, + 13.086957909118199 + ], + [ + 77.542976975067603, + 13.0873574268229 + ], + [ + 77.542928991185306, + 13.0874086852 + ], + [ + 77.542433527057497, + 13.087937961431001 + ], + [ + 77.542274395272599, + 13.0881465860397 + ], + [ + 77.542180294240197, + 13.088269954187499 + ], + [ + 77.541565583224795, + 13.0890758420725 + ], + [ + 77.540846671617601, + 13.0898376756417 + ], + [ + 77.540767940400102, + 13.089918020983299 + ], + [ + 77.540758776255103, + 13.089927373557099 + ], + [ + 77.540721197482497, + 13.0899657225977 + ], + [ + 77.540714414893202, + 13.0899726439823 + ], + [ + 77.540713742654603, + 13.0899733300083 + ], + [ + 77.540724069368196, + 13.091775887596601 + ], + [ + 77.542123611407504, + 13.094018307030501 + ], + [ + 77.542423755531701, + 13.095566458384001 + ], + [ + 77.542430218223501, + 13.0955834104339 + ], + [ + 77.542385646760593, + 13.0955971297973 + ], + [ + 77.543580117697005, + 13.098767307230499 + ], + [ + 77.543863064083794, + 13.099463801764299 + ], + [ + 77.543967704098904, + 13.0997367051722 + ], + [ + 77.544080916046994, + 13.100102618166501 + ], + [ + 77.544223775122902, + 13.1003824097125 + ], + [ + 77.544316088251193, + 13.1005644489241 + ], + [ + 77.544428991223597, + 13.1007880697896 + ], + [ + 77.544244807244397, + 13.100803440079099 + ], + [ + 77.544242688921798, + 13.1008741015866 + ], + [ + 77.544240084393607, + 13.100960953370899 + ], + [ + 77.544229361933603, + 13.1013185644718 + ], + [ + 77.544547320145298, + 13.101315425178001 + ], + [ + 77.544901122944097, + 13.101380820272 + ], + [ + 77.545173660306602, + 13.1012742309609 + ], + [ + 77.545633789998007, + 13.101290610267 + ], + [ + 77.546362123955504, + 13.101209706042599 + ], + [ + 77.546741277212703, + 13.101175174066499 + ], + [ + 77.547149725885305, + 13.101176741143099 + ], + [ + 77.5480722392861, + 13.101031015443301 + ], + [ + 77.548504635963596, + 13.1010086715679 + ], + [ + 77.548893133116707, + 13.101030803776 + ], + [ + 77.549661621318293, + 13.1010322363871 + ], + [ + 77.550288266055006, + 13.1009650535122 + ], + [ + 77.550720765017203, + 13.100952018671 + ], + [ + 77.550992782437405, + 13.1008287266707 + ], + [ + 77.551440715076794, + 13.100861273614701 + ], + [ + 77.551491805656397, + 13.1008649426769 + ], + [ + 77.551572566685905, + 13.1008567428768 + ], + [ + 77.551886755011097, + 13.100824842425901 + ], + [ + 77.552009362484299, + 13.100800394086299 + ], + [ + 77.552457101206699, + 13.100680449701599 + ], + [ + 77.553672422058995, + 13.100524167299699 + ], + [ + 77.553743858270806, + 13.100510728871701 + ], + [ + 77.554893308206005, + 13.1003351076735 + ], + [ + 77.554998978256904, + 13.100272917131701 + ], + [ + 77.555086408701897, + 13.100379276628001 + ], + [ + 77.555714056190894, + 13.100169113351001 + ], + [ + 77.556023834649395, + 13.1001435534248 + ], + [ + 77.556090749439505, + 13.100328588918201 + ], + [ + 77.556092793795699, + 13.1003343950042 + ], + [ + 77.556218752071103, + 13.1005064070093 + ], + [ + 77.556301477854007, + 13.1006193798409 + ], + [ + 77.5564063333169, + 13.100762572213499 + ], + [ + 77.556499414270505, + 13.1008904205557 + ], + [ + 77.557053525403902, + 13.1015512609836 + ], + [ + 77.558212726239702, + 13.102951498693001 + ], + [ + 77.558569781462793, + 13.1036226791174 + ], + [ + 77.558645752955897, + 13.1037654865584 + ], + [ + 77.558647020113497, + 13.1037678753456 + ], + [ + 77.558752728803995, + 13.103967207215399 + ], + [ + 77.558929113838005, + 13.104300294827601 + ], + [ + 77.559100503896403, + 13.1046239492334 + ], + [ + 77.559222446731994, + 13.104855380806599 + ], + [ + 77.559334469549796, + 13.1050965434051 + ], + [ + 77.559467486015194, + 13.1053042269138 + ], + [ + 77.559875761030099, + 13.105941674624299 + ], + [ + 77.559899312682504, + 13.1059898763194 + ], + [ + 77.560134421525106, + 13.1064104164928 + ], + [ + 77.560303676253696, + 13.1069310272614 + ], + [ + 77.5603063472375, + 13.106936713222099 + ], + [ + 77.560391631733694, + 13.1070994250426 + ], + [ + 77.560409686098794, + 13.107133870268299 + ], + [ + 77.560471241462693, + 13.1072512831725 + ], + [ + 77.560471779818698, + 13.107399709043699 + ], + [ + 77.560578554802007, + 13.107656863262701 + ], + [ + 77.5607012839817, + 13.107955149103001 + ], + [ + 77.560712819903401, + 13.107986553936399 + ], + [ + 77.560756101151298, + 13.1081043742376 + ], + [ + 77.560758341508503, + 13.108110485477299 + ], + [ + 77.560892387077601, + 13.1084338693648 + ], + [ + 77.560949843596504, + 13.108573047122899 + ], + [ + 77.560980144446802, + 13.1087074364572 + ], + [ + 77.560992032912097, + 13.1087601609486 + ], + [ + 77.560993724236198, + 13.108767662605 + ], + [ + 77.560995182327005, + 13.1087741297868 + ], + [ + 77.560959777393506, + 13.1089171206513 + ], + [ + 77.560535487788599, + 13.109035134715 + ], + [ + 77.560046847543703, + 13.1093099055715 + ], + [ + 77.560048540325198, + 13.109554231040599 + ], + [ + 77.560122369599995, + 13.1098316629247 + ], + [ + 77.560283657334693, + 13.1105604029382 + ], + [ + 77.560313425849998, + 13.1111513003539 + ], + [ + 77.560222780860798, + 13.1115346974966 + ], + [ + 77.560130335276995, + 13.111744316720101 + ], + [ + 77.559811524722406, + 13.1117938537862 + ], + [ + 77.559709609971407, + 13.1119002460615 + ], + [ + 77.559675302815805, + 13.1121112009375 + ], + [ + 77.559813907414707, + 13.112402969736999 + ], + [ + 77.559832872835401, + 13.1124040823507 + ], + [ + 77.560089390975804, + 13.1123591014927 + ], + [ + 77.560403092004407, + 13.112958770582299 + ], + [ + 77.561062020580593, + 13.113775250647601 + ], + [ + 77.561419989458599, + 13.113760676315801 + ], + [ + 77.561453318011104, + 13.113850384562999 + ], + [ + 77.561591176741004, + 13.113823886360599 + ], + [ + 77.5616464583984, + 13.1140027791451 + ], + [ + 77.5617076339731, + 13.114153909037601 + ], + [ + 77.561807455794906, + 13.1144005182675 + ], + [ + 77.561908052176506, + 13.1146465198347 + ], + [ + 77.561923472848804, + 13.114684230773401 + ], + [ + 77.562146534980798, + 13.1152297096846 + ], + [ + 77.562504097928198, + 13.1163700676591 + ], + [ + 77.562516131212504, + 13.116408562105301 + ], + [ + 77.562521723624897, + 13.1164264534113 + ], + [ + 77.562587024280404, + 13.1164189862047 + ], + [ + 77.562707957405095, + 13.1163691322721 + ], + [ + 77.562950041811504, + 13.1162536139819 + ], + [ + 77.562970685544698, + 13.1162443739859 + ], + [ + 77.563124171328496, + 13.116176598966 + ], + [ + 77.563174557736801, + 13.116147114283701 + ], + [ + 77.563612147766406, + 13.1159792100368 + ], + [ + 77.563967564398595, + 13.115830755496701 + ], + [ + 77.564173489659794, + 13.1157622070043 + ], + [ + 77.564796086765895, + 13.118105818614 + ], + [ + 77.565027257360001, + 13.119171853709901 + ], + [ + 77.565336466434701, + 13.120452862734 + ], + [ + 77.568254175109502, + 13.1196755753849 + ], + [ + 77.568191075333999, + 13.118591528784499 + ], + [ + 77.569063558705295, + 13.1184441498366 + ], + [ + 77.569261046495498, + 13.118497206257899 + ], + [ + 77.573439338355499, + 13.118489768545199 + ], + [ + 77.573619079424702, + 13.1184869676516 + ], + [ + 77.573943732004196, + 13.1184805700419 + ], + [ + 77.574704266305005, + 13.1184655813628 + ], + [ + 77.574708711883105, + 13.1183564321635 + ], + [ + 77.574706903214803, + 13.118100501431901 + ], + [ + 77.574729370113502, + 13.1175340507292 + ], + [ + 77.574739210897704, + 13.1173421440308 + ], + [ + 77.574746637573895, + 13.1171973279497 + ], + [ + 77.574747967695799, + 13.117171393168601 + ], + [ + 77.574754671105893, + 13.117040681586801 + ], + [ + 77.574818213172193, + 13.1166913098635 + ], + [ + 77.574873236830399, + 13.116588648883001 + ], + [ + 77.574874378975494, + 13.1165715583344 + ], + [ + 77.574876146026696, + 13.116513057597601 + ], + [ + 77.574892396093603, + 13.116170092671 + ], + [ + 77.575126728620702, + 13.116171566460499 + ], + [ + 77.575411169990105, + 13.116199568460599 + ], + [ + 77.576157427195199, + 13.116262491736 + ], + [ + 77.578265908314606, + 13.1164511620822 + ], + [ + 77.578904515808802, + 13.1151043892795 + ], + [ + 77.579228393672196, + 13.114385830868001 + ], + [ + 77.579304964274698, + 13.1142159495163 + ], + [ + 77.579471603708996, + 13.113820649233199 + ], + [ + 77.579422868715199, + 13.113789352781099 + ], + [ + 77.579433672578702, + 13.1137511005586 + ], + [ + 77.579444562148396, + 13.113707809012899 + ], + [ + 77.579461919652601, + 13.113638808628901 + ], + [ + 77.579462436514603, + 13.1136367535538 + ], + [ + 77.579471134777705, + 13.113586977413 + ], + [ + 77.579479278623893, + 13.113428794465801 + ], + [ + 77.579500770277903, + 13.1128932931219 + ], + [ + 77.579543244216595, + 13.112270625830799 + ], + [ + 77.579646568084897, + 13.1118483635658 + ], + [ + 77.579690838023296, + 13.111719160528001 + ], + [ + 77.579717279574893, + 13.1116419906253 + ], + [ + 77.579875043923806, + 13.1111815494432 + ], + [ + 77.580011486580005, + 13.110768489362 + ], + [ + 77.580023115075505, + 13.1107327838026 + ], + [ + 77.5801856456971, + 13.110233717232999 + ], + [ + 77.580320002379807, + 13.109804368314499 + ], + [ + 77.580433956408996, + 13.109441916358399 + ], + [ + 77.580459457800501, + 13.109360802435701 + ], + [ + 77.580494524555704, + 13.109249265234901 + ], + [ + 77.580736962252701, + 13.108493769421999 + ], + [ + 77.580243205433902, + 13.1084095945775 + ], + [ + 77.579726354402894, + 13.108343764198599 + ], + [ + 77.579665484952201, + 13.108674051735701 + ], + [ + 77.579275434751196, + 13.1082736496744 + ], + [ + 77.578636395157005, + 13.107530845505901 + ], + [ + 77.578117858450398, + 13.1068855667313 + ], + [ + 77.577853804851003, + 13.1064192214803 + ], + [ + 77.575751139062405, + 13.107098887501699 + ], + [ + 77.574689258584499, + 13.107471190617 + ], + [ + 77.574015670679003, + 13.1077082953688 + ], + [ + 77.573780550252394, + 13.106832379477201 + ], + [ + 77.573580899101898, + 13.1060445928929 + ], + [ + 77.5737159518185, + 13.106022955698499 + ], + [ + 77.573733218324506, + 13.105835119572699 + ], + [ + 77.574178012018194, + 13.1056364907339 + ], + [ + 77.574211424912306, + 13.105579640424001 + ], + [ + 77.574165284612803, + 13.1052478862293 + ], + [ + 77.574096518102095, + 13.104828860104501 + ], + [ + 77.574152606126404, + 13.104817190519601 + ], + [ + 77.574090067660705, + 13.1039276542019 + ], + [ + 77.574939990537104, + 13.103862556710499 + ], + [ + 77.575351015623795, + 13.103827467259 + ], + [ + 77.575599999081206, + 13.1038093161783 + ], + [ + 77.575950804138699, + 13.1034960579371 + ], + [ + 77.575929129685903, + 13.102537214498099 + ], + [ + 77.574926130744601, + 13.102689979534 + ], + [ + 77.574728223395596, + 13.1027093468216 + ], + [ + 77.574683215190404, + 13.1023620031297 + ], + [ + 77.574550140903796, + 13.1023604344748 + ], + [ + 77.574384305513703, + 13.101554196001 + ], + [ + 77.574307751035903, + 13.101087613207399 + ], + [ + 77.574011691558496, + 13.1013535894421 + ], + [ + 77.573592901823105, + 13.1015997786531 + ], + [ + 77.573241648182901, + 13.1015873458605 + ], + [ + 77.572995947421205, + 13.101560091845201 + ], + [ + 77.572810098709397, + 13.101672806733299 + ], + [ + 77.572625379777705, + 13.1014674236877 + ], + [ + 77.572330413010505, + 13.1011095319323 + ], + [ + 77.572067646471496, + 13.1010049181731 + ], + [ + 77.571900617769003, + 13.1010080343288 + ], + [ + 77.571801905230402, + 13.1010409006005 + ], + [ + 77.571734416807502, + 13.101090844949301 + ], + [ + 77.571613018549201, + 13.1010746667031 + ], + [ + 77.571182918643402, + 13.1008014474312 + ], + [ + 77.5708203251545, + 13.1004087241047 + ], + [ + 77.570768165226895, + 13.1000839117068 + ], + [ + 77.570568323299796, + 13.1002728445938 + ], + [ + 77.570442832450794, + 13.100432052931801 + ], + [ + 77.570275793117801, + 13.100291702819399 + ], + [ + 77.570111234555199, + 13.1001766878473 + ], + [ + 77.5700245317785, + 13.100334205795701 + ], + [ + 77.569955528891001, + 13.100843397810699 + ], + [ + 77.569917586889204, + 13.1012473628635 + ], + [ + 77.569917900552994, + 13.101348799833699 + ], + [ + 77.569912007869704, + 13.101422040384101 + ], + [ + 77.569855067502104, + 13.102060956281001 + ], + [ + 77.569829625317695, + 13.102387267471601 + ], + [ + 77.569815517269404, + 13.102523627731401 + ], + [ + 77.569797484717995, + 13.102744802070401 + ], + [ + 77.569789749593298, + 13.1028897936392 + ], + [ + 77.569814966326206, + 13.103040253144799 + ], + [ + 77.569948707403697, + 13.103746826119201 + ], + [ + 77.569957492331596, + 13.1038097762583 + ], + [ + 77.570030065099601, + 13.1041916598677 + ], + [ + 77.570048027277707, + 13.1042713775712 + ], + [ + 77.570075300988904, + 13.104392417110899 + ], + [ + 77.570347986706594, + 13.105465150303299 + ], + [ + 77.570547448342495, + 13.106164545471801 + ], + [ + 77.570643647849806, + 13.106601226734499 + ], + [ + 77.568792518085004, + 13.1070182076379 + ], + [ + 77.567301139628299, + 13.107340294757 + ], + [ + 77.565834376174706, + 13.107612857664799 + ], + [ + 77.565463076884697, + 13.107664377864101 + ], + [ + 77.565462124858797, + 13.107358617061699 + ], + [ + 77.565541869605795, + 13.1071620260033 + ], + [ + 77.565696474143195, + 13.1069838626793 + ], + [ + 77.565729008314705, + 13.106576317239901 + ], + [ + 77.566378598211898, + 13.1052033004202 + ], + [ + 77.566584345915004, + 13.1045528903819 + ], + [ + 77.566790485298199, + 13.103757781332501 + ], + [ + 77.566839707706094, + 13.1034763952501 + ], + [ + 77.566936014900705, + 13.102926209037101 + ], + [ + 77.566926471855894, + 13.1024335940577 + ], + [ + 77.566718211922407, + 13.102524066601701 + ], + [ + 77.566409622545294, + 13.1026645665417 + ], + [ + 77.565907317833293, + 13.1028118282628 + ], + [ + 77.565850023344296, + 13.1025616961422 + ], + [ + 77.565819713457202, + 13.1023475239997 + ], + [ + 77.565818638829001, + 13.1021011794763 + ], + [ + 77.565778460029605, + 13.1016479960778 + ], + [ + 77.565487011299894, + 13.1017001688506 + ], + [ + 77.565375621138003, + 13.101258743943299 + ], + [ + 77.565158979135106, + 13.101253654756199 + ], + [ + 77.564843580793493, + 13.101259511211101 + ], + [ + 77.564842468127097, + 13.1013584661547 + ], + [ + 77.563161297777199, + 13.1013648285718 + ], + [ + 77.562959835784596, + 13.1007552904161 + ], + [ + 77.562776559998497, + 13.100760011361 + ], + [ + 77.562148588088903, + 13.1010089884333 + ], + [ + 77.561320806231393, + 13.0990927416549 + ], + [ + 77.561210165429699, + 13.0988300952218 + ], + [ + 77.561028338368303, + 13.0984029525089 + ], + [ + 77.558617170420902, + 13.0994166721637 + ], + [ + 77.558343058192904, + 13.0986426454455 + ], + [ + 77.558224718537801, + 13.0984931077538 + ], + [ + 77.557969186245501, + 13.097800048581499 + ], + [ + 77.557802004853201, + 13.0976451986302 + ], + [ + 77.557749649009395, + 13.097442836162299 + ], + [ + 77.557747164970493, + 13.097202300737701 + ], + [ + 77.557711710451798, + 13.096918617732999 + ], + [ + 77.557665567464895, + 13.096789940991901 + ], + [ + 77.557697444112094, + 13.096655577678099 + ], + [ + 77.557909281454101, + 13.096580452931899 + ], + [ + 77.558060565541098, + 13.096341290037699 + ], + [ + 77.557929149963698, + 13.0957319801909 + ], + [ + 77.557986870006005, + 13.0950030002706 + ], + [ + 77.5579250081921, + 13.0943094677815 + ], + [ + 77.558245628813793, + 13.0942642050678 + ], + [ + 77.558230547411398, + 13.0939367121481 + ], + [ + 77.557151213018898, + 13.0941084647443 + ], + [ + 77.556998913608794, + 13.0941275287498 + ], + [ + 77.556844402018598, + 13.093032363503401 + ], + [ + 77.556349809455199, + 13.0930706793342 + ], + [ + 77.556277593306504, + 13.093246509957099 + ], + [ + 77.556117461846299, + 13.093427364312101 + ], + [ + 77.555554803853099, + 13.0937915848881 + ], + [ + 77.555405462248004, + 13.093270768772699 + ], + [ + 77.555328308670596, + 13.0931005325266 + ], + [ + 77.555037353197093, + 13.0934867186379 + ], + [ + 77.5548722180461, + 13.0937448563317 + ], + [ + 77.5547701906752, + 13.0938864358413 + ], + [ + 77.554690757111601, + 13.094125876584 + ], + [ + 77.554526131510301, + 13.094242246261301 + ], + [ + 77.554187399914298, + 13.0942871061396 + ], + [ + 77.554023531096703, + 13.094238008818801 + ], + [ + 77.553557385756605, + 13.093945872448399 + ], + [ + 77.552357783626803, + 13.0940412542638 + ], + [ + 77.552143922976796, + 13.094036359956601 + ], + [ + 77.551762552877605, + 13.0939445183269 + ], + [ + 77.551194291667798, + 13.0937015405149 + ], + [ + 77.550754500001403, + 13.0936198374482 + ], + [ + 77.550590380276503, + 13.093617770353699 + ], + [ + 77.550348982144698, + 13.0936201581479 + ], + [ + 77.549853621975402, + 13.0938258504769 + ], + [ + 77.548895378201394, + 13.094221626224099 + ], + [ + 77.547564306755703, + 13.0945470319647 + ], + [ + 77.546355962407304, + 13.094827579078 + ], + [ + 77.546113586249604, + 13.0948688040592 + ], + [ + 77.546068139385397, + 13.094403453442601 + ], + [ + 77.546087941686196, + 13.0930469958413 + ], + [ + 77.546115120455596, + 13.091820033071601 + ], + [ + 77.546172151837098, + 13.0913622009636 + ], + [ + 77.546356415445103, + 13.090385297722699 + ], + [ + 77.546419414988904, + 13.0897723619111 + ], + [ + 77.546546743362597, + 13.0889362721146 + ], + [ + 77.546641693900597, + 13.088393345378 + ], + [ + 77.546751751276204, + 13.0882435410197 + ], + [ + 77.547123234568701, + 13.087790222642299 + ], + [ + 77.547936661486503, + 13.086797597173399 + ], + [ + 77.548677239676493, + 13.085776751244 + ], + [ + 77.548624443745098, + 13.0853852463078 + ], + [ + 77.548480766281699, + 13.085202646625699 + ], + [ + 77.548524137899904, + 13.0848994683484 + ], + [ + 77.548617449899595, + 13.0846290014464 + ], + [ + 77.548739301239806, + 13.0842113505344 + ], + [ + 77.548573899150398, + 13.0832904223341 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "27", + "group": "Attur", + "Corporatio": "North", + "ac_no": "150", + "ac": "Yelahanka", + "corporat_1": "2", + "ward_id": "10", + "ward_name": "10 - Attur", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಯಲಹಂಕ", + "ward_name_": "ಅಟ್ಟುರು", + "dig_ward_n": "Attur", + "Assembly": "150 - Yelahanka", + "Slno": "10" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.560739135879601, + 13.0915954176293 + ], + [ + 77.560476021855294, + 13.090326424694901 + ], + [ + 77.560099161767496, + 13.088157042319001 + ], + [ + 77.560071800520205, + 13.0879995362467 + ], + [ + 77.561135848587497, + 13.087341877824899 + ], + [ + 77.562742323055005, + 13.086389063052 + ], + [ + 77.563002244625096, + 13.086234900267399 + ], + [ + 77.563058271495606, + 13.086201669521801 + ], + [ + 77.563070389598906, + 13.086194482352999 + ], + [ + 77.563059628664902, + 13.0861859414573 + ], + [ + 77.560393470890205, + 13.0840698465068 + ], + [ + 77.5603342969669, + 13.084022879696599 + ], + [ + 77.560201123482003, + 13.084123580685301 + ], + [ + 77.560135825026407, + 13.0841592373097 + ], + [ + 77.560120413910795, + 13.084172941979601 + ], + [ + 77.560104744259803, + 13.084184101484199 + ], + [ + 77.560094682074606, + 13.084191266305799 + ], + [ + 77.559997182808303, + 13.0842616756103 + ], + [ + 77.559940878596507, + 13.084302335706001 + ], + [ + 77.559682232963695, + 13.084468652215101 + ], + [ + 77.559564744887098, + 13.0845437868915 + ], + [ + 77.558909127022801, + 13.084963055202 + ], + [ + 77.558842884068994, + 13.0849072465092 + ], + [ + 77.558793320863899, + 13.084849013742399 + ], + [ + 77.558715400390398, + 13.0847221740366 + ], + [ + 77.558068110467502, + 13.084961231371 + ], + [ + 77.557417374868194, + 13.085201450761501 + ], + [ + 77.556861899160495, + 13.085406845194701 + ], + [ + 77.556596605206806, + 13.085516092510501 + ], + [ + 77.556305514919799, + 13.085635963221799 + ], + [ + 77.555708974524094, + 13.0858812884566 + ], + [ + 77.555653827166395, + 13.0859518523788 + ], + [ + 77.555607680216696, + 13.086057335943501 + ], + [ + 77.555556965429702, + 13.085999113872299 + ], + [ + 77.554952998453999, + 13.085747611753099 + ], + [ + 77.554557289275095, + 13.0855821327262 + ], + [ + 77.554379756690594, + 13.0855150021856 + ], + [ + 77.5542430878142, + 13.085464300999099 + ], + [ + 77.554101045518905, + 13.0854116056992 + ], + [ + 77.553899113004704, + 13.0853243886163 + ], + [ + 77.553860336904904, + 13.085306703373 + ], + [ + 77.553706396123602, + 13.0852370801316 + ], + [ + 77.553308437632495, + 13.0849089993199 + ], + [ + 77.553002337471995, + 13.084718914963201 + ], + [ + 77.552823031352304, + 13.0846472834377 + ], + [ + 77.552718583352899, + 13.084629118443001 + ], + [ + 77.552408857966498, + 13.0845903978569 + ], + [ + 77.552357905335597, + 13.0845649275726 + ], + [ + 77.552309832557398, + 13.084539428788 + ], + [ + 77.552154380270494, + 13.084434810510899 + ], + [ + 77.552067944904394, + 13.0843758115575 + ], + [ + 77.551683791097304, + 13.083933529768 + ], + [ + 77.551512987364802, + 13.0837364585785 + ], + [ + 77.551356581994497, + 13.0835307198465 + ], + [ + 77.551251386958697, + 13.0833923440675 + ], + [ + 77.551243852918205, + 13.083387901279099 + ], + [ + 77.551109310835997, + 13.083300015215499 + ], + [ + 77.550937651420796, + 13.0831876509636 + ], + [ + 77.550770885431604, + 13.0830470051853 + ], + [ + 77.550637386247303, + 13.0828924785892 + ], + [ + 77.550620076151006, + 13.0828690161752 + ], + [ + 77.550543919221298, + 13.082765789228 + ], + [ + 77.5504421981897, + 13.0825646462267 + ], + [ + 77.550376284799, + 13.082428649866999 + ], + [ + 77.550350396497294, + 13.0823758276488 + ], + [ + 77.550248441352494, + 13.082263903177299 + ], + [ + 77.550151581753894, + 13.082199359775 + ], + [ + 77.550097645474594, + 13.0821637545091 + ], + [ + 77.549881092133205, + 13.0821450109986 + ], + [ + 77.549722897145799, + 13.0821313192313 + ], + [ + 77.549323923480799, + 13.082095734748499 + ], + [ + 77.549116297693104, + 13.0820706820738 + ], + [ + 77.549014777053401, + 13.0820570037067 + ], + [ + 77.548950002068807, + 13.0820316691252 + ], + [ + 77.548903739203595, + 13.0820140569302 + ], + [ + 77.548835829068807, + 13.081963908197499 + ], + [ + 77.548596979614601, + 13.081703135118 + ], + [ + 77.548574551841995, + 13.081706744578099 + ], + [ + 77.548303518218006, + 13.081742986383199 + ], + [ + 77.548264501836499, + 13.0817482033519 + ], + [ + 77.548268131678896, + 13.081765107346399 + ], + [ + 77.548573899150398, + 13.0832904223341 + ], + [ + 77.548739301239806, + 13.0842113505344 + ], + [ + 77.548617449899595, + 13.0846290014464 + ], + [ + 77.548524137899904, + 13.0848994683484 + ], + [ + 77.548480766281699, + 13.085202646625699 + ], + [ + 77.548624443745098, + 13.0853852463078 + ], + [ + 77.548677239676493, + 13.085776751244 + ], + [ + 77.547936661486503, + 13.086797597173399 + ], + [ + 77.547123234568701, + 13.087790222642299 + ], + [ + 77.546751751276204, + 13.0882435410197 + ], + [ + 77.546641693900597, + 13.088393345378 + ], + [ + 77.546546743362597, + 13.0889362721146 + ], + [ + 77.546419414988904, + 13.0897723619111 + ], + [ + 77.546356415445103, + 13.090385297722699 + ], + [ + 77.546172151837098, + 13.0913622009636 + ], + [ + 77.546115120455596, + 13.091820033071601 + ], + [ + 77.546087941686196, + 13.0930469958413 + ], + [ + 77.546068139385397, + 13.094403453442601 + ], + [ + 77.546113586249604, + 13.0948688040592 + ], + [ + 77.546355962407304, + 13.094827579078 + ], + [ + 77.547564306755703, + 13.0945470319647 + ], + [ + 77.548895378201394, + 13.094221626224099 + ], + [ + 77.549853621975402, + 13.0938258504769 + ], + [ + 77.550348982144698, + 13.0936201581479 + ], + [ + 77.550590380276503, + 13.093617770353699 + ], + [ + 77.550754500001403, + 13.0936198374482 + ], + [ + 77.551194291667798, + 13.0937015405149 + ], + [ + 77.551762552877605, + 13.0939445183269 + ], + [ + 77.552143922976796, + 13.094036359956601 + ], + [ + 77.552357783626803, + 13.0940412542638 + ], + [ + 77.553557385756605, + 13.093945872448399 + ], + [ + 77.554023531096703, + 13.094238008818801 + ], + [ + 77.554187399914298, + 13.0942871061396 + ], + [ + 77.554526131510301, + 13.094242246261301 + ], + [ + 77.554690757111601, + 13.094125876584 + ], + [ + 77.5547701906752, + 13.0938864358413 + ], + [ + 77.5548722180461, + 13.0937448563317 + ], + [ + 77.555037353197093, + 13.0934867186379 + ], + [ + 77.555328308670596, + 13.0931005325266 + ], + [ + 77.555405462248004, + 13.093270768772699 + ], + [ + 77.555554803853099, + 13.0937915848881 + ], + [ + 77.556117461846299, + 13.093427364312101 + ], + [ + 77.556277593306504, + 13.093246509957099 + ], + [ + 77.556349809455199, + 13.0930706793342 + ], + [ + 77.556844402018598, + 13.093032363503401 + ], + [ + 77.556998913608794, + 13.0941275287498 + ], + [ + 77.557151213018898, + 13.0941084647443 + ], + [ + 77.558230547411398, + 13.0939367121481 + ], + [ + 77.558245628813793, + 13.0942642050678 + ], + [ + 77.5579250081921, + 13.0943094677815 + ], + [ + 77.557986870006005, + 13.0950030002706 + ], + [ + 77.557929149963698, + 13.0957319801909 + ], + [ + 77.558060565541098, + 13.096341290037699 + ], + [ + 77.557909281454101, + 13.096580452931899 + ], + [ + 77.557697444112094, + 13.096655577678099 + ], + [ + 77.557665567464895, + 13.096789940991901 + ], + [ + 77.557711710451798, + 13.096918617732999 + ], + [ + 77.557747164970493, + 13.097202300737701 + ], + [ + 77.557749649009395, + 13.097442836162299 + ], + [ + 77.557802004853201, + 13.0976451986302 + ], + [ + 77.557969186245501, + 13.097800048581499 + ], + [ + 77.558224718537801, + 13.0984931077538 + ], + [ + 77.558343058192904, + 13.0986426454455 + ], + [ + 77.558617170420902, + 13.0994166721637 + ], + [ + 77.561028338368303, + 13.0984029525089 + ], + [ + 77.561210165429699, + 13.0988300952218 + ], + [ + 77.561320806231393, + 13.0990927416549 + ], + [ + 77.562148588088903, + 13.1010089884333 + ], + [ + 77.562776559998497, + 13.100760011361 + ], + [ + 77.562959835784596, + 13.1007552904161 + ], + [ + 77.563161297777199, + 13.1013648285718 + ], + [ + 77.564842468127097, + 13.1013584661547 + ], + [ + 77.564843580793493, + 13.101259511211101 + ], + [ + 77.565158979135106, + 13.101253654756199 + ], + [ + 77.565375621138003, + 13.101258743943299 + ], + [ + 77.565487011299894, + 13.1017001688506 + ], + [ + 77.565778460029605, + 13.1016479960778 + ], + [ + 77.565818638829001, + 13.1021011794763 + ], + [ + 77.565819713457202, + 13.1023475239997 + ], + [ + 77.565850023344296, + 13.1025616961422 + ], + [ + 77.565907317833293, + 13.1028118282628 + ], + [ + 77.566409622545294, + 13.1026645665417 + ], + [ + 77.566718211922407, + 13.102524066601701 + ], + [ + 77.566926471855894, + 13.1024335940577 + ], + [ + 77.566936014900705, + 13.102926209037101 + ], + [ + 77.566839707706094, + 13.1034763952501 + ], + [ + 77.566790485298199, + 13.103757781332501 + ], + [ + 77.566584345915004, + 13.1045528903819 + ], + [ + 77.566378598211898, + 13.1052033004202 + ], + [ + 77.565729008314705, + 13.106576317239901 + ], + [ + 77.565696474143195, + 13.1069838626793 + ], + [ + 77.565541869605795, + 13.1071620260033 + ], + [ + 77.565462124858797, + 13.107358617061699 + ], + [ + 77.565463076884697, + 13.107664377864101 + ], + [ + 77.565834376174706, + 13.107612857664799 + ], + [ + 77.567301139628299, + 13.107340294757 + ], + [ + 77.568792518085004, + 13.1070182076379 + ], + [ + 77.570643647849806, + 13.106601226734499 + ], + [ + 77.570547448342495, + 13.106164545471801 + ], + [ + 77.570347986706594, + 13.105465150303299 + ], + [ + 77.570075300988904, + 13.104392417110899 + ], + [ + 77.570048027277707, + 13.1042713775712 + ], + [ + 77.570030065099601, + 13.1041916598677 + ], + [ + 77.569957492331596, + 13.1038097762583 + ], + [ + 77.569948707403697, + 13.103746826119201 + ], + [ + 77.569814966326206, + 13.103040253144799 + ], + [ + 77.569789749593298, + 13.1028897936392 + ], + [ + 77.569797484717995, + 13.102744802070401 + ], + [ + 77.569815517269404, + 13.102523627731401 + ], + [ + 77.569829625317695, + 13.102387267471601 + ], + [ + 77.569855067502104, + 13.102060956281001 + ], + [ + 77.569912007869704, + 13.101422040384101 + ], + [ + 77.569917900552994, + 13.101348799833699 + ], + [ + 77.569917586889204, + 13.1012473628635 + ], + [ + 77.569955528891001, + 13.100843397810699 + ], + [ + 77.5700245317785, + 13.100334205795701 + ], + [ + 77.570111234555199, + 13.1001766878473 + ], + [ + 77.570140574166899, + 13.100154658093199 + ], + [ + 77.570163178881998, + 13.100124725209399 + ], + [ + 77.570187329532502, + 13.100101298055501 + ], + [ + 77.570516909137496, + 13.0997350005059 + ], + [ + 77.570598480668295, + 13.099617530846301 + ], + [ + 77.570805664816902, + 13.099281436720799 + ], + [ + 77.570907542525305, + 13.099055078706799 + ], + [ + 77.570978282205203, + 13.098179090459199 + ], + [ + 77.5706461797175, + 13.0981224761261 + ], + [ + 77.5703166436966, + 13.098063650686401 + ], + [ + 77.570126425707699, + 13.0980519957719 + ], + [ + 77.5700596106295, + 13.098052661975601 + ], + [ + 77.569947961904106, + 13.0980628096037 + ], + [ + 77.569945081943402, + 13.0980628383178 + ], + [ + 77.569931960332198, + 13.098064740796101 + ], + [ + 77.569836371746007, + 13.098078603122101 + ], + [ + 77.5697949003047, + 13.0980790165841 + ], + [ + 77.569751124892903, + 13.098079453008999 + ], + [ + 77.5695372091416, + 13.0980601287794 + ], + [ + 77.569256407985804, + 13.0980346952334 + ], + [ + 77.568974454844295, + 13.0980092728517 + ], + [ + 77.568686741776503, + 13.0979839075501 + ], + [ + 77.568396137032906, + 13.097957441423899 + ], + [ + 77.568119367822106, + 13.097931966419299 + ], + [ + 77.568104956296196, + 13.0979309806968 + ], + [ + 77.567939979014, + 13.0979151065303 + ], + [ + 77.567817795800394, + 13.0979033502737 + ], + [ + 77.567536971228506, + 13.097875656407499 + ], + [ + 77.567244039106001, + 13.0978469535044 + ], + [ + 77.567091237124401, + 13.097832665022899 + ], + [ + 77.567055187384696, + 13.0978291157375 + ], + [ + 77.5667579386878, + 13.0977998463267 + ], + [ + 77.566454627000397, + 13.097770116541501 + ], + [ + 77.566415424368699, + 13.097767118939601 + ], + [ + 77.566120775982299, + 13.097739561105399 + ], + [ + 77.565450758276299, + 13.097677342627801 + ], + [ + 77.565104212014901, + 13.0976446535609 + ], + [ + 77.564850505944094, + 13.097621204024501 + ], + [ + 77.564608331436403, + 13.0975987688077 + ], + [ + 77.564571359563104, + 13.097595264473901 + ], + [ + 77.564500503725895, + 13.097588548502999 + ], + [ + 77.564329328416605, + 13.0975800876584 + ], + [ + 77.5642999878186, + 13.097583767467 + ], + [ + 77.563824550542407, + 13.097631491744499 + ], + [ + 77.563410308034406, + 13.097687477572901 + ], + [ + 77.562849259126807, + 13.0977845313915 + ], + [ + 77.562847548242701, + 13.0977813023139 + ], + [ + 77.562806598897495, + 13.0977040147396 + ], + [ + 77.562587720960593, + 13.097290905551199 + ], + [ + 77.5621207277823, + 13.0964094978264 + ], + [ + 77.561509108162795, + 13.095198178544999 + ], + [ + 77.561325511596706, + 13.0944896658381 + ], + [ + 77.561241348256502, + 13.0940707947232 + ], + [ + 77.5610965622772, + 13.0933502062791 + ], + [ + 77.560739135879601, + 13.0915954176293 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "28", + "group": "Neelasandra", + "Corporatio": "Central", + "ac_no": "163", + "ac": "Shanthinagar", + "corporat_1": "1", + "ward_id": "40", + "ward_name": "40 - Neelasandra", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಾಂತಿನಗರ", + "ward_name_": "ನೀಲಸಂದ್ರ", + "dig_ward_n": "Neelasandra", + "Assembly": "163 - Shanthinagar", + "Slno": "40" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.614880767267607, + 12.9506726278114 + ], + [ + 77.613757012756693, + 12.9503309959129 + ], + [ + 77.613756671767504, + 12.950333097986499 + ], + [ + 77.612330193194296, + 12.950019836106 + ], + [ + 77.611737668875406, + 12.9498910264714 + ], + [ + 77.611530714729398, + 12.949912280061101 + ], + [ + 77.611530714729398, + 12.949912280061101 + ], + [ + 77.611530714729497, + 12.950523481776999 + ], + [ + 77.611717488699497, + 12.951537213600901 + ], + [ + 77.611871416212793, + 12.951992555659 + ], + [ + 77.612562000496993, + 12.9536840497792 + ], + [ + 77.612516000075502, + 12.953834049573199 + ], + [ + 77.612488000592606, + 12.9538830493963 + ], + [ + 77.612417999995898, + 12.9540070500067 + ], + [ + 77.6124560005711, + 12.954146049928401 + ], + [ + 77.613191000505097, + 12.9540020498345 + ], + [ + 77.613196000346207, + 12.953962050282099 + ], + [ + 77.613161000504405, + 12.9538140503349 + ], + [ + 77.613192000422501, + 12.9537390496447 + ], + [ + 77.613482000097704, + 12.953660049587899 + ], + [ + 77.613698713903602, + 12.9536009463692 + ], + [ + 77.613719211235406, + 12.953595355346801 + ], + [ + 77.613724000321398, + 12.9535940497169 + ], + [ + 77.613737000393698, + 12.9535890497929 + ], + [ + 77.613760000750702, + 12.9536900502093 + ], + [ + 77.613767000780399, + 12.953719050298201 + ], + [ + 77.613772000186898, + 12.9537390497876 + ], + [ + 77.613784505993195, + 12.953794911200101 + ], + [ + 77.613793728814699, + 12.953836105966399 + ], + [ + 77.613799166293205, + 12.953860394123399 + ], + [ + 77.613801999983494, + 12.953873049740601 + ], + [ + 77.613808000346907, + 12.953895050201 + ], + [ + 77.613812153570095, + 12.9539126080982 + ], + [ + 77.613830000790003, + 12.953988049984 + ], + [ + 77.613891701261693, + 12.9542214723248 + ], + [ + 77.613901635293303, + 12.9542590534772 + ], + [ + 77.613913000147207, + 12.9543020498381 + ], + [ + 77.613930288940495, + 12.9544219588721 + ], + [ + 77.6139540003999, + 12.954455050330299 + ], + [ + 77.613960075568897, + 12.954474104463101 + ], + [ + 77.613966892750497, + 12.9545028805546 + ], + [ + 77.613975218806701, + 12.954532133167399 + ], + [ + 77.613984446970207, + 12.9545677684079 + ], + [ + 77.614003146140206, + 12.954662308733001 + ], + [ + 77.614017769348607, + 12.954718539868001 + ], + [ + 77.614113720304402, + 12.9550741997971 + ], + [ + 77.614198304200002, + 12.955045161681699 + ], + [ + 77.614245509424293, + 12.955021087709 + ], + [ + 77.614296916180294, + 12.955015327147599 + ], + [ + 77.615648534799504, + 12.9545140197227 + ], + [ + 77.616489974745093, + 12.9541869661926 + ], + [ + 77.616902776513101, + 12.9540333514609 + ], + [ + 77.617587358131999, + 12.953635204222699 + ], + [ + 77.617628575203796, + 12.953613423138201 + ], + [ + 77.617631651465203, + 12.953577255398001 + ], + [ + 77.617737546422902, + 12.9535286737819 + ], + [ + 77.617745010995193, + 12.9534279053165 + ], + [ + 77.617759000484796, + 12.953239050110099 + ], + [ + 77.617764000863403, + 12.953081050338101 + ], + [ + 77.617782000779101, + 12.9529400505594 + ], + [ + 77.617810000817698, + 12.9528530506938 + ], + [ + 77.617862000789799, + 12.952773050504 + ], + [ + 77.617949, + 12.952672050829101 + ], + [ + 77.618005551019607, + 12.952634528871201 + ], + [ + 77.618018359608897, + 12.952626029928201 + ], + [ + 77.618160000526103, + 12.952532050689999 + ], + [ + 77.618519208734796, + 12.9522397082276 + ], + [ + 77.618038236521201, + 12.951729938926301 + ], + [ + 77.617904242668402, + 12.951574621955301 + ], + [ + 77.617686223200195, + 12.951100629073199 + ], + [ + 77.617475723548793, + 12.950863061754699 + ], + [ + 77.617238316029301, + 12.950800366451601 + ], + [ + 77.616958689527294, + 12.9508295459091 + ], + [ + 77.616945606287999, + 12.950653963758199 + ], + [ + 77.616608788657999, + 12.950683164495301 + ], + [ + 77.616593226855201, + 12.950684513334901 + ], + [ + 77.616585152264193, + 12.9506859071177 + ], + [ + 77.616175435236599, + 12.950756643533399 + ], + [ + 77.616026383444705, + 12.950782376623099 + ], + [ + 77.615709321594807, + 12.9508371154177 + ], + [ + 77.6154699655104, + 12.9508509562482 + ], + [ + 77.615432094943003, + 12.9508467019525 + ], + [ + 77.615347306219903, + 12.950837176592 + ], + [ + 77.615012692239205, + 12.950721479499 + ], + [ + 77.614943958121302, + 12.9506977138848 + ], + [ + 77.614911405748501, + 12.9506864587997 + ], + [ + 77.614880648672994, + 12.950675562414601 + ], + [ + 77.614880767267607, + 12.9506726278114 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "29", + "group": "Kempegowda", + "Corporatio": "North", + "ac_no": "150", + "ac": "Yelahanka", + "corporat_1": "2", + "ward_id": "6", + "ward_name": "6 - Kempegowda Ward", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಯಲಹಂಕ", + "ward_name_": "ಕೆಂಪೇಗೌಡ ವಾರ್ಡ್", + "dig_ward_n": "Kempegowda Ward", + "Assembly": "150 - Yelahanka", + "Slno": "6" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.595295835053903, + 13.096301499639599 + ], + [ + 77.594334105182597, + 13.0950720990721 + ], + [ + 77.594312375398701, + 13.095142333391999 + ], + [ + 77.594294381779605, + 13.0951842979959 + ], + [ + 77.594270253475401, + 13.095245522173199 + ], + [ + 77.594174214579596, + 13.0953707099096 + ], + [ + 77.593928570789103, + 13.0956216242952 + ], + [ + 77.593686484703198, + 13.095893103609001 + ], + [ + 77.593489601039096, + 13.096113891999799 + ], + [ + 77.593302367048395, + 13.096303715786901 + ], + [ + 77.593231966705901, + 13.0963750901622 + ], + [ + 77.593185197598004, + 13.0964196027725 + ], + [ + 77.592668441107406, + 13.0969012056228 + ], + [ + 77.592544555944997, + 13.097016663073999 + ], + [ + 77.592446890806897, + 13.0970966953371 + ], + [ + 77.592425192687003, + 13.0971149821331 + ], + [ + 77.592747731233302, + 13.098069853144001 + ], + [ + 77.591669951182396, + 13.0990503037878 + ], + [ + 77.591060211073994, + 13.099526931619099 + ], + [ + 77.591827899439394, + 13.1003541781762 + ], + [ + 77.592630816898605, + 13.1011850746123 + ], + [ + 77.592464881006606, + 13.1014850236038 + ], + [ + 77.5912016134059, + 13.104477052370401 + ], + [ + 77.590488573812706, + 13.1046853930556 + ], + [ + 77.5902984303533, + 13.104621732999201 + ], + [ + 77.589686405343102, + 13.1043555194309 + ], + [ + 77.589176979729501, + 13.104218348887001 + ], + [ + 77.587839752754704, + 13.104110001636 + ], + [ + 77.587785362792005, + 13.1042330947095 + ], + [ + 77.589580544233797, + 13.104739082762601 + ], + [ + 77.589967611333094, + 13.1047931568243 + ], + [ + 77.590222436131199, + 13.1049251563753 + ], + [ + 77.591553914767204, + 13.1048321765444 + ], + [ + 77.591686975975605, + 13.104539126241299 + ], + [ + 77.591933498257305, + 13.103996195253 + ], + [ + 77.592409403494003, + 13.1041817083546 + ], + [ + 77.593009304014402, + 13.1043075230796 + ], + [ + 77.593160307726805, + 13.104334718060899 + ], + [ + 77.593235451754197, + 13.104331139773899 + ], + [ + 77.593798674131406, + 13.104339012005299 + ], + [ + 77.594769105571601, + 13.10437908882 + ], + [ + 77.595003841200196, + 13.104436341412301 + ], + [ + 77.595385841022207, + 13.104430697320501 + ], + [ + 77.595668602606196, + 13.104326410465401 + ], + [ + 77.596718095168697, + 13.1041729355056 + ], + [ + 77.596977624321198, + 13.1041142955804 + ], + [ + 77.5969604253592, + 13.1042746811315 + ], + [ + 77.597190039660703, + 13.104340007675701 + ], + [ + 77.597439939004403, + 13.104539396078501 + ], + [ + 77.597749103003096, + 13.1046524699484 + ], + [ + 77.598309511438202, + 13.104687242571 + ], + [ + 77.599200456218895, + 13.104958771317399 + ], + [ + 77.599510966507395, + 13.1040779115806 + ], + [ + 77.5999281102727, + 13.103985827516899 + ], + [ + 77.600605497371205, + 13.104083053725001 + ], + [ + 77.600547663532097, + 13.1039347930673 + ], + [ + 77.6005393717966, + 13.103913536996799 + ], + [ + 77.600420305888093, + 13.1036083047526 + ], + [ + 77.600392540858195, + 13.1034388561044 + ], + [ + 77.599843500604905, + 13.101598494881699 + ], + [ + 77.598845246547796, + 13.0980149597448 + ], + [ + 77.599398453989494, + 13.097413273714 + ], + [ + 77.599688029785696, + 13.0970335837444 + ], + [ + 77.600208042170607, + 13.0961114751524 + ], + [ + 77.600710932578394, + 13.094517606167701 + ], + [ + 77.600841656850704, + 13.0938578316701 + ], + [ + 77.600865424547706, + 13.093221204922701 + ], + [ + 77.601201857708901, + 13.092332502985601 + ], + [ + 77.601469404777205, + 13.091799842748401 + ], + [ + 77.601934448157493, + 13.0911699624261 + ], + [ + 77.602240333939093, + 13.0908025278182 + ], + [ + 77.602528340022204, + 13.090341426206701 + ], + [ + 77.603214885186702, + 13.089085501439699 + ], + [ + 77.603301641811797, + 13.0887300510846 + ], + [ + 77.603398774673096, + 13.0883632302388 + ], + [ + 77.6034369467951, + 13.0878913836652 + ], + [ + 77.6034607151893, + 13.087775630383501 + ], + [ + 77.603826147105806, + 13.0872807864171 + ], + [ + 77.6039836102983, + 13.0871129437674 + ], + [ + 77.604072740577806, + 13.086997191073401 + ], + [ + 77.604144873327499, + 13.086835380048999 + ], + [ + 77.604124141598305, + 13.086825474625201 + ], + [ + 77.603470615781106, + 13.086513220877499 + ], + [ + 77.603396830779801, + 13.086484235699199 + ], + [ + 77.602572634901094, + 13.0861604683008 + ], + [ + 77.602548435891407, + 13.0861462368853 + ], + [ + 77.6025253951358, + 13.0861326867076 + ], + [ + 77.602220410875901, + 13.085953324215399 + ], + [ + 77.602143876464694, + 13.0859083134262 + ], + [ + 77.597835705127693, + 13.086647610059799 + ], + [ + 77.597626361952095, + 13.086683186487001 + ], + [ + 77.596499728420596, + 13.086877564072701 + ], + [ + 77.596431513323594, + 13.0868909185322 + ], + [ + 77.595819856968902, + 13.0870106585557 + ], + [ + 77.595189092592406, + 13.087171326827599 + ], + [ + 77.595132911736897, + 13.0871856367832 + ], + [ + 77.594917391027593, + 13.0872405343836 + ], + [ + 77.59479787718, + 13.0872175428145 + ], + [ + 77.595070541331197, + 13.0878372670571 + ], + [ + 77.595408501399206, + 13.0886272450368 + ], + [ + 77.595483280876195, + 13.0888020402517 + ], + [ + 77.595733005823405, + 13.089436443377799 + ], + [ + 77.595892879624301, + 13.0898515400602 + ], + [ + 77.595986527914206, + 13.0901385295819 + ], + [ + 77.596051183646594, + 13.090336667929099 + ], + [ + 77.596158318639993, + 13.090776010070501 + ], + [ + 77.596232088050897, + 13.09110953535 + ], + [ + 77.596261859628001, + 13.091422047145601 + ], + [ + 77.596341040686994, + 13.0923269352133 + ], + [ + 77.596366631091399, + 13.092680143221701 + ], + [ + 77.596313775223706, + 13.093243058515201 + ], + [ + 77.596262560796504, + 13.093577842065701 + ], + [ + 77.596212861226803, + 13.093892283270099 + ], + [ + 77.596159792483604, + 13.094269998273999 + ], + [ + 77.5957912230337, + 13.0955430240549 + ], + [ + 77.595613005263303, + 13.0959615241288 + ], + [ + 77.595388547017706, + 13.096420014658801 + ], + [ + 77.595295835053903, + 13.096301499639599 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "32", + "group": "Ashoknagar", + "Corporatio": "Central", + "ac_no": "163", + "ac": "Shanthinagar", + "corporat_1": "1", + "ward_id": "14", + "ward_name": "14 - Richmond Town", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಾಂತಿನಗರ", + "ward_name_": "ರಿಚ್ಮಂಡ್ ಟೌನ್", + "dig_ward_n": "Ashoknagar", + "Assembly": "163 - Shanthinagar", + "Slno": "14" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.602441921108493, + 12.959767830877 + ], + [ + 77.602442000748994, + 12.959768048710901 + ], + [ + 77.602451002833106, + 12.9597953172846 + ], + [ + 77.602460431945403, + 12.9598238780105 + ], + [ + 77.602461225162401, + 12.959826281334999 + ], + [ + 77.602602420747203, + 12.9602539745058 + ], + [ + 77.602604424685893, + 12.9602600426837 + ], + [ + 77.602614000333006, + 12.960289049129599 + ], + [ + 77.602619118050001, + 12.9603045387612 + ], + [ + 77.6026339557028, + 12.960349445358201 + ], + [ + 77.602727000076399, + 12.9606310491518 + ], + [ + 77.602905037668705, + 12.9611642943751 + ], + [ + 77.602932000221401, + 12.961245048829699 + ], + [ + 77.602926442290496, + 12.961246053012101 + ], + [ + 77.602897233802196, + 12.961282284266099 + ], + [ + 77.602858144292696, + 12.961301829020901 + ], + [ + 77.602730214988895, + 12.9613249273674 + ], + [ + 77.602669803928805, + 12.961353356101601 + ], + [ + 77.602639598398696, + 12.961387115223401 + ], + [ + 77.602623956148307, + 12.961429774608799 + ], + [ + 77.602668539975994, + 12.9615971517222 + ], + [ + 77.602709000143406, + 12.961749049128599 + ], + [ + 77.602752000280603, + 12.9619050488886 + ], + [ + 77.602860690151701, + 12.962233239027301 + ], + [ + 77.602900217710598, + 12.962370511784201 + ], + [ + 77.6029434074498, + 12.9625385593234 + ], + [ + 77.602951713996205, + 12.9625660098586 + ], + [ + 77.603030450730202, + 12.962863836619199 + ], + [ + 77.603016445459303, + 12.962866408730401 + ], + [ + 77.602181841595296, + 12.9630204818551 + ], + [ + 77.602551647002301, + 12.9645142759835 + ], + [ + 77.602633379613096, + 12.9652178871546 + ], + [ + 77.602636933204806, + 12.9656407645755 + ], + [ + 77.6023811610293, + 12.965611699218799 + ], + [ + 77.601053494180803, + 12.9654392118315 + ], + [ + 77.598691031465606, + 12.9651322670663 + ], + [ + 77.597161732141601, + 12.9648816586653 + ], + [ + 77.597137458557597, + 12.9648776809967 + ], + [ + 77.597123638692494, + 12.964875416699099 + ], + [ + 77.597024574198599, + 12.9648602375634 + ], + [ + 77.597023763205101, + 12.964860113756 + ], + [ + 77.5969289280943, + 12.964845583498001 + ], + [ + 77.596916202271501, + 12.964847195743801 + ], + [ + 77.596905384765094, + 12.9648481529275 + ], + [ + 77.596893725168499, + 12.9648491853686 + ], + [ + 77.596398519109798, + 12.9648930161186 + ], + [ + 77.596305907583897, + 12.964914085833801 + ], + [ + 77.596263540656096, + 12.964923724474099 + ], + [ + 77.596248608312294, + 12.964927261335401 + ], + [ + 77.596107108244695, + 12.9649953013305 + ], + [ + 77.595942696493694, + 12.965130198088699 + ], + [ + 77.595905147114905, + 12.9651734858019 + ], + [ + 77.595878406697693, + 12.9652042443673 + ], + [ + 77.595859068028005, + 12.965227022236901 + ], + [ + 77.595810697939498, + 12.965281710814301 + ], + [ + 77.595764160251704, + 12.965346544739999 + ], + [ + 77.595666596525703, + 12.965487550278 + ], + [ + 77.595592319158499, + 12.965597832608699 + ], + [ + 77.595565131793606, + 12.965641016930901 + ], + [ + 77.595421193943196, + 12.965862664794701 + ], + [ + 77.595373046136302, + 12.9659388076743 + ], + [ + 77.595325438848803, + 12.9660115572799 + ], + [ + 77.595221177319303, + 12.9661729568165 + ], + [ + 77.595217951875, + 12.966178602928901 + ], + [ + 77.595159541040502, + 12.966280854418001 + ], + [ + 77.595099842387299, + 12.966464125194101 + ], + [ + 77.595065801555407, + 12.9665686298016 + ], + [ + 77.594960765032795, + 12.967043980514401 + ], + [ + 77.594969990702097, + 12.9671851422851 + ], + [ + 77.594970860129294, + 12.9671984511409 + ], + [ + 77.594973082683396, + 12.967232449604699 + ], + [ + 77.594974985093501, + 12.9672594713269 + ], + [ + 77.594977133933199, + 12.9672900031441 + ], + [ + 77.594962656172498, + 12.967392913216299 + ], + [ + 77.594947120726204, + 12.967504868183299 + ], + [ + 77.594802189944204, + 12.9680909659434 + ], + [ + 77.5947780352206, + 12.9681886476966 + ], + [ + 77.594707593818796, + 12.9685091344854 + ], + [ + 77.594702049184093, + 12.9685343612809 + ], + [ + 77.594496948151502, + 12.9694675092203 + ], + [ + 77.594432759182794, + 12.9697595504693 + ], + [ + 77.594427128139898, + 12.969786130570499 + ], + [ + 77.594300198776693, + 12.9703852968403 + ], + [ + 77.594288106773206, + 12.9704423762914 + ], + [ + 77.594032592468295, + 12.971648523871901 + ], + [ + 77.593990727348697, + 12.971846147689099 + ], + [ + 77.593966400903696, + 12.9719609774688 + ], + [ + 77.593963587117301, + 12.971974259825 + ], + [ + 77.593953039851399, + 12.972024052128701 + ], + [ + 77.594000901214002, + 12.972086814311901 + ], + [ + 77.594511610202005, + 12.9727547788066 + ], + [ + 77.594602341784807, + 12.972870378726901 + ], + [ + 77.594644210112094, + 12.972923723494 + ], + [ + 77.594694721174093, + 12.9729880798093 + ], + [ + 77.594697157723004, + 12.972991184996101 + ], + [ + 77.594887284616902, + 12.973233423036501 + ], + [ + 77.595052480689503, + 12.973443898269499 + ], + [ + 77.595198815951093, + 12.973555967107901 + ], + [ + 77.595682756775304, + 12.9739265906796 + ], + [ + 77.596631926080605, + 12.9747174046274 + ], + [ + 77.596636392044502, + 12.9747211264434 + ], + [ + 77.597532125415299, + 12.975372814316801 + ], + [ + 77.598173653532498, + 12.975836294249699 + ], + [ + 77.598266775726501, + 12.9759035710068 + ], + [ + 77.598889417921498, + 12.9763534022469 + ], + [ + 77.599202856529004, + 12.976579846270001 + ], + [ + 77.599239091845405, + 12.9766060241208 + ], + [ + 77.599320609511906, + 12.9766649169259 + ], + [ + 77.599317225750596, + 12.9766717264886 + ], + [ + 77.598562806076501, + 12.978316737442 + ], + [ + 77.598000763556897, + 12.979526177843301 + ], + [ + 77.597512151342698, + 12.980544034070499 + ], + [ + 77.5976334946142, + 12.9806439479835 + ], + [ + 77.597746365715494, + 12.980736885271901 + ], + [ + 77.597757499151001, + 12.980746053149099 + ], + [ + 77.597760125940297, + 12.980748215911399 + ], + [ + 77.598323430184607, + 12.980577495022199 + ], + [ + 77.5984190315706, + 12.980548521206 + ], + [ + 77.599296622548906, + 12.980283398972601 + ], + [ + 77.600915027361395, + 12.979722893333401 + ], + [ + 77.602157533113996, + 12.979293176765999 + ], + [ + 77.602320588923206, + 12.9792367840242 + ], + [ + 77.602393072074094, + 12.979213570236601 + ], + [ + 77.602393108796804, + 12.9792135581243 + ], + [ + 77.602393479727297, + 12.979213438772 + ], + [ + 77.602393554103202, + 12.9792134154417 + ], + [ + 77.602395042440094, + 12.9792129388894 + ], + [ + 77.602396393050199, + 12.9792125061772 + ], + [ + 77.602401453942406, + 12.9792108853519 + ], + [ + 77.602402682438097, + 12.979210491806199 + ], + [ + 77.602419244185, + 12.979205187298399 + ], + [ + 77.602421259544798, + 12.979204541949199 + ], + [ + 77.602428518517002, + 12.9792022179324 + ], + [ + 77.602431604446707, + 12.9792012294035 + ], + [ + 77.602431824801798, + 12.979201158536901 + ], + [ + 77.602433466495896, + 12.979200635277699 + ], + [ + 77.602447982550302, + 12.9791959827452 + ], + [ + 77.6024785008306, + 12.979185993358399 + ], + [ + 77.603276659105703, + 12.978924732445501 + ], + [ + 77.603415993777801, + 12.978879124178 + ], + [ + 77.605190765035104, + 12.9782978312713 + ], + [ + 77.605387128037194, + 12.9782347673194 + ], + [ + 77.605481127359397, + 12.9782045785962 + ], + [ + 77.606222113881103, + 12.977967715996201 + ], + [ + 77.6066810396877, + 12.9778210158261 + ], + [ + 77.607614096624701, + 12.977521433167601 + ], + [ + 77.608684449208596, + 12.977179262034699 + ], + [ + 77.608773831624902, + 12.977150687832999 + ], + [ + 77.608845918656002, + 12.977127971505499 + ], + [ + 77.608877101267794, + 12.977118144632801 + ], + [ + 77.608921889596104, + 12.977104029989 + ], + [ + 77.611434477522394, + 12.9762761626195 + ], + [ + 77.611778327994301, + 12.9761628661006 + ], + [ + 77.612478172501994, + 12.9759322678389 + ], + [ + 77.614387117847798, + 12.9753032682314 + ], + [ + 77.614337878298599, + 12.975157900495301 + ], + [ + 77.614291616828794, + 12.975021323804301 + ], + [ + 77.614272857148904, + 12.9749659411497 + ], + [ + 77.614244338373794, + 12.9748817462152 + ], + [ + 77.613860090543398, + 12.973747335509801 + ], + [ + 77.613853501557799, + 12.973727884212799 + ], + [ + 77.6138530396031, + 12.973726520172001 + ], + [ + 77.6151076160439, + 12.973442387350399 + ], + [ + 77.615762593999406, + 12.973294047951001 + ], + [ + 77.615862293050299, + 12.9732714678207 + ], + [ + 77.616408797080993, + 12.973147695210599 + ], + [ + 77.617140598373396, + 12.972981952257999 + ], + [ + 77.617653498026002, + 12.972865787948599 + ], + [ + 77.617667974239694, + 12.972862509181001 + ], + [ + 77.617713069040306, + 12.9728522956385 + ], + [ + 77.618213086231805, + 12.972739047936599 + ], + [ + 77.6187370097919, + 12.9726203838473 + ], + [ + 77.618774266351295, + 12.972611952909601 + ], + [ + 77.6193010501771, + 12.972492742219099 + ], + [ + 77.619322784097207, + 12.972478972050601 + ], + [ + 77.619478219456994, + 12.9723861143103 + ], + [ + 77.619488139359603, + 12.9723801900588 + ], + [ + 77.619496316166106, + 12.972345656749701 + ], + [ + 77.619500435003005, + 12.9723282615033 + ], + [ + 77.619526734098002, + 12.972217186045 + ], + [ + 77.619544190530902, + 12.9720148703931 + ], + [ + 77.619525024241199, + 12.971850092940301 + ], + [ + 77.619504963015103, + 12.971677612915 + ], + [ + 77.619551353972597, + 12.9713204029733 + ], + [ + 77.6195556102371, + 12.971287630165699 + ], + [ + 77.619591324285807, + 12.9710126322229 + ], + [ + 77.619597708222798, + 12.970963473468901 + ], + [ + 77.619615247228893, + 12.970828418287001 + ], + [ + 77.619684907252505, + 12.970276638812701 + ], + [ + 77.619694959992401, + 12.9701969319672 + ], + [ + 77.619713600416404, + 12.9700493578736 + ], + [ + 77.619754537983198, + 12.9697335929957 + ], + [ + 77.619764542666005, + 12.9696564234352 + ], + [ + 77.619808245939495, + 12.9693193172689 + ], + [ + 77.619814705790702, + 12.969269492839601 + ], + [ + 77.619848908148995, + 12.969005676404301 + ], + [ + 77.619898582997806, + 12.9686912383065 + ], + [ + 77.619923948781306, + 12.9685294968483 + ], + [ + 77.619965189512101, + 12.9682343413368 + ], + [ + 77.619966281735202, + 12.9682286839735 + ], + [ + 77.619977978336806, + 12.9681781491204 + ], + [ + 77.619990396755099, + 12.9681244992397 + ], + [ + 77.620036233995293, + 12.967926463679699 + ], + [ + 77.620049447980406, + 12.967868737695801 + ], + [ + 77.620059526254593, + 12.967841533653599 + ], + [ + 77.620192442762203, + 12.967462335899601 + ], + [ + 77.620207334391495, + 12.9674198526554 + ], + [ + 77.620243446710205, + 12.9673168281443 + ], + [ + 77.620247933820494, + 12.967305491131 + ], + [ + 77.620272131780695, + 12.967252170711699 + ], + [ + 77.620412339431198, + 12.966951501394201 + ], + [ + 77.620448740858805, + 12.966854017339699 + ], + [ + 77.620515525319703, + 12.9666839077634 + ], + [ + 77.620519958541195, + 12.966672616463001 + ], + [ + 77.620459757107, + 12.966646152787099 + ], + [ + 77.620424524473705, + 12.9666306653001 + ], + [ + 77.620340084448799, + 12.966538916286201 + ], + [ + 77.620011709208001, + 12.9661887608149 + ], + [ + 77.619896659321398, + 12.9660329503672 + ], + [ + 77.619869866280197, + 12.9659853272306 + ], + [ + 77.619854395882399, + 12.9659578302683 + ], + [ + 77.619757039069697, + 12.965784786838499 + ], + [ + 77.619754140109407, + 12.965778531847601 + ], + [ + 77.619739000513505, + 12.965737050238999 + ], + [ + 77.619725539536105, + 12.9657161858053 + ], + [ + 77.619621516230893, + 12.965488024086399 + ], + [ + 77.619578704426402, + 12.9654681272754 + ], + [ + 77.619192642960002, + 12.965437006167599 + ], + [ + 77.619001587199307, + 12.9654214029276 + ], + [ + 77.618950950242194, + 12.965417267213599 + ], + [ + 77.6177644777583, + 12.9653203668669 + ], + [ + 77.6177400037908, + 12.9653183689881 + ], + [ + 77.617677677418598, + 12.9653220802763 + ], + [ + 77.617671534358905, + 12.9653224465281 + ], + [ + 77.617680001264702, + 12.9653025936219 + ], + [ + 77.6177227108181, + 12.965202460744001 + ], + [ + 77.617765378967107, + 12.965102423140401 + ], + [ + 77.617904506617293, + 12.9647532068687 + ], + [ + 77.618057366232506, + 12.964395947508899 + ], + [ + 77.618072002719202, + 12.9643641805669 + ], + [ + 77.618187437022101, + 12.964118996520201 + ], + [ + 77.618189878192695, + 12.964113811626801 + ], + [ + 77.618198200229202, + 12.9640964951697 + ], + [ + 77.6181985923659, + 12.964095676339999 + ], + [ + 77.618207181213606, + 12.964077800691999 + ], + [ + 77.618208088208902, + 12.9640759187778 + ], + [ + 77.618211503204904, + 12.964068812450799 + ], + [ + 77.618222436397502, + 12.9640462705428 + ], + [ + 77.618222473357605, + 12.9640461933803 + ], + [ + 77.618369652413605, + 12.963742737363001 + ], + [ + 77.618377711845497, + 12.963726120082899 + ], + [ + 77.618377724456806, + 12.9637260928535 + ], + [ + 77.618408371584295, + 12.9636629046942 + ], + [ + 77.6184135372703, + 12.9636512681715 + ], + [ + 77.618419671304096, + 12.963637450988699 + ], + [ + 77.618898840157698, + 12.962558056506101 + ], + [ + 77.618926653953196, + 12.962479668808401 + ], + [ + 77.618931308538194, + 12.962466552205401 + ], + [ + 77.618934630822594, + 12.9624571909712 + ], + [ + 77.618539535374794, + 12.9623324282702 + ], + [ + 77.617820778792705, + 12.9621060172794 + ], + [ + 77.617814283581495, + 12.9621230867793 + ], + [ + 77.617811000828894, + 12.9621220501488 + ], + [ + 77.617784607165206, + 12.9621135885849 + ], + [ + 77.617680000187306, + 12.962080050570099 + ], + [ + 77.617137931818505, + 12.9619113767318 + ], + [ + 77.617047953401197, + 12.9618735427249 + ], + [ + 77.616414000237896, + 12.9616620502752 + ], + [ + 77.616310369863797, + 12.9616288559636 + ], + [ + 77.6162949045669, + 12.961623902576701 + ], + [ + 77.616286000443907, + 12.9616210505427 + ], + [ + 77.6162754830263, + 12.961618163230201 + ], + [ + 77.616031000498793, + 12.961551049994499 + ], + [ + 77.615708000422998, + 12.9615120504742 + ], + [ + 77.615547399117105, + 12.961509889926401 + ], + [ + 77.615521171333597, + 12.961509537356999 + ], + [ + 77.614159278851503, + 12.9615354047907 + ], + [ + 77.613359984519704, + 12.9615456999919 + ], + [ + 77.612710141219793, + 12.9616311046574 + ], + [ + 77.612521646436207, + 12.961765166685399 + ], + [ + 77.612485150571899, + 12.961791123386 + ], + [ + 77.612468792129306, + 12.961782584002499 + ], + [ + 77.612467166661204, + 12.9617817357418 + ], + [ + 77.612417809432998, + 12.9618247914352 + ], + [ + 77.612341672802302, + 12.961921544373499 + ], + [ + 77.612019113881104, + 12.9623301307543 + ], + [ + 77.611983383038293, + 12.9623753913146 + ], + [ + 77.611806987842101, + 12.962598831944099 + ], + [ + 77.611567516917106, + 12.9628741539921 + ], + [ + 77.611559109976199, + 12.9628838191644 + ], + [ + 77.611265966337399, + 12.9632208477605 + ], + [ + 77.611258354494097, + 12.9632295572573 + ], + [ + 77.611230123697396, + 12.9632618614837 + ], + [ + 77.611165136051497, + 12.963349005568 + ], + [ + 77.611124443922606, + 12.963403571421599 + ], + [ + 77.610784898852302, + 12.9638588790197 + ], + [ + 77.610620894106702, + 12.9640787980191 + ], + [ + 77.610522147605906, + 12.9642130347096 + ], + [ + 77.610458538828397, + 12.9642995062718 + ], + [ + 77.610117920795204, + 12.964761410140101 + ], + [ + 77.610099339370194, + 12.9647883749352 + ], + [ + 77.609912614746094, + 12.9650593419471 + ], + [ + 77.609841728831299, + 12.965162817506799 + ], + [ + 77.609635634449106, + 12.9654084370581 + ], + [ + 77.609600309210506, + 12.9654505359001 + ], + [ + 77.609402151986899, + 12.965686695479601 + ], + [ + 77.609144590129901, + 12.966052907000099 + ], + [ + 77.608840272161203, + 12.966548956841001 + ], + [ + 77.608782829559502, + 12.9666425901542 + ], + [ + 77.608780015303196, + 12.9666471770573 + ], + [ + 77.607606665183596, + 12.9664251768386 + ], + [ + 77.607460090971401, + 12.9663927681878 + ], + [ + 77.606869076243797, + 12.966265355408099 + ], + [ + 77.606844404437595, + 12.966260036584 + ], + [ + 77.606802494618805, + 12.96625089822 + ], + [ + 77.606797000496996, + 12.966225049306599 + ], + [ + 77.606796947892406, + 12.966225039896001 + ], + [ + 77.606793492963106, + 12.966025387361301 + ], + [ + 77.606792755082793, + 12.9659827584263 + ], + [ + 77.606739035314703, + 12.9628781882497 + ], + [ + 77.606436517464999, + 12.9606686855881 + ], + [ + 77.605986637649806, + 12.958114257200601 + ], + [ + 77.604605908775696, + 12.9586191673081 + ], + [ + 77.604204022715905, + 12.959012466058899 + ], + [ + 77.603783854949597, + 12.959269174526799 + ], + [ + 77.602502004737005, + 12.9597428294481 + ], + [ + 77.602442236617307, + 12.9597676994357 + ], + [ + 77.602441921108493, + 12.959767830877 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "33", + "group": "Shanthinagar", + "Corporatio": "Central", + "ac_no": "163", + "ac": "Shanthinagar", + "corporat_1": "1", + "ward_id": "26", + "ward_name": "26 - Shanthinagar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಾಂತಿನಗರ", + "ward_name_": "ಶಾಂತಿನಗರ", + "dig_ward_n": "Shanthinagar", + "Assembly": "163 - Shanthinagar", + "Slno": "26" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.598293753561094, + 12.9551032112077 + ], + [ + 77.596603648646493, + 12.9558867727172 + ], + [ + 77.595848830824593, + 12.956236714034899 + ], + [ + 77.594129175134896, + 12.956950545283499 + ], + [ + 77.592771703077602, + 12.957508459191899 + ], + [ + 77.5929544888035, + 12.958000262047401 + ], + [ + 77.593126456393307, + 12.958433339645 + ], + [ + 77.593136633347996, + 12.958458968136901 + ], + [ + 77.593373938899504, + 12.9590565878696 + ], + [ + 77.593507455797806, + 12.959392829252099 + ], + [ + 77.593733016321394, + 12.959960866682501 + ], + [ + 77.593792126582002, + 12.9601093445754 + ], + [ + 77.5939738288249, + 12.9605890153857 + ], + [ + 77.594007100903198, + 12.960676849175099 + ], + [ + 77.594057211727105, + 12.9608091331077 + ], + [ + 77.594205695560802, + 12.961201603479401 + ], + [ + 77.594205830241904, + 12.9612025109929 + ], + [ + 77.594300251361503, + 12.9614520897797 + ], + [ + 77.594516026203607, + 12.962022434953001 + ], + [ + 77.594535233844894, + 12.9620425707683 + ], + [ + 77.594543375095, + 12.9620503946675 + ], + [ + 77.594723762799802, + 12.9622349298287 + ], + [ + 77.594817389477996, + 12.9623309756136 + ], + [ + 77.594818642682398, + 12.9623317274251 + ], + [ + 77.594827900172703, + 12.9623361523025 + ], + [ + 77.594875708115197, + 12.962369084673201 + ], + [ + 77.594926127789407, + 12.9624038159309 + ], + [ + 77.594926477569402, + 12.9624040572743 + ], + [ + 77.5949456150353, + 12.9624174170833 + ], + [ + 77.594948957894204, + 12.962419723649299 + ], + [ + 77.595068208812407, + 12.962502004767 + ], + [ + 77.595182783692195, + 12.962581059299101 + ], + [ + 77.595198467178193, + 12.9625944535257 + ], + [ + 77.595684562503195, + 12.9629997632754 + ], + [ + 77.595725786388002, + 12.963034136139701 + ], + [ + 77.595950771472801, + 12.963244199061901 + ], + [ + 77.595985075521398, + 12.9632766063623 + ], + [ + 77.596262583880502, + 12.963610367146799 + ], + [ + 77.596377324195601, + 12.963793297052399 + ], + [ + 77.596486202575406, + 12.963966121734099 + ], + [ + 77.596623839527396, + 12.964191736106899 + ], + [ + 77.596775461478501, + 12.9645142639488 + ], + [ + 77.596861094892404, + 12.964696420608201 + ], + [ + 77.596887940819599, + 12.9647698710538 + ], + [ + 77.596902415226893, + 12.964809474057599 + ], + [ + 77.596908444096698, + 12.9648259693071 + ], + [ + 77.596916202271501, + 12.964847195743801 + ], + [ + 77.5969289280943, + 12.964845583498001 + ], + [ + 77.597023763205101, + 12.964860113756 + ], + [ + 77.597024574198599, + 12.9648602375634 + ], + [ + 77.597123638692494, + 12.964875416699099 + ], + [ + 77.597137458557597, + 12.9648776809967 + ], + [ + 77.597161732141601, + 12.9648816586653 + ], + [ + 77.598691031465606, + 12.9651322670663 + ], + [ + 77.601053494180803, + 12.9654392118315 + ], + [ + 77.6023811610293, + 12.965611699218799 + ], + [ + 77.602636933204806, + 12.9656407645755 + ], + [ + 77.602633379613096, + 12.9652178871546 + ], + [ + 77.602551647002301, + 12.9645142759835 + ], + [ + 77.602181841595296, + 12.9630204818551 + ], + [ + 77.603016445459303, + 12.962866408730401 + ], + [ + 77.603030450730202, + 12.962863836619199 + ], + [ + 77.602951713996205, + 12.9625660098586 + ], + [ + 77.6029434074498, + 12.9625385593234 + ], + [ + 77.602900217710598, + 12.962370511784201 + ], + [ + 77.602860690151701, + 12.962233239027301 + ], + [ + 77.602752000280603, + 12.9619050488886 + ], + [ + 77.602709000143406, + 12.961749049128599 + ], + [ + 77.602668539975994, + 12.9615971517222 + ], + [ + 77.602623956148307, + 12.961429774608799 + ], + [ + 77.602639598398696, + 12.961387115223401 + ], + [ + 77.602669803928805, + 12.961353356101601 + ], + [ + 77.602730214988895, + 12.9613249273674 + ], + [ + 77.602858144292696, + 12.961301829020901 + ], + [ + 77.602897233802196, + 12.961282284266099 + ], + [ + 77.602926442290496, + 12.961246053012101 + ], + [ + 77.602932000221401, + 12.961245048829699 + ], + [ + 77.602905037668705, + 12.9611642943751 + ], + [ + 77.602727000076399, + 12.9606310491518 + ], + [ + 77.6026339557028, + 12.960349445358201 + ], + [ + 77.602619118050001, + 12.9603045387612 + ], + [ + 77.602614000333006, + 12.960289049129599 + ], + [ + 77.602604424685893, + 12.9602600426837 + ], + [ + 77.602602420747203, + 12.9602539745058 + ], + [ + 77.602461225162401, + 12.959826281334999 + ], + [ + 77.602460431945403, + 12.9598238780105 + ], + [ + 77.602451002833106, + 12.9597953172846 + ], + [ + 77.602442000748994, + 12.959768048710901 + ], + [ + 77.602441921108493, + 12.959767830877 + ], + [ + 77.602442236617307, + 12.9597676994357 + ], + [ + 77.602502004737005, + 12.9597428294481 + ], + [ + 77.603783854949597, + 12.959269174526799 + ], + [ + 77.604204022715905, + 12.959012466058899 + ], + [ + 77.604605908775696, + 12.9586191673081 + ], + [ + 77.605986637649806, + 12.958114257200601 + ], + [ + 77.605945854184398, + 12.957856889573 + ], + [ + 77.605564508016002, + 12.9558773972896 + ], + [ + 77.605554523945798, + 12.955817185562299 + ], + [ + 77.605370668390506, + 12.954654453040099 + ], + [ + 77.605368862519398, + 12.9546392646008 + ], + [ + 77.605190239723896, + 12.9531373688824 + ], + [ + 77.605181481561402, + 12.9529570978086 + ], + [ + 77.605173998598502, + 12.9528030784519 + ], + [ + 77.605119561257297, + 12.952718128093499 + ], + [ + 77.605029852537896, + 12.9526704952505 + ], + [ + 77.604913099716498, + 12.952627084837101 + ], + [ + 77.604163645070301, + 12.9521797589399 + ], + [ + 77.603764390822505, + 12.9514310259271 + ], + [ + 77.602865816374006, + 12.9518986559582 + ], + [ + 77.602866139874195, + 12.951900801985699 + ], + [ + 77.603162864787294, + 12.9524214031804 + ], + [ + 77.602246355880695, + 12.9528187937323 + ], + [ + 77.602024357748505, + 12.952924223307001 + ], + [ + 77.601739833290296, + 12.953014994926701 + ], + [ + 77.600504778141101, + 12.9534821503247 + ], + [ + 77.600689564913296, + 12.954191091883301 + ], + [ + 77.599184618797494, + 12.954667273180901 + ], + [ + 77.599098444196997, + 12.9546930367213 + ], + [ + 77.598293753561094, + 12.9551032112077 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "36", + "group": "Domlur", + "Corporatio": "Central", + "ac_no": "163", + "ac": "Shanthinagar", + "corporat_1": "1", + "ward_id": "32", + "ward_name": "32 - Domluru", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಾಂತಿನಗರ", + "ward_name_": "ದೊಮ್ಮಲೂರು", + "dig_ward_n": "Domlur", + "Assembly": "163 - Shanthinagar", + "Slno": "32" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.636185374796597, + 12.956866292724101 + ], + [ + 77.636178666237896, + 12.956886674684901 + ], + [ + 77.636158686071397, + 12.9569473809408 + ], + [ + 77.636138868379007, + 12.957007596807999 + ], + [ + 77.636118272593194, + 12.957065386771699 + ], + [ + 77.636087955074103, + 12.9571504542032 + ], + [ + 77.636084059573605, + 12.957161383327399 + ], + [ + 77.636073925407203, + 12.9571898195268 + ], + [ + 77.636067151698597, + 12.9572088262564 + ], + [ + 77.636010168730905, + 12.9573687138219 + ], + [ + 77.636000889878105, + 12.9573947500397 + ], + [ + 77.635945391128701, + 12.9575504714159 + ], + [ + 77.635917595239803, + 12.957656513041201 + ], + [ + 77.635915342366999, + 12.957665106485299 + ], + [ + 77.635842997535903, + 12.957941102943201 + ], + [ + 77.635793357632394, + 12.958049369490499 + ], + [ + 77.635759019027205, + 12.958124263696901 + ], + [ + 77.635747788619099, + 12.958148756776099 + ], + [ + 77.635742282367005, + 12.958160765519599 + ], + [ + 77.635712432473099, + 12.9582258692129 + ], + [ + 77.635635287259703, + 12.9583858055133 + ], + [ + 77.635558623389002, + 12.958544748605201 + ], + [ + 77.635547958649695, + 12.958570829568 + ], + [ + 77.635483353448194, + 12.958722804543999 + ], + [ + 77.6354654542953, + 12.958779351215099 + ], + [ + 77.635454667369103, + 12.9588134285796 + ], + [ + 77.635447785117293, + 12.958835169217499 + ], + [ + 77.635348516763003, + 12.9591487716032 + ], + [ + 77.635269758492598, + 12.9594330133616 + ], + [ + 77.635242092369595, + 12.959532163381301 + ], + [ + 77.635237551166796, + 12.9595484372831 + ], + [ + 77.635193678387395, + 12.959705668898 + ], + [ + 77.635172117503899, + 12.9597829434079 + ], + [ + 77.635129915571596, + 12.9599360593448 + ], + [ + 77.635115943437398, + 12.959983801392299 + ], + [ + 77.635109674002507, + 12.9600052214409 + ], + [ + 77.635081897005094, + 12.9600836917535 + ], + [ + 77.635074879404002, + 12.9601035167289 + ], + [ + 77.635062446315203, + 12.9601386415483 + ], + [ + 77.635005429978605, + 12.9603007030424 + ], + [ + 77.6348621602246, + 12.9607065516473 + ], + [ + 77.634853888225095, + 12.9607299848875 + ], + [ + 77.634711374785098, + 12.961133686559601 + ], + [ + 77.634720561354499, + 12.9611313350457 + ], + [ + 77.634716170077397, + 12.9611517061967 + ], + [ + 77.634686220061099, + 12.961277620630501 + ], + [ + 77.634562088173396, + 12.961288791763801 + ], + [ + 77.634551450563094, + 12.961301273431401 + ], + [ + 77.634354225344296, + 12.9615763782817 + ], + [ + 77.634310523768505, + 12.9616276536282 + ], + [ + 77.634560497269405, + 12.961631936945899 + ], + [ + 77.634538000368195, + 12.961690052403 + ], + [ + 77.634374999975904, + 12.961713052555201 + ], + [ + 77.634271431354094, + 12.9617130528678 + ], + [ + 77.634340024150703, + 12.962189283038899 + ], + [ + 77.634337358956898, + 12.9623340919036 + ], + [ + 77.634324032987706, + 12.9627596345185 + ], + [ + 77.634176000287297, + 12.9630760526118 + ], + [ + 77.634182000366295, + 12.9632970524796 + ], + [ + 77.634110999984003, + 12.963288052265799 + ], + [ + 77.634105000086805, + 12.9633480523872 + ], + [ + 77.634093000292296, + 12.963468052630599 + ], + [ + 77.634085000227799, + 12.9635530522616 + ], + [ + 77.634067000811996, + 12.963729052329899 + ], + [ + 77.634061548955998, + 12.963775393682401 + ], + [ + 77.634053000820401, + 12.963848051969 + ], + [ + 77.634082000394997, + 12.964117052054201 + ], + [ + 77.634175000481207, + 12.9643560525003 + ], + [ + 77.634275000581596, + 12.9644800521283 + ], + [ + 77.634053000056795, + 12.9644820527806 + ], + [ + 77.633690000313806, + 12.9645820520944 + ], + [ + 77.633686703946694, + 12.964620783901299 + ], + [ + 77.633686000612997, + 12.9646290526986 + ], + [ + 77.633680045282006, + 12.9647342635008 + ], + [ + 77.633671000867594, + 12.964894052523 + ], + [ + 77.633651000381406, + 12.9650130523827 + ], + [ + 77.633645000678897, + 12.965043052094201 + ], + [ + 77.633630442876097, + 12.9650430521818 + ], + [ + 77.633627999998296, + 12.9650430525146 + ], + [ + 77.633595000832699, + 12.9650430522428 + ], + [ + 77.633592135112494, + 12.9651089668954 + ], + [ + 77.6335880002609, + 12.965204051931799 + ], + [ + 77.633579000737598, + 12.965353051990499 + ], + [ + 77.633578000272493, + 12.965374051930601 + ], + [ + 77.633579000069602, + 12.9654410522039 + ], + [ + 77.633821000300898, + 12.9654430520206 + ], + [ + 77.633829628664699, + 12.965444186994601 + ], + [ + 77.6338970007791, + 12.9654530522545 + ], + [ + 77.633898222342395, + 12.9654426479732 + ], + [ + 77.633919614425395, + 12.9654443358165 + ], + [ + 77.633939854131199, + 12.9654459341413 + ], + [ + 77.634360242387501, + 12.965479129148701 + ], + [ + 77.634555198208602, + 12.965477155274201 + ], + [ + 77.634895490821904, + 12.965390049407 + ], + [ + 77.635058760551701, + 12.9652129325004 + ], + [ + 77.635644200340806, + 12.964567596231401 + ], + [ + 77.635910836284296, + 12.9647968773809 + ], + [ + 77.635324108398905, + 12.965446721987099 + ], + [ + 77.635701049799806, + 12.965740209618099 + ], + [ + 77.635318705539703, + 12.966234310410099 + ], + [ + 77.635210930796902, + 12.966414672526501 + ], + [ + 77.635104287500099, + 12.9667025856715 + ], + [ + 77.635022139114895, + 12.9670022019183 + ], + [ + 77.635003231224701, + 12.9670154702532 + ], + [ + 77.635026192821698, + 12.9670278935462 + ], + [ + 77.634505360740206, + 12.9688074572167 + ], + [ + 77.635065931585402, + 12.969277041333401 + ], + [ + 77.635469527019495, + 12.9686248844134 + ], + [ + 77.635746219282794, + 12.968939996910001 + ], + [ + 77.635741014013703, + 12.9690092572058 + ], + [ + 77.636013765875902, + 12.9690326123958 + ], + [ + 77.636206988556197, + 12.968424361257201 + ], + [ + 77.6362191777405, + 12.9684246641449 + ], + [ + 77.636219047345506, + 12.968412287880099 + ], + [ + 77.636374429229406, + 12.9681238804936 + ], + [ + 77.636565861120502, + 12.9677873021213 + ], + [ + 77.636804520982295, + 12.9673068300484 + ], + [ + 77.637007758660999, + 12.9669342783861 + ], + [ + 77.637344650333603, + 12.9665245174885 + ], + [ + 77.637909902340297, + 12.965813658481601 + ], + [ + 77.6379139132505, + 12.965844355321799 + ], + [ + 77.637922087809699, + 12.965813534941899 + ], + [ + 77.638500403088003, + 12.965186201802 + ], + [ + 77.638910901984005, + 12.9648234988612 + ], + [ + 77.639637319144498, + 12.9643739320616 + ], + [ + 77.640073067042906, + 12.964094630625899 + ], + [ + 77.640473520315396, + 12.963935200907599 + ], + [ + 77.640958130998598, + 12.9636673545373 + ], + [ + 77.641322029587101, + 12.9635082937946 + ], + [ + 77.641556012932796, + 12.9634750467924 + ], + [ + 77.641574878981302, + 12.963472366411599 + ], + [ + 77.641606972044102, + 12.9634678063883 + ], + [ + 77.641619054920994, + 12.963468187837 + ], + [ + 77.641626156438605, + 12.9633740542066 + ], + [ + 77.641636813572404, + 12.9632327900223 + ], + [ + 77.641666390887707, + 12.9626531818336 + ], + [ + 77.641673512308301, + 12.962509694125901 + ], + [ + 77.641673865480996, + 12.962502746976099 + ], + [ + 77.641674951224104, + 12.9624814228426 + ], + [ + 77.641704506930196, + 12.961900710915 + ], + [ + 77.641704364865802, + 12.9618147959022 + ], + [ + 77.641704215500496, + 12.9617247840247 + ], + [ + 77.641704082714796, + 12.9616444609892 + ], + [ + 77.641702688149905, + 12.960800834661599 + ], + [ + 77.641675898186904, + 12.960604327024701 + ], + [ + 77.641670864282005, + 12.9605674026771 + ], + [ + 77.641892708870998, + 12.960553433045799 + ], + [ + 77.642195759197406, + 12.9605343504712 + ], + [ + 77.642223544867804, + 12.9605326003885 + ], + [ + 77.642333633565897, + 12.960525667642701 + ], + [ + 77.642411297430201, + 12.960520362212501 + ], + [ + 77.642417678889601, + 12.960505254852 + ], + [ + 77.642437710255194, + 12.960457833289199 + ], + [ + 77.642450138879198, + 12.960428411536601 + ], + [ + 77.642460162651602, + 12.960404682153101 + ], + [ + 77.642465669696605, + 12.9603794257965 + ], + [ + 77.642499150236603, + 12.960225864101499 + ], + [ + 77.642589964517001, + 12.959939240711501 + ], + [ + 77.642662009770206, + 12.9597229490375 + ], + [ + 77.642693756160497, + 12.959627641972199 + ], + [ + 77.642850668417793, + 12.959221775801399 + ], + [ + 77.642854410511703, + 12.9592036715439 + ], + [ + 77.642854880228896, + 12.9592013974252 + ], + [ + 77.642863948847406, + 12.9591575191887 + ], + [ + 77.642956379618298, + 12.958710279523901 + ], + [ + 77.642961347579302, + 12.958693035509301 + ], + [ + 77.642978885993102, + 12.9586321532457 + ], + [ + 77.643060785543895, + 12.958347858104901 + ], + [ + 77.643130214583607, + 12.958271493163799 + ], + [ + 77.643256062897706, + 12.9582109322743 + ], + [ + 77.643259664585699, + 12.9582091991137 + ], + [ + 77.643444704326996, + 12.9580684229276 + ], + [ + 77.643635324115493, + 12.957969194411101 + ], + [ + 77.643754453845602, + 12.9579071811254 + ], + [ + 77.643631778827299, + 12.957901841953801 + ], + [ + 77.643312692874403, + 12.957887952488299 + ], + [ + 77.643575092222804, + 12.9572224169082 + ], + [ + 77.643622848872397, + 12.956976674271599 + ], + [ + 77.643656451407196, + 12.956803765892699 + ], + [ + 77.643737643599096, + 12.9563693079337 + ], + [ + 77.643662456578596, + 12.9560561414304 + ], + [ + 77.643328173310707, + 12.954663774112801 + ], + [ + 77.643216486738098, + 12.9546637559778 + ], + [ + 77.642233211013505, + 12.954663594202399 + ], + [ + 77.641450523711995, + 12.954692213712899 + ], + [ + 77.6412928971138, + 12.954697977292 + ], + [ + 77.641261616886695, + 12.9542974086262 + ], + [ + 77.641100481591806, + 12.953920742059999 + ], + [ + 77.6408634823825, + 12.953467624248599 + ], + [ + 77.640806574862296, + 12.9533588233303 + ], + [ + 77.640788810825995, + 12.953324859258901 + ], + [ + 77.640772640170397, + 12.9532939415723 + ], + [ + 77.640769009498698, + 12.953204667736101 + ], + [ + 77.640664324902602, + 12.9530065744047 + ], + [ + 77.640418203820602, + 12.9525408401416 + ], + [ + 77.640203314785097, + 12.9523240719424 + ], + [ + 77.640122612674304, + 12.9522426638379 + ], + [ + 77.640122940264206, + 12.9521872166951 + ], + [ + 77.640123925863605, + 12.952020355778901 + ], + [ + 77.639771490475297, + 12.9514982008566 + ], + [ + 77.639759642318495, + 12.951510951458101 + ], + [ + 77.639739157861001, + 12.951533743315901 + ], + [ + 77.639695816021103, + 12.951572578241899 + ], + [ + 77.639698154196196, + 12.951575942318 + ], + [ + 77.639395872559405, + 12.9519539193236 + ], + [ + 77.638872102103406, + 12.952607774124999 + ], + [ + 77.638848495297495, + 12.952637243941499 + ], + [ + 77.638661872602498, + 12.9528702153948 + ], + [ + 77.638639766740994, + 12.952897810782501 + ], + [ + 77.638342866878006, + 12.9532684466094 + ], + [ + 77.638088978050206, + 12.953585387988699 + ], + [ + 77.638042371164502, + 12.953642323059199 + ], + [ + 77.638000048254199, + 12.953696716808601 + ], + [ + 77.637943491689896, + 12.953765820369799 + ], + [ + 77.637934393152605, + 12.953775540144701 + ], + [ + 77.637715884605498, + 12.954018285653101 + ], + [ + 77.637704164555899, + 12.9540315886908 + ], + [ + 77.637670262343704, + 12.9540700712279 + ], + [ + 77.637652664971895, + 12.9540900458327 + ], + [ + 77.637633777807906, + 12.954111484372699 + ], + [ + 77.637404700394001, + 12.954371507837401 + ], + [ + 77.636886474789804, + 12.9549665980967 + ], + [ + 77.636667702518295, + 12.9552178188134 + ], + [ + 77.636610769293696, + 12.9554170255175 + ], + [ + 77.636375746875402, + 12.9563219959636 + ], + [ + 77.636346408180898, + 12.9563787560345 + ], + [ + 77.636300115300799, + 12.956520382279701 + ], + [ + 77.636274009737505, + 12.956598936855899 + ], + [ + 77.636262025225193, + 12.9566349993906 + ], + [ + 77.636207483726594, + 12.9567991181935 + ], + [ + 77.636194490613804, + 12.956838596789201 + ], + [ + 77.636185374796597, + 12.956866292724101 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "37", + "group": "Jogpalya", + "Corporatio": "Central", + "ac_no": "163", + "ac": "Shanthinagar", + "corporat_1": "1", + "ward_id": "31", + "ward_name": "31 - Jogpalya", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಾಂತಿನಗರ", + "ward_name_": "ಜೋಗಪಾಳ್ಯ", + "dig_ward_n": "Jogpalya", + "Assembly": "163 - Shanthinagar", + "Slno": "31" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.635318705539703, + 12.966234310410099 + ], + [ + 77.635701049799806, + 12.965740209618099 + ], + [ + 77.635324108398905, + 12.965446721987099 + ], + [ + 77.635910836284296, + 12.9647968773809 + ], + [ + 77.635644200340806, + 12.964567596231401 + ], + [ + 77.635058760551701, + 12.9652129325004 + ], + [ + 77.634895490821904, + 12.965390049407 + ], + [ + 77.634555198208602, + 12.965477155274201 + ], + [ + 77.634360242387501, + 12.965479129148701 + ], + [ + 77.633939854131199, + 12.9654459341413 + ], + [ + 77.633919614425395, + 12.9654443358165 + ], + [ + 77.633898222342395, + 12.9654426479732 + ], + [ + 77.6338970007791, + 12.9654530522545 + ], + [ + 77.633648000317294, + 12.9659380519655 + ], + [ + 77.633592394926694, + 12.9661391888369 + ], + [ + 77.633583993286095, + 12.966169579647399 + ], + [ + 77.633557532738394, + 12.9662652953867 + ], + [ + 77.633548958938505, + 12.966296308582301 + ], + [ + 77.633460855150602, + 12.9666150008019 + ], + [ + 77.633439000885701, + 12.966694052606799 + ], + [ + 77.633379966903604, + 12.967020555084501 + ], + [ + 77.633361930317093, + 12.967120307821199 + ], + [ + 77.633343558632603, + 12.9672219186501 + ], + [ + 77.633309000136293, + 12.967413052258699 + ], + [ + 77.633238000704296, + 12.967794052082599 + ], + [ + 77.633153300156707, + 12.968244845277599 + ], + [ + 77.633148000026097, + 12.9682730518751 + ], + [ + 77.633138000001694, + 12.968384052033 + ], + [ + 77.633126007733594, + 12.968418219307299 + ], + [ + 77.633120463726399, + 12.9683352800911 + ], + [ + 77.633098554140204, + 12.968441652474199 + ], + [ + 77.632347757106302, + 12.968327290337699 + ], + [ + 77.6313617214348, + 12.968180298234399 + ], + [ + 77.631345475060698, + 12.9681782076491 + ], + [ + 77.631249708816, + 12.968165885299801 + ], + [ + 77.630718918396894, + 12.968097587397899 + ], + [ + 77.630275863976607, + 12.9680670600999 + ], + [ + 77.629755037369407, + 12.968031671872099 + ], + [ + 77.6291703105599, + 12.968106467090999 + ], + [ + 77.628946062361095, + 12.968133577148301 + ], + [ + 77.628959000097197, + 12.968239051688499 + ], + [ + 77.628968301780603, + 12.9683134666166 + ], + [ + 77.6289840006324, + 12.968439052113901 + ], + [ + 77.628998000540506, + 12.9684860515873 + ], + [ + 77.629044000029097, + 12.968809051648799 + ], + [ + 77.629038000837696, + 12.9689820515708 + ], + [ + 77.629007821842293, + 12.9690927056606 + ], + [ + 77.6289810001159, + 12.969191052063101 + ], + [ + 77.628964283075206, + 12.9692194815518 + ], + [ + 77.628955478392697, + 12.9692344551543 + ], + [ + 77.628947143409803, + 12.9692486308137 + ], + [ + 77.628935727830395, + 12.9692680457779 + ], + [ + 77.628916694904206, + 12.9693004140588 + ], + [ + 77.628824429811004, + 12.9694573242374 + ], + [ + 77.628817496654506, + 12.969469116078001 + ], + [ + 77.6287749311238, + 12.9695415066438 + ], + [ + 77.628752107132598, + 12.9695803220387 + ], + [ + 77.628677000600604, + 12.9697080520324 + ], + [ + 77.628503632754303, + 12.9700102355811 + ], + [ + 77.628497994208502, + 12.9700200485105 + ], + [ + 77.628494509517097, + 12.970026106774601 + ], + [ + 77.628372522608799, + 12.970237659297 + ], + [ + 77.628311969320606, + 12.9703426821729 + ], + [ + 77.628303241823602, + 12.970357819407599 + ], + [ + 77.628301554477702, + 12.970360735508599 + ], + [ + 77.628292046215293, + 12.970377224910299 + ], + [ + 77.628289551991799, + 12.970381550357301 + ], + [ + 77.628288523361604, + 12.9703833341501 + ], + [ + 77.628286988107703, + 12.970385996661999 + ], + [ + 77.628276000680799, + 12.970405051343599 + ], + [ + 77.628268421195102, + 12.9704174053079 + ], + [ + 77.628267547231104, + 12.9704188297864 + ], + [ + 77.628266211377806, + 12.9704210069577 + ], + [ + 77.628265878990803, + 12.970421547846801 + ], + [ + 77.628248218577099, + 12.9704503328563 + ], + [ + 77.628237923919798, + 12.9704671129715 + ], + [ + 77.628237346106999, + 12.9704680547454 + ], + [ + 77.628229988494198, + 12.970480046005701 + ], + [ + 77.628204720503106, + 12.970521230432 + ], + [ + 77.628093882690493, + 12.9707018855577 + ], + [ + 77.628092414616205, + 12.9707042790768 + ], + [ + 77.628098771906096, + 12.970708252193999 + ], + [ + 77.6281231140063, + 12.9707204543627 + ], + [ + 77.628133008830503, + 12.970725414398199 + ], + [ + 77.628149873092994, + 12.9707338679753 + ], + [ + 77.628186663136603, + 12.970752309805 + ], + [ + 77.628415858335003, + 12.9708671998476 + ], + [ + 77.6288423097227, + 12.9710923576485 + ], + [ + 77.629479685318103, + 12.971542011889801 + ], + [ + 77.629401506299104, + 12.9715828781952 + ], + [ + 77.6295387055318, + 12.9719565756051 + ], + [ + 77.629785294210507, + 12.972450842985699 + ], + [ + 77.629867732279394, + 12.9725834197891 + ], + [ + 77.629965627601706, + 12.9727676175665 + ], + [ + 77.630212135072099, + 12.972687645223299 + ], + [ + 77.6305034098867, + 12.972573551656801 + ], + [ + 77.630864968613395, + 12.9724220927441 + ], + [ + 77.630917372883005, + 12.972804328723701 + ], + [ + 77.631059256861306, + 12.9733592298827 + ], + [ + 77.631112560737904, + 12.9733716674539 + ], + [ + 77.631339572799405, + 12.9733199419423 + ], + [ + 77.631811039312893, + 12.9732730928874 + ], + [ + 77.631821652170899, + 12.973272038709201 + ], + [ + 77.632230809117999, + 12.973242799992899 + ], + [ + 77.632680366085907, + 12.973231078921099 + ], + [ + 77.632973186185296, + 12.9732639679958 + ], + [ + 77.633146380998397, + 12.973333144672999 + ], + [ + 77.633054141708797, + 12.9736566481346 + ], + [ + 77.633053829014102, + 12.973657746232799 + ], + [ + 77.633021094956405, + 12.9737725522797 + ], + [ + 77.6332261285025, + 12.974150018255701 + ], + [ + 77.633302324285907, + 12.974290294121101 + ], + [ + 77.633392180117994, + 12.974469389318299 + ], + [ + 77.633409051907194, + 12.9745030158894 + ], + [ + 77.633506388313194, + 12.974697020102401 + ], + [ + 77.633527600212702, + 12.974743104980099 + ], + [ + 77.633528064857899, + 12.9747871414594 + ], + [ + 77.6335159598855, + 12.9749498776641 + ], + [ + 77.633504781275704, + 12.975091148525401 + ], + [ + 77.633446212831402, + 12.9755434461769 + ], + [ + 77.633404503490695, + 12.975901844409799 + ], + [ + 77.633440414476397, + 12.9758845580363 + ], + [ + 77.633548286729194, + 12.9758326333383 + ], + [ + 77.633682916603405, + 12.9757691603191 + ], + [ + 77.634017296321304, + 12.9757025345009 + ], + [ + 77.634651912383205, + 12.9755526887341 + ], + [ + 77.634869007494302, + 12.9755019306838 + ], + [ + 77.6352004831366, + 12.9754330743694 + ], + [ + 77.635230358929604, + 12.975427125283399 + ], + [ + 77.635425990860298, + 12.975386749476201 + ], + [ + 77.635426244546693, + 12.9753866963141 + ], + [ + 77.635572959266696, + 12.975356418527999 + ], + [ + 77.635573010742704, + 12.9753564080687 + ], + [ + 77.635581373487099, + 12.975354682714 + ], + [ + 77.635631804150805, + 12.975660200824301 + ], + [ + 77.635685879507903, + 12.9759837500991 + ], + [ + 77.635704340598707, + 12.975983625291899 + ], + [ + 77.635704886822495, + 12.9759836215615 + ], + [ + 77.636229213253202, + 12.9759800828539 + ], + [ + 77.636255775657503, + 12.9759799101962 + ], + [ + 77.636351963617798, + 12.975979262838599 + ], + [ + 77.637011140021798, + 12.975974833088801 + ], + [ + 77.637020493996999, + 12.9759747707415 + ], + [ + 77.6370210107265, + 12.9759747655007 + ], + [ + 77.637330082255801, + 12.9759726894371 + ], + [ + 77.637339864543094, + 12.975972623637199 + ], + [ + 77.637490128619305, + 12.9759722286556 + ], + [ + 77.637650814444697, + 12.9759773741507 + ], + [ + 77.637990044003303, + 12.9759886129106 + ], + [ + 77.638318335613803, + 12.9759999622111 + ], + [ + 77.638639143353203, + 12.9760113870403 + ], + [ + 77.638992787658097, + 12.9760233445485 + ], + [ + 77.638992914825096, + 12.976023348678201 + ], + [ + 77.638995198322604, + 12.976023424875599 + ], + [ + 77.639000227019494, + 12.9760235951693 + ], + [ + 77.639024450831997, + 12.9760244153175 + ], + [ + 77.639496733289107, + 12.9760410771009 + ], + [ + 77.639654540572593, + 12.976046251463799 + ], + [ + 77.639889818240604, + 12.976056729912999 + ], + [ + 77.640239247756199, + 12.976071898537899 + ], + [ + 77.640366483629805, + 12.9760774163282 + ], + [ + 77.640802976362707, + 12.9760956804227 + ], + [ + 77.640952845327803, + 12.976101950941599 + ], + [ + 77.6409549527026, + 12.976060405475801 + ], + [ + 77.640978042601404, + 12.975605230252199 + ], + [ + 77.640986202415803, + 12.9754443866327 + ], + [ + 77.641038847188398, + 12.974159888089501 + ], + [ + 77.641045424532393, + 12.974078427295501 + ], + [ + 77.641048235007901, + 12.9740436185999 + ], + [ + 77.641064305979796, + 12.9738445673695 + ], + [ + 77.641097124290695, + 12.9734381973169 + ], + [ + 77.641102094747495, + 12.9733766783235 + ], + [ + 77.641129463759995, + 12.9730377729175 + ], + [ + 77.641139150754, + 12.972917818119001 + ], + [ + 77.641144321427603, + 12.972698690130001 + ], + [ + 77.641146294639, + 12.9726117192593 + ], + [ + 77.641159642869098, + 12.9720232400093 + ], + [ + 77.641169167884499, + 12.971616611451401 + ], + [ + 77.641173928006296, + 12.971498437609 + ], + [ + 77.641196085557695, + 12.9709483322184 + ], + [ + 77.641203289328004, + 12.970769497981699 + ], + [ + 77.641213243115999, + 12.9705223782193 + ], + [ + 77.641225274836501, + 12.970223670146501 + ], + [ + 77.641226691887994, + 12.970194295123701 + ], + [ + 77.641226879575896, + 12.9701909578499 + ], + [ + 77.641227027642302, + 12.970188317503 + ], + [ + 77.641257133289201, + 12.9696526960839 + ], + [ + 77.641287277660297, + 12.9691163705224 + ], + [ + 77.641325518559995, + 12.968588372545399 + ], + [ + 77.641326973730102, + 12.9685682787101 + ], + [ + 77.641328417019807, + 12.9685479320423 + ], + [ + 77.641361052778706, + 12.968087999246499 + ], + [ + 77.641391593325096, + 12.967474864060801 + ], + [ + 77.6413933568749, + 12.9674394787866 + ], + [ + 77.641415715847501, + 12.9669943252335 + ], + [ + 77.641426877090794, + 12.966822640109401 + ], + [ + 77.641428132523302, + 12.966803345105101 + ], + [ + 77.641441216788607, + 12.9666018687739 + ], + [ + 77.641462066393501, + 12.9662812747499 + ], + [ + 77.641462125804097, + 12.966280358094901 + ], + [ + 77.641475152602297, + 12.9660801543421 + ], + [ + 77.641489988429299, + 12.965849045739199 + ], + [ + 77.641493288042199, + 12.9657976491968 + ], + [ + 77.641493940721105, + 12.965787486501 + ], + [ + 77.641542242127699, + 12.964641158029901 + ], + [ + 77.641544820382904, + 12.9645799741023 + ], + [ + 77.641557014725606, + 12.964290582995 + ], + [ + 77.641619268265998, + 12.963466059057801 + ], + [ + 77.641622631869296, + 12.9634215078647 + ], + [ + 77.641626214473405, + 12.9633740545209 + ], + [ + 77.641636813572404, + 12.9632327900223 + ], + [ + 77.641626156438605, + 12.9633740542066 + ], + [ + 77.641619054920994, + 12.963468187837 + ], + [ + 77.641606972044102, + 12.9634678063883 + ], + [ + 77.641574878981302, + 12.963472366411599 + ], + [ + 77.641556012932796, + 12.9634750467924 + ], + [ + 77.641322029587101, + 12.9635082937946 + ], + [ + 77.640958130998598, + 12.9636673545373 + ], + [ + 77.640473520315396, + 12.963935200907599 + ], + [ + 77.640073067042906, + 12.964094630625899 + ], + [ + 77.639637319144498, + 12.9643739320616 + ], + [ + 77.638910901984005, + 12.9648234988612 + ], + [ + 77.638500403088003, + 12.965186201802 + ], + [ + 77.637922087809699, + 12.965813534941899 + ], + [ + 77.6379139132505, + 12.965844355321799 + ], + [ + 77.637909902340297, + 12.965813658481601 + ], + [ + 77.637344650333603, + 12.9665245174885 + ], + [ + 77.637007758660999, + 12.9669342783861 + ], + [ + 77.636804520982295, + 12.9673068300484 + ], + [ + 77.636565861120502, + 12.9677873021213 + ], + [ + 77.636374429229406, + 12.9681238804936 + ], + [ + 77.636219047345506, + 12.968412287880099 + ], + [ + 77.6362191777405, + 12.9684246641449 + ], + [ + 77.636206988556197, + 12.968424361257201 + ], + [ + 77.636013765875902, + 12.9690326123958 + ], + [ + 77.635741014013703, + 12.9690092572058 + ], + [ + 77.635746219282794, + 12.968939996910001 + ], + [ + 77.635469527019495, + 12.9686248844134 + ], + [ + 77.635065931585402, + 12.969277041333401 + ], + [ + 77.634505360740206, + 12.9688074572167 + ], + [ + 77.635026192821698, + 12.9670278935462 + ], + [ + 77.635003231224701, + 12.9670154702532 + ], + [ + 77.635022139114895, + 12.9670022019183 + ], + [ + 77.635104287500099, + 12.9667025856715 + ], + [ + 77.635210930796902, + 12.966414672526501 + ], + [ + 77.635318705539703, + 12.966234310410099 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "38", + "group": "Vinayaknagar", + "Corporatio": "Central", + "ac_no": "163", + "ac": "Shanthinagar", + "corporat_1": "1", + "ward_id": "27", + "ward_name": "27 - Vinayakanagar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಾಂತಿನಗರ", + "ward_name_": "ವಿನಾಯಕನಗರ", + "dig_ward_n": "Vinayaknagar", + "Assembly": "163 - Shanthinagar", + "Slno": "27" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.600635192498302, + 12.949800961969601 + ], + [ + 77.600628850392596, + 12.949799606896899 + ], + [ + 77.600604098049402, + 12.9497998531023 + ], + [ + 77.600548558608097, + 12.9497505878106 + ], + [ + 77.600545123474106, + 12.9497475404974 + ], + [ + 77.600536115895807, + 12.9497395501252 + ], + [ + 77.600483051961803, + 12.949729916243101 + ], + [ + 77.600277326838295, + 12.949765848550699 + ], + [ + 77.600236549512502, + 12.9497752899037 + ], + [ + 77.600142319451294, + 12.949848505035201 + ], + [ + 77.600132906471302, + 12.949855772241101 + ], + [ + 77.600107557836907, + 12.949875340633501 + ], + [ + 77.600100944704806, + 12.949880445082201 + ], + [ + 77.6000936005413, + 12.949886114245 + ], + [ + 77.600025239623093, + 12.949938887560799 + ], + [ + 77.599879377879901, + 12.950029557310099 + ], + [ + 77.599831661317694, + 12.9500733169842 + ], + [ + 77.599650524168794, + 12.950239431992999 + ], + [ + 77.5996142020077, + 12.950272742659401 + ], + [ + 77.599584093748206, + 12.9502907883495 + ], + [ + 77.599411092416403, + 12.9503944743687 + ], + [ + 77.599213830983501, + 12.9505805171737 + ], + [ + 77.598996000268002, + 12.9507261106403 + ], + [ + 77.598900663257496, + 12.950859188915601 + ], + [ + 77.5988316481927, + 12.9509158180611 + ], + [ + 77.598818462228294, + 12.950926637230401 + ], + [ + 77.598796775324701, + 12.950944922260501 + ], + [ + 77.598795828216097, + 12.950945702338201 + ], + [ + 77.598597078382795, + 12.9511093735122 + ], + [ + 77.598583002325199, + 12.951120965857401 + ], + [ + 77.598369228093603, + 12.951297009342699 + ], + [ + 77.598337467550095, + 12.9513221136695 + ], + [ + 77.598092854582205, + 12.951515460914001 + ], + [ + 77.597985289776801, + 12.951579774162999 + ], + [ + 77.597869549585596, + 12.951678698144701 + ], + [ + 77.597823111960096, + 12.951718388392401 + ], + [ + 77.597795743878294, + 12.951741780220001 + ], + [ + 77.597700538521593, + 12.9518231534158 + ], + [ + 77.5975470449455, + 12.951949261412 + ], + [ + 77.597531913599298, + 12.951961693593301 + ], + [ + 77.597531062356893, + 12.951962392305999 + ], + [ + 77.597522436746701, + 12.951969479035901 + ], + [ + 77.597504770469797, + 12.9519808451488 + ], + [ + 77.597461816701099, + 12.952008479518801 + ], + [ + 77.597309115212298, + 12.9521059921604 + ], + [ + 77.597139308182193, + 12.952219485396199 + ], + [ + 77.597005460067805, + 12.952358593723901 + ], + [ + 77.596859876556806, + 12.952476362460301 + ], + [ + 77.596809199792801, + 12.952516960337199 + ], + [ + 77.596793930893298, + 12.9525291923935 + ], + [ + 77.596782796679705, + 12.952538112792899 + ], + [ + 77.596619520127007, + 12.952670738645301 + ], + [ + 77.5966113486555, + 12.952676855054699 + ], + [ + 77.596567534414007, + 12.9527096528893 + ], + [ + 77.596248089587505, + 12.9529386960916 + ], + [ + 77.595938594843801, + 12.953183449929201 + ], + [ + 77.595914352144106, + 12.953203941155399 + ], + [ + 77.595885808562699, + 12.953228064595001 + ], + [ + 77.595851207295695, + 12.953257311259801 + ], + [ + 77.595711452500296, + 12.9533754352122 + ], + [ + 77.5955777340303, + 12.9534716286008 + ], + [ + 77.595452027709896, + 12.953563224914101 + ], + [ + 77.595392924110797, + 12.9536083695436 + ], + [ + 77.595134447969301, + 12.9538058000511 + ], + [ + 77.594765457843593, + 12.954087283155101 + ], + [ + 77.594564994951597, + 12.9542428644809 + ], + [ + 77.594497548830006, + 12.9542898375175 + ], + [ + 77.594133125476702, + 12.9545678865874 + ], + [ + 77.594060122082695, + 12.9546233204661 + ], + [ + 77.593604177571194, + 12.954969537850101 + ], + [ + 77.592986336448405, + 12.9554481790165 + ], + [ + 77.592948520246296, + 12.955477474585701 + ], + [ + 77.592753754010104, + 12.955627351695799 + ], + [ + 77.592523879100199, + 12.955813617251501 + ], + [ + 77.592382653404101, + 12.9559280513883 + ], + [ + 77.592311245993898, + 12.955981839221399 + ], + [ + 77.592288636102793, + 12.955998702011099 + ], + [ + 77.5922457837856, + 12.9560306612871 + ], + [ + 77.592238935458397, + 12.956035768836401 + ], + [ + 77.592238316622201, + 12.956036230329399 + ], + [ + 77.592238016800295, + 12.956036453752899 + ], + [ + 77.592232977451701, + 12.9560402125304 + ], + [ + 77.592225552384406, + 12.956045932930699 + ], + [ + 77.592225655648605, + 12.956046209257799 + ], + [ + 77.592428071142095, + 12.956589366597299 + ], + [ + 77.592576059346499, + 12.9569857231998 + ], + [ + 77.592586533918507, + 12.9570137763068 + ], + [ + 77.592663739511806, + 12.957220554891 + ], + [ + 77.592771703077602, + 12.957508459191899 + ], + [ + 77.594129175134896, + 12.956950545283499 + ], + [ + 77.595848830824593, + 12.956236714034899 + ], + [ + 77.596603648646493, + 12.9558867727172 + ], + [ + 77.598293753561094, + 12.9551032112077 + ], + [ + 77.599098444196997, + 12.9546930367213 + ], + [ + 77.599184618797494, + 12.954667273180901 + ], + [ + 77.600689564913296, + 12.954191091883301 + ], + [ + 77.600504778141101, + 12.9534821503247 + ], + [ + 77.601739833290296, + 12.953014994926701 + ], + [ + 77.602024357748505, + 12.952924223307001 + ], + [ + 77.602246355880695, + 12.9528187937323 + ], + [ + 77.603162864787294, + 12.9524214031804 + ], + [ + 77.602866139874195, + 12.951900801985699 + ], + [ + 77.602865816374006, + 12.9518986559582 + ], + [ + 77.603764390822505, + 12.9514310259271 + ], + [ + 77.604163645070301, + 12.9521797589399 + ], + [ + 77.604913099716498, + 12.952627084837101 + ], + [ + 77.605029852537896, + 12.9526704952505 + ], + [ + 77.605119561257297, + 12.952718128093499 + ], + [ + 77.605173998598502, + 12.9528030784519 + ], + [ + 77.605181481561402, + 12.9529570978086 + ], + [ + 77.605190239723896, + 12.9531373688824 + ], + [ + 77.605368862519398, + 12.9546392646008 + ], + [ + 77.605370668390506, + 12.954654453040099 + ], + [ + 77.605554523945798, + 12.955817185562299 + ], + [ + 77.605564508016002, + 12.9558773972896 + ], + [ + 77.605945854184398, + 12.957856889573 + ], + [ + 77.605986637649806, + 12.958114257200601 + ], + [ + 77.606436517464999, + 12.9606686855881 + ], + [ + 77.606739035314703, + 12.9628781882497 + ], + [ + 77.606792755082793, + 12.9659827584263 + ], + [ + 77.606793492963106, + 12.966025387361301 + ], + [ + 77.606796947892406, + 12.966225039896001 + ], + [ + 77.606797000496996, + 12.966225049306599 + ], + [ + 77.606802494618805, + 12.96625089822 + ], + [ + 77.606844404437595, + 12.966260036584 + ], + [ + 77.606869076243797, + 12.966265355408099 + ], + [ + 77.607460090971401, + 12.9663927681878 + ], + [ + 77.607606665183596, + 12.9664251768386 + ], + [ + 77.608780015303196, + 12.9666471770573 + ], + [ + 77.608782829559502, + 12.9666425901542 + ], + [ + 77.608840272161203, + 12.966548956841001 + ], + [ + 77.609144590129901, + 12.966052907000099 + ], + [ + 77.609402151986899, + 12.965686695479601 + ], + [ + 77.609600309210506, + 12.9654505359001 + ], + [ + 77.609635634449106, + 12.9654084370581 + ], + [ + 77.609841728831299, + 12.965162817506799 + ], + [ + 77.609912614746094, + 12.9650593419471 + ], + [ + 77.610099339370194, + 12.9647883749352 + ], + [ + 77.610117920795204, + 12.964761410140101 + ], + [ + 77.610458538828397, + 12.9642995062718 + ], + [ + 77.610522147605906, + 12.9642130347096 + ], + [ + 77.610620894106702, + 12.9640787980191 + ], + [ + 77.610784898852302, + 12.9638588790197 + ], + [ + 77.611124443922606, + 12.963403571421599 + ], + [ + 77.611165136051497, + 12.963349005568 + ], + [ + 77.611230123697396, + 12.9632618614837 + ], + [ + 77.611258354494097, + 12.9632295572573 + ], + [ + 77.611265966337399, + 12.9632208477605 + ], + [ + 77.611559109976199, + 12.9628838191644 + ], + [ + 77.611567516917106, + 12.9628741539921 + ], + [ + 77.611806987842101, + 12.962598831944099 + ], + [ + 77.611983383038293, + 12.9623753913146 + ], + [ + 77.612019113881104, + 12.9623301307543 + ], + [ + 77.612341672802302, + 12.961921544373499 + ], + [ + 77.612417809432998, + 12.9618247914352 + ], + [ + 77.612467166661204, + 12.9617817357418 + ], + [ + 77.612474341580096, + 12.961775477080501 + ], + [ + 77.612475393286402, + 12.9617741294574 + ], + [ + 77.612458621285896, + 12.9614041604967 + ], + [ + 77.612394249116903, + 12.960930707334599 + ], + [ + 77.612364930027695, + 12.9606192518178 + ], + [ + 77.6123091314671, + 12.960204723010699 + ], + [ + 77.612303145267205, + 12.960160255143901 + ], + [ + 77.612285014050897, + 12.960022664999901 + ], + [ + 77.612226343660495, + 12.959586222576901 + ], + [ + 77.612193713167002, + 12.959279565738401 + ], + [ + 77.612186131358698, + 12.9592083174186 + ], + [ + 77.612184020228895, + 12.959188903248 + ], + [ + 77.612153017085305, + 12.958903744182599 + ], + [ + 77.612099903839194, + 12.958448048096701 + ], + [ + 77.612075312994406, + 12.958239445822301 + ], + [ + 77.612039270722505, + 12.9579337048468 + ], + [ + 77.611961200743096, + 12.9573001047085 + ], + [ + 77.611956980266399, + 12.957265851268 + ], + [ + 77.611950770320405, + 12.957215451917 + ], + [ + 77.611941155053103, + 12.9571374175608 + ], + [ + 77.611928693791299, + 12.956998115337599 + ], + [ + 77.611902958148306, + 12.956710427879001 + ], + [ + 77.611888368831501, + 12.9565473336352 + ], + [ + 77.611867888808703, + 12.9564052497847 + ], + [ + 77.611846059967803, + 12.9562512985268 + ], + [ + 77.611840546847006, + 12.9562124171531 + ], + [ + 77.611830641798804, + 12.9561458889811 + ], + [ + 77.611803609916095, + 12.9560087708153 + ], + [ + 77.611791469249098, + 12.955965980135 + ], + [ + 77.611674000828103, + 12.9556800501664 + ], + [ + 77.611622000793005, + 12.955556050040199 + ], + [ + 77.611559532888606, + 12.955406670182301 + ], + [ + 77.611553000436999, + 12.9553910495415 + ], + [ + 77.611484271034897, + 12.9552263173164 + ], + [ + 77.611464931418794, + 12.955179965038401 + ], + [ + 77.6113640000559, + 12.9549380500094 + ], + [ + 77.611340000128095, + 12.954812049757299 + ], + [ + 77.611328000705001, + 12.954639049554901 + ], + [ + 77.611331000276707, + 12.9546120495427 + ], + [ + 77.611354000629504, + 12.9545550495061 + ], + [ + 77.611525000388696, + 12.9543750492843 + ], + [ + 77.611992282586201, + 12.9541258578898 + ], + [ + 77.612417999995898, + 12.9540070500067 + ], + [ + 77.612516000075502, + 12.953834049573199 + ], + [ + 77.612562000496993, + 12.9536840497792 + ], + [ + 77.611871416212793, + 12.951992555659 + ], + [ + 77.611717488699497, + 12.951537213600901 + ], + [ + 77.611530714729497, + 12.950523481776999 + ], + [ + 77.611530714729398, + 12.949912280061101 + ], + [ + 77.611209978739396, + 12.9498459430993 + ], + [ + 77.611530714729398, + 12.949912280061101 + ], + [ + 77.611209978739396, + 12.9498459430993 + ], + [ + 77.611173912041707, + 12.9495483928435 + ], + [ + 77.611149393775506, + 12.9494040402266 + ], + [ + 77.609750251073706, + 12.9494969415329 + ], + [ + 77.6097542961096, + 12.9495185669678 + ], + [ + 77.609735022914705, + 12.949516622543699 + ], + [ + 77.608915192885107, + 12.9496937570564 + ], + [ + 77.608907019759897, + 12.9496922389426 + ], + [ + 77.608692825970095, + 12.949718286873001 + ], + [ + 77.608694067805004, + 12.949724498142301 + ], + [ + 77.607873242035794, + 12.949820926514199 + ], + [ + 77.607694880303995, + 12.949841880075001 + ], + [ + 77.607417409597005, + 12.949874476067601 + ], + [ + 77.607404832055295, + 12.949881842028301 + ], + [ + 77.606571615517595, + 12.9499536446985 + ], + [ + 77.606546844584699, + 12.949958116086901 + ], + [ + 77.606194093784495, + 12.950021791256701 + ], + [ + 77.606036144395006, + 12.9500157429206 + ], + [ + 77.605960269085898, + 12.950012837678999 + ], + [ + 77.605804303420101, + 12.949986207324701 + ], + [ + 77.605781101840506, + 12.9499822457019 + ], + [ + 77.605763863980798, + 12.9499793022111 + ], + [ + 77.605735349218307, + 12.949974433388199 + ], + [ + 77.605727858920901, + 12.9499979233721 + ], + [ + 77.605716821052596, + 12.9500325384266 + ], + [ + 77.605712770365301, + 12.950045239591899 + ], + [ + 77.605690190582195, + 12.950116045805 + ], + [ + 77.605689262443306, + 12.950116167114301 + ], + [ + 77.605683214372107, + 12.9501169584865 + ], + [ + 77.604989762900402, + 12.9502077043228 + ], + [ + 77.604802526336698, + 12.9502322057774 + ], + [ + 77.604193754199798, + 12.950341456986999 + ], + [ + 77.603909561946196, + 12.950392458037401 + ], + [ + 77.603443307265707, + 12.9505089179069 + ], + [ + 77.603446770990999, + 12.9505207417089 + ], + [ + 77.603455841436201, + 12.9505517055517 + ], + [ + 77.603439688429802, + 12.9505484791336 + ], + [ + 77.6027729871318, + 12.950377843517201 + ], + [ + 77.602488424536205, + 12.95030615368 + ], + [ + 77.602400105962403, + 12.9502833209862 + ], + [ + 77.602322150449396, + 12.9502616034592 + ], + [ + 77.602285358836994, + 12.950251353892799 + ], + [ + 77.602188789978101, + 12.950224450469101 + ], + [ + 77.601912227886103, + 12.9501470335737 + ], + [ + 77.601835663510897, + 12.950125512489301 + ], + [ + 77.601594091177503, + 12.9500576093921 + ], + [ + 77.601553092081701, + 12.9500455966764 + ], + [ + 77.601295026334398, + 12.9499758225611 + ], + [ + 77.601211991702399, + 12.9499533721108 + ], + [ + 77.601025425464101, + 12.9499029299591 + ], + [ + 77.600981259912501, + 12.949890856610301 + ], + [ + 77.600818162801204, + 12.949846275413201 + ], + [ + 77.600774309661603, + 12.949834393144201 + ], + [ + 77.600767073319105, + 12.9498324326696 + ], + [ + 77.600763894836504, + 12.9498315718126 + ], + [ + 77.600709626876196, + 12.9498168681995 + ], + [ + 77.600635192498302, + 12.949800961969601 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "40", + "group": "Chokkasandra", + "Corporatio": "West", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "5", + "ward_id": "3", + "ward_name": "3 - Chokkasandra", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ಚೊಕ್ಕಸಂದ್ರ", + "dig_ward_n": "Chokkasandra", + "Assembly": "155 - Dasarahalli", + "Slno": "3" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.510444449091096, + 13.0370084183002 + ], + [ + 77.510442388643199, + 13.037012438908899 + ], + [ + 77.509575934163806, + 13.036996507694001 + ], + [ + 77.509383797371598, + 13.036992974509699 + ], + [ + 77.509359482916494, + 13.0369925271506 + ], + [ + 77.509356069999598, + 13.0369924653653 + ], + [ + 77.509184662876294, + 13.0369893644462 + ], + [ + 77.509074919586993, + 13.036987379706 + ], + [ + 77.509024693290499, + 13.036986442585 + ], + [ + 77.508796114989707, + 13.036982176140301 + ], + [ + 77.508626075583393, + 13.036979193502701 + ], + [ + 77.508619158545798, + 13.0369790726033 + ], + [ + 77.508402603967795, + 13.036975273854001 + ], + [ + 77.508288820248893, + 13.0369733261184 + ], + [ + 77.508284428570093, + 13.036973251214601 + ], + [ + 77.508254641630401, + 13.036972741125201 + ], + [ + 77.508093927006996, + 13.0369697807274 + ], + [ + 77.507996750600498, + 13.036985403786099 + ], + [ + 77.507949204686, + 13.0370043795191 + ], + [ + 77.507947333340596, + 13.0370065036731 + ], + [ + 77.507940915925801, + 13.037007406082401 + ], + [ + 77.5079137880345, + 13.037051311909099 + ], + [ + 77.507626199766307, + 13.0372979623454 + ], + [ + 77.507282321979602, + 13.037431010298601 + ], + [ + 77.506997804048893, + 13.0373614159846 + ], + [ + 77.506892143259705, + 13.037465075974101 + ], + [ + 77.506752177058303, + 13.0379468269788 + ], + [ + 77.5062029449129, + 13.038043550475701 + ], + [ + 77.505955104123103, + 13.0381124066711 + ], + [ + 77.5051087341336, + 13.038321398588501 + ], + [ + 77.504542557589104, + 13.0384759484543 + ], + [ + 77.504561901555803, + 13.0386099558986 + ], + [ + 77.504567599825606, + 13.038760988339201 + ], + [ + 77.504627503590001, + 13.0395587541043 + ], + [ + 77.504664347638496, + 13.039737857118199 + ], + [ + 77.504684816554402, + 13.039938452493899 + ], + [ + 77.504742129518903, + 13.040323268112401 + ], + [ + 77.504877224363597, + 13.0412177597363 + ], + [ + 77.504883754540302, + 13.041586617976799 + ], + [ + 77.504902058038795, + 13.041732448023399 + ], + [ + 77.504906953071, + 13.0417588918032 + ], + [ + 77.504934537328097, + 13.0421450016257 + ], + [ + 77.504950484996797, + 13.0427734618483 + ], + [ + 77.504950912460799, + 13.042787725584301 + ], + [ + 77.505004588565299, + 13.043099907508701 + ], + [ + 77.505046553992798, + 13.0433272379119 + ], + [ + 77.505075571674794, + 13.043484430330199 + ], + [ + 77.505074935510805, + 13.0435801094719 + ], + [ + 77.505074791663205, + 13.043599864711201 + ], + [ + 77.505196650380796, + 13.0438273603284 + ], + [ + 77.505211480761602, + 13.043860512963899 + ], + [ + 77.505483615996596, + 13.0458964421835 + ], + [ + 77.505518972859406, + 13.0458883793666 + ], + [ + 77.505551054275699, + 13.0458790690535 + ], + [ + 77.505640879455996, + 13.045852725343901 + ], + [ + 77.505704225299795, + 13.045834147835199 + ], + [ + 77.505917431567497, + 13.0457716197664 + ], + [ + 77.506062747253907, + 13.0457318140884 + ], + [ + 77.506390732220297, + 13.045643935153199 + ], + [ + 77.506898085302794, + 13.045466228083599 + ], + [ + 77.507124791061102, + 13.0453872351047 + ], + [ + 77.507182786011697, + 13.0453697327708 + ], + [ + 77.507303371680905, + 13.045333554175301 + ], + [ + 77.507781118117407, + 13.045190013194301 + ], + [ + 77.508417337979907, + 13.0450550993279 + ], + [ + 77.508449137439499, + 13.0450402458327 + ], + [ + 77.508698804753195, + 13.0449236238304 + ], + [ + 77.508822537683301, + 13.0448569214683 + ], + [ + 77.509063126748003, + 13.0447269713515 + ], + [ + 77.509517419492894, + 13.044482134915301 + ], + [ + 77.5096847930498, + 13.0443919303552 + ], + [ + 77.509707568089496, + 13.044379656070699 + ], + [ + 77.509824999760397, + 13.0443164025017 + ], + [ + 77.509957347637396, + 13.044247357424499 + ], + [ + 77.5100237980961, + 13.0442117028275 + ], + [ + 77.510028969747495, + 13.0442105233055 + ], + [ + 77.510187683254998, + 13.0441287994669 + ], + [ + 77.510252890078604, + 13.0440955673816 + ], + [ + 77.510305148847095, + 13.044068933455801 + ], + [ + 77.510498809283405, + 13.043968800746301 + ], + [ + 77.510668407419004, + 13.043881324287799 + ], + [ + 77.510731447890294, + 13.0438502200466 + ], + [ + 77.511273010189299, + 13.0435818252468 + ], + [ + 77.511431181093698, + 13.0435034941077 + ], + [ + 77.511457668238705, + 13.043490348851201 + ], + [ + 77.511616857853895, + 13.0434113436709 + ], + [ + 77.511620301801003, + 13.04341018089 + ], + [ + 77.511947995464894, + 13.043294064723099 + ], + [ + 77.511992190832103, + 13.043278954109599 + ], + [ + 77.512526543141703, + 13.043095328608199 + ], + [ + 77.512624090907707, + 13.043059371522901 + ], + [ + 77.512956299285193, + 13.0429341755731 + ], + [ + 77.512978291842799, + 13.0429258451209 + ], + [ + 77.513048099410298, + 13.0428994035156 + ], + [ + 77.513269708275402, + 13.042829490181299 + ], + [ + 77.513325667713403, + 13.0428119395518 + ], + [ + 77.513403479764307, + 13.042787534269699 + ], + [ + 77.513685960679794, + 13.042699100696 + ], + [ + 77.514125734207695, + 13.042561424105999 + ], + [ + 77.514525872805606, + 13.0424333077233 + ], + [ + 77.514602755436002, + 13.042407784509001 + ], + [ + 77.514659045040304, + 13.042389098352 + ], + [ + 77.514661913064302, + 13.0423879411317 + ], + [ + 77.514858335593999, + 13.0423237391896 + ], + [ + 77.514872014448699, + 13.0423192677447 + ], + [ + 77.5152690492625, + 13.042180751621 + ], + [ + 77.515516797679098, + 13.042094318052699 + ], + [ + 77.515544647883701, + 13.042084601451499 + ], + [ + 77.515612362715302, + 13.042060226868101 + ], + [ + 77.515712178723405, + 13.042020858658599 + ], + [ + 77.516113711658406, + 13.041859975377101 + ], + [ + 77.516280067525997, + 13.0417939849881 + ], + [ + 77.516488467670996, + 13.0416711181692 + ], + [ + 77.516560030684104, + 13.041628636348699 + ], + [ + 77.5166433123442, + 13.0415576297206 + ], + [ + 77.516730193644605, + 13.041483554182999 + ], + [ + 77.516920699806207, + 13.041299876198799 + ], + [ + 77.5169847231289, + 13.0412291841723 + ], + [ + 77.517238524073605, + 13.0409489454187 + ], + [ + 77.517502598463196, + 13.0406934025824 + ], + [ + 77.517621227916706, + 13.040578184361699 + ], + [ + 77.517726310349502, + 13.0404902022717 + ], + [ + 77.517792564141402, + 13.0404353490032 + ], + [ + 77.517801698258495, + 13.0404273547024 + ], + [ + 77.518145278934895, + 13.0401388867602 + ], + [ + 77.518387373090704, + 13.0399356264675 + ], + [ + 77.518441313562903, + 13.0398903378569 + ], + [ + 77.518422649737701, + 13.039810335675901 + ], + [ + 77.518379533447998, + 13.039590532124301 + ], + [ + 77.518369480612805, + 13.039564654904799 + ], + [ + 77.518340238281198, + 13.0394068305436 + ], + [ + 77.518307673597306, + 13.039217462796501 + ], + [ + 77.518301073349093, + 13.0391790830621 + ], + [ + 77.518286617609405, + 13.039059512691001 + ], + [ + 77.518275302299699, + 13.0389658867946 + ], + [ + 77.518272493413505, + 13.0388021584921 + ], + [ + 77.518271841646396, + 13.0387579711409 + ], + [ + 77.518270008180494, + 13.038633713586901 + ], + [ + 77.5182688274366, + 13.038553737336199 + ], + [ + 77.518268256029998, + 13.038497275435301 + ], + [ + 77.518266198988499, + 13.0382940125898 + ], + [ + 77.518271300593199, + 13.0380860597084 + ], + [ + 77.518271890285305, + 13.038062014192599 + ], + [ + 77.518272964185101, + 13.038018250949699 + ], + [ + 77.518280469397396, + 13.037712258916001 + ], + [ + 77.518312160252805, + 13.0372014847784 + ], + [ + 77.518314605393499, + 13.037158545721599 + ], + [ + 77.518322059414004, + 13.0366999574111 + ], + [ + 77.518323085520706, + 13.0366711381815 + ], + [ + 77.518331028732405, + 13.036448025274399 + ], + [ + 77.518334664459303, + 13.036351995219499 + ], + [ + 77.518332367762596, + 13.036125018349299 + ], + [ + 77.518319650583393, + 13.036006560368101 + ], + [ + 77.518313320576496, + 13.035950155375 + ], + [ + 77.518304586981102, + 13.035921400355299 + ], + [ + 77.518285242905307, + 13.035857714313901 + ], + [ + 77.518257913572199, + 13.035767738790501 + ], + [ + 77.518168020817299, + 13.0354783702867 + ], + [ + 77.518070584241102, + 13.035119330059 + ], + [ + 77.516532225065703, + 13.035327829191999 + ], + [ + 77.515493939307603, + 13.035446548904099 + ], + [ + 77.515240124750704, + 13.035507955651701 + ], + [ + 77.515139827062896, + 13.035519213555499 + ], + [ + 77.515108100243296, + 13.035755629533901 + ], + [ + 77.515069209303107, + 13.0359306387647 + ], + [ + 77.515067739376903, + 13.035945396054901 + ], + [ + 77.515065076827199, + 13.0359668796051 + ], + [ + 77.515059381258098, + 13.036030178638001 + ], + [ + 77.515049763833005, + 13.0361230465739 + ], + [ + 77.515025712856996, + 13.036276563443 + ], + [ + 77.515016501844798, + 13.036389142480401 + ], + [ + 77.515015858501201, + 13.0363958760533 + ], + [ + 77.515003708772298, + 13.036568245494299 + ], + [ + 77.514999130952603, + 13.036598806859599 + ], + [ + 77.515025854708099, + 13.0366274119155 + ], + [ + 77.514994148122796, + 13.036738075454901 + ], + [ + 77.514992450868505, + 13.0367493953998 + ], + [ + 77.514984605354599, + 13.036762348936101 + ], + [ + 77.514983477251207, + 13.036774912866999 + ], + [ + 77.514980996578402, + 13.036802540132401 + ], + [ + 77.514950489591001, + 13.0370021865109 + ], + [ + 77.514884989060107, + 13.0376003905775 + ], + [ + 77.514846089860896, + 13.038123138703501 + ], + [ + 77.514381394643294, + 13.0381306743016 + ], + [ + 77.514254546451099, + 13.0375041866729 + ], + [ + 77.514073367579797, + 13.0375577498996 + ], + [ + 77.513526364768694, + 13.037646957361201 + ], + [ + 77.513099587872603, + 13.035925521535701 + ], + [ + 77.512978286338395, + 13.035966549866 + ], + [ + 77.511190395144297, + 13.0362986175623 + ], + [ + 77.5104914662748, + 13.036434445880699 + ], + [ + 77.510443949635999, + 13.036443680370599 + ], + [ + 77.510433511579294, + 13.036507862192501 + ], + [ + 77.510441315360694, + 13.0369740060578 + ], + [ + 77.510442731954498, + 13.036989561163301 + ], + [ + 77.510444449091096, + 13.0370084183002 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "39", + "group": "Ambedkarnagar", + "Corporatio": "Central", + "ac_no": "163", + "ac": "Shanthinagar", + "corporat_1": "1", + "ward_id": "39", + "ward_name": "39 - Ambedkarnagar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಾಂತಿನಗರ", + "ward_name_": "ಅಂಬೇಡ್ಕರ್‌ನಗರ", + "dig_ward_n": "Ambedkarnagar", + "Assembly": "163 - Shanthinagar", + "Slno": "39" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.619443919567402, + 12.947683425262101 + ], + [ + 77.619333554069996, + 12.947477872185701 + ], + [ + 77.619326521955003, + 12.9474649562246 + ], + [ + 77.619318879384295, + 12.9474509162225 + ], + [ + 77.619291450150797, + 12.947470389648799 + ], + [ + 77.619244003952502, + 12.9475024863298 + ], + [ + 77.619031799239195, + 12.947647934498301 + ], + [ + 77.619019941281707, + 12.947656061614 + ], + [ + 77.618934806484901, + 12.9477139683834 + ], + [ + 77.618890183526702, + 12.947744320138201 + ], + [ + 77.618833895562403, + 12.947787956488799 + ], + [ + 77.618776543111593, + 12.947832416608399 + ], + [ + 77.618762458414096, + 12.9478437633014 + ], + [ + 77.618598780790407, + 12.9479756220327 + ], + [ + 77.618513939105199, + 12.9480439720021 + ], + [ + 77.618388210313299, + 12.948132189847501 + ], + [ + 77.618352327526395, + 12.9481562869454 + ], + [ + 77.618263585488805, + 12.948215879451 + ], + [ + 77.6181567237481, + 12.948288357024399 + ], + [ + 77.618156587472399, + 12.9482884496393 + ], + [ + 77.618146972128699, + 12.9482949713955 + ], + [ + 77.618002353617399, + 12.948393542413701 + ], + [ + 77.617988911452898, + 12.948402653881001 + ], + [ + 77.617880594842902, + 12.9484760738018 + ], + [ + 77.617792386674694, + 12.948542356071901 + ], + [ + 77.617781553947395, + 12.948550496332601 + ], + [ + 77.617752645641801, + 12.9485722186601 + ], + [ + 77.617729210249706, + 12.948589773621499 + ], + [ + 77.617630405413607, + 12.9486637890059 + ], + [ + 77.617492177305806, + 12.9487679419831 + ], + [ + 77.617383645757599, + 12.9488492110235 + ], + [ + 77.617239382227993, + 12.948948144044699 + ], + [ + 77.617197938555805, + 12.948976565554901 + ], + [ + 77.617186446340298, + 12.9489844468172 + ], + [ + 77.617173865110601, + 12.948992478146501 + ], + [ + 77.6171704649785, + 12.948994648896001 + ], + [ + 77.6171613057477, + 12.9490004949393 + ], + [ + 77.617161282554306, + 12.9490004591312 + ], + [ + 77.617159279863003, + 12.9490014079679 + ], + [ + 77.6171554981388, + 12.949003201307599 + ], + [ + 77.617102852607701, + 12.949028148767001 + ], + [ + 77.617041696886204, + 12.949070546368199 + ], + [ + 77.616975971504601, + 12.9491163776937 + ], + [ + 77.6170045073724, + 12.949147710767599 + ], + [ + 77.616964056511193, + 12.9491764782301 + ], + [ + 77.616951363213005, + 12.949185510766 + ], + [ + 77.616917390882193, + 12.9492004730087 + ], + [ + 77.616901507719703, + 12.949207467848799 + ], + [ + 77.616888386215194, + 12.949218892426201 + ], + [ + 77.616858160978396, + 12.9492462986889 + ], + [ + 77.616829338566205, + 12.949249359012899 + ], + [ + 77.616743297312297, + 12.949258494130101 + ], + [ + 77.616693696733407, + 12.949263760619299 + ], + [ + 77.616376009512393, + 12.949272597908401 + ], + [ + 77.615926373860901, + 12.9492703378013 + ], + [ + 77.615769779624102, + 12.9492696516929 + ], + [ + 77.6156662871348, + 12.949270054855299 + ], + [ + 77.615665798053399, + 12.9492700570558 + ], + [ + 77.615586142659893, + 12.9492703662919 + ], + [ + 77.615173467990402, + 12.9492724514401 + ], + [ + 77.615148894301001, + 12.949272574363899 + ], + [ + 77.6151388106166, + 12.949272625000599 + ], + [ + 77.615133675743493, + 12.9492726503493 + ], + [ + 77.615042532130701, + 12.9492737333414 + ], + [ + 77.614651690139496, + 12.9492783774232 + ], + [ + 77.614521219412694, + 12.949279927227799 + ], + [ + 77.614421635751498, + 12.9492809266742 + ], + [ + 77.614394513889806, + 12.9492811003963 + ], + [ + 77.614394496458402, + 12.9492811505453 + ], + [ + 77.614386907428297, + 12.949281199668301 + ], + [ + 77.614335296959894, + 12.9492815306075 + ], + [ + 77.614167974407493, + 12.9492826044444 + ], + [ + 77.613798207176501, + 12.949284974104501 + ], + [ + 77.613610232707501, + 12.9492868600877 + ], + [ + 77.613461464502507, + 12.9492883526109 + ], + [ + 77.613127880783594, + 12.949291698994999 + ], + [ + 77.613123837567301, + 12.949291739552301 + ], + [ + 77.613063705084301, + 12.949292342732001 + ], + [ + 77.612804096477603, + 12.949294946666701 + ], + [ + 77.612763802453699, + 12.949295350802 + ], + [ + 77.6126637803997, + 12.9492964569523 + ], + [ + 77.612662886111906, + 12.9492964668247 + ], + [ + 77.612464518191103, + 12.9492986603932 + ], + [ + 77.611684617053598, + 12.9493072817494 + ], + [ + 77.611664938101498, + 12.9493074989142 + ], + [ + 77.611655012427605, + 12.9492950498545 + ], + [ + 77.611623321187693, + 12.9492552997811 + ], + [ + 77.611614922393798, + 12.949244765127 + ], + [ + 77.61153173436, + 12.949140424187 + ], + [ + 77.611501854698005, + 12.9491029461125 + ], + [ + 77.611436279077097, + 12.949020695278 + ], + [ + 77.611255475750198, + 12.9489959324916 + ], + [ + 77.611211666385501, + 12.948989932001201 + ], + [ + 77.611129669812897, + 12.948978702183 + ], + [ + 77.611036756417505, + 12.948965977271 + ], + [ + 77.610466456688002, + 12.9490688252788 + ], + [ + 77.610398831967601, + 12.949081020680399 + ], + [ + 77.610296556861499, + 12.9490994653419 + ], + [ + 77.609929482766702, + 12.949165662921599 + ], + [ + 77.609444255241897, + 12.949236342872201 + ], + [ + 77.609443967380102, + 12.949236385506399 + ], + [ + 77.609443179204604, + 12.9492365018125 + ], + [ + 77.608986838742993, + 12.949305128111 + ], + [ + 77.608979905393497, + 12.949306171442499 + ], + [ + 77.608338536395706, + 12.949405054301099 + ], + [ + 77.6083077370632, + 12.9494098030248 + ], + [ + 77.607801358047894, + 12.949487872291201 + ], + [ + 77.606510038829796, + 12.949686952777901 + ], + [ + 77.606467459793393, + 12.9496935167024 + ], + [ + 77.605960088492793, + 12.9497717352536 + ], + [ + 77.605858532331297, + 12.949787392138299 + ], + [ + 77.605791656488805, + 12.949797701599399 + ], + [ + 77.605751600500994, + 12.9499234249702 + ], + [ + 77.605735349218307, + 12.949974433388199 + ], + [ + 77.605763863980798, + 12.9499793022111 + ], + [ + 77.605781101840506, + 12.9499822457019 + ], + [ + 77.605804303420101, + 12.949986207324701 + ], + [ + 77.605960269085898, + 12.950012837678999 + ], + [ + 77.606036144395006, + 12.9500157429206 + ], + [ + 77.606194093784495, + 12.950021791256701 + ], + [ + 77.606546844584699, + 12.949958116086901 + ], + [ + 77.606571615517595, + 12.9499536446985 + ], + [ + 77.607404832055295, + 12.949881842028301 + ], + [ + 77.607417409597005, + 12.949874476067601 + ], + [ + 77.607694880303995, + 12.949841880075001 + ], + [ + 77.607873242035794, + 12.949820926514199 + ], + [ + 77.608694067805004, + 12.949724498142301 + ], + [ + 77.608692825970095, + 12.949718286873001 + ], + [ + 77.608907019759897, + 12.9496922389426 + ], + [ + 77.608915192885107, + 12.9496937570564 + ], + [ + 77.609735022914705, + 12.949516622543699 + ], + [ + 77.6097542961096, + 12.9495185669678 + ], + [ + 77.609750251073706, + 12.9494969415329 + ], + [ + 77.611149393775506, + 12.9494040402266 + ], + [ + 77.611173912041707, + 12.9495483928435 + ], + [ + 77.611209978739396, + 12.9498459430993 + ], + [ + 77.611530714729398, + 12.949912280061101 + ], + [ + 77.611737668875406, + 12.9498910264714 + ], + [ + 77.612330193194296, + 12.950019836106 + ], + [ + 77.613756671767504, + 12.950333097986499 + ], + [ + 77.613757012756693, + 12.9503309959129 + ], + [ + 77.614880767267607, + 12.9506726278114 + ], + [ + 77.614880648672994, + 12.950675562414601 + ], + [ + 77.614911405748501, + 12.9506864587997 + ], + [ + 77.614943958121302, + 12.9506977138848 + ], + [ + 77.615012692239205, + 12.950721479499 + ], + [ + 77.615347306219903, + 12.950837176592 + ], + [ + 77.615432094943003, + 12.9508467019525 + ], + [ + 77.6154699655104, + 12.9508509562482 + ], + [ + 77.615709321594807, + 12.9508371154177 + ], + [ + 77.616026383444705, + 12.950782376623099 + ], + [ + 77.616175435236599, + 12.950756643533399 + ], + [ + 77.616585152264193, + 12.9506859071177 + ], + [ + 77.616593226855201, + 12.950684513334901 + ], + [ + 77.616608788657999, + 12.950683164495301 + ], + [ + 77.616945606287999, + 12.950653963758199 + ], + [ + 77.616958689527294, + 12.9508295459091 + ], + [ + 77.617238316029301, + 12.950800366451601 + ], + [ + 77.617475723548793, + 12.950863061754699 + ], + [ + 77.617686223200195, + 12.951100629073199 + ], + [ + 77.617904242668402, + 12.951574621955301 + ], + [ + 77.618038236521201, + 12.951729938926301 + ], + [ + 77.618519208734796, + 12.9522397082276 + ], + [ + 77.618622000631902, + 12.9521560506798 + ], + [ + 77.618627000055099, + 12.9521520506628 + ], + [ + 77.618646000632296, + 12.952123050469501 + ], + [ + 77.618867000804102, + 12.9521240508869 + ], + [ + 77.618869511593005, + 12.952123771779799 + ], + [ + 77.6188808078535, + 12.952190369419201 + ], + [ + 77.618905695857904, + 12.952267790675901 + ], + [ + 77.618985935403202, + 12.9522621378848 + ], + [ + 77.619506159435701, + 12.9522254861586 + ], + [ + 77.6196367207978, + 12.9526155323992 + ], + [ + 77.619667533756797, + 12.9527075844346 + ], + [ + 77.619668533073295, + 12.952710571024401 + ], + [ + 77.619702569225296, + 12.952894693311601 + ], + [ + 77.6197152636108, + 12.952963365506699 + ], + [ + 77.619758946174102, + 12.953199673408299 + ], + [ + 77.619765788496693, + 12.9532713134715 + ], + [ + 77.619377078194105, + 12.9533887623966 + ], + [ + 77.619712611429193, + 12.954609833777299 + ], + [ + 77.620085269786401, + 12.954532869650301 + ], + [ + 77.620069322970195, + 12.954535029364701 + ], + [ + 77.619827355883203, + 12.953494881189901 + ], + [ + 77.620388752361293, + 12.9533857834966 + ], + [ + 77.620374644453705, + 12.9533028154436 + ], + [ + 77.620373357690895, + 12.953295245094001 + ], + [ + 77.620364115034604, + 12.953240889947899 + ], + [ + 77.620427045087098, + 12.9532323799995 + ], + [ + 77.620850810906006, + 12.953149758990801 + ], + [ + 77.621256808766105, + 12.9530857943389 + ], + [ + 77.621613944739295, + 12.953014722503401 + ], + [ + 77.621692123758294, + 12.9530085037178 + ], + [ + 77.622251814462601, + 12.952898342372899 + ], + [ + 77.622459699581299, + 12.952850368883899 + ], + [ + 77.622774192453207, + 12.952795288211499 + ], + [ + 77.623528852812498, + 12.9526387455799 + ], + [ + 77.623529839864105, + 12.952640820722699 + ], + [ + 77.623531692470493, + 12.9526447156617 + ], + [ + 77.623532330962206, + 12.952648249719999 + ], + [ + 77.623542705051904, + 12.9527056540127 + ], + [ + 77.623555464962195, + 12.9527762657107 + ], + [ + 77.623593035808597, + 12.9529841717462 + ], + [ + 77.624665657517198, + 12.9527797503022 + ], + [ + 77.624764033523704, + 12.9534043904433 + ], + [ + 77.624775358502305, + 12.953464587108201 + ], + [ + 77.624788473415904, + 12.953568032178699 + ], + [ + 77.624816947071807, + 12.9536382170552 + ], + [ + 77.624885896194002, + 12.9535844223682 + ], + [ + 77.625069567135597, + 12.9533800054081 + ], + [ + 77.625115872217805, + 12.953333977780099 + ], + [ + 77.625271738824793, + 12.9531232854858 + ], + [ + 77.625297356818606, + 12.9530804163598 + ], + [ + 77.625319811801305, + 12.9530546234704 + ], + [ + 77.625545368283298, + 12.952765217873001 + ], + [ + 77.625611128510599, + 12.9526622888192 + ], + [ + 77.625682441327598, + 12.9525789703341 + ], + [ + 77.625783789125904, + 12.952427827187901 + ], + [ + 77.625815394354404, + 12.9523822754674 + ], + [ + 77.625836734357605, + 12.952313882927999 + ], + [ + 77.625845761042399, + 12.9522823254336 + ], + [ + 77.625823424897604, + 12.9522556730051 + ], + [ + 77.625808020629094, + 12.9522369385577 + ], + [ + 77.625804896272101, + 12.9521556464256 + ], + [ + 77.625869000621094, + 12.9521520513846 + ], + [ + 77.625886302305901, + 12.9521375180673 + ], + [ + 77.626036032592495, + 12.952133891212601 + ], + [ + 77.626096459686593, + 12.952032326974299 + ], + [ + 77.626104027282494, + 12.952019390558499 + ], + [ + 77.626170000719497, + 12.951730051492 + ], + [ + 77.626261349873403, + 12.9513833564697 + ], + [ + 77.626269390826593, + 12.9513528384393 + ], + [ + 77.6262970004246, + 12.9512480512027 + ], + [ + 77.626391999988499, + 12.9510190515087 + ], + [ + 77.626532592836597, + 12.9507816989332 + ], + [ + 77.626562000756195, + 12.9507320515538 + ], + [ + 77.626781000009501, + 12.9503220517018 + ], + [ + 77.627005508500801, + 12.9499326064439 + ], + [ + 77.627145791881304, + 12.9496702822556 + ], + [ + 77.626921095360402, + 12.9495113456474 + ], + [ + 77.626918834926897, + 12.9495094938565 + ], + [ + 77.626889000531904, + 12.949485051085199 + ], + [ + 77.626853000335501, + 12.949474051862699 + ], + [ + 77.626839109614295, + 12.9494487734587 + ], + [ + 77.626803228321805, + 12.9494760055398 + ], + [ + 77.626773544479704, + 12.949500018593801 + ], + [ + 77.626619463678793, + 12.9496291795795 + ], + [ + 77.626492200325799, + 12.949735484738399 + ], + [ + 77.626467649703798, + 12.9497549298402 + ], + [ + 77.626377362669203, + 12.9498276625458 + ], + [ + 77.626307236713998, + 12.949884154541 + ], + [ + 77.626194221691506, + 12.9499767647194 + ], + [ + 77.6261867977544, + 12.949982486812999 + ], + [ + 77.626130235538497, + 12.9500183019831 + ], + [ + 77.625918581157507, + 12.950152321667799 + ], + [ + 77.625653261835794, + 12.950269052352899 + ], + [ + 77.625545851143002, + 12.9503012594831 + ], + [ + 77.6254856879969, + 12.9503193000001 + ], + [ + 77.6254284218778, + 12.9503368306884 + ], + [ + 77.625420843447699, + 12.950339151155699 + ], + [ + 77.624763499356305, + 12.9504802365144 + ], + [ + 77.6247115804304, + 12.950491379329099 + ], + [ + 77.624255969621899, + 12.9505891653598 + ], + [ + 77.624216897966903, + 12.9505963346143 + ], + [ + 77.624174960000602, + 12.9506046620102 + ], + [ + 77.623958858359501, + 12.950650523718799 + ], + [ + 77.623938856940597, + 12.9506547716068 + ], + [ + 77.623836056729402, + 12.950676595665801 + ], + [ + 77.623813278789996, + 12.9506814289212 + ], + [ + 77.623762113933296, + 12.9506922893266 + ], + [ + 77.623723735007403, + 12.950700436258799 + ], + [ + 77.623719576244994, + 12.950701316519501 + ], + [ + 77.623696064034903, + 12.950706311645799 + ], + [ + 77.623694724049599, + 12.950706596168001 + ], + [ + 77.623672119822103, + 12.950711394235899 + ], + [ + 77.623671497617494, + 12.9507115260779 + ], + [ + 77.623660219857896, + 12.950713919897099 + ], + [ + 77.623651205733907, + 12.9507158328831 + ], + [ + 77.623651019167497, + 12.9507158727058 + ], + [ + 77.623638759856405, + 12.9507184751624 + ], + [ + 77.623638337093396, + 12.9507185652452 + ], + [ + 77.623629217280595, + 12.9507205009771 + ], + [ + 77.623628772460805, + 12.950720595799201 + ], + [ + 77.623621029388403, + 12.9507222385079 + ], + [ + 77.623620575377302, + 12.950722335229401 + ], + [ + 77.623616052681598, + 12.9507232941379 + ], + [ + 77.623615839462801, + 12.9507233396495 + ], + [ + 77.623615697009896, + 12.9507233699936 + ], + [ + 77.6235827487791, + 12.950730363652101 + ], + [ + 77.623549426539, + 12.9507374414778 + ], + [ + 77.623488865893407, + 12.950757664621699 + ], + [ + 77.623381053079399, + 12.9507936666347 + ], + [ + 77.623375257513402, + 12.950795602304799 + ], + [ + 77.623337651476703, + 12.950808160013001 + ], + [ + 77.623326264105799, + 12.950811962446499 + ], + [ + 77.623298200216098, + 12.9508257963383 + ], + [ + 77.623149821924599, + 12.950895046917999 + ], + [ + 77.623113734685603, + 12.9509123494076 + ], + [ + 77.623057444005298, + 12.950939507457299 + ], + [ + 77.623041139957095, + 12.9509473741783 + ], + [ + 77.622894112845302, + 12.951018304937699 + ], + [ + 77.622425233362193, + 12.951244512372 + ], + [ + 77.622310674813605, + 12.9512998707904 + ], + [ + 77.622031619573903, + 12.9514246414873 + ], + [ + 77.621970224282194, + 12.951452191317999 + ], + [ + 77.621963756266695, + 12.951455094063601 + ], + [ + 77.621521218653299, + 12.9516536731609 + ], + [ + 77.621498729525101, + 12.9516637648371 + ], + [ + 77.621407628006807, + 12.9514668629879 + ], + [ + 77.621405820458904, + 12.9514629567313 + ], + [ + 77.621404182548304, + 12.9514594173621 + ], + [ + 77.621362927362497, + 12.9513702487166 + ], + [ + 77.621343230893004, + 12.95132767732 + ], + [ + 77.621325824311597, + 12.951290301922301 + ], + [ + 77.621296117351307, + 12.951226516918 + ], + [ + 77.621197187697803, + 12.950959874834799 + ], + [ + 77.621169929171501, + 12.950885617129799 + ], + [ + 77.621082646764293, + 12.9506747621777 + ], + [ + 77.621074535034396, + 12.950655165542701 + ], + [ + 77.621035859791306, + 12.9505617356096 + ], + [ + 77.621008814069398, + 12.9505048177486 + ], + [ + 77.620912422172793, + 12.9503019646779 + ], + [ + 77.620903414493597, + 12.9502830085368 + ], + [ + 77.620888985222194, + 12.950258328679601 + ], + [ + 77.620789265247296, + 12.9500877619584 + ], + [ + 77.620760996668906, + 12.9500394099214 + ], + [ + 77.620748052084494, + 12.9500172690782 + ], + [ + 77.620739490197806, + 12.9500026240728 + ], + [ + 77.620621466003101, + 12.949800755448999 + ], + [ + 77.620607394119304, + 12.949776686294699 + ], + [ + 77.620590984113903, + 12.949748617736899 + ], + [ + 77.620515912392193, + 12.949623336987999 + ], + [ + 77.620504070413403, + 12.949603574575301 + ], + [ + 77.620424923661801, + 12.9494714931846 + ], + [ + 77.620277993307695, + 12.9492262907761 + ], + [ + 77.620254669437202, + 12.9491873684858 + ], + [ + 77.620218345856799, + 12.949126748534299 + ], + [ + 77.620218049021602, + 12.9491261968206 + ], + [ + 77.620172551674898, + 12.9490413825144 + ], + [ + 77.620171337021503, + 12.949039118115101 + ], + [ + 77.620157488624002, + 12.949013245254299 + ], + [ + 77.620153932806602, + 12.949006601137301 + ], + [ + 77.6201440310534, + 12.9489881038446 + ], + [ + 77.620135868185699, + 12.948972852211901 + ], + [ + 77.620134757766294, + 12.9489707782888 + ], + [ + 77.620130541520297, + 12.948962900419099 + ], + [ + 77.620130144136297, + 12.9489621581917 + ], + [ + 77.620128118699995, + 12.948958375168401 + ], + [ + 77.620128085813306, + 12.9489583131632 + ], + [ + 77.620127494897403, + 12.9489572088043 + ], + [ + 77.620126670062504, + 12.948955667736399 + ], + [ + 77.620126632485906, + 12.9489555976477 + ], + [ + 77.620047681409602, + 12.948808093633801 + ], + [ + 77.620046896990999, + 12.948806629853101 + ], + [ + 77.619980562074005, + 12.948683072330001 + ], + [ + 77.619980406137898, + 12.948682782093799 + ], + [ + 77.619900230273799, + 12.9485334346956 + ], + [ + 77.619879894406694, + 12.9484955537544 + ], + [ + 77.619801222638401, + 12.948349008038299 + ], + [ + 77.619623952210105, + 12.9480187911677 + ], + [ + 77.619490719526794, + 12.9477706026889 + ], + [ + 77.619443919567402, + 12.947683425262101 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "117", + "group": "Kaval Byrasandra", + "Corporatio": "North", + "ac_no": "159", + "ac": "Pulakeshinagar", + "corporat_1": "2", + "ward_id": "52", + "ward_name": "52 - Kaval Byrasandra", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಪುಲಕೇಶಿನಗರ", + "ward_name_": "ಕಾವಲ್ ಬೈರಸಂದ್ರ", + "dig_ward_n": "Kaval Byrasandra", + "Assembly": "159 - Pulakeshinagar", + "Slno": "52" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.609182347356494, + 13.018196220698 + ], + [ + 77.609148900070807, + 13.0181424754717 + ], + [ + 77.609089273962297, + 13.0180355114188 + ], + [ + 77.608970622385399, + 13.0178789454356 + ], + [ + 77.608848462104802, + 13.017755458182799 + ], + [ + 77.608682356833299, + 13.017587838363401 + ], + [ + 77.608542593236805, + 13.0175103642026 + ], + [ + 77.608411672323498, + 13.0174614467127 + ], + [ + 77.608337016710905, + 13.017433552138399 + ], + [ + 77.608087866304899, + 13.0173858628578 + ], + [ + 77.607831553016595, + 13.0173525863175 + ], + [ + 77.607504765122698, + 13.0172871692497 + ], + [ + 77.607505646204999, + 13.017294680485501 + ], + [ + 77.607159495488403, + 13.017164149950901 + ], + [ + 77.606860481208003, + 13.017155741520201 + ], + [ + 77.605495676463605, + 13.0172912472375 + ], + [ + 77.605394886821898, + 13.0173111103307 + ], + [ + 77.605258473506197, + 13.017409508883899 + ], + [ + 77.605397804756294, + 13.018425607512199 + ], + [ + 77.605074391946303, + 13.0184682955257 + ], + [ + 77.6050613707623, + 13.018468426384199 + ], + [ + 77.604943846511503, + 13.018488518814401 + ], + [ + 77.6050857184037, + 13.0192688142211 + ], + [ + 77.605041383437495, + 13.0193830620188 + ], + [ + 77.604655328192607, + 13.019373512949199 + ], + [ + 77.6045830280937, + 13.019428761137901 + ], + [ + 77.604584742551793, + 13.0200120343327 + ], + [ + 77.604622986691695, + 13.020872164405199 + ], + [ + 77.604803777865797, + 13.021278159982501 + ], + [ + 77.604652892317006, + 13.021331173824001 + ], + [ + 77.604712702804804, + 13.021486137360601 + ], + [ + 77.604498838229503, + 13.021516782754301 + ], + [ + 77.604062644591096, + 13.021601345001899 + ], + [ + 77.603674421887504, + 13.0216706508045 + ], + [ + 77.603348615883704, + 13.021738292939901 + ], + [ + 77.603315198717496, + 13.021750221388601 + ], + [ + 77.603049133535393, + 13.021845195192901 + ], + [ + 77.603038804518206, + 13.021848686788699 + ], + [ + 77.602762065304304, + 13.0219625822693 + ], + [ + 77.6024430462342, + 13.022110137023301 + ], + [ + 77.602415436340706, + 13.0221263814461 + ], + [ + 77.603045384059499, + 13.023700913681299 + ], + [ + 77.603464328787894, + 13.024781491339899 + ], + [ + 77.604278567019804, + 13.024576232620401 + ], + [ + 77.6051036798859, + 13.0243954418277 + ], + [ + 77.605508359751894, + 13.0250078076101 + ], + [ + 77.6057099407397, + 13.025341534998599 + ], + [ + 77.606917775625902, + 13.024865933195599 + ], + [ + 77.6075584481286, + 13.0263110822687 + ], + [ + 77.6089668936674, + 13.0259192499378 + ], + [ + 77.608284831936501, + 13.024229158292 + ], + [ + 77.608275674734301, + 13.0242064950593 + ], + [ + 77.608314491578298, + 13.024197247163301 + ], + [ + 77.608794579562002, + 13.024071476711001 + ], + [ + 77.609222767496703, + 13.023992636140401 + ], + [ + 77.609458291198095, + 13.023964534449499 + ], + [ + 77.609648597295703, + 13.0245558426813 + ], + [ + 77.610071609509603, + 13.0244427478508 + ], + [ + 77.610999496186906, + 13.024220579550301 + ], + [ + 77.611000845216395, + 13.024225074930399 + ], + [ + 77.611003274362702, + 13.024222826230201 + ], + [ + 77.611000220959497, + 13.024212810054401 + ], + [ + 77.612485005293905, + 13.023794091217599 + ], + [ + 77.612603293956198, + 13.0237607323209 + ], + [ + 77.612615315948403, + 13.0237570281445 + ], + [ + 77.612597111560106, + 13.023711889824799 + ], + [ + 77.612562155453404, + 13.0236245653624 + ], + [ + 77.612557490861604, + 13.0236129131039 + ], + [ + 77.612541655621399, + 13.023530635687299 + ], + [ + 77.612566780633998, + 13.023400515753 + ], + [ + 77.612579737676796, + 13.023314563835701 + ], + [ + 77.612582289261496, + 13.0232976351229 + ], + [ + 77.612587240031004, + 13.0232647964847 + ], + [ + 77.612613535866799, + 13.023081588826701 + ], + [ + 77.612613500351898, + 13.023078202263401 + ], + [ + 77.6126485720565, + 13.022774870528499 + ], + [ + 77.612654154154697, + 13.022726586983 + ], + [ + 77.612700589603307, + 13.022377172872201 + ], + [ + 77.612708082386803, + 13.022322892134801 + ], + [ + 77.6127306436194, + 13.0221679540122 + ], + [ + 77.612730846454198, + 13.022160937815 + ], + [ + 77.612736983404702, + 13.021948810764201 + ], + [ + 77.6127421670503, + 13.0215590502469 + ], + [ + 77.612744367257804, + 13.021393685953401 + ], + [ + 77.612744389235004, + 13.0213920035639 + ], + [ + 77.612748279485004, + 13.021103999233199 + ], + [ + 77.612747995320404, + 13.021076899498899 + ], + [ + 77.612747965606303, + 13.02107406577 + ], + [ + 77.612747947419706, + 13.021072331387 + ], + [ + 77.612747474353498, + 13.0210272166526 + ], + [ + 77.612744490675894, + 13.0207426694378 + ], + [ + 77.612743886844996, + 13.0206850825006 + ], + [ + 77.612749747426804, + 13.020558087491301 + ], + [ + 77.612757494682896, + 13.0203902045489 + ], + [ + 77.612752371774903, + 13.020387996738201 + ], + [ + 77.612783692401294, + 13.0203054761134 + ], + [ + 77.612783813847699, + 13.020305459531 + ], + [ + 77.612781693514506, + 13.0201723953965 + ], + [ + 77.612780784349994, + 13.0201152993834 + ], + [ + 77.612779540245597, + 13.0198946193221 + ], + [ + 77.612772244679405, + 13.019579305967 + ], + [ + 77.612720511526604, + 13.018927879676999 + ], + [ + 77.612128839355506, + 13.0191276244053 + ], + [ + 77.611970161770302, + 13.0185928050123 + ], + [ + 77.611923264910502, + 13.018331134127999 + ], + [ + 77.611851900123895, + 13.0180531512926 + ], + [ + 77.611004358324905, + 13.0183963819329 + ], + [ + 77.610879307718506, + 13.018105407010699 + ], + [ + 77.610619668141894, + 13.0175957369937 + ], + [ + 77.609182347356494, + 13.018196220698 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "41", + "group": "Doddanna Industrial", + "Corporatio": "West", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "5", + "ward_id": "24", + "ward_name": "24 - Doddanna Industrial Area", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ದೊಡ್ಡಣ್ಣ ಇಂಡಸ್ಟ್ರಿಯಲ್ ಏರಿಯಾ", + "dig_ward_n": "Doddanna Industrial", + "Assembly": "155 - Dasarahalli", + "Slno": "24" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.506888686579202, + 13.0028243203845 + ], + [ + 77.507568346128195, + 13.0027134393385 + ], + [ + 77.507565391704205, + 13.002699951706701 + ], + [ + 77.5078386115717, + 13.0026430308687 + ], + [ + 77.508140035496695, + 13.0025526036912 + ], + [ + 77.508280699994998, + 13.002517437566601 + ], + [ + 77.508511791670898, + 13.002532508762799 + ], + [ + 77.508687622293706, + 13.0025249731647 + ], + [ + 77.508835822390196, + 13.002474735843901 + ], + [ + 77.509019188611205, + 13.002429522255101 + ], + [ + 77.509130966650005, + 13.002403147661701 + ], + [ + 77.509236465023804, + 13.002601585079001 + ], + [ + 77.509436158374101, + 13.0025237172317 + ], + [ + 77.509516538087396, + 13.0024659443127 + ], + [ + 77.509624548327196, + 13.002375517135199 + ], + [ + 77.509833033208693, + 13.002248667900201 + ], + [ + 77.5101143622053, + 13.002047718616801 + ], + [ + 77.510703394792003, + 13.0016018623945 + ], + [ + 77.510692923371906, + 13.001402905500999 + ], + [ + 77.511288856401507, + 13.0011061045946 + ], + [ + 77.511500441285307, + 13.000829306595101 + ], + [ + 77.511819448272504, + 13.000546721665501 + ], + [ + 77.512140967125802, + 13.000318141855701 + ], + [ + 77.512392153730005, + 13.000222690946099 + ], + [ + 77.513124362681097, + 13.0001322637687 + ], + [ + 77.5133597080942, + 13.0001333898356 + ], + [ + 77.513386415115804, + 13.000102628082701 + ], + [ + 77.513301129853701, + 13.000096677734801 + ], + [ + 77.513300515831304, + 13.0000356984678 + ], + [ + 77.513267429193604, + 12.999780784409801 + ], + [ + 77.513058311421602, + 12.998914334249701 + ], + [ + 77.512788324974295, + 12.9979502187823 + ], + [ + 77.512691729303299, + 12.9979647059917 + ], + [ + 77.512626169241102, + 12.9979732460113 + ], + [ + 77.5124404744099, + 12.9980032770889 + ], + [ + 77.512187514761706, + 12.998044123165799 + ], + [ + 77.512184150953701, + 12.9980531905709 + ], + [ + 77.512148520367703, + 12.998060311497699 + ], + [ + 77.511042254747693, + 12.998282203939 + ], + [ + 77.510663279734601, + 12.9983897702334 + ], + [ + 77.5106483546748, + 12.998394432006799 + ], + [ + 77.510557313745295, + 12.9981370454329 + ], + [ + 77.510516183567304, + 12.9980207633226 + ], + [ + 77.510370907480706, + 12.9974891110577 + ], + [ + 77.510095719031, + 12.997552757167499 + ], + [ + 77.5100904214558, + 12.9975539657528 + ], + [ + 77.510075036137906, + 12.997557474570099 + ], + [ + 77.509544720359997, + 12.9976755371561 + ], + [ + 77.509114738433993, + 12.9978073107306 + ], + [ + 77.509083396805593, + 12.9978170189412 + ], + [ + 77.508877653198397, + 12.9978807516323 + ], + [ + 77.5088340181712, + 12.997893596266 + ], + [ + 77.508599857057504, + 12.997971526121701 + ], + [ + 77.508312317648503, + 12.998066911924401 + ], + [ + 77.508263534486503, + 12.9980831942924 + ], + [ + 77.508024236212904, + 12.998165690761599 + ], + [ + 77.507922070263405, + 12.998201359942399 + ], + [ + 77.507744779987405, + 12.9982632566393 + ], + [ + 77.507439492370295, + 12.998368977273801 + ], + [ + 77.507292013535505, + 12.998420093547599 + ], + [ + 77.507297152934598, + 12.998473123858201 + ], + [ + 77.507306841945194, + 12.998520463423899 + ], + [ + 77.5071196561573, + 12.9985742218393 + ], + [ + 77.506607468752705, + 12.998720337963499 + ], + [ + 77.506044250559896, + 12.9988884036829 + ], + [ + 77.506031255284299, + 12.998834116495001 + ], + [ + 77.504814794170002, + 12.999047187518601 + ], + [ + 77.504826052073795, + 12.9991914933755 + ], + [ + 77.504900763616703, + 12.9996141764884 + ], + [ + 77.504641831830796, + 12.999649997091201 + ], + [ + 77.504267534791893, + 12.999713842547401 + ], + [ + 77.503609175024707, + 12.9997615526828 + ], + [ + 77.503621456374205, + 12.999892553744401 + ], + [ + 77.503441329914395, + 12.999953960492 + ], + [ + 77.502792465281004, + 13.000154555867701 + ], + [ + 77.502261296914, + 13.000374596713399 + ], + [ + 77.502136436527095, + 13.000100313240599 + ], + [ + 77.501759296751999, + 13.000267646627901 + ], + [ + 77.501577123400594, + 13.0003751084363 + ], + [ + 77.501390856266099, + 13.0000639809149 + ], + [ + 77.501263948987699, + 12.999844963515001 + ], + [ + 77.500901649176598, + 13.000009738287799 + ], + [ + 77.500428817219699, + 13.0002369432541 + ], + [ + 77.5002701831217, + 13.0002748107485 + ], + [ + 77.500108478686201, + 13.000327006484 + ], + [ + 77.500222081169397, + 13.000906276803301 + ], + [ + 77.499883531818398, + 13.0009770357167 + ], + [ + 77.499580522534103, + 13.001041864142501 + ], + [ + 77.499826775231497, + 13.0020640498578 + ], + [ + 77.499475477462795, + 13.002149763443001 + ], + [ + 77.499709846549607, + 13.002755643353 + ], + [ + 77.500045772144503, + 13.004053025448 + ], + [ + 77.500046345491498, + 13.004056728761901 + ], + [ + 77.500062935348495, + 13.004163904765599 + ], + [ + 77.500063711634098, + 13.0041689188989 + ], + [ + 77.500210623482403, + 13.0050099003385 + ], + [ + 77.500178833069896, + 13.005023494917801 + ], + [ + 77.499945857494495, + 13.005038566114001 + ], + [ + 77.499977255819999, + 13.0053701324315 + ], + [ + 77.500331428931901, + 13.006551965404 + ], + [ + 77.500611737351704, + 13.0064829664353 + ], + [ + 77.500846639033597, + 13.007111684470001 + ], + [ + 77.502070680135006, + 13.006816932125 + ], + [ + 77.501935585290198, + 13.0059306280674 + ], + [ + 77.501892600566805, + 13.005848752403899 + ], + [ + 77.501872131650899, + 13.005230591144301 + ], + [ + 77.501765693288405, + 13.005222403577999 + ], + [ + 77.501696554287903, + 13.004890977207999 + ], + [ + 77.502602184931206, + 13.0047675010664 + ], + [ + 77.502579232609406, + 13.0044234914262 + ], + [ + 77.502881109073797, + 13.004382332444001 + ], + [ + 77.503095568373993, + 13.0043754825717 + ], + [ + 77.503654081610804, + 13.004341888452201 + ], + [ + 77.503808491093196, + 13.0043238181708 + ], + [ + 77.503711263742701, + 13.0041457386027 + ], + [ + 77.503633047422696, + 13.0035192826402 + ], + [ + 77.503606872271803, + 13.0033402867628 + ], + [ + 77.504358081484597, + 13.003231801508701 + ], + [ + 77.504295016246004, + 13.002924686340799 + ], + [ + 77.504306909194895, + 13.0027446413108 + ], + [ + 77.504315096761303, + 13.0026402498398 + ], + [ + 77.504336579709303, + 13.0025208420067 + ], + [ + 77.504352010943407, + 13.0024696242281 + ], + [ + 77.504363198713506, + 13.002432490343599 + ], + [ + 77.504395800739502, + 13.002237061344299 + ], + [ + 77.5044024621712, + 13.0021842630594 + ], + [ + 77.504408069537504, + 13.0021398177731 + ], + [ + 77.504453261943397, + 13.002078378098901 + ], + [ + 77.504457676676694, + 13.002033890133299 + ], + [ + 77.504495710004207, + 13.0019217162302 + ], + [ + 77.504527776659202, + 13.0018973616284 + ], + [ + 77.5045294328701, + 13.0018943831024 + ], + [ + 77.504532762460499, + 13.001888392455699 + ], + [ + 77.504544348619106, + 13.001867548265301 + ], + [ + 77.504569755576199, + 13.001811923480901 + ], + [ + 77.5045873333424, + 13.001784649156001 + ], + [ + 77.504610872595705, + 13.001735523757899 + ], + [ + 77.504690701367693, + 13.0017488285532 + ], + [ + 77.5047055665286, + 13.0017478936409 + ], + [ + 77.504914835996502, + 13.001719148625201 + ], + [ + 77.505153520188799, + 13.001689739323499 + ], + [ + 77.505515598677604, + 13.001634202624301 + ], + [ + 77.505596684127198, + 13.0016232555976 + ], + [ + 77.505912162070004, + 13.0015569656009 + ], + [ + 77.505943762886403, + 13.0015498834216 + ], + [ + 77.506603521556599, + 13.0014423065379 + ], + [ + 77.506644459388397, + 13.001668488058399 + ], + [ + 77.506664928304204, + 13.001719148625201 + ], + [ + 77.506701772352798, + 13.0019217908924 + ], + [ + 77.5067569321061, + 13.002141545835 + ], + [ + 77.506777507341596, + 13.002266692125 + ], + [ + 77.506811765333794, + 13.0024915597425 + ], + [ + 77.506815356252901, + 13.002505077385599 + ], + [ + 77.5068436099195, + 13.002623387347199 + ], + [ + 77.5068623105049, + 13.0027079087592 + ], + [ + 77.506888686579202, + 13.0028243203845 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "43", + "group": "Nagasandra", + "Corporatio": "West", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "5", + "ward_id": "2", + "ward_name": "2 - Nagasandra", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ನಾಗಸಂದ್ರ", + "dig_ward_n": "Nagasandra", + "Assembly": "155 - Dasarahalli", + "Slno": "2" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.508421115479806, + 13.0346335303154 + ], + [ + 77.508062699397399, + 13.034333551603201 + ], + [ + 77.507592384465497, + 13.0345297982551 + ], + [ + 77.507212215942602, + 13.033390958026899 + ], + [ + 77.507651274188206, + 13.033323410604501 + ], + [ + 77.507407694089295, + 13.03205433782 + ], + [ + 77.507139551291203, + 13.032099369434899 + ], + [ + 77.507108847917394, + 13.03205433782 + ], + [ + 77.506077214557095, + 13.0322682379909 + ], + [ + 77.505926768025304, + 13.0318230390706 + ], + [ + 77.505677047251595, + 13.031303128607201 + ], + [ + 77.5054443343804, + 13.0313374547887 + ], + [ + 77.504637226324903, + 13.0314853019586 + ], + [ + 77.504053862222307, + 13.031555919718301 + ], + [ + 77.503772414628997, + 13.031570247959401 + ], + [ + 77.5037055509992, + 13.031555184883899 + ], + [ + 77.503674613124105, + 13.031571295018599 + ], + [ + 77.503675821637998, + 13.031576930141201 + ], + [ + 77.503651920238298, + 13.031580860079799 + ], + [ + 77.503580951077197, + 13.031592528938001 + ], + [ + 77.503436538073203, + 13.0314922823801 + ], + [ + 77.503395818459296, + 13.0314691446033 + ], + [ + 77.503196156514093, + 13.0313556943532 + ], + [ + 77.503146923954603, + 13.031327936145701 + ], + [ + 77.502983033938094, + 13.0312380417711 + ], + [ + 77.502757784279197, + 13.0311171180789 + ], + [ + 77.5024589003323, + 13.0309472136816 + ], + [ + 77.502411429566493, + 13.0309228263693 + ], + [ + 77.502288134405305, + 13.0308607732988 + ], + [ + 77.501981200235306, + 13.030692075374199 + ], + [ + 77.501740990266995, + 13.030572424498599 + ], + [ + 77.501673262195993, + 13.030538068423001 + ], + [ + 77.501342729584593, + 13.030370726883501 + ], + [ + 77.501229792804295, + 13.030310010633499 + ], + [ + 77.501148748217204, + 13.0302664399933 + ], + [ + 77.500871490742895, + 13.0301279467285 + ], + [ + 77.500851809237503, + 13.0301179724864 + ], + [ + 77.500667731342801, + 13.030024883180699 + ], + [ + 77.500530062992695, + 13.029965226606601 + ], + [ + 77.500275187886103, + 13.029876208518701 + ], + [ + 77.500189631006705, + 13.029844282808901 + ], + [ + 77.500161887429897, + 13.029834386323699 + ], + [ + 77.499845664731197, + 13.029715467064801 + ], + [ + 77.499768779924395, + 13.0296868455953 + ], + [ + 77.499495375558595, + 13.029587841178 + ], + [ + 77.499296529944999, + 13.0295152218012 + ], + [ + 77.499137532426502, + 13.029453511445899 + ], + [ + 77.498842651488999, + 13.0293377729787 + ], + [ + 77.498526611077295, + 13.029236919970501 + ], + [ + 77.498520829770897, + 13.0292347170037 + ], + [ + 77.498270077492094, + 13.0291546918385 + ], + [ + 77.498040022469993, + 13.0290710787108 + ], + [ + 77.498013442083902, + 13.0290623001132 + ], + [ + 77.497690909114496, + 13.0289456974501 + ], + [ + 77.497294507226897, + 13.0288139953478 + ], + [ + 77.497158815139102, + 13.028729927870801 + ], + [ + 77.497091675220702, + 13.0286883322631 + ], + [ + 77.496960326602704, + 13.028597141208699 + ], + [ + 77.496823735276607, + 13.028502310735499 + ], + [ + 77.496568542398705, + 13.0283580194435 + ], + [ + 77.496527183665705, + 13.0283346344665 + ], + [ + 77.496449028521795, + 13.0283028582689 + ], + [ + 77.496315534735103, + 13.0282485834516 + ], + [ + 77.496417161049294, + 13.028711341173199 + ], + [ + 77.496558889148901, + 13.0293566950007 + ], + [ + 77.496655838045498, + 13.0296257695775 + ], + [ + 77.496785601452999, + 13.030074649089601 + ], + [ + 77.496786341227406, + 13.030077205168899 + ], + [ + 77.497106480132899, + 13.031184626684199 + ], + [ + 77.497277331309903, + 13.0317937712764 + ], + [ + 77.497435110923206, + 13.0319634987606 + ], + [ + 77.497870117880296, + 13.0323652815472 + ], + [ + 77.498185122049506, + 13.032656225010101 + ], + [ + 77.498199381371407, + 13.0326898599952 + ], + [ + 77.498213521782404, + 13.0327232151399 + ], + [ + 77.4982532068571, + 13.032816823500699 + ], + [ + 77.498299321331999, + 13.032925598184301 + ], + [ + 77.498314139439401, + 13.0329605513825 + ], + [ + 77.498320281057502, + 13.0330057191413 + ], + [ + 77.498350314386101, + 13.033226570834801 + ], + [ + 77.498406195726204, + 13.033464150652 + ], + [ + 77.498457441847904, + 13.033513394364 + ], + [ + 77.4988072753642, + 13.0336947603426 + ], + [ + 77.498882597507404, + 13.0339849831302 + ], + [ + 77.498944480636794, + 13.034422322807 + ], + [ + 77.499077150472004, + 13.034416075920101 + ], + [ + 77.499083897669905, + 13.0344355379645 + ], + [ + 77.499188468352997, + 13.0348775286514 + ], + [ + 77.499193480245793, + 13.034898443085901 + ], + [ + 77.499202604724303, + 13.034936515785301 + ], + [ + 77.498545641956198, + 13.035090038445601 + ], + [ + 77.498142815192793, + 13.035123539930099 + ], + [ + 77.498112691177894, + 13.035296483396399 + ], + [ + 77.498103751743301, + 13.0353478066835 + ], + [ + 77.498090260910303, + 13.0356285587886 + ], + [ + 77.498187424525597, + 13.035845052998599 + ], + [ + 77.498117033059003, + 13.036223475894699 + ], + [ + 77.498136173644795, + 13.036484769038299 + ], + [ + 77.497919576799106, + 13.036502838960301 + ], + [ + 77.4977140604705, + 13.0370350470314 + ], + [ + 77.497470931771701, + 13.037165387626001 + ], + [ + 77.497427647594805, + 13.037188592163901 + ], + [ + 77.497402902936102, + 13.037316276610801 + ], + [ + 77.497394578388096, + 13.037551932633599 + ], + [ + 77.497291984411305, + 13.0378638556548 + ], + [ + 77.497165968659303, + 13.037873692386301 + ], + [ + 77.496889980109898, + 13.0378952347729 + ], + [ + 77.496877591253593, + 13.037983756512601 + ], + [ + 77.496856613161995, + 13.037985960085701 + ], + [ + 77.496674409852304, + 13.0383139117416 + ], + [ + 77.496377802348505, + 13.0389143642031 + ], + [ + 77.496227305875905, + 13.039221251305699 + ], + [ + 77.496150200280496, + 13.0394689936183 + ], + [ + 77.496148540681602, + 13.039474325775901 + ], + [ + 77.496110645098, + 13.0397491408043 + ], + [ + 77.496129302101593, + 13.040258020516699 + ], + [ + 77.4961624516732, + 13.040602726750199 + ], + [ + 77.496161427275297, + 13.0406298549733 + ], + [ + 77.496137903389396, + 13.0406651834504 + ], + [ + 77.496155659467107, + 13.0407826876577 + ], + [ + 77.496166920719702, + 13.0408572075742 + ], + [ + 77.496231837397502, + 13.041286799537099 + ], + [ + 77.496235892264593, + 13.0413136357294 + ], + [ + 77.496236196932799, + 13.041316539327701 + ], + [ + 77.496287784041897, + 13.041807829217101 + ], + [ + 77.496473279779096, + 13.0417987478565 + ], + [ + 77.496642690863595, + 13.041790453073601 + ], + [ + 77.496658682006, + 13.0419751073279 + ], + [ + 77.497433022959001, + 13.0421247244202 + ], + [ + 77.498027844194397, + 13.042229870059 + ], + [ + 77.4980300477703, + 13.042263662872401 + ], + [ + 77.498038984131597, + 13.0424007094982 + ], + [ + 77.498068554510795, + 13.042529791431701 + ], + [ + 77.498074520242497, + 13.042654479852599 + ], + [ + 77.498023848505198, + 13.042770474983801 + ], + [ + 77.498024953328098, + 13.043041447696201 + ], + [ + 77.498027068724198, + 13.043560502246301 + ], + [ + 77.498021515256596, + 13.0436878298304 + ], + [ + 77.498020323501606, + 13.043715152082401 + ], + [ + 77.498016856138605, + 13.0437946494574 + ], + [ + 77.497981404129106, + 13.043789424377801 + ], + [ + 77.497946781276795, + 13.043820056297401 + ], + [ + 77.497939898073099, + 13.043863152441199 + ], + [ + 77.497983405938896, + 13.043869831176201 + ], + [ + 77.498013376902193, + 13.0438744324503 + ], + [ + 77.498011747747597, + 13.043911788586099 + ], + [ + 77.497984765585599, + 13.0439197874674 + ], + [ + 77.497786220128901, + 13.043978649342201 + ], + [ + 77.497499436943301, + 13.0440461011525 + ], + [ + 77.496972435800899, + 13.0441251090368 + ], + [ + 77.496839336343498, + 13.044169144835699 + ], + [ + 77.496742287127304, + 13.0442012535703 + ], + [ + 77.496432407504898, + 13.0443151308531 + ], + [ + 77.496183134898402, + 13.0443637366761 + ], + [ + 77.495797675998404, + 13.044459861422601 + ], + [ + 77.495745251195501, + 13.044464653249401 + ], + [ + 77.4956835536005, + 13.044467849487599 + ], + [ + 77.495688528901198, + 13.0445601439177 + ], + [ + 77.495706393573002, + 13.044746837472999 + ], + [ + 77.495700719224502, + 13.0451100946153 + ], + [ + 77.495923349538003, + 13.0458845272986 + ], + [ + 77.496009059900601, + 13.0461826725445 + ], + [ + 77.496130928939095, + 13.0466065982513 + ], + [ + 77.496131422076999, + 13.046609455758301 + ], + [ + 77.496140389244204, + 13.0466613869303 + ], + [ + 77.496156548735399, + 13.0467549692892 + ], + [ + 77.496156661240306, + 13.0467556196219 + ], + [ + 77.496253967471503, + 13.0473321317962 + ], + [ + 77.496502686430105, + 13.048805703134899 + ], + [ + 77.496573425360793, + 13.048985503843801 + ], + [ + 77.496602956453103, + 13.0489753282907 + ], + [ + 77.496653601083494, + 13.0489578086513 + ], + [ + 77.496754580830199, + 13.0489228762353 + ], + [ + 77.496760799016997, + 13.0489207246315 + ], + [ + 77.497313608999207, + 13.048736948541499 + ], + [ + 77.497411196139296, + 13.0487043841785 + ], + [ + 77.498295238062795, + 13.048411247837 + ], + [ + 77.498468493098002, + 13.048342942037101 + ], + [ + 77.498578082493907, + 13.0483007015214 + ], + [ + 77.498657828067806, + 13.0482699633636 + ], + [ + 77.498918291805694, + 13.0481680633783 + ], + [ + 77.499136872913397, + 13.048082378879601 + ], + [ + 77.499322176056793, + 13.0480094387355 + ], + [ + 77.499373837480903, + 13.0479919991526 + ], + [ + 77.500115976503096, + 13.047735238589301 + ], + [ + 77.500280710285196, + 13.0476785263584 + ], + [ + 77.500375892865506, + 13.047645758376699 + ], + [ + 77.5006526434546, + 13.0475504828526 + ], + [ + 77.500910972036095, + 13.047465542190301 + ], + [ + 77.501157816365406, + 13.0473841004173 + ], + [ + 77.501421880848397, + 13.047296845122499 + ], + [ + 77.501511438038094, + 13.0472677451218 + ], + [ + 77.502706118741301, + 13.046823645236101 + ], + [ + 77.5028690729185, + 13.0467622126823 + ], + [ + 77.503601648366995, + 13.046515036918199 + ], + [ + 77.503795690755695, + 13.046449565277699 + ], + [ + 77.503889086923195, + 13.0464180521274 + ], + [ + 77.504991144114996, + 13.0460426009813 + ], + [ + 77.505160545638105, + 13.045992398327 + ], + [ + 77.505216877222196, + 13.045976049984001 + ], + [ + 77.505422141448193, + 13.045916480404999 + ], + [ + 77.505483615996596, + 13.0458964421835 + ], + [ + 77.505211480761602, + 13.043860512963899 + ], + [ + 77.505196650380796, + 13.0438273603284 + ], + [ + 77.505074791663205, + 13.043599864711201 + ], + [ + 77.505074935510805, + 13.0435801094719 + ], + [ + 77.505075571674794, + 13.043484430330199 + ], + [ + 77.505046553992798, + 13.0433272379119 + ], + [ + 77.505004588565299, + 13.043099907508701 + ], + [ + 77.504950912460799, + 13.042787725584301 + ], + [ + 77.504950484996797, + 13.0427734618483 + ], + [ + 77.504934537328097, + 13.0421450016257 + ], + [ + 77.504906953071, + 13.0417588918032 + ], + [ + 77.504902058038795, + 13.041732448023399 + ], + [ + 77.504883754540302, + 13.041586617976799 + ], + [ + 77.504877224363597, + 13.0412177597363 + ], + [ + 77.504742129518903, + 13.040323268112401 + ], + [ + 77.504684816554402, + 13.039938452493899 + ], + [ + 77.504664347638496, + 13.039737857118199 + ], + [ + 77.504627503590001, + 13.0395587541043 + ], + [ + 77.504567599825606, + 13.038760988339201 + ], + [ + 77.504561901555803, + 13.0386099558986 + ], + [ + 77.504542557589104, + 13.0384759484543 + ], + [ + 77.5051087341336, + 13.038321398588501 + ], + [ + 77.505955104123103, + 13.0381124066711 + ], + [ + 77.5062029449129, + 13.038043550475701 + ], + [ + 77.506752177058303, + 13.0379468269788 + ], + [ + 77.506892143259705, + 13.037465075974101 + ], + [ + 77.506997804048893, + 13.0373614159846 + ], + [ + 77.507282321979602, + 13.037431010298601 + ], + [ + 77.507626199766307, + 13.0372979623454 + ], + [ + 77.5079137880345, + 13.037051311909099 + ], + [ + 77.507940915925801, + 13.037007406082401 + ], + [ + 77.507947333340596, + 13.0370065036731 + ], + [ + 77.507949204686, + 13.0370043795191 + ], + [ + 77.507996750600498, + 13.036985403786099 + ], + [ + 77.508093927006996, + 13.0369697807274 + ], + [ + 77.508254641630401, + 13.036972741125201 + ], + [ + 77.508284428570093, + 13.036973251214601 + ], + [ + 77.508288820248893, + 13.0369733261184 + ], + [ + 77.508402603967795, + 13.036975273854001 + ], + [ + 77.508619158545798, + 13.0369790726033 + ], + [ + 77.508626075583393, + 13.036979193502701 + ], + [ + 77.508796114989707, + 13.036982176140301 + ], + [ + 77.509024693290499, + 13.036986442585 + ], + [ + 77.509074919586993, + 13.036987379706 + ], + [ + 77.509184662876294, + 13.0369893644462 + ], + [ + 77.509356069999598, + 13.0369924653653 + ], + [ + 77.509359482916494, + 13.0369925271506 + ], + [ + 77.509383797371598, + 13.036992974509699 + ], + [ + 77.509575934163806, + 13.036996507694001 + ], + [ + 77.510442388643199, + 13.037012438908899 + ], + [ + 77.510444449091096, + 13.0370084183002 + ], + [ + 77.510442731954498, + 13.036989561163301 + ], + [ + 77.510441315360694, + 13.0369740060578 + ], + [ + 77.510433511579294, + 13.036507862192501 + ], + [ + 77.510443949635999, + 13.036443680370599 + ], + [ + 77.510385464808493, + 13.036441985142201 + ], + [ + 77.510312744975593, + 13.036381978359801 + ], + [ + 77.510329960371195, + 13.036163960380099 + ], + [ + 77.509397930912797, + 13.036133112832299 + ], + [ + 77.508352994639495, + 13.0361506958945 + ], + [ + 77.508089248705105, + 13.0360753399133 + ], + [ + 77.508287686122401, + 13.035688512542899 + ], + [ + 77.508375601433897, + 13.0352991733065 + ], + [ + 77.508421115479806, + 13.0346335303154 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "42", + "group": "Hegganahalli", + "Corporatio": "West", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "5", + "ward_id": "25", + "ward_name": "25 - Hegganahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ಹೆಗ್ಗನಹಳ್ಳಿ", + "dig_ward_n": "Hegganahalli", + "Assembly": "155 - Dasarahalli", + "Slno": "25" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.506603521556599, + 13.0014423065379 + ], + [ + 77.505943762886403, + 13.0015498834216 + ], + [ + 77.505912162070004, + 13.0015569656009 + ], + [ + 77.505596684127198, + 13.0016232555976 + ], + [ + 77.505515598677604, + 13.001634202624301 + ], + [ + 77.505153520188799, + 13.001689739323499 + ], + [ + 77.504914835996502, + 13.001719148625201 + ], + [ + 77.5047055665286, + 13.0017478936409 + ], + [ + 77.504690701367693, + 13.0017488285532 + ], + [ + 77.504610872595705, + 13.001735523757899 + ], + [ + 77.5045873333424, + 13.001784649156001 + ], + [ + 77.504569755576199, + 13.001811923480901 + ], + [ + 77.504544348619106, + 13.001867548265301 + ], + [ + 77.504532762460499, + 13.001888392455699 + ], + [ + 77.5045294328701, + 13.0018943831024 + ], + [ + 77.504527776659202, + 13.0018973616284 + ], + [ + 77.504495710004207, + 13.0019217162302 + ], + [ + 77.504457676676694, + 13.002033890133299 + ], + [ + 77.504453261943397, + 13.002078378098901 + ], + [ + 77.504408069537504, + 13.0021398177731 + ], + [ + 77.5044024621712, + 13.0021842630594 + ], + [ + 77.504395800739502, + 13.002237061344299 + ], + [ + 77.504363198713506, + 13.002432490343599 + ], + [ + 77.504352010943407, + 13.0024696242281 + ], + [ + 77.504336579709303, + 13.0025208420067 + ], + [ + 77.504315096761303, + 13.0026402498398 + ], + [ + 77.504306909194895, + 13.0027446413108 + ], + [ + 77.504295016246004, + 13.002924686340799 + ], + [ + 77.504358081484597, + 13.003231801508701 + ], + [ + 77.503606872271803, + 13.0033402867628 + ], + [ + 77.503633047422696, + 13.0035192826402 + ], + [ + 77.503711263742701, + 13.0041457386027 + ], + [ + 77.503808491093196, + 13.0043238181708 + ], + [ + 77.503654081610804, + 13.004341888452201 + ], + [ + 77.503095568373993, + 13.0043754825717 + ], + [ + 77.502881109073797, + 13.004382332444001 + ], + [ + 77.502579232609406, + 13.0044234914262 + ], + [ + 77.502602184931206, + 13.0047675010664 + ], + [ + 77.501696554287903, + 13.004890977207999 + ], + [ + 77.501765693288405, + 13.005222403577999 + ], + [ + 77.501872131650899, + 13.005230591144301 + ], + [ + 77.501892600566805, + 13.005848752403899 + ], + [ + 77.501935585290198, + 13.0059306280674 + ], + [ + 77.502070680135006, + 13.006816932125 + ], + [ + 77.502106500737696, + 13.0068906202221 + ], + [ + 77.502176095051695, + 13.0072631544912 + ], + [ + 77.502192022514706, + 13.007256298780799 + ], + [ + 77.502537409656696, + 13.0070982635491 + ], + [ + 77.502631976759204, + 13.0070533061769 + ], + [ + 77.502722615105696, + 13.0070185509464 + ], + [ + 77.502804661570195, + 13.0069883960262 + ], + [ + 77.503171907809303, + 13.0068343307035 + ], + [ + 77.503189306387796, + 13.006962773150599 + ], + [ + 77.503224103544795, + 13.007154157514099 + ], + [ + 77.503239455231693, + 13.007317908841101 + ], + [ + 77.503327984867695, + 13.0079018986701 + ], + [ + 77.5032017322863, + 13.0079533175418 + ], + [ + 77.503197913094894, + 13.008058536045599 + ], + [ + 77.502959031084202, + 13.0081080089941 + ], + [ + 77.503073657013104, + 13.009643177685 + ], + [ + 77.503511394308404, + 13.0096615300475 + ], + [ + 77.503553534741002, + 13.0096672562251 + ], + [ + 77.506083509771997, + 13.0099145229903 + ], + [ + 77.506106152277496, + 13.0099167355185 + ], + [ + 77.506106952792194, + 13.0098900342145 + ], + [ + 77.505949312332802, + 13.009388991627 + ], + [ + 77.505933762490997, + 13.009331544441 + ], + [ + 77.5058530208984, + 13.009033043772 + ], + [ + 77.5058410621441, + 13.0089891142139 + ], + [ + 77.505788898757103, + 13.0087264769772 + ], + [ + 77.505775572864593, + 13.008661102756401 + ], + [ + 77.505717064387895, + 13.0083973974033 + ], + [ + 77.505706810459799, + 13.0083511926388 + ], + [ + 77.505645096867298, + 13.008112364143001 + ], + [ + 77.505615736377607, + 13.007998582235 + ], + [ + 77.505585459773101, + 13.007880735334201 + ], + [ + 77.505564795973399, + 13.007800306642 + ], + [ + 77.505539037906303, + 13.0077011716158 + ], + [ + 77.5054830461969, + 13.007401302242201 + ], + [ + 77.505434361368899, + 13.0071408899157 + ], + [ + 77.5054246380313, + 13.007090162548799 + ], + [ + 77.505389956868001, + 13.006905282177399 + ], + [ + 77.505381927575598, + 13.006860752645 + ], + [ + 77.505368612708295, + 13.006786905331801 + ], + [ + 77.505297409877898, + 13.006405868678501 + ], + [ + 77.505263316145502, + 13.006222111939101 + ], + [ + 77.505251695389106, + 13.006154462446901 + ], + [ + 77.505148625811401, + 13.005570504257999 + ], + [ + 77.506337343811495, + 13.005345546583801 + ], + [ + 77.506813952018007, + 13.005296957949501 + ], + [ + 77.508046940707501, + 13.005171256026999 + ], + [ + 77.508470935201402, + 13.005152814609501 + ], + [ + 77.508446216928306, + 13.004149051382701 + ], + [ + 77.509930953021495, + 13.0040271519619 + ], + [ + 77.511646805980206, + 13.0038862667743 + ], + [ + 77.512472573624606, + 13.0038184605816 + ], + [ + 77.5126152884649, + 13.0043156685465 + ], + [ + 77.512975975920099, + 13.004340769193799 + ], + [ + 77.513447502959195, + 13.004453479245701 + ], + [ + 77.514695420587302, + 13.0045752400237 + ], + [ + 77.514695387983593, + 13.004573924867699 + ], + [ + 77.514697816926798, + 13.004696368897401 + ], + [ + 77.514832109598402, + 13.004698555197599 + ], + [ + 77.514838019929996, + 13.0047556103868 + ], + [ + 77.514964645225504, + 13.004746971596999 + ], + [ + 77.514971337133204, + 13.004661020053501 + ], + [ + 77.516002300318306, + 13.004551664826201 + ], + [ + 77.517702716905603, + 13.0043812047718 + ], + [ + 77.517700801316195, + 13.0043410616543 + ], + [ + 77.517697791661902, + 13.004271071028599 + ], + [ + 77.517699594262197, + 13.0041072974924 + ], + [ + 77.517705021807004, + 13.004074493623699 + ], + [ + 77.517755937386994, + 13.004041248416099 + ], + [ + 77.517758144100199, + 13.003974595236899 + ], + [ + 77.5177510582932, + 13.003900126752299 + ], + [ + 77.517738984020397, + 13.0038449056501 + ], + [ + 77.517738677013298, + 13.0038144793673 + ], + [ + 77.517738402913494, + 13.0037873143339 + ], + [ + 77.517820600620993, + 13.0036013031006 + ], + [ + 77.517982800443605, + 13.003297063029301 + ], + [ + 77.518037279210702, + 13.003217479800201 + ], + [ + 77.518095178534097, + 13.00313447532 + ], + [ + 77.518237086975901, + 13.0030450089002 + ], + [ + 77.518269103599096, + 13.0030221111894 + ], + [ + 77.518286372059194, + 13.0029643466862 + ], + [ + 77.518309643775297, + 13.002873772731 + ], + [ + 77.5183149116978, + 13.0028251594912 + ], + [ + 77.518314273525803, + 13.0027619219907 + ], + [ + 77.5182972510068, + 13.0026728683881 + ], + [ + 77.518288711264901, + 13.002625518482599 + ], + [ + 77.518256056539698, + 13.002585178682599 + ], + [ + 77.518189019739793, + 13.0025045158251 + ], + [ + 77.518142477620302, + 13.0024575346427 + ], + [ + 77.518099675148093, + 13.0024387509609 + ], + [ + 77.5180817001919, + 13.0024265024937 + ], + [ + 77.518077396165296, + 13.002399439808601 + ], + [ + 77.518054643945803, + 13.0023702974117 + ], + [ + 77.518016254144001, + 13.002332271916099 + ], + [ + 77.517986421502698, + 13.002286257926899 + ], + [ + 77.517979352462305, + 13.0022705155837 + ], + [ + 77.517970521860207, + 13.002251402274799 + ], + [ + 77.517935222254806, + 13.0021772075165 + ], + [ + 77.517927349556302, + 13.0021388859273 + ], + [ + 77.517925663317698, + 13.001971758188001 + ], + [ + 77.517929592182497, + 13.0018474913487 + ], + [ + 77.517954745623697, + 13.001715113134599 + ], + [ + 77.517952819295601, + 13.0016383358853 + ], + [ + 77.517951234768702, + 13.0015954358804 + ], + [ + 77.517940505929005, + 13.0015594007002 + ], + [ + 77.517943561922607, + 13.001519843731399 + ], + [ + 77.517941663650404, + 13.001502921866599 + ], + [ + 77.517927810463803, + 13.0014996682046 + ], + [ + 77.517906979416395, + 13.0014897061233 + ], + [ + 77.517898205822604, + 13.0014762390126 + ], + [ + 77.517900235561996, + 13.0014491148718 + ], + [ + 77.517901461653494, + 13.0013994114857 + ], + [ + 77.517912134420797, + 13.0013157358939 + ], + [ + 77.517935081089405, + 13.001250010865 + ], + [ + 77.517951334718006, + 13.001205808455399 + ], + [ + 77.517965376320404, + 13.0011706623214 + ], + [ + 77.517977080576401, + 13.0011321508062 + ], + [ + 77.517974943059897, + 13.001091514869101 + ], + [ + 77.517964237038001, + 13.001057738168299 + ], + [ + 77.517959739399402, + 13.0010114783659 + ], + [ + 77.517958416927399, + 13.000994550914299 + ], + [ + 77.517961837493999, + 13.000991129674899 + ], + [ + 77.517977640638804, + 13.000959354509501 + ], + [ + 77.518003853582698, + 13.000931995764599 + ], + [ + 77.5180559657027, + 13.0009032564097 + ], + [ + 77.518076825620895, + 13.000859009311601 + ], + [ + 77.518103204179596, + 13.000790992282701 + ], + [ + 77.518125147304104, + 13.0007399585631 + ], + [ + 77.518160231051596, + 13.000678633190599 + ], + [ + 77.518187424627101, + 13.0006343246428 + ], + [ + 77.518205462524904, + 13.0005957516794 + ], + [ + 77.518235227408297, + 13.000520925682499 + ], + [ + 77.5182495371117, + 13.000455284443399 + ], + [ + 77.518249320635206, + 13.000433828858 + ], + [ + 77.518240906387206, + 13.000398900582701 + ], + [ + 77.518230798954903, + 13.000367376789001 + ], + [ + 77.518219653880294, + 13.0003471565804 + ], + [ + 77.518217835366499, + 13.000338139407599 + ], + [ + 77.518217698647405, + 13.0003245885111 + ], + [ + 77.518227338949998, + 13.0003098134098 + ], + [ + 77.518262764431299, + 13.000282365277601 + ], + [ + 77.518294746564294, + 13.0002560799006 + ], + [ + 77.518301405373407, + 13.0002311695571 + ], + [ + 77.5183217122092, + 13.000189186524301 + ], + [ + 77.518387061983802, + 13.000102721762699 + ], + [ + 77.518440605010696, + 13.0000446053381 + ], + [ + 77.518452548444202, + 13.000029807886699 + ], + [ + 77.518485944168205, + 13.0000294838693 + ], + [ + 77.518648903651894, + 13.000029032067101 + ], + [ + 77.518691511982695, + 13.0000286186326 + ], + [ + 77.518958734680695, + 13.0000316723312 + ], + [ + 77.519069770610599, + 13.0000215599766 + ], + [ + 77.519109477192103, + 13.000018915931699 + ], + [ + 77.519127089453903, + 13.0000059246121 + ], + [ + 77.519131197577906, + 13.0000028942212 + ], + [ + 77.519152137023895, + 12.9999665517667 + ], + [ + 77.519176166480506, + 12.9998940400849 + ], + [ + 77.519175585225, + 12.9998364488152 + ], + [ + 77.519182974291098, + 12.9996556809135 + ], + [ + 77.519177878412194, + 12.999493103793901 + ], + [ + 77.519189998671806, + 12.9994387773118 + ], + [ + 77.519205032051602, + 12.999387810612401 + ], + [ + 77.519207329744802, + 12.9993301914025 + ], + [ + 77.519206520573107, + 12.9992500153196 + ], + [ + 77.519208943634595, + 12.999204817756199 + ], + [ + 77.519226947109303, + 12.999162857043901 + ], + [ + 77.519251398192296, + 12.9991321272707 + ], + [ + 77.519269333275005, + 12.9990833911141 + ], + [ + 77.519268786225993, + 12.9990291875667 + ], + [ + 77.519281054620606, + 12.998989541213801 + ], + [ + 77.519305089454605, + 12.9989746263951 + ], + [ + 77.519341335683507, + 12.998914419018501 + ], + [ + 77.519362964790901, + 12.998889363383601 + ], + [ + 77.519369002103701, + 12.9988599416625 + ], + [ + 77.519364692611802, + 12.998775282152399 + ], + [ + 77.519342875703501, + 12.998724673082201 + ], + [ + 77.519308653663202, + 12.9987001594732 + ], + [ + 77.519256257235597, + 12.998700667958399 + ], + [ + 77.5192009818809, + 12.998701204370899 + ], + [ + 77.519114978801497, + 12.9987381781955 + ], + [ + 77.519047554967301, + 12.998733185708 + ], + [ + 77.518964031939504, + 12.9987306081222 + ], + [ + 77.518927090530497, + 12.998721931764001 + ], + [ + 77.518892389939296, + 12.9986499899734 + ], + [ + 77.518872933247806, + 12.998605004701099 + ], + [ + 77.518860995950604, + 12.998563334521 + ], + [ + 77.518864297193204, + 12.998491023991599 + ], + [ + 77.518875887310301, + 12.9984412200675 + ], + [ + 77.518885288232298, + 12.9984027309001 + ], + [ + 77.518899540769596, + 12.9983314434643 + ], + [ + 77.518912887077605, + 12.998227413627999 + ], + [ + 77.5189123971154, + 12.9981788562669 + ], + [ + 77.518907129969506, + 12.998113404984499 + ], + [ + 77.518903567391803, + 12.9980456784594 + ], + [ + 77.518886255144594, + 12.997870796943101 + ], + [ + 77.518872260130394, + 12.997796395525199 + ], + [ + 77.518867409291303, + 12.997715129275999 + ], + [ + 77.518865915911604, + 12.997681263217601 + ], + [ + 77.518882927335596, + 12.997655123081501 + ], + [ + 77.518915382341405, + 12.9976186689412 + ], + [ + 77.518932439332602, + 12.997597045767501 + ], + [ + 77.518969038742497, + 12.997571844927201 + ], + [ + 77.5189924293323, + 12.9975501602985 + ], + [ + 77.519008876347101, + 12.9975251549855 + ], + [ + 77.519030967237896, + 12.9974888013961 + ], + [ + 77.519045019961595, + 12.997454784501601 + ], + [ + 77.519058610844397, + 12.997432065602601 + ], + [ + 77.519068296589793, + 12.997421807460199 + ], + [ + 77.518830687820497, + 12.997271650366001 + ], + [ + 77.518651303185706, + 12.9972130679211 + ], + [ + 77.518363872656195, + 12.9971191989841 + ], + [ + 77.517882644352198, + 12.9971362892991 + ], + [ + 77.517827585668599, + 12.997158280953901 + ], + [ + 77.517801168026693, + 12.9971653132628 + ], + [ + 77.517789099380707, + 12.997167689006799 + ], + [ + 77.517745961279203, + 12.997172624755899 + ], + [ + 77.517710285565897, + 12.997175229427 + ], + [ + 77.517598572445195, + 12.997175183383399 + ], + [ + 77.5175622526193, + 12.9971710181646 + ], + [ + 77.517526497188598, + 12.9971657181149 + ], + [ + 77.517493609282198, + 12.9971592609021 + ], + [ + 77.517435375574493, + 12.9971519200959 + ], + [ + 77.517410376317699, + 12.997242510717999 + ], + [ + 77.517387247481807, + 12.997290167798701 + ], + [ + 77.517417263456906, + 12.9976399761024 + ], + [ + 77.517420749422797, + 12.9978714596069 + ], + [ + 77.517432182540503, + 12.9980915725165 + ], + [ + 77.517442274168999, + 12.9984641610361 + ], + [ + 77.517445506125696, + 12.9984991396268 + ], + [ + 77.517463292153096, + 12.998549788017099 + ], + [ + 77.5174887292047, + 12.9985597055146 + ], + [ + 77.517583112450396, + 12.9985542728 + ], + [ + 77.517696576324695, + 12.9985565604687 + ], + [ + 77.517722343675601, + 12.998599225958399 + ], + [ + 77.517721189923407, + 12.9986044104856 + ], + [ + 77.517704715801401, + 12.9986784515918 + ], + [ + 77.517650483128804, + 12.9987252810117 + ], + [ + 77.517559263475107, + 12.998758916894801 + ], + [ + 77.517417226580704, + 12.998778363968199 + ], + [ + 77.517245066575995, + 12.998780033421999 + ], + [ + 77.517102517206496, + 12.9987486644181 + ], + [ + 77.517003516169595, + 12.9987530123922 + ], + [ + 77.5169307215332, + 12.9987864694239 + ], + [ + 77.516854825114507, + 12.998854966456699 + ], + [ + 77.516767207985097, + 12.9989032487504 + ], + [ + 77.5166796884332, + 12.998904097239199 + ], + [ + 77.5165591327345, + 12.9988838082472 + ], + [ + 77.516303044291305, + 12.9988998429359 + ], + [ + 77.516175583884305, + 12.9989372177224 + ], + [ + 77.516088137290097, + 12.999002438465901 + ], + [ + 77.516019907887596, + 12.9990889306511 + ], + [ + 77.515934409504993, + 12.9992331872403 + ], + [ + 77.515591768141107, + 12.9993460552478 + ], + [ + 77.515441396412896, + 12.9993384775919 + ], + [ + 77.515248798654994, + 12.9995978366121 + ], + [ + 77.515152177603696, + 12.999724131151501 + ], + [ + 77.515146481138899, + 12.999787430190599 + ], + [ + 77.515147573516202, + 12.9998958376238 + ], + [ + 77.515160732448393, + 13.000115934214699 + ], + [ + 77.515182485033193, + 13.0002173653257 + ], + [ + 77.515186520127699, + 13.000274923295301 + ], + [ + 77.515162666934799, + 13.000307905703499 + ], + [ + 77.515139264353706, + 13.0003284608466 + ], + [ + 77.515086125482796, + 13.0003696324994 + ], + [ + 77.514988445887994, + 13.0003909073321 + ], + [ + 77.514982892797207, + 13.000411289516901 + ], + [ + 77.514965600836902, + 13.0004667954294 + ], + [ + 77.514924496624403, + 13.00050220368 + ], + [ + 77.514865622523402, + 13.0005456895774 + ], + [ + 77.514788762335698, + 13.0005757974697 + ], + [ + 77.514732300659702, + 13.000572956431199 + ], + [ + 77.514610842829697, + 13.0005775211899 + ], + [ + 77.5145888831197, + 13.0005698284484 + ], + [ + 77.514529936245097, + 13.000548941764499 + ], + [ + 77.514476849679696, + 13.0005381624884 + ], + [ + 77.514446726509902, + 13.0005203846217 + ], + [ + 77.514419830566894, + 13.000479988390801 + ], + [ + 77.514413121450104, + 13.000442784671201 + ], + [ + 77.514424860401107, + 13.000407660954499 + ], + [ + 77.514403631377803, + 13.000358174984299 + ], + [ + 77.514373314845997, + 13.0003211999435 + ], + [ + 77.514346646455394, + 13.000303388593499 + ], + [ + 77.514302162680494, + 13.0002891378737 + ], + [ + 77.514238170274098, + 13.0002818522411 + ], + [ + 77.514191451592794, + 13.0002743992787 + ], + [ + 77.514153649820699, + 13.0002374967068 + ], + [ + 77.514094100199998, + 13.000156759918401 + ], + [ + 77.514031134290093, + 13.0001370413781 + ], + [ + 77.5139890105864, + 13.0001284145143 + ], + [ + 77.513896884092802, + 13.000129306756801 + ], + [ + 77.513727961350995, + 13.000109484930601 + ], + [ + 77.513654226030098, + 13.000106810916099 + ], + [ + 77.513531514381697, + 13.0001012230739 + ], + [ + 77.513386415115804, + 13.000102628082701 + ], + [ + 77.5133597080942, + 13.0001333898356 + ], + [ + 77.513124362681097, + 13.0001322637687 + ], + [ + 77.512392153730005, + 13.000222690946099 + ], + [ + 77.512140967125802, + 13.000318141855701 + ], + [ + 77.511819448272504, + 13.000546721665501 + ], + [ + 77.511500441285307, + 13.000829306595101 + ], + [ + 77.511288856401507, + 13.0011061045946 + ], + [ + 77.510692923371906, + 13.001402905500999 + ], + [ + 77.510703394792003, + 13.0016018623945 + ], + [ + 77.5101143622053, + 13.002047718616801 + ], + [ + 77.509833033208693, + 13.002248667900201 + ], + [ + 77.509624548327196, + 13.002375517135199 + ], + [ + 77.509516538087396, + 13.0024659443127 + ], + [ + 77.509436158374101, + 13.0025237172317 + ], + [ + 77.509236465023804, + 13.002601585079001 + ], + [ + 77.509130966650005, + 13.002403147661701 + ], + [ + 77.509019188611205, + 13.002429522255101 + ], + [ + 77.508835822390196, + 13.002474735843901 + ], + [ + 77.508687622293706, + 13.0025249731647 + ], + [ + 77.508511791670898, + 13.002532508762799 + ], + [ + 77.508280699994998, + 13.002517437566601 + ], + [ + 77.508140035496695, + 13.0025526036912 + ], + [ + 77.5078386115717, + 13.0026430308687 + ], + [ + 77.507565391704205, + 13.002699951706701 + ], + [ + 77.507568346128195, + 13.0027134393385 + ], + [ + 77.506888686579202, + 13.0028243203845 + ], + [ + 77.5068623105049, + 13.0027079087592 + ], + [ + 77.5068436099195, + 13.002623387347199 + ], + [ + 77.506815356252901, + 13.002505077385599 + ], + [ + 77.506811765333794, + 13.0024915597425 + ], + [ + 77.506777507341596, + 13.002266692125 + ], + [ + 77.5067569321061, + 13.002141545835 + ], + [ + 77.506701772352798, + 13.0019217908924 + ], + [ + 77.506664928304204, + 13.001719148625201 + ], + [ + 77.506644459388397, + 13.001668488058399 + ], + [ + 77.506603521556599, + 13.0014423065379 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "122", + "group": "Kusahal nagar", + "Corporatio": "North", + "ac_no": "159", + "ac": "Pulakeshinagar", + "corporat_1": "2", + "ward_id": "69", + "ward_name": "69 - Kushal nagar", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಪುಲಕೇಶಿನಗರ", + "ward_name_": "ಕುಶಾಲ್ ನಗರ", + "dig_ward_n": "Kusahal nagar", + "Assembly": "159 - Pulakeshinagar", + "Slno": "69" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.613454415058399, + 13.0064738071246 + ], + [ + 77.612509811071902, + 13.0068470688212 + ], + [ + 77.612879637844799, + 13.0078970104645 + ], + [ + 77.6121457091715, + 13.0081969937912 + ], + [ + 77.612254481751805, + 13.0086515486793 + ], + [ + 77.613185346043906, + 13.0085158691976 + ], + [ + 77.613188017390598, + 13.008819883441801 + ], + [ + 77.613258363941398, + 13.0091172491879 + ], + [ + 77.613276891057396, + 13.009236765721299 + ], + [ + 77.613290480782595, + 13.009324712283799 + ], + [ + 77.613291115707298, + 13.0093303522636 + ], + [ + 77.613305714617795, + 13.009413229502201 + ], + [ + 77.613349891593501, + 13.009664025577299 + ], + [ + 77.613354146778207, + 13.009685438934699 + ], + [ + 77.6133604683898, + 13.0096842459669 + ], + [ + 77.613362325847305, + 13.00969664928 + ], + [ + 77.613366520388595, + 13.0097261669269 + ], + [ + 77.613418897639406, + 13.010094713430201 + ], + [ + 77.6134466864806, + 13.010765171660401 + ], + [ + 77.6134466864806, + 13.010765171660401 + ], + [ + 77.613343352656898, + 13.0147393782224 + ], + [ + 77.613586087129505, + 13.0147760174365 + ], + [ + 77.614987535953404, + 13.0144027557399 + ], + [ + 77.615197352535901, + 13.0150439414763 + ], + [ + 77.6168698529533, + 13.014508783551699 + ], + [ + 77.617043949624403, + 13.014455956247 + ], + [ + 77.617109926720502, + 13.014435935513101 + ], + [ + 77.617119557705493, + 13.0144342004089 + ], + [ + 77.617119143932399, + 13.014433138552601 + ], + [ + 77.617107384085301, + 13.0144029611424 + ], + [ + 77.617038109829494, + 13.014221847553999 + ], + [ + 77.617020397974898, + 13.014180243254 + ], + [ + 77.616973702654604, + 13.0140655278867 + ], + [ + 77.616816411517704, + 13.0136588427633 + ], + [ + 77.616759371432707, + 13.013511363567799 + ], + [ + 77.616743032192005, + 13.0134691165995 + ], + [ + 77.616742967784205, + 13.013468949213699 + ], + [ + 77.616733983254605, + 13.0134457199545 + ], + [ + 77.6167280595931, + 13.013429969919301 + ], + [ + 77.616727864555898, + 13.0134294704906 + ], + [ + 77.616591705118495, + 13.013081331038199 + ], + [ + 77.616564836629607, + 13.0130126307065 + ], + [ + 77.616483878198395, + 13.012805632530499 + ], + [ + 77.616442545571303, + 13.0126999521481 + ], + [ + 77.616407351599506, + 13.0126099654286 + ], + [ + 77.616355321002601, + 13.0124806240228 + ], + [ + 77.616274036043194, + 13.012288828113199 + ], + [ + 77.616167557410705, + 13.0120375848165 + ], + [ + 77.616167414871398, + 13.012037346848601 + ], + [ + 77.616108997463201, + 13.0119399288194 + ], + [ + 77.616100862579003, + 13.0119263629407 + ], + [ + 77.616013416619296, + 13.011780536227301 + ], + [ + 77.615983554520696, + 13.0117314538898 + ], + [ + 77.615983119515207, + 13.0117307382533 + ], + [ + 77.615965529253998, + 13.0117018256131 + ], + [ + 77.615922596592995, + 13.0116312590129 + ], + [ + 77.615842783648105, + 13.0115008479343 + ], + [ + 77.615822997986896, + 13.011468519010799 + ], + [ + 77.615787892530506, + 13.0114183683791 + ], + [ + 77.615760963898197, + 13.011379899586 + ], + [ + 77.615628329038302, + 13.0111904226265 + ], + [ + 77.615575958671698, + 13.0111115294453 + ], + [ + 77.615437207887894, + 13.010902508017301 + ], + [ + 77.615373579901302, + 13.0108066563905 + ], + [ + 77.615341642350103, + 13.0107585434508 + ], + [ + 77.615323268301694, + 13.0107316613979 + ], + [ + 77.615312293647804, + 13.010715604478801 + ], + [ + 77.615295273534798, + 13.0106907026156 + ], + [ + 77.615294139486906, + 13.0106890436293 + ], + [ + 77.615284916436593, + 13.010675549210299 + ], + [ + 77.6147362140442, + 13.0100615848121 + ], + [ + 77.615720319652098, + 13.009667141086799 + ], + [ + 77.615653859332298, + 13.009380653690201 + ], + [ + 77.615577197835904, + 13.0091536200104 + ], + [ + 77.616392419700801, + 13.0088982906904 + ], + [ + 77.616224108444996, + 13.008217030845501 + ], + [ + 77.615835962079601, + 13.0084574754966 + ], + [ + 77.615355742825002, + 13.0076874979124 + ], + [ + 77.615479198654199, + 13.007607353934899 + ], + [ + 77.615220691696905, + 13.007173212303501 + ], + [ + 77.615005155553106, + 13.006802162739501 + ], + [ + 77.614650475822799, + 13.0069276647979 + ], + [ + 77.614508364112595, + 13.0066089141191 + ], + [ + 77.614147941574899, + 13.0067999721311 + ], + [ + 77.613696250933003, + 13.0070009880114 + ], + [ + 77.613454415058399, + 13.0064738071246 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "44", + "group": "Nelagadaranahalli", + "Corporatio": "West", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "5", + "ward_id": "18", + "ward_name": "18 - Nelagadaranahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ನೆಲಗದರನಹಳ್ಳಿ", + "dig_ward_n": "Nelagadaranahalli", + "Assembly": "155 - Dasarahalli", + "Slno": "18" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.498634192321703, + 13.0249209047533 + ], + [ + 77.496581428618896, + 13.023545921211801 + ], + [ + 77.495627577138904, + 13.022946181976501 + ], + [ + 77.495559970783006, + 13.0229018913987 + ], + [ + 77.495410296921406, + 13.022803837147199 + ], + [ + 77.495393123524906, + 13.022794972986301 + ], + [ + 77.495219794677197, + 13.0227339388282 + ], + [ + 77.494799720840902, + 13.022933704466601 + ], + [ + 77.494832766781002, + 13.0229808116864 + ], + [ + 77.494928497381196, + 13.0232238336674 + ], + [ + 77.494932317340002, + 13.023231064602699 + ], + [ + 77.494996864950593, + 13.023353243455601 + ], + [ + 77.495031007894397, + 13.0234178696754 + ], + [ + 77.495034163807105, + 13.023423843915999 + ], + [ + 77.495118061570395, + 13.0235822246604 + ], + [ + 77.495119279724904, + 13.023584524070699 + ], + [ + 77.495124369366295, + 13.0236128149816 + ], + [ + 77.495148877024604, + 13.0237490482564 + ], + [ + 77.495202665069399, + 13.0240480496351 + ], + [ + 77.495266579044198, + 13.0244033369449 + ], + [ + 77.495267378210301, + 13.0244077789597 + ], + [ + 77.495293701072598, + 13.024554101196699 + ], + [ + 77.495313669121401, + 13.024554476301599 + ], + [ + 77.495333446392493, + 13.0245548478212 + ], + [ + 77.495433245865101, + 13.024936512089701 + ], + [ + 77.495442437556406, + 13.0249716643656 + ], + [ + 77.495519179884397, + 13.0252621874443 + ], + [ + 77.4955278919021, + 13.0252951696213 + ], + [ + 77.495544800636495, + 13.025359181064101 + ], + [ + 77.495669963187098, + 13.025837956838 + ], + [ + 77.496016145046397, + 13.027155982894699 + ], + [ + 77.496136054026394, + 13.0276125149867 + ], + [ + 77.496169927893007, + 13.027741483078399 + ], + [ + 77.496277706049298, + 13.028151823312299 + ], + [ + 77.496296103076403, + 13.0281988797809 + ], + [ + 77.496315534735103, + 13.0282485834516 + ], + [ + 77.496449028521795, + 13.0283028582689 + ], + [ + 77.496527183665705, + 13.0283346344665 + ], + [ + 77.496568542398705, + 13.0283580194435 + ], + [ + 77.496823735276607, + 13.028502310735499 + ], + [ + 77.496960326602704, + 13.028597141208699 + ], + [ + 77.497091675220702, + 13.0286883322631 + ], + [ + 77.497158815139102, + 13.028729927870801 + ], + [ + 77.497294507226897, + 13.0288139953478 + ], + [ + 77.497690909114496, + 13.0289456974501 + ], + [ + 77.498013442083902, + 13.0290623001132 + ], + [ + 77.498040022469993, + 13.0290710787108 + ], + [ + 77.498270077492094, + 13.0291546918385 + ], + [ + 77.498520829770897, + 13.0292347170037 + ], + [ + 77.498526611077295, + 13.029236919970501 + ], + [ + 77.498842651488999, + 13.0293377729787 + ], + [ + 77.499137532426502, + 13.029453511445899 + ], + [ + 77.499296529944999, + 13.0295152218012 + ], + [ + 77.499495375558595, + 13.029587841178 + ], + [ + 77.499768779924395, + 13.0296868455953 + ], + [ + 77.499845664731197, + 13.029715467064801 + ], + [ + 77.500161887429897, + 13.029834386323699 + ], + [ + 77.500189631006705, + 13.029844282808901 + ], + [ + 77.500275187886103, + 13.029876208518701 + ], + [ + 77.500530062992695, + 13.029965226606601 + ], + [ + 77.500667731342801, + 13.030024883180699 + ], + [ + 77.500851809237503, + 13.0301179724864 + ], + [ + 77.500871490742895, + 13.0301279467285 + ], + [ + 77.501148748217204, + 13.0302664399933 + ], + [ + 77.501229792804295, + 13.030310010633499 + ], + [ + 77.501342729584593, + 13.030370726883501 + ], + [ + 77.501673262195993, + 13.030538068423001 + ], + [ + 77.501740990266995, + 13.030572424498599 + ], + [ + 77.501981200235306, + 13.030692075374199 + ], + [ + 77.502288134405305, + 13.0308607732988 + ], + [ + 77.502411429566493, + 13.0309228263693 + ], + [ + 77.5024589003323, + 13.0309472136816 + ], + [ + 77.502757784279197, + 13.0311171180789 + ], + [ + 77.502983033938094, + 13.0312380417711 + ], + [ + 77.503146923954603, + 13.031327936145701 + ], + [ + 77.503196156514093, + 13.0313556943532 + ], + [ + 77.503395818459296, + 13.0314691446033 + ], + [ + 77.503436538073203, + 13.0314922823801 + ], + [ + 77.503580951077197, + 13.031592528938001 + ], + [ + 77.503651920238298, + 13.031580860079799 + ], + [ + 77.503675821637998, + 13.031576930141201 + ], + [ + 77.503674613124105, + 13.031571295018599 + ], + [ + 77.5037055509992, + 13.031555184883899 + ], + [ + 77.503772414628997, + 13.031570247959401 + ], + [ + 77.504053862222307, + 13.031555919718301 + ], + [ + 77.504637226324903, + 13.0314853019586 + ], + [ + 77.5054443343804, + 13.0313374547887 + ], + [ + 77.505677047251595, + 13.031303128607201 + ], + [ + 77.505926768025304, + 13.0318230390706 + ], + [ + 77.506077214557095, + 13.0322682379909 + ], + [ + 77.507108847917394, + 13.03205433782 + ], + [ + 77.507139551291203, + 13.032099369434899 + ], + [ + 77.507407694089295, + 13.03205433782 + ], + [ + 77.507651274188206, + 13.033323410604501 + ], + [ + 77.507212215942602, + 13.033390958026899 + ], + [ + 77.507592384465497, + 13.0345297982551 + ], + [ + 77.508062699397399, + 13.034333551603201 + ], + [ + 77.508421115479806, + 13.0346335303154 + ], + [ + 77.508375601433897, + 13.0352991733065 + ], + [ + 77.508287686122401, + 13.035688512542899 + ], + [ + 77.508089248705105, + 13.0360753399133 + ], + [ + 77.508352994639495, + 13.0361506958945 + ], + [ + 77.509397930912797, + 13.036133112832299 + ], + [ + 77.510329960371195, + 13.036163960380099 + ], + [ + 77.510312744975593, + 13.036381978359801 + ], + [ + 77.510385464808493, + 13.036441985142201 + ], + [ + 77.510443949635999, + 13.036443680370599 + ], + [ + 77.5104914662748, + 13.036434445880699 + ], + [ + 77.511190395144297, + 13.0362986175623 + ], + [ + 77.512978286338395, + 13.035966549866 + ], + [ + 77.513099587872603, + 13.035925521535701 + ], + [ + 77.513526364768694, + 13.037646957361201 + ], + [ + 77.514073367579797, + 13.0375577498996 + ], + [ + 77.514254546451099, + 13.0375041866729 + ], + [ + 77.514381394643294, + 13.0381306743016 + ], + [ + 77.514846089860896, + 13.038123138703501 + ], + [ + 77.514884989060107, + 13.0376003905775 + ], + [ + 77.514950489591001, + 13.0370021865109 + ], + [ + 77.514980996578402, + 13.036802540132401 + ], + [ + 77.514983477251207, + 13.036774912866999 + ], + [ + 77.514984605354599, + 13.036762348936101 + ], + [ + 77.514992450868505, + 13.0367493953998 + ], + [ + 77.514994148122796, + 13.036738075454901 + ], + [ + 77.515025854708099, + 13.0366274119155 + ], + [ + 77.514999130952603, + 13.036598806859599 + ], + [ + 77.515003708772298, + 13.036568245494299 + ], + [ + 77.515015858501201, + 13.0363958760533 + ], + [ + 77.515016501844798, + 13.036389142480401 + ], + [ + 77.515025712856996, + 13.036276563443 + ], + [ + 77.515049763833005, + 13.0361230465739 + ], + [ + 77.515059381258098, + 13.036030178638001 + ], + [ + 77.515065076827199, + 13.0359668796051 + ], + [ + 77.515067739376903, + 13.035945396054901 + ], + [ + 77.515069209303107, + 13.0359306387647 + ], + [ + 77.515108100243296, + 13.035755629533901 + ], + [ + 77.515139827062896, + 13.035519213555499 + ], + [ + 77.515240124750704, + 13.035507955651701 + ], + [ + 77.515493939307603, + 13.035446548904099 + ], + [ + 77.516532225065703, + 13.035327829191999 + ], + [ + 77.518070584241102, + 13.035119330059 + ], + [ + 77.518070509594295, + 13.035119056127201 + ], + [ + 77.517987932366097, + 13.034812676082399 + ], + [ + 77.517869943057406, + 13.0340884393758 + ], + [ + 77.517835647710299, + 13.033877925943299 + ], + [ + 77.517859074641393, + 13.0334609680562 + ], + [ + 77.517877645270403, + 13.033133276028099 + ], + [ + 77.518085105532904, + 13.0325148326092 + ], + [ + 77.518098475647406, + 13.0324749765989 + ], + [ + 77.518204613423194, + 13.0322638855134 + ], + [ + 77.518708054427506, + 13.0310200934963 + ], + [ + 77.5191805847045, + 13.029852268291901 + ], + [ + 77.519199637668805, + 13.0298051698253 + ], + [ + 77.519517700986697, + 13.029018917939901 + ], + [ + 77.519745318867606, + 13.028519790471501 + ], + [ + 77.5188386225214, + 13.0281570524025 + ], + [ + 77.518747825271006, + 13.0281195373512 + ], + [ + 77.518589932169505, + 13.028053311505801 + ], + [ + 77.518001190476099, + 13.027809448360699 + ], + [ + 77.517853533338396, + 13.0277480645408 + ], + [ + 77.517470274670103, + 13.027588738110399 + ], + [ + 77.5174344348478, + 13.0275755341784 + ], + [ + 77.517043572226399, + 13.0274223523018 + ], + [ + 77.5149037097177, + 13.026588214118901 + ], + [ + 77.514596052520204, + 13.0264472087743 + ], + [ + 77.514614508993603, + 13.0264153345769 + ], + [ + 77.511011758816593, + 13.0250617855862 + ], + [ + 77.509444095357907, + 13.0245059133665 + ], + [ + 77.509303706812005, + 13.0240403945567 + ], + [ + 77.508189891339597, + 13.024145813604299 + ], + [ + 77.508485126648793, + 13.025976604972501 + ], + [ + 77.507774855267797, + 13.0260400586117 + ], + [ + 77.507746198785597, + 13.026772845800201 + ], + [ + 77.505745358307607, + 13.026735221159599 + ], + [ + 77.504949131945395, + 13.0264457671055 + ], + [ + 77.504702470994204, + 13.026269310469599 + ], + [ + 77.504561235474696, + 13.025980698755699 + ], + [ + 77.504340171183102, + 13.0258926824174 + ], + [ + 77.504379062123306, + 13.025616352053 + ], + [ + 77.503968848025394, + 13.0255850525771 + ], + [ + 77.503968660359902, + 13.0255846252334 + ], + [ + 77.503370968016199, + 13.025580531450199 + ], + [ + 77.503317748834903, + 13.0259530657192 + ], + [ + 77.502976409075899, + 13.0259684311649 + ], + [ + 77.502513359160901, + 13.0259308366449 + ], + [ + 77.502532652188705, + 13.025742863536401 + ], + [ + 77.502127483075895, + 13.025479700380799 + ], + [ + 77.501780194937297, + 13.0255548894817 + ], + [ + 77.501587257851497, + 13.0253669163229 + ], + [ + 77.501622922600106, + 13.024667617802001 + ], + [ + 77.500898322978003, + 13.024655336452501 + ], + [ + 77.500317005767002, + 13.024618492403899 + ], + [ + 77.499727500989593, + 13.0244260845946 + ], + [ + 77.499547374529897, + 13.024278708400301 + ], + [ + 77.499545383753897, + 13.024287627081501 + ], + [ + 77.499300229426098, + 13.024269569518699 + ], + [ + 77.498991269903001, + 13.0246965867457 + ], + [ + 77.498634192321703, + 13.0249209047533 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "45", + "group": "Parvathi Nagar", + "Corporatio": "West", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "5", + "ward_id": "17", + "ward_name": "17 - MEI Colony", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ಎಂಇಐ ಕಾಲೋನಿ", + "dig_ward_n": "Parvathi Nagar", + "Assembly": "155 - Dasarahalli", + "Slno": "17" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.51989269037, + 13.0125670577691 + ], + [ + 77.519877162526399, + 13.012569838675599 + ], + [ + 77.519866222010094, + 13.0125699449789 + ], + [ + 77.519743476514904, + 13.012618570295199 + ], + [ + 77.519709658138694, + 13.012636409216899 + ], + [ + 77.519686767336395, + 13.012648484373701 + ], + [ + 77.519662628669806, + 13.0126532362991 + ], + [ + 77.519602777939497, + 13.0126572058356 + ], + [ + 77.519564209612597, + 13.0126587098933 + ], + [ + 77.519396715316105, + 13.0126671132063 + ], + [ + 77.519295981550499, + 13.0126714798369 + ], + [ + 77.519207419797496, + 13.012683633642199 + ], + [ + 77.518650028617003, + 13.0126890475376 + ], + [ + 77.518603296151795, + 13.0126804665859 + ], + [ + 77.518549653878594, + 13.0126719527295 + ], + [ + 77.518541005210594, + 13.0126709073696 + ], + [ + 77.518539538586893, + 13.0126703840416 + ], + [ + 77.518148757697205, + 13.0127713397543 + ], + [ + 77.518249311246393, + 13.0132385427593 + ], + [ + 77.5178969900319, + 13.013377219664401 + ], + [ + 77.517942021646803, + 13.0136433155708 + ], + [ + 77.518597026955007, + 13.0135532523409 + ], + [ + 77.518709386709403, + 13.014607718362701 + ], + [ + 77.518713699775503, + 13.0146892771722 + ], + [ + 77.518169226613097, + 13.014771152835699 + ], + [ + 77.518292040108406, + 13.015567393663501 + ], + [ + 77.518316602807502, + 13.0156799727008 + ], + [ + 77.518315589701103, + 13.0156815672457 + ], + [ + 77.518375459566698, + 13.015864186877799 + ], + [ + 77.517688718812806, + 13.015981377487099 + ], + [ + 77.517588421124998, + 13.016031782192499 + ], + [ + 77.517524455762896, + 13.0161098199343 + ], + [ + 77.517518315088097, + 13.016180181832601 + ], + [ + 77.517663900252302, + 13.0173814513333 + ], + [ + 77.518794807854704, + 13.017242262705301 + ], + [ + 77.518827558120094, + 13.017516546178101 + ], + [ + 77.518848027036, + 13.01807330069 + ], + [ + 77.517697673963596, + 13.018024175291901 + ], + [ + 77.517601214197398, + 13.0180474586837 + ], + [ + 77.517558485335599, + 13.0181838328357 + ], + [ + 77.517557149672797, + 13.018183780756299 + ], + [ + 77.515514560211201, + 13.018885384658899 + ], + [ + 77.515121311913504, + 13.0181481129771 + ], + [ + 77.515118441227102, + 13.0181428626839 + ], + [ + 77.515029523432204, + 13.017976317741001 + ], + [ + 77.514018898056904, + 13.0177046043427 + ], + [ + 77.515029523432204, + 13.017976317741001 + ], + [ + 77.515118441227102, + 13.0181428626839 + ], + [ + 77.513826586231303, + 13.018794957481401 + ], + [ + 77.5139170134088, + 13.0190009304968 + ], + [ + 77.514232050770403, + 13.019512989943101 + ], + [ + 77.515066584601897, + 13.0204628365329 + ], + [ + 77.512142154332196, + 13.0222811980719 + ], + [ + 77.5101346790413, + 13.023425662377701 + ], + [ + 77.510716994038603, + 13.0242940344224 + ], + [ + 77.511110265110503, + 13.025062156155601 + ], + [ + 77.511011758816593, + 13.0250617855862 + ], + [ + 77.514614508993603, + 13.0264153345769 + ], + [ + 77.514596052520204, + 13.0264472087743 + ], + [ + 77.5149037097177, + 13.026588214118901 + ], + [ + 77.517043572226399, + 13.0274223523018 + ], + [ + 77.5174344348478, + 13.0275755341784 + ], + [ + 77.517470274670103, + 13.027588738110399 + ], + [ + 77.517853533338396, + 13.0277480645408 + ], + [ + 77.518001190476099, + 13.027809448360699 + ], + [ + 77.518589932169505, + 13.028053311505801 + ], + [ + 77.518747825271006, + 13.0281195373512 + ], + [ + 77.5188386225214, + 13.0281570524025 + ], + [ + 77.519745318867606, + 13.028519790471501 + ], + [ + 77.519950985042797, + 13.0280141003895 + ], + [ + 77.520184238771805, + 13.027446027734801 + ], + [ + 77.520312047467698, + 13.0271003331227 + ], + [ + 77.520553656359496, + 13.0264474779962 + ], + [ + 77.520588410464498, + 13.0263534039773 + ], + [ + 77.520767719939997, + 13.025896371341499 + ], + [ + 77.520783224176697, + 13.0258568541327 + ], + [ + 77.520789398500099, + 13.0258409831878 + ], + [ + 77.520836558247296, + 13.025720813459399 + ], + [ + 77.521227876727195, + 13.0247243091739 + ], + [ + 77.521273320035903, + 13.024605285479501 + ], + [ + 77.521380471688005, + 13.024324164605799 + ], + [ + 77.521480377219206, + 13.0240668305358 + ], + [ + 77.521648186201503, + 13.023804318299099 + ], + [ + 77.521825951314, + 13.0236151167054 + ], + [ + 77.521931807507002, + 13.023547455028799 + ], + [ + 77.522007338405302, + 13.0234992873596 + ], + [ + 77.522390304043, + 13.0232924419031 + ], + [ + 77.522467268968995, + 13.023250871817901 + ], + [ + 77.522527412043999, + 13.0232186646691 + ], + [ + 77.523208864610098, + 13.0228370874188 + ], + [ + 77.523501494105901, + 13.0226738709075 + ], + [ + 77.523648981278697, + 13.022622743479101 + ], + [ + 77.523994446093894, + 13.0225019271299 + ], + [ + 77.524987844876605, + 13.022159093425699 + ], + [ + 77.525146237854898, + 13.022104470957901 + ], + [ + 77.525962100348806, + 13.0218028908166 + ], + [ + 77.526785640961293, + 13.0215204324223 + ], + [ + 77.526601498443597, + 13.0213641194975 + ], + [ + 77.526507159955301, + 13.0212611395051 + ], + [ + 77.526177911180199, + 13.021049773462799 + ], + [ + 77.525951260736093, + 13.0209040383483 + ], + [ + 77.525533315270096, + 13.0206348097775 + ], + [ + 77.5253918850986, + 13.0205447108935 + ], + [ + 77.525325607929801, + 13.020498328013201 + ], + [ + 77.5250560636199, + 13.0203096908751 + ], + [ + 77.524379537370805, + 13.019869059735599 + ], + [ + 77.524280326685997, + 13.0197966184493 + ], + [ + 77.524242657444702, + 13.019773269027199 + ], + [ + 77.523852122570503, + 13.019537650522899 + ], + [ + 77.523743756036097, + 13.019470944857799 + ], + [ + 77.523166581284499, + 13.0191163021222 + ], + [ + 77.523029343550306, + 13.019041971686599 + ], + [ + 77.523017667113905, + 13.019035579393799 + ], + [ + 77.5228955723002, + 13.018968736772599 + ], + [ + 77.522761258371602, + 13.0188781124019 + ], + [ + 77.522671171526397, + 13.018817329470799 + ], + [ + 77.522408427777506, + 13.018575947237601 + ], + [ + 77.522147566762399, + 13.0183219771412 + ], + [ + 77.522136231295093, + 13.018310940314301 + ], + [ + 77.522098676718102, + 13.0182988828643 + ], + [ + 77.522004508086496, + 13.018269306631799 + ], + [ + 77.521986383154001, + 13.0182423786179 + ], + [ + 77.5219832408889, + 13.0179318385667 + ], + [ + 77.522016080900102, + 13.017421053917801 + ], + [ + 77.522035025808194, + 13.0169713476603 + ], + [ + 77.522035119463894, + 13.016969129613701 + ], + [ + 77.522101770588094, + 13.016476814733499 + ], + [ + 77.522102634774399, + 13.0164704304813 + ], + [ + 77.522141756461906, + 13.0161820662439 + ], + [ + 77.522172720372197, + 13.0159908203439 + ], + [ + 77.522195415363001, + 13.015850645384299 + ], + [ + 77.522293295948998, + 13.0153934367627 + ], + [ + 77.522320254432898, + 13.015268946274301 + ], + [ + 77.522348574753494, + 13.015108303414801 + ], + [ + 77.522379061236705, + 13.014934087313501 + ], + [ + 77.522409779988195, + 13.014817708718301 + ], + [ + 77.522436741495298, + 13.014715562121101 + ], + [ + 77.522592802176206, + 13.014260046246299 + ], + [ + 77.522613467648895, + 13.0141966017491 + ], + [ + 77.522691084205206, + 13.013956425011701 + ], + [ + 77.522766557343303, + 13.0137320799892 + ], + [ + 77.522803071425201, + 13.0136413769706 + ], + [ + 77.522838456702999, + 13.0135529436273 + ], + [ + 77.5229033204849, + 13.0133614528882 + ], + [ + 77.522997269670299, + 13.013084978134 + ], + [ + 77.523033612213993, + 13.012977336570399 + ], + [ + 77.523035088279102, + 13.0129524765703 + ], + [ + 77.523033719543506, + 13.012931032289 + ], + [ + 77.5230202700983, + 13.012910834886799 + ], + [ + 77.523003388612096, + 13.0128929295677 + ], + [ + 77.522972778954497, + 13.012884192582501 + ], + [ + 77.522939233088493, + 13.0128698374218 + ], + [ + 77.522903845519593, + 13.012844206699199 + ], + [ + 77.522884672207894, + 13.012827453013101 + ], + [ + 77.522870738369804, + 13.0128162950913 + ], + [ + 77.522849871891395, + 13.012802945915601 + ], + [ + 77.522827704488506, + 13.0127946137574 + ], + [ + 77.5228059385054, + 13.012786433090399 + ], + [ + 77.522733881548405, + 13.0127792286149 + ], + [ + 77.522659937199094, + 13.0127562316124 + ], + [ + 77.522572116159196, + 13.0127277228273 + ], + [ + 77.522561820019604, + 13.012734599063601 + ], + [ + 77.522525486501806, + 13.0127293057381 + ], + [ + 77.522488600016501, + 13.0127262764812 + ], + [ + 77.522448845875303, + 13.012724404459 + ], + [ + 77.522377997676401, + 13.0127228348613 + ], + [ + 77.522305239258998, + 13.0127032142574 + ], + [ + 77.522196078802907, + 13.012671524835699 + ], + [ + 77.522148553502404, + 13.0126414946448 + ], + [ + 77.522052534049195, + 13.0125995132212 + ], + [ + 77.522000607837597, + 13.012589854061501 + ], + [ + 77.521861550713794, + 13.012562972609899 + ], + [ + 77.521716102532295, + 13.012530506480701 + ], + [ + 77.521401010559998, + 13.012464679846801 + ], + [ + 77.521351867216097, + 13.0125024261328 + ], + [ + 77.521243466990001, + 13.0126028626769 + ], + [ + 77.5212248761067, + 13.012643699965899 + ], + [ + 77.521186163013695, + 13.012620948163899 + ], + [ + 77.5211171234874, + 13.012580374607801 + ], + [ + 77.5210135728842, + 13.0125339485809 + ], + [ + 77.520823176839698, + 13.012498530807401 + ], + [ + 77.520577570970204, + 13.012470425576799 + ], + [ + 77.520485959133794, + 13.012465669201999 + ], + [ + 77.520481928420907, + 13.012465708375601 + ], + [ + 77.520349120360507, + 13.012470100716699 + ], + [ + 77.520336856987896, + 13.012470506298 + ], + [ + 77.520307000985298, + 13.012475520737601 + ], + [ + 77.5201298941098, + 13.012505268660499 + ], + [ + 77.520030033018102, + 13.012538990174001 + ], + [ + 77.520001333491706, + 13.0125483038449 + ], + [ + 77.519910502831195, + 13.0125638679737 + ], + [ + 77.51989269037, + 13.0125670577691 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "46", + "group": "K Kamraj Ward", + "Corporatio": "Central", + "ac_no": "162", + "ac": "Shivajinagar", + "corporat_1": "1", + "ward_id": "5", + "ward_name": "5 - K Kamaraj Ward", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಿವಾಜಿನಗರ", + "ward_name_": "ಕೆ ಕಾಮರಾಜ್ ವಾರ್ಡ್", + "dig_ward_n": "K Kamraj Ward", + "Assembly": "162 - Shivajinagar", + "Slno": "5" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.611773121331694, + 12.984385075717499 + ], + [ + 77.611773118914797, + 12.9843848444657 + ], + [ + 77.611686884968506, + 12.984254062153401 + ], + [ + 77.611276518916199, + 12.9838903496386 + ], + [ + 77.611067750347104, + 12.9836711494137 + ], + [ + 77.611059250875698, + 12.9836622249758 + ], + [ + 77.6110183230318, + 12.9836192520195 + ], + [ + 77.611001438728806, + 12.983601353202101 + ], + [ + 77.610971267395399, + 12.983545349593401 + ], + [ + 77.610943500142298, + 12.983493810030801 + ], + [ + 77.6107362138235, + 12.9832048737722 + ], + [ + 77.610646666924794, + 12.9830720265435 + ], + [ + 77.610645349831799, + 12.9830695824629 + ], + [ + 77.610645304856803, + 12.9830695982729 + ], + [ + 77.610371894107899, + 12.983139934777199 + ], + [ + 77.610145320464397, + 12.9832133314126 + ], + [ + 77.610104613452194, + 12.9832308899773 + ], + [ + 77.610246765797399, + 12.983878673495299 + ], + [ + 77.610372645601004, + 12.9845414109001 + ], + [ + 77.610374947903694, + 12.984761811861199 + ], + [ + 77.6103225230991, + 12.985060945071099 + ], + [ + 77.610228248675199, + 12.9852929087081 + ], + [ + 77.610039971524699, + 12.9854937513512 + ], + [ + 77.609729934744394, + 12.985597025293201 + ], + [ + 77.609691578537095, + 12.985618091075899 + ], + [ + 77.609599635485395, + 12.9856301114077 + ], + [ + 77.609553921101707, + 12.9856361189794 + ], + [ + 77.609505210479995, + 12.985650731490599 + ], + [ + 77.609357246008301, + 12.985666845198899 + ], + [ + 77.609297183983799, + 12.9856780408502 + ], + [ + 77.609276680611103, + 12.985684803998501 + ], + [ + 77.609254602749303, + 12.985688556537101 + ], + [ + 77.6092376415139, + 12.9856897356744 + ], + [ + 77.609162276657401, + 12.985731365870601 + ], + [ + 77.609161041813707, + 12.9857263886587 + ], + [ + 77.6091515785144, + 12.985727680725599 + ], + [ + 77.609218801017505, + 12.986102022399001 + ], + [ + 77.609346447768701, + 12.986521656689799 + ], + [ + 77.609342482332707, + 12.9865224996596 + ], + [ + 77.6094240846395, + 12.9870679105607 + ], + [ + 77.609573551780599, + 12.9877372654654 + ], + [ + 77.609573677861405, + 12.9877378703963 + ], + [ + 77.609656608166006, + 12.988179297074799 + ], + [ + 77.609660098687996, + 12.9881881959681 + ], + [ + 77.609750430223698, + 12.988654072509901 + ], + [ + 77.610202465562594, + 12.9886040822472 + ], + [ + 77.610364752980701, + 12.9885802577859 + ], + [ + 77.6106396263108, + 12.988532085657001 + ], + [ + 77.610861391990198, + 12.9884903873608 + ], + [ + 77.611124292408505, + 12.988447392717701 + ], + [ + 77.611158257355001, + 12.988449068924499 + ], + [ + 77.611255122827899, + 12.988415813482 + ], + [ + 77.611266396738998, + 12.988387201413801 + ], + [ + 77.611349506673704, + 12.9883419785542 + ], + [ + 77.6114092332664, + 12.9884954731052 + ], + [ + 77.611480489788903, + 12.988687041714501 + ], + [ + 77.611891550212604, + 12.9895214943746 + ], + [ + 77.611951290249607, + 12.989510797926901 + ], + [ + 77.611953313287799, + 12.9895115879541 + ], + [ + 77.612818304622294, + 12.989336890875199 + ], + [ + 77.613280721953203, + 12.9892386381569 + ], + [ + 77.613280943535301, + 12.989238596177101 + ], + [ + 77.613353137451497, + 12.9893869036728 + ], + [ + 77.613945483151994, + 12.9906037382056 + ], + [ + 77.613957499904203, + 12.990596863295799 + ], + [ + 77.613967192664902, + 12.990587731539801 + ], + [ + 77.6140407637496, + 12.990520363828599 + ], + [ + 77.614995581846401, + 12.9899314343944 + ], + [ + 77.615739607993603, + 12.989502723425799 + ], + [ + 77.615788248597198, + 12.9894740026468 + ], + [ + 77.615797373418701, + 12.9894691497362 + ], + [ + 77.616656296667102, + 12.989012420034401 + ], + [ + 77.617204581560998, + 12.988696346252 + ], + [ + 77.617262303140507, + 12.9886551108498 + ], + [ + 77.617300533125402, + 12.9886219767386 + ], + [ + 77.617458456609498, + 12.988478660839499 + ], + [ + 77.617541634331602, + 12.988403175964001 + ], + [ + 77.6178587272139, + 12.9881154219495 + ], + [ + 77.617951754875094, + 12.988030995065699 + ], + [ + 77.618227927335198, + 12.987780357201601 + ], + [ + 77.6182302065275, + 12.987778075685499 + ], + [ + 77.618255118919507, + 12.9877611285361 + ], + [ + 77.618276668794707, + 12.9877464683991 + ], + [ + 77.618518343034907, + 12.9875820659731 + ], + [ + 77.618621360151806, + 12.9875123136365 + ], + [ + 77.618780761311399, + 12.987404383623399 + ], + [ + 77.619014428104194, + 12.987230377831599 + ], + [ + 77.619066295181696, + 12.987191751505801 + ], + [ + 77.619078987480407, + 12.9871822984747 + ], + [ + 77.619306630895807, + 12.987202588892499 + ], + [ + 77.620019521880494, + 12.987265415298401 + ], + [ + 77.620076514654002, + 12.987374379842599 + ], + [ + 77.621156715457801, + 12.987488832578601 + ], + [ + 77.622546458386907, + 12.9876916268336 + ], + [ + 77.622525699071304, + 12.9867288488279 + ], + [ + 77.622508311983907, + 12.9859224468369 + ], + [ + 77.622497860037399, + 12.985584900772301 + ], + [ + 77.622496794607699, + 12.9852362066678 + ], + [ + 77.622493369613395, + 12.9841146372042 + ], + [ + 77.622515269204598, + 12.983842262229301 + ], + [ + 77.622790777471707, + 12.9824437046941 + ], + [ + 77.622928483611901, + 12.9817399093882 + ], + [ + 77.62285531194, + 12.9814589411867 + ], + [ + 77.622314003239396, + 12.9809743932269 + ], + [ + 77.621950843936403, + 12.9800458425666 + ], + [ + 77.621780896497398, + 12.9796447921052 + ], + [ + 77.621580750085997, + 12.979211179693401 + ], + [ + 77.621168008073298, + 12.978899822692901 + ], + [ + 77.620696017993694, + 12.978749212702301 + ], + [ + 77.620560849981302, + 12.978643011781401 + ], + [ + 77.620286882256707, + 12.978084053796399 + ], + [ + 77.620220150802396, + 12.976949335687401 + ], + [ + 77.620261538808904, + 12.976712279193899 + ], + [ + 77.620301035887906, + 12.9762947741792 + ], + [ + 77.620269531575602, + 12.9759437977721 + ], + [ + 77.620038455157498, + 12.974709146958199 + ], + [ + 77.620045756118301, + 12.9737327877535 + ], + [ + 77.620129587312803, + 12.972709756604299 + ], + [ + 77.620032802199205, + 12.972723038036101 + ], + [ + 77.620019127543102, + 12.9727249157832 + ], + [ + 77.619897248149698, + 12.972741952526601 + ], + [ + 77.619684408485796, + 12.9727045720312 + ], + [ + 77.619597526775905, + 12.972650370296 + ], + [ + 77.619579262889104, + 12.9726389769584 + ], + [ + 77.619322784097207, + 12.972478972050601 + ], + [ + 77.6193010501771, + 12.972492742219099 + ], + [ + 77.618774266351295, + 12.972611952909601 + ], + [ + 77.6187370097919, + 12.9726203838473 + ], + [ + 77.618213086231805, + 12.972739047936599 + ], + [ + 77.617713069040306, + 12.9728522956385 + ], + [ + 77.617667974239694, + 12.972862509181001 + ], + [ + 77.617653498026002, + 12.972865787948599 + ], + [ + 77.617140598373396, + 12.972981952257999 + ], + [ + 77.616408797080993, + 12.973147695210599 + ], + [ + 77.615862293050299, + 12.9732714678207 + ], + [ + 77.615762593999406, + 12.973294047951001 + ], + [ + 77.6151076160439, + 12.973442387350399 + ], + [ + 77.6138530396031, + 12.973726520172001 + ], + [ + 77.613853501557799, + 12.973727884212799 + ], + [ + 77.613860090543398, + 12.973747335509801 + ], + [ + 77.614244338373794, + 12.9748817462152 + ], + [ + 77.614272857148904, + 12.9749659411497 + ], + [ + 77.614291616828794, + 12.975021323804301 + ], + [ + 77.614337878298599, + 12.975157900495301 + ], + [ + 77.614387117847798, + 12.9753032682314 + ], + [ + 77.612478172501994, + 12.9759322678389 + ], + [ + 77.611778327994301, + 12.9761628661006 + ], + [ + 77.611434477522394, + 12.9762761626195 + ], + [ + 77.608921889596104, + 12.977104029989 + ], + [ + 77.608877101267794, + 12.977118144632801 + ], + [ + 77.608845918656002, + 12.977127971505499 + ], + [ + 77.608773831624902, + 12.977150687832999 + ], + [ + 77.608728577707396, + 12.977165386221399 + ], + [ + 77.6087423200552, + 12.977204478655301 + ], + [ + 77.608780916398899, + 12.9773142739802 + ], + [ + 77.609351388620894, + 12.978937099107201 + ], + [ + 77.609689934767005, + 12.979900149561299 + ], + [ + 77.610061880985, + 12.9809581983619 + ], + [ + 77.610117160375296, + 12.980942815345299 + ], + [ + 77.610113958827498, + 12.9809338755932 + ], + [ + 77.610882656153393, + 12.9806954044778 + ], + [ + 77.610909497013594, + 12.9807223242915 + ], + [ + 77.611295125535804, + 12.9811236898129 + ], + [ + 77.611415467503704, + 12.981247969120099 + ], + [ + 77.612241639426401, + 12.982128665121101 + ], + [ + 77.612367612739007, + 12.982262686402301 + ], + [ + 77.612369661289307, + 12.982264865644099 + ], + [ + 77.612370324572296, + 12.9822655708737 + ], + [ + 77.612438910576003, + 12.982338539277899 + ], + [ + 77.612465659161103, + 12.9823669974179 + ], + [ + 77.612641114966294, + 12.98256469208 + ], + [ + 77.612726188055603, + 12.982660548155501 + ], + [ + 77.612764196902503, + 12.982703374902499 + ], + [ + 77.612768741404096, + 12.982708494981001 + ], + [ + 77.612771841918203, + 12.982711988058901 + ], + [ + 77.612848528726303, + 12.9827924672246 + ], + [ + 77.612863853800903, + 12.9828085503488 + ], + [ + 77.612966233497204, + 12.982892933963001 + ], + [ + 77.612794937160899, + 12.9830494107549 + ], + [ + 77.612780297210605, + 12.9831006265856 + ], + [ + 77.612768728691805, + 12.9831410978543 + ], + [ + 77.612560389131502, + 12.983825114322 + ], + [ + 77.612465744942398, + 12.9842010538958 + ], + [ + 77.612460434410096, + 12.984201265384501 + ], + [ + 77.6123448494115, + 12.984336284763801 + ], + [ + 77.612246539113798, + 12.9844306519444 + ], + [ + 77.612201534322793, + 12.984479905296 + ], + [ + 77.612041016524898, + 12.984574328943699 + ], + [ + 77.611867059108405, + 12.9845639719035 + ], + [ + 77.611851606169594, + 12.9844771610901 + ], + [ + 77.611839543642304, + 12.9844774350136 + ], + [ + 77.611826829035294, + 12.9844777236216 + ], + [ + 77.611773121331694, + 12.984385075717499 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "47", + "group": "Rajagopala Nagara", + "Corporatio": "West", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "5", + "ward_id": "26", + "ward_name": "26 - Rajagopala Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ರಾಜಗೋಪಾಲ ನಗರ", + "dig_ward_n": "Rajagopala Nagara", + "Assembly": "155 - Dasarahalli", + "Slno": "26" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.5126152884649, + 13.0043156685465 + ], + [ + 77.512472573624606, + 13.0038184605816 + ], + [ + 77.511646805980206, + 13.0038862667743 + ], + [ + 77.509930953021495, + 13.0040271519619 + ], + [ + 77.508446216928306, + 13.004149051382701 + ], + [ + 77.508470935201402, + 13.005152814609501 + ], + [ + 77.508046940707501, + 13.005171256026999 + ], + [ + 77.506813952018007, + 13.005296957949501 + ], + [ + 77.506337343811495, + 13.005345546583801 + ], + [ + 77.505148625811401, + 13.005570504257999 + ], + [ + 77.505251695389106, + 13.006154462446901 + ], + [ + 77.505263316145502, + 13.006222111939101 + ], + [ + 77.505297409877898, + 13.006405868678501 + ], + [ + 77.505368612708295, + 13.006786905331801 + ], + [ + 77.505381927575598, + 13.006860752645 + ], + [ + 77.505389956868001, + 13.006905282177399 + ], + [ + 77.5054246380313, + 13.007090162548799 + ], + [ + 77.505434361368899, + 13.0071408899157 + ], + [ + 77.5054830461969, + 13.007401302242201 + ], + [ + 77.505539037906303, + 13.0077011716158 + ], + [ + 77.505564795973399, + 13.007800306642 + ], + [ + 77.505585459773101, + 13.007880735334201 + ], + [ + 77.505615736377607, + 13.007998582235 + ], + [ + 77.505645096867298, + 13.008112364143001 + ], + [ + 77.505706810459799, + 13.0083511926388 + ], + [ + 77.505717064387895, + 13.0083973974033 + ], + [ + 77.505775572864593, + 13.008661102756401 + ], + [ + 77.505788898757103, + 13.0087264769772 + ], + [ + 77.5058410621441, + 13.0089891142139 + ], + [ + 77.5058530208984, + 13.009033043772 + ], + [ + 77.505933762490997, + 13.009331544441 + ], + [ + 77.505949312332802, + 13.009388991627 + ], + [ + 77.506106952792194, + 13.0098900342145 + ], + [ + 77.506142217572204, + 13.0098933544375 + ], + [ + 77.506193991880707, + 13.0098982290616 + ], + [ + 77.506226768032903, + 13.009893394939599 + ], + [ + 77.506287614043202, + 13.0099831378172 + ], + [ + 77.506496824156798, + 13.010291708471 + ], + [ + 77.506678042059903, + 13.0105595084332 + ], + [ + 77.506692039610698, + 13.010580193139701 + ], + [ + 77.5069007536963, + 13.0108886244219 + ], + [ + 77.506939911558405, + 13.0109458433084 + ], + [ + 77.507010005106196, + 13.0109782831655 + ], + [ + 77.507413179214495, + 13.0111648808415 + ], + [ + 77.5078813447074, + 13.011391873114899 + ], + [ + 77.507896959966502, + 13.01139849828 + ], + [ + 77.508214390878607, + 13.0115253049879 + ], + [ + 77.508339256290398, + 13.011572659846401 + ], + [ + 77.508356599027195, + 13.011579268272699 + ], + [ + 77.508481093132602, + 13.0116469551016 + ], + [ + 77.5085292723858, + 13.0116848873097 + ], + [ + 77.5085905286479, + 13.011763349932499 + ], + [ + 77.508757992933894, + 13.011980825652699 + ], + [ + 77.508930708085501, + 13.0122050265644 + ], + [ + 77.508934784278196, + 13.0122095045647 + ], + [ + 77.509078492813899, + 13.0124125281266 + ], + [ + 77.509136821188093, + 13.012428904183199 + ], + [ + 77.509300403424106, + 13.012661098597199 + ], + [ + 77.509382200346707, + 13.0127777603673 + ], + [ + 77.509447567481402, + 13.012864088416899 + ], + [ + 77.509458655843403, + 13.012878662773399 + ], + [ + 77.509604577603298, + 13.013072629615699 + ], + [ + 77.509641354516702, + 13.013121965456101 + ], + [ + 77.5096798702793, + 13.0131724138186 + ], + [ + 77.509786734855695, + 13.0133193254561 + ], + [ + 77.509794322855001, + 13.0133294162372 + ], + [ + 77.509890162280797, + 13.013460884612901 + ], + [ + 77.509953739198295, + 13.0135480980464 + ], + [ + 77.509958433884606, + 13.0135546083013 + ], + [ + 77.509995789614706, + 13.013606417628599 + ], + [ + 77.510142419272597, + 13.013813408137301 + ], + [ + 77.510203174260894, + 13.013899172496901 + ], + [ + 77.5103013111747, + 13.014037133436 + ], + [ + 77.510366148653802, + 13.0141279836905 + ], + [ + 77.510371410665698, + 13.014135838249301 + ], + [ + 77.510495926102195, + 13.014319847345201 + ], + [ + 77.510667501264905, + 13.014659251947901 + ], + [ + 77.510726842373799, + 13.0147761304813 + ], + [ + 77.510826135829305, + 13.014971677096 + ], + [ + 77.510966647239201, + 13.015257173019799 + ], + [ + 77.5110330919603, + 13.0153931816983 + ], + [ + 77.511125396417, + 13.015580890296301 + ], + [ + 77.511180695853099, + 13.0156966784307 + ], + [ + 77.511291859355694, + 13.015927119809801 + ], + [ + 77.511367745273006, + 13.016085624013099 + ], + [ + 77.511453631174305, + 13.016193230766399 + ], + [ + 77.511510112895095, + 13.016220563085399 + ], + [ + 77.511828150331496, + 13.016063889760501 + ], + [ + 77.511915255205594, + 13.0160212597251 + ], + [ + 77.512097701753703, + 13.0159447233296 + ], + [ + 77.512113672382, + 13.015938023751399 + ], + [ + 77.512388355802699, + 13.0158224266989 + ], + [ + 77.512395231589593, + 13.015818972007301 + ], + [ + 77.512679703762601, + 13.015703279838499 + ], + [ + 77.512686579540997, + 13.015699825140601 + ], + [ + 77.512947680980801, + 13.015593120287599 + ], + [ + 77.512949825487993, + 13.015592243904001 + ], + [ + 77.512954420718302, + 13.0155910700127 + ], + [ + 77.512961872315401, + 13.0155876097279 + ], + [ + 77.513143658010307, + 13.0155113103992 + ], + [ + 77.5131955359156, + 13.0154870531686 + ], + [ + 77.513062487962401, + 13.0151892304426 + ], + [ + 77.512157761880502, + 13.0134115050984 + ], + [ + 77.512341982123402, + 13.013329629434899 + ], + [ + 77.5119858229871, + 13.012668483452 + ], + [ + 77.512092878063797, + 13.0126107459055 + ], + [ + 77.512224957646694, + 13.0125950441247 + ], + [ + 77.512551266259706, + 13.0125227744639 + ], + [ + 77.512583515330803, + 13.0125886546801 + ], + [ + 77.512850412291002, + 13.0124870338849 + ], + [ + 77.513096261673596, + 13.012312324315699 + ], + [ + 77.513305325638797, + 13.012157422266 + ], + [ + 77.513852646841499, + 13.0119896844087 + ], + [ + 77.513731565650403, + 13.0113794534745 + ], + [ + 77.513899410760601, + 13.0113528438839 + ], + [ + 77.513584189455997, + 13.0104112737534 + ], + [ + 77.513868707386806, + 13.0103478201142 + ], + [ + 77.514597784733098, + 13.0100197660328 + ], + [ + 77.515193061123, + 13.009654021650199 + ], + [ + 77.515514408223495, + 13.009676439673401 + ], + [ + 77.516296605522797, + 13.009424677257799 + ], + [ + 77.516296388373803, + 13.009422058362301 + ], + [ + 77.516394571606398, + 13.0093878279595 + ], + [ + 77.517211639705394, + 13.0090721520016 + ], + [ + 77.517955780020202, + 13.0088021264022 + ], + [ + 77.518064835142198, + 13.0088863395204 + ], + [ + 77.518204023770096, + 13.0091340134025 + ], + [ + 77.518314992964903, + 13.0091905646699 + ], + [ + 77.518306478988805, + 13.0091778431921 + ], + [ + 77.518258823690402, + 13.009077793566901 + ], + [ + 77.518237906480806, + 13.0090023300907 + ], + [ + 77.518194116542006, + 13.0089428995662 + ], + [ + 77.518174254013502, + 13.0089148585971 + ], + [ + 77.518065135498802, + 13.0088300871213 + ], + [ + 77.518002412345993, + 13.008777616441799 + ], + [ + 77.517907158948503, + 13.0086972277012 + ], + [ + 77.5178525085785, + 13.008645807969099 + ], + [ + 77.517674053916195, + 13.0085379928612 + ], + [ + 77.517513888485695, + 13.008416447892699 + ], + [ + 77.517423321614302, + 13.0083439189047 + ], + [ + 77.517386760791894, + 13.008316039891699 + ], + [ + 77.517365872152993, + 13.008300431664599 + ], + [ + 77.517311301749999, + 13.008256916471 + ], + [ + 77.517298822312199, + 13.008218639595601 + ], + [ + 77.517304358460393, + 13.008139531229901 + ], + [ + 77.517378244739206, + 13.008042819342201 + ], + [ + 77.517392999195494, + 13.008021218480399 + ], + [ + 77.517407411753396, + 13.007965740375599 + ], + [ + 77.5174068761184, + 13.0079126660286 + ], + [ + 77.517396979422898, + 13.007845000941799 + ], + [ + 77.517390389425003, + 13.0077626221901 + ], + [ + 77.517416893916504, + 13.007707026751699 + ], + [ + 77.517428837700507, + 13.0076922292772 + ], + [ + 77.517452149457995, + 13.0076626399148 + ], + [ + 77.517475467191701, + 13.007576582894 + ], + [ + 77.517474521288406, + 13.007482855857701 + ], + [ + 77.517470935685694, + 13.0074128708274 + ], + [ + 77.517479043138493, + 13.0073032450117 + ], + [ + 77.517510245778794, + 13.0071425742507 + ], + [ + 77.517507019467502, + 13.007051128045999 + ], + [ + 77.517506181551695, + 13.007025161080801 + ], + [ + 77.517495880115007, + 13.0069277925411 + ], + [ + 77.517492813297196, + 13.0068988033736 + ], + [ + 77.517436518498997, + 13.0067930278953 + ], + [ + 77.517428831263501, + 13.0067785835347 + ], + [ + 77.517421814109397, + 13.0067697324512 + ], + [ + 77.517409864686996, + 13.006754659062199 + ], + [ + 77.517352420905695, + 13.006682200651399 + ], + [ + 77.517324651622005, + 13.0066124502516 + ], + [ + 77.517333089632004, + 13.006535572434201 + ], + [ + 77.517353687887805, + 13.0064653527453 + ], + [ + 77.517361980651998, + 13.0064470373128 + ], + [ + 77.517406075328907, + 13.006349650533201 + ], + [ + 77.517504772035906, + 13.0062618945105 + ], + [ + 77.517534491518703, + 13.0062354684182 + ], + [ + 77.517551657064601, + 13.006221486598401 + ], + [ + 77.517594182361506, + 13.006193608250101 + ], + [ + 77.517662026763404, + 13.006146029421799 + ], + [ + 77.517704319819501, + 13.006116368813601 + ], + [ + 77.517708841665495, + 13.0059367579814 + ], + [ + 77.517708954657493, + 13.005929420614899 + ], + [ + 77.517709189547205, + 13.005914167567401 + ], + [ + 77.5177202911796, + 13.0055876771371 + ], + [ + 77.517714317934093, + 13.0053381483173 + ], + [ + 77.517712636772899, + 13.005228617489699 + ], + [ + 77.517702269775199, + 13.004714862925599 + ], + [ + 77.517691797915106, + 13.004533098976699 + ], + [ + 77.517705914087202, + 13.004448260611399 + ], + [ + 77.517702716905603, + 13.0043812047718 + ], + [ + 77.516002300318306, + 13.004551664826201 + ], + [ + 77.514971337133204, + 13.004661020053501 + ], + [ + 77.514964645225504, + 13.004746971596999 + ], + [ + 77.514838019929996, + 13.0047556103868 + ], + [ + 77.514832109598402, + 13.004698555197599 + ], + [ + 77.514697816926798, + 13.004696368897401 + ], + [ + 77.514695387983593, + 13.004573924867699 + ], + [ + 77.514695420587302, + 13.0045752400237 + ], + [ + 77.513447502959195, + 13.004453479245701 + ], + [ + 77.512975975920099, + 13.004340769193799 + ], + [ + 77.5126152884649, + 13.0043156685465 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "49", + "group": "Shivapura", + "Corporatio": "West", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "5", + "ward_id": "19", + "ward_name": "19 - Shantaveri Gopala Gowda Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ಶಾಂತವೇರಿ ಗೋಪಾಲಗೌಡ ವಾರ್ಡ್", + "dig_ward_n": "Shivapura", + "Assembly": "155 - Dasarahalli", + "Slno": "19" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.512092878063797, + 13.0126107459055 + ], + [ + 77.5119858229871, + 13.012668483452 + ], + [ + 77.512341982123402, + 13.013329629434899 + ], + [ + 77.512157761880502, + 13.0134115050984 + ], + [ + 77.513062487962401, + 13.0151892304426 + ], + [ + 77.5131955359156, + 13.0154870531686 + ], + [ + 77.513143658010307, + 13.0155113103992 + ], + [ + 77.512961872315401, + 13.0155876097279 + ], + [ + 77.512954420718302, + 13.0155910700127 + ], + [ + 77.512949825487993, + 13.015592243904001 + ], + [ + 77.512947680980801, + 13.015593120287599 + ], + [ + 77.512686579540997, + 13.015699825140601 + ], + [ + 77.512679703762601, + 13.015703279838499 + ], + [ + 77.512395231589593, + 13.015818972007301 + ], + [ + 77.512388355802699, + 13.0158224266989 + ], + [ + 77.512113672382, + 13.015938023751399 + ], + [ + 77.512097701753703, + 13.0159447233296 + ], + [ + 77.511915255205594, + 13.0160212597251 + ], + [ + 77.511828150331496, + 13.016063889760501 + ], + [ + 77.511510112895095, + 13.016220563085399 + ], + [ + 77.511453631174305, + 13.016193230766399 + ], + [ + 77.511367745273006, + 13.016085624013099 + ], + [ + 77.511291859355694, + 13.015927119809801 + ], + [ + 77.511180695853099, + 13.0156966784307 + ], + [ + 77.511125396417, + 13.015580890296301 + ], + [ + 77.5110330919603, + 13.0153931816983 + ], + [ + 77.510966647239201, + 13.015257173019799 + ], + [ + 77.510826135829305, + 13.014971677096 + ], + [ + 77.510726842373799, + 13.0147761304813 + ], + [ + 77.510667501264905, + 13.014659251947901 + ], + [ + 77.510495926102195, + 13.014319847345201 + ], + [ + 77.510371410665698, + 13.014135838249301 + ], + [ + 77.510366148653802, + 13.0141279836905 + ], + [ + 77.5103013111747, + 13.014037133436 + ], + [ + 77.510203174260894, + 13.013899172496901 + ], + [ + 77.510142419272597, + 13.013813408137301 + ], + [ + 77.509995789614706, + 13.013606417628599 + ], + [ + 77.509958433884606, + 13.0135546083013 + ], + [ + 77.509953739198295, + 13.0135480980464 + ], + [ + 77.509890162280797, + 13.013460884612901 + ], + [ + 77.509794322855001, + 13.0133294162372 + ], + [ + 77.509786734855695, + 13.0133193254561 + ], + [ + 77.5096798702793, + 13.0131724138186 + ], + [ + 77.509641354516702, + 13.013121965456101 + ], + [ + 77.509604577603298, + 13.013072629615699 + ], + [ + 77.509458655843403, + 13.012878662773399 + ], + [ + 77.509447567481402, + 13.012864088416899 + ], + [ + 77.509382200346707, + 13.0127777603673 + ], + [ + 77.509300403424106, + 13.012661098597199 + ], + [ + 77.509136821188093, + 13.012428904183199 + ], + [ + 77.509078492813899, + 13.0124125281266 + ], + [ + 77.508934784278196, + 13.0122095045647 + ], + [ + 77.508930708085501, + 13.0122050265644 + ], + [ + 77.508757992933894, + 13.011980825652699 + ], + [ + 77.5085905286479, + 13.011763349932499 + ], + [ + 77.5085292723858, + 13.0116848873097 + ], + [ + 77.508481093132602, + 13.0116469551016 + ], + [ + 77.508356599027195, + 13.011579268272699 + ], + [ + 77.508339256290398, + 13.011572659846401 + ], + [ + 77.508214390878607, + 13.0115253049879 + ], + [ + 77.507896959966502, + 13.01139849828 + ], + [ + 77.5078813447074, + 13.011391873114899 + ], + [ + 77.507413179214495, + 13.0111648808415 + ], + [ + 77.507010005106196, + 13.0109782831655 + ], + [ + 77.506939911558405, + 13.0109458433084 + ], + [ + 77.5069007536963, + 13.0108886244219 + ], + [ + 77.506692039610698, + 13.010580193139701 + ], + [ + 77.506678042059903, + 13.0105595084332 + ], + [ + 77.506496824156798, + 13.010291708471 + ], + [ + 77.506287614043202, + 13.0099831378172 + ], + [ + 77.506226768032903, + 13.009893394939599 + ], + [ + 77.506193991880707, + 13.0098982290616 + ], + [ + 77.506142217572204, + 13.0098933544375 + ], + [ + 77.506106952792194, + 13.0098900342145 + ], + [ + 77.506106152277496, + 13.0099167355185 + ], + [ + 77.506083509771997, + 13.0099145229903 + ], + [ + 77.503553534741002, + 13.0096672562251 + ], + [ + 77.503511394308404, + 13.0096615300475 + ], + [ + 77.503073657013104, + 13.009643177685 + ], + [ + 77.502959031084202, + 13.0081080089941 + ], + [ + 77.503197913094894, + 13.008058536045599 + ], + [ + 77.5032017322863, + 13.0079533175418 + ], + [ + 77.503327984867695, + 13.0079018986701 + ], + [ + 77.503239455231693, + 13.007317908841101 + ], + [ + 77.503224103544795, + 13.007154157514099 + ], + [ + 77.503189306387796, + 13.006962773150599 + ], + [ + 77.503171907809303, + 13.0068343307035 + ], + [ + 77.502804661570195, + 13.0069883960262 + ], + [ + 77.502722615105696, + 13.0070185509464 + ], + [ + 77.502631976759204, + 13.0070533061769 + ], + [ + 77.502537409656696, + 13.0070982635491 + ], + [ + 77.502192022514706, + 13.007256298780799 + ], + [ + 77.502176095051695, + 13.0072631544912 + ], + [ + 77.502106500737696, + 13.0068906202221 + ], + [ + 77.502070680135006, + 13.006816932125 + ], + [ + 77.500846639033597, + 13.007111684470001 + ], + [ + 77.500611737351704, + 13.0064829664353 + ], + [ + 77.500331428931901, + 13.006551965404 + ], + [ + 77.499977255819999, + 13.0053701324315 + ], + [ + 77.499945857494495, + 13.005038566114001 + ], + [ + 77.500178833069896, + 13.005023494917801 + ], + [ + 77.500210623482403, + 13.0050099003385 + ], + [ + 77.500063711634098, + 13.0041689188989 + ], + [ + 77.500062935348495, + 13.004163904765599 + ], + [ + 77.500046345491498, + 13.004056728761901 + ], + [ + 77.500045772144503, + 13.004053025448 + ], + [ + 77.499709846549607, + 13.002755643353 + ], + [ + 77.499475477462795, + 13.002149763443001 + ], + [ + 77.499826775231497, + 13.0020640498578 + ], + [ + 77.499580522534103, + 13.001041864142501 + ], + [ + 77.499477012631303, + 13.0004621013288 + ], + [ + 77.499071472235599, + 13.0005442328537 + ], + [ + 77.498264996949899, + 13.0006711401322 + ], + [ + 77.498286745172905, + 13.0009748476715 + ], + [ + 77.498327427143295, + 13.001272926259 + ], + [ + 77.496334010597906, + 13.001534672520799 + ], + [ + 77.495463058227202, + 13.0016933066189 + ], + [ + 77.495189542338906, + 13.000832844567601 + ], + [ + 77.495059481585997, + 13.000500971177701 + ], + [ + 77.495058744892205, + 13.0004974166779 + ], + [ + 77.495034124510397, + 13.0004140447209 + ], + [ + 77.494282943117597, + 13.0005969553753 + ], + [ + 77.494172706368403, + 13.000608525945999 + ], + [ + 77.493587634878693, + 13.000669934582101 + ], + [ + 77.493281791499598, + 13.000702843391499 + ], + [ + 77.493097095618197, + 13.000703779007999 + ], + [ + 77.4930599736349, + 13.000703965703 + ], + [ + 77.493101681098906, + 13.0007590127294 + ], + [ + 77.494601451312803, + 13.0027384421055 + ], + [ + 77.494657561561297, + 13.002818191939999 + ], + [ + 77.495265155443406, + 13.003681768423499 + ], + [ + 77.495303945882299, + 13.0037352428735 + ], + [ + 77.495410850453496, + 13.0038826167637 + ], + [ + 77.495718350705999, + 13.0043065178325 + ], + [ + 77.495737903785596, + 13.004330327519 + ], + [ + 77.495819599582404, + 13.004301458441301 + ], + [ + 77.496303426766502, + 13.0041304819852 + ], + [ + 77.497568914564297, + 13.0038586853405 + ], + [ + 77.497683567170895, + 13.004888193997299 + ], + [ + 77.497699304533199, + 13.0050436639522 + ], + [ + 77.497828098481506, + 13.0063160046461 + ], + [ + 77.497960066486002, + 13.007471222497299 + ], + [ + 77.497965823826704, + 13.0075951191819 + ], + [ + 77.497970298545695, + 13.007691406602801 + ], + [ + 77.498393125580705, + 13.0090282015626 + ], + [ + 77.498401977769007, + 13.009049574274799 + ], + [ + 77.498525201726693, + 13.0089907897543 + ], + [ + 77.498670735442403, + 13.008917108530101 + ], + [ + 77.498882520828204, + 13.008788579464399 + ], + [ + 77.498926499306904, + 13.0087602758326 + ], + [ + 77.499145609721097, + 13.008619262040799 + ], + [ + 77.4992120982578, + 13.008576471746199 + ], + [ + 77.499223293918803, + 13.008569553357599 + ], + [ + 77.499803150869397, + 13.0090586384815 + ], + [ + 77.499855431197503, + 13.009174499087401 + ], + [ + 77.499872003910596, + 13.0092112253626 + ], + [ + 77.499947705960196, + 13.009345258941 + ], + [ + 77.499934735378901, + 13.0094005005959 + ], + [ + 77.499744660057502, + 13.0102100329936 + ], + [ + 77.499728444593202, + 13.010279098639099 + ], + [ + 77.499765672562205, + 13.010522117253499 + ], + [ + 77.499765893035004, + 13.010597061637499 + ], + [ + 77.499766781728894, + 13.0108990761518 + ], + [ + 77.499763763199894, + 13.0115698164786 + ], + [ + 77.499846462973693, + 13.011681848423599 + ], + [ + 77.499990764386098, + 13.0118773303012 + ], + [ + 77.499964480440696, + 13.0119277076024 + ], + [ + 77.499904751875107, + 13.0120428533842 + ], + [ + 77.499925454348798, + 13.012164384059901 + ], + [ + 77.499926076455097, + 13.0122264371421 + ], + [ + 77.499904876994194, + 13.0122982477705 + ], + [ + 77.499817077142794, + 13.012528234192599 + ], + [ + 77.499684426107606, + 13.012925912855 + ], + [ + 77.499762733203895, + 13.013530936119301 + ], + [ + 77.499435948751596, + 13.013762235884601 + ], + [ + 77.499277467908598, + 13.0138595498176 + ], + [ + 77.499188635574896, + 13.013914096910501 + ], + [ + 77.499115450227706, + 13.0139367010838 + ], + [ + 77.499065404854406, + 13.0140668156139 + ], + [ + 77.498962400841805, + 13.014334620522501 + ], + [ + 77.498911961120101, + 13.014465760697799 + ], + [ + 77.498435451583305, + 13.015626788202299 + ], + [ + 77.498206780128797, + 13.016183948658499 + ], + [ + 77.497814464504401, + 13.0171526132781 + ], + [ + 77.4975612369185, + 13.017770412334 + ], + [ + 77.497543414855201, + 13.0177734715949 + ], + [ + 77.497524622440494, + 13.017821305594 + ], + [ + 77.497080943634302, + 13.0189073163011 + ], + [ + 77.496918698724002, + 13.019305871586701 + ], + [ + 77.496759929290306, + 13.0196965402048 + ], + [ + 77.496532515928294, + 13.0202599476095 + ], + [ + 77.496468317494802, + 13.020418995417099 + ], + [ + 77.495795558494393, + 13.022085711974499 + ], + [ + 77.495615988981697, + 13.0225461922715 + ], + [ + 77.495575649750904, + 13.0225652342684 + ], + [ + 77.495426246430597, + 13.0226357604264 + ], + [ + 77.495219794677197, + 13.0227339388282 + ], + [ + 77.495393123524906, + 13.022794972986301 + ], + [ + 77.495410296921406, + 13.022803837147199 + ], + [ + 77.495559970783006, + 13.0229018913987 + ], + [ + 77.495627577138904, + 13.022946181976501 + ], + [ + 77.496581428618896, + 13.023545921211801 + ], + [ + 77.498634192321703, + 13.0249209047533 + ], + [ + 77.498991269903001, + 13.0246965867457 + ], + [ + 77.499300229426098, + 13.024269569518699 + ], + [ + 77.499545383753897, + 13.024287627081501 + ], + [ + 77.499547374529897, + 13.024278708400301 + ], + [ + 77.499727500989593, + 13.0244260845946 + ], + [ + 77.500317005767002, + 13.024618492403899 + ], + [ + 77.500898322978003, + 13.024655336452501 + ], + [ + 77.501622922600106, + 13.024667617802001 + ], + [ + 77.501587257851497, + 13.0253669163229 + ], + [ + 77.501780194937297, + 13.0255548894817 + ], + [ + 77.502127483075895, + 13.025479700380799 + ], + [ + 77.502532652188705, + 13.025742863536401 + ], + [ + 77.502513359160901, + 13.0259308366449 + ], + [ + 77.502976409075899, + 13.0259684311649 + ], + [ + 77.503317748834903, + 13.0259530657192 + ], + [ + 77.503370968016199, + 13.025580531450199 + ], + [ + 77.503968660359902, + 13.0255846252334 + ], + [ + 77.503968848025394, + 13.0255850525771 + ], + [ + 77.504379062123306, + 13.025616352053 + ], + [ + 77.504340171183102, + 13.0258926824174 + ], + [ + 77.504561235474696, + 13.025980698755699 + ], + [ + 77.504702470994204, + 13.026269310469599 + ], + [ + 77.504949131945395, + 13.0264457671055 + ], + [ + 77.505745358307607, + 13.026735221159599 + ], + [ + 77.507746198785597, + 13.026772845800201 + ], + [ + 77.507774855267797, + 13.0260400586117 + ], + [ + 77.508485126648793, + 13.025976604972501 + ], + [ + 77.508189891339597, + 13.024145813604299 + ], + [ + 77.509303706812005, + 13.0240403945567 + ], + [ + 77.509444095357907, + 13.0245059133665 + ], + [ + 77.511011758816593, + 13.0250617855862 + ], + [ + 77.511110265110503, + 13.025062156155601 + ], + [ + 77.510716994038603, + 13.0242940344224 + ], + [ + 77.5101346790413, + 13.023425662377701 + ], + [ + 77.512142154332196, + 13.0222811980719 + ], + [ + 77.515066584601897, + 13.0204628365329 + ], + [ + 77.514232050770403, + 13.019512989943101 + ], + [ + 77.5139170134088, + 13.0190009304968 + ], + [ + 77.513826586231303, + 13.018794957481401 + ], + [ + 77.515118441227102, + 13.0181428626839 + ], + [ + 77.515029523432204, + 13.017976317741001 + ], + [ + 77.514018898056904, + 13.0177046043427 + ], + [ + 77.513984612622906, + 13.0175326654493 + ], + [ + 77.513910924525703, + 13.017145802939201 + ], + [ + 77.514135937430297, + 13.0164323134352 + ], + [ + 77.514795181691696, + 13.014450046717901 + ], + [ + 77.514928981440306, + 13.0139288449927 + ], + [ + 77.515001825555501, + 13.0135784396799 + ], + [ + 77.515003964633706, + 13.013231122777199 + ], + [ + 77.514349982771293, + 13.0135309923949 + ], + [ + 77.514000987755594, + 13.013658923119101 + ], + [ + 77.5138720335855, + 13.0136873237399 + ], + [ + 77.513820861295699, + 13.013470864954501 + ], + [ + 77.513633058992497, + 13.013568092304901 + ], + [ + 77.513633031117806, + 13.0135679778327 + ], + [ + 77.513472889725804, + 13.0132364958677 + ], + [ + 77.513427858110902, + 13.013123916830301 + ], + [ + 77.513356216905294, + 13.012936626249999 + ], + [ + 77.513360310688498, + 13.012894664972499 + ], + [ + 77.513196559361504, + 13.012469934967999 + ], + [ + 77.513096261673596, + 13.012312324315699 + ], + [ + 77.512850412291002, + 13.0124870338849 + ], + [ + 77.512583515330803, + 13.0125886546801 + ], + [ + 77.512551266259706, + 13.0125227744639 + ], + [ + 77.512224957646694, + 13.0125950441247 + ], + [ + 77.512092878063797, + 13.0126107459055 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "59", + "group": "NAGAPURA", + "Corporatio": "West", + "ac_no": "156", + "ac": "Mahalakshmi Layout", + "corporat_1": "5", + "ward_id": "33", + "ward_name": "33 - Nagapura", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಹಾಲಕ್ಷ್ಮಿ ಲೇಔಟ್", + "ward_name_": "ನಾಗಪುರ", + "dig_ward_n": "NAGAPURA", + "Assembly": "156 - Mahalakshmi Layout", + "Slno": "33" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.542833528447304, + 13.0007072533804 + ], + [ + 77.542817928981407, + 13.0007074062051 + ], + [ + 77.542675093396795, + 13.0007088054922 + ], + [ + 77.542304161153098, + 13.000730780815701 + ], + [ + 77.542078969986704, + 13.0007509471888 + ], + [ + 77.541700850490898, + 13.0007879188729 + ], + [ + 77.541546126156106, + 13.000817341159699 + ], + [ + 77.541507589415204, + 13.000818168432501 + ], + [ + 77.541221771440803, + 13.001898735387901 + ], + [ + 77.541220392244995, + 13.0019048030242 + ], + [ + 77.541048835510097, + 13.0022937322184 + ], + [ + 77.540688934621997, + 13.0021441126543 + ], + [ + 77.540663361663405, + 13.0022493513196 + ], + [ + 77.540668616721902, + 13.0024180079318 + ], + [ + 77.540671704224593, + 13.0024337612792 + ], + [ + 77.540399323586897, + 13.002298970509001 + ], + [ + 77.540242082645705, + 13.002215572831 + ], + [ + 77.540086877911904, + 13.002133255533399 + ], + [ + 77.539993437169002, + 13.0020949008182 + ], + [ + 77.539707601732204, + 13.001977571187799 + ], + [ + 77.539458111742405, + 13.0018909368641 + ], + [ + 77.539093938547893, + 13.001810111452601 + ], + [ + 77.537874350674002, + 13.001518067851601 + ], + [ + 77.537344648637401, + 13.001391222888399 + ], + [ + 77.537305409137701, + 13.001381943889999 + ], + [ + 77.5366002880438, + 13.0012152055219 + ], + [ + 77.536593777371294, + 13.001237007540899 + ], + [ + 77.536473645429695, + 13.001639265325799 + ], + [ + 77.536379209484494, + 13.0019554829968 + ], + [ + 77.536183782107798, + 13.0025992920442 + ], + [ + 77.536112794494997, + 13.0028331497171 + ], + [ + 77.5360963021309, + 13.002813549284101 + ], + [ + 77.536079272799498, + 13.0028898818461 + ], + [ + 77.536076258272104, + 13.0028915267096 + ], + [ + 77.535869875151505, + 13.003478062516001 + ], + [ + 77.535811984622597, + 13.0036625530735 + ], + [ + 77.5358108811661, + 13.003673917767101 + ], + [ + 77.535817078554004, + 13.0036840167304 + ], + [ + 77.535834828043207, + 13.0037017473547 + ], + [ + 77.535835174095396, + 13.0037015289472 + ], + [ + 77.535901380400404, + 13.003672484100701 + ], + [ + 77.535955549424898, + 13.003648719301101 + ], + [ + 77.536120557344105, + 13.0035443731523 + ], + [ + 77.536244273805096, + 13.003466136911401 + ], + [ + 77.536269352057502, + 13.0034391192859 + ], + [ + 77.5364264665007, + 13.0033553525756 + ], + [ + 77.536480620570998, + 13.003328135674201 + ], + [ + 77.536683100975097, + 13.0036323315703 + ], + [ + 77.536839515769799, + 13.0038607391767 + ], + [ + 77.537737204499905, + 13.0045305072725 + ], + [ + 77.537733399973206, + 13.004533291025901 + ], + [ + 77.537779252514497, + 13.0045687036059 + ], + [ + 77.537960423054997, + 13.0047409551503 + ], + [ + 77.538124014003401, + 13.005065147673999 + ], + [ + 77.539834995111704, + 13.0043931956205 + ], + [ + 77.540514498988003, + 13.0042429802026 + ], + [ + 77.540888105158302, + 13.0041614591476 + ], + [ + 77.540893359764596, + 13.0042149801319 + ], + [ + 77.540936058980705, + 13.0045557969892 + ], + [ + 77.540980437174497, + 13.004910009336999 + ], + [ + 77.540988921897593, + 13.0049831938025 + ], + [ + 77.541053992762897, + 13.0055444388782 + ], + [ + 77.541066877189905, + 13.005663048114499 + ], + [ + 77.541113304131201, + 13.0060904274169 + ], + [ + 77.541146654725097, + 13.0060885423004 + ], + [ + 77.541235587476905, + 13.006083514420199 + ], + [ + 77.541420025822802, + 13.0060468575676 + ], + [ + 77.541537498818698, + 13.0060179794931 + ], + [ + 77.5417473480138, + 13.0059663921809 + ], + [ + 77.541997390177698, + 13.0058664937979 + ], + [ + 77.542160040552801, + 13.005801510333001 + ], + [ + 77.5424444007012, + 13.006390938767799 + ], + [ + 77.542733590285494, + 13.007047539309699 + ], + [ + 77.542542916337496, + 13.0070914797046 + ], + [ + 77.542414682604701, + 13.0071386324533 + ], + [ + 77.542383796341198, + 13.0071469267093 + ], + [ + 77.5426201194459, + 13.008091114053901 + ], + [ + 77.542992086669202, + 13.008019530081199 + ], + [ + 77.542999379900607, + 13.0080785154164 + ], + [ + 77.543027317220904, + 13.0083037023928 + ], + [ + 77.543090968620405, + 13.0085849017982 + ], + [ + 77.543104325678499, + 13.0086439107942 + ], + [ + 77.543301763419805, + 13.0086287041514 + ], + [ + 77.543529562263302, + 13.0085854926864 + ], + [ + 77.543579798692207, + 13.008902710348099 + ], + [ + 77.543785376222104, + 13.0088984923149 + ], + [ + 77.543965143083398, + 13.008868648826599 + ], + [ + 77.544279547138999, + 13.008813932301599 + ], + [ + 77.544635306228301, + 13.009040564586099 + ], + [ + 77.544881596607794, + 13.009191135665899 + ], + [ + 77.545002649082093, + 13.0092792048676 + ], + [ + 77.545218450942102, + 13.009047843096001 + ], + [ + 77.545876002767102, + 13.0094406317781 + ], + [ + 77.5459616826396, + 13.0094756475032 + ], + [ + 77.546059093516206, + 13.0094657272288 + ], + [ + 77.546135022479604, + 13.0094410772055 + ], + [ + 77.546287125306307, + 13.009415680335101 + ], + [ + 77.546472683088396, + 13.009383978548099 + ], + [ + 77.546560922471798, + 13.0093711603777 + ], + [ + 77.547001508678093, + 13.009258718744301 + ], + [ + 77.547270007646901, + 13.0105566609021 + ], + [ + 77.547770437294304, + 13.0104457642254 + ], + [ + 77.547572095099696, + 13.0094297234204 + ], + [ + 77.547388075518697, + 13.0084185918281 + ], + [ + 77.547304524761202, + 13.007954175034 + ], + [ + 77.5477998273373, + 13.007858776040599 + ], + [ + 77.547845500067993, + 13.0078553397344 + ], + [ + 77.548094981080993, + 13.0078170328079 + ], + [ + 77.548751159711003, + 13.0077001694267 + ], + [ + 77.548694505818901, + 13.0075143743575 + ], + [ + 77.548630039154204, + 13.006905206102701 + ], + [ + 77.5486275885455, + 13.006882049149199 + ], + [ + 77.5486310747864, + 13.0066506229317 + ], + [ + 77.548712000053996, + 13.006190849418401 + ], + [ + 77.548741668552097, + 13.0060222918002 + ], + [ + 77.548888682175701, + 13.0051411756747 + ], + [ + 77.549083020258294, + 13.004119993600799 + ], + [ + 77.549108170091401, + 13.0039438461414 + ], + [ + 77.549199497878703, + 13.0033041960803 + ], + [ + 77.549280061487906, + 13.002790899724401 + ], + [ + 77.5494333508979, + 13.0017605597006 + ], + [ + 77.549329865155599, + 13.0017481905326 + ], + [ + 77.549354531404902, + 13.001681016180701 + ], + [ + 77.549457944451504, + 13.000922717823901 + ], + [ + 77.549531316979994, + 13.0006600076621 + ], + [ + 77.549532290603096, + 13.000564381128299 + ], + [ + 77.549579981201603, + 13.000269413971999 + ], + [ + 77.549610865303293, + 13.0000472800401 + ], + [ + 77.549632311521904, + 12.9998558363523 + ], + [ + 77.549664601004594, + 12.999771376186001 + ], + [ + 77.5497282871859, + 12.9994400213075 + ], + [ + 77.549365176854906, + 12.9993174599147 + ], + [ + 77.5490386556896, + 12.999234610816499 + ], + [ + 77.548921404812603, + 12.999210902495401 + ], + [ + 77.548793362347695, + 12.999177171361501 + ], + [ + 77.548788436570405, + 12.9991758735675 + ], + [ + 77.547481992529995, + 12.9989120742061 + ], + [ + 77.546398123596305, + 12.998914574334201 + ], + [ + 77.546378410667501, + 12.9990440287871 + ], + [ + 77.546273554990293, + 12.999876923501301 + ], + [ + 77.546242593967406, + 12.999886262754099 + ], + [ + 77.546026117390497, + 12.9998661475686 + ], + [ + 77.545456837482902, + 12.9998064887148 + ], + [ + 77.545176188790407, + 12.999853543585401 + ], + [ + 77.545175482833599, + 12.999853703193001 + ], + [ + 77.544898306929795, + 12.9999218192364 + ], + [ + 77.544895540097897, + 12.9999224453602 + ], + [ + 77.544811513543294, + 12.999942611733299 + ], + [ + 77.544582961314703, + 13.000009832977 + ], + [ + 77.544381297583598, + 13.000046804661 + ], + [ + 77.544376557960803, + 13.0000476814047 + ], + [ + 77.544347883688999, + 13.0000804420464 + ], + [ + 77.544305142589195, + 13.0005740350929 + ], + [ + 77.544305116341405, + 13.000574442813001 + ], + [ + 77.544304677012093, + 13.0005811454094 + ], + [ + 77.544303993153306, + 13.0005812135485 + ], + [ + 77.544152745355007, + 13.0006013799216 + ], + [ + 77.543502379822201, + 13.0006601985098 + ], + [ + 77.542833528447304, + 13.0007072533804 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "50", + "group": "Sunkadakatte", + "Corporatio": "West", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "5", + "ward_id": "23", + "ward_name": "23 - Sunkadakatte", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ಸುಂಕದಕಟ್ಟೆ", + "dig_ward_n": "Sunkadakatte", + "Assembly": "155 - Dasarahalli", + "Slno": "23" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.500498944520999, + 12.9891231671743 + ], + [ + 77.500205266053499, + 12.989007410308099 + ], + [ + 77.500074046174603, + 12.9889567223003 + ], + [ + 77.499926840355897, + 12.988919740456801 + ], + [ + 77.499828834990694, + 12.988908260524299 + ], + [ + 77.499759652075497, + 12.9888998913114 + ], + [ + 77.499358215357503, + 12.9888913307956 + ], + [ + 77.499242451460503, + 12.9888890564287 + ], + [ + 77.498755936003704, + 12.9888948658764 + ], + [ + 77.498552688676099, + 12.988896820763101 + ], + [ + 77.498492763262206, + 12.988892879638801 + ], + [ + 77.498037788342202, + 12.9888218674211 + ], + [ + 77.497892967115206, + 12.988799263134201 + ], + [ + 77.497559279231595, + 12.9887132512774 + ], + [ + 77.497547673538904, + 12.988710231339301 + ], + [ + 77.497442081517804, + 12.988682755649601 + ], + [ + 77.497411258221703, + 12.9886749702014 + ], + [ + 77.497274091762407, + 12.9886403251614 + ], + [ + 77.496994929640195, + 12.988570142528401 + ], + [ + 77.496994411731606, + 12.988578426235099 + ], + [ + 77.496937911369798, + 12.989482680683899 + ], + [ + 77.496936746226595, + 12.989501333704601 + ], + [ + 77.497016161532699, + 12.989564170097999 + ], + [ + 77.497077176850595, + 12.9896408107541 + ], + [ + 77.497128561317098, + 12.9896812035821 + ], + [ + 77.497193711959198, + 12.9897078330273 + ], + [ + 77.497275912846504, + 12.9897371508755 + ], + [ + 77.497346760021102, + 12.9897874594273 + ], + [ + 77.497385331562896, + 12.9898148484919 + ], + [ + 77.497636349302098, + 12.9899930943255 + ], + [ + 77.4977508894046, + 12.990074428763901 + ], + [ + 77.497887490797396, + 12.9901714281082 + ], + [ + 77.497951010131203, + 12.9902114347971 + ], + [ + 77.498105980724304, + 12.990309039776999 + ], + [ + 77.498152580565403, + 12.990397015732 + ], + [ + 77.498311613182295, + 12.990697248860201 + ], + [ + 77.498350515995099, + 12.990856112874599 + ], + [ + 77.498359591392202, + 12.9908931718548 + ], + [ + 77.498374131472104, + 12.9909525487945 + ], + [ + 77.4984337847132, + 12.9909821002213 + ], + [ + 77.498535382096705, + 12.991032429685101 + ], + [ + 77.498719503016204, + 12.991123638908199 + ], + [ + 77.498882580692197, + 12.9911840741332 + ], + [ + 77.499049068014003, + 12.991245772046399 + ], + [ + 77.499235866847698, + 12.991314997464199 + ], + [ + 77.499241449297998, + 12.9913296481119 + ], + [ + 77.4993411754009, + 12.9915913459084 + ], + [ + 77.499410322652693, + 12.9918189735096 + ], + [ + 77.499617979712497, + 12.9925025587058 + ], + [ + 77.499629882065904, + 12.9925383300136 + ], + [ + 77.499719662902095, + 12.9928081661108 + ], + [ + 77.499768547306203, + 12.9929550860959 + ], + [ + 77.499856289340599, + 12.9932357574313 + ], + [ + 77.4998806786774, + 12.9933137751269 + ], + [ + 77.499883134376901, + 12.9933216317575 + ], + [ + 77.499945982853006, + 12.9935226702177 + ], + [ + 77.4999460637639, + 12.9935229296449 + ], + [ + 77.499947442003105, + 12.9935273389772 + ], + [ + 77.500036902587496, + 12.9938135058407 + ], + [ + 77.500102861025098, + 12.9940244951634 + ], + [ + 77.500130831331802, + 12.9941139680524 + ], + [ + 77.500131202532103, + 12.9941151543792 + ], + [ + 77.500183325425894, + 12.9942818855256 + ], + [ + 77.500231244824803, + 12.9945189696634 + ], + [ + 77.500290039664705, + 12.9948098595847 + ], + [ + 77.500317821547796, + 12.9949344141603 + ], + [ + 77.500455802624401, + 12.9955530262274 + ], + [ + 77.500491357868398, + 12.995705705713 + ], + [ + 77.500501386208299, + 12.995748525953999 + ], + [ + 77.500577939849293, + 12.9957779482167 + ], + [ + 77.500619368700299, + 12.9958137820073 + ], + [ + 77.500695954798005, + 12.9958804793163 + ], + [ + 77.500957178220006, + 12.996107974493 + ], + [ + 77.501156427538405, + 12.9962830412604 + ], + [ + 77.501205263211006, + 12.9963259502019 + ], + [ + 77.501469297539799, + 12.9965579386919 + ], + [ + 77.501342968147895, + 12.996660163495999 + ], + [ + 77.5014781670113, + 12.9968932729114 + ], + [ + 77.501408057020399, + 12.9969346742038 + ], + [ + 77.501203831576703, + 12.997055272070201 + ], + [ + 77.500883163034104, + 12.997245256666099 + ], + [ + 77.500859126921497, + 12.997260169949501 + ], + [ + 77.500825280356196, + 12.9972862238297 + ], + [ + 77.500822166241605, + 12.9972886209767 + ], + [ + 77.500643694271005, + 12.997426003069799 + ], + [ + 77.500613968088004, + 12.997447747336601 + ], + [ + 77.500471027134495, + 12.9975496376353 + ], + [ + 77.500442441190998, + 12.9975702415394 + ], + [ + 77.5002194661365, + 12.9977305002091 + ], + [ + 77.500187391473702, + 12.9977477495912 + ], + [ + 77.500167119884907, + 12.997759071327099 + ], + [ + 77.499944590374497, + 12.997883352949501 + ], + [ + 77.499927407093097, + 12.997892553345199 + ], + [ + 77.499785086590094, + 12.997998954845601 + ], + [ + 77.499952820278494, + 12.998532659341 + ], + [ + 77.499922130272594, + 12.9985406137918 + ], + [ + 77.499669126969707, + 12.998606192469399 + ], + [ + 77.499654154141993, + 12.998610073488299 + ], + [ + 77.499345857556605, + 12.998703391176299 + ], + [ + 77.499112036835299, + 12.998769183118201 + ], + [ + 77.499111530329699, + 12.998767458707601 + ], + [ + 77.499045441478003, + 12.998570254219899 + ], + [ + 77.498987388286196, + 12.9985964614363 + ], + [ + 77.498861052169104, + 12.9986534935811 + ], + [ + 77.498683995639595, + 12.9987576097569 + ], + [ + 77.498836261720996, + 12.9990516245192 + ], + [ + 77.498844955165396, + 12.9990571876719 + ], + [ + 77.498658861088799, + 12.999105283004599 + ], + [ + 77.498298221849595, + 12.999147152516199 + ], + [ + 77.498136429032201, + 12.999176065547401 + ], + [ + 77.497964249799395, + 12.9992068348222 + ], + [ + 77.497909687177696, + 12.999210190504 + ], + [ + 77.497900412665501, + 12.999212851996001 + ], + [ + 77.497823276519995, + 12.999250167674701 + ], + [ + 77.497306661259998, + 12.9995000863711 + ], + [ + 77.497044785423597, + 12.9996267710643 + ], + [ + 77.496895991634801, + 12.999682956836001 + ], + [ + 77.496430147014195, + 12.9999788407282 + ], + [ + 77.496390459170499, + 13.0000539179764 + ], + [ + 77.496365189288696, + 13.0001116287162 + ], + [ + 77.496224433798403, + 13.0001432033594 + ], + [ + 77.495253495266795, + 13.0003610041169 + ], + [ + 77.495122770049704, + 13.0003924591994 + ], + [ + 77.495034124510397, + 13.0004140447209 + ], + [ + 77.495058744892205, + 13.0004974166779 + ], + [ + 77.495059481585997, + 13.000500971177701 + ], + [ + 77.495189542338906, + 13.000832844567601 + ], + [ + 77.495463058227202, + 13.0016933066189 + ], + [ + 77.496334010597906, + 13.001534672520799 + ], + [ + 77.498327427143295, + 13.001272926259 + ], + [ + 77.498286745172905, + 13.0009748476715 + ], + [ + 77.498264996949899, + 13.0006711401322 + ], + [ + 77.499071472235599, + 13.0005442328537 + ], + [ + 77.499477012631303, + 13.0004621013288 + ], + [ + 77.499580522534103, + 13.001041864142501 + ], + [ + 77.499580522534103, + 13.001041864142501 + ], + [ + 77.499883531818398, + 13.0009770357167 + ], + [ + 77.500222081169397, + 13.000906276803301 + ], + [ + 77.500108478686201, + 13.000327006484 + ], + [ + 77.5002701831217, + 13.0002748107485 + ], + [ + 77.500428817219699, + 13.0002369432541 + ], + [ + 77.500901649176598, + 13.000009738287799 + ], + [ + 77.501263948987699, + 12.999844963515001 + ], + [ + 77.501390856266099, + 13.0000639809149 + ], + [ + 77.501577123400594, + 13.0003751084363 + ], + [ + 77.501759296751999, + 13.000267646627901 + ], + [ + 77.502136436527095, + 13.000100313240599 + ], + [ + 77.502261296914, + 13.000374596713399 + ], + [ + 77.502792465281004, + 13.000154555867701 + ], + [ + 77.503441329914395, + 12.999953960492 + ], + [ + 77.503621456374205, + 12.999892553744401 + ], + [ + 77.503609175024707, + 12.9997615526828 + ], + [ + 77.504267534791893, + 12.999713842547401 + ], + [ + 77.504641831830796, + 12.999649997091201 + ], + [ + 77.504900763616703, + 12.9996141764884 + ], + [ + 77.504826052073795, + 12.9991914933755 + ], + [ + 77.504814794170002, + 12.999047187518601 + ], + [ + 77.506031255284299, + 12.998834116495001 + ], + [ + 77.505967916861806, + 12.998569531235701 + ], + [ + 77.505901791280195, + 12.998292346573299 + ], + [ + 77.505874758513201, + 12.9981808007011 + ], + [ + 77.505829613293898, + 12.9979858568773 + ], + [ + 77.505811546165702, + 12.9979069759393 + ], + [ + 77.505764229382805, + 12.997754616432299 + ], + [ + 77.505743707302699, + 12.997688534517801 + ], + [ + 77.505734798447605, + 12.9976615158182 + ], + [ + 77.505650407004893, + 12.9974003183479 + ], + [ + 77.505647437394899, + 12.997391312112301 + ], + [ + 77.505615347489993, + 12.997292237958501 + ], + [ + 77.505550208864506, + 12.9971132980319 + ], + [ + 77.505536004646004, + 12.9970750367996 + ], + [ + 77.505449752529699, + 12.9968579022638 + ], + [ + 77.505444366465895, + 12.996837625720399 + ], + [ + 77.505387141829701, + 12.996643927628901 + ], + [ + 77.505369109008399, + 12.996568434368299 + ], + [ + 77.505339061894006, + 12.996443365094301 + ], + [ + 77.505318714638307, + 12.996366764794301 + ], + [ + 77.505297136509895, + 12.996282270830701 + ], + [ + 77.505268139083796, + 12.9961470271449 + ], + [ + 77.505225218813194, + 12.995944156041499 + ], + [ + 77.505092692732006, + 12.995476749241901 + ], + [ + 77.505066219700595, + 12.995427150965901 + ], + [ + 77.505010530913495, + 12.9953228192207 + ], + [ + 77.505001069140604, + 12.995298064522901 + ], + [ + 77.504969614314305, + 12.995262228366199 + ], + [ + 77.504938769266502, + 12.9952297744096 + ], + [ + 77.504897741383203, + 12.995215488481699 + ], + [ + 77.504854376385893, + 12.9951978370032 + ], + [ + 77.504806246536404, + 12.995164420401 + ], + [ + 77.504732986137498, + 12.9951515747288 + ], + [ + 77.504601775524606, + 12.9951596165323 + ], + [ + 77.504561629270995, + 12.9951758148417 + ], + [ + 77.5045467268652, + 12.995182734758201 + ], + [ + 77.504512993507106, + 12.9952067767477 + ], + [ + 77.504425632992394, + 12.995223430425501 + ], + [ + 77.504075533928599, + 12.9952245481249 + ], + [ + 77.504073601000599, + 12.995211323398999 + ], + [ + 77.504040911908902, + 12.994987715694499 + ], + [ + 77.504040317789702, + 12.9947562019307 + ], + [ + 77.504050997203095, + 12.994730123590401 + ], + [ + 77.504083024108198, + 12.9946507593148 + ], + [ + 77.504277131268793, + 12.9943112078321 + ], + [ + 77.504321138015797, + 12.9942780319089 + ], + [ + 77.504465117324997, + 12.9942800314476 + ], + [ + 77.504467216589106, + 12.9942596826659 + ], + [ + 77.504491041009999, + 12.9939940525691 + ], + [ + 77.504500702881003, + 12.993923938875801 + ], + [ + 77.504533943635494, + 12.993678546504499 + ], + [ + 77.504539824198503, + 12.9936333152679 + ], + [ + 77.504554903158194, + 12.993518702119299 + ], + [ + 77.504570321936498, + 12.993401501711499 + ], + [ + 77.504615538938197, + 12.993087102699899 + ], + [ + 77.504641532336095, + 12.9928654968581 + ], + [ + 77.504647445060797, + 12.992766055886699 + ], + [ + 77.504652872610905, + 12.9926756544988 + ], + [ + 77.504662587488596, + 12.992495992082601 + ], + [ + 77.504680493790403, + 12.9921570104772 + ], + [ + 77.5046862479916, + 12.9920417599518 + ], + [ + 77.504686447620102, + 12.992037044517 + ], + [ + 77.504691369799204, + 12.991920868709601 + ], + [ + 77.504693761724496, + 12.9918722830303 + ], + [ + 77.504694482946206, + 12.991829360278 + ], + [ + 77.504695294764304, + 12.9917954715566 + ], + [ + 77.504696140556206, + 12.9917649705969 + ], + [ + 77.504697158728604, + 12.991464550194401 + ], + [ + 77.504705500921304, + 12.991435106307099 + ], + [ + 77.504741127479306, + 12.991312791533 + ], + [ + 77.504799694379699, + 12.9911812206298 + ], + [ + 77.504913635637607, + 12.9910016824607 + ], + [ + 77.505008238285598, + 12.990846047392701 + ], + [ + 77.505093956895095, + 12.9907232495123 + ], + [ + 77.5052459327229, + 12.990546732536 + ], + [ + 77.5052641422471, + 12.9905250990161 + ], + [ + 77.505367675586797, + 12.990398741175699 + ], + [ + 77.505447896677097, + 12.9903019715957 + ], + [ + 77.505483581310401, + 12.990242900545899 + ], + [ + 77.505577301769307, + 12.990056781094699 + ], + [ + 77.505678495799003, + 12.989869460178999 + ], + [ + 77.505703036801606, + 12.9897901680845 + ], + [ + 77.505724866933804, + 12.9896702450917 + ], + [ + 77.505555796258093, + 12.989749801917799 + ], + [ + 77.505221945408806, + 12.989934849259299 + ], + [ + 77.504784128470206, + 12.9901457447809 + ], + [ + 77.504471655908702, + 12.9902232956715 + ], + [ + 77.504243842650297, + 12.990244691236899 + ], + [ + 77.504207027197495, + 12.9902484342531 + ], + [ + 77.503822919213306, + 12.990245360817401 + ], + [ + 77.503542641135994, + 12.9902028877357 + ], + [ + 77.503375670158405, + 12.9901652655468 + ], + [ + 77.503206173693599, + 12.990127074888299 + ], + [ + 77.502871162144203, + 12.9900241427891 + ], + [ + 77.502530708650795, + 12.9898952872427 + ], + [ + 77.502501242460497, + 12.989885406830799 + ], + [ + 77.502485953363902, + 12.989880008488401 + ], + [ + 77.502348684339296, + 12.989831537609 + ], + [ + 77.502331930391605, + 12.989826052176401 + ], + [ + 77.502031465730298, + 12.989722786064499 + ], + [ + 77.501780687271093, + 12.9896359815294 + ], + [ + 77.501618329959996, + 12.9895810768316 + ], + [ + 77.501562242627003, + 12.989557900276299 + ], + [ + 77.501319676979506, + 12.9894595815451 + ], + [ + 77.501227480042502, + 12.9894222117887 + ], + [ + 77.500922206450596, + 12.9892986619359 + ], + [ + 77.500916426126494, + 12.9892964588522 + ], + [ + 77.500498944520999, + 12.9891231671743 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "54", + "group": "MAHALAKSHMIPURAM", + "Corporatio": "West", + "ac_no": "156", + "ac": "Mahalakshmi Layout", + "corporat_1": "5", + "ward_id": "32", + "ward_name": "32 - Mahalakshmipuram", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಹಾಲಕ್ಷ್ಮಿ ಲೇಔಟ್", + "ward_name_": "ಮಹಾಲಕ್ಷ್ಮಿಪುರಂ", + "dig_ward_n": "MAHALAKSHMIPURAM", + "Assembly": "156 - Mahalakshmi Layout", + "Slno": "32" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.536120557344105, + 13.0035443731523 + ], + [ + 77.535955549424898, + 13.003648719301101 + ], + [ + 77.535901380400404, + 13.003672484100701 + ], + [ + 77.535835174095396, + 13.0037015289472 + ], + [ + 77.535834828043207, + 13.0037017473547 + ], + [ + 77.535817078554004, + 13.0036840167304 + ], + [ + 77.5358108811661, + 13.003673917767101 + ], + [ + 77.535811984622597, + 13.0036625530735 + ], + [ + 77.535869875151505, + 13.003478062516001 + ], + [ + 77.535826121523996, + 13.0034904429798 + ], + [ + 77.535759320346301, + 13.003513804460701 + ], + [ + 77.534002510184806, + 13.0049891800433 + ], + [ + 77.534560312913996, + 13.0054532776433 + ], + [ + 77.534560312913996, + 13.0054532776433 + ], + [ + 77.534435957432606, + 13.005544312724901 + ], + [ + 77.534350967306693, + 13.005606530124 + ], + [ + 77.534329271716302, + 13.0056224660461 + ], + [ + 77.533821040213397, + 13.0059543956996 + ], + [ + 77.534174151209896, + 13.0063487337402 + ], + [ + 77.533955807021101, + 13.0064270851157 + ], + [ + 77.533747098269799, + 13.0062331813143 + ], + [ + 77.533587826295303, + 13.006137318200899 + ], + [ + 77.533585950398006, + 13.006135464941099 + ], + [ + 77.533409393707103, + 13.0062734442145 + ], + [ + 77.533334266780699, + 13.0063014156337 + ], + [ + 77.533384513910605, + 13.006344015188599 + ], + [ + 77.534108499098494, + 13.006916388012099 + ], + [ + 77.534517965958898, + 13.0071900326601 + ], + [ + 77.535237008859497, + 13.0054108609305 + ], + [ + 77.535264203530105, + 13.005336853951899 + ], + [ + 77.536028039083106, + 13.0067317050355 + ], + [ + 77.536041503583604, + 13.0067207968331 + ], + [ + 77.536110737423897, + 13.006644276487 + ], + [ + 77.536330131112805, + 13.0064429440529 + ], + [ + 77.536484720032107, + 13.0066577927544 + ], + [ + 77.536544852736796, + 13.006623706917001 + ], + [ + 77.536922995693502, + 13.006361310128 + ], + [ + 77.537110869004096, + 13.0062702524469 + ], + [ + 77.537170314405699, + 13.006236642116001 + ], + [ + 77.537189309464395, + 13.006224526957601 + ], + [ + 77.537331243973995, + 13.006387109974 + ], + [ + 77.537431909214703, + 13.0065072138398 + ], + [ + 77.537459452761098, + 13.006495468597301 + ], + [ + 77.537778512072606, + 13.0066810021934 + ], + [ + 77.537817915108505, + 13.006703915423801 + ], + [ + 77.537857328340095, + 13.006726833967999 + ], + [ + 77.537365691955301, + 13.006958707884699 + ], + [ + 77.537386386021197, + 13.0070629880795 + ], + [ + 77.537554174186198, + 13.0070363742288 + ], + [ + 77.538120582849899, + 13.006927567171701 + ], + [ + 77.538231404567298, + 13.006893972567701 + ], + [ + 77.538439667975794, + 13.0068536884321 + ], + [ + 77.538694732813198, + 13.006812945283199 + ], + [ + 77.538694732813198, + 13.006812945283199 + ], + [ + 77.5387361409325, + 13.0071278414747 + ], + [ + 77.538885926414693, + 13.007985734500901 + ], + [ + 77.538893477717295, + 13.007984806821201 + ], + [ + 77.539222955195001, + 13.0079341475259 + ], + [ + 77.539367274596898, + 13.008960441206399 + ], + [ + 77.539602957635395, + 13.0089295834665 + ], + [ + 77.541171435250007, + 13.0087509873643 + ], + [ + 77.541310867666596, + 13.0094213057509 + ], + [ + 77.541233567063003, + 13.009490907205601 + ], + [ + 77.541224108479696, + 13.009519684931201 + ], + [ + 77.5412332143311, + 13.0096477226326 + ], + [ + 77.541257160397393, + 13.009701033782299 + ], + [ + 77.540992523798806, + 13.009707107172 + ], + [ + 77.540793774137498, + 13.009724352454599 + ], + [ + 77.540605317377199, + 13.0097490434341 + ], + [ + 77.5404782554197, + 13.0097656902234 + ], + [ + 77.540229058810596, + 13.0098082898683 + ], + [ + 77.540009057545305, + 13.0098195765264 + ], + [ + 77.540015176216201, + 13.0098715789115 + ], + [ + 77.540152000804298, + 13.0106676861287 + ], + [ + 77.540144873489794, + 13.010668816600001 + ], + [ + 77.5401870650565, + 13.0109162009326 + ], + [ + 77.540167392451096, + 13.0109222354188 + ], + [ + 77.540224002688007, + 13.0110949867528 + ], + [ + 77.540262636280005, + 13.0112977953964 + ], + [ + 77.5403045297072, + 13.011521487352701 + ], + [ + 77.540379844582901, + 13.0120346913374 + ], + [ + 77.540466263790407, + 13.0124955561314 + ], + [ + 77.540521076637603, + 13.012472741498 + ], + [ + 77.540630645917702, + 13.012438579553701 + ], + [ + 77.540636911619899, + 13.0124385181715 + ], + [ + 77.540686853899302, + 13.012438028904199 + ], + [ + 77.5407794270849, + 13.0124371219711 + ], + [ + 77.540955021003001, + 13.012471068650401 + ], + [ + 77.541042408037697, + 13.0124924349987 + ], + [ + 77.541120762363406, + 13.0125115923067 + ], + [ + 77.541226826857397, + 13.012536492436601 + ], + [ + 77.541322475261794, + 13.0125604113337 + ], + [ + 77.541325993891803, + 13.0125607599233 + ], + [ + 77.5413707602508, + 13.0125651927303 + ], + [ + 77.541480464161793, + 13.012557722932 + ], + [ + 77.541632876401707, + 13.0125139542772 + ], + [ + 77.541742326799294, + 13.0124825233249 + ], + [ + 77.542128746393303, + 13.012269781323401 + ], + [ + 77.542195566087202, + 13.012173459249899 + ], + [ + 77.542288425962596, + 13.0120604343122 + ], + [ + 77.542341092010304, + 13.0119926486955 + ], + [ + 77.542389032708897, + 13.01195978859 + ], + [ + 77.542510676998305, + 13.0119287004083 + ], + [ + 77.542695707785001, + 13.011884530137401 + ], + [ + 77.542789685061507, + 13.0118811179017 + ], + [ + 77.542865978491307, + 13.011887845145299 + ], + [ + 77.542951144114696, + 13.0119194408911 + ], + [ + 77.543016457219693, + 13.0119436710707 + ], + [ + 77.543210410992003, + 13.0120200625877 + ], + [ + 77.543389230280297, + 13.0120904931313 + ], + [ + 77.5439899181915, + 13.0122197735272 + ], + [ + 77.545514258911695, + 13.0126721533031 + ], + [ + 77.545847140829196, + 13.012791532334299 + ], + [ + 77.546768110637004, + 13.0130683438883 + ], + [ + 77.546794028946394, + 13.013120106221701 + ], + [ + 77.546861548988701, + 13.0136204746301 + ], + [ + 77.546860592300206, + 13.0136309090824 + ], + [ + 77.546858038889297, + 13.0136587553914 + ], + [ + 77.546887809761998, + 13.0138494360371 + ], + [ + 77.546910750449598, + 13.013996369429501 + ], + [ + 77.546965389655696, + 13.0143463274732 + ], + [ + 77.547004278364398, + 13.014595403255001 + ], + [ + 77.547004934991705, + 13.014599610554599 + ], + [ + 77.547016636643505, + 13.014674558896299 + ], + [ + 77.547084036735399, + 13.0149722210558 + ], + [ + 77.547113562314195, + 13.014998703321201 + ], + [ + 77.547137607726299, + 13.015123775549499 + ], + [ + 77.547241266026703, + 13.0156629410051 + ], + [ + 77.547295338498202, + 13.0157513677211 + ], + [ + 77.547909157615607, + 13.0153628244665 + ], + [ + 77.548473447353103, + 13.0149709901909 + ], + [ + 77.548192260301803, + 13.0144145012517 + ], + [ + 77.548046327151297, + 13.0140896437133 + ], + [ + 77.547982409730295, + 13.013918161367799 + ], + [ + 77.547973808162496, + 13.013901258090399 + ], + [ + 77.547915238849995, + 13.013786153398501 + ], + [ + 77.547808837402499, + 13.013751343134899 + ], + [ + 77.547743689347897, + 13.0137337811656 + ], + [ + 77.547680498187901, + 13.0137167474506 + ], + [ + 77.547570147112097, + 13.0136532909544 + ], + [ + 77.547540419893593, + 13.013606969765201 + ], + [ + 77.5475176395597, + 13.0135247237131 + ], + [ + 77.547555646898502, + 13.012991965568 + ], + [ + 77.547541118766105, + 13.012366602191999 + ], + [ + 77.547567014601597, + 13.0122169467615 + ], + [ + 77.547273436989201, + 13.012077842022901 + ], + [ + 77.546874017964598, + 13.0116665803858 + ], + [ + 77.546595523089394, + 13.011636704718001 + ], + [ + 77.546474326149905, + 13.011614328792 + ], + [ + 77.546262184371997, + 13.011609239932501 + ], + [ + 77.546057477752299, + 13.0116160307273 + ], + [ + 77.545859863701693, + 13.0116012375649 + ], + [ + 77.545647233855902, + 13.0115483453078 + ], + [ + 77.545270921106805, + 13.0114612025884 + ], + [ + 77.545151211923695, + 13.0114360829447 + ], + [ + 77.545094708062294, + 13.0113936099561 + ], + [ + 77.544260734219193, + 13.0108322737072 + ], + [ + 77.543957225863096, + 13.010652981282901 + ], + [ + 77.543862211260901, + 13.0106312425391 + ], + [ + 77.543832750649699, + 13.0104712152636 + ], + [ + 77.543775164501398, + 13.010083575640399 + ], + [ + 77.543716231161, + 13.0097373576831 + ], + [ + 77.543685958928705, + 13.009559513846201 + ], + [ + 77.543638418604203, + 13.0092608066394 + ], + [ + 77.543627613280805, + 13.0091929169152 + ], + [ + 77.543579798692207, + 13.008902710348099 + ], + [ + 77.543529562263302, + 13.0085854926864 + ], + [ + 77.543301763419805, + 13.0086287041514 + ], + [ + 77.543104325678499, + 13.0086439107942 + ], + [ + 77.543090968620405, + 13.0085849017982 + ], + [ + 77.543027317220904, + 13.0083037023928 + ], + [ + 77.542999379900607, + 13.0080785154164 + ], + [ + 77.542992086669202, + 13.008019530081199 + ], + [ + 77.5426201194459, + 13.008091114053901 + ], + [ + 77.542383796341198, + 13.0071469267093 + ], + [ + 77.542414682604701, + 13.0071386324533 + ], + [ + 77.542542916337496, + 13.0070914797046 + ], + [ + 77.542733590285494, + 13.007047539309699 + ], + [ + 77.5424444007012, + 13.006390938767799 + ], + [ + 77.542160040552801, + 13.005801510333001 + ], + [ + 77.541997390177698, + 13.0058664937979 + ], + [ + 77.5417473480138, + 13.0059663921809 + ], + [ + 77.541537498818698, + 13.0060179794931 + ], + [ + 77.541420025822802, + 13.0060468575676 + ], + [ + 77.541235587476905, + 13.006083514420199 + ], + [ + 77.541146654725097, + 13.0060885423004 + ], + [ + 77.541113304131201, + 13.0060904274169 + ], + [ + 77.541066877189905, + 13.005663048114499 + ], + [ + 77.541053992762897, + 13.0055444388782 + ], + [ + 77.540988921897593, + 13.0049831938025 + ], + [ + 77.540980437174497, + 13.004910009336999 + ], + [ + 77.540936058980705, + 13.0045557969892 + ], + [ + 77.540893359764596, + 13.0042149801319 + ], + [ + 77.540888105158302, + 13.0041614591476 + ], + [ + 77.540514498988003, + 13.0042429802026 + ], + [ + 77.539834995111704, + 13.0043931956205 + ], + [ + 77.538124014003401, + 13.005065147673999 + ], + [ + 77.537960423054997, + 13.0047409551503 + ], + [ + 77.537779252514497, + 13.0045687036059 + ], + [ + 77.537733399973206, + 13.004533291025901 + ], + [ + 77.537737204499905, + 13.0045305072725 + ], + [ + 77.536839515769799, + 13.0038607391767 + ], + [ + 77.536683100975097, + 13.0036323315703 + ], + [ + 77.536480620570998, + 13.003328135674201 + ], + [ + 77.5364264665007, + 13.0033553525756 + ], + [ + 77.536269352057502, + 13.0034391192859 + ], + [ + 77.536244273805096, + 13.003466136911401 + ], + [ + 77.536120557344105, + 13.0035443731523 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "51", + "group": "EPIP", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "31", + "ward_name": "31 - EPIP Industrial Area", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಇಪಿಐಪಿ ಇಂಡಸ್ಟ್ರಿಯಲ್ ಏರಿಯಾ", + "dig_ward_n": "EPIP Industrial Area", + "Assembly": "174 - Mahadevapura", + "Slno": "31" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.7024025302252, + 12.973842775877401 + ], + [ + 77.702337926916798, + 12.9735296612869 + ], + [ + 77.702244531769907, + 12.9732718906813 + ], + [ + 77.703039738590405, + 12.9734711212081 + ], + [ + 77.703149708829699, + 12.973498659849501 + ], + [ + 77.703231133908304, + 12.9735910295999 + ], + [ + 77.703446552511494, + 12.973904289479799 + ], + [ + 77.703729474410395, + 12.974374597731501 + ], + [ + 77.703869230416004, + 12.974452019775599 + ], + [ + 77.704037609038807, + 12.9744717805857 + ], + [ + 77.705169602552601, + 12.974352449361801 + ], + [ + 77.706916388387896, + 12.974291248290999 + ], + [ + 77.707091844100304, + 12.9742894217064 + ], + [ + 77.707136484123396, + 12.974360661158601 + ], + [ + 77.707101250669993, + 12.9744829255631 + ], + [ + 77.706785438883003, + 12.975163157985 + ], + [ + 77.706738341044002, + 12.9752941070448 + ], + [ + 77.7067218951142, + 12.9754274506726 + ], + [ + 77.7067835359112, + 12.9759299165631 + ], + [ + 77.706387540488194, + 12.976122310565801 + ], + [ + 77.706051318096797, + 12.976293451261499 + ], + [ + 77.705030208790902, + 12.9766460630895 + ], + [ + 77.704888248183906, + 12.9765552421977 + ], + [ + 77.704858196998998, + 12.976514290003699 + ], + [ + 77.704135696973395, + 12.9767190259799 + ], + [ + 77.704050085583702, + 12.976465072616501 + ], + [ + 77.703385593902695, + 12.9766828774479 + ], + [ + 77.703421361099799, + 12.9767822304033 + ], + [ + 77.703008634154301, + 12.9769299306615 + ], + [ + 77.702427586258196, + 12.9771697371388 + ], + [ + 77.703195294366097, + 12.979101148777501 + ], + [ + 77.701736462170899, + 12.979663387562001 + ], + [ + 77.701674821373899, + 12.9795288985504 + ], + [ + 77.700813718119093, + 12.979909950749899 + ], + [ + 77.7020726846999, + 12.981858173515 + ], + [ + 77.701629057751902, + 12.982076718158901 + ], + [ + 77.701555881699804, + 12.9821009733301 + ], + [ + 77.701407098190103, + 12.982238024453901 + ], + [ + 77.701237515301401, + 12.9824215890972 + ], + [ + 77.701162625979194, + 12.9825239959121 + ], + [ + 77.7010170253876, + 12.982689243924799 + ], + [ + 77.700980573350094, + 12.9827257573404 + ], + [ + 77.700944979775798, + 12.9827351609201 + ], + [ + 77.700878385730505, + 12.982752791124399 + ], + [ + 77.700830353526896, + 12.9827580935145 + ], + [ + 77.700754176408296, + 12.9827665032824 + ], + [ + 77.700815586022003, + 12.9828220114314 + ], + [ + 77.700824925536693, + 12.982896727549001 + ], + [ + 77.700860415692603, + 12.9830741783282 + ], + [ + 77.700879094721898, + 12.9832441574956 + ], + [ + 77.700882657969501, + 12.9834144606337 + ], + [ + 77.700905775835594, + 12.983582471834101 + ], + [ + 77.700943501445295, + 12.9837012991081 + ], + [ + 77.700910862918903, + 12.983786804985099 + ], + [ + 77.700867887304199, + 12.983875975664599 + ], + [ + 77.700772624254299, + 12.983943220170399 + ], + [ + 77.700647474757403, + 12.983956295491 + ], + [ + 77.700449635010898, + 12.9839937263176 + ], + [ + 77.700354112286007, + 12.9840211758412 + ], + [ + 77.700331401309697, + 12.9840277019798 + ], + [ + 77.700306157335504, + 12.984035868750899 + ], + [ + 77.700248770645302, + 12.984095586670801 + ], + [ + 77.700177259040601, + 12.984170001849201 + ], + [ + 77.699905925593598, + 12.98445235382 + ], + [ + 77.699793189542902, + 12.984569667148801 + ], + [ + 77.699906592555905, + 12.984578025638699 + ], + [ + 77.699940998172494, + 12.984580561609 + ], + [ + 77.700159952090502, + 12.9851568901049 + ], + [ + 77.699255483852696, + 12.9853833882653 + ], + [ + 77.699465679166295, + 12.9867913971023 + ], + [ + 77.699270717089703, + 12.9867934228382 + ], + [ + 77.699162470699406, + 12.986926006027501 + ], + [ + 77.698975701627305, + 12.9872433376875 + ], + [ + 77.699352878714294, + 12.9879099360937 + ], + [ + 77.699325927135305, + 12.9880360929308 + ], + [ + 77.699438258706806, + 12.988299637064999 + ], + [ + 77.699649877741507, + 12.9886676635588 + ], + [ + 77.699700704531196, + 12.989004040687201 + ], + [ + 77.699734425199694, + 12.989331730100499 + ], + [ + 77.699933208308593, + 12.9895950794995 + ], + [ + 77.7004317665331, + 12.9893745307141 + ], + [ + 77.700655989655004, + 12.989265264287701 + ], + [ + 77.700966536974306, + 12.9891329672413 + ], + [ + 77.701175295855506, + 12.989054311366701 + ], + [ + 77.702221682881103, + 12.9887656917325 + ], + [ + 77.702766235347497, + 12.9886357389764 + ], + [ + 77.702915569830495, + 12.9886130862022 + ], + [ + 77.704187291760803, + 12.9884201762411 + ], + [ + 77.7047909512968, + 12.9883469676467 + ], + [ + 77.705355513657594, + 12.988264603727901 + ], + [ + 77.7060318817406, + 12.988136277258601 + ], + [ + 77.706061204444296, + 12.9881325841997 + ], + [ + 77.706274546549693, + 12.9881039122111 + ], + [ + 77.706871816225402, + 12.988023639889599 + ], + [ + 77.707240150082498, + 12.9879576955546 + ], + [ + 77.707293565351094, + 12.9879458468862 + ], + [ + 77.707505786820903, + 12.9873406429373 + ], + [ + 77.707559215838501, + 12.987170706276199 + ], + [ + 77.707634337306303, + 12.9869305332106 + ], + [ + 77.707738475769901, + 12.986605367819999 + ], + [ + 77.707793055903593, + 12.9864354191646 + ], + [ + 77.707933964510602, + 12.9859969506791 + ], + [ + 77.708054160449294, + 12.985612899610301 + ], + [ + 77.7081454249236, + 12.9853217452713 + ], + [ + 77.708237754392997, + 12.9850757459593 + ], + [ + 77.708267795827396, + 12.9849455632807 + ], + [ + 77.708279547018506, + 12.9848946386152 + ], + [ + 77.708282765184293, + 12.9848602657 + ], + [ + 77.708325470215698, + 12.9844040878966 + ], + [ + 77.708328360776605, + 12.9844051869661 + ], + [ + 77.7083286810158, + 12.9842222535082 + ], + [ + 77.710039235060094, + 12.984818821030901 + ], + [ + 77.710121478463094, + 12.985456688526501 + ], + [ + 77.710168176036603, + 12.986043210049299 + ], + [ + 77.710153232813099, + 12.9863981116077 + ], + [ + 77.710220477318799, + 12.9881240539231 + ], + [ + 77.710399197093196, + 12.988220603378601 + ], + [ + 77.710949985596102, + 12.988512957232301 + ], + [ + 77.710966688860907, + 12.988521822800299 + ], + [ + 77.7115963112808, + 12.988821058688 + ], + [ + 77.711598989687701, + 12.9874628162828 + ], + [ + 77.711843684972706, + 12.9874105150005 + ], + [ + 77.711874650195597, + 12.9867273914812 + ], + [ + 77.712893446424403, + 12.986768890341001 + ], + [ + 77.712899984084601, + 12.9866848347088 + ], + [ + 77.713439808033996, + 12.9866372031838 + ], + [ + 77.713461288917799, + 12.986512987638401 + ], + [ + 77.713522283560096, + 12.986489854541301 + ], + [ + 77.713500514879399, + 12.986131001487401 + ], + [ + 77.713479033995696, + 12.9850504196374 + ], + [ + 77.713038208902105, + 12.984673103243701 + ], + [ + 77.712672099926095, + 12.984273372014799 + ], + [ + 77.712459158991095, + 12.984082845915101 + ], + [ + 77.712483361307207, + 12.984084851659199 + ], + [ + 77.712388178679404, + 12.983963300127 + ], + [ + 77.712403260591799, + 12.983864706740301 + ], + [ + 77.712487441295593, + 12.983770104841099 + ], + [ + 77.7127193094299, + 12.9836502480916 + ], + [ + 77.713008130047399, + 12.983420264711601 + ], + [ + 77.713243463281302, + 12.983248428487901 + ], + [ + 77.713525485332397, + 12.983028678432399 + ], + [ + 77.713630755732794, + 12.982861587658499 + ], + [ + 77.713756429816499, + 12.982558780539399 + ], + [ + 77.713876324292102, + 12.982412991694 + ], + [ + 77.714184274569106, + 12.9822483009035 + ], + [ + 77.714583925443705, + 12.982098460679 + ], + [ + 77.714728867473696, + 12.9820325826371 + ], + [ + 77.714900474336602, + 12.982036435929 + ], + [ + 77.715199448357595, + 12.982052508732 + ], + [ + 77.715391520305801, + 12.9819793627896 + ], + [ + 77.715549957837794, + 12.981830912291599 + ], + [ + 77.7155370226358, + 12.9817531331799 + ], + [ + 77.715514742029299, + 12.981663030598201 + ], + [ + 77.715489570904396, + 12.9815718290207 + ], + [ + 77.715443370447403, + 12.981505689394499 + ], + [ + 77.715491699412098, + 12.981453305553 + ], + [ + 77.715547736500199, + 12.981363646211999 + ], + [ + 77.715818582426394, + 12.981429022814799 + ], + [ + 77.715910109670403, + 12.9811507052769 + ], + [ + 77.716078220934904, + 12.980954575468401 + ], + [ + 77.717202698503996, + 12.9808611803214 + ], + [ + 77.717240056562801, + 12.9809527075654 + ], + [ + 77.718574014290795, + 12.9808000453351 + ], + [ + 77.721383065281103, + 12.9804726565102 + ], + [ + 77.722787769062194, + 12.9803735171486 + ], + [ + 77.723126897837503, + 12.9803699642578 + ], + [ + 77.725514552248001, + 12.980297134997301 + ], + [ + 77.726154412098197, + 12.9802696700421 + ], + [ + 77.726154529030197, + 12.9802696652023 + ], + [ + 77.727327655070596, + 12.9802229286858 + ], + [ + 77.727374691012201, + 12.980221054809 + ], + [ + 77.727495854693601, + 12.9802162268853 + ], + [ + 77.727491413985902, + 12.980187111674599 + ], + [ + 77.727457261595205, + 12.9799063036542 + ], + [ + 77.727425971653204, + 12.978851411009099 + ], + [ + 77.727425385834707, + 12.978831656462599 + ], + [ + 77.7274235161223, + 12.978784815008 + ], + [ + 77.727359625691506, + 12.9771837398779 + ], + [ + 77.727306673660806, + 12.976515254644401 + ], + [ + 77.727302875120202, + 12.9764673042264 + ], + [ + 77.727267514931199, + 12.9764450906055 + ], + [ + 77.727228101598001, + 12.976420662937301 + ], + [ + 77.727138852253503, + 12.976419339879399 + ], + [ + 77.725937182224897, + 12.9765087267249 + ], + [ + 77.725646147711998, + 12.9765356797555 + ], + [ + 77.724754727747296, + 12.976618232095401 + ], + [ + 77.723914469239801, + 12.9766959174988 + ], + [ + 77.723109800968601, + 12.9767641940002 + ], + [ + 77.722731961928204, + 12.9768008977757 + ], + [ + 77.721482249977498, + 12.9769201266155 + ], + [ + 77.721337899199199, + 12.976934058741 + ], + [ + 77.720386096904704, + 12.977025321762699 + ], + [ + 77.720087168378498, + 12.9770657128421 + ], + [ + 77.719196113673505, + 12.9771845657969 + ], + [ + 77.718527549206598, + 12.9772751179525 + ], + [ + 77.718398666445594, + 12.9772821116161 + ], + [ + 77.718281296536304, + 12.977288984836701 + ], + [ + 77.718261530282305, + 12.977290205077001 + ], + [ + 77.717950149405198, + 12.9732605424259 + ], + [ + 77.717890086785403, + 12.9726311999733 + ], + [ + 77.717600561829897, + 12.972601313526299 + ], + [ + 77.717566939576997, + 12.9724911072529 + ], + [ + 77.717329715903801, + 12.9713498185573 + ], + [ + 77.716843010740703, + 12.9714030318206 + ], + [ + 77.716597540459205, + 12.9694456913448 + ], + [ + 77.7164298988274, + 12.967705454033201 + ], + [ + 77.716410767869604, + 12.967506857186599 + ], + [ + 77.716374031969494, + 12.967508668067399 + ], + [ + 77.716314039685201, + 12.967529612712299 + ], + [ + 77.7162317082078, + 12.9675309800328 + ], + [ + 77.715763781687798, + 12.967538754157999 + ], + [ + 77.7151640391141, + 12.9675792162187 + ], + [ + 77.714890269175896, + 12.967597690592401 + ], + [ + 77.714655242684003, + 12.9676135498897 + ], + [ + 77.714582763203794, + 12.967622222304399 + ], + [ + 77.714128020791605, + 12.9676766398286 + ], + [ + 77.714122868524896, + 12.9676790522436 + ], + [ + 77.714069738474905, + 12.9677039357172 + ], + [ + 77.714051249179803, + 12.967648566819401 + ], + [ + 77.714028542411995, + 12.9675805669343 + ], + [ + 77.713975298957095, + 12.9674684594839 + ], + [ + 77.712291981677794, + 12.9668967379513 + ], + [ + 77.712602053565604, + 12.966002012443701 + ], + [ + 77.711976521410094, + 12.965831321701801 + ], + [ + 77.711232880711506, + 12.9655705268648 + ], + [ + 77.711119174291298, + 12.9659542297433 + ], + [ + 77.710771806557304, + 12.965838695312099 + ], + [ + 77.710207839332, + 12.965651117226299 + ], + [ + 77.710256198245006, + 12.9654962738232 + ], + [ + 77.709357429784205, + 12.965229027565901 + ], + [ + 77.709322848282198, + 12.9652187442789 + ], + [ + 77.708919350954901, + 12.9665878706264 + ], + [ + 77.710739648638295, + 12.9671466771167 + ], + [ + 77.710440750589896, + 12.968119594117701 + ], + [ + 77.707307477030099, + 12.967582262426999 + ], + [ + 77.706989005234504, + 12.9681743835615 + ], + [ + 77.706639540070398, + 12.968918133736899 + ], + [ + 77.706511627660802, + 12.969071959154901 + ], + [ + 77.706447074917193, + 12.9691495899056 + ], + [ + 77.706452131218896, + 12.969157708194601 + ], + [ + 77.7064898462896, + 12.9691744931863 + ], + [ + 77.706562165622401, + 12.9692076167373 + ], + [ + 77.7068326864174, + 12.969681324446899 + ], + [ + 77.706945908099499, + 12.969876627062501 + ], + [ + 77.707004115448896, + 12.9700950852571 + ], + [ + 77.707027672554005, + 12.970261123417099 + ], + [ + 77.707034030497596, + 12.970305935279701 + ], + [ + 77.707135530756304, + 12.970762397378399 + ], + [ + 77.704501892471498, + 12.971322733964699 + ], + [ + 77.704372073217201, + 12.971146217136999 + ], + [ + 77.703490423030104, + 12.9714320062866 + ], + [ + 77.703320443862694, + 12.9714936470836 + ], + [ + 77.703170879039604, + 12.9714670179513 + ], + [ + 77.703089757849796, + 12.971207857934001 + ], + [ + 77.7029814194793, + 12.9708221359771 + ], + [ + 77.703378348853803, + 12.9707156655096 + ], + [ + 77.703289623464201, + 12.970505526428999 + ], + [ + 77.702662942028297, + 12.9706764395479 + ], + [ + 77.702473289665505, + 12.970059746283599 + ], + [ + 77.702335080562094, + 12.9696739771718 + ], + [ + 77.702628385071094, + 12.969075781472201 + ], + [ + 77.703055476465295, + 12.9680029453244 + ], + [ + 77.703216546430397, + 12.9673021807425 + ], + [ + 77.703294205323502, + 12.9669643137301 + ], + [ + 77.703305604721706, + 12.9668249735016 + ], + [ + 77.703313333727493, + 12.9667305017011 + ], + [ + 77.703316015519505, + 12.966697716991799 + ], + [ + 77.7033254207075, + 12.966582760281 + ], + [ + 77.702967280281499, + 12.9667059890521 + ], + [ + 77.702469602374805, + 12.9668844450087 + ], + [ + 77.702123773883002, + 12.9670194954784 + ], + [ + 77.701649754300604, + 12.968060124306501 + ], + [ + 77.701519082703598, + 12.968372201535001 + ], + [ + 77.7014540404695, + 12.9684734114775 + ], + [ + 77.701279397569394, + 12.9687451647331 + ], + [ + 77.701063692923697, + 12.969082026103701 + ], + [ + 77.700537775906199, + 12.970031599300301 + ], + [ + 77.700106178035398, + 12.970753703127899 + ], + [ + 77.699835432787296, + 12.971144800759699 + ], + [ + 77.6996149292886, + 12.9714633234424 + ], + [ + 77.699232121094795, + 12.9721245898891 + ], + [ + 77.699076852283298, + 12.9723521945141 + ], + [ + 77.698694105170901, + 12.973019435779801 + ], + [ + 77.698686390167794, + 12.973023655967699 + ], + [ + 77.6990290173419, + 12.972896055385601 + ], + [ + 77.699842762191594, + 12.9725298009438 + ], + [ + 77.700114930508207, + 12.9724073020014 + ], + [ + 77.700116762206903, + 12.9727532653721 + ], + [ + 77.700459058535301, + 12.9745693166835 + ], + [ + 77.7005124413608, + 12.9748525343227 + ], + [ + 77.700523282866399, + 12.974892001730501 + ], + [ + 77.700598909280799, + 12.9751958307082 + ], + [ + 77.701620652188296, + 12.975087492337799 + ], + [ + 77.701659878150096, + 12.9751771516788 + ], + [ + 77.702731517404004, + 12.9748660078725 + ], + [ + 77.702692697815706, + 12.9747581767569 + ], + [ + 77.702508521861205, + 12.9741786856885 + ], + [ + 77.7024025302252, + 12.973842775877401 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "55", + "group": "Maruthi", + "Corporatio": "North", + "ac_no": "150", + "ac": "Yelahanka", + "corporat_1": "2", + "ward_id": "2", + "ward_name": "2 - Venkatala", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಯಲಹಂಕ", + "ward_name_": "ವೆಂಕಟಲ", + "dig_ward_n": "Maruthi Ward", + "Assembly": "150 - Yelahanka", + "Slno": "2" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6260726615198, + 13.105152397609301 + ], + [ + 77.626070895684506, + 13.1051494524355 + ], + [ + 77.626068328555604, + 13.105145170257099 + ], + [ + 77.626067249540796, + 13.105143370828999 + ], + [ + 77.626063529260804, + 13.105137164404599 + ], + [ + 77.626057277514505, + 13.1051267359663 + ], + [ + 77.626030022406496, + 13.105081270692899 + ], + [ + 77.625767748349205, + 13.1051540492578 + ], + [ + 77.625649872806093, + 13.104737779982999 + ], + [ + 77.625587132842796, + 13.1045162174069 + ], + [ + 77.625561901695093, + 13.104427114937399 + ], + [ + 77.625605508300296, + 13.104408573492 + ], + [ + 77.625594984701905, + 13.1043746891471 + ], + [ + 77.625578254590195, + 13.1043208205465 + ], + [ + 77.625574812585995, + 13.104309739200399 + ], + [ + 77.625395489746893, + 13.1038634251628 + ], + [ + 77.625359896389497, + 13.103774836574701 + ], + [ + 77.625225845287702, + 13.1038072453607 + ], + [ + 77.624967687225805, + 13.1031267080921 + ], + [ + 77.624930918913606, + 13.103133719105699 + ], + [ + 77.624930541789993, + 13.1031337907033 + ], + [ + 77.624916101759794, + 13.1031365441423 + ], + [ + 77.624634897716305, + 13.103190162202401 + ], + [ + 77.624555875307294, + 13.103205230150101 + ], + [ + 77.623875111235805, + 13.103335033460199 + ], + [ + 77.623411228833902, + 13.103423482227299 + ], + [ + 77.623258870233101, + 13.1034510064742 + ], + [ + 77.623210571651896, + 13.103459403037199 + ], + [ + 77.623020256257405, + 13.103492959895499 + ], + [ + 77.622911528478696, + 13.1035064886358 + ], + [ + 77.622765971968207, + 13.1035237800138 + ], + [ + 77.622658815643106, + 13.1035226122598 + ], + [ + 77.622590251860203, + 13.10352105164 + ], + [ + 77.622465226314603, + 13.1035189364292 + ], + [ + 77.622402433371704, + 13.1035184462831 + ], + [ + 77.622328684462204, + 13.103525256055599 + ], + [ + 77.622333860841394, + 13.103566435869901 + ], + [ + 77.622334257374604, + 13.1035695883457 + ], + [ + 77.622328746347804, + 13.1036041808651 + ], + [ + 77.622323261292905, + 13.1036386150237 + ], + [ + 77.622326883594795, + 13.10367264662 + ], + [ + 77.622342798732603, + 13.103822179535401 + ], + [ + 77.622338089659394, + 13.103931341221999 + ], + [ + 77.6223752163271, + 13.1041147303083 + ], + [ + 77.622361701556599, + 13.104205614409 + ], + [ + 77.622347847741594, + 13.1042987731316 + ], + [ + 77.622347550235304, + 13.104354296070801 + ], + [ + 77.622346990319201, + 13.1044585624095 + ], + [ + 77.622346527591702, + 13.1045449456785 + ], + [ + 77.622368821858203, + 13.1046709954708 + ], + [ + 77.622386893594495, + 13.1047731731918 + ], + [ + 77.622417995872894, + 13.104949023175299 + ], + [ + 77.622469501406002, + 13.105240226821101 + ], + [ + 77.622474254439794, + 13.1052671018321 + ], + [ + 77.622525472675306, + 13.1054970744005 + ], + [ + 77.622566830021199, + 13.105682772783 + ], + [ + 77.622603502707193, + 13.1058474350816 + ], + [ + 77.622622980802007, + 13.105999587653899 + ], + [ + 77.622637466831193, + 13.1061127466161 + ], + [ + 77.622640451219695, + 13.1061360557998 + ], + [ + 77.622684212154994, + 13.1061287172643 + ], + [ + 77.622783002688294, + 13.106112149340399 + ], + [ + 77.622796445926895, + 13.1062223078345 + ], + [ + 77.622803592970797, + 13.1062808717131 + ], + [ + 77.622817171775296, + 13.1063558121432 + ], + [ + 77.622847533514999, + 13.1065233789261 + ], + [ + 77.622870498479301, + 13.1066501255085 + ], + [ + 77.622899303825307, + 13.1068091031497 + ], + [ + 77.6229417214535, + 13.107043206947701 + ], + [ + 77.622953024419004, + 13.1071724653817 + ], + [ + 77.622953875013295, + 13.107182193657801 + ], + [ + 77.622953079477199, + 13.1072116610086 + ], + [ + 77.622951615401306, + 13.1072658813346 + ], + [ + 77.622903012097794, + 13.107321600714499 + ], + [ + 77.622817028729401, + 13.1073600752082 + ], + [ + 77.622734234146506, + 13.1073597438111 + ], + [ + 77.622544688875905, + 13.1073628481375 + ], + [ + 77.622449221030394, + 13.107411995293001 + ], + [ + 77.622434996503102, + 13.107428589381801 + ], + [ + 77.622072172586599, + 13.1076007733427 + ], + [ + 77.621936156145395, + 13.1076701204817 + ], + [ + 77.621782348312394, + 13.1076962289969 + ], + [ + 77.621562679979604, + 13.107687137875899 + ], + [ + 77.621043110654497, + 13.107778432725301 + ], + [ + 77.621060982459696, + 13.1078649592309 + ], + [ + 77.620876560198397, + 13.1079728392397 + ], + [ + 77.620816979715002, + 13.1080358530391 + ], + [ + 77.620780976382306, + 13.108073931319 + ], + [ + 77.620770333062296, + 13.1080851876933 + ], + [ + 77.620768325998597, + 13.108087311253399 + ], + [ + 77.620749418313395, + 13.1081073081907 + ], + [ + 77.620742488353102, + 13.1081146376013 + ], + [ + 77.6208188431862, + 13.108157060847301 + ], + [ + 77.620848019451003, + 13.1081732719801 + ], + [ + 77.620918523683599, + 13.108205275167601 + ], + [ + 77.620979415525198, + 13.1082329151096 + ], + [ + 77.621119974992297, + 13.1083963570252 + ], + [ + 77.621470617821402, + 13.108923541508 + ], + [ + 77.621579785636897, + 13.109137384856799 + ], + [ + 77.621609186683798, + 13.109194977862799 + ], + [ + 77.621630626862796, + 13.1092369768427 + ], + [ + 77.621636360596, + 13.109248710679999 + ], + [ + 77.621637623035099, + 13.1092512942278 + ], + [ + 77.621655959488095, + 13.109288818591599 + ], + [ + 77.621655978321897, + 13.109288856343101 + ], + [ + 77.621655998105993, + 13.1092888967951 + ], + [ + 77.621694739936601, + 13.109368180416 + ], + [ + 77.621981926050196, + 13.109955886725899 + ], + [ + 77.622044388946406, + 13.1100837119291 + ], + [ + 77.622078029448105, + 13.1101525551907 + ], + [ + 77.622078406660293, + 13.110152490821701 + ], + [ + 77.622085234326406, + 13.110151859385001 + ], + [ + 77.622346891800404, + 13.110127660613299 + ], + [ + 77.622493299351504, + 13.1101141201015 + ], + [ + 77.622531095041595, + 13.1101106247843 + ], + [ + 77.622571905393897, + 13.110106850324801 + ], + [ + 77.622626819488303, + 13.1101017713519 + ], + [ + 77.622679131996804, + 13.110097769526 + ], + [ + 77.623009186179004, + 13.1100725239318 + ], + [ + 77.6230362391738, + 13.1100740389482 + ], + [ + 77.623117826092297, + 13.1100786094337 + ], + [ + 77.623424386159101, + 13.110095782741 + ], + [ + 77.623474061617401, + 13.110108292105499 + ], + [ + 77.623694458627, + 13.1101155127491 + ], + [ + 77.623916428723206, + 13.110130968900201 + ], + [ + 77.623995145575904, + 13.110130508356001 + ], + [ + 77.624268332914596, + 13.110128909078499 + ], + [ + 77.624354716807304, + 13.110128401916 + ], + [ + 77.624508889705098, + 13.1101274993117 + ], + [ + 77.624560902159004, + 13.1101271951007 + ], + [ + 77.624800939700805, + 13.1101599888321 + ], + [ + 77.624801708156795, + 13.1101614436161 + ], + [ + 77.6248312236782, + 13.110217322970399 + ], + [ + 77.625262908140598, + 13.110266295300301 + ], + [ + 77.625432200944402, + 13.1102856766489 + ], + [ + 77.625556735597698, + 13.110299349224899 + ], + [ + 77.625583303792496, + 13.1103022556375 + ], + [ + 77.6257909855603, + 13.110330628151299 + ], + [ + 77.625794898050202, + 13.110265039897699 + ], + [ + 77.625820867451694, + 13.1102150877482 + ], + [ + 77.625892457654999, + 13.110230167399701 + ], + [ + 77.626142603102494, + 13.1102792544604 + ], + [ + 77.626519378290197, + 13.110354768092099 + ], + [ + 77.626818415309103, + 13.1104150079366 + ], + [ + 77.626980779824393, + 13.1104863008528 + ], + [ + 77.627191468186794, + 13.110556056273101 + ], + [ + 77.627475574564301, + 13.1106199753831 + ], + [ + 77.627689375586499, + 13.110736943105699 + ], + [ + 77.628472695751697, + 13.110905352535299 + ], + [ + 77.628487887670701, + 13.110908617762201 + ], + [ + 77.628801366883096, + 13.1109759927522 + ], + [ + 77.628884997712206, + 13.1109943101584 + ], + [ + 77.628944059884105, + 13.111007246531001 + ], + [ + 77.629059841369298, + 13.1110326056255 + ], + [ + 77.629641649872099, + 13.1111600355308 + ], + [ + 77.629779792170197, + 13.111189080380999 + ], + [ + 77.630084658792597, + 13.1112531791614 + ], + [ + 77.630240898485695, + 13.1112860292401 + ], + [ + 77.630189295458706, + 13.1112039093366 + ], + [ + 77.630074737084001, + 13.111031523796701 + ], + [ + 77.629834349068005, + 13.110762234044399 + ], + [ + 77.629482454235202, + 13.110368028757399 + ], + [ + 77.629475243733594, + 13.110359951867901 + ], + [ + 77.629475008344201, + 13.110359831408401 + ], + [ + 77.6294774561227, + 13.110357381678799 + ], + [ + 77.628809600789893, + 13.1096142193811 + ], + [ + 77.628583137154905, + 13.1093269201063 + ], + [ + 77.628469020896304, + 13.109132715570301 + ], + [ + 77.628164135653094, + 13.1086137202413 + ], + [ + 77.627894232496402, + 13.1083479785562 + ], + [ + 77.627778136024006, + 13.108277990964201 + ], + [ + 77.627524120984106, + 13.1081248596678 + ], + [ + 77.627354538774696, + 13.1079581016988 + ], + [ + 77.627275424445699, + 13.107772507182901 + ], + [ + 77.627212888510002, + 13.107625804081099 + ], + [ + 77.627147635146798, + 13.1074727253249 + ], + [ + 77.627043203507696, + 13.1072277379031 + ], + [ + 77.626900864218598, + 13.106893819941501 + ], + [ + 77.626657200370005, + 13.1066691910932 + ], + [ + 77.626628218693, + 13.1065869107689 + ], + [ + 77.626455778126598, + 13.106381230675501 + ], + [ + 77.626239313615898, + 13.106128003054 + ], + [ + 77.626141370601104, + 13.105898236279399 + ], + [ + 77.626135989559003, + 13.1058856127274 + ], + [ + 77.626112079021894, + 13.105723136688701 + ], + [ + 77.626092928437004, + 13.1054989347421 + ], + [ + 77.626061286836304, + 13.105243926565301 + ], + [ + 77.626065215942404, + 13.1052123079347 + ], + [ + 77.626065909724005, + 13.105206725940199 + ], + [ + 77.626069833798795, + 13.105175154338101 + ], + [ + 77.626070101303299, + 13.105173003310201 + ], + [ + 77.626071189928197, + 13.105164241816601 + ], + [ + 77.626071814908599, + 13.105159211601499 + ], + [ + 77.6260726615198, + 13.105152397609301 + ] + ] + ], + [ + [ + [ + 77.603826147105806, + 13.0872807864171 + ], + [ + 77.6034607151893, + 13.087775630383501 + ], + [ + 77.6034369467951, + 13.0878913836652 + ], + [ + 77.603398774673096, + 13.0883632302388 + ], + [ + 77.603301641811797, + 13.0887300510846 + ], + [ + 77.603214885186702, + 13.089085501439699 + ], + [ + 77.602528340022204, + 13.090341426206701 + ], + [ + 77.602240333939093, + 13.0908025278182 + ], + [ + 77.601934448157493, + 13.0911699624261 + ], + [ + 77.601469404777205, + 13.091799842748401 + ], + [ + 77.601201857708901, + 13.092332502985601 + ], + [ + 77.600865424547706, + 13.093221204922701 + ], + [ + 77.600841656850704, + 13.0938578316701 + ], + [ + 77.600710932578394, + 13.094517606167701 + ], + [ + 77.600208042170607, + 13.0961114751524 + ], + [ + 77.599688029785696, + 13.0970335837444 + ], + [ + 77.599398453989494, + 13.097413273714 + ], + [ + 77.598845246547796, + 13.0980149597448 + ], + [ + 77.599843500604905, + 13.101598494881699 + ], + [ + 77.600392540858195, + 13.1034388561044 + ], + [ + 77.600420305888093, + 13.1036083047526 + ], + [ + 77.6005393717966, + 13.103913536996799 + ], + [ + 77.600547663532097, + 13.1039347930673 + ], + [ + 77.600605497371205, + 13.104083053725001 + ], + [ + 77.5999281102727, + 13.103985827516899 + ], + [ + 77.599510966507395, + 13.1040779115806 + ], + [ + 77.599200456218895, + 13.104958771317399 + ], + [ + 77.598309511438202, + 13.104687242571 + ], + [ + 77.597749103003096, + 13.1046524699484 + ], + [ + 77.597439939004403, + 13.104539396078501 + ], + [ + 77.597190039660703, + 13.104340007675701 + ], + [ + 77.5969604253592, + 13.1042746811315 + ], + [ + 77.596249555581394, + 13.1043151952769 + ], + [ + 77.5957573667676, + 13.104841883290399 + ], + [ + 77.5957352335151, + 13.104945703095 + ], + [ + 77.5957252013187, + 13.104992763372 + ], + [ + 77.595639870297703, + 13.105393027914401 + ], + [ + 77.595460625420202, + 13.105781970671901 + ], + [ + 77.595438801970701, + 13.1060270914097 + ], + [ + 77.595476899270494, + 13.1063319748169 + ], + [ + 77.595473021214303, + 13.106346694569501 + ], + [ + 77.595462347013395, + 13.106388526866599 + ], + [ + 77.595440375328806, + 13.1064746324752 + ], + [ + 77.595380521170597, + 13.1066083093388 + ], + [ + 77.595185391326496, + 13.107044101597801 + ], + [ + 77.595160331078901, + 13.1070976146848 + ], + [ + 77.594868170844293, + 13.1077214795563 + ], + [ + 77.594655428258804, + 13.108301403755901 + ], + [ + 77.5944298936178, + 13.1085559179668 + ], + [ + 77.594398757910298, + 13.1086081786452 + ], + [ + 77.594396593952595, + 13.108611099539701 + ], + [ + 77.593924763476707, + 13.109117371550999 + ], + [ + 77.593632733599406, + 13.1096661279723 + ], + [ + 77.593445361205198, + 13.1099266209951 + ], + [ + 77.593335449995905, + 13.109937891343501 + ], + [ + 77.593155080000102, + 13.110152013057601 + ], + [ + 77.592981320055401, + 13.1103244309617 + ], + [ + 77.592669889060701, + 13.110633456313399 + ], + [ + 77.5925909320041, + 13.110685069033099 + ], + [ + 77.591623990221706, + 13.1113170381765 + ], + [ + 77.591196208663305, + 13.1114500816185 + ], + [ + 77.591123578802197, + 13.1115558360554 + ], + [ + 77.591145388042705, + 13.111603046625699 + ], + [ + 77.591131226423599, + 13.1118459856537 + ], + [ + 77.590967917241898, + 13.11198427253 + ], + [ + 77.590656073694504, + 13.112241499545799 + ], + [ + 77.590303127953604, + 13.112424606841699 + ], + [ + 77.590068565858701, + 13.1125252143061 + ], + [ + 77.590052508330103, + 13.112532151546599 + ], + [ + 77.589597361905206, + 13.112596238258099 + ], + [ + 77.589201123901006, + 13.112600222914001 + ], + [ + 77.5887521391533, + 13.1125905561187 + ], + [ + 77.588642602503398, + 13.112588197204801 + ], + [ + 77.587817499673093, + 13.1124709799003 + ], + [ + 77.587441452103107, + 13.1131670889889 + ], + [ + 77.587255017952202, + 13.1135732479304 + ], + [ + 77.587101572748693, + 13.1140490912892 + ], + [ + 77.5869730432117, + 13.114648906117701 + ], + [ + 77.586899610343295, + 13.1153259401448 + ], + [ + 77.586878993851997, + 13.1155160160812 + ], + [ + 77.5866094722913, + 13.1176722792744 + ], + [ + 77.586600827475294, + 13.117749402656001 + ], + [ + 77.586479323507206, + 13.1188333673943 + ], + [ + 77.586238429615307, + 13.120471327340301 + ], + [ + 77.586184588052205, + 13.120837430283499 + ], + [ + 77.586150985480501, + 13.1211281119296 + ], + [ + 77.586052445609397, + 13.121980546800399 + ], + [ + 77.585946329513703, + 13.122898519604799 + ], + [ + 77.585763171818897, + 13.124298761510399 + ], + [ + 77.585706769039206, + 13.1247299635624 + ], + [ + 77.585641547835493, + 13.1252285843119 + ], + [ + 77.585612351245004, + 13.125657945491101 + ], + [ + 77.585595436285203, + 13.125989064222701 + ], + [ + 77.585605014631, + 13.126266752420801 + ], + [ + 77.585605894687603, + 13.126292276361699 + ], + [ + 77.585648699452605, + 13.1269020473436 + ], + [ + 77.585761198472198, + 13.1275144242135 + ], + [ + 77.586027325097106, + 13.128511849076499 + ], + [ + 77.586187027197695, + 13.129146726841601 + ], + [ + 77.586063920700397, + 13.129345579450201 + ], + [ + 77.585329073249099, + 13.131950016293301 + ], + [ + 77.585310761624299, + 13.1320170488555 + ], + [ + 77.585271328564502, + 13.132169021261801 + ], + [ + 77.585198802999599, + 13.1324485313583 + ], + [ + 77.585198149480306, + 13.132505689915901 + ], + [ + 77.585197271645796, + 13.1325825446342 + ], + [ + 77.585195796228604, + 13.132711685140199 + ], + [ + 77.585194910265201, + 13.132766714839001 + ], + [ + 77.585208347471493, + 13.1327536019435 + ], + [ + 77.585341981752407, + 13.132692631837401 + ], + [ + 77.585340343919199, + 13.1326891294396 + ], + [ + 77.585632179521298, + 13.1326008568275 + ], + [ + 77.585634046713096, + 13.1326002923788 + ], + [ + 77.585859008324604, + 13.132598847717601 + ], + [ + 77.585853912306405, + 13.1326200374493 + ], + [ + 77.585822757466104, + 13.132749569428899 + ], + [ + 77.585748786643194, + 13.1330571194661 + ], + [ + 77.585690715136707, + 13.1332985627492 + ], + [ + 77.585747597150998, + 13.1333046607408 + ], + [ + 77.586213201074202, + 13.133313529325999 + ], + [ + 77.586791539054204, + 13.1333596586854 + ], + [ + 77.587322541731595, + 13.1333324302059 + ], + [ + 77.587661223989201, + 13.1333207970334 + ], + [ + 77.588289150332301, + 13.133299228604301 + ], + [ + 77.588328681566097, + 13.1332993790366 + ], + [ + 77.588510539206894, + 13.133300067914901 + ], + [ + 77.589094236437703, + 13.133303682308799 + ], + [ + 77.5891037196902, + 13.133303746721401 + ], + [ + 77.596566953709996, + 13.132928765088399 + ], + [ + 77.597660481001199, + 13.132638027856499 + ], + [ + 77.599547247867605, + 13.1320807466026 + ], + [ + 77.599618555048295, + 13.132031899493599 + ], + [ + 77.600214472216095, + 13.1326304504568 + ], + [ + 77.600520895892103, + 13.132938226175099 + ], + [ + 77.601541660287893, + 13.1339981351272 + ], + [ + 77.601839495193005, + 13.134307388634801 + ], + [ + 77.601904121532797, + 13.134306868306201 + ], + [ + 77.602011795750499, + 13.1343067804734 + ], + [ + 77.603129529366598, + 13.1343058649562 + ], + [ + 77.604284083222495, + 13.134259761096301 + ], + [ + 77.608890690847204, + 13.133542076800801 + ], + [ + 77.610476507645899, + 13.133313245247299 + ], + [ + 77.610489505867804, + 13.1332804647522 + ], + [ + 77.610767226539096, + 13.133252810002 + ], + [ + 77.610934548394994, + 13.133236148579201 + ], + [ + 77.611682931285003, + 13.133109895176 + ], + [ + 77.612433546774298, + 13.133005975630899 + ], + [ + 77.612435174137303, + 13.1330057531178 + ], + [ + 77.612482122477303, + 13.1329767318293 + ], + [ + 77.612641311736695, + 13.132878327977799 + ], + [ + 77.612728470457498, + 13.1328237217298 + ], + [ + 77.613294953084406, + 13.1324688144822 + ], + [ + 77.6140882706284, + 13.131971788111301 + ], + [ + 77.614249409609798, + 13.131870831396199 + ], + [ + 77.6142839960293, + 13.131849263113001 + ], + [ + 77.614415974504197, + 13.131766957424199 + ], + [ + 77.614583787396299, + 13.1316623054883 + ], + [ + 77.614639478657594, + 13.1316275748656 + ], + [ + 77.614843915033006, + 13.131554403824101 + ], + [ + 77.615070994657898, + 13.1314731282261 + ], + [ + 77.615077821284302, + 13.131470684634101 + ], + [ + 77.615103734737204, + 13.131461409564 + ], + [ + 77.615183262097503, + 13.131432945521899 + ], + [ + 77.615270238669098, + 13.131401815614399 + ], + [ + 77.6152750275849, + 13.1314001010173 + ], + [ + 77.615292501399594, + 13.131384313241799 + ], + [ + 77.615320981019906, + 13.1313585807926 + ], + [ + 77.615355231072698, + 13.131327635685899 + ], + [ + 77.615373237685006, + 13.1313113275428 + ], + [ + 77.615399225925799, + 13.1312877904228 + ], + [ + 77.615530977511398, + 13.1311680238921 + ], + [ + 77.615692001670197, + 13.131197091199301 + ], + [ + 77.615710611964104, + 13.131200450499801 + ], + [ + 77.615782436749797, + 13.131213415618401 + ], + [ + 77.615750755567205, + 13.1311125593611 + ], + [ + 77.615709536976198, + 13.130981340669299 + ], + [ + 77.615679642611497, + 13.130901756023301 + ], + [ + 77.615662414748698, + 13.130855893381501 + ], + [ + 77.615563062684899, + 13.130591396530299 + ], + [ + 77.615492505770604, + 13.1304035593873 + ], + [ + 77.615446196680693, + 13.130280275549101 + ], + [ + 77.615128570706503, + 13.129434683772701 + ], + [ + 77.615063036911707, + 13.129260217303599 + ], + [ + 77.614848768584906, + 13.1286897804403 + ], + [ + 77.614799570733197, + 13.128559285777801 + ], + [ + 77.614418511085105, + 13.1271741620676 + ], + [ + 77.614345689495295, + 13.1269343684842 + ], + [ + 77.614170241516007, + 13.126360225674301 + ], + [ + 77.613848318612796, + 13.1254454030651 + ], + [ + 77.613769991609203, + 13.125175174833499 + ], + [ + 77.613525484947303, + 13.124335225604799 + ], + [ + 77.613208710969403, + 13.1237433193913 + ], + [ + 77.612968374797006, + 13.1230794923784 + ], + [ + 77.612509052873406, + 13.1218092128231 + ], + [ + 77.612494432468395, + 13.121768599194001 + ], + [ + 77.612449107883904, + 13.121642689718501 + ], + [ + 77.612206413000706, + 13.120973238783399 + ], + [ + 77.612179170735203, + 13.120793961619899 + ], + [ + 77.612159953768298, + 13.1206654200692 + ], + [ + 77.611901042575596, + 13.1189515594008 + ], + [ + 77.611860198181304, + 13.1186843371612 + ], + [ + 77.611861306961003, + 13.1179467497559 + ], + [ + 77.611861489621404, + 13.117824950368901 + ], + [ + 77.611861277076798, + 13.1175866767647 + ], + [ + 77.611861558445696, + 13.1175042372712 + ], + [ + 77.612095571893903, + 13.1174070040258 + ], + [ + 77.612142745716, + 13.1174008789604 + ], + [ + 77.612178423035004, + 13.117397129094099 + ], + [ + 77.612158809581601, + 13.1172855305252 + ], + [ + 77.612070885687601, + 13.1167856814576 + ], + [ + 77.612068401984999, + 13.116771578151599 + ], + [ + 77.612039379107202, + 13.116606604598999 + ], + [ + 77.612037452212306, + 13.1165956503676 + ], + [ + 77.612034815496301, + 13.116580673203799 + ], + [ + 77.612034805640803, + 13.116580612775 + ], + [ + 77.612034773280698, + 13.1165804288066 + ], + [ + 77.612034766333096, + 13.116580381899499 + ], + [ + 77.611982913449197, + 13.1162856538957 + ], + [ + 77.611866799161405, + 13.115592432714999 + ], + [ + 77.611805223556999, + 13.1152248144917 + ], + [ + 77.611687740874601, + 13.114519083744099 + ], + [ + 77.611611379448306, + 13.1140523408123 + ], + [ + 77.6115251742157, + 13.113855227179901 + ], + [ + 77.611466549957896, + 13.113721179445999 + ], + [ + 77.611433274669807, + 13.1136450934015 + ], + [ + 77.611417884729804, + 13.113609902452399 + ], + [ + 77.611417847899901, + 13.1136098188083 + ], + [ + 77.611414211513207, + 13.1136015036122 + ], + [ + 77.611243620405801, + 13.113212506431401 + ], + [ + 77.611210507020402, + 13.113139692668399 + ], + [ + 77.61116698088, + 13.1130439835263 + ], + [ + 77.610986485610297, + 13.1126470912288 + ], + [ + 77.610872658548004, + 13.112396418185201 + ], + [ + 77.610868498016899, + 13.112386294229401 + ], + [ + 77.610661024360795, + 13.1118814322316 + ], + [ + 77.610580580299697, + 13.1116856806523 + ], + [ + 77.610331781749395, + 13.1111387313394 + ], + [ + 77.611143239103697, + 13.1111386832885 + ], + [ + 77.611383037875896, + 13.1111386683195 + ], + [ + 77.612029313430796, + 13.111141077534599 + ], + [ + 77.612076406160099, + 13.1105209191984 + ], + [ + 77.612112623949102, + 13.1101978626837 + ], + [ + 77.612246043862797, + 13.109472414729201 + ], + [ + 77.612275786053303, + 13.109366773919101 + ], + [ + 77.612060038924895, + 13.1092468185337 + ], + [ + 77.6117753455041, + 13.1091319382506 + ], + [ + 77.611681028426801, + 13.109093878860801 + ], + [ + 77.611505319964294, + 13.1090229762191 + ], + [ + 77.611543771933199, + 13.108942694549899 + ], + [ + 77.611844655203797, + 13.1082770693802 + ], + [ + 77.611468497562896, + 13.1081239908544 + ], + [ + 77.611329501044693, + 13.1080674251586 + ], + [ + 77.611723607306899, + 13.1069276178475 + ], + [ + 77.611755755667403, + 13.106872759002099 + ], + [ + 77.6118642721203, + 13.106756924014601 + ], + [ + 77.612002124599101, + 13.106647963755 + ], + [ + 77.612064456964902, + 13.1066122078084 + ], + [ + 77.612205736741302, + 13.1065311643946 + ], + [ + 77.612534356959401, + 13.1063683527787 + ], + [ + 77.612508648529101, + 13.1062112024022 + ], + [ + 77.6124834781114, + 13.1060573413159 + ], + [ + 77.612425042777303, + 13.106020006730001 + ], + [ + 77.612269441103194, + 13.1059337202518 + ], + [ + 77.612169914855002, + 13.105878528880799 + ], + [ + 77.612051305016493, + 13.1058127550178 + ], + [ + 77.611925227957599, + 13.1057485727298 + ], + [ + 77.611876831169397, + 13.105723934903301 + ], + [ + 77.611689054284298, + 13.1056283428975 + ], + [ + 77.6116452547123, + 13.105606046141199 + ], + [ + 77.611271861427895, + 13.1054159617062 + ], + [ + 77.610638906708402, + 13.1050566618133 + ], + [ + 77.610587095759001, + 13.104999819866499 + ], + [ + 77.610546069067297, + 13.104924941226299 + ], + [ + 77.610457937291201, + 13.1045457776235 + ], + [ + 77.6104882752809, + 13.1039423988296 + ], + [ + 77.610633310155904, + 13.103955733583501 + ], + [ + 77.610635129940903, + 13.103863222432301 + ], + [ + 77.610638249621601, + 13.103704672798001 + ], + [ + 77.610643761597004, + 13.1034245198025 + ], + [ + 77.610267087895707, + 13.1034105920653 + ], + [ + 77.610265240862404, + 13.1033812235244 + ], + [ + 77.610189126204503, + 13.1032341223987 + ], + [ + 77.610118912642704, + 13.1030984258188 + ], + [ + 77.610051157601006, + 13.1029674806678 + ], + [ + 77.609864023574403, + 13.1025654158466 + ], + [ + 77.609742898117105, + 13.1025593773668 + ], + [ + 77.609521767381594, + 13.1025483538389 + ], + [ + 77.609424294340499, + 13.1025434940364 + ], + [ + 77.6094204194345, + 13.1025433010988 + ], + [ + 77.609231559595102, + 13.102533885632001 + ], + [ + 77.609132260765605, + 13.102085205865 + ], + [ + 77.6089323111825, + 13.1020550135714 + ], + [ + 77.608860556223803, + 13.102048714170801 + ], + [ + 77.608288984307606, + 13.1019985353583 + ], + [ + 77.6082515520458, + 13.1017422530725 + ], + [ + 77.608225130935395, + 13.1015613697402 + ], + [ + 77.608180885555399, + 13.101304178872599 + ], + [ + 77.608136570775798, + 13.1010402112334 + ], + [ + 77.608124262631506, + 13.1010095707858 + ], + [ + 77.6081162901624, + 13.100978681380999 + ], + [ + 77.608049437511596, + 13.1006546385989 + ], + [ + 77.608016608721101, + 13.1001668157841 + ], + [ + 77.608019061536197, + 13.100138839188499 + ], + [ + 77.608044310070397, + 13.0998509008468 + ], + [ + 77.608028015977098, + 13.099663374179 + ], + [ + 77.608007878476002, + 13.0994315556392 + ], + [ + 77.607776244963901, + 13.0991288040708 + ], + [ + 77.6076767707399, + 13.0988857338341 + ], + [ + 77.607525121314197, + 13.098192195522699 + ], + [ + 77.607502224179697, + 13.0980874679243 + ], + [ + 77.607310554544597, + 13.0976351540686 + ], + [ + 77.607314790439801, + 13.097430118161 + ], + [ + 77.607317981455793, + 13.097275621061501 + ], + [ + 77.607323033248093, + 13.0972302029568 + ], + [ + 77.6074027251084, + 13.0965137198798 + ], + [ + 77.607422667892294, + 13.096334425231801 + ], + [ + 77.607433471091994, + 13.0962372941522 + ], + [ + 77.607447861078498, + 13.0961361969204 + ], + [ + 77.607532985298903, + 13.095870888841899 + ], + [ + 77.607680911762699, + 13.0954558172161 + ], + [ + 77.607725722495402, + 13.095109588408199 + ], + [ + 77.607822569817202, + 13.0947599938126 + ], + [ + 77.608056668415898, + 13.0945318388006 + ], + [ + 77.608069204097802, + 13.094519620632299 + ], + [ + 77.608078664372201, + 13.094495596075699 + ], + [ + 77.608097737518307, + 13.094447159658801 + ], + [ + 77.608017914751997, + 13.0944469769795 + ], + [ + 77.607859786994794, + 13.094452549726 + ], + [ + 77.607735245610499, + 13.0944363933164 + ], + [ + 77.607590849009895, + 13.0944255555287 + ], + [ + 77.607530761005606, + 13.094421045377199 + ], + [ + 77.606774176530493, + 13.0942806608589 + ], + [ + 77.606284163975104, + 13.094146287482101 + ], + [ + 77.606097260940203, + 13.0941133453848 + ], + [ + 77.606016768153296, + 13.094061911479001 + ], + [ + 77.606042591227506, + 13.093983278759 + ], + [ + 77.606109713934501, + 13.093608157897201 + ], + [ + 77.606046436393697, + 13.0935043024585 + ], + [ + 77.605980935028597, + 13.0934688800741 + ], + [ + 77.605980758244002, + 13.093452073724899 + ], + [ + 77.606327219705804, + 13.0928126841762 + ], + [ + 77.606635786585997, + 13.0919970408357 + ], + [ + 77.606504870725601, + 13.0918853173975 + ], + [ + 77.606715806778197, + 13.0913815386574 + ], + [ + 77.606808087179104, + 13.091246364861499 + ], + [ + 77.6070895353118, + 13.091278846985199 + ], + [ + 77.607516233052294, + 13.090045148703901 + ], + [ + 77.607748565765405, + 13.0895199573532 + ], + [ + 77.607838018211396, + 13.0891163238755 + ], + [ + 77.607871749038395, + 13.088896956015301 + ], + [ + 77.607942778924695, + 13.0887973215305 + ], + [ + 77.608044318104803, + 13.0883654893918 + ], + [ + 77.607946083431699, + 13.088344999344899 + ], + [ + 77.607710231541304, + 13.0882856397154 + ], + [ + 77.607400924985399, + 13.088235159495801 + ], + [ + 77.607018611312398, + 13.0881907243841 + ], + [ + 77.605929439616801, + 13.0876946125535 + ], + [ + 77.605630981632402, + 13.087385983517301 + ], + [ + 77.605371141120798, + 13.087285503366299 + ], + [ + 77.605035062373503, + 13.0871475573409 + ], + [ + 77.604161060788101, + 13.0868431143486 + ], + [ + 77.604144873327499, + 13.086835380048999 + ], + [ + 77.604072740577806, + 13.086997191073401 + ], + [ + 77.6039836102983, + 13.0871129437674 + ], + [ + 77.603826147105806, + 13.0872807864171 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "60", + "group": "Someshwara", + "Corporatio": "North", + "ac_no": "150", + "ac": "Yelahanka", + "corporat_1": "2", + "ward_id": "7", + "ward_name": "7 - Chikka Bommasandra", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಯಲಹಂಕ", + "ward_name_": "ಚಿಕ್ಕ ಬೊಮ್ಮಸಂದ್ರ", + "dig_ward_n": "Someshwara Ward", + "Assembly": "150 - Yelahanka", + "Slno": "7" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.586458664031696, + 13.0771424135238 + ], + [ + 77.586307616660093, + 13.077184581436301 + ], + [ + 77.5855529665007, + 13.0773965432195 + ], + [ + 77.584883294594505, + 13.0775828076164 + ], + [ + 77.583721629768803, + 13.0779264502206 + ], + [ + 77.583455757882305, + 13.0780047740729 + ], + [ + 77.583137745724301, + 13.078109593254601 + ], + [ + 77.582910426062995, + 13.0781841429132 + ], + [ + 77.582998840049797, + 13.078488167843499 + ], + [ + 77.583115335192602, + 13.0789443664855 + ], + [ + 77.583136786453295, + 13.079013038791601 + ], + [ + 77.583156509903105, + 13.0790817283858 + ], + [ + 77.583273980933498, + 13.079465642208 + ], + [ + 77.583505104087493, + 13.0801984995705 + ], + [ + 77.583633472876599, + 13.080633122168001 + ], + [ + 77.583772350464201, + 13.081081190928201 + ], + [ + 77.583802136043801, + 13.081175753428701 + ], + [ + 77.583805121662394, + 13.0811858871841 + ], + [ + 77.583995897210599, + 13.081915759569901 + ], + [ + 77.584259116626001, + 13.082798490019901 + ], + [ + 77.5844647895496, + 13.0836309780337 + ], + [ + 77.583265342950199, + 13.083999846474899 + ], + [ + 77.583166561313604, + 13.0840279385306 + ], + [ + 77.5829672700917, + 13.084084139838099 + ], + [ + 77.582350036733501, + 13.084274393302101 + ], + [ + 77.581627872495204, + 13.084455531749899 + ], + [ + 77.580555372690995, + 13.084736162849699 + ], + [ + 77.579165598607503, + 13.085138538094499 + ], + [ + 77.579318648976795, + 13.0854543406162 + ], + [ + 77.579365616500198, + 13.085587241072499 + ], + [ + 77.579637310136505, + 13.0868133914091 + ], + [ + 77.579865176479302, + 13.087873008633199 + ], + [ + 77.580205756039504, + 13.089092418866199 + ], + [ + 77.579350715372797, + 13.089243195688301 + ], + [ + 77.578800940528694, + 13.0893401400761 + ], + [ + 77.577298136784506, + 13.089749402429501 + ], + [ + 77.577221134327104, + 13.0897686553614 + ], + [ + 77.577639227067195, + 13.0915975084278 + ], + [ + 77.577758715231596, + 13.0921207636317 + ], + [ + 77.577821289948602, + 13.0923161166151 + ], + [ + 77.578020909891407, + 13.0930818389948 + ], + [ + 77.578073645301302, + 13.0932676422917 + ], + [ + 77.577898312297407, + 13.0933587251288 + ], + [ + 77.577902018212299, + 13.093444256152999 + ], + [ + 77.577924766140399, + 13.093673902345399 + ], + [ + 77.577970680636696, + 13.093824153488301 + ], + [ + 77.578141790599901, + 13.0940716940496 + ], + [ + 77.578497572158199, + 13.0944492589867 + ], + [ + 77.579168095267207, + 13.0951671198425 + ], + [ + 77.579503901386104, + 13.095542708949001 + ], + [ + 77.579744123255793, + 13.095284003221 + ], + [ + 77.580312637793398, + 13.094776623599 + ], + [ + 77.580662624256206, + 13.0945220366029 + ], + [ + 77.5806915535358, + 13.094500993290101 + ], + [ + 77.580697906337505, + 13.0944963718638 + ], + [ + 77.581106331647902, + 13.0942212533889 + ], + [ + 77.581107024623094, + 13.094220800154 + ], + [ + 77.581883102040194, + 13.093788097539299 + ], + [ + 77.582563377049198, + 13.093496750551401 + ], + [ + 77.583996091212796, + 13.0930769497682 + ], + [ + 77.584586295343698, + 13.092935355293999 + ], + [ + 77.585834072208996, + 13.0927188871123 + ], + [ + 77.585971192582406, + 13.0926962524101 + ], + [ + 77.586629679465204, + 13.0927039897787 + ], + [ + 77.587537470670895, + 13.0927665927044 + ], + [ + 77.588932100291998, + 13.093056419127301 + ], + [ + 77.589749591162203, + 13.0934771506075 + ], + [ + 77.590146398386494, + 13.0925400538431 + ], + [ + 77.590982225133104, + 13.093031259177 + ], + [ + 77.590955079275801, + 13.093128140174199 + ], + [ + 77.591004402238099, + 13.0932670364054 + ], + [ + 77.591346128348903, + 13.093901216313901 + ], + [ + 77.591536232019905, + 13.094307820166801 + ], + [ + 77.591717961488797, + 13.0949905312536 + ], + [ + 77.5918671574358, + 13.095728877046399 + ], + [ + 77.592121826666599, + 13.0969876392616 + ], + [ + 77.592318229665693, + 13.097188541219699 + ], + [ + 77.592408631105002, + 13.0971287001256 + ], + [ + 77.592425192687003, + 13.0971149821331 + ], + [ + 77.592446890806897, + 13.0970966953371 + ], + [ + 77.592544555944997, + 13.097016663073999 + ], + [ + 77.592668441107406, + 13.0969012056228 + ], + [ + 77.593185197598004, + 13.0964196027725 + ], + [ + 77.593231966705901, + 13.0963750901622 + ], + [ + 77.593302367048395, + 13.096303715786901 + ], + [ + 77.593489601039096, + 13.096113891999799 + ], + [ + 77.593686484703198, + 13.095893103609001 + ], + [ + 77.593928570789103, + 13.0956216242952 + ], + [ + 77.594174214579596, + 13.0953707099096 + ], + [ + 77.594270253475401, + 13.095245522173199 + ], + [ + 77.594294381779605, + 13.0951842979959 + ], + [ + 77.594312375398701, + 13.095142333391999 + ], + [ + 77.594334105182597, + 13.0950720990721 + ], + [ + 77.595295835053903, + 13.096301499639599 + ], + [ + 77.595388547017706, + 13.096420014658801 + ], + [ + 77.595613005263303, + 13.0959615241288 + ], + [ + 77.5957912230337, + 13.0955430240549 + ], + [ + 77.596159792483604, + 13.094269998273999 + ], + [ + 77.596212861226803, + 13.093892283270099 + ], + [ + 77.596262560796504, + 13.093577842065701 + ], + [ + 77.596313775223706, + 13.093243058515201 + ], + [ + 77.596366631091399, + 13.092680143221701 + ], + [ + 77.596341040686994, + 13.0923269352133 + ], + [ + 77.596261859628001, + 13.091422047145601 + ], + [ + 77.596232088050897, + 13.09110953535 + ], + [ + 77.596158318639993, + 13.090776010070501 + ], + [ + 77.596051183646594, + 13.090336667929099 + ], + [ + 77.595986527914206, + 13.0901385295819 + ], + [ + 77.595892879624301, + 13.0898515400602 + ], + [ + 77.595733005823405, + 13.089436443377799 + ], + [ + 77.595483280876195, + 13.0888020402517 + ], + [ + 77.595408501399206, + 13.0886272450368 + ], + [ + 77.595070541331197, + 13.0878372670571 + ], + [ + 77.59479787718, + 13.0872175428145 + ], + [ + 77.594701198378601, + 13.087198944336899 + ], + [ + 77.593968089784298, + 13.0873833469425 + ], + [ + 77.593915418320606, + 13.0868541874251 + ], + [ + 77.593913887905799, + 13.086838813812401 + ], + [ + 77.593797085917203, + 13.0856653666136 + ], + [ + 77.593784504948104, + 13.0855389751432 + ], + [ + 77.593771132978603, + 13.0854046297042 + ], + [ + 77.593712251011098, + 13.0848130584621 + ], + [ + 77.593721618542503, + 13.084654955498699 + ], + [ + 77.593715741825704, + 13.0846415191586 + ], + [ + 77.593715717280205, + 13.084641463392799 + ], + [ + 77.593706853574801, + 13.0846200960661 + ], + [ + 77.593635943997597, + 13.084449157430599 + ], + [ + 77.593537315245996, + 13.0842163866555 + ], + [ + 77.593073482618294, + 13.0831561314802 + ], + [ + 77.592230124534694, + 13.0811646375323 + ], + [ + 77.591719047804503, + 13.079936588334901 + ], + [ + 77.591415510884104, + 13.079221408972 + ], + [ + 77.591010308119195, + 13.078257676690001 + ], + [ + 77.590710760455096, + 13.0775379384988 + ], + [ + 77.590294303179306, + 13.0765438261532 + ], + [ + 77.5900917831665, + 13.076069297999499 + ], + [ + 77.587060313585695, + 13.0769511806942 + ], + [ + 77.587016465770702, + 13.0769651174194 + ], + [ + 77.586458664031696, + 13.0771424135238 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "52", + "group": "Challaghatta", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "46", + "ward_name": "46 - Challaghatta", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಚಲ್ಲಘಟ್ಟ", + "dig_ward_n": "Challaghatta", + "Assembly": "174 - Mahadevapura", + "Slno": "46" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.686416048636502, + 12.9409026290264 + ], + [ + 77.686645733218896, + 12.9407329484026 + ], + [ + 77.686217407028707, + 12.940558098821301 + ], + [ + 77.685910272491896, + 12.9403222449577 + ], + [ + 77.685883218197006, + 12.9400715541069 + ], + [ + 77.6853166581989, + 12.9395037462573 + ], + [ + 77.684839347739697, + 12.9393054968717 + ], + [ + 77.684850251260102, + 12.939185875046199 + ], + [ + 77.684949951733401, + 12.938959311147199 + ], + [ + 77.683626218847195, + 12.9384841472973 + ], + [ + 77.683435705024806, + 12.9384430850053 + ], + [ + 77.682924634955597, + 12.9385057095748 + ], + [ + 77.682722261590996, + 12.938722910039701 + ], + [ + 77.682885685024402, + 12.938965027430999 + ], + [ + 77.6826837714937, + 12.9392252465932 + ], + [ + 77.682202551962106, + 12.939344927418601 + ], + [ + 77.681705332206604, + 12.9393357017735 + ], + [ + 77.680884947680696, + 12.939186387329499 + ], + [ + 77.680004093287906, + 12.938851255809899 + ], + [ + 77.679826206941698, + 12.9386236250034 + ], + [ + 77.679661868057195, + 12.9382954675247 + ], + [ + 77.679481990079495, + 12.9378814216671 + ], + [ + 77.679492473531695, + 12.9374941015539 + ], + [ + 77.679487112168204, + 12.9369922149482 + ], + [ + 77.679395566083898, + 12.936634625667701 + ], + [ + 77.679129964654607, + 12.9364078953231 + ], + [ + 77.679097969127994, + 12.9361500830073 + ], + [ + 77.679139989616502, + 12.9359775562998 + ], + [ + 77.679268808495607, + 12.9357180916197 + ], + [ + 77.679556907736895, + 12.9353135776167 + ], + [ + 77.6798008426736, + 12.9348808349927 + ], + [ + 77.680029237575198, + 12.9343622050182 + ], + [ + 77.680215000264596, + 12.9339587424434 + ], + [ + 77.680212242995694, + 12.9337006289795 + ], + [ + 77.680296435393601, + 12.9333699170038 + ], + [ + 77.680629768145394, + 12.933094008104799 + ], + [ + 77.680935699347003, + 12.9329904753374 + ], + [ + 77.681066353886905, + 12.9329030853139 + ], + [ + 77.681107453556606, + 12.9326445211581 + ], + [ + 77.681233765657396, + 12.932150841904299 + ], + [ + 77.681131708550197, + 12.931721655552399 + ], + [ + 77.681054271235098, + 12.9313161185504 + ], + [ + 77.680343850249798, + 12.9309648899085 + ], + [ + 77.679640094294996, + 12.930884326469601 + ], + [ + 77.679473696261894, + 12.930819109763499 + ], + [ + 77.678859283599706, + 12.930787177672 + ], + [ + 77.678643746923299, + 12.9306842221845 + ], + [ + 77.678535316365597, + 12.9305706061915 + ], + [ + 77.678274204091906, + 12.9302826169671 + ], + [ + 77.678163148147704, + 12.930229503254701 + ], + [ + 77.677972421634905, + 12.930161903984301 + ], + [ + 77.677735824188701, + 12.9300967189736 + ], + [ + 77.677110530937895, + 12.930048433780501 + ], + [ + 77.676225704773998, + 12.930047528433199 + ], + [ + 77.676224497644199, + 12.930156773682601 + ], + [ + 77.676219367342398, + 12.9302376513811 + ], + [ + 77.676188283749397, + 12.9302370478161 + ], + [ + 77.676184662359901, + 12.930309475605799 + ], + [ + 77.6760977490123, + 12.930320943339201 + ], + [ + 77.676028339047093, + 12.930378282006 + ], + [ + 77.675957118387302, + 12.930505030637899 + ], + [ + 77.675948668478497, + 12.931079624436 + ], + [ + 77.675774841783294, + 12.931147223706301 + ], + [ + 77.675588943789805, + 12.9311520522257 + ], + [ + 77.6754759501178, + 12.931536987287799 + ], + [ + 77.674617004938099, + 12.9314224660368 + ], + [ + 77.674170832473706, + 12.931349291706001 + ], + [ + 77.673778249047999, + 12.9312679366891 + ], + [ + 77.673491428844898, + 12.9311729905183 + ], + [ + 77.673037071333695, + 12.9309758112708 + ], + [ + 77.671151534542503, + 12.930968568491799 + ], + [ + 77.668930415659105, + 12.9309854683094 + ], + [ + 77.668044616191906, + 12.931239422315601 + ], + [ + 77.668034810045896, + 12.9312432951708 + ], + [ + 77.667528663649506, + 12.931281219775901 + ], + [ + 77.666920509556107, + 12.9311993581167 + ], + [ + 77.6664015431721, + 12.9310059180404 + ], + [ + 77.666151592213694, + 12.930722775988 + ], + [ + 77.665855225025496, + 12.930350898194799 + ], + [ + 77.665114504763395, + 12.928355198614399 + ], + [ + 77.664932593568807, + 12.928136855366199 + ], + [ + 77.664594382757997, + 12.9280522292076 + ], + [ + 77.664099740326606, + 12.928034695843101 + ], + [ + 77.663763039869593, + 12.9280381337741 + ], + [ + 77.663427165480002, + 12.9281736838764 + ], + [ + 77.663285577958902, + 12.928229332787399 + ], + [ + 77.663024190020195, + 12.9283325033441 + ], + [ + 77.662631202588798, + 12.9285372102335 + ], + [ + 77.662271877724507, + 12.9287243815689 + ], + [ + 77.661816876437001, + 12.928961389625499 + ], + [ + 77.661329941444393, + 12.929671004048 + ], + [ + 77.661093180847601, + 12.929821657127199 + ], + [ + 77.661084653761193, + 12.929827084069601 + ], + [ + 77.660747147068605, + 12.929809070273601 + ], + [ + 77.660543951849505, + 12.929700477021999 + ], + [ + 77.660435850034801, + 12.929678963960299 + ], + [ + 77.659124347382701, + 12.9294179605838 + ], + [ + 77.6580317926297, + 12.930883561192401 + ], + [ + 77.655166754901003, + 12.9347701315773 + ], + [ + 77.655065539016306, + 12.9349074341337 + ], + [ + 77.656026446255098, + 12.935467655633101 + ], + [ + 77.656156392336996, + 12.9355434160843 + ], + [ + 77.657891548647896, + 12.9365550167182 + ], + [ + 77.658888870069006, + 12.937136448778499 + ], + [ + 77.659094714251594, + 12.9372564531543 + ], + [ + 77.6590053958965, + 12.937322059752599 + ], + [ + 77.659230684521404, + 12.9374772010262 + ], + [ + 77.659336018782597, + 12.937549737891599 + ], + [ + 77.660543543468805, + 12.9380218629091 + ], + [ + 77.660564348218202, + 12.9380295552857 + ], + [ + 77.660456892160994, + 12.938210201247299 + ], + [ + 77.660455776928899, + 12.938213600352301 + ], + [ + 77.660434491701494, + 12.9382691503933 + ], + [ + 77.6604272130472, + 12.938277075156501 + ], + [ + 77.660408314372603, + 12.938297648561299 + ], + [ + 77.660362459474896, + 12.9383161843549 + ], + [ + 77.660290595608899, + 12.9383248223705 + ], + [ + 77.6600586002629, + 12.938323801875301 + ], + [ + 77.659664770580406, + 12.938315398291399 + ], + [ + 77.659056164878194, + 12.9383012800985 + ], + [ + 77.658930064498705, + 12.938298049254 + ], + [ + 77.658909907151298, + 12.938297125595 + ], + [ + 77.658921508752002, + 12.937979690070801 + ], + [ + 77.658921149660898, + 12.937945816451499 + ], + [ + 77.658917516627497, + 12.9379289148628 + ], + [ + 77.658908163690299, + 12.937915459337299 + ], + [ + 77.658887946526093, + 12.937908890067099 + ], + [ + 77.658882166773793, + 12.937906690526599 + ], + [ + 77.658594843939298, + 12.937899457446299 + ], + [ + 77.658285696824706, + 12.9378969635441 + ], + [ + 77.658168829823296, + 12.937895896632 + ], + [ + 77.658138899577494, + 12.937896201791901 + ], + [ + 77.658126218791395, + 12.9381662202464 + ], + [ + 77.658113765400699, + 12.9384576920061 + ], + [ + 77.658108470355998, + 12.938772804888099 + ], + [ + 77.658103750962198, + 12.939087911896801 + ], + [ + 77.658096632406597, + 12.9394482130971 + ], + [ + 77.658077858601501, + 12.9397950822203 + ], + [ + 77.6580735770399, + 12.9398256154475 + ], + [ + 77.658055997157604, + 12.939850638058401 + ], + [ + 77.658011257011196, + 12.939865774422699 + ], + [ + 77.657920662595401, + 12.9398452425371 + ], + [ + 77.657881546664797, + 12.939847899856501 + ], + [ + 77.657801695736794, + 12.9398633941772 + ], + [ + 77.657778216360995, + 12.9398749260024 + ], + [ + 77.657717167094603, + 12.939926364397399 + ], + [ + 77.657584455408298, + 12.9400598389393 + ], + [ + 77.657514544907102, + 12.940089912012001 + ], + [ + 77.657427822710005, + 12.940108864019001 + ], + [ + 77.657280544197903, + 12.940117140877399 + ], + [ + 77.657139537300296, + 12.940119707504699 + ], + [ + 77.656775023059396, + 12.9401076134827 + ], + [ + 77.656493181973801, + 12.940108542659001 + ], + [ + 77.656447489878801, + 12.940108693015601 + ], + [ + 77.656000558825198, + 12.9400872745704 + ], + [ + 77.655879757153201, + 12.940095280866 + ], + [ + 77.655015807305901, + 12.940184497710501 + ], + [ + 77.654675996948995, + 12.940219588300099 + ], + [ + 77.654242828257296, + 12.9405149103958 + ], + [ + 77.652703819192496, + 12.941361402417201 + ], + [ + 77.6526742451545, + 12.941377669154701 + ], + [ + 77.652489242131196, + 12.9415571464466 + ], + [ + 77.651770677596105, + 12.941916319166801 + ], + [ + 77.651032719812704, + 12.942195694243701 + ], + [ + 77.651003431577706, + 12.9422067823471 + ], + [ + 77.650732543199794, + 12.9423093333358 + ], + [ + 77.650241848389797, + 12.942465575141 + ], + [ + 77.650108267300496, + 12.942686222897301 + ], + [ + 77.649163330714799, + 12.943245321049799 + ], + [ + 77.648977928942202, + 12.943355019226299 + ], + [ + 77.648846782488107, + 12.9434273784792 + ], + [ + 77.648732165894998, + 12.943530400029699 + ], + [ + 77.647645393815196, + 12.944507227193901 + ], + [ + 77.647540449073503, + 12.9446103226738 + ], + [ + 77.647521247945804, + 12.944629184735801 + ], + [ + 77.647134878450501, + 12.945021566243399 + ], + [ + 77.646976905122301, + 12.945181996224999 + ], + [ + 77.646890711426806, + 12.9452695305862 + ], + [ + 77.646363610300298, + 12.94580482804 + ], + [ + 77.644870887694296, + 12.947050648501801 + ], + [ + 77.644289747379204, + 12.947346138584001 + ], + [ + 77.644187868576296, + 12.947397940225001 + ], + [ + 77.644198600626396, + 12.947423840289099 + ], + [ + 77.644275695608698, + 12.9476098906815 + ], + [ + 77.643946164339098, + 12.9476649883246 + ], + [ + 77.643850085911396, + 12.947720948092799 + ], + [ + 77.643718113490607, + 12.947797814565201 + ], + [ + 77.643725203874993, + 12.9478274094892 + ], + [ + 77.643743822567103, + 12.947905126474 + ], + [ + 77.643770270888794, + 12.948037982742401 + ], + [ + 77.643358076778497, + 12.948358997182799 + ], + [ + 77.6430722037599, + 12.9485397282139 + ], + [ + 77.642417936599003, + 12.949208225611899 + ], + [ + 77.641591505766698, + 12.9498643025197 + ], + [ + 77.641584221077295, + 12.9498700859117 + ], + [ + 77.641457242652905, + 12.949970889030199 + ], + [ + 77.6410152704468, + 12.9503819705773 + ], + [ + 77.640786787273697, + 12.9504487450423 + ], + [ + 77.640649175443102, + 12.950652970944599 + ], + [ + 77.640336099745596, + 12.9511503057822 + ], + [ + 77.640183288392805, + 12.951167915522699 + ], + [ + 77.640035536865696, + 12.951184942689199 + ], + [ + 77.639981708409806, + 12.9511887134368 + ], + [ + 77.639963775135797, + 12.9511899729637 + ], + [ + 77.639916853533805, + 12.9511932680643 + ], + [ + 77.639735528771396, + 12.9514449201675 + ], + [ + 77.639771490475297, + 12.9514982008566 + ], + [ + 77.640123925863605, + 12.952020355778901 + ], + [ + 77.640122940264206, + 12.9521872166951 + ], + [ + 77.640122612674304, + 12.9522426638379 + ], + [ + 77.640203314785097, + 12.9523240719424 + ], + [ + 77.640418203820602, + 12.9525408401416 + ], + [ + 77.640664324902602, + 12.9530065744047 + ], + [ + 77.640769009498698, + 12.953204667736101 + ], + [ + 77.640776284846098, + 12.953218435036501 + ], + [ + 77.641117996744896, + 12.9533834837749 + ], + [ + 77.641487742052504, + 12.953433514316 + ], + [ + 77.641591751542506, + 12.9535902172895 + ], + [ + 77.641606755902302, + 12.953598395387401 + ], + [ + 77.641677479113298, + 12.9536369435735 + ], + [ + 77.641709707554597, + 12.953654509483201 + ], + [ + 77.642095467182301, + 12.9538647679394 + ], + [ + 77.642387954217099, + 12.9539204014237 + ], + [ + 77.642465702631796, + 12.9539547386739 + ], + [ + 77.642513592016698, + 12.953956093866401 + ], + [ + 77.642525572958405, + 12.953945808994799 + ], + [ + 77.642758542272702, + 12.953847163680001 + ], + [ + 77.642836033600204, + 12.9538143516013 + ], + [ + 77.643031070832393, + 12.953731766896 + ], + [ + 77.643802581227803, + 12.953467594877701 + ], + [ + 77.644141833504406, + 12.953374939532701 + ], + [ + 77.644228478564003, + 12.9533480869583 + ], + [ + 77.644253662983004, + 12.953334280201799 + ], + [ + 77.644261038824098, + 12.9533240420264 + ], + [ + 77.644279883000607, + 12.9532549662091 + ], + [ + 77.644360235049007, + 12.9526319315242 + ], + [ + 77.6444985874991, + 12.951722606775601 + ], + [ + 77.644692345489105, + 12.951075141812399 + ], + [ + 77.644916193448395, + 12.950327126146499 + ], + [ + 77.645041087495599, + 12.9499972452225 + ], + [ + 77.645248583744205, + 12.9496394234252 + ], + [ + 77.645402647735395, + 12.9494007157524 + ], + [ + 77.645657200311604, + 12.9490288649106 + ], + [ + 77.645732612440895, + 12.948919690751101 + ], + [ + 77.646044645204199, + 12.948485147040399 + ], + [ + 77.646163782986704, + 12.948319066066601 + ], + [ + 77.646208036850794, + 12.9482576369284 + ], + [ + 77.646386862396199, + 12.9480198067175 + ], + [ + 77.646532620898796, + 12.9478670062706 + ], + [ + 77.646541183507594, + 12.9478601437748 + ], + [ + 77.646762072412699, + 12.9476806072283 + ], + [ + 77.647138411163695, + 12.947502878918 + ], + [ + 77.647475631787998, + 12.947327806166101 + ], + [ + 77.647684714911605, + 12.947229695100701 + ], + [ + 77.6477732900116, + 12.947167815387299 + ], + [ + 77.647777283481005, + 12.947164387049201 + ], + [ + 77.648110974892305, + 12.946818832590299 + ], + [ + 77.648195102942694, + 12.9467174741905 + ], + [ + 77.648292878456402, + 12.946600167547199 + ], + [ + 77.648802590047097, + 12.9461331227829 + ], + [ + 77.649025259318293, + 12.9460134170386 + ], + [ + 77.649071580025307, + 12.9463110681936 + ], + [ + 77.649132627986305, + 12.9465859845726 + ], + [ + 77.649146535222997, + 12.946649081183899 + ], + [ + 77.649201677710096, + 12.946800969288899 + ], + [ + 77.649301506527706, + 12.947095817745399 + ], + [ + 77.649374389510001, + 12.9474011033764 + ], + [ + 77.649477858303896, + 12.9473322961955 + ], + [ + 77.649815775590497, + 12.9473322473512 + ], + [ + 77.650516922215104, + 12.947384965543 + ], + [ + 77.650796342361105, + 12.9474058369908 + ], + [ + 77.651889331464005, + 12.947495217256501 + ], + [ + 77.6528619709011, + 12.947581301274299 + ], + [ + 77.653911837147305, + 12.947675628831 + ], + [ + 77.654541213604602, + 12.947691801797699 + ], + [ + 77.654649475332505, + 12.947695215678699 + ], + [ + 77.654679287233193, + 12.9476836194554 + ], + [ + 77.654822590631497, + 12.947625696949499 + ], + [ + 77.655381483698704, + 12.947455131440901 + ], + [ + 77.655575487801897, + 12.9474012088048 + ], + [ + 77.655771973680302, + 12.9473641994114 + ], + [ + 77.656111628143805, + 12.947365253902801 + ], + [ + 77.656396779633099, + 12.9473838023243 + ], + [ + 77.657231440408694, + 12.9474328822813 + ], + [ + 77.658435182643203, + 12.947489486143599 + ], + [ + 77.659247430271606, + 12.947542175906801 + ], + [ + 77.659789444286901, + 12.947571649498601 + ], + [ + 77.659959103380402, + 12.9475563664846 + ], + [ + 77.660029674849596, + 12.9475341903778 + ], + [ + 77.660395722870703, + 12.947418657933101 + ], + [ + 77.661031644201501, + 12.9471840570237 + ], + [ + 77.661870643207394, + 12.9468830134222 + ], + [ + 77.662266943911902, + 12.946743455562 + ], + [ + 77.662484700374705, + 12.9466497620626 + ], + [ + 77.662572419025807, + 12.946507710782999 + ], + [ + 77.662561086466994, + 12.9463079512647 + ], + [ + 77.662554573515294, + 12.945478027031299 + ], + [ + 77.662502529293903, + 12.9448055322234 + ], + [ + 77.662492516251007, + 12.9446757720122 + ], + [ + 77.662507673508301, + 12.944531074515201 + ], + [ + 77.662535973559699, + 12.9444856157924 + ], + [ + 77.662611520327303, + 12.944444191279899 + ], + [ + 77.662741688646406, + 12.9444507659087 + ], + [ + 77.663072319752899, + 12.9444699720404 + ], + [ + 77.663439632909203, + 12.944474122721701 + ], + [ + 77.663862994247694, + 12.944443822791101 + ], + [ + 77.664157746330503, + 12.9444453264892 + ], + [ + 77.664238269867496, + 12.944493060466201 + ], + [ + 77.664241807430301, + 12.9445009289634 + ], + [ + 77.664315424714104, + 12.9446571403476 + ], + [ + 77.664544615114707, + 12.9455310852798 + ], + [ + 77.664564258436698, + 12.945646066636099 + ], + [ + 77.664599130826602, + 12.9457315320766 + ], + [ + 77.664695244563205, + 12.945837826731401 + ], + [ + 77.664749698762094, + 12.9458700177238 + ], + [ + 77.664947836108098, + 12.9458804129264 + ], + [ + 77.665544898655696, + 12.945944318358301 + ], + [ + 77.666030775028503, + 12.946000326143301 + ], + [ + 77.666481216699395, + 12.9460804095631 + ], + [ + 77.666555588765505, + 12.946090940808601 + ], + [ + 77.666559440690904, + 12.9462365728091 + ], + [ + 77.666557978164704, + 12.9462614309648 + ], + [ + 77.666547607369395, + 12.946368814503799 + ], + [ + 77.668393526056903, + 12.946510267776301 + ], + [ + 77.668308311345697, + 12.946887175511 + ], + [ + 77.668706914760307, + 12.946964397825599 + ], + [ + 77.669032367775003, + 12.946983648709001 + ], + [ + 77.669138014724297, + 12.9470119264953 + ], + [ + 77.669234309427594, + 12.947080952455501 + ], + [ + 77.669255677085602, + 12.9470333057345 + ], + [ + 77.669295020527798, + 12.946997896416899 + ], + [ + 77.669366777781207, + 12.9469790935046 + ], + [ + 77.670875902291399, + 12.9471172030334 + ], + [ + 77.670896986348595, + 12.9478532462378 + ], + [ + 77.672947961229696, + 12.9478988352892 + ], + [ + 77.672956208737602, + 12.948022966915399 + ], + [ + 77.672977725077502, + 12.948097275359601 + ], + [ + 77.673105221284501, + 12.948123068721999 + ], + [ + 77.673269640090496, + 12.9481563877555 + ], + [ + 77.673561759950303, + 12.9482346946028 + ], + [ + 77.673954226763797, + 12.948330038810001 + ], + [ + 77.674328274621601, + 12.9484255714505 + ], + [ + 77.674700159233694, + 12.9485272434195 + ], + [ + 77.674821905343407, + 12.948560527937399 + ], + [ + 77.675030898624001, + 12.948617101882499 + ], + [ + 77.675228847118902, + 12.948663626007599 + ], + [ + 77.675317787617999, + 12.948636740389 + ], + [ + 77.675420723259805, + 12.9486266494388 + ], + [ + 77.675631114892099, + 12.948598516396499 + ], + [ + 77.676036751520996, + 12.948525467000501 + ], + [ + 77.676401089487101, + 12.9484663920325 + ], + [ + 77.676755617911596, + 12.948405158922901 + ], + [ + 77.677267702741801, + 12.9483276262792 + ], + [ + 77.677364378838206, + 12.9483243742845 + ], + [ + 77.677384524716501, + 12.9483241672406 + ], + [ + 77.677704266796397, + 12.9482937795343 + ], + [ + 77.677778398071595, + 12.9482817253036 + ], + [ + 77.678195029552697, + 12.9482142058619 + ], + [ + 77.678590319039998, + 12.948196591156799 + ], + [ + 77.678673192743005, + 12.948194609826 + ], + [ + 77.678990333811896, + 12.948190219521701 + ], + [ + 77.679155529694796, + 12.9481885207028 + ], + [ + 77.679421503012307, + 12.9481903022025 + ], + [ + 77.679460643488497, + 12.948189899639599 + ], + [ + 77.679730887375896, + 12.9482142213924 + ], + [ + 77.679779800889705, + 12.9482125890285 + ], + [ + 77.680021538744398, + 12.948208973080099 + ], + [ + 77.680045138139505, + 12.9482087303043 + ], + [ + 77.680185981793599, + 12.948244545752001 + ], + [ + 77.680330017424097, + 12.9483096881041 + ], + [ + 77.680471629969304, + 12.948363563053 + ], + [ + 77.680685827944302, + 12.9484223371363 + ], + [ + 77.680700241979295, + 12.9484244472628 + ], + [ + 77.680729277936805, + 12.948427178411899 + ], + [ + 77.681479316256102, + 12.9484977334245 + ], + [ + 77.681615877241995, + 12.948509878424399 + ], + [ + 77.681762811017606, + 12.9485230457932 + ], + [ + 77.682228362912198, + 12.948562292550999 + ], + [ + 77.682340137060507, + 12.948571304695299 + ], + [ + 77.682799277084001, + 12.948614041120599 + ], + [ + 77.682842611594594, + 12.948618074694901 + ], + [ + 77.683227531857995, + 12.948653633081801 + ], + [ + 77.683974815354901, + 12.9487148174961 + ], + [ + 77.684335566618799, + 12.948748086510999 + ], + [ + 77.684360311184193, + 12.9487503682158 + ], + [ + 77.684693379559604, + 12.9487819417682 + ], + [ + 77.685463626205205, + 12.9488372390063 + ], + [ + 77.685995492226297, + 12.9488870873632 + ], + [ + 77.686129175196896, + 12.9488992595835 + ], + [ + 77.686367713038607, + 12.9489193842179 + ], + [ + 77.686853434713001, + 12.9489606728508 + ], + [ + 77.687512591587904, + 12.949017109594701 + ], + [ + 77.688194347691507, + 12.949141064454601 + ], + [ + 77.688590621953296, + 12.949269093243901 + ], + [ + 77.6886709080635, + 12.9492942365891 + ], + [ + 77.688725401514205, + 12.9493298090834 + ], + [ + 77.688878424341496, + 12.949427600690001 + ], + [ + 77.689117658975206, + 12.949673558822999 + ], + [ + 77.689329095924904, + 12.950011270181101 + ], + [ + 77.689414484111694, + 12.9502972095668 + ], + [ + 77.689458617566103, + 12.950654715490399 + ], + [ + 77.689486852888905, + 12.951139986984501 + ], + [ + 77.689482261599096, + 12.9517848169187 + ], + [ + 77.689433265160702, + 12.9526367519749 + ], + [ + 77.6893898175544, + 12.9530403308703 + ], + [ + 77.689340322339604, + 12.9532023199351 + ], + [ + 77.689290780217405, + 12.9532867585188 + ], + [ + 77.690667416629793, + 12.9531637293685 + ], + [ + 77.690420099271904, + 12.952097269784201 + ], + [ + 77.690546499624205, + 12.9520632041379 + ], + [ + 77.690711905611195, + 12.951999481959399 + ], + [ + 77.690913017375095, + 12.951745648453199 + ], + [ + 77.690969272014598, + 12.951360029152999 + ], + [ + 77.691009436628093, + 12.9510578776092 + ], + [ + 77.691810497828897, + 12.950472192944799 + ], + [ + 77.692348228795694, + 12.9501259956629 + ], + [ + 77.693238529510097, + 12.9495742867852 + ], + [ + 77.694018754203398, + 12.9494542603094 + ], + [ + 77.6940234239608, + 12.9490741420614 + ], + [ + 77.694058914116596, + 12.949071340206901 + ], + [ + 77.694077593146005, + 12.9490218407791 + ], + [ + 77.6940570462137, + 12.948947124661499 + ], + [ + 77.694204610545796, + 12.948948058613 + ], + [ + 77.694234496992905, + 12.948261604282999 + ], + [ + 77.694318552625106, + 12.948261604282999 + ], + [ + 77.694694001115806, + 12.9481794165537 + ], + [ + 77.694679057892301, + 12.947972079327499 + ], + [ + 77.695246900385698, + 12.948233585738899 + ], + [ + 77.696346161265097, + 12.9481906239713 + ], + [ + 77.696337798700995, + 12.9466998023971 + ], + [ + 77.696290717806505, + 12.945832105986099 + ], + [ + 77.696338106233, + 12.945500261920801 + ], + [ + 77.696446520123999, + 12.945149478416401 + ], + [ + 77.696238568022906, + 12.945191077515499 + ], + [ + 77.695231746955798, + 12.9453950215247 + ], + [ + 77.694104453102696, + 12.9452711739357 + ], + [ + 77.693064497487796, + 12.9447037668054 + ], + [ + 77.692505661198297, + 12.9440994249768 + ], + [ + 77.692211121520202, + 12.943802471039101 + ], + [ + 77.692044537604005, + 12.9434499891294 + ], + [ + 77.691361302121393, + 12.94288505237 + ], + [ + 77.690987091874803, + 12.9426363836254 + ], + [ + 77.690518725501505, + 12.9422501020805 + ], + [ + 77.689461492852303, + 12.941675338694001 + ], + [ + 77.689417823098495, + 12.9416465371666 + ], + [ + 77.688439499926602, + 12.941318609813299 + ], + [ + 77.687734804204197, + 12.94172764967 + ], + [ + 77.6876557219462, + 12.941920984800401 + ], + [ + 77.687507012543094, + 12.942309408701201 + ], + [ + 77.687161254316806, + 12.9422740997143 + ], + [ + 77.687146323094197, + 12.942154320450699 + ], + [ + 77.686536602771298, + 12.941976808772401 + ], + [ + 77.684980465694593, + 12.9415237528418 + ], + [ + 77.686148533213199, + 12.940953189975501 + ], + [ + 77.686416048636502, + 12.9409026290264 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "53", + "group": "Gunjur", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "42", + "ward_name": "42 - Gunjur", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಗುಂಜೂರ್", + "dig_ward_n": "Gunjur", + "Assembly": "174 - Mahadevapura", + "Slno": "42" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.751005888699595, + 12.926503697040999 + ], + [ + 77.751458562384997, + 12.9262839994123 + ], + [ + 77.751876229305495, + 12.926094480029301 + ], + [ + 77.752005392197105, + 12.9260253718467 + ], + [ + 77.752190686625696, + 12.9255229040558 + ], + [ + 77.752206982878306, + 12.925487293725901 + ], + [ + 77.752234143299404, + 12.925410037416899 + ], + [ + 77.752251043116999, + 12.925373823522101 + ], + [ + 77.752264925110097, + 12.925332781107899 + ], + [ + 77.752271429653007, + 12.925298892852499 + ], + [ + 77.752272492884401, + 12.9252985175952 + ], + [ + 77.752185759163496, + 12.9249641842628 + ], + [ + 77.752145990559299, + 12.9248108900257 + ], + [ + 77.752113961482806, + 12.9246874279855 + ], + [ + 77.751987725425806, + 12.9242008262912 + ], + [ + 77.751768358832393, + 12.9233552231236 + ], + [ + 77.751736086680097, + 12.923246592622201 + ], + [ + 77.751451938683701, + 12.922317898572899 + ], + [ + 77.751349003752907, + 12.922037208068 + ], + [ + 77.751339261128194, + 12.922011035533901 + ], + [ + 77.751206492046705, + 12.9219658122885 + ], + [ + 77.750256227676104, + 12.921641322082399 + ], + [ + 77.750250357039107, + 12.9216393171153 + ], + [ + 77.749751225847504, + 12.9214688749239 + ], + [ + 77.749267521902595, + 12.921282674890101 + ], + [ + 77.7491104902968, + 12.921222225547 + ], + [ + 77.748534932986701, + 12.921000664679701 + ], + [ + 77.748534155312498, + 12.921000372961601 + ], + [ + 77.748509923449205, + 12.9209912786099 + ], + [ + 77.748049203228902, + 12.9208157805518 + ], + [ + 77.7479911412576, + 12.9207936630132 + ], + [ + 77.747483612161602, + 12.9206003324403 + ], + [ + 77.747072712760996, + 12.920426823765601 + ], + [ + 77.746972120056597, + 12.920384347023701 + ], + [ + 77.746792271828198, + 12.920308127258201 + ], + [ + 77.746487645816302, + 12.9201790254983 + ], + [ + 77.746283852025499, + 12.9200926571573 + ], + [ + 77.746141348537506, + 12.9200322633695 + ], + [ + 77.745949248384207, + 12.919797876549699 + ], + [ + 77.745936797456295, + 12.9197826851301 + ], + [ + 77.745935564493905, + 12.919781180494599 + ], + [ + 77.745948238946795, + 12.9197383103202 + ], + [ + 77.745948840157993, + 12.9197362760055 + ], + [ + 77.745903459085099, + 12.9197436142148 + ], + [ + 77.745785620827206, + 12.9197736493929 + ], + [ + 77.745742031842099, + 12.919649235144901 + ], + [ + 77.745732971796301, + 12.9196074318812 + ], + [ + 77.745681032379096, + 12.9193677909008 + ], + [ + 77.745679169388495, + 12.919359197180199 + ], + [ + 77.745674431874207, + 12.919337341093801 + ], + [ + 77.745570237270101, + 12.918796435808201 + ], + [ + 77.745557282563894, + 12.9186570417457 + ], + [ + 77.745533340631994, + 12.918399434231899 + ], + [ + 77.745519244290804, + 12.918247755941101 + ], + [ + 77.745497670233604, + 12.9175451668435 + ], + [ + 77.745374956305696, + 12.9169576377945 + ], + [ + 77.745326878387601, + 12.916356428689101 + ], + [ + 77.745326450734396, + 12.9163510863333 + ], + [ + 77.745292788234707, + 12.9161627855354 + ], + [ + 77.745232232316994, + 12.9160888697948 + ], + [ + 77.7450139211508, + 12.9147002882947 + ], + [ + 77.744989379795697, + 12.9145441894002 + ], + [ + 77.744950246135801, + 12.9142952723895 + ], + [ + 77.744943566189804, + 12.914252207336499 + ], + [ + 77.744929569072397, + 12.9142554393599 + ], + [ + 77.744898959528498, + 12.914262493673499 + ], + [ + 77.744898717025293, + 12.9142625495194 + ], + [ + 77.744820713778907, + 12.914280524684999 + ], + [ + 77.744781499047306, + 12.9142895619249 + ], + [ + 77.744777332245903, + 12.914265299616099 + ], + [ + 77.7446846148801, + 12.913725449467201 + ], + [ + 77.744674604624805, + 12.913667163828199 + ], + [ + 77.744668800480397, + 12.9136333695382 + ], + [ + 77.744640366892, + 12.9136787738225 + ], + [ + 77.744606779673404, + 12.9137324074741 + ], + [ + 77.744567751894394, + 12.913794727886501 + ], + [ + 77.7440748942402, + 12.9138604551006 + ], + [ + 77.743303973211198, + 12.9138861641432 + ], + [ + 77.743052403500201, + 12.913910457890401 + ], + [ + 77.742351987129396, + 12.913978092822299 + ], + [ + 77.7423279459545, + 12.9139905295186 + ], + [ + 77.742132112022404, + 12.914091836692499 + ], + [ + 77.742114757324302, + 12.9141072230269 + ], + [ + 77.741931217263499, + 12.914264000637701 + ], + [ + 77.741797255465301, + 12.914273317699299 + ], + [ + 77.741703319314695, + 12.9142989506507 + ], + [ + 77.741603078409398, + 12.9141334588058 + ], + [ + 77.740992317024705, + 12.9144484736247 + ], + [ + 77.739061829056595, + 12.914646422835601 + ], + [ + 77.7388032213766, + 12.914625477610199 + ], + [ + 77.738762358605996, + 12.914622168144501 + ], + [ + 77.7384652315138, + 12.914598731341901 + ], + [ + 77.7380194285399, + 12.9148178367704 + ], + [ + 77.737840345772, + 12.9147399989611 + ], + [ + 77.737565155672399, + 12.914768190231801 + ], + [ + 77.737423006231893, + 12.914685954981 + ], + [ + 77.737404709903601, + 12.914416625474001 + ], + [ + 77.737395981454597, + 12.9134915116235 + ], + [ + 77.735989042022297, + 12.9133717984901 + ], + [ + 77.735482510072501, + 12.913333654846699 + ], + [ + 77.734933553810194, + 12.913292044285299 + ], + [ + 77.734773223902593, + 12.913262106165901 + ], + [ + 77.734446747279804, + 12.9131965790452 + ], + [ + 77.734397040373906, + 12.9133360542929 + ], + [ + 77.734364639912698, + 12.913520715993901 + ], + [ + 77.734321522270307, + 12.9135369132437 + ], + [ + 77.734353735369297, + 12.913638597922001 + ], + [ + 77.734365266502607, + 12.914035330979299 + ], + [ + 77.734167801163693, + 12.914069120313901 + ], + [ + 77.733901281908103, + 12.914114766151799 + ], + [ + 77.733857939956295, + 12.914122193707399 + ], + [ + 77.733747499140094, + 12.914129367927201 + ], + [ + 77.7333664007772, + 12.914154124956699 + ], + [ + 77.733157182129204, + 12.914167715828301 + ], + [ + 77.732666755983004, + 12.9141995727132 + ], + [ + 77.732513000441102, + 12.914210266526201 + ], + [ + 77.732476499949001, + 12.914212805636099 + ], + [ + 77.732454072009304, + 12.914214365515001 + ], + [ + 77.732335124050095, + 12.9141184073221 + ], + [ + 77.732071406767602, + 12.913906177205 + ], + [ + 77.728818293910706, + 12.914469858035 + ], + [ + 77.728525344967593, + 12.9144126042594 + ], + [ + 77.727782918127005, + 12.914499410613899 + ], + [ + 77.7277295526617, + 12.913424220925901 + ], + [ + 77.727647824728194, + 12.912571121226399 + ], + [ + 77.7276122775922, + 12.9108866581421 + ], + [ + 77.727335646000398, + 12.9098449840063 + ], + [ + 77.727216708181899, + 12.9095130332992 + ], + [ + 77.726926118699197, + 12.908702069290801 + ], + [ + 77.726905823155107, + 12.908649144274801 + ], + [ + 77.726881696135806, + 12.908586226640899 + ], + [ + 77.726872634905206, + 12.9085508403366 + ], + [ + 77.726857346362294, + 12.908491139416 + ], + [ + 77.726790491783703, + 12.9082300634847 + ], + [ + 77.726738657583994, + 12.9080276424573 + ], + [ + 77.726444974821902, + 12.9071251518378 + ], + [ + 77.726393914228098, + 12.9069573244987 + ], + [ + 77.726319449092401, + 12.9067125681024 + ], + [ + 77.726275453036195, + 12.906567958082 + ], + [ + 77.724592527488994, + 12.9069136966513 + ], + [ + 77.723256615655004, + 12.9071748977625 + ], + [ + 77.722695811358193, + 12.9072843977511 + ], + [ + 77.722005963268003, + 12.9076330212341 + ], + [ + 77.721311750757295, + 12.907847188138399 + ], + [ + 77.721185853715298, + 12.9079038208372 + ], + [ + 77.720791743826297, + 12.9081542980843 + ], + [ + 77.7207963998938, + 12.9088232872964 + ], + [ + 77.720422665455501, + 12.908834801846099 + ], + [ + 77.719777589550404, + 12.9086546343477 + ], + [ + 77.719721538185894, + 12.908148301122001 + ], + [ + 77.719732314700593, + 12.9080092411993 + ], + [ + 77.719705212291203, + 12.907985741605 + ], + [ + 77.719277061815305, + 12.908066827969 + ], + [ + 77.718934790884802, + 12.908131527458499 + ], + [ + 77.718443704592303, + 12.9082256525377 + ], + [ + 77.718215092901104, + 12.9082694689944 + ], + [ + 77.717855947101995, + 12.908374266543699 + ], + [ + 77.717901080447405, + 12.908766869889201 + ], + [ + 77.717913124742296, + 12.908871646824201 + ], + [ + 77.717827350689504, + 12.908913613864099 + ], + [ + 77.717774001581901, + 12.908939715774901 + ], + [ + 77.717639606135904, + 12.9089659570602 + ], + [ + 77.717289019991398, + 12.908746023042699 + ], + [ + 77.716971403735897, + 12.9083281362536 + ], + [ + 77.716121511115205, + 12.9073873187915 + ], + [ + 77.715604097193705, + 12.907494324814699 + ], + [ + 77.714593071675594, + 12.9079407015304 + ], + [ + 77.714227986130595, + 12.9080833859409 + ], + [ + 77.713953393584703, + 12.9080783340856 + ], + [ + 77.713388456395606, + 12.907941922794 + ], + [ + 77.711300079973995, + 12.9078631042978 + ], + [ + 77.710532811142997, + 12.907896875348699 + ], + [ + 77.709487373914598, + 12.907942886090099 + ], + [ + 77.708354180942393, + 12.9080629454273 + ], + [ + 77.708284077686301, + 12.9077710991389 + ], + [ + 77.708274588519302, + 12.9077728095232 + ], + [ + 77.708120175894805, + 12.907035458184 + ], + [ + 77.707997287190906, + 12.906448528471101 + ], + [ + 77.707674785023201, + 12.905327170976699 + ], + [ + 77.707092018264802, + 12.9033007144631 + ], + [ + 77.706870528319598, + 12.902025877697699 + ], + [ + 77.706693275681801, + 12.9020807242612 + ], + [ + 77.706293792758302, + 12.902276928907501 + ], + [ + 77.706296606542097, + 12.902239170761 + ], + [ + 77.706095365852505, + 12.9023210738134 + ], + [ + 77.706035968277305, + 12.9023525025325 + ], + [ + 77.705144291195097, + 12.902824311592401 + ], + [ + 77.704470647306707, + 12.9031850842811 + ], + [ + 77.704470569126102, + 12.903185126151101 + ], + [ + 77.704063935485607, + 12.9033941677457 + ], + [ + 77.703984182144893, + 12.9034338827881 + ], + [ + 77.703984181214395, + 12.903433881894401 + ], + [ + 77.703549846974497, + 12.9036501693716 + ], + [ + 77.703360495640595, + 12.9037556028259 + ], + [ + 77.702847280763507, + 12.904041366967 + ], + [ + 77.702829054506594, + 12.904022573924999 + ], + [ + 77.702597366175794, + 12.904183694209401 + ], + [ + 77.702182701804603, + 12.904472058459801 + ], + [ + 77.700040521029294, + 12.905699273287301 + ], + [ + 77.699319541001401, + 12.906034941118 + ], + [ + 77.698834857187705, + 12.9062789645414 + ], + [ + 77.698047975677397, + 12.906516546515199 + ], + [ + 77.6973679789226, + 12.9067243419208 + ], + [ + 77.696483643101303, + 12.906962925715399 + ], + [ + 77.6955536128077, + 12.907211267598001 + ], + [ + 77.694868892678599, + 12.907433446963701 + ], + [ + 77.693255079504496, + 12.907839686418299 + ], + [ + 77.692293539982501, + 12.9081507585372 + ], + [ + 77.691360004728594, + 12.9083468114525 + ], + [ + 77.689946077466203, + 12.9087342409924 + ], + [ + 77.688532757816105, + 12.9091790226838 + ], + [ + 77.687044175901306, + 12.9097859130781 + ], + [ + 77.686800598300394, + 12.909885217930899 + ], + [ + 77.686490049024599, + 12.9099670073709 + ], + [ + 77.686349091043098, + 12.9100251066089 + ], + [ + 77.686394797945795, + 12.9101566176113 + ], + [ + 77.686492754050605, + 12.910670231403 + ], + [ + 77.686727060746804, + 12.911228721501301 + ], + [ + 77.686910550500997, + 12.9117356814661 + ], + [ + 77.6871122051258, + 12.911651850649401 + ], + [ + 77.687295688859606, + 12.912125045541901 + ], + [ + 77.687134537028996, + 12.912210072749399 + ], + [ + 77.687645213354401, + 12.913360211584299 + ], + [ + 77.688226638531702, + 12.915512694038499 + ], + [ + 77.689317924935807, + 12.915403688463501 + ], + [ + 77.692117250755999, + 12.9155719340738 + ], + [ + 77.694702956575597, + 12.9158416454605 + ], + [ + 77.694779191371595, + 12.9153512193697 + ], + [ + 77.694989619385296, + 12.9146575364613 + ], + [ + 77.694951519818304, + 12.913921378365901 + ], + [ + 77.694992924867705, + 12.913207862964301 + ], + [ + 77.695117941314706, + 12.912545909054 + ], + [ + 77.694962032243694, + 12.9117330147182 + ], + [ + 77.695019916232894, + 12.911396289961999 + ], + [ + 77.695533746371495, + 12.9112099656871 + ], + [ + 77.6956435951858, + 12.911077181406 + ], + [ + 77.695772758077396, + 12.9110035464865 + ], + [ + 77.695935720604098, + 12.9108200627527 + ], + [ + 77.696073333404499, + 12.910657100225899 + ], + [ + 77.696126447116995, + 12.9106800356926 + ], + [ + 77.696788365122202, + 12.910360963379601 + ], + [ + 77.696921342107203, + 12.9102853796843 + ], + [ + 77.697073440465502, + 12.910529219909501 + ], + [ + 77.697312452171502, + 12.9103891928495 + ], + [ + 77.697375222922503, + 12.9103626359933 + ], + [ + 77.697661717514293, + 12.910743934166801 + ], + [ + 77.697891678592796, + 12.9110570619342 + ], + [ + 77.697893113626805, + 12.911059746381 + ], + [ + 77.6978808264994, + 12.9110633106081 + ], + [ + 77.697905112498702, + 12.9110960770278 + ], + [ + 77.697931756078702, + 12.911132023345401 + ], + [ + 77.697955581407896, + 12.9111641675774 + ], + [ + 77.697981002002095, + 12.9112241326606 + ], + [ + 77.698071133269707, + 12.911362064045401 + ], + [ + 77.698147182448807, + 12.911475534249201 + ], + [ + 77.6982292672771, + 12.9116626393725 + ], + [ + 77.698257031263196, + 12.911759209758699 + ], + [ + 77.698418786660099, + 12.912273447065401 + ], + [ + 77.698459829074295, + 12.9124062313465 + ], + [ + 77.698508114267398, + 12.9126778355577 + ], + [ + 77.698500367546501, + 12.9129076885503 + ], + [ + 77.698501690874394, + 12.912929471366599 + ], + [ + 77.698505391422501, + 12.9129903960907 + ], + [ + 77.698518518923507, + 12.9132049723087 + ], + [ + 77.698540245252303, + 12.913512533781301 + ], + [ + 77.698571084220902, + 12.914026006240199 + ], + [ + 77.698601063264107, + 12.914283318228801 + ], + [ + 77.698610720302796, + 12.9143472961096 + ], + [ + 77.698623998730895, + 12.9145682008681 + ], + [ + 77.698652969846805, + 12.9149810392693 + ], + [ + 77.6986698696643, + 12.915369735073799 + ], + [ + 77.698695219390004, + 12.9155001050961 + ], + [ + 77.698703669300301, + 12.915546579593601 + ], + [ + 77.698744108148802, + 12.915642546414899 + ], + [ + 77.698833435756001, + 12.915807923201299 + ], + [ + 77.698944491700203, + 12.916107291398699 + ], + [ + 77.699032612177604, + 12.916401831076699 + ], + [ + 77.699057961904003, + 12.916477880255799 + ], + [ + 77.699071240332103, + 12.9165720363824 + ], + [ + 77.699091761539194, + 12.9167048206634 + ], + [ + 77.699021748009201, + 12.9168448477235 + ], + [ + 77.698898620766698, + 12.916941418109699 + ], + [ + 77.698853956963106, + 12.9169800462642 + ], + [ + 77.698805671770003, + 12.9170355742363 + ], + [ + 77.698727208331206, + 12.917126108973401 + ], + [ + 77.698629597178694, + 12.9172015633618 + ], + [ + 77.698524231282406, + 12.9173271745444 + ], + [ + 77.697894556207203, + 12.9180247592291 + ], + [ + 77.697424192343107, + 12.918550186023801 + ], + [ + 77.697031163850298, + 12.9189878640396 + ], + [ + 77.696790076832897, + 12.9192636239846 + ], + [ + 77.696747003045502, + 12.9193127090905 + ], + [ + 77.6967355249501, + 12.919325789211999 + ], + [ + 77.696717969347006, + 12.9193457941121 + ], + [ + 77.696702997596006, + 12.9193628553389 + ], + [ + 77.696659928321594, + 12.919411934969601 + ], + [ + 77.700871372687203, + 12.918303060555401 + ], + [ + 77.700908190146905, + 12.918242704063999 + ], + [ + 77.701182208617794, + 12.9181207839514 + ], + [ + 77.701655403510401, + 12.918094227095199 + ], + [ + 77.703142059132006, + 12.917632665844801 + ], + [ + 77.705052478500207, + 12.9171593482139 + ], + [ + 77.705136167375102, + 12.9171921303383 + ], + [ + 77.706252049103298, + 12.918513027906499 + ], + [ + 77.709042119765101, + 12.9217876919811 + ], + [ + 77.710572419844993, + 12.9242271303313 + ], + [ + 77.712282507424007, + 12.925209979834101 + ], + [ + 77.713529573443594, + 12.925889693536 + ], + [ + 77.713655701613803, + 12.9260950033401 + ], + [ + 77.713271541909407, + 12.927074175515401 + ], + [ + 77.713119261682195, + 12.927864505718301 + ], + [ + 77.713410190481198, + 12.9290804508416 + ], + [ + 77.712135861850101, + 12.929901489698899 + ], + [ + 77.711570246402502, + 12.930525542239 + ], + [ + 77.711224560400495, + 12.9310071645045 + ], + [ + 77.710478918987505, + 12.9314951788791 + ], + [ + 77.710532032699902, + 12.9316303774198 + ], + [ + 77.710663237533197, + 12.9316281405306 + ], + [ + 77.710899000167601, + 12.931642448718099 + ], + [ + 77.711108198190104, + 12.931699842876499 + ], + [ + 77.7113806498309, + 12.931709464136301 + ], + [ + 77.711562417619106, + 12.931708355796101 + ], + [ + 77.711747020995205, + 12.9316643527207 + ], + [ + 77.7120034526463, + 12.931603773008799 + ], + [ + 77.712786951218405, + 12.931370844506899 + ], + [ + 77.713223932216195, + 12.9312314210118 + ], + [ + 77.713299981395295, + 12.931226592492401 + ], + [ + 77.713378444834106, + 12.9312006392011 + ], + [ + 77.713374823444596, + 12.9311469219238 + ], + [ + 77.713582449775004, + 12.9311070866395 + ], + [ + 77.713554082224107, + 12.9309525740215 + ], + [ + 77.714232489187296, + 12.930785990105299 + ], + [ + 77.7146696789967, + 12.930630497832301 + ], + [ + 77.715143035958306, + 12.9304341596201 + ], + [ + 77.7161916229349, + 12.930057551508799 + ], + [ + 77.716935466530998, + 12.9298920564867 + ], + [ + 77.717328617063103, + 12.929744553653 + ], + [ + 77.717663058908698, + 12.929576150350099 + ], + [ + 77.717976893697994, + 12.9295298583296 + ], + [ + 77.718567548065394, + 12.929394636706499 + ], + [ + 77.718933789384593, + 12.9294625234593 + ], + [ + 77.719300263834995, + 12.9295519178969 + ], + [ + 77.719894880406301, + 12.929782341411199 + ], + [ + 77.720335303043399, + 12.929949838578199 + ], + [ + 77.721090725331194, + 12.9301785819403 + ], + [ + 77.721376798455793, + 12.9302688127207 + ], + [ + 77.721800074611906, + 12.9303250663136 + ], + [ + 77.722584387500703, + 12.9303996184589 + ], + [ + 77.723353574668906, + 12.930549336607699 + ], + [ + 77.723888631036402, + 12.930567651494499 + ], + [ + 77.724336832233007, + 12.930778081052001 + ], + [ + 77.724932699806104, + 12.9311232040171 + ], + [ + 77.725207713582606, + 12.9313497197349 + ], + [ + 77.725335669344403, + 12.9313086773207 + ], + [ + 77.725438275379801, + 12.931350926864701 + ], + [ + 77.725883706286297, + 12.9314378402123 + ], + [ + 77.72729423749, + 12.931005084169 + ], + [ + 77.727371493798998, + 12.9312754812505 + ], + [ + 77.728899720161095, + 12.9307998720983 + ], + [ + 77.728899720161095, + 12.9305994885469 + ], + [ + 77.730092364431101, + 12.930370133879601 + ], + [ + 77.730192761116896, + 12.9312749429007 + ], + [ + 77.730298156054602, + 12.932227493572199 + ], + [ + 77.730383886284699, + 12.933459782673999 + ], + [ + 77.730412857400495, + 12.9349192026358 + ], + [ + 77.730406218186502, + 12.9352113280542 + ], + [ + 77.7303628943082, + 12.935489314543 + ], + [ + 77.730809625405797, + 12.935563509264901 + ], + [ + 77.731869259537703, + 12.935753932911799 + ], + [ + 77.732146899398202, + 12.9357249617959 + ], + [ + 77.7324269535182, + 12.9358686102454 + ], + [ + 77.732636994108404, + 12.935977855494899 + ], + [ + 77.733101739092206, + 12.9359863054037 + ], + [ + 77.7332453875417, + 12.9358625745963 + ], + [ + 77.733502506195094, + 12.9359633699369 + ], + [ + 77.733622012048002, + 12.936332751664301 + ], + [ + 77.734032436189494, + 12.936373794078399 + ], + [ + 77.734551502015506, + 12.9363086090677 + ], + [ + 77.734807413539002, + 12.936236181278 + ], + [ + 77.734964340416695, + 12.9361178825549 + ], + [ + 77.735087467659099, + 12.935946470119401 + ], + [ + 77.735104367476694, + 12.9357122869328 + ], + [ + 77.735822261076606, + 12.9350735587798 + ], + [ + 77.736521455382899, + 12.934836773051 + ], + [ + 77.738028652405404, + 12.9336163434114 + ], + [ + 77.738901311329698, + 12.9335121589785 + ], + [ + 77.739380021327094, + 12.933497807263601 + ], + [ + 77.739515219867798, + 12.9334229652142 + ], + [ + 77.740123613301094, + 12.933717504892201 + ], + [ + 77.740360210747397, + 12.933658355530699 + ], + [ + 77.742780506052299, + 12.932936491893599 + ], + [ + 77.743952629115199, + 12.932372762264 + ], + [ + 77.744142148498099, + 12.9322170425162 + ], + [ + 77.744528430043104, + 12.931943024045299 + ], + [ + 77.744552572639606, + 12.9315881278759 + ], + [ + 77.744760198969999, + 12.931349116170001 + ], + [ + 77.744697428218998, + 12.931235645966201 + ], + [ + 77.746426038132498, + 12.930989391481299 + ], + [ + 77.746754927197699, + 12.9309476106432 + ], + [ + 77.747105930796593, + 12.929969141388201 + ], + [ + 77.7481193394987, + 12.9289882720092 + ], + [ + 77.748278077071006, + 12.928816859573599 + ], + [ + 77.749125191857104, + 12.9280420404504 + ], + [ + 77.749209680039499, + 12.9279612466377 + ], + [ + 77.749387570495003, + 12.927791135108899 + ], + [ + 77.749562698507404, + 12.9276161168013 + ], + [ + 77.749752822869397, + 12.9274254789091 + ], + [ + 77.750247811167696, + 12.9270143129581 + ], + [ + 77.750387838227695, + 12.9269020498842 + ], + [ + 77.751005888699595, + 12.926503697040999 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "56", + "group": "MAYURA VARMA DR.RAJKUMAR", + "Corporatio": "West", + "ac_no": "156", + "ac": "Mahalakshmi Layout", + "corporat_1": "5", + "ward_id": "42", + "ward_name": "42 - Kurubarahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಹಾಲಕ್ಷ್ಮಿ ಲೇಔಟ್", + "ward_name_": "ಕುರುಬರಹಳ್ಳಿ", + "dig_ward_n": "MAYURA VARMA DR.RAJKUMAR", + "Assembly": "156 - Mahalakshmi Layout", + "Slno": "42" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.527818722748705, + 12.999405260353701 + ], + [ + 77.527814062478299, + 12.9994079782165 + ], + [ + 77.527821680895201, + 12.9994779233821 + ], + [ + 77.5278220295002, + 12.999512346169601 + ], + [ + 77.527822329287702, + 12.999541948425399 + ], + [ + 77.527822683023103, + 12.9995768776229 + ], + [ + 77.527823018903504, + 12.9996100436493 + ], + [ + 77.527824903554304, + 12.999641298198 + ], + [ + 77.527827171203597, + 12.999678893222001 + ], + [ + 77.527840318286806, + 12.999896728657999 + ], + [ + 77.527848413931494, + 13.0000387168225 + ], + [ + 77.527848747770705, + 13.0000445698994 + ], + [ + 77.5278503742949, + 13.0000730954663 + ], + [ + 77.527854143783003, + 13.000139203719399 + ], + [ + 77.527857823633695, + 13.000203739845899 + ], + [ + 77.527863449068093, + 13.000294134700599 + ], + [ + 77.527864481199501, + 13.000310713361801 + ], + [ + 77.527868152209905, + 13.0003696980482 + ], + [ + 77.527873766592805, + 13.0004599190456 + ], + [ + 77.5278743301389, + 13.0004689750076 + ], + [ + 77.527874716543195, + 13.000507126448101 + ], + [ + 77.527876605198898, + 13.0006936002126 + ], + [ + 77.527877113426101, + 13.0007437788059 + ], + [ + 77.527877235183198, + 13.0007558001676 + ], + [ + 77.527876117562798, + 13.000762802145299 + ], + [ + 77.527845550739201, + 13.0009543619799 + ], + [ + 77.527845030039202, + 13.0009576231766 + ], + [ + 77.527837166099999, + 13.001006904845299 + ], + [ + 77.527834686227806, + 13.001110848666899 + ], + [ + 77.527832989249902, + 13.001181977629001 + ], + [ + 77.527832315400701, + 13.0012102340618 + ], + [ + 77.527831624354206, + 13.0012271502384 + ], + [ + 77.527827829069096, + 13.0013200833351 + ], + [ + 77.527826317054704, + 13.001357107240199 + ], + [ + 77.527846194806997, + 13.0014085428271 + ], + [ + 77.527848103064201, + 13.0014134806237 + ], + [ + 77.527850735458202, + 13.0014202920795 + ], + [ + 77.527855884186806, + 13.0014336146799 + ], + [ + 77.527936118564298, + 13.001504511333801 + ], + [ + 77.527949432388695, + 13.0015162750062 + ], + [ + 77.528048102237605, + 13.0015755395989 + ], + [ + 77.528053910763006, + 13.001579028258 + ], + [ + 77.528121505120694, + 13.0016196279454 + ], + [ + 77.528237152515203, + 13.001660858143699 + ], + [ + 77.528303150495802, + 13.0016843877074 + ], + [ + 77.528368756416498, + 13.0017077774189 + ], + [ + 77.528504091637402, + 13.001756026680299 + ], + [ + 77.528636442613106, + 13.0018032119167 + ], + [ + 77.528716382220694, + 13.0018501690564 + ], + [ + 77.528716888286397, + 13.0018504658862 + ], + [ + 77.528765045598703, + 13.0018787542759 + ], + [ + 77.528869159632507, + 13.0019716225945 + ], + [ + 77.528966686404104, + 13.002058613796599 + ], + [ + 77.529000535239504, + 13.0020854256906 + ], + [ + 77.529050265425298, + 13.0021248172905 + ], + [ + 77.529052601160103, + 13.0021266674404 + ], + [ + 77.529098015222203, + 13.002182910690401 + ], + [ + 77.529129373645006, + 13.0022217481373 + ], + [ + 77.529139073775696, + 13.0022337610708 + ], + [ + 77.529175648963303, + 13.002279058108901 + ], + [ + 77.529216097210295, + 13.002395231107901 + ], + [ + 77.529219539151796, + 13.002405116810699 + ], + [ + 77.529220096775703, + 13.0024601356833 + ], + [ + 77.529220099952795, + 13.002460449158001 + ], + [ + 77.529211676734604, + 13.0024790550549 + ], + [ + 77.529185179272204, + 13.002537584813 + ], + [ + 77.529161020722896, + 13.0026049746079 + ], + [ + 77.529124709382998, + 13.0027062619427 + ], + [ + 77.529118648481102, + 13.002723168446 + ], + [ + 77.529102297148995, + 13.0027687794462 + ], + [ + 77.529066246687705, + 13.002856992767599 + ], + [ + 77.5290351814931, + 13.002933007579299 + ], + [ + 77.529021667218302, + 13.0029660755953 + ], + [ + 77.529015278101596, + 13.002981709092699 + ], + [ + 77.529004524447998, + 13.0030080227836 + ], + [ + 77.5289840670942, + 13.003091794447901 + ], + [ + 77.528979653376695, + 13.003266766971199 + ], + [ + 77.528979137497302, + 13.0032872179669 + ], + [ + 77.528979877764201, + 13.0033602593842 + ], + [ + 77.528979977314705, + 13.0033700818933 + ], + [ + 77.528980079062507, + 13.0033801212148 + ], + [ + 77.528980487968497, + 13.003420467308599 + ], + [ + 77.529011106287697, + 13.0035189882576 + ], + [ + 77.529014491183801, + 13.003529880084301 + ], + [ + 77.529032275692202, + 13.0035871054049 + ], + [ + 77.529042357574298, + 13.003614142104199 + ], + [ + 77.529042752501198, + 13.003615199837901 + ], + [ + 77.529060646072395, + 13.003663185160701 + ], + [ + 77.529061972013693, + 13.003666740962601 + ], + [ + 77.529065424214195, + 13.003676000456901 + ], + [ + 77.529071024004907, + 13.0036874687855 + ], + [ + 77.529073895036106, + 13.003693348635 + ], + [ + 77.529098355299297, + 13.0037434400999 + ], + [ + 77.529139204637602, + 13.003782708120101 + ], + [ + 77.529139266045604, + 13.0037827671509 + ], + [ + 77.529194209468002, + 13.003835583625801 + ], + [ + 77.529237918962707, + 13.0038776010287 + ], + [ + 77.529326310854302, + 13.003958626786501 + ], + [ + 77.529388792964397, + 13.0040159015524 + ], + [ + 77.529425021164897, + 13.004049110682899 + ], + [ + 77.529445691377902, + 13.0040680583356 + ], + [ + 77.529446614869997, + 13.0040689049239 + ], + [ + 77.529463444173999, + 13.004084331229301 + ], + [ + 77.529575888717503, + 13.0042131104455 + ], + [ + 77.529602470931493, + 13.0042594885018 + ], + [ + 77.529608716982693, + 13.0042703859997 + ], + [ + 77.529609564163593, + 13.004353949099199 + ], + [ + 77.529601576934496, + 13.004411389438999 + ], + [ + 77.529599631862396, + 13.004425377014201 + ], + [ + 77.529591830937406, + 13.004481472975501 + ], + [ + 77.529589453917396, + 13.004498567291799 + ], + [ + 77.529584875067201, + 13.004531496580499 + ], + [ + 77.529581997120104, + 13.0045602524035 + ], + [ + 77.529581836502302, + 13.0045618585394 + ], + [ + 77.529577174042402, + 13.004608442848101 + ], + [ + 77.529573877819601, + 13.0046413813167 + ], + [ + 77.529565528386996, + 13.004724802780499 + ], + [ + 77.529574015727206, + 13.0048484634732 + ], + [ + 77.529577690128903, + 13.004901991020001 + ], + [ + 77.529583429978203, + 13.004962036873 + ], + [ + 77.529588207231399, + 13.0050120174695 + ], + [ + 77.529588746255399, + 13.0050176544105 + ], + [ + 77.529601524759201, + 13.0051513433843 + ], + [ + 77.529715450269194, + 13.0053693251532 + ], + [ + 77.529719929018498, + 13.0053785935939 + ], + [ + 77.529721497857096, + 13.0053818407431 + ], + [ + 77.529738020062396, + 13.005416036967 + ], + [ + 77.529878380867402, + 13.005706539314 + ], + [ + 77.529902496307301, + 13.0057437500258 + ], + [ + 77.529903514789396, + 13.0057448007049 + ], + [ + 77.529973096411496, + 13.0057589852912 + ], + [ + 77.530067288503005, + 13.0057687964867 + ], + [ + 77.530162914412898, + 13.005776444300899 + ], + [ + 77.530307649051494, + 13.005775548767501 + ], + [ + 77.530368387884494, + 13.0057829657265 + ], + [ + 77.530547196019597, + 13.0057428793684 + ], + [ + 77.530634534450101, + 13.005723299447 + ], + [ + 77.530779535896301, + 13.0056743254303 + ], + [ + 77.530865001785301, + 13.005631376393501 + ], + [ + 77.530933950706896, + 13.005596727836201 + ], + [ + 77.531103008773499, + 13.0055284972811 + ], + [ + 77.531244930788802, + 13.0054985043288 + ], + [ + 77.531291752674605, + 13.005488608973 + ], + [ + 77.531545966093802, + 13.0054941507713 + ], + [ + 77.531555379905001, + 13.0054943561668 + ], + [ + 77.531709923173594, + 13.005568014517999 + ], + [ + 77.5317925073129, + 13.0056073752956 + ], + [ + 77.531997681998703, + 13.0057528036516 + ], + [ + 77.532249785355702, + 13.0058847647015 + ], + [ + 77.532363374871295, + 13.0059442221614 + ], + [ + 77.532577864959705, + 13.0060515147181 + ], + [ + 77.532826929886696, + 13.0062202905216 + ], + [ + 77.5330521799265, + 13.0064321032214 + ], + [ + 77.533072457295205, + 13.006461588818199 + ], + [ + 77.533134046620404, + 13.006425444922399 + ], + [ + 77.533328910840595, + 13.0062968746794 + ], + [ + 77.533334266780699, + 13.0063014156337 + ], + [ + 77.533409393707103, + 13.0062734442145 + ], + [ + 77.533585950398006, + 13.006135464941099 + ], + [ + 77.533587826295303, + 13.006137318200899 + ], + [ + 77.533747098269799, + 13.0062331813143 + ], + [ + 77.533955807021101, + 13.0064270851157 + ], + [ + 77.534174151209896, + 13.0063487337402 + ], + [ + 77.533821040213397, + 13.0059543956996 + ], + [ + 77.534329271716302, + 13.0056224660461 + ], + [ + 77.534350967306693, + 13.005606530124 + ], + [ + 77.534435957432606, + 13.005544312724901 + ], + [ + 77.534560312913996, + 13.0054532776433 + ], + [ + 77.534560312913996, + 13.0054532776433 + ], + [ + 77.534002510184806, + 13.0049891800433 + ], + [ + 77.535759320346301, + 13.003513804460701 + ], + [ + 77.535826121523996, + 13.0034904429798 + ], + [ + 77.535869875151505, + 13.003478062516001 + ], + [ + 77.536076258272104, + 13.0028915267096 + ], + [ + 77.536079272799498, + 13.0028898818461 + ], + [ + 77.5360963021309, + 13.002813549284101 + ], + [ + 77.536112794494997, + 13.0028331497171 + ], + [ + 77.536183782107798, + 13.0025992920442 + ], + [ + 77.536379209484494, + 13.0019554829968 + ], + [ + 77.536473645429695, + 13.001639265325799 + ], + [ + 77.536593777371294, + 13.001237007540899 + ], + [ + 77.5364823281094, + 13.001192248333099 + ], + [ + 77.536314386942493, + 13.0011580334935 + ], + [ + 77.536039410574105, + 13.0010860187821 + ], + [ + 77.535680248268207, + 13.0010129993963 + ], + [ + 77.535799479119106, + 13.0008636202269 + ], + [ + 77.536306210415603, + 13.000640661732 + ], + [ + 77.5367393884015, + 13.0005202531494 + ], + [ + 77.536878446723193, + 13.000504994879799 + ], + [ + 77.536743119944802, + 12.9998752366009 + ], + [ + 77.536535300341697, + 12.999913449653199 + ], + [ + 77.536454790270199, + 12.999928253720901 + ], + [ + 77.536378431210395, + 12.9999427335145 + ], + [ + 77.535313026327401, + 13.0002632809102 + ], + [ + 77.535055296732295, + 13.000329145020601 + ], + [ + 77.534850489278597, + 13.000380172059399 + ], + [ + 77.534541019392293, + 13.0004572742205 + ], + [ + 77.534507465715194, + 13.0005137778949 + ], + [ + 77.5344736926438, + 13.000548768444601 + ], + [ + 77.534308184082505, + 13.0007162374463 + ], + [ + 77.534305097885195, + 13.0007154508416 + ], + [ + 77.533782442756802, + 13.0005821651062 + ], + [ + 77.533517028836997, + 13.0005173948361 + ], + [ + 77.533217318720403, + 13.000444254033701 + ], + [ + 77.533153801880104, + 13.0004286981563 + ], + [ + 77.528643273448594, + 12.999353778283799 + ], + [ + 77.528568215392994, + 12.999354509423799 + ], + [ + 77.5285628362045, + 12.999354561821599 + ], + [ + 77.528551032447496, + 12.9992722066902 + ], + [ + 77.528550523979803, + 12.9992220118564 + ], + [ + 77.528549881290104, + 12.9992366406271 + ], + [ + 77.528191476515502, + 12.999161071975699 + ], + [ + 77.528148224711401, + 12.9991485877946 + ], + [ + 77.528132490418301, + 12.999165799498 + ], + [ + 77.528130702549205, + 12.999167754864899 + ], + [ + 77.528082804682199, + 12.9992201485921 + ], + [ + 77.528062377943499, + 12.999242561276599 + ], + [ + 77.528060656647696, + 12.9992444491377 + ], + [ + 77.528012517059395, + 12.999297268037299 + ], + [ + 77.527976875704297, + 12.9993363733309 + ], + [ + 77.527915914169895, + 12.999359393979001 + ], + [ + 77.527863293893205, + 12.9993792651827 + ], + [ + 77.527818722748705, + 12.999405260353701 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "58", + "group": "NANDINI LAYOUT", + "Corporatio": "West", + "ac_no": "156", + "ac": "Mahalakshmi Layout", + "corporat_1": "5", + "ward_id": "30", + "ward_name": "30 - Nandini Layout", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಹಾಲಕ್ಷ್ಮಿ ಲೇಔಟ್", + "ward_name_": "ನಂದಿನಿ ಲೇಔಟ್", + "dig_ward_n": "NANDINI LAYOUT", + "Assembly": "156 - Mahalakshmi Layout", + "Slno": "30" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.5321060542054, + 13.0179285729287 + ], + [ + 77.532358023652606, + 13.017893840603101 + ], + [ + 77.533293318344107, + 13.017809403690899 + ], + [ + 77.533684434948398, + 13.0177894815724 + ], + [ + 77.533739830771097, + 13.017786659797901 + ], + [ + 77.533815977002504, + 13.017782781419101 + ], + [ + 77.534035328885807, + 13.0177770515162 + ], + [ + 77.534323716911004, + 13.017727619672 + ], + [ + 77.535548427024196, + 13.017335564418101 + ], + [ + 77.535576075180501, + 13.0173597961053 + ], + [ + 77.535591226229201, + 13.017411281210499 + ], + [ + 77.535654332583903, + 13.017575604107099 + ], + [ + 77.5358011948002, + 13.0179732991056 + ], + [ + 77.536029194712199, + 13.017916515075999 + ], + [ + 77.536336455090407, + 13.0178452747598 + ], + [ + 77.536648082995399, + 13.0177365705156 + ], + [ + 77.537141809824504, + 13.017625986865999 + ], + [ + 77.537263393547505, + 13.017621650683299 + ], + [ + 77.537204117227901, + 13.0175015525563 + ], + [ + 77.537198307322797, + 13.017470279835599 + ], + [ + 77.537181420594294, + 13.0173793844987 + ], + [ + 77.537213832522497, + 13.017306398600599 + ], + [ + 77.537255428489701, + 13.0172570710229 + ], + [ + 77.537262739642699, + 13.017252527299901 + ], + [ + 77.537352330232693, + 13.0171968406485 + ], + [ + 77.537546543264995, + 13.017116533170199 + ], + [ + 77.537568114697507, + 13.016936561631301 + ], + [ + 77.5375673749692, + 13.0168638992929 + ], + [ + 77.5375438958404, + 13.0168564803372 + ], + [ + 77.537530057807203, + 13.0164550231479 + ], + [ + 77.537521375566598, + 13.0164223591989 + ], + [ + 77.537513834399107, + 13.0163939863981 + ], + [ + 77.537248685862394, + 13.0160198493674 + ], + [ + 77.537182070776097, + 13.015989904381399 + ], + [ + 77.537193440512397, + 13.0159572827025 + ], + [ + 77.536945897805793, + 13.015779944478799 + ], + [ + 77.536846319607704, + 13.015754055051501 + ], + [ + 77.536813946584203, + 13.0156121124758 + ], + [ + 77.536729337867001, + 13.0153471243287 + ], + [ + 77.5367230895761, + 13.0152598055471 + ], + [ + 77.535833473231307, + 13.0151375424745 + ], + [ + 77.534942047483995, + 13.014874851795399 + ], + [ + 77.534636292759004, + 13.014556177856701 + ], + [ + 77.535286559850107, + 13.013707816155099 + ], + [ + 77.536207956392602, + 13.0139409124798 + ], + [ + 77.536411077077602, + 13.013969522668299 + ], + [ + 77.536388949817606, + 13.013711572739201 + ], + [ + 77.536399959449795, + 13.0132601504937 + ], + [ + 77.536494506333796, + 13.0125838445607 + ], + [ + 77.5367550438107, + 13.012601070179 + ], + [ + 77.536942372409797, + 13.012585997762899 + ], + [ + 77.537289037978198, + 13.012478337648499 + ], + [ + 77.537414346287306, + 13.012355421640301 + ], + [ + 77.537661330010195, + 13.0120906964578 + ], + [ + 77.537836804300497, + 13.011809183342301 + ], + [ + 77.537881091182001, + 13.0115942304149 + ], + [ + 77.537907713199402, + 13.0115912043913 + ], + [ + 77.537918650964698, + 13.011502396630499 + ], + [ + 77.537922401679594, + 13.011413018639001 + ], + [ + 77.537918941552405, + 13.011323628992001 + ], + [ + 77.537908292874405, + 13.0112347876203 + ], + [ + 77.537890522093605, + 13.0111470476976 + ], + [ + 77.537865739842402, + 13.0110609583511 + ], + [ + 77.537834101776099, + 13.010977056521799 + ], + [ + 77.537795804896604, + 13.010895867904299 + ], + [ + 77.537751088381398, + 13.0108178979039 + ], + [ + 77.537700230847506, + 13.0107436343741 + ], + [ + 77.537643552120301, + 13.010673540371601 + ], + [ + 77.537581404960207, + 13.0106080560441 + ], + [ + 77.537514176794801, + 13.0105475877721 + ], + [ + 77.537442288871603, + 13.010492515405099 + ], + [ + 77.537366190619494, + 13.0104431814751 + ], + [ + 77.537286356000905, + 13.010399894846101 + ], + [ + 77.537203284387004, + 13.0103629261887 + ], + [ + 77.537117495011998, + 13.010332506227201 + ], + [ + 77.537029523278704, + 13.010308824872499 + ], + [ + 77.536939918898099, + 13.010292029433099 + ], + [ + 77.536849241292103, + 13.0102822255639 + ], + [ + 77.536758057732897, + 13.0102794754775 + ], + [ + 77.536666937778904, + 13.0102837943842 + ], + [ + 77.536576450566002, + 13.0102951559399 + ], + [ + 77.536487160183199, + 13.010313490483901 + ], + [ + 77.536399625635994, + 13.010338681425701 + ], + [ + 77.536314393549702, + 13.0103705725436 + ], + [ + 77.536231996299605, + 13.010408965292701 + ], + [ + 77.536152948316797, + 13.0104536179375 + ], + [ + 77.536077743407304, + 13.010504253709099 + ], + [ + 77.536006851923304, + 13.010560554508601 + ], + [ + 77.535940717170803, + 13.0106221699766 + ], + [ + 77.535879750765801, + 13.0106887139245 + ], + [ + 77.535824334550597, + 13.010759771544199 + ], + [ + 77.535774814135493, + 13.010834898566401 + ], + [ + 77.535731499874998, + 13.0109136266727 + ], + [ + 77.5356946613216, + 13.0109954617427 + ], + [ + 77.5356645282573, + 13.011079894685199 + ], + [ + 77.5356412906565, + 13.011166397824599 + ], + [ + 77.535629391764104, + 13.011231067900299 + ], + [ + 77.535575890673201, + 13.011214403602001 + ], + [ + 77.535264810185794, + 13.011136633480101 + ], + [ + 77.534743750369401, + 13.0109927587547 + ], + [ + 77.533831439301196, + 13.0107125962666 + ], + [ + 77.533831439301196, + 13.0107125962666 + ], + [ + 77.533831439301196, + 13.0107125962666 + ], + [ + 77.533841092344701, + 13.0107151997299 + ], + [ + 77.533783624652798, + 13.010577060028 + ], + [ + 77.5337620926299, + 13.0104973915433 + ], + [ + 77.533607062065201, + 13.010269152100699 + ], + [ + 77.533811627084802, + 13.0101062878219 + ], + [ + 77.533981983138005, + 13.0099576117209 + ], + [ + 77.534062923573103, + 13.0098802716977 + ], + [ + 77.534224628172595, + 13.009725759561301 + ], + [ + 77.534431510320999, + 13.009573140518 + ], + [ + 77.534459579785107, + 13.009559241018 + ], + [ + 77.534513162773806, + 13.009532708352999 + ], + [ + 77.534675284067802, + 13.0094524319392 + ], + [ + 77.534790270832104, + 13.0093968543461 + ], + [ + 77.534819482733795, + 13.0093927435954 + ], + [ + 77.535284323365602, + 13.0091701473126 + ], + [ + 77.535165988309899, + 13.0089203080317 + ], + [ + 77.535156873564603, + 13.0088965978928 + ], + [ + 77.535059566939793, + 13.0086434595248 + ], + [ + 77.535024004190504, + 13.008566894612301 + ], + [ + 77.5349588914724, + 13.008426712366299 + ], + [ + 77.534941493446297, + 13.008372249512201 + ], + [ + 77.534926158583104, + 13.0083242434754 + ], + [ + 77.534834220049106, + 13.008153030694601 + ], + [ + 77.534772188066597, + 13.008046066882899 + ], + [ + 77.534749837655497, + 13.0080056480562 + ], + [ + 77.534648197146197, + 13.007839310222201 + ], + [ + 77.534628186404802, + 13.0077893061839 + ], + [ + 77.534615650759093, + 13.0077277875566 + ], + [ + 77.534578712612301, + 13.007744066692799 + ], + [ + 77.534551368445307, + 13.007733209404501 + ], + [ + 77.534520275720496, + 13.0077208591589 + ], + [ + 77.534461405810404, + 13.0076548511962 + ], + [ + 77.534436624469294, + 13.0076027805205 + ], + [ + 77.534353505679405, + 13.007537011222 + ], + [ + 77.534309759411201, + 13.0075221717173 + ], + [ + 77.533879736366003, + 13.0077687291964 + ], + [ + 77.533648777916198, + 13.007881131543099 + ], + [ + 77.533256072588799, + 13.0080513957059 + ], + [ + 77.533177526101994, + 13.0080867331411 + ], + [ + 77.533113503163094, + 13.008115536678901 + ], + [ + 77.532917442149397, + 13.0081977037351 + ], + [ + 77.532766532263395, + 13.008281405091401 + ], + [ + 77.532626711826396, + 13.0083400014971 + ], + [ + 77.532576172480205, + 13.008429885424899 + ], + [ + 77.532576200123799, + 13.0084299764056 + ], + [ + 77.5324062349314, + 13.0084973731961 + ], + [ + 77.532403448288207, + 13.0084954272162 + ], + [ + 77.532372475080393, + 13.0084737986921 + ], + [ + 77.532293406568499, + 13.0084895103543 + ], + [ + 77.532252168946897, + 13.008510233793601 + ], + [ + 77.532238833757702, + 13.008516935821101 + ], + [ + 77.532019023658194, + 13.008584766535201 + ], + [ + 77.531817201274507, + 13.008647046768001 + ], + [ + 77.531758870223996, + 13.008665046760299 + ], + [ + 77.531670687729104, + 13.008692597763201 + ], + [ + 77.531600913960006, + 13.008714397372 + ], + [ + 77.531857585205898, + 13.0092905216607 + ], + [ + 77.532046784359295, + 13.0095427871985 + ], + [ + 77.531881296328606, + 13.0098405564981 + ], + [ + 77.532760853565904, + 13.0106007452532 + ], + [ + 77.532797458004794, + 13.0106954861538 + ], + [ + 77.532747934352102, + 13.0108978871689 + ], + [ + 77.532657499856001, + 13.011115360600099 + ], + [ + 77.5331034943096, + 13.0111418130328 + ], + [ + 77.533079308508903, + 13.0112567901333 + ], + [ + 77.533003825140895, + 13.0115946884822 + ], + [ + 77.533000960015897, + 13.011607515946601 + ], + [ + 77.532918256752197, + 13.0121055348132 + ], + [ + 77.532917512161603, + 13.0121301056717 + ], + [ + 77.532910953122496, + 13.0123465629284 + ], + [ + 77.532929160717501, + 13.0129870223439 + ], + [ + 77.532989054917707, + 13.0133153624079 + ], + [ + 77.533041246314497, + 13.0134524260109 + ], + [ + 77.5326605690706, + 13.013585253897601 + ], + [ + 77.532230204042705, + 13.0136970268111 + ], + [ + 77.531936101493201, + 13.0137835636848 + ], + [ + 77.531739455326502, + 13.013864368518799 + ], + [ + 77.531549030183399, + 13.013837542359701 + ], + [ + 77.531510877158993, + 13.013921579982799 + ], + [ + 77.531462610849701, + 13.0139698602223 + ], + [ + 77.531073926265805, + 13.0141051285974 + ], + [ + 77.530906409567905, + 13.0141736965174 + ], + [ + 77.530862532431598, + 13.0141741247634 + ], + [ + 77.530816217521306, + 13.014174576794201 + ], + [ + 77.530755058529394, + 13.0141536592904 + ], + [ + 77.530648191181697, + 13.0141929498745 + ], + [ + 77.530468047673907, + 13.014277228988 + ], + [ + 77.530468334124294, + 13.014277861180799 + ], + [ + 77.530482959976098, + 13.0143101395812 + ], + [ + 77.530602956631, + 13.0145749681376 + ], + [ + 77.530610107077095, + 13.0145906205894 + ], + [ + 77.530610129692803, + 13.0145906700597 + ], + [ + 77.530612165142003, + 13.014595125999801 + ], + [ + 77.530647128640297, + 13.0146716603793 + ], + [ + 77.530710601097695, + 13.014853844181401 + ], + [ + 77.530720276687802, + 13.0148816173675 + ], + [ + 77.530849503530305, + 13.0152525353509 + ], + [ + 77.530863079773397, + 13.0152915042319 + ], + [ + 77.530949596684096, + 13.015539831173699 + ], + [ + 77.530977000728996, + 13.015618488330301 + ], + [ + 77.531046675914496, + 13.0158184757697 + ], + [ + 77.531068271785003, + 13.0158804618095 + ], + [ + 77.531097800263794, + 13.015991565389101 + ], + [ + 77.531160529319706, + 13.0162275850992 + ], + [ + 77.531166718045696, + 13.016250872216499 + ], + [ + 77.531200587346802, + 13.0163783061159 + ], + [ + 77.531208758744498, + 13.0164090513393 + ], + [ + 77.5312119722891, + 13.016421142431501 + ], + [ + 77.531218253936203, + 13.016444777378901 + ], + [ + 77.531257861801905, + 13.0165938051429 + ], + [ + 77.531258637769994, + 13.016596723010499 + ], + [ + 77.531267106570795, + 13.0166285880145 + ], + [ + 77.531284806737901, + 13.016695185424 + ], + [ + 77.531297910378697, + 13.016744487363599 + ], + [ + 77.5312980004407, + 13.016744827093399 + ], + [ + 77.531325387053997, + 13.0168478681507 + ], + [ + 77.531325819135105, + 13.0168494956031 + ], + [ + 77.531393994132699, + 13.017106005148101 + ], + [ + 77.531417003173701, + 13.0172006920521 + ], + [ + 77.531434348447107, + 13.0172720722686 + ], + [ + 77.531471208439299, + 13.017423764014399 + ], + [ + 77.531472787401697, + 13.0174302635345 + ], + [ + 77.531525148443095, + 13.0176457444307 + ], + [ + 77.531532218093204, + 13.017674834056001 + ], + [ + 77.531532958520302, + 13.0176778805616 + ], + [ + 77.531596166640099, + 13.017938003567901 + ], + [ + 77.531609318083099, + 13.0179921256432 + ], + [ + 77.531682905291703, + 13.017977828679401 + ], + [ + 77.5321060542054, + 13.0179285729287 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "57", + "group": "JAI MARUTHI NAGAR", + "Corporatio": "West", + "ac_no": "156", + "ac": "Mahalakshmi Layout", + "corporat_1": "5", + "ward_id": "31", + "ward_name": "31 - Kittur Rani Chennama Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಹಾಲಕ್ಷ್ಮಿ ಲೇಔಟ್", + "ward_name_": "ಕಿತ್ತೂರು ರಾಣಿ ಚೆನ್ನಮ ವಾರ್ಡ್", + "dig_ward_n": "JAI MARUTHI NAGAR", + "Assembly": "156 - Mahalakshmi Layout", + "Slno": "31" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.533831439301196, + 13.0107125962666 + ], + [ + 77.533831439301196, + 13.0107125962666 + ], + [ + 77.534743750369401, + 13.0109927587547 + ], + [ + 77.535264810185794, + 13.011136633480101 + ], + [ + 77.535575890673201, + 13.011214403602001 + ], + [ + 77.535629391764104, + 13.011231067900299 + ], + [ + 77.5356412906565, + 13.011166397824599 + ], + [ + 77.5356645282573, + 13.011079894685199 + ], + [ + 77.5356946613216, + 13.0109954617427 + ], + [ + 77.535731499874998, + 13.0109136266727 + ], + [ + 77.535774814135493, + 13.010834898566401 + ], + [ + 77.535824334550597, + 13.010759771544199 + ], + [ + 77.535879750765801, + 13.0106887139245 + ], + [ + 77.535940717170803, + 13.0106221699766 + ], + [ + 77.536006851923304, + 13.010560554508601 + ], + [ + 77.536077743407304, + 13.010504253709099 + ], + [ + 77.536152948316797, + 13.0104536179375 + ], + [ + 77.536231996299605, + 13.010408965292701 + ], + [ + 77.536314393549702, + 13.0103705725436 + ], + [ + 77.536399625635994, + 13.010338681425701 + ], + [ + 77.536487160183199, + 13.010313490483901 + ], + [ + 77.536576450566002, + 13.0102951559399 + ], + [ + 77.536666937778904, + 13.0102837943842 + ], + [ + 77.536758057732897, + 13.0102794754775 + ], + [ + 77.536849241292103, + 13.0102822255639 + ], + [ + 77.536939918898099, + 13.010292029433099 + ], + [ + 77.537029523278704, + 13.010308824872499 + ], + [ + 77.537117495011998, + 13.010332506227201 + ], + [ + 77.537203284387004, + 13.0103629261887 + ], + [ + 77.537286356000905, + 13.010399894846101 + ], + [ + 77.537366190619494, + 13.0104431814751 + ], + [ + 77.537442288871603, + 13.010492515405099 + ], + [ + 77.537514176794801, + 13.0105475877721 + ], + [ + 77.537581404960207, + 13.0106080560441 + ], + [ + 77.537643552120301, + 13.010673540371601 + ], + [ + 77.537700230847506, + 13.0107436343741 + ], + [ + 77.537751088381398, + 13.0108178979039 + ], + [ + 77.537795804896604, + 13.010895867904299 + ], + [ + 77.537834101776099, + 13.010977056521799 + ], + [ + 77.537865739842402, + 13.0110609583511 + ], + [ + 77.537890522093605, + 13.0111470476976 + ], + [ + 77.537908292874405, + 13.0112347876203 + ], + [ + 77.537918941552405, + 13.011323628992001 + ], + [ + 77.537922401679594, + 13.011413018639001 + ], + [ + 77.537918650964698, + 13.011502396630499 + ], + [ + 77.537907713199402, + 13.0115912043913 + ], + [ + 77.537881091182001, + 13.0115942304149 + ], + [ + 77.537836804300497, + 13.011809183342301 + ], + [ + 77.537661330010195, + 13.0120906964578 + ], + [ + 77.537414346287306, + 13.012355421640301 + ], + [ + 77.537289037978198, + 13.012478337648499 + ], + [ + 77.536942372409797, + 13.012585997762899 + ], + [ + 77.5367550438107, + 13.012601070179 + ], + [ + 77.536494506333796, + 13.0125838445607 + ], + [ + 77.536399959449795, + 13.0132601504937 + ], + [ + 77.536388949817606, + 13.013711572739201 + ], + [ + 77.536411077077602, + 13.013969522668299 + ], + [ + 77.536207956392602, + 13.0139409124798 + ], + [ + 77.535286559850107, + 13.013707816155099 + ], + [ + 77.534636292759004, + 13.014556177856701 + ], + [ + 77.534942047483995, + 13.014874851795399 + ], + [ + 77.535833473231307, + 13.0151375424745 + ], + [ + 77.5367230895761, + 13.0152598055471 + ], + [ + 77.537026920405495, + 13.0152337745326 + ], + [ + 77.537245905486898, + 13.0151921899339 + ], + [ + 77.537588296023003, + 13.015059755316599 + ], + [ + 77.538054603328007, + 13.014886666494499 + ], + [ + 77.5381859852791, + 13.0148808235109 + ], + [ + 77.538486063773504, + 13.014695775106 + ], + [ + 77.5387690106419, + 13.014471262917001 + ], + [ + 77.538776955450103, + 13.014502367278 + ], + [ + 77.538855433311497, + 13.0147075832217 + ], + [ + 77.538965583573102, + 13.0150756724091 + ], + [ + 77.538974369039906, + 13.015098649200199 + ], + [ + 77.539604689716398, + 13.014507392495601 + ], + [ + 77.539881248752593, + 13.014425553597199 + ], + [ + 77.539885097214196, + 13.0142591276364 + ], + [ + 77.539869105318203, + 13.0142285338689 + ], + [ + 77.539862720034705, + 13.014216319197001 + ], + [ + 77.539667990869901, + 13.0136339440733 + ], + [ + 77.539831103497406, + 13.0135754229141 + ], + [ + 77.539976894727801, + 13.0135261791053 + ], + [ + 77.539839607844101, + 13.0130425345035 + ], + [ + 77.539771763331004, + 13.0129931061721 + ], + [ + 77.539795768686503, + 13.012879180562701 + ], + [ + 77.539873140608904, + 13.012484441905199 + ], + [ + 77.539946881795998, + 13.012506880984001 + ], + [ + 77.540059190609796, + 13.0125241060364 + ], + [ + 77.540066104423701, + 13.0125251667501 + ], + [ + 77.540176452806406, + 13.0125518241728 + ], + [ + 77.540216523824597, + 13.0125615044331 + ], + [ + 77.540245872473605, + 13.0125563301079 + ], + [ + 77.540368507699995, + 13.012534710499001 + ], + [ + 77.5404096407146, + 13.012519123909399 + ], + [ + 77.540466263790407, + 13.0124955561314 + ], + [ + 77.540379844582901, + 13.0120346913374 + ], + [ + 77.5403045297072, + 13.011521487352701 + ], + [ + 77.540262636280005, + 13.0112977953964 + ], + [ + 77.540224002688007, + 13.0110949867528 + ], + [ + 77.540167392451096, + 13.0109222354188 + ], + [ + 77.5401870650565, + 13.0109162009326 + ], + [ + 77.540144873489794, + 13.010668816600001 + ], + [ + 77.540152000804298, + 13.0106676861287 + ], + [ + 77.540015176216201, + 13.0098715789115 + ], + [ + 77.540009057545305, + 13.0098195765264 + ], + [ + 77.540229058810596, + 13.0098082898683 + ], + [ + 77.5404782554197, + 13.0097656902234 + ], + [ + 77.540605317377199, + 13.0097490434341 + ], + [ + 77.540793774137498, + 13.009724352454599 + ], + [ + 77.540992523798806, + 13.009707107172 + ], + [ + 77.541257160397393, + 13.009701033782299 + ], + [ + 77.5412332143311, + 13.0096477226326 + ], + [ + 77.541224108479696, + 13.009519684931201 + ], + [ + 77.541233567063003, + 13.009490907205601 + ], + [ + 77.541310867666596, + 13.0094213057509 + ], + [ + 77.541171435250007, + 13.0087509873643 + ], + [ + 77.539602957635395, + 13.0089295834665 + ], + [ + 77.539367274596898, + 13.008960441206399 + ], + [ + 77.539222955195001, + 13.0079341475259 + ], + [ + 77.538893477717295, + 13.007984806821201 + ], + [ + 77.538885926414693, + 13.007985734500901 + ], + [ + 77.5387361409325, + 13.0071278414747 + ], + [ + 77.538694732813198, + 13.006812945283199 + ], + [ + 77.538694732813198, + 13.006812945283199 + ], + [ + 77.538439667975794, + 13.0068536884321 + ], + [ + 77.538231404567298, + 13.006893972567701 + ], + [ + 77.538120582849899, + 13.006927567171701 + ], + [ + 77.537554174186198, + 13.0070363742288 + ], + [ + 77.537386386021197, + 13.0070629880795 + ], + [ + 77.537365691955301, + 13.006958707884699 + ], + [ + 77.537857328340095, + 13.006726833967999 + ], + [ + 77.537817915108505, + 13.006703915423801 + ], + [ + 77.537778512072606, + 13.0066810021934 + ], + [ + 77.537459452761098, + 13.006495468597301 + ], + [ + 77.537431909214703, + 13.0065072138398 + ], + [ + 77.537331243973995, + 13.006387109974 + ], + [ + 77.537189309464395, + 13.006224526957601 + ], + [ + 77.537170314405699, + 13.006236642116001 + ], + [ + 77.537110869004096, + 13.0062702524469 + ], + [ + 77.536922995693502, + 13.006361310128 + ], + [ + 77.536544852736796, + 13.006623706917001 + ], + [ + 77.536484720032107, + 13.0066577927544 + ], + [ + 77.536330131112805, + 13.0064429440529 + ], + [ + 77.536110737423897, + 13.006644276487 + ], + [ + 77.536041503583604, + 13.0067207968331 + ], + [ + 77.536028039083106, + 13.0067317050355 + ], + [ + 77.535264203530105, + 13.005336853951899 + ], + [ + 77.535237008859497, + 13.0054108609305 + ], + [ + 77.534517965958898, + 13.0071900326601 + ], + [ + 77.534108499098494, + 13.006916388012099 + ], + [ + 77.533384513910605, + 13.006344015188599 + ], + [ + 77.533334266780699, + 13.0063014156337 + ], + [ + 77.533328910840595, + 13.0062968746794 + ], + [ + 77.533134046620404, + 13.006425444922399 + ], + [ + 77.533072457295205, + 13.006461588818199 + ], + [ + 77.5330521799265, + 13.0064321032214 + ], + [ + 77.532826929886696, + 13.0062202905216 + ], + [ + 77.532577864959705, + 13.0060515147181 + ], + [ + 77.532363374871295, + 13.0059442221614 + ], + [ + 77.532249785355702, + 13.0058847647015 + ], + [ + 77.531997681998703, + 13.0057528036516 + ], + [ + 77.5317925073129, + 13.0056073752956 + ], + [ + 77.531709923173594, + 13.005568014517999 + ], + [ + 77.531555379905001, + 13.0054943561668 + ], + [ + 77.531545966093802, + 13.0054941507713 + ], + [ + 77.531291752674605, + 13.005488608973 + ], + [ + 77.531244930788802, + 13.0054985043288 + ], + [ + 77.531103008773499, + 13.0055284972811 + ], + [ + 77.530933950706896, + 13.005596727836201 + ], + [ + 77.530865001785301, + 13.005631376393501 + ], + [ + 77.530779535896301, + 13.0056743254303 + ], + [ + 77.530634534450101, + 13.005723299447 + ], + [ + 77.530547196019597, + 13.0057428793684 + ], + [ + 77.530368387884494, + 13.0057829657265 + ], + [ + 77.530307649051494, + 13.005775548767501 + ], + [ + 77.530162914412898, + 13.005776444300899 + ], + [ + 77.530067288503005, + 13.0057687964867 + ], + [ + 77.529973096411496, + 13.0057589852912 + ], + [ + 77.529903514789396, + 13.0057448007049 + ], + [ + 77.529902496307301, + 13.0057437500258 + ], + [ + 77.529903474265396, + 13.005745259038701 + ], + [ + 77.529905291186907, + 13.0057480625923 + ], + [ + 77.529909897558397, + 13.005748017677501 + ], + [ + 77.529892002374098, + 13.0058524561321 + ], + [ + 77.529887606771098, + 13.0058781093954 + ], + [ + 77.529879691237397, + 13.005949335144599 + ], + [ + 77.529883417711204, + 13.0060397644344 + ], + [ + 77.529883788946506, + 13.006048773083901 + ], + [ + 77.529887320702699, + 13.006134467475199 + ], + [ + 77.529888856695194, + 13.0061717262159 + ], + [ + 77.529885620267805, + 13.0062518950017 + ], + [ + 77.529881803254, + 13.0063464456244 + ], + [ + 77.5298787313655, + 13.006422538942401 + ], + [ + 77.529899026739201, + 13.0065499567225 + ], + [ + 77.529910180821304, + 13.0065799646357 + ], + [ + 77.529937507207407, + 13.0066534809809 + ], + [ + 77.529959659093194, + 13.0067405495726 + ], + [ + 77.529969894426202, + 13.006780780832401 + ], + [ + 77.529981095760206, + 13.0068370411374 + ], + [ + 77.529986428478395, + 13.0068638250159 + ], + [ + 77.530002659623904, + 13.0069453452793 + ], + [ + 77.530035860094699, + 13.007152820469599 + ], + [ + 77.530043346416306, + 13.0072623062982 + ], + [ + 77.530044364429202, + 13.007277194651801 + ], + [ + 77.530050059250001, + 13.007360480949499 + ], + [ + 77.530070769202993, + 13.007456529645101 + ], + [ + 77.530084193979903, + 13.007518794419401 + ], + [ + 77.530095984760294, + 13.007573478720801 + ], + [ + 77.530140730629498, + 13.0076701657442 + ], + [ + 77.530247098695298, + 13.0077673810836 + ], + [ + 77.530345658385698, + 13.0078245583026 + ], + [ + 77.530360055725296, + 13.0078329114288 + ], + [ + 77.530416400992394, + 13.0078809226377 + ], + [ + 77.530462143693299, + 13.0080758525813 + ], + [ + 77.5304638975703, + 13.008248737693201 + ], + [ + 77.530464033354207, + 13.008262122230301 + ], + [ + 77.530464377571107, + 13.008296052429399 + ], + [ + 77.530422713023299, + 13.0085031283833 + ], + [ + 77.530403676123299, + 13.008552227224399 + ], + [ + 77.5303365090667, + 13.0087254575653 + ], + [ + 77.530333485897003, + 13.0087332551188 + ], + [ + 77.5303020199012, + 13.008810357289301 + ], + [ + 77.530273367200806, + 13.008824188874801 + ], + [ + 77.530213308563106, + 13.008827949493201 + ], + [ + 77.530150767443104, + 13.0088318652561 + ], + [ + 77.5301024452273, + 13.0088348907487 + ], + [ + 77.530030465481701, + 13.0088443420298 + ], + [ + 77.529563581496006, + 13.0089056478411 + ], + [ + 77.529455452066799, + 13.008913162075499 + ], + [ + 77.529440175337498, + 13.008914223547601 + ], + [ + 77.529090989865594, + 13.0089384876231 + ], + [ + 77.529053152508595, + 13.008941117013499 + ], + [ + 77.528897950806694, + 13.008944668654699 + ], + [ + 77.528824168612005, + 13.0089463570565 + ], + [ + 77.528795226555403, + 13.0089470195626 + ], + [ + 77.528780888691998, + 13.008952806050001 + ], + [ + 77.528743610243197, + 13.008967850914001 + ], + [ + 77.528680176790203, + 13.0090159016854 + ], + [ + 77.528625090647594, + 13.009080841591899 + ], + [ + 77.528565226585101, + 13.009151414044 + ], + [ + 77.528539508078396, + 13.0091841011358 + ], + [ + 77.528517646910899, + 13.009211885711499 + ], + [ + 77.528493590991005, + 13.0092424597779 + ], + [ + 77.528466651444504, + 13.0092616113142 + ], + [ + 77.528405371298504, + 13.009305174678399 + ], + [ + 77.528343794628796, + 13.0093489488111 + ], + [ + 77.528232576766698, + 13.009455630974999 + ], + [ + 77.528166403698506, + 13.009519105308 + ], + [ + 77.528079737731602, + 13.009602236712499 + ], + [ + 77.528061797809201, + 13.0096289080539 + ], + [ + 77.528028094624702, + 13.009679014672701 + ], + [ + 77.528009292767393, + 13.0097069674376 + ], + [ + 77.527997648765094, + 13.0097242794671 + ], + [ + 77.527974217325493, + 13.009759115433001 + ], + [ + 77.527957760593793, + 13.009809655307601 + ], + [ + 77.527934006839203, + 13.009882604867601 + ], + [ + 77.527897990740399, + 13.0099653979573 + ], + [ + 77.527872644280293, + 13.010038977749399 + ], + [ + 77.527823938140799, + 13.0101803696934 + ], + [ + 77.5278101642688, + 13.0102203562078 + ], + [ + 77.527811487568798, + 13.010237283466701 + ], + [ + 77.527823206467701, + 13.010268476349699 + ], + [ + 77.527823324203496, + 13.010268789734001 + ], + [ + 77.527824033918705, + 13.0102822680842 + ], + [ + 77.527824751438402, + 13.010295880072601 + ], + [ + 77.527828080359797, + 13.0104539557419 + ], + [ + 77.527816583573994, + 13.0105127936576 + ], + [ + 77.527806249848197, + 13.010572749582099 + ], + [ + 77.527742228566595, + 13.010619676606201 + ], + [ + 77.527702631671403, + 13.010640629339401 + ], + [ + 77.527699774031205, + 13.010642141462 + ], + [ + 77.527695023058797, + 13.010644656056 + ], + [ + 77.5276356889715, + 13.0106760527228 + ], + [ + 77.527683142115706, + 13.0107557736826 + ], + [ + 77.5277289227719, + 13.0107963859443 + ], + [ + 77.527782785731304, + 13.010844168908701 + ], + [ + 77.527792920873196, + 13.010853158186499 + ], + [ + 77.528164811277506, + 13.011183059298199 + ], + [ + 77.528182702424701, + 13.011198930611201 + ], + [ + 77.528248544419199, + 13.011257338088001 + ], + [ + 77.528384952809205, + 13.011392999473999 + ], + [ + 77.528675328190602, + 13.011681785669801 + ], + [ + 77.528763228344403, + 13.0117692042255 + ], + [ + 77.528836677193794, + 13.0118422505754 + ], + [ + 77.528965874685397, + 13.0120146425134 + ], + [ + 77.529000771058705, + 13.012061205689999 + ], + [ + 77.529037493366005, + 13.0121102052828 + ], + [ + 77.529207969619094, + 13.012336634493201 + ], + [ + 77.529279742453895, + 13.012431964106399 + ], + [ + 77.529358286539903, + 13.012536073313299 + ], + [ + 77.529413748150105, + 13.0126095874176 + ], + [ + 77.529460972361306, + 13.012672182959401 + ], + [ + 77.529461028390799, + 13.012672256497799 + ], + [ + 77.529523576882099, + 13.0127551644277 + ], + [ + 77.529526393667197, + 13.0127588972104 + ], + [ + 77.529528406334293, + 13.0127615654132 + ], + [ + 77.529549822416001, + 13.0127914638778 + ], + [ + 77.529720128781705, + 13.013029224042601 + ], + [ + 77.529722338248902, + 13.013032308631599 + ], + [ + 77.529770783907395, + 13.013099941686299 + ], + [ + 77.529862251658599, + 13.0132276380583 + ], + [ + 77.529867828601894, + 13.013235423091199 + ], + [ + 77.529975860962296, + 13.013386243928 + ], + [ + 77.529981369671603, + 13.013395839279999 + ], + [ + 77.530060690210107, + 13.013533998822901 + ], + [ + 77.530073865908093, + 13.0135569476921 + ], + [ + 77.530119172836393, + 13.013635864028601 + ], + [ + 77.530395605462402, + 13.0141173497464 + ], + [ + 77.530468047673907, + 13.014277228988 + ], + [ + 77.530648191181697, + 13.0141929498745 + ], + [ + 77.530755058529394, + 13.0141536592904 + ], + [ + 77.530816217521306, + 13.014174576794201 + ], + [ + 77.530862532431598, + 13.0141741247634 + ], + [ + 77.530906409567905, + 13.0141736965174 + ], + [ + 77.531073926265805, + 13.0141051285974 + ], + [ + 77.531462610849701, + 13.0139698602223 + ], + [ + 77.531510877158993, + 13.013921579982799 + ], + [ + 77.531549030183399, + 13.013837542359701 + ], + [ + 77.531739455326502, + 13.013864368518799 + ], + [ + 77.531936101493201, + 13.0137835636848 + ], + [ + 77.532230204042705, + 13.0136970268111 + ], + [ + 77.5326605690706, + 13.013585253897601 + ], + [ + 77.533041246314497, + 13.0134524260109 + ], + [ + 77.532989054917707, + 13.0133153624079 + ], + [ + 77.532929160717501, + 13.0129870223439 + ], + [ + 77.532910953122496, + 13.0123465629284 + ], + [ + 77.532917512161603, + 13.0121301056717 + ], + [ + 77.532918256752197, + 13.0121055348132 + ], + [ + 77.533000960015897, + 13.011607515946601 + ], + [ + 77.533003825140895, + 13.0115946884822 + ], + [ + 77.533079308508903, + 13.0112567901333 + ], + [ + 77.5331034943096, + 13.0111418130328 + ], + [ + 77.532657499856001, + 13.011115360600099 + ], + [ + 77.532747934352102, + 13.0108978871689 + ], + [ + 77.532797458004794, + 13.0106954861538 + ], + [ + 77.532760853565904, + 13.0106007452532 + ], + [ + 77.531881296328606, + 13.0098405564981 + ], + [ + 77.532046784359295, + 13.0095427871985 + ], + [ + 77.531857585205898, + 13.0092905216607 + ], + [ + 77.531600913960006, + 13.008714397372 + ], + [ + 77.531670687729104, + 13.008692597763201 + ], + [ + 77.531758870223996, + 13.008665046760299 + ], + [ + 77.531817201274507, + 13.008647046768001 + ], + [ + 77.532019023658194, + 13.008584766535201 + ], + [ + 77.532238833757702, + 13.008516935821101 + ], + [ + 77.532252168946897, + 13.008510233793601 + ], + [ + 77.532293406568499, + 13.0084895103543 + ], + [ + 77.532372475080393, + 13.0084737986921 + ], + [ + 77.532403448288207, + 13.0084954272162 + ], + [ + 77.5324062349314, + 13.0084973731961 + ], + [ + 77.532576200123799, + 13.0084299764056 + ], + [ + 77.532576172480205, + 13.008429885424899 + ], + [ + 77.532626711826396, + 13.0083400014971 + ], + [ + 77.532766532263395, + 13.008281405091401 + ], + [ + 77.532917442149397, + 13.0081977037351 + ], + [ + 77.533113503163094, + 13.008115536678901 + ], + [ + 77.533177526101994, + 13.0080867331411 + ], + [ + 77.533256072588799, + 13.0080513957059 + ], + [ + 77.533648777916198, + 13.007881131543099 + ], + [ + 77.533879736366003, + 13.0077687291964 + ], + [ + 77.534309759411201, + 13.0075221717173 + ], + [ + 77.534353505679405, + 13.007537011222 + ], + [ + 77.534436624469294, + 13.0076027805205 + ], + [ + 77.534461405810404, + 13.0076548511962 + ], + [ + 77.534520275720496, + 13.0077208591589 + ], + [ + 77.534551368445307, + 13.007733209404501 + ], + [ + 77.534578712612301, + 13.007744066692799 + ], + [ + 77.534615650759093, + 13.0077277875566 + ], + [ + 77.534628186404802, + 13.0077893061839 + ], + [ + 77.534648197146197, + 13.007839310222201 + ], + [ + 77.534749837655497, + 13.0080056480562 + ], + [ + 77.534772188066597, + 13.008046066882899 + ], + [ + 77.534834220049106, + 13.008153030694601 + ], + [ + 77.534926158583104, + 13.0083242434754 + ], + [ + 77.534941493446297, + 13.008372249512201 + ], + [ + 77.5349588914724, + 13.008426712366299 + ], + [ + 77.535024004190504, + 13.008566894612301 + ], + [ + 77.535059566939793, + 13.0086434595248 + ], + [ + 77.535156873564603, + 13.0088965978928 + ], + [ + 77.535165988309899, + 13.0089203080317 + ], + [ + 77.535284323365602, + 13.0091701473126 + ], + [ + 77.534819482733795, + 13.0093927435954 + ], + [ + 77.534790270832104, + 13.0093968543461 + ], + [ + 77.534675284067802, + 13.0094524319392 + ], + [ + 77.534513162773806, + 13.009532708352999 + ], + [ + 77.534459579785107, + 13.009559241018 + ], + [ + 77.534431510320999, + 13.009573140518 + ], + [ + 77.534224628172595, + 13.009725759561301 + ], + [ + 77.534062923573103, + 13.0098802716977 + ], + [ + 77.533981983138005, + 13.0099576117209 + ], + [ + 77.533811627084802, + 13.0101062878219 + ], + [ + 77.533607062065201, + 13.010269152100699 + ], + [ + 77.5337620926299, + 13.0104973915433 + ], + [ + 77.533783624652798, + 13.010577060028 + ], + [ + 77.533841092344701, + 13.0107151997299 + ], + [ + 77.533831439301196, + 13.0107125962666 + ], + [ + 77.533831439301196, + 13.0107125962666 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "61", + "group": "KAMALANAGARA", + "Corporatio": "West", + "ac_no": "156", + "ac": "Mahalakshmi Layout", + "corporat_1": "5", + "ward_id": "50", + "ward_name": "50 - Kamalanagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಹಾಲಕ್ಷ್ಮಿ ಲೇಔಟ್", + "ward_name_": "ಕಮಲನಗರ", + "dig_ward_n": "KAMALANAGARA", + "Assembly": "156 - Mahalakshmi Layout", + "Slno": "50" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.525573178219503, + 12.9978296631371 + ], + [ + 77.5255687962715, + 12.997814189401501 + ], + [ + 77.5255357309521, + 12.9977019576988 + ], + [ + 77.5255196772966, + 12.997647470670501 + ], + [ + 77.525457669747794, + 12.9974924942005 + ], + [ + 77.525742146028705, + 12.9974213200279 + ], + [ + 77.525658307145207, + 12.9971381027792 + ], + [ + 77.526168212593106, + 12.9970022701345 + ], + [ + 77.526414345415404, + 12.996927606066199 + ], + [ + 77.526821471431703, + 12.996810096968 + ], + [ + 77.527295862771197, + 12.996695426279301 + ], + [ + 77.527350541749001, + 12.9969758958343 + ], + [ + 77.528058214277806, + 12.996758292970499 + ], + [ + 77.5282012165043, + 12.996744383741699 + ], + [ + 77.528085092936607, + 12.9961775543043 + ], + [ + 77.527536903649903, + 12.996313218269099 + ], + [ + 77.527497550454797, + 12.996112321379201 + ], + [ + 77.527311244073502, + 12.9951799191484 + ], + [ + 77.5272288819518, + 12.994869962016701 + ], + [ + 77.527116407183897, + 12.994397389408499 + ], + [ + 77.526992491158595, + 12.994419613205199 + ], + [ + 77.526828604622494, + 12.9944680252342 + ], + [ + 77.5268183885198, + 12.994423458575399 + ], + [ + 77.526755692807697, + 12.994152171903499 + ], + [ + 77.526766433165093, + 12.994149305469399 + ], + [ + 77.527607127616605, + 12.9939249293471 + ], + [ + 77.527609491793598, + 12.993924298296401 + ], + [ + 77.527312577310795, + 12.9929578765011 + ], + [ + 77.527328911363796, + 12.9929587845503 + ], + [ + 77.527460860809896, + 12.992920265473799 + ], + [ + 77.527674526548097, + 12.9928578906925 + ], + [ + 77.528187930549294, + 12.992716637409201 + ], + [ + 77.528559867986203, + 12.9926154862467 + ], + [ + 77.528847302595807, + 12.992546711307201 + ], + [ + 77.529002104111996, + 12.992523689476 + ], + [ + 77.529029674053106, + 12.992453859741399 + ], + [ + 77.529538159717802, + 12.9923927314425 + ], + [ + 77.5299925060812, + 12.9923315513653 + ], + [ + 77.530399304296694, + 12.992276773234201 + ], + [ + 77.531253100658404, + 12.9921590534797 + ], + [ + 77.531587789458996, + 12.992112906144399 + ], + [ + 77.531601165541304, + 12.992111981025699 + ], + [ + 77.531573140560198, + 12.9918690273797 + ], + [ + 77.531554713886095, + 12.9917092822215 + ], + [ + 77.531539840644896, + 12.9915803406869 + ], + [ + 77.5315343916741, + 12.9915381311079 + ], + [ + 77.531524843455799, + 12.9914641646315 + ], + [ + 77.5315227875235, + 12.991448391047401 + ], + [ + 77.531499504916894, + 12.991269756391199 + ], + [ + 77.531499460958798, + 12.991269418920499 + ], + [ + 77.531474569037499, + 12.9910784368052 + ], + [ + 77.531469274392506, + 12.9910378149258 + ], + [ + 77.531456774920002, + 12.990940813324499 + ], + [ + 77.531446612832696, + 12.9908733569248 + ], + [ + 77.531446389622204, + 12.990871877403301 + ], + [ + 77.531404151105306, + 12.9905914984493 + ], + [ + 77.531387631891306, + 12.9904818449125 + ], + [ + 77.531383120937406, + 12.9904344574036 + ], + [ + 77.531374679794894, + 12.9903531701059 + ], + [ + 77.531371814996106, + 12.9903255788303 + ], + [ + 77.531371498521295, + 12.990322532690399 + ], + [ + 77.531365657739997, + 12.990266287833499 + ], + [ + 77.531347388088307, + 12.9900903553369 + ], + [ + 77.531335106654595, + 12.990030917658901 + ], + [ + 77.531330831917799, + 12.9900102294757 + ], + [ + 77.531329222730193, + 12.9900024436606 + ], + [ + 77.531320391805295, + 12.9899833308989 + ], + [ + 77.531238244929298, + 12.989803061164499 + ], + [ + 77.531217921152702, + 12.989758460974199 + ], + [ + 77.531186019602302, + 12.9896785876183 + ], + [ + 77.5311654094819, + 12.989626981443701 + ], + [ + 77.531143001409902, + 12.989570870897699 + ], + [ + 77.531141150532804, + 12.9895662360416 + ], + [ + 77.5310997601716, + 12.989462595278701 + ], + [ + 77.530991551596301, + 12.989296506910801 + ], + [ + 77.530944706114099, + 12.9891862073436 + ], + [ + 77.530896704510596, + 12.9890731860144 + ], + [ + 77.530894435561507, + 12.989067842387 + ], + [ + 77.530893630474694, + 12.9890659457072 + ], + [ + 77.530885970807503, + 12.9890445996481 + ], + [ + 77.530875262713195, + 12.9890475199101 + ], + [ + 77.530611952685504, + 12.9890971994715 + ], + [ + 77.530331089342496, + 12.989164476882699 + ], + [ + 77.529992052414201, + 12.9893260985677 + ], + [ + 77.529986695969399, + 12.9893285566892 + ], + [ + 77.529744564464295, + 12.9894396651445 + ], + [ + 77.529700945780604, + 12.989465189356901 + ], + [ + 77.529661019696206, + 12.989494263496301 + ], + [ + 77.529013144825598, + 12.989725919338699 + ], + [ + 77.528950146659, + 12.9897542079297 + ], + [ + 77.528743792467907, + 12.9898468688574 + ], + [ + 77.528722540743203, + 12.989858434234099 + ], + [ + 77.528718280140694, + 12.989860753372101 + ], + [ + 77.528474107837596, + 12.9899936381918 + ], + [ + 77.528354696150203, + 12.990058625653001 + ], + [ + 77.528332058622198, + 12.9900685411937 + ], + [ + 77.528270968455004, + 12.9900952977539 + ], + [ + 77.528139213806995, + 12.990130511061199 + ], + [ + 77.528117811649096, + 12.990136230565399 + ], + [ + 77.527821958841599, + 12.9901677952056 + ], + [ + 77.527775075803405, + 12.9901744944667 + ], + [ + 77.527606539336006, + 12.9901985768558 + ], + [ + 77.527436518143702, + 12.9902531189316 + ], + [ + 77.527337376260803, + 12.990284922839599 + ], + [ + 77.527110870291196, + 12.9903575842101 + ], + [ + 77.526730462960401, + 12.990463860227701 + ], + [ + 77.526658747177606, + 12.9904838958551 + ], + [ + 77.526396269961296, + 12.990561748300999 + ], + [ + 77.526128089517698, + 12.990654257972 + ], + [ + 77.526064688579496, + 12.9906761288622 + ], + [ + 77.525763492355296, + 12.9908006857908 + ], + [ + 77.525583554115201, + 12.990875096730701 + ], + [ + 77.525558555621998, + 12.990885434354301 + ], + [ + 77.525481962191904, + 12.9909216947876 + ], + [ + 77.525051671174197, + 12.9911253985972 + ], + [ + 77.524814509025106, + 12.991237672693901 + ], + [ + 77.524630596301904, + 12.9913247378755 + ], + [ + 77.524534509969797, + 12.991369626031799 + ], + [ + 77.524412155686093, + 12.9912399012508 + ], + [ + 77.524356950374397, + 12.9909357072713 + ], + [ + 77.524314884094593, + 12.990787566209301 + ], + [ + 77.524163383342398, + 12.990254035691301 + ], + [ + 77.523511152573803, + 12.9905377499579 + ], + [ + 77.523512960140494, + 12.990542122400299 + ], + [ + 77.523767836223598, + 12.991038653577601 + ], + [ + 77.523701139086, + 12.991072171090201 + ], + [ + 77.5232593930739, + 12.9913091737188 + ], + [ + 77.523206223463902, + 12.991258056425099 + ], + [ + 77.523013422176703, + 12.9913562645865 + ], + [ + 77.522965410039006, + 12.9913720864953 + ], + [ + 77.522515857072307, + 12.991592076382901 + ], + [ + 77.522508352760099, + 12.991581932721299 + ], + [ + 77.522308919120704, + 12.9912094008263 + ], + [ + 77.5222604420658, + 12.991164388335299 + ], + [ + 77.521614339773294, + 12.991493041127599 + ], + [ + 77.521519923756799, + 12.991457341460499 + ], + [ + 77.521542983040504, + 12.9915929225144 + ], + [ + 77.521545855100499, + 12.9916098090237 + ], + [ + 77.521572852590793, + 12.991768542773601 + ], + [ + 77.521575576481197, + 12.991784559420701 + ], + [ + 77.521637371722306, + 12.991973690230401 + ], + [ + 77.521699884565706, + 12.992116808847999 + ], + [ + 77.5217081057434, + 12.9921356298223 + ], + [ + 77.5217823058221, + 12.9921846007545 + ], + [ + 77.5221235258212, + 12.992217427441201 + ], + [ + 77.522159887772403, + 12.9922314062186 + ], + [ + 77.522218110005497, + 12.992253789178299 + ], + [ + 77.522245066544002, + 12.992264152306401 + ], + [ + 77.522246154244101, + 12.9922645708958 + ], + [ + 77.522271113061095, + 12.9922741661146 + ], + [ + 77.522290609184196, + 12.992281661241901 + ], + [ + 77.522309650336794, + 12.992288981520501 + ], + [ + 77.5223871255577, + 12.9923187666801 + ], + [ + 77.522439907580207, + 12.9923891473565 + ], + [ + 77.522442029393005, + 12.992391976322301 + ], + [ + 77.522868083946193, + 12.992960082576801 + ], + [ + 77.522926469490997, + 12.993038099081399 + ], + [ + 77.522926974740699, + 12.9930387735892 + ], + [ + 77.522963370004902, + 12.993087406642999 + ], + [ + 77.522975485879996, + 12.993103595828799 + ], + [ + 77.522975723211999, + 12.993105200812201 + ], + [ + 77.523004889507604, + 12.993302544438199 + ], + [ + 77.523014192331004, + 12.993365489781899 + ], + [ + 77.523034821312095, + 12.993505067485501 + ], + [ + 77.523034356371497, + 12.9935479601452 + ], + [ + 77.523032404079899, + 12.993727879827199 + ], + [ + 77.523031243473596, + 12.9938348720365 + ], + [ + 77.523038128826897, + 12.9939511833414 + ], + [ + 77.523045896688302, + 12.9940824021339 + ], + [ + 77.523046279995697, + 12.994088879966901 + ], + [ + 77.523047213054895, + 12.9941046311863 + ], + [ + 77.523105064993203, + 12.9942452376534 + ], + [ + 77.523197061785794, + 12.9943801664788 + ], + [ + 77.523202200943004, + 12.9943877039142 + ], + [ + 77.523219040864703, + 12.994412403114501 + ], + [ + 77.523334804845703, + 12.9945811746723 + ], + [ + 77.523340355629102, + 12.9945892673997 + ], + [ + 77.523357553142304, + 12.994614339861601 + ], + [ + 77.523473086585298, + 12.994878613954899 + ], + [ + 77.523542569744194, + 12.995144464847799 + ], + [ + 77.523548201097995, + 12.995170919983901 + ], + [ + 77.523549271829296, + 12.9951759482772 + ], + [ + 77.523572796500204, + 12.9952864689393 + ], + [ + 77.523585922155306, + 12.995350775279601 + ], + [ + 77.523590831820599, + 12.995374829121699 + ], + [ + 77.523609146282197, + 12.995464552646499 + ], + [ + 77.523633791695303, + 12.9955670837813 + ], + [ + 77.523638838436, + 12.995571245843401 + ], + [ + 77.523759383386306, + 12.995670667477899 + ], + [ + 77.523799660754605, + 12.9957038871844 + ], + [ + 77.523801606243694, + 12.995705491824699 + ], + [ + 77.523860929239405, + 12.995755558537301 + ], + [ + 77.5239516601833, + 12.9958321324815 + ], + [ + 77.523992104551695, + 12.995866266175099 + ], + [ + 77.524068847049406, + 12.9959206856294 + ], + [ + 77.524278040066704, + 12.9960690277133 + ], + [ + 77.524284013880902, + 12.996073780552701 + ], + [ + 77.524333323434305, + 12.9961130118214 + ], + [ + 77.524402848183598, + 12.996168326198701 + ], + [ + 77.5244417055317, + 12.9962260176308 + ], + [ + 77.524442523047497, + 12.9962272311842 + ], + [ + 77.524451470702104, + 12.9962405156347 + ], + [ + 77.524588754119094, + 12.99644433804 + ], + [ + 77.524693324316999, + 12.9966319944654 + ], + [ + 77.524696951084806, + 12.9966385021836 + ], + [ + 77.524709354377407, + 12.9966607607137 + ], + [ + 77.524728335619102, + 12.996694825166299 + ], + [ + 77.524756484490595, + 12.996794083928799 + ], + [ + 77.524787500013403, + 12.996903450969601 + ], + [ + 77.5247970053302, + 12.9969369669962 + ], + [ + 77.524826644068597, + 12.997183050175099 + ], + [ + 77.524829599951502, + 12.997207592098199 + ], + [ + 77.524830854141698, + 12.9972180024181 + ], + [ + 77.524839122763098, + 12.9972866549627 + ], + [ + 77.524848802390807, + 12.9973265832542 + ], + [ + 77.524917873799794, + 12.9976115010434 + ], + [ + 77.524920244969493, + 12.9976212820404 + ], + [ + 77.524933491268399, + 12.9976492694295 + ], + [ + 77.5249702598705, + 12.997726954205801 + ], + [ + 77.525088491031298, + 12.997859067179901 + ], + [ + 77.525185032180701, + 12.9979086623512 + ], + [ + 77.525207154251405, + 12.9979200270395 + ], + [ + 77.525237197641403, + 12.9979298989253 + ], + [ + 77.525305716439107, + 12.997929232426699 + ], + [ + 77.525321046812806, + 12.997923423920801 + ], + [ + 77.525470923391495, + 12.9978666406403 + ], + [ + 77.525573178219503, + 12.9978296631371 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "62", + "group": "SHANKARMUTT", + "Corporatio": "West", + "ac_no": "156", + "ac": "Mahalakshmi Layout", + "corporat_1": "5", + "ward_id": "41", + "ward_name": "41 - Shankar Mutt", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಹಾಲಕ್ಷ್ಮಿ ಲೇಔಟ್", + "ward_name_": "ಶಂಕರ್ ಮಠ", + "dig_ward_n": "SHANKARMUTT", + "Assembly": "156 - Mahalakshmi Layout", + "Slno": "41" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.525573178219503, + 12.9978296631371 + ], + [ + 77.525573622473999, + 12.9978295024852 + ], + [ + 77.525775001502396, + 12.9977563954206 + ], + [ + 77.525860897637898, + 12.997757737097 + ], + [ + 77.525908616688596, + 12.9977584825708 + ], + [ + 77.526126479460601, + 12.9977778203385 + ], + [ + 77.526189523844394, + 12.997806861696301 + ], + [ + 77.5261922710541, + 12.997808127247501 + ], + [ + 77.526222515058905, + 12.997822059685101 + ], + [ + 77.526249845251002, + 12.997848333363899 + ], + [ + 77.526277175448797, + 12.9978746070387 + ], + [ + 77.526301150740295, + 12.998024576713799 + ], + [ + 77.5262502060354, + 12.9981684993769 + ], + [ + 77.526214373811698, + 12.9982389280354 + ], + [ + 77.526204010331597, + 12.9982592974778 + ], + [ + 77.526148576718498, + 12.9983682531954 + ], + [ + 77.5261400428477, + 12.9983785003501 + ], + [ + 77.526103619363994, + 12.9984194588299 + ], + [ + 77.526090819116206, + 12.9984338528566 + ], + [ + 77.526047808006396, + 12.998482219332599 + ], + [ + 77.525993148182096, + 12.9985436848864 + ], + [ + 77.526259617507804, + 12.9986100497329 + ], + [ + 77.526323067130207, + 12.9986258520461 + ], + [ + 77.526359729416299, + 12.9986349826611 + ], + [ + 77.526681806315906, + 12.998715717737699 + ], + [ + 77.526685072462698, + 12.9987165361187 + ], + [ + 77.527062307390594, + 12.9988110981755 + ], + [ + 77.527071737751598, + 12.998813415943699 + ], + [ + 77.527115847996399, + 12.998824255592 + ], + [ + 77.527213027801807, + 12.998848137050199 + ], + [ + 77.527312660809102, + 12.9988726215971 + ], + [ + 77.5274414965414, + 12.998904281777699 + ], + [ + 77.527441615693803, + 12.9989043113357 + ], + [ + 77.527448268668707, + 12.9989059459984 + ], + [ + 77.527455171952198, + 12.998907642370501 + ], + [ + 77.527707700659306, + 12.9989696989305 + ], + [ + 77.527751525162202, + 12.998979976570901 + ], + [ + 77.527792326939107, + 12.9989895454981 + ], + [ + 77.527855955731098, + 12.999004467478599 + ], + [ + 77.528073994077502, + 12.9990556013041 + ], + [ + 77.528156192414102, + 12.9990748778045 + ], + [ + 77.528204683896703, + 12.9990868283192 + ], + [ + 77.528190542265904, + 12.9991022971221 + ], + [ + 77.5281667632986, + 12.9991283084772 + ], + [ + 77.528148224711401, + 12.9991485877946 + ], + [ + 77.528191476515502, + 12.999161071975699 + ], + [ + 77.528549881290104, + 12.9992366406271 + ], + [ + 77.528550523979803, + 12.9992220118564 + ], + [ + 77.528551032447496, + 12.9992722066902 + ], + [ + 77.5285628362045, + 12.999354561821599 + ], + [ + 77.528568215392994, + 12.999354509423799 + ], + [ + 77.528643273448594, + 12.999353778283799 + ], + [ + 77.533153801880104, + 13.0004286981563 + ], + [ + 77.533217318720403, + 13.000444254033701 + ], + [ + 77.533517028836997, + 13.0005173948361 + ], + [ + 77.533782442756802, + 13.0005821651062 + ], + [ + 77.534305097885195, + 13.0007154508416 + ], + [ + 77.534308184082505, + 13.0007162374463 + ], + [ + 77.5344736926438, + 13.000548768444601 + ], + [ + 77.534507465715194, + 13.0005137778949 + ], + [ + 77.534541019392293, + 13.0004572742205 + ], + [ + 77.534850489278597, + 13.000380172059399 + ], + [ + 77.535055296732295, + 13.000329145020601 + ], + [ + 77.535313026327401, + 13.0002632809102 + ], + [ + 77.536378431210395, + 12.9999427335145 + ], + [ + 77.536454790270199, + 12.999928253720901 + ], + [ + 77.536535300341697, + 12.999913449653199 + ], + [ + 77.536743119944802, + 12.9998752366009 + ], + [ + 77.536878446723193, + 13.000504994879799 + ], + [ + 77.537324081854806, + 13.000340992528001 + ], + [ + 77.537438382055598, + 13.0003064260342 + ], + [ + 77.537800783384498, + 13.000196827166 + ], + [ + 77.537744349281695, + 12.9995357419616 + ], + [ + 77.537679821685103, + 12.9988903165496 + ], + [ + 77.537787386026196, + 12.998302190309801 + ], + [ + 77.536615484234005, + 12.9981415701504 + ], + [ + 77.536615076101597, + 12.9981358596901 + ], + [ + 77.536872351139195, + 12.9973900332898 + ], + [ + 77.536884631012796, + 12.9973530165404 + ], + [ + 77.535708160754496, + 12.997114621543099 + ], + [ + 77.535579649012902, + 12.997062091240601 + ], + [ + 77.535381363083104, + 12.997040123650001 + ], + [ + 77.534480586529995, + 12.997035164183099 + ], + [ + 77.534215876423005, + 12.9970314482497 + ], + [ + 77.534215445641095, + 12.9965307321994 + ], + [ + 77.5344464001994, + 12.996525160280401 + ], + [ + 77.534729105568502, + 12.9965185760905 + ], + [ + 77.534678560123396, + 12.996149985216899 + ], + [ + 77.534618499724303, + 12.995760895820601 + ], + [ + 77.535523925090502, + 12.995681299888901 + ], + [ + 77.535515943272102, + 12.9956120373442 + ], + [ + 77.535532032682895, + 12.9952559987372 + ], + [ + 77.535471644621595, + 12.994899788054999 + ], + [ + 77.534781704082206, + 12.9949667850975 + ], + [ + 77.534322329313795, + 12.995063398712301 + ], + [ + 77.534273410137303, + 12.995073686960501 + ], + [ + 77.533489360491799, + 12.9952373232094 + ], + [ + 77.533544878527593, + 12.9966718650068 + ], + [ + 77.533553489872901, + 12.996786545915599 + ], + [ + 77.533106449033994, + 12.9968659443158 + ], + [ + 77.5327970792016, + 12.9970537123877 + ], + [ + 77.532609246404405, + 12.996891743775899 + ], + [ + 77.532555210785603, + 12.9968336408156 + ], + [ + 77.532516326100506, + 12.9967078528557 + ], + [ + 77.532405565682097, + 12.9967366526639 + ], + [ + 77.532031698512796, + 12.9968461661928 + ], + [ + 77.531400973034707, + 12.997029209420001 + ], + [ + 77.531269727096799, + 12.9970999077937 + ], + [ + 77.530943600075702, + 12.9959950818915 + ], + [ + 77.530333918005496, + 12.9961619583525 + ], + [ + 77.530283671906801, + 12.996176791650299 + ], + [ + 77.530081819108304, + 12.9953660122353 + ], + [ + 77.529810455173504, + 12.9944503772024 + ], + [ + 77.529596847212005, + 12.9945439057441 + ], + [ + 77.529636904643098, + 12.9947172284043 + ], + [ + 77.529158755634896, + 12.994883600764 + ], + [ + 77.529144556757203, + 12.994751319726801 + ], + [ + 77.529137047693894, + 12.9947117248916 + ], + [ + 77.529028490578, + 12.9942599202013 + ], + [ + 77.529028490578, + 12.9942599202013 + ], + [ + 77.528990506490103, + 12.994186214332 + ], + [ + 77.528082534737095, + 12.994563348046601 + ], + [ + 77.528139633629806, + 12.9949223705714 + ], + [ + 77.528174128785494, + 12.9950875053672 + ], + [ + 77.528250406418394, + 12.9954526576202 + ], + [ + 77.528366999156106, + 12.9960107998181 + ], + [ + 77.528485216015, + 12.996625707651299 + ], + [ + 77.528497067726406, + 12.9966873565116 + ], + [ + 77.528498067517006, + 12.996692556213301 + ], + [ + 77.528360563845993, + 12.99671518207 + ], + [ + 77.528361930584495, + 12.996710308966501 + ], + [ + 77.5282012165043, + 12.996744383741699 + ], + [ + 77.528058214277806, + 12.996758292970499 + ], + [ + 77.527350541749001, + 12.9969758958343 + ], + [ + 77.527295862771197, + 12.996695426279301 + ], + [ + 77.526821471431703, + 12.996810096968 + ], + [ + 77.526414345415404, + 12.996927606066199 + ], + [ + 77.526168212593106, + 12.9970022701345 + ], + [ + 77.525658307145207, + 12.9971381027792 + ], + [ + 77.525742146028705, + 12.9974213200279 + ], + [ + 77.525457669747794, + 12.9974924942005 + ], + [ + 77.5255196772966, + 12.997647470670501 + ], + [ + 77.5255357309521, + 12.9977019576988 + ], + [ + 77.5255687962715, + 12.997814189401501 + ], + [ + 77.525573178219503, + 12.9978296631371 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "63", + "group": "DR. PUNEETH RAJKUMAR", + "Corporatio": "West", + "ac_no": "156", + "ac": "Mahalakshmi Layout", + "corporat_1": "5", + "ward_id": "15", + "ward_name": "15 - Dr. Puneeth Rajkumar Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಹಾಲಕ್ಷ್ಮಿ ಲೇಔಟ್", + "ward_name_": "ಡಾ. ಪುನೀತ್ ರಾಜ್‌ಕುಮಾರ್ ವಾರ್ಡ್", + "dig_ward_n": "DR. PUNEETH RAJKUMAR", + "Assembly": "156 - Mahalakshmi Layout", + "Slno": "15" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.531682905291703, + 13.017977828679401 + ], + [ + 77.531609318083099, + 13.0179921256432 + ], + [ + 77.531650543516193, + 13.0181617802658 + ], + [ + 77.531651207030194, + 13.018164511306299 + ], + [ + 77.531671056460596, + 13.018246190998999 + ], + [ + 77.531689122369201, + 13.0182742923368 + ], + [ + 77.531689558641304, + 13.018274971101 + ], + [ + 77.531834295851297, + 13.018500114868001 + ], + [ + 77.531841327681704, + 13.0185110522839 + ], + [ + 77.531851756379197, + 13.0185611355828 + ], + [ + 77.531887082744106, + 13.018730779689999 + ], + [ + 77.531887332650896, + 13.0187319788667 + ], + [ + 77.531914456805296, + 13.018862236822301 + ], + [ + 77.531978152502504, + 13.0191681209904 + ], + [ + 77.531982398353406, + 13.0191910638402 + ], + [ + 77.531992432379596, + 13.019245280746199 + ], + [ + 77.532032979881507, + 13.0194643623615 + ], + [ + 77.532032984754295, + 13.0194643885145 + ], + [ + 77.532144648421095, + 13.0200677166624 + ], + [ + 77.532148033449204, + 13.0200860087091 + ], + [ + 77.532148719798997, + 13.020089716176001 + ], + [ + 77.532164539261899, + 13.020175192674399 + ], + [ + 77.532246926127101, + 13.0206203314298 + ], + [ + 77.532254182695297, + 13.020659540766401 + ], + [ + 77.532254870220797, + 13.0206637261573 + ], + [ + 77.532301349836601, + 13.0209468437494 + ], + [ + 77.532301445117795, + 13.020947424654199 + ], + [ + 77.532308593697195, + 13.020990965379299 + ], + [ + 77.532308626130003, + 13.020991164729599 + ], + [ + 77.532312947887405, + 13.0210174876094 + ], + [ + 77.532348535976297, + 13.021234257725199 + ], + [ + 77.5323745048116, + 13.021392435753601 + ], + [ + 77.532412987604005, + 13.0215112547193 + ], + [ + 77.532419360203704, + 13.0215309323979 + ], + [ + 77.532435490065694, + 13.021580734581701 + ], + [ + 77.532440499411706, + 13.021596201315401 + ], + [ + 77.532504193830405, + 13.021793667727 + ], + [ + 77.532519101360805, + 13.0218398845881 + ], + [ + 77.532528421316101, + 13.021868779585001 + ], + [ + 77.532535639628094, + 13.0218911594067 + ], + [ + 77.532547843953196, + 13.0219225324454 + ], + [ + 77.532598863017199, + 13.0220536886169 + ], + [ + 77.532614098043595, + 13.022092853379601 + ], + [ + 77.532634985034207, + 13.022146547649401 + ], + [ + 77.532794953705903, + 13.0220772239651 + ], + [ + 77.532815781337007, + 13.022067626866001 + ], + [ + 77.532842529724903, + 13.022055301556399 + ], + [ + 77.532905653216702, + 13.022033227187601 + ], + [ + 77.533094042297293, + 13.021971354770301 + ], + [ + 77.533128928840696, + 13.0219598965705 + ], + [ + 77.533158204448995, + 13.021950575710701 + ], + [ + 77.533402362474703, + 13.021912534522199 + ], + [ + 77.5335331107309, + 13.0218921624315 + ], + [ + 77.533622212132101, + 13.021878279592199 + ], + [ + 77.5338677554481, + 13.0218409327665 + ], + [ + 77.533899937033098, + 13.021836038430701 + ], + [ + 77.5341224967827, + 13.0218056279717 + ], + [ + 77.5341267690998, + 13.021805053149199 + ], + [ + 77.534128090458296, + 13.021804875797301 + ], + [ + 77.534330683636597, + 13.0217776174597 + ], + [ + 77.534784723834903, + 13.021715521245 + ], + [ + 77.534785344932899, + 13.0217154365684 + ], + [ + 77.534962130723699, + 13.021691258933201 + ], + [ + 77.534980910570596, + 13.021688486801899 + ], + [ + 77.534994907134006, + 13.021686420989299 + ], + [ + 77.535003105230402, + 13.0216839059498 + ], + [ + 77.5352268419458, + 13.0216152626948 + ], + [ + 77.535272644133798, + 13.021588839894401 + ], + [ + 77.535367998794896, + 13.0215346493626 + ], + [ + 77.535402619072798, + 13.0215149746268 + ], + [ + 77.535563805291901, + 13.0214233724185 + ], + [ + 77.535606819040893, + 13.021398927441499 + ], + [ + 77.535626496412704, + 13.021387744222199 + ], + [ + 77.535639683501898, + 13.0213801118918 + ], + [ + 77.535639831892894, + 13.021380025513899 + ], + [ + 77.535641430361906, + 13.0213791009849 + ], + [ + 77.535683470331307, + 13.0213547640031 + ], + [ + 77.535683505157905, + 13.0213547455929 + ], + [ + 77.535686037984604, + 13.0213532815857 + ], + [ + 77.535880442466507, + 13.0212544770076 + ], + [ + 77.535884587682204, + 13.0212523702147 + ], + [ + 77.535922263127404, + 13.021233222066799 + ], + [ + 77.536034948409494, + 13.021175949881799 + ], + [ + 77.536659660390697, + 13.020824260428199 + ], + [ + 77.536690419579003, + 13.0208070166317 + ], + [ + 77.536697302896698, + 13.0208031574044 + ], + [ + 77.536826019068698, + 13.020731000596101 + ], + [ + 77.536850342014702, + 13.020717364991601 + ], + [ + 77.536901303285802, + 13.020688632792099 + ], + [ + 77.536930850273706, + 13.020671698656599 + ], + [ + 77.536942297464805, + 13.0206651379769 + ], + [ + 77.537018161077796, + 13.0206216712774 + ], + [ + 77.537018152500707, + 13.020621643353801 + ], + [ + 77.537376515141901, + 13.020416328488601 + ], + [ + 77.537543117923903, + 13.020316514848901 + ], + [ + 77.5375560219302, + 13.0203087840233 + ], + [ + 77.537746365528307, + 13.020194747644799 + ], + [ + 77.537746719042701, + 13.020194536385899 + ], + [ + 77.537913014705794, + 13.020094907161999 + ], + [ + 77.5379131740589, + 13.020094811641 + ], + [ + 77.538033554695005, + 13.0200226898931 + ], + [ + 77.538045326705202, + 13.020015636892101 + ], + [ + 77.538051898662104, + 13.0200116993727 + ], + [ + 77.5380759784411, + 13.019997272812301 + ], + [ + 77.538086272444005, + 13.0199911187777 + ], + [ + 77.538107154444106, + 13.019978636169601 + ], + [ + 77.538109439458196, + 13.019977270337501 + ], + [ + 77.538219606367406, + 13.0199114156076 + ], + [ + 77.5382488416992, + 13.019893939938701 + ], + [ + 77.538380972570295, + 13.019814821282599 + ], + [ + 77.538384650526197, + 13.019812618748301 + ], + [ + 77.538391822629194, + 13.0198083237118 + ], + [ + 77.538397866804999, + 13.019804704137901 + ], + [ + 77.538638067688197, + 13.0196608731938 + ], + [ + 77.538756166833295, + 13.0195973798045 + ], + [ + 77.539082658687207, + 13.019421848278601 + ], + [ + 77.539196493601395, + 13.019360647186099 + ], + [ + 77.539313663361497, + 13.0192987547561 + ], + [ + 77.539357689070798, + 13.019275499170501 + ], + [ + 77.539365632173102, + 13.0192713033525 + ], + [ + 77.539484038168894, + 13.019208758190601 + ], + [ + 77.539694789241196, + 13.0190968173524 + ], + [ + 77.539722314754101, + 13.019082196995999 + ], + [ + 77.539788341864096, + 13.0190477396273 + ], + [ + 77.539803247446699, + 13.019039960190099 + ], + [ + 77.539806816427799, + 13.019038097507501 + ], + [ + 77.539807866287305, + 13.019037549731401 + ], + [ + 77.539801121876195, + 13.019027594963401 + ], + [ + 77.5397797435797, + 13.0190218297992 + ], + [ + 77.539790664280503, + 13.019012172250999 + ], + [ + 77.539898656728099, + 13.0189166720324 + ], + [ + 77.541250153157193, + 13.0181683708051 + ], + [ + 77.541257231553104, + 13.018159712164501 + ], + [ + 77.541277241822897, + 13.018135236258599 + ], + [ + 77.541653460656605, + 13.017973183004401 + ], + [ + 77.541674885409904, + 13.017976102553 + ], + [ + 77.542031274443701, + 13.018024663085299 + ], + [ + 77.542468724220598, + 13.0180842689205 + ], + [ + 77.542756411121204, + 13.0181234683107 + ], + [ + 77.542758138386404, + 13.018123703435201 + ], + [ + 77.542791396358794, + 13.018113310806999 + ], + [ + 77.542837118033404, + 13.0180990239521 + ], + [ + 77.542894524541893, + 13.018050652187799 + ], + [ + 77.542936634359606, + 13.017996454948101 + ], + [ + 77.542997605073495, + 13.0178599694102 + ], + [ + 77.543017075551404, + 13.017816384090899 + ], + [ + 77.543072988244802, + 13.017621614147499 + ], + [ + 77.543102769372098, + 13.017589336638 + ], + [ + 77.542969457595802, + 13.0175098809073 + ], + [ + 77.542898253518999, + 13.0174603810237 + ], + [ + 77.542812619691603, + 13.0174301453909 + ], + [ + 77.542739490852796, + 13.0174308626616 + ], + [ + 77.542663566085594, + 13.017444276625801 + ], + [ + 77.542567693718297, + 13.017485853876 + ], + [ + 77.542512701008306, + 13.017472050702899 + ], + [ + 77.542393609391794, + 13.017268837620801 + ], + [ + 77.542303770416098, + 13.017065337590701 + ], + [ + 77.542251666563899, + 13.0169762075899 + ], + [ + 77.542169944686606, + 13.016851511256601 + ], + [ + 77.542170164084197, + 13.016873023329399 + ], + [ + 77.541990569476994, + 13.016949894814999 + ], + [ + 77.5415822734995, + 13.017124656476501 + ], + [ + 77.541302391875604, + 13.016526566302201 + ], + [ + 77.541105057557601, + 13.0166161032893 + ], + [ + 77.540905956631207, + 13.0167064416725 + ], + [ + 77.540783345144504, + 13.0167419863243 + ], + [ + 77.540588354373398, + 13.016383192242399 + ], + [ + 77.540435178690203, + 13.0160441820295 + ], + [ + 77.540519994446399, + 13.015991680806801 + ], + [ + 77.5405698160816, + 13.0159608406606 + ], + [ + 77.540484382914798, + 13.015814881624699 + ], + [ + 77.540427402227607, + 13.0156777516133 + ], + [ + 77.540332264002203, + 13.015384660447801 + ], + [ + 77.540206588825001, + 13.014965654951901 + ], + [ + 77.540188395088904, + 13.014902726028399 + ], + [ + 77.540189770439298, + 13.014894107032701 + ], + [ + 77.540329851737496, + 13.014799310415601 + ], + [ + 77.540546072148501, + 13.0147374737662 + ], + [ + 77.540582114230602, + 13.014727166234699 + ], + [ + 77.540760620771195, + 13.014660876237301 + ], + [ + 77.540507272574203, + 13.014082906339199 + ], + [ + 77.540533467635299, + 13.014019484375501 + ], + [ + 77.541004397863503, + 13.013789800887301 + ], + [ + 77.541023054596707, + 13.0138632560034 + ], + [ + 77.541208041521102, + 13.0143132332958 + ], + [ + 77.5412485081943, + 13.014407709705001 + ], + [ + 77.541380354075201, + 13.014715526735801 + ], + [ + 77.541450147071998, + 13.0148814174348 + ], + [ + 77.541659264061195, + 13.014662496521201 + ], + [ + 77.542022785089998, + 13.014450966040799 + ], + [ + 77.542073706150504, + 13.0144241723746 + ], + [ + 77.542365609672999, + 13.0143615499045 + ], + [ + 77.5426652884818, + 13.014344268994201 + ], + [ + 77.542689737290402, + 13.0143512009624 + ], + [ + 77.542726589190494, + 13.0143312380134 + ], + [ + 77.543715324178905, + 13.014325842938799 + ], + [ + 77.544083604049405, + 13.014338403757799 + ], + [ + 77.5440631307779, + 13.0143131187957 + ], + [ + 77.543996217315097, + 13.013875314922799 + ], + [ + 77.543950564615102, + 13.013576612130199 + ], + [ + 77.543911104428403, + 13.0133184285739 + ], + [ + 77.543880274314404, + 13.013116713608801 + ], + [ + 77.543872859274103, + 13.0130956064254 + ], + [ + 77.543867720755202, + 13.013080980048599 + ], + [ + 77.543928871707905, + 13.012503691487099 + ], + [ + 77.5439899181915, + 13.0122197735272 + ], + [ + 77.543389230280297, + 13.0120904931313 + ], + [ + 77.543210410992003, + 13.0120200625877 + ], + [ + 77.543016457219693, + 13.0119436710707 + ], + [ + 77.542951144114696, + 13.0119194408911 + ], + [ + 77.542865978491307, + 13.011887845145299 + ], + [ + 77.542789685061507, + 13.0118811179017 + ], + [ + 77.542695707785001, + 13.011884530137401 + ], + [ + 77.542510676998305, + 13.0119287004083 + ], + [ + 77.542389032708897, + 13.01195978859 + ], + [ + 77.542341092010304, + 13.0119926486955 + ], + [ + 77.542288425962596, + 13.0120604343122 + ], + [ + 77.542195566087202, + 13.012173459249899 + ], + [ + 77.542128746393303, + 13.012269781323401 + ], + [ + 77.541742326799294, + 13.0124825233249 + ], + [ + 77.541632876401707, + 13.0125139542772 + ], + [ + 77.541480464161793, + 13.012557722932 + ], + [ + 77.5413707602508, + 13.0125651927303 + ], + [ + 77.541325993891803, + 13.0125607599233 + ], + [ + 77.541322475261794, + 13.0125604113337 + ], + [ + 77.541226826857397, + 13.012536492436601 + ], + [ + 77.541120762363406, + 13.0125115923067 + ], + [ + 77.541042408037697, + 13.0124924349987 + ], + [ + 77.540955021003001, + 13.012471068650401 + ], + [ + 77.5407794270849, + 13.0124371219711 + ], + [ + 77.540686853899302, + 13.012438028904199 + ], + [ + 77.540636911619899, + 13.0124385181715 + ], + [ + 77.540630645917702, + 13.012438579553701 + ], + [ + 77.540521076637603, + 13.012472741498 + ], + [ + 77.540466263790407, + 13.0124955561314 + ], + [ + 77.5404096407146, + 13.012519123909399 + ], + [ + 77.540368507699995, + 13.012534710499001 + ], + [ + 77.540245872473605, + 13.0125563301079 + ], + [ + 77.540216523824597, + 13.0125615044331 + ], + [ + 77.540176452806406, + 13.0125518241728 + ], + [ + 77.540066104423701, + 13.0125251667501 + ], + [ + 77.540059190609796, + 13.0125241060364 + ], + [ + 77.539946881795998, + 13.012506880984001 + ], + [ + 77.539873140608904, + 13.012484441905199 + ], + [ + 77.539795768686503, + 13.012879180562701 + ], + [ + 77.539771763331004, + 13.0129931061721 + ], + [ + 77.539839607844101, + 13.0130425345035 + ], + [ + 77.539976894727801, + 13.0135261791053 + ], + [ + 77.539831103497406, + 13.0135754229141 + ], + [ + 77.539667990869901, + 13.0136339440733 + ], + [ + 77.539862720034705, + 13.014216319197001 + ], + [ + 77.539869105318203, + 13.0142285338689 + ], + [ + 77.539885097214196, + 13.0142591276364 + ], + [ + 77.539881248752593, + 13.014425553597199 + ], + [ + 77.539604689716398, + 13.014507392495601 + ], + [ + 77.538974369039906, + 13.015098649200199 + ], + [ + 77.538965583573102, + 13.0150756724091 + ], + [ + 77.538855433311497, + 13.0147075832217 + ], + [ + 77.538776955450103, + 13.014502367278 + ], + [ + 77.5387690106419, + 13.014471262917001 + ], + [ + 77.538486063773504, + 13.014695775106 + ], + [ + 77.5381859852791, + 13.0148808235109 + ], + [ + 77.538054603328007, + 13.014886666494499 + ], + [ + 77.537588296023003, + 13.015059755316599 + ], + [ + 77.537245905486898, + 13.0151921899339 + ], + [ + 77.537026920405495, + 13.0152337745326 + ], + [ + 77.5367230895761, + 13.0152598055471 + ], + [ + 77.536729337867001, + 13.0153471243287 + ], + [ + 77.536813946584203, + 13.0156121124758 + ], + [ + 77.536846319607704, + 13.015754055051501 + ], + [ + 77.536945897805793, + 13.015779944478799 + ], + [ + 77.537193440512397, + 13.0159572827025 + ], + [ + 77.537182070776097, + 13.015989904381399 + ], + [ + 77.537248685862394, + 13.0160198493674 + ], + [ + 77.537513834399107, + 13.0163939863981 + ], + [ + 77.537521375566598, + 13.0164223591989 + ], + [ + 77.537530057807203, + 13.0164550231479 + ], + [ + 77.5375438958404, + 13.0168564803372 + ], + [ + 77.5375673749692, + 13.0168638992929 + ], + [ + 77.537568114697507, + 13.016936561631301 + ], + [ + 77.537546543264995, + 13.017116533170199 + ], + [ + 77.537352330232693, + 13.0171968406485 + ], + [ + 77.537262739642699, + 13.017252527299901 + ], + [ + 77.537255428489701, + 13.0172570710229 + ], + [ + 77.537213832522497, + 13.017306398600599 + ], + [ + 77.537181420594294, + 13.0173793844987 + ], + [ + 77.537198307322797, + 13.017470279835599 + ], + [ + 77.537204117227901, + 13.0175015525563 + ], + [ + 77.537263393547505, + 13.017621650683299 + ], + [ + 77.537141809824504, + 13.017625986865999 + ], + [ + 77.536648082995399, + 13.0177365705156 + ], + [ + 77.536336455090407, + 13.0178452747598 + ], + [ + 77.536029194712199, + 13.017916515075999 + ], + [ + 77.5358011948002, + 13.0179732991056 + ], + [ + 77.535654332583903, + 13.017575604107099 + ], + [ + 77.535591226229201, + 13.017411281210499 + ], + [ + 77.535576075180501, + 13.0173597961053 + ], + [ + 77.535548427024196, + 13.017335564418101 + ], + [ + 77.534323716911004, + 13.017727619672 + ], + [ + 77.534035328885807, + 13.0177770515162 + ], + [ + 77.533815977002504, + 13.017782781419101 + ], + [ + 77.533739830771097, + 13.017786659797901 + ], + [ + 77.533684434948398, + 13.0177894815724 + ], + [ + 77.533293318344107, + 13.017809403690899 + ], + [ + 77.532358023652606, + 13.017893840603101 + ], + [ + 77.5321060542054, + 13.0179285729287 + ], + [ + 77.531682905291703, + 13.017977828679401 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "70", + "group": "tilak nagara", + "Corporatio": "South", + "ac_no": "173", + "ac": "Jayanagar", + "corporat_1": "4", + "ward_id": "11", + "ward_name": "11 - Tilak Nagara", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಜಯನಗರ", + "ward_name_": "ತಿಲಕ್ ನಗರ", + "dig_ward_n": "tilak nagara", + "Assembly": "173 - Jayanagar", + "Slno": "11" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.588557072601802, + 12.9232944742004 + ], + [ + 77.588074402233701, + 12.923295458278799 + ], + [ + 77.588077086025905, + 12.923555867600699 + ], + [ + 77.588086697644897, + 12.9239406536421 + ], + [ + 77.588087042782504, + 12.9239544810022 + ], + [ + 77.588105993289105, + 12.9243745179404 + ], + [ + 77.588131679780503, + 12.9250225292613 + ], + [ + 77.588153407628099, + 12.925469989655401 + ], + [ + 77.588159522923903, + 12.925595939169799 + ], + [ + 77.588167545899097, + 12.926243067658101 + ], + [ + 77.587293701727702, + 12.926266923956099 + ], + [ + 77.586030184557501, + 12.926292595872701 + ], + [ + 77.585707175549999, + 12.9263047607836 + ], + [ + 77.585454445294204, + 12.926309514583901 + ], + [ + 77.5837803203368, + 12.9263409982102 + ], + [ + 77.583778156274505, + 12.9263459569594 + ], + [ + 77.582410066433596, + 12.926358584546101 + ], + [ + 77.582358924834907, + 12.9263611392642 + ], + [ + 77.581790977852293, + 12.9263729050995 + ], + [ + 77.581767302669206, + 12.9287264926924 + ], + [ + 77.582317804823603, + 12.928712012992699 + ], + [ + 77.582336995163203, + 12.9287115077459 + ], + [ + 77.583159286102997, + 12.928694403472001 + ], + [ + 77.583596523824397, + 12.9287072772459 + ], + [ + 77.583831842838805, + 12.928687362510701 + ], + [ + 77.583833766896106, + 12.928706634475899 + ], + [ + 77.583876795781194, + 12.9307793324288 + ], + [ + 77.583877493616598, + 12.9308129390402 + ], + [ + 77.585221585941099, + 12.9307635329181 + ], + [ + 77.585224846152499, + 12.9307634129738 + ], + [ + 77.586116532140906, + 12.930740232242799 + ], + [ + 77.586594408346301, + 12.930742963838 + ], + [ + 77.587081531354201, + 12.9307532031383 + ], + [ + 77.587080186565899, + 12.930733629862299 + ], + [ + 77.587078265127005, + 12.9305472277814 + ], + [ + 77.587032537413194, + 12.929859357046301 + ], + [ + 77.587758855345996, + 12.9297999143364 + ], + [ + 77.587577420501006, + 12.929217867794801 + ], + [ + 77.587388792884596, + 12.928545754604899 + ], + [ + 77.587346361672701, + 12.928480759716599 + ], + [ + 77.587357376857, + 12.9284443438744 + ], + [ + 77.587365227969997, + 12.928399411046801 + ], + [ + 77.587429586500605, + 12.928267678014199 + ], + [ + 77.587491237781904, + 12.928172109483199 + ], + [ + 77.587538975186405, + 12.9281074004617 + ], + [ + 77.587643335294004, + 12.928011408343099 + ], + [ + 77.587747925609804, + 12.9279377560161 + ], + [ + 77.587863929388007, + 12.9278667838931 + ], + [ + 77.587983042552196, + 12.927820919137799 + ], + [ + 77.588133498399998, + 12.9277775323549 + ], + [ + 77.588278520056903, + 12.927759337646499 + ], + [ + 77.588475018926303, + 12.9277629733579 + ], + [ + 77.588705622637406, + 12.927760685472601 + ], + [ + 77.588833706493304, + 12.927756622996601 + ], + [ + 77.588909608745496, + 12.927743081666099 + ], + [ + 77.589043912902, + 12.9278358901758 + ], + [ + 77.589433863765606, + 12.9285879466356 + ], + [ + 77.590281821007295, + 12.9285907962807 + ], + [ + 77.590318262356107, + 12.928681596255601 + ], + [ + 77.590345285342906, + 12.9287704411545 + ], + [ + 77.590470459760198, + 12.9289597161498 + ], + [ + 77.590617643567697, + 12.929055562151399 + ], + [ + 77.5906399616279, + 12.929093239239601 + ], + [ + 77.590733365832605, + 12.9291384047213 + ], + [ + 77.590775617735105, + 12.929185102440901 + ], + [ + 77.590833983908894, + 12.9291742799186 + ], + [ + 77.590889082676796, + 12.929251578709801 + ], + [ + 77.590905262811106, + 12.929301608192899 + ], + [ + 77.590251413406705, + 12.929624140656699 + ], + [ + 77.589477422803, + 12.9300266421549 + ], + [ + 77.589824565709804, + 12.930601663800299 + ], + [ + 77.589077066919501, + 12.9309886249585 + ], + [ + 77.588804427365204, + 12.931017624619299 + ], + [ + 77.588470945264206, + 12.931258751225901 + ], + [ + 77.588471625941096, + 12.931259646105101 + ], + [ + 77.588908668972294, + 12.931808151059901 + ], + [ + 77.589482695385001, + 12.932587059146099 + ], + [ + 77.5901396791959, + 12.932315272107299 + ], + [ + 77.590334728808102, + 12.933070716318699 + ], + [ + 77.590387162891403, + 12.9332737946304 + ], + [ + 77.590425339207698, + 12.9334697463594 + ], + [ + 77.590646137185303, + 12.9334454695449 + ], + [ + 77.590801206957906, + 12.933611057977 + ], + [ + 77.591005346232507, + 12.933716791439499 + ], + [ + 77.591061252023195, + 12.933820814485401 + ], + [ + 77.591117683277602, + 12.933975626328399 + ], + [ + 77.5911578225722, + 12.9343060171046 + ], + [ + 77.592628530202404, + 12.934304778782501 + ], + [ + 77.592685102263601, + 12.9342757149201 + ], + [ + 77.592635905649203, + 12.9331787535272 + ], + [ + 77.592613043684395, + 12.932668976560899 + ], + [ + 77.592583968161705, + 12.9316139814098 + ], + [ + 77.592583962471494, + 12.931613787227301 + ], + [ + 77.592578972469497, + 12.931432734552599 + ], + [ + 77.592570490905103, + 12.931113227663801 + ], + [ + 77.5925593583965, + 12.9307965477698 + ], + [ + 77.592550925996207, + 12.930556678434799 + ], + [ + 77.592543778465995, + 12.930310562601001 + ], + [ + 77.592541794312595, + 12.9300635489247 + ], + [ + 77.5925417646894, + 12.9300598785502 + ], + [ + 77.592537090522498, + 12.9298860131716 + ], + [ + 77.592528936021395, + 12.929598123316101 + ], + [ + 77.592520844376594, + 12.929305075099 + ], + [ + 77.592519739495998, + 12.929265071900399 + ], + [ + 77.592513179536994, + 12.929020079493201 + ], + [ + 77.592509803792694, + 12.9288931691366 + ], + [ + 77.592507533437896, + 12.9288078276322 + ], + [ + 77.592507021757399, + 12.9287895389479 + ], + [ + 77.592506183177406, + 12.9289723685665 + ], + [ + 77.592507021757399, + 12.9287895389479 + ], + [ + 77.592499320938998, + 12.928514291832199 + ], + [ + 77.592498337176394, + 12.928474776186899 + ], + [ + 77.592878191842502, + 12.9284676134387 + ], + [ + 77.593561347322193, + 12.9284540473201 + ], + [ + 77.593623355040904, + 12.9284528617303 + ], + [ + 77.594174329163806, + 12.9284423272635 + ], + [ + 77.5941765944699, + 12.9284422839598 + ], + [ + 77.594727950856395, + 12.928431154583199 + ], + [ + 77.594843068879101, + 12.9284287773719 + ], + [ + 77.595361028936296, + 12.9284180818085 + ], + [ + 77.595432977564201, + 12.9284173660643 + ], + [ + 77.595929640708803, + 12.928405648953801 + ], + [ + 77.596426879209005, + 12.928393925177099 + ], + [ + 77.596634054850597, + 12.9283889867596 + ], + [ + 77.597082557498894, + 12.9283782956742 + ], + [ + 77.597079140628793, + 12.9282353137732 + ], + [ + 77.597070282111503, + 12.9276617187542 + ], + [ + 77.597068091503701, + 12.9273557768404 + ], + [ + 77.597061993836306, + 12.926942894418101 + ], + [ + 77.596476412941897, + 12.9269629675463 + ], + [ + 77.596216623195502, + 12.926971873016701 + ], + [ + 77.595350027552598, + 12.926994077361799 + ], + [ + 77.594372265261896, + 12.927019126020999 + ], + [ + 77.593572097159296, + 12.9270337915559 + ], + [ + 77.593574810641599, + 12.9269661359574 + ], + [ + 77.593560927596897, + 12.926471472019299 + ], + [ + 77.5935540821567, + 12.9262388262713 + ], + [ + 77.593538397076102, + 12.9257058274698 + ], + [ + 77.593527157174094, + 12.925183886806201 + ], + [ + 77.593508593294302, + 12.924660584243499 + ], + [ + 77.593496663244096, + 12.924196347534901 + ], + [ + 77.593484961657296, + 12.923741012817599 + ], + [ + 77.593471231998194, + 12.923237679607 + ], + [ + 77.593455772636304, + 12.923238120516 + ], + [ + 77.593455547593805, + 12.923188217515699 + ], + [ + 77.592902590528496, + 12.923208803796101 + ], + [ + 77.592355731484304, + 12.9232207569992 + ], + [ + 77.591515445841296, + 12.9232421265772 + ], + [ + 77.590604886933306, + 12.923259554622 + ], + [ + 77.589581563633601, + 12.923275446764899 + ], + [ + 77.589574073653793, + 12.9232762284734 + ], + [ + 77.588557072601802, + 12.9232944742004 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "64", + "group": "KETHAMARANAHALLI", + "Corporatio": "West", + "ac_no": "156", + "ac": "Mahalakshmi Layout", + "corporat_1": "5", + "ward_id": "34", + "ward_name": "34 - Kethamaranahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಹಾಲಕ್ಷ್ಮಿ ಲೇಔಟ್", + "ward_name_": "ಕೇತಮಾರನಹಳ್ಳಿ", + "dig_ward_n": "KETHAMARANAHALLI", + "Assembly": "156 - Mahalakshmi Layout", + "Slno": "34" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.554041839022503, + 13.0140259038743 + ], + [ + 77.5540744815236, + 13.014025579738499 + ], + [ + 77.554074804293506, + 13.0140139434313 + ], + [ + 77.554068647656393, + 13.013908928913301 + ], + [ + 77.554067128568505, + 13.013883017607199 + ], + [ + 77.554094690004106, + 13.013706571807001 + ], + [ + 77.554121437867707, + 13.01361935051 + ], + [ + 77.554228237728196, + 13.0133642009824 + ], + [ + 77.554294001304299, + 13.013263043513099 + ], + [ + 77.554340335317207, + 13.0131202924872 + ], + [ + 77.554366000872307, + 13.0130398577835 + ], + [ + 77.554379997869205, + 13.012760009694601 + ], + [ + 77.554394200638697, + 13.0124760480983 + ], + [ + 77.554394660759698, + 13.0124647503413 + ], + [ + 77.554457466721502, + 13.012412182875201 + ], + [ + 77.554457231303701, + 13.012389203030599 + ], + [ + 77.554456692605996, + 13.0123366189524 + ], + [ + 77.554456680362193, + 13.012335423798101 + ], + [ + 77.554455245642004, + 13.0121953748416 + ], + [ + 77.554455647165994, + 13.012121964926401 + ], + [ + 77.554456750469598, + 13.011922697305501 + ], + [ + 77.554457271502798, + 13.011828662976599 + ], + [ + 77.554458316201007, + 13.0116403097024 + ], + [ + 77.554459054781901, + 13.0115071580151 + ], + [ + 77.5544590904247, + 13.0115006536699 + ], + [ + 77.554461105026405, + 13.0111371419504 + ], + [ + 77.554461203112695, + 13.010986071960399 + ], + [ + 77.554461206742303, + 13.0109807595914 + ], + [ + 77.554461531025197, + 13.010479468182799 + ], + [ + 77.554461859016499, + 13.009973932276299 + ], + [ + 77.554463146894307, + 13.0099310053336 + ], + [ + 77.554464017403106, + 13.009895635410899 + ], + [ + 77.554464979607403, + 13.009856534206699 + ], + [ + 77.554491609380406, + 13.008774298651501 + ], + [ + 77.554492011936404, + 13.0086552713051 + ], + [ + 77.554492053349804, + 13.0086430317498 + ], + [ + 77.5544926099207, + 13.0084784062563 + ], + [ + 77.554493080993396, + 13.0081870363608 + ], + [ + 77.554493064565904, + 13.0080729749284 + ], + [ + 77.554454125190205, + 13.007700681853301 + ], + [ + 77.554432801255103, + 13.007498600294801 + ], + [ + 77.5544273401933, + 13.0074468479638 + ], + [ + 77.554421168980994, + 13.0073608362597 + ], + [ + 77.554397784890597, + 13.0070349361342 + ], + [ + 77.554373994718105, + 13.0067923659487 + ], + [ + 77.554360253185806, + 13.0066927124639 + ], + [ + 77.554287531723105, + 13.0061653136414 + ], + [ + 77.554257678739404, + 13.006061709820999 + ], + [ + 77.554238495788994, + 13.0059946262522 + ], + [ + 77.554229627216898, + 13.005963613809501 + ], + [ + 77.554116315216604, + 13.0055673562357 + ], + [ + 77.553950344204495, + 13.0049869443265 + ], + [ + 77.553911927144696, + 13.0048525959812 + ], + [ + 77.553845140797804, + 13.004619037056401 + ], + [ + 77.553802706771904, + 13.004470641477401 + ], + [ + 77.553793636708605, + 13.004438922669101 + ], + [ + 77.553783490119301, + 13.004404014403701 + ], + [ + 77.553780635997398, + 13.00439269234 + ], + [ + 77.553779728512396, + 13.004389095566999 + ], + [ + 77.553701070345795, + 13.0040770514216 + ], + [ + 77.553625034783906, + 13.0037754103159 + ], + [ + 77.553569818289404, + 13.0035541680453 + ], + [ + 77.5534614224796, + 13.0031198468957 + ], + [ + 77.553453143850106, + 13.003086675638 + ], + [ + 77.553434689163694, + 13.003012731112401 + ], + [ + 77.553307031398703, + 13.0023386893335 + ], + [ + 77.553299552391096, + 13.002299198627799 + ], + [ + 77.553255533775797, + 13.0020136615352 + ], + [ + 77.553243234898304, + 13.001933879687 + ], + [ + 77.553235408343099, + 13.001883109090301 + ], + [ + 77.553232169372805, + 13.001862620683299 + ], + [ + 77.553231389146106, + 13.0018576819192 + ], + [ + 77.553228635782901, + 13.0018402613999 + ], + [ + 77.553163714312504, + 13.001438651955199 + ], + [ + 77.553161014354998, + 13.001421947351 + ], + [ + 77.553067693829703, + 13.0010470641624 + ], + [ + 77.553062963787497, + 13.001028068474699 + ], + [ + 77.553060884632103, + 13.0010197210849 + ], + [ + 77.553054723943504, + 13.0009949790118 + ], + [ + 77.552888041840504, + 13.0004059818191 + ], + [ + 77.5528770722171, + 13.0003425430705 + ], + [ + 77.552867146447397, + 13.000285137295201 + ], + [ + 77.552866988795799, + 13.0002842263515 + ], + [ + 77.552861724330299, + 13.0002537818488 + ], + [ + 77.552855542493901, + 13.0002189501337 + ], + [ + 77.552845588801404, + 13.000162866391401 + ], + [ + 77.552748681028703, + 12.9996168251987 + ], + [ + 77.552740767482703, + 12.9995713063129 + ], + [ + 77.552729269114195, + 12.9995051632658 + ], + [ + 77.552703406213496, + 12.9993563964311 + ], + [ + 77.552710440790094, + 12.999309037751001 + ], + [ + 77.5527346529678, + 12.9991460347473 + ], + [ + 77.552844257267907, + 12.9987711504094 + ], + [ + 77.5529844270295, + 12.998420216145799 + ], + [ + 77.553073250929501, + 12.998197834455899 + ], + [ + 77.553078382427401, + 12.9981849871024 + ], + [ + 77.553054741268298, + 12.998181831630699 + ], + [ + 77.552462513109205, + 12.9980419732454 + ], + [ + 77.552378818837298, + 12.998022467375201 + ], + [ + 77.551114060066993, + 12.997741797541201 + ], + [ + 77.551106816790096, + 12.9977401900888 + ], + [ + 77.551085089723301, + 12.997735367703299 + ], + [ + 77.551038711152202, + 12.9977250758746 + ], + [ + 77.551038596652106, + 12.9977250507993 + ], + [ + 77.550887679030694, + 12.9976918254818 + ], + [ + 77.550886539556501, + 12.9976915746744 + ], + [ + 77.550469088383295, + 12.9975996707473 + ], + [ + 77.550328737804094, + 12.99759001376 + ], + [ + 77.550282134991704, + 12.9975868080294 + ], + [ + 77.550267983678694, + 12.9975858348829 + ], + [ + 77.550094538935099, + 12.997573986720701 + ], + [ + 77.549595554241193, + 12.9975427491602 + ], + [ + 77.549355285703697, + 12.9975281687622 + ], + [ + 77.549269224092896, + 12.997524022232099 + ], + [ + 77.549257923124301, + 12.9975234781919 + ], + [ + 77.548960676505203, + 12.9975117155644 + ], + [ + 77.548928762120795, + 12.997510384606599 + ], + [ + 77.548924308393396, + 12.9975101988547 + ], + [ + 77.548434144806805, + 12.9974897500895 + ], + [ + 77.548434093190195, + 12.997489747885799 + ], + [ + 77.548427434716501, + 12.997489469931301 + ], + [ + 77.548412831979306, + 12.997488860690501 + ], + [ + 77.547365123795203, + 12.997447987178701 + ], + [ + 77.547186984087304, + 12.9974410364997 + ], + [ + 77.547029332710295, + 12.997434442126901 + ], + [ + 77.547028500395996, + 12.9974344069264 + ], + [ + 77.546882559797595, + 12.9974283021379 + ], + [ + 77.546858233261304, + 12.9974272845353 + ], + [ + 77.546732484536903, + 12.9974220243072 + ], + [ + 77.546641017025607, + 12.997418198247701 + ], + [ + 77.546618399930097, + 12.997417251926001 + ], + [ + 77.546587090438607, + 12.997417960183601 + ], + [ + 77.546410786997399, + 12.997421950871299 + ], + [ + 77.546407821939397, + 12.9974220178993 + ], + [ + 77.546393921446295, + 12.997422332223 + ], + [ + 77.546372669211905, + 12.997422803624801 + ], + [ + 77.546317032246705, + 12.9974240377156 + ], + [ + 77.546293696440898, + 12.997424529501499 + ], + [ + 77.546292763527902, + 12.997424567562399 + ], + [ + 77.546085138334902, + 12.997429130213201 + ], + [ + 77.545888991582899, + 12.9974334404682 + ], + [ + 77.545798618704396, + 12.997436585347099 + ], + [ + 77.545468805989103, + 12.9974499832791 + ], + [ + 77.545386493856398, + 12.9974530489818 + ], + [ + 77.545378213724902, + 12.997454131334401 + ], + [ + 77.545193849142294, + 12.9974782308197 + ], + [ + 77.545172482604798, + 12.9974810232968 + ], + [ + 77.545160513078201, + 12.997482478065701 + ], + [ + 77.545080927898894, + 12.9974921507854 + ], + [ + 77.545060423420296, + 12.997494642983501 + ], + [ + 77.545058026646402, + 12.997495326009 + ], + [ + 77.544806070687898, + 12.9975671548761 + ], + [ + 77.544020290785497, + 12.9978718704131 + ], + [ + 77.543957042375496, + 12.997899333070499 + ], + [ + 77.543875650372399, + 12.997934673740801 + ], + [ + 77.543830776365198, + 12.9979541582731 + ], + [ + 77.543656590885405, + 12.9980297904383 + ], + [ + 77.543588239608795, + 12.9980594686256 + ], + [ + 77.543505252356596, + 12.998095502426899 + ], + [ + 77.543458660523001, + 12.9981157321659 + ], + [ + 77.543457537780299, + 12.998116219292401 + ], + [ + 77.543443532897101, + 12.9981223004062 + ], + [ + 77.543434947253601, + 12.9981260291044 + ], + [ + 77.542995814621605, + 12.998316700787999 + ], + [ + 77.542807259346404, + 12.9984043770661 + ], + [ + 77.542457071713599, + 12.998565913602 + ], + [ + 77.542414740443604, + 12.9985934321809 + ], + [ + 77.542084681467202, + 12.998808979156401 + ], + [ + 77.5419376722962, + 12.998905282731201 + ], + [ + 77.541805439761603, + 12.9989866084361 + ], + [ + 77.541157695634297, + 12.999384980829699 + ], + [ + 77.541151369739396, + 12.9993613592698 + ], + [ + 77.541149554824301, + 12.9993545829641 + ], + [ + 77.541145827284595, + 12.999340663598 + ], + [ + 77.541141666365206, + 12.9993251266378 + ], + [ + 77.541139612496494, + 12.9993174574481 + ], + [ + 77.541131133609198, + 12.999285797133201 + ], + [ + 77.541119385946899, + 12.9992419304505 + ], + [ + 77.540929217711707, + 12.998662184922599 + ], + [ + 77.540864424394897, + 12.998429859159801 + ], + [ + 77.540864070589507, + 12.9984285905407 + ], + [ + 77.540818653503393, + 12.998265741466399 + ], + [ + 77.540680109004697, + 12.9977792249747 + ], + [ + 77.540621878959399, + 12.997602489332399 + ], + [ + 77.540590973452694, + 12.9975079276822 + ], + [ + 77.540517905723505, + 12.997249812788301 + ], + [ + 77.540484642292299, + 12.997132309841 + ], + [ + 77.540439856267497, + 12.996974101865399 + ], + [ + 77.540408399456496, + 12.9968851913286 + ], + [ + 77.540145195966304, + 12.996141277144099 + ], + [ + 77.539973962236104, + 12.9956675022583 + ], + [ + 77.539949764247197, + 12.995600351995799 + ], + [ + 77.5399431816993, + 12.995582085923299 + ], + [ + 77.539859599623199, + 12.995350148443199 + ], + [ + 77.539829442894003, + 12.995272519294099 + ], + [ + 77.539592910858303, + 12.994662733018 + ], + [ + 77.539277091907095, + 12.9938436651705 + ], + [ + 77.539275014037003, + 12.9938374741419 + ], + [ + 77.539272935245805, + 12.993831283122301 + ], + [ + 77.539099691267495, + 12.9933721637779 + ], + [ + 77.539066151864503, + 12.993283279581799 + ], + [ + 77.539044513128403, + 12.993225933860099 + ], + [ + 77.5389807792006, + 12.9930507410419 + ], + [ + 77.538919411076094, + 12.992882049914099 + ], + [ + 77.538901641751394, + 12.992833205023199 + ], + [ + 77.538554731266302, + 12.991879603791601 + ], + [ + 77.538548820850494, + 12.9918633566529 + ], + [ + 77.538446810468002, + 12.991582945614001 + ], + [ + 77.538401305922903, + 12.991590418607 + ], + [ + 77.537847233555397, + 12.991681410596501 + ], + [ + 77.537444563439394, + 12.9917498445446 + ], + [ + 77.537403267070701, + 12.9917568641117 + ], + [ + 77.537389635891103, + 12.991759180971 + ], + [ + 77.537324958350794, + 12.991770172027501 + ], + [ + 77.537004812590894, + 12.991824581340101 + ], + [ + 77.536999678703197, + 12.9918254536469 + ], + [ + 77.536571120464401, + 12.9918982870305 + ], + [ + 77.5365228367735, + 12.991906663960499 + ], + [ + 77.536277330576397, + 12.991942941711001 + ], + [ + 77.535965781849498, + 12.991988553692901 + ], + [ + 77.5359467261502, + 12.9919913435614 + ], + [ + 77.535944410670098, + 12.991991684192101 + ], + [ + 77.535938223190101, + 12.991992595677701 + ], + [ + 77.535926994678405, + 12.9919942496144 + ], + [ + 77.536190722311503, + 12.9927513566399 + ], + [ + 77.536193579083999, + 12.992764671195999 + ], + [ + 77.536721051200999, + 12.9928756109645 + ], + [ + 77.537381001599599, + 12.9930514353163 + ], + [ + 77.537717146811005, + 12.9931467554914 + ], + [ + 77.538189330318303, + 12.993276347939799 + ], + [ + 77.538153831268801, + 12.993540796128199 + ], + [ + 77.538126564045399, + 12.9937617289449 + ], + [ + 77.538125970144307, + 12.993765751574299 + ], + [ + 77.538111815933405, + 12.993955096767399 + ], + [ + 77.538152796566905, + 12.994149755250699 + ], + [ + 77.538253312563299, + 12.994627763066999 + ], + [ + 77.5384632785848, + 12.995313556089499 + ], + [ + 77.538066044857999, + 12.995308728131301 + ], + [ + 77.537787638628799, + 12.995351660023299 + ], + [ + 77.537713152257197, + 12.9953631465286 + ], + [ + 77.537637853517595, + 12.9953748388129 + ], + [ + 77.537630783397304, + 12.995375936961301 + ], + [ + 77.537519237150704, + 12.995393257913699 + ], + [ + 77.537323421256502, + 12.995393770479801 + ], + [ + 77.537314313896701, + 12.994983819484 + ], + [ + 77.5373062623962, + 12.994784836685399 + ], + [ + 77.537273001131595, + 12.994681572296599 + ], + [ + 77.5371484287013, + 12.9946799499828 + ], + [ + 77.536812816948498, + 12.9947186015828 + ], + [ + 77.536339321964405, + 12.994764719698701 + ], + [ + 77.535471644621595, + 12.994899788054999 + ], + [ + 77.535532032682895, + 12.9952559987372 + ], + [ + 77.535515943272102, + 12.9956120373442 + ], + [ + 77.535523925090502, + 12.995681299888901 + ], + [ + 77.534618499724303, + 12.995760895820601 + ], + [ + 77.534678560123396, + 12.996149985216899 + ], + [ + 77.534729105568502, + 12.9965185760905 + ], + [ + 77.5344464001994, + 12.996525160280401 + ], + [ + 77.534215445641095, + 12.9965307321994 + ], + [ + 77.534215876423005, + 12.9970314482497 + ], + [ + 77.534480586529995, + 12.997035164183099 + ], + [ + 77.535381363083104, + 12.997040123650001 + ], + [ + 77.535579649012902, + 12.997062091240601 + ], + [ + 77.535708160754496, + 12.997114621543099 + ], + [ + 77.536884631012796, + 12.9973530165404 + ], + [ + 77.536872351139195, + 12.9973900332898 + ], + [ + 77.536615076101597, + 12.9981358596901 + ], + [ + 77.536615484234005, + 12.9981415701504 + ], + [ + 77.537787386026196, + 12.998302190309801 + ], + [ + 77.537679821685103, + 12.9988903165496 + ], + [ + 77.537744349281695, + 12.9995357419616 + ], + [ + 77.537800783384498, + 13.000196827166 + ], + [ + 77.537438382055598, + 13.0003064260342 + ], + [ + 77.537324081854806, + 13.000340992528001 + ], + [ + 77.536878446723193, + 13.000504994879799 + ], + [ + 77.5367393884015, + 13.0005202531494 + ], + [ + 77.536306210415603, + 13.000640661732 + ], + [ + 77.535799479119106, + 13.0008636202269 + ], + [ + 77.535680248268207, + 13.0010129993963 + ], + [ + 77.536039410574105, + 13.0010860187821 + ], + [ + 77.536314386942493, + 13.0011580334935 + ], + [ + 77.5364823281094, + 13.001192248333099 + ], + [ + 77.536593777371294, + 13.001237007540899 + ], + [ + 77.5366002880438, + 13.0012152055219 + ], + [ + 77.537305409137701, + 13.001381943889999 + ], + [ + 77.537344648637401, + 13.001391222888399 + ], + [ + 77.537874350674002, + 13.001518067851601 + ], + [ + 77.539093938547893, + 13.001810111452601 + ], + [ + 77.539458111742405, + 13.0018909368641 + ], + [ + 77.539707601732204, + 13.001977571187799 + ], + [ + 77.539993437169002, + 13.0020949008182 + ], + [ + 77.540086877911904, + 13.002133255533399 + ], + [ + 77.540242082645705, + 13.002215572831 + ], + [ + 77.540399323586897, + 13.002298970509001 + ], + [ + 77.540671704224593, + 13.0024337612792 + ], + [ + 77.540668616721902, + 13.0024180079318 + ], + [ + 77.540663361663405, + 13.0022493513196 + ], + [ + 77.540688934621997, + 13.0021441126543 + ], + [ + 77.541048835510097, + 13.0022937322184 + ], + [ + 77.541220392244995, + 13.0019048030242 + ], + [ + 77.541221771440803, + 13.001898735387901 + ], + [ + 77.541507589415204, + 13.000818168432501 + ], + [ + 77.541546126156106, + 13.000817341159699 + ], + [ + 77.541700850490898, + 13.0007879188729 + ], + [ + 77.542078969986704, + 13.0007509471888 + ], + [ + 77.542304161153098, + 13.000730780815701 + ], + [ + 77.542675093396795, + 13.0007088054922 + ], + [ + 77.542817928981407, + 13.0007074062051 + ], + [ + 77.542833528447304, + 13.0007072533804 + ], + [ + 77.543502379822201, + 13.0006601985098 + ], + [ + 77.544152745355007, + 13.0006013799216 + ], + [ + 77.544303993153306, + 13.0005812135485 + ], + [ + 77.544304677012093, + 13.0005811454094 + ], + [ + 77.544305116341405, + 13.000574442813001 + ], + [ + 77.544305142589195, + 13.0005740350929 + ], + [ + 77.544347883688999, + 13.0000804420464 + ], + [ + 77.544376557960803, + 13.0000476814047 + ], + [ + 77.544381297583598, + 13.000046804661 + ], + [ + 77.544582961314703, + 13.000009832977 + ], + [ + 77.544811513543294, + 12.999942611733299 + ], + [ + 77.544895540097897, + 12.9999224453602 + ], + [ + 77.544898306929795, + 12.9999218192364 + ], + [ + 77.545175482833599, + 12.999853703193001 + ], + [ + 77.545176188790407, + 12.999853543585401 + ], + [ + 77.545456837482902, + 12.9998064887148 + ], + [ + 77.546026117390497, + 12.9998661475686 + ], + [ + 77.546242593967406, + 12.999886262754099 + ], + [ + 77.546273554990293, + 12.999876923501301 + ], + [ + 77.546378410667501, + 12.9990440287871 + ], + [ + 77.546398123596305, + 12.998914574334201 + ], + [ + 77.547481992529995, + 12.9989120742061 + ], + [ + 77.548788436570405, + 12.9991758735675 + ], + [ + 77.548793362347695, + 12.999177171361501 + ], + [ + 77.548921404812603, + 12.999210902495401 + ], + [ + 77.5490386556896, + 12.999234610816499 + ], + [ + 77.549365176854906, + 12.9993174599147 + ], + [ + 77.5497282871859, + 12.9994400213075 + ], + [ + 77.549664601004594, + 12.999771376186001 + ], + [ + 77.549632311521904, + 12.9998558363523 + ], + [ + 77.549610865303293, + 13.0000472800401 + ], + [ + 77.549579981201603, + 13.000269413971999 + ], + [ + 77.549532290603096, + 13.000564381128299 + ], + [ + 77.549531316979994, + 13.0006600076621 + ], + [ + 77.549457944451504, + 13.000922717823901 + ], + [ + 77.549354531404902, + 13.001681016180701 + ], + [ + 77.549329865155599, + 13.0017481905326 + ], + [ + 77.5494333508979, + 13.0017605597006 + ], + [ + 77.549280061487906, + 13.002790899724401 + ], + [ + 77.549199497878703, + 13.0033041960803 + ], + [ + 77.549108170091401, + 13.0039438461414 + ], + [ + 77.549083020258294, + 13.004119993600799 + ], + [ + 77.548888682175701, + 13.0051411756747 + ], + [ + 77.548741668552097, + 13.0060222918002 + ], + [ + 77.548712000053996, + 13.006190849418401 + ], + [ + 77.5486310747864, + 13.0066506229317 + ], + [ + 77.5486275885455, + 13.006882049149199 + ], + [ + 77.548630039154204, + 13.006905206102701 + ], + [ + 77.548694505818901, + 13.0075143743575 + ], + [ + 77.548751159711003, + 13.0077001694267 + ], + [ + 77.548094981080993, + 13.0078170328079 + ], + [ + 77.547845500067993, + 13.0078553397344 + ], + [ + 77.5477998273373, + 13.007858776040599 + ], + [ + 77.547304524761202, + 13.007954175034 + ], + [ + 77.547388075518697, + 13.0084185918281 + ], + [ + 77.547572095099696, + 13.0094297234204 + ], + [ + 77.547770437294304, + 13.0104457642254 + ], + [ + 77.549001590043403, + 13.0101729335732 + ], + [ + 77.549462851227204, + 13.010062950036399 + ], + [ + 77.5494950970118, + 13.0100552617514 + ], + [ + 77.549565429927497, + 13.0101328842568 + ], + [ + 77.5500110812565, + 13.0106280323335 + ], + [ + 77.550122542597904, + 13.0107518724608 + ], + [ + 77.550529578617699, + 13.0111698070133 + ], + [ + 77.550664853909296, + 13.011269741062 + ], + [ + 77.551361295361701, + 13.0116152927973 + ], + [ + 77.551484241033407, + 13.011676293744999 + ], + [ + 77.5514987100307, + 13.011683473038801 + ], + [ + 77.552561641872302, + 13.0122092014439 + ], + [ + 77.552708270164501, + 13.012281723513601 + ], + [ + 77.5535682724324, + 13.0128339921781 + ], + [ + 77.554041839022503, + 13.0140259038743 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "152", + "group": "Ragi gudda", + "Corporatio": "South", + "ac_no": "173", + "ac": "Jayanagar", + "corporat_1": "4", + "ward_id": "24", + "ward_name": "24 - KSRTC Layout", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಜಯನಗರ", + "ward_name_": "ಕೆಎಸ್‌ಆರ್‌ಟಿಸಿ ಲೇಔಟ್", + "dig_ward_n": "Ragi gudda", + "Assembly": "173 - Jayanagar", + "Slno": "24" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.585736737942497, + 12.9122105536454 + ], + [ + 77.585738634321203, + 12.912276719332899 + ], + [ + 77.585788075232401, + 12.914001767884301 + ], + [ + 77.585794688585594, + 12.914232496938901 + ], + [ + 77.585838201331498, + 12.915750505750299 + ], + [ + 77.585838193833894, + 12.9158227171354 + ], + [ + 77.585838165260796, + 12.916078583368799 + ], + [ + 77.585838053488501, + 12.9170954422616 + ], + [ + 77.585838048429395, + 12.917143453085901 + ], + [ + 77.585838028827794, + 12.9173136321486 + ], + [ + 77.585889846692098, + 12.919962420405801 + ], + [ + 77.585895390320104, + 12.920245762889 + ], + [ + 77.586782428954507, + 12.920225541687101 + ], + [ + 77.587321774715903, + 12.9202087230567 + ], + [ + 77.588029289101698, + 12.920194539289801 + ], + [ + 77.588037029930405, + 12.9206620170237 + ], + [ + 77.588037069989497, + 12.920670195482501 + ], + [ + 77.588299663206797, + 12.920662539931399 + ], + [ + 77.588932722336693, + 12.9206591307442 + ], + [ + 77.589536408935004, + 12.9206431039375 + ], + [ + 77.589532341044503, + 12.9201814301548 + ], + [ + 77.589528681436903, + 12.9197660446025 + ], + [ + 77.589524944150796, + 12.919341858489499 + ], + [ + 77.589524651591901, + 12.919334563397999 + ], + [ + 77.589514194129507, + 12.9188805105164 + ], + [ + 77.589824245836695, + 12.918863555243499 + ], + [ + 77.5899667127416, + 12.918861879983201 + ], + [ + 77.590195473879305, + 12.9188742644344 + ], + [ + 77.590378180543794, + 12.91887142741 + ], + [ + 77.590370467719893, + 12.9186297714296 + ], + [ + 77.590329246017802, + 12.9182536587233 + ], + [ + 77.590327768963206, + 12.918204910194801 + ], + [ + 77.590371587803403, + 12.9182006502935 + ], + [ + 77.590546964739502, + 12.9176994050895 + ], + [ + 77.591001152764903, + 12.917097960790301 + ], + [ + 77.590993169580699, + 12.916956332920501 + ], + [ + 77.5916479135537, + 12.9169409128505 + ], + [ + 77.593287513790798, + 12.916902292179699 + ], + [ + 77.593286592295897, + 12.916387725443901 + ], + [ + 77.593266195477497, + 12.915591940973901 + ], + [ + 77.593265558780402, + 12.9155302469708 + ], + [ + 77.5932581294377, + 12.914979733717299 + ], + [ + 77.594309701015604, + 12.914936512117499 + ], + [ + 77.595039864648996, + 12.9149128689366 + ], + [ + 77.595041007461305, + 12.9147281263864 + ], + [ + 77.595050820520697, + 12.914498555802201 + ], + [ + 77.595054166092893, + 12.914492187656201 + ], + [ + 77.595049701125703, + 12.9144355512693 + ], + [ + 77.594638710273003, + 12.9142879424105 + ], + [ + 77.594212079751202, + 12.914128294581699 + ], + [ + 77.594187106966899, + 12.9140954229307 + ], + [ + 77.594235977924995, + 12.913939844322799 + ], + [ + 77.594333955142602, + 12.913644644443201 + ], + [ + 77.594355977415205, + 12.9130974560598 + ], + [ + 77.594619456047099, + 12.9132320933131 + ], + [ + 77.594740169259595, + 12.9132933756364 + ], + [ + 77.595089907243803, + 12.9134896368759 + ], + [ + 77.595095810747495, + 12.9130426188302 + ], + [ + 77.595113730087405, + 12.912701338076699 + ], + [ + 77.595433494640602, + 12.9127110935981 + ], + [ + 77.595599818077602, + 12.912714818314599 + ], + [ + 77.595602147556605, + 12.9123427405358 + ], + [ + 77.595633292340594, + 12.911583256612399 + ], + [ + 77.595638387908707, + 12.911125882505701 + ], + [ + 77.595653597142899, + 12.9108951504553 + ], + [ + 77.595495928082002, + 12.910895180643999 + ], + [ + 77.595181517654396, + 12.910883964359201 + ], + [ + 77.595185950923096, + 12.9107965792766 + ], + [ + 77.595186849779594, + 12.910633773633 + ], + [ + 77.595200829343796, + 12.9102177138431 + ], + [ + 77.594855794868295, + 12.9101948475701 + ], + [ + 77.594421754576302, + 12.910165693276699 + ], + [ + 77.594390497659305, + 12.910161846971301 + ], + [ + 77.593981363691398, + 12.9101115028813 + ], + [ + 77.593902226852805, + 12.910117069641601 + ], + [ + 77.593654861310299, + 12.910127323205 + ], + [ + 77.593333491385394, + 12.910140643858799 + ], + [ + 77.593317660139107, + 12.910139150430799 + ], + [ + 77.593322488962002, + 12.910228532082201 + ], + [ + 77.592313092147904, + 12.910285910411201 + ], + [ + 77.591957339205905, + 12.9103061322805 + ], + [ + 77.591391996865397, + 12.9103382658353 + ], + [ + 77.590720574049897, + 12.910376428169799 + ], + [ + 77.5903390500782, + 12.910398112249201 + ], + [ + 77.590226589465303, + 12.910404504334799 + ], + [ + 77.588863583871003, + 12.9104450362327 + ], + [ + 77.587910562604407, + 12.910473371684599 + ], + [ + 77.587736445120996, + 12.9104808387712 + ], + [ + 77.587730687875606, + 12.910481085523401 + ], + [ + 77.585738422433906, + 12.9105665092185 + ], + [ + 77.585703582472803, + 12.910568003244901 + ], + [ + 77.585736737942497, + 12.9122105536454 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "65", + "group": "NALWADI KRISHNARAJA WADIYAR", + "Corporatio": "West", + "ac_no": "156", + "ac": "Mahalakshmi Layout", + "corporat_1": "5", + "ward_id": "14", + "ward_name": "14 - Nalwadi Krishnaraja Wadiyar Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಹಾಲಕ್ಷ್ಮಿ ಲೇಔಟ್", + "ward_name_": "ನಾಲ್ವಡಿ ಕೃಷ್ಣರಾಜ ಒಡೆಯರ್ ವಾರ್ಡ್", + "dig_ward_n": "NALWADI KRISHNARAJA WADIYAR", + "Assembly": "156 - Mahalakshmi Layout", + "Slno": "14" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.554041839022503, + 13.0140259038743 + ], + [ + 77.5535682724324, + 13.0128339921781 + ], + [ + 77.552708270164501, + 13.012281723513601 + ], + [ + 77.552561641872302, + 13.0122092014439 + ], + [ + 77.5514987100307, + 13.011683473038801 + ], + [ + 77.551484241033407, + 13.011676293744999 + ], + [ + 77.551361295361701, + 13.0116152927973 + ], + [ + 77.550664853909296, + 13.011269741062 + ], + [ + 77.550529578617699, + 13.0111698070133 + ], + [ + 77.550122542597904, + 13.0107518724608 + ], + [ + 77.5500110812565, + 13.0106280323335 + ], + [ + 77.549565429927497, + 13.0101328842568 + ], + [ + 77.5494950970118, + 13.0100552617514 + ], + [ + 77.549462851227204, + 13.010062950036399 + ], + [ + 77.549001590043403, + 13.0101729335732 + ], + [ + 77.547770437294304, + 13.0104457642254 + ], + [ + 77.547270007646901, + 13.0105566609021 + ], + [ + 77.547001508678093, + 13.009258718744301 + ], + [ + 77.546560922471798, + 13.0093711603777 + ], + [ + 77.546472683088396, + 13.009383978548099 + ], + [ + 77.546287125306307, + 13.009415680335101 + ], + [ + 77.546135022479604, + 13.0094410772055 + ], + [ + 77.546059093516206, + 13.0094657272288 + ], + [ + 77.5459616826396, + 13.0094756475032 + ], + [ + 77.545876002767102, + 13.0094406317781 + ], + [ + 77.545218450942102, + 13.009047843096001 + ], + [ + 77.545002649082093, + 13.0092792048676 + ], + [ + 77.544881596607794, + 13.009191135665899 + ], + [ + 77.544635306228301, + 13.009040564586099 + ], + [ + 77.544279547138999, + 13.008813932301599 + ], + [ + 77.543965143083398, + 13.008868648826599 + ], + [ + 77.543785376222104, + 13.0088984923149 + ], + [ + 77.543579798692207, + 13.008902710348099 + ], + [ + 77.543627613280805, + 13.0091929169152 + ], + [ + 77.543638418604203, + 13.0092608066394 + ], + [ + 77.543685958928705, + 13.009559513846201 + ], + [ + 77.543716231161, + 13.0097373576831 + ], + [ + 77.543775164501398, + 13.010083575640399 + ], + [ + 77.543832750649699, + 13.0104712152636 + ], + [ + 77.543862211260901, + 13.0106312425391 + ], + [ + 77.543957225863096, + 13.010652981282901 + ], + [ + 77.544260734219193, + 13.0108322737072 + ], + [ + 77.545094708062294, + 13.0113936099561 + ], + [ + 77.545151211923695, + 13.0114360829447 + ], + [ + 77.545270921106805, + 13.0114612025884 + ], + [ + 77.545647233855902, + 13.0115483453078 + ], + [ + 77.545859863701693, + 13.0116012375649 + ], + [ + 77.546057477752299, + 13.0116160307273 + ], + [ + 77.546262184371997, + 13.011609239932501 + ], + [ + 77.546474326149905, + 13.011614328792 + ], + [ + 77.546595523089394, + 13.011636704718001 + ], + [ + 77.546874017964598, + 13.0116665803858 + ], + [ + 77.547273436989201, + 13.012077842022901 + ], + [ + 77.547567014601597, + 13.0122169467615 + ], + [ + 77.547541118766105, + 13.012366602191999 + ], + [ + 77.547555646898502, + 13.012991965568 + ], + [ + 77.5475176395597, + 13.0135247237131 + ], + [ + 77.547540419893593, + 13.013606969765201 + ], + [ + 77.547570147112097, + 13.0136532909544 + ], + [ + 77.547680498187901, + 13.0137167474506 + ], + [ + 77.547743689347897, + 13.0137337811656 + ], + [ + 77.547808837402499, + 13.013751343134899 + ], + [ + 77.547915238849995, + 13.013786153398501 + ], + [ + 77.547973808162496, + 13.013901258090399 + ], + [ + 77.547982409730295, + 13.013918161367799 + ], + [ + 77.548046327151297, + 13.0140896437133 + ], + [ + 77.548192260301803, + 13.0144145012517 + ], + [ + 77.548473447353103, + 13.0149709901909 + ], + [ + 77.547909157615607, + 13.0153628244665 + ], + [ + 77.547295338498202, + 13.0157513677211 + ], + [ + 77.547241266026703, + 13.0156629410051 + ], + [ + 77.547137607726299, + 13.015123775549499 + ], + [ + 77.547113562314195, + 13.014998703321201 + ], + [ + 77.547084036735399, + 13.0149722210558 + ], + [ + 77.547016636643505, + 13.014674558896299 + ], + [ + 77.547004934991705, + 13.014599610554599 + ], + [ + 77.547004278364398, + 13.014595403255001 + ], + [ + 77.546965389655696, + 13.0143463274732 + ], + [ + 77.546910750449598, + 13.013996369429501 + ], + [ + 77.546887809761998, + 13.0138494360371 + ], + [ + 77.546858038889297, + 13.0136587553914 + ], + [ + 77.546860592300206, + 13.0136309090824 + ], + [ + 77.546861548988701, + 13.0136204746301 + ], + [ + 77.546794028946394, + 13.013120106221701 + ], + [ + 77.546768110637004, + 13.0130683438883 + ], + [ + 77.545847140829196, + 13.012791532334299 + ], + [ + 77.545514258911695, + 13.0126721533031 + ], + [ + 77.5439899181915, + 13.0122197735272 + ], + [ + 77.543928871707905, + 13.012503691487099 + ], + [ + 77.543867720755202, + 13.013080980048599 + ], + [ + 77.543872859274103, + 13.0130956064254 + ], + [ + 77.543880274314404, + 13.013116713608801 + ], + [ + 77.543911104428403, + 13.0133184285739 + ], + [ + 77.543950564615102, + 13.013576612130199 + ], + [ + 77.543996217315097, + 13.013875314922799 + ], + [ + 77.5440631307779, + 13.0143131187957 + ], + [ + 77.544083604049405, + 13.014338403757799 + ], + [ + 77.543715324178905, + 13.014325842938799 + ], + [ + 77.542726589190494, + 13.0143312380134 + ], + [ + 77.542689737290402, + 13.0143512009624 + ], + [ + 77.5426652884818, + 13.014344268994201 + ], + [ + 77.542365609672999, + 13.0143615499045 + ], + [ + 77.542073706150504, + 13.0144241723746 + ], + [ + 77.542022785089998, + 13.014450966040799 + ], + [ + 77.541659264061195, + 13.014662496521201 + ], + [ + 77.541450147071998, + 13.0148814174348 + ], + [ + 77.541380354075201, + 13.014715526735801 + ], + [ + 77.5412485081943, + 13.014407709705001 + ], + [ + 77.541208041521102, + 13.0143132332958 + ], + [ + 77.541023054596707, + 13.0138632560034 + ], + [ + 77.541004397863503, + 13.013789800887301 + ], + [ + 77.540533467635299, + 13.014019484375501 + ], + [ + 77.540507272574203, + 13.014082906339199 + ], + [ + 77.540760620771195, + 13.014660876237301 + ], + [ + 77.540582114230602, + 13.014727166234699 + ], + [ + 77.540546072148501, + 13.0147374737662 + ], + [ + 77.540329851737496, + 13.014799310415601 + ], + [ + 77.540189770439298, + 13.014894107032701 + ], + [ + 77.540188395088904, + 13.014902726028399 + ], + [ + 77.540206588825001, + 13.014965654951901 + ], + [ + 77.540332264002203, + 13.015384660447801 + ], + [ + 77.540427402227607, + 13.0156777516133 + ], + [ + 77.540484382914798, + 13.015814881624699 + ], + [ + 77.5405698160816, + 13.0159608406606 + ], + [ + 77.540519994446399, + 13.015991680806801 + ], + [ + 77.540435178690203, + 13.0160441820295 + ], + [ + 77.540588354373398, + 13.016383192242399 + ], + [ + 77.540783345144504, + 13.0167419863243 + ], + [ + 77.540905956631207, + 13.0167064416725 + ], + [ + 77.541105057557601, + 13.0166161032893 + ], + [ + 77.541302391875604, + 13.016526566302201 + ], + [ + 77.5415822734995, + 13.017124656476501 + ], + [ + 77.541990569476994, + 13.016949894814999 + ], + [ + 77.542170164084197, + 13.016873023329399 + ], + [ + 77.542169944686606, + 13.016851511256601 + ], + [ + 77.542251666563899, + 13.0169762075899 + ], + [ + 77.542303770416098, + 13.017065337590701 + ], + [ + 77.542393609391794, + 13.017268837620801 + ], + [ + 77.542512701008306, + 13.017472050702899 + ], + [ + 77.542567693718297, + 13.017485853876 + ], + [ + 77.542663566085594, + 13.017444276625801 + ], + [ + 77.542739490852796, + 13.0174308626616 + ], + [ + 77.542812619691603, + 13.0174301453909 + ], + [ + 77.542898253518999, + 13.0174603810237 + ], + [ + 77.542969457595802, + 13.0175098809073 + ], + [ + 77.543102769372098, + 13.017589336638 + ], + [ + 77.543072988244802, + 13.017621614147499 + ], + [ + 77.543017075551404, + 13.017816384090899 + ], + [ + 77.542997605073495, + 13.0178599694102 + ], + [ + 77.542936634359606, + 13.017996454948101 + ], + [ + 77.542894524541893, + 13.018050652187799 + ], + [ + 77.542837118033404, + 13.0180990239521 + ], + [ + 77.542791396358794, + 13.018113310806999 + ], + [ + 77.542758138386404, + 13.018123703435201 + ], + [ + 77.542756411121204, + 13.0181234683107 + ], + [ + 77.542468724220598, + 13.0180842689205 + ], + [ + 77.542031274443701, + 13.018024663085299 + ], + [ + 77.541674885409904, + 13.017976102553 + ], + [ + 77.541653460656605, + 13.017973183004401 + ], + [ + 77.541277241822897, + 13.018135236258599 + ], + [ + 77.541257231553104, + 13.018159712164501 + ], + [ + 77.541250153157193, + 13.0181683708051 + ], + [ + 77.539898656728099, + 13.0189166720324 + ], + [ + 77.539790664280503, + 13.019012172250999 + ], + [ + 77.5397797435797, + 13.0190218297992 + ], + [ + 77.539801121876195, + 13.019027594963401 + ], + [ + 77.539807866287305, + 13.019037549731401 + ], + [ + 77.539810531143104, + 13.0190361593127 + ], + [ + 77.539841896011296, + 13.019087777673199 + ], + [ + 77.539893557712006, + 13.019172799240501 + ], + [ + 77.539900022009604, + 13.019183437464401 + ], + [ + 77.539979125853094, + 13.019313619857799 + ], + [ + 77.539983939885602, + 13.019321543068999 + ], + [ + 77.540113397678695, + 13.0195345957518 + ], + [ + 77.540147359271003, + 13.019590487475201 + ], + [ + 77.540167956453203, + 13.019624384263899 + ], + [ + 77.540178825039703, + 13.0196422709506 + ], + [ + 77.540439167229806, + 13.0200707211014 + ], + [ + 77.540531301641906, + 13.0202223484727 + ], + [ + 77.540538932733895, + 13.0202349068449 + ], + [ + 77.540880417337405, + 13.0207968907539 + ], + [ + 77.540888714766297, + 13.0208105448054 + ], + [ + 77.541069805191, + 13.021108565634901 + ], + [ + 77.541056185957302, + 13.0211159043041 + ], + [ + 77.541050713309602, + 13.0211188534889 + ], + [ + 77.541046322968, + 13.0211212194237 + ], + [ + 77.541285241220507, + 13.021533274067499 + ], + [ + 77.541287665733293, + 13.0215374559272 + ], + [ + 77.5415284700874, + 13.021952761343501 + ], + [ + 77.541712145643203, + 13.0222695391186 + ], + [ + 77.541715605628397, + 13.0222755060019 + ], + [ + 77.542010619876905, + 13.0227843026363 + ], + [ + 77.542002040028706, + 13.0227900334556 + ], + [ + 77.542119311053099, + 13.022973257758199 + ], + [ + 77.542126159501606, + 13.022983957171199 + ], + [ + 77.542354425436997, + 13.023340600661699 + ], + [ + 77.542451977793505, + 13.0234930163614 + ], + [ + 77.542509934315802, + 13.023583566674199 + ], + [ + 77.542566198895102, + 13.0236714737669 + ], + [ + 77.542725540393803, + 13.023920428395 + ], + [ + 77.542908546826695, + 13.024206355300599 + ], + [ + 77.543236887926099, + 13.0247334764058 + ], + [ + 77.543242184486104, + 13.0247419793226 + ], + [ + 77.543581859435506, + 13.0252872926589 + ], + [ + 77.544000566515905, + 13.025959479669799 + ], + [ + 77.5440034134283, + 13.0259640503466 + ], + [ + 77.544235147366507, + 13.026336070903501 + ], + [ + 77.544255176598497, + 13.026368225317499 + ], + [ + 77.544604453237298, + 13.026170550409001 + ], + [ + 77.5448551186077, + 13.0260278825942 + ], + [ + 77.545012679229103, + 13.025938206593899 + ], + [ + 77.545989064857196, + 13.02538248592 + ], + [ + 77.546402116725204, + 13.025147391576301 + ], + [ + 77.546420496368299, + 13.0251369304455 + ], + [ + 77.546744213042004, + 13.024952682825299 + ], + [ + 77.547554288921603, + 13.024491614718199 + ], + [ + 77.548480682014599, + 13.0239641441228 + ], + [ + 77.548711030659007, + 13.0238416769143 + ], + [ + 77.548891295602701, + 13.023745837007599 + ], + [ + 77.549336975681001, + 13.023508884785301 + ], + [ + 77.5501932667418, + 13.0230536222666 + ], + [ + 77.551049552451403, + 13.022598358401 + ], + [ + 77.5513499441779, + 13.022317049854299 + ], + [ + 77.551370443452697, + 13.0222978528056 + ], + [ + 77.551522425105006, + 13.0221555252648 + ], + [ + 77.551574724233504, + 13.0220728106453 + ], + [ + 77.552064192557197, + 13.021298680647201 + ], + [ + 77.552259506378704, + 13.0209236577138 + ], + [ + 77.552329635668897, + 13.020789000422401 + ], + [ + 77.552427995427294, + 13.020601318478599 + ], + [ + 77.552430177050596, + 13.020597154635601 + ], + [ + 77.552565160872405, + 13.0203383395563 + ], + [ + 77.552602761693393, + 13.0202616251837 + ], + [ + 77.552670587602805, + 13.0201232432842 + ], + [ + 77.552708581962605, + 13.0200457251829 + ], + [ + 77.552757404896695, + 13.0199461150536 + ], + [ + 77.552757505079995, + 13.019945910788801 + ], + [ + 77.552764284066498, + 13.0199320807357 + ], + [ + 77.552788558441506, + 13.0198844100857 + ], + [ + 77.552905928268899, + 13.019644860309 + ], + [ + 77.5529090970483, + 13.019638391957301 + ], + [ + 77.553021524422604, + 13.019408929170201 + ], + [ + 77.553098853813694, + 13.019210189786699 + ], + [ + 77.553153063463, + 13.0190708688403 + ], + [ + 77.553384556730194, + 13.018475920572 + ], + [ + 77.553415915887697, + 13.018356249480201 + ], + [ + 77.553421394913101, + 13.0183353337556 + ], + [ + 77.553624524882494, + 13.0175599346656 + ], + [ + 77.553807836328801, + 13.016734852709 + ], + [ + 77.553826110497099, + 13.0164960161034 + ], + [ + 77.553826559060099, + 13.016490155469199 + ], + [ + 77.553871255833698, + 13.015905992637199 + ], + [ + 77.553871827321501, + 13.015898523602299 + ], + [ + 77.554073396084107, + 13.015675190819 + ], + [ + 77.554095150462501, + 13.015662553972099 + ], + [ + 77.5540917744582, + 13.0156423390249 + ], + [ + 77.554027824310097, + 13.015259415262699 + ], + [ + 77.554002510554994, + 13.0151078398221 + ], + [ + 77.554009193316702, + 13.0150173604271 + ], + [ + 77.554019704863705, + 13.014875029996601 + ], + [ + 77.554036339692004, + 13.0146726884833 + ], + [ + 77.554036796864494, + 13.014667128616299 + ], + [ + 77.554051195559396, + 13.014491981680001 + ], + [ + 77.554066813859805, + 13.014301999405999 + ], + [ + 77.554072418968502, + 13.0140999390962 + ], + [ + 77.554072569009506, + 13.014094528614599 + ], + [ + 77.5540744815236, + 13.014025579738499 + ], + [ + 77.554041839022503, + 13.0140259038743 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "66", + "group": "KADUGODI", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "14", + "ward_name": "14 - Kadugodi", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಕಾಡುಗೋಡಿ", + "dig_ward_n": "KADUGODI", + "Assembly": "174 - Mahadevapura", + "Slno": "14" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.758277737840601, + 12.9825018247467 + ], + [ + 77.758263949877204, + 12.982447275687701 + ], + [ + 77.758263596422296, + 12.982445880189401 + ], + [ + 77.758176908379994, + 12.9824468002945 + ], + [ + 77.758166889547397, + 12.982446906632299 + ], + [ + 77.758116712682494, + 12.9821729395592 + ], + [ + 77.758078699043395, + 12.981965378658501 + ], + [ + 77.758048379979599, + 12.981799833726701 + ], + [ + 77.758007736739401, + 12.9815779179571 + ], + [ + 77.757994131859803, + 12.981503635590199 + ], + [ + 77.757947926206299, + 12.9812510919655 + ], + [ + 77.757909221360407, + 12.981039534773901 + ], + [ + 77.757896056769894, + 12.9809675810047 + ], + [ + 77.757893223875797, + 12.980952096458701 + ], + [ + 77.757861797488104, + 12.980780326642501 + ], + [ + 77.757848733428403, + 12.980690267202499 + ], + [ + 77.757802035854894, + 12.980695870911401 + ], + [ + 77.754884371464499, + 12.9817853253004 + ], + [ + 77.754757354064594, + 12.9818427633158 + ], + [ + 77.754090512715507, + 12.9820351573184 + ], + [ + 77.753860760654007, + 12.982094930212501 + ], + [ + 77.753690314510806, + 12.982164976572699 + ], + [ + 77.752435255820401, + 12.9824639792015 + ], + [ + 77.752170540164897, + 12.982519315043101 + ], + [ + 77.752193713431694, + 12.9826344445899 + ], + [ + 77.752212807152702, + 12.982719640368799 + ], + [ + 77.752268328573706, + 12.9829655644398 + ], + [ + 77.752199002511702, + 12.982990922533901 + ], + [ + 77.751873422263102, + 12.9831099876978 + ], + [ + 77.750422146918197, + 12.9836407133125 + ], + [ + 77.7504905967767, + 12.9838610324411 + ], + [ + 77.749760713703395, + 12.9841015249444 + ], + [ + 77.747841168158303, + 12.9847483313442 + ], + [ + 77.747800816544796, + 12.9847707011722 + ], + [ + 77.747877400565301, + 12.985224601586401 + ], + [ + 77.747470197724596, + 12.9854338067155 + ], + [ + 77.7472609925954, + 12.9854674289684 + ], + [ + 77.744901503134301, + 12.9863926891408 + ], + [ + 77.744532523002405, + 12.986491405832099 + ], + [ + 77.7442902426709, + 12.9865526819528 + ], + [ + 77.744224791918299, + 12.986569181674 + ], + [ + 77.743292962289203, + 12.986802598418199 + ], + [ + 77.742386285551802, + 12.987019938242099 + ], + [ + 77.742330595796204, + 12.9870340761509 + ], + [ + 77.742090003785293, + 12.9870919450813 + ], + [ + 77.741020382980906, + 12.987360683912399 + ], + [ + 77.740856816542106, + 12.9874075765351 + ], + [ + 77.740841323377794, + 12.987412256681999 + ], + [ + 77.740495243122297, + 12.9875107582035 + ], + [ + 77.740253059155805, + 12.9875810632669 + ], + [ + 77.740142291776195, + 12.987612719304099 + ], + [ + 77.740138274562497, + 12.9876138908496 + ], + [ + 77.739671342485195, + 12.9876120406926 + ], + [ + 77.738902066347606, + 12.98760208589 + ], + [ + 77.737307599776301, + 12.9875759835402 + ], + [ + 77.737245991985802, + 12.9875755035364 + ], + [ + 77.737137217332801, + 12.987578908021201 + ], + [ + 77.736508134053196, + 12.9875956982261 + ], + [ + 77.736057832961393, + 12.987588020472099 + ], + [ + 77.736034243318102, + 12.9875893981022 + ], + [ + 77.735594198097303, + 12.9876245201656 + ], + [ + 77.735072922822894, + 12.9876548508871 + ], + [ + 77.734570562675103, + 12.987730148499899 + ], + [ + 77.734013637872707, + 12.987817311241001 + ], + [ + 77.733776787064798, + 12.987849162513699 + ], + [ + 77.733698608438104, + 12.9878601478308 + ], + [ + 77.733346855380404, + 12.990071389844699 + ], + [ + 77.7332956637932, + 12.990391485583499 + ], + [ + 77.733185673227993, + 12.991020465379099 + ], + [ + 77.7331336586942, + 12.991317986268699 + ], + [ + 77.7331000553921, + 12.9915091707868 + ], + [ + 77.733035566441899, + 12.991876831933 + ], + [ + 77.733000873514996, + 12.992073673811801 + ], + [ + 77.732946692026303, + 12.992383638479 + ], + [ + 77.732908191749502, + 12.992600845619201 + ], + [ + 77.732798200348995, + 12.9932298255435 + ], + [ + 77.732674071570301, + 12.9937338334238 + ], + [ + 77.732672951427006, + 12.993737706997599 + ], + [ + 77.732528375141101, + 12.9940457732146 + ], + [ + 77.732307962594305, + 12.994367052519999 + ], + [ + 77.732030846738397, + 12.994778854130001 + ], + [ + 77.731678479303895, + 12.995413078165701 + ], + [ + 77.7316598002745, + 12.9955008696039 + ], + [ + 77.731601895283404, + 12.995603604265501 + ], + [ + 77.731566507381899, + 12.995708764512299 + ], + [ + 77.731560801418794, + 12.995923015668 + ], + [ + 77.731549264010596, + 12.996065948632699 + ], + [ + 77.731493556912994, + 12.996199465303 + ], + [ + 77.731363707054498, + 12.9964630758176 + ], + [ + 77.731368421167801, + 12.9965782023696 + ], + [ + 77.731418596883103, + 12.996638650065201 + ], + [ + 77.734669851129496, + 12.997217564137699 + ], + [ + 77.736687848058594, + 12.997579859225199 + ], + [ + 77.738495741880897, + 12.997904419318701 + ], + [ + 77.741240387067506, + 12.9984863304773 + ], + [ + 77.742150492398594, + 12.998570001351601 + ], + [ + 77.742870824678107, + 12.998636223727599 + ], + [ + 77.745810367992206, + 12.998511424018799 + ], + [ + 77.747751372863803, + 12.9981080976731 + ], + [ + 77.747826339269196, + 12.9980983800986 + ], + [ + 77.748200080797702, + 12.998058962678501 + ], + [ + 77.748188873380101, + 12.997879643996299 + ], + [ + 77.748082975735201, + 12.997547149932 + ], + [ + 77.748017026309697, + 12.9968635047977 + ], + [ + 77.748147779515406, + 12.9958996668813 + ], + [ + 77.748300947556402, + 12.9957203481992 + ], + [ + 77.748345777226902, + 12.9955074072641 + ], + [ + 77.748308419168197, + 12.995350503417299 + ], + [ + 77.748151515321297, + 12.9952571082703 + ], + [ + 77.748259853691707, + 12.994382929695 + ], + [ + 77.748389070095797, + 12.993413360663601 + ], + [ + 77.748446643985602, + 12.992802683808801 + ], + [ + 77.748454115597397, + 12.9915698678693 + ], + [ + 77.748592340414802, + 12.9904752767471 + ], + [ + 77.748690182959095, + 12.989503806998499 + ], + [ + 77.748763326611794, + 12.989063260762901 + ], + [ + 77.748770692219196, + 12.9886600582429 + ], + [ + 77.748628840477707, + 12.987472898172699 + ], + [ + 77.748742673675096, + 12.9867622688589 + ], + [ + 77.748772560122106, + 12.986243925793801 + ], + [ + 77.748799644714694, + 12.985960004547399 + ], + [ + 77.748803380520599, + 12.9859161088284 + ], + [ + 77.748803380520599, + 12.985886222381399 + ], + [ + 77.7495404312548, + 12.9861535448812 + ], + [ + 77.7504321918817, + 12.9864540648742 + ], + [ + 77.753056367926604, + 12.9853602712043 + ], + [ + 77.753818267065796, + 12.9873506183862 + ], + [ + 77.753993007622498, + 12.9877371470333 + ], + [ + 77.754543226518706, + 12.988954229082999 + ], + [ + 77.754563143935798, + 12.988992259303901 + ], + [ + 77.754664626826994, + 12.9893544713095 + ], + [ + 77.7547248009691, + 12.989506797058599 + ], + [ + 77.754883927508303, + 12.989791915543799 + ], + [ + 77.755032813681098, + 12.990032330260201 + ], + [ + 77.755233843396894, + 12.9903600248107 + ], + [ + 77.755530627872801, + 12.990751235886799 + ], + [ + 77.755738575633501, + 12.9910430060976 + ], + [ + 77.756132143143603, + 12.9915909315026 + ], + [ + 77.756636642320402, + 12.992252401637799 + ], + [ + 77.757225164680406, + 12.9929631695423 + ], + [ + 77.757411631989399, + 12.9932957963735 + ], + [ + 77.757418008259407, + 12.993358438367499 + ], + [ + 77.757466309624306, + 12.9938329775571 + ], + [ + 77.758018415015002, + 12.9952730946647 + ], + [ + 77.758301263620098, + 12.9960700410162 + ], + [ + 77.758449672242094, + 12.996488189993601 + ], + [ + 77.758445991600794, + 12.9965328252965 + ], + [ + 77.757447445847703, + 12.996684624911699 + ], + [ + 77.756962022864698, + 12.9967584187693 + ], + [ + 77.756583412414997, + 12.996815973996799 + ], + [ + 77.755139571620305, + 12.997025818674301 + ], + [ + 77.755261687858095, + 12.9976354156871 + ], + [ + 77.755442874443204, + 12.9983788410568 + ], + [ + 77.755459685569605, + 12.998462896689 + ], + [ + 77.7554951757255, + 12.9985394807095 + ], + [ + 77.755521326366605, + 12.9986291400506 + ], + [ + 77.755841220199997, + 12.9994705793648 + ], + [ + 77.756055205205399, + 12.999643989335301 + ], + [ + 77.756285066778105, + 12.9998841197802 + ], + [ + 77.756625257003506, + 13.000526929436299 + ], + [ + 77.756741066985697, + 13.0009957730739 + ], + [ + 77.757613646801204, + 13.0008004310953 + ], + [ + 77.757683426655205, + 13.000827219339699 + ], + [ + 77.7576844849889, + 13.0008276254298 + ], + [ + 77.757728130247003, + 13.000844380820499 + ], + [ + 77.758248507949702, + 13.0007835221523 + ], + [ + 77.758341072562104, + 13.000772716518201 + ], + [ + 77.758982787731696, + 13.000697805539 + ], + [ + 77.759189332679796, + 13.000632377102701 + ], + [ + 77.759336034880604, + 13.000465960942201 + ], + [ + 77.7597428887061, + 13.000448085119499 + ], + [ + 77.759783659196302, + 13.0005425004651 + ], + [ + 77.760015869003595, + 13.0010797663031 + ], + [ + 77.7604158025147, + 13.0016333141429 + ], + [ + 77.761454122857501, + 13.0018639059109 + ], + [ + 77.761727821895803, + 13.001919000954601 + ], + [ + 77.7618198621376, + 13.002429304743 + ], + [ + 77.761977699935798, + 13.0024101587379 + ], + [ + 77.762030935169506, + 13.002399418295999 + ], + [ + 77.762114523826, + 13.002394281562999 + ], + [ + 77.762178499501502, + 13.0023788713637 + ], + [ + 77.762301314119696, + 13.0023681309218 + ], + [ + 77.7626790974887, + 13.002324702178599 + ], + [ + 77.762682833294605, + 13.002388210878401 + ], + [ + 77.762677229585705, + 13.002447983772401 + ], + [ + 77.7626903049063, + 13.002520831986899 + ], + [ + 77.762741672237098, + 13.0029532515169 + ], + [ + 77.763201176359601, + 13.0028785353994 + ], + [ + 77.763257213447702, + 13.0029177613611 + ], + [ + 77.763311120491096, + 13.003057706739 + ], + [ + 77.763337654776706, + 13.0030245270541 + ], + [ + 77.763355019321693, + 13.0030028142072 + ], + [ + 77.763397146338093, + 13.002950137414899 + ], + [ + 77.763426899546701, + 13.0029105785248 + ], + [ + 77.763361730396397, + 13.0028514465564 + ], + [ + 77.763258078454797, + 13.002757397321499 + ], + [ + 77.763237372065305, + 13.0027430328122 + ], + [ + 77.763341582697507, + 13.0026042245679 + ], + [ + 77.763798499885397, + 13.002936379820101 + ], + [ + 77.763909810995202, + 13.0030172969422 + ], + [ + 77.764061872536502, + 13.003127838786201 + ], + [ + 77.763870943403305, + 13.003239296177499 + ], + [ + 77.763925752855201, + 13.0034221549147 + ], + [ + 77.764035057380397, + 13.0037868232841 + ], + [ + 77.764061400964096, + 13.0038747129679 + ], + [ + 77.764087240453705, + 13.003960919711 + ], + [ + 77.764093634087402, + 13.003982250336399 + ], + [ + 77.764121074887498, + 13.0040737994072 + ], + [ + 77.764136600380596, + 13.004069768706399 + ], + [ + 77.764157340537196, + 13.0040643843812 + ], + [ + 77.764235735889898, + 13.004044030271199 + ], + [ + 77.764573042591294, + 13.003956455831601 + ], + [ + 77.765393553564607, + 13.003738074434301 + ], + [ + 77.765476591468797, + 13.003715973171101 + ], + [ + 77.765521717059698, + 13.0036945063144 + ], + [ + 77.765540807741303, + 13.003685425024299 + ], + [ + 77.765696195145395, + 13.003611505129401 + ], + [ + 77.765870842262004, + 13.003559634913399 + ], + [ + 77.766081353349804, + 13.0034972931127 + ], + [ + 77.767312978297397, + 13.0032539583708 + ], + [ + 77.767323817290404, + 13.003251816633 + ], + [ + 77.767380025919707, + 13.003234125498601 + ], + [ + 77.767428284682893, + 13.003219015007099 + ], + [ + 77.767600980257996, + 13.0031649387822 + ], + [ + 77.767788392309001, + 13.003106254838301 + ], + [ + 77.767788452730002, + 13.0031062207711 + ], + [ + 77.768582721784, + 13.002652999508999 + ], + [ + 77.768977485090005, + 13.003562353196999 + ], + [ + 77.769271638775905, + 13.004245090345499 + ], + [ + 77.769360205183503, + 13.004537166266401 + ], + [ + 77.769248619258406, + 13.004636579346499 + ], + [ + 77.769232768017901, + 13.004637875137 + ], + [ + 77.769248266242698, + 13.004737059851699 + ], + [ + 77.769348372526096, + 13.00538757354 + ], + [ + 77.769492395922299, + 13.0059254099017 + ], + [ + 77.769720648248096, + 13.0075517630288 + ], + [ + 77.769716019158295, + 13.007667734027899 + ], + [ + 77.769677601545695, + 13.0084077337827 + ], + [ + 77.769701089189198, + 13.0088636572767 + ], + [ + 77.769868515064999, + 13.0088528362307 + ], + [ + 77.769917306033193, + 13.0090844645001 + ], + [ + 77.769928080322998, + 13.009135615287599 + ], + [ + 77.769892793060905, + 13.009327946629799 + ], + [ + 77.769771574673001, + 13.009368652413 + ], + [ + 77.769894024666797, + 13.009677857031001 + ], + [ + 77.769925499107401, + 13.0097573179499 + ], + [ + 77.769961737057798, + 13.009898717990801 + ], + [ + 77.769980142029794, + 13.009970531900599 + ], + [ + 77.770008599011405, + 13.0100382503104 + ], + [ + 77.770053964416604, + 13.010192245313201 + ], + [ + 77.770079818755903, + 13.010251150759199 + ], + [ + 77.770155018999304, + 13.010422483253601 + ], + [ + 77.770180501005598, + 13.010480539927199 + ], + [ + 77.770199723872096, + 13.0106141878132 + ], + [ + 77.770221456616795, + 13.0107652880271 + ], + [ + 77.770230228003399, + 13.0108262728764 + ], + [ + 77.770286608219095, + 13.010944639904499 + ], + [ + 77.770353937445705, + 13.0110859931265 + ], + [ + 77.770354456115697, + 13.011101417106699 + ], + [ + 77.770369839169206, + 13.011559035991899 + ], + [ + 77.770456109612894, + 13.011614395853501 + ], + [ + 77.770500614908499, + 13.011739168581 + ], + [ + 77.770501962725902, + 13.011743817092 + ], + [ + 77.770513416692694, + 13.011783313201001 + ], + [ + 77.770516438800797, + 13.0117939689331 + ], + [ + 77.770534546624404, + 13.0118578240973 + ], + [ + 77.770547586232496, + 13.0119038044175 + ], + [ + 77.770576363579096, + 13.012005284261299 + ], + [ + 77.770621616002003, + 13.0121648608964 + ], + [ + 77.770670171536906, + 13.012336082075601 + ], + [ + 77.770740076070496, + 13.012434472113201 + ], + [ + 77.770783170866807, + 13.012495127184399 + ], + [ + 77.770857638786694, + 13.0125999397551 + ], + [ + 77.770878235084894, + 13.012677144553001 + ], + [ + 77.770883299099594, + 13.0126961277908 + ], + [ + 77.770888703395897, + 13.0127163855819 + ], + [ + 77.770896868480307, + 13.012746992050101 + ], + [ + 77.770993218279003, + 13.013108142702601 + ], + [ + 77.771065733013003, + 13.0133794152941 + ], + [ + 77.771076272597099, + 13.013418845236799 + ], + [ + 77.771105503514704, + 13.013561000846099 + ], + [ + 77.771120875221996, + 13.013635757441101 + ], + [ + 77.771126553913504, + 13.0136633742966 + ], + [ + 77.771159255873499, + 13.013822413670299 + ], + [ + 77.771224007935203, + 13.014001537116799 + ], + [ + 77.771273740789596, + 13.0144172047981 + ], + [ + 77.771367209633098, + 13.0146715400611 + ], + [ + 77.771460070805702, + 13.015041552895401 + ], + [ + 77.771461629975207, + 13.015047707019599 + ], + [ + 77.771469750408698, + 13.015046041869001 + ], + [ + 77.771672074558595, + 13.0151405922416 + ], + [ + 77.7717194613423, + 13.015238451076399 + ], + [ + 77.771743857451796, + 13.015229742465699 + ], + [ + 77.771874467039197, + 13.0151831198661 + ], + [ + 77.771984292136295, + 13.0151439170403 + ], + [ + 77.772125779690398, + 13.0150934112066 + ], + [ + 77.772389545944407, + 13.0149998592572 + ], + [ + 77.772513288978203, + 13.0149561100777 + ], + [ + 77.772540618682001, + 13.0149464477478 + ], + [ + 77.772582206611901, + 13.014934572479 + ], + [ + 77.772661897431306, + 13.014911816705901 + ], + [ + 77.772831085725898, + 13.0148635038225 + ], + [ + 77.772847172316901, + 13.0148591124003 + ], + [ + 77.772866332834496, + 13.014829606714301 + ], + [ + 77.772874586654098, + 13.0148168955435 + ], + [ + 77.772962367169995, + 13.0146817162784 + ], + [ + 77.773155739794205, + 13.0143839296091 + ], + [ + 77.773156964314396, + 13.014382043041101 + ], + [ + 77.7734779725088, + 13.0138876996403 + ], + [ + 77.773554162905398, + 13.013804479952 + ], + [ + 77.773756238769096, + 13.013583759121699 + ], + [ + 77.773890637878097, + 13.0134369603187 + ], + [ + 77.774063031735693, + 13.013248660605299 + ], + [ + 77.774144447927199, + 13.013159732882 + ], + [ + 77.774141629634798, + 13.0131323899669 + ], + [ + 77.774097777789905, + 13.012706887817499 + ], + [ + 77.774042067790106, + 13.012166341069101 + ], + [ + 77.774041959385698, + 13.012165291676601 + ], + [ + 77.774038117710901, + 13.012128017847701 + ], + [ + 77.774017338457099, + 13.011926393201099 + ], + [ + 77.773998709337903, + 13.0117456283176 + ], + [ + 77.773975174923393, + 13.011517266172 + ], + [ + 77.773968454074705, + 13.0114520520684 + ], + [ + 77.773963855383798, + 13.0114074252379 + ], + [ + 77.773956688434595, + 13.0113378836182 + ], + [ + 77.773954173809301, + 13.011313484046999 + ], + [ + 77.7739483730806, + 13.0112571947604 + ], + [ + 77.773943694997897, + 13.011211806381301 + ], + [ + 77.773937780737796, + 13.0111544198797 + ], + [ + 77.773932334218202, + 13.0111015657123 + ], + [ + 77.773924139748402, + 13.0110220516693 + ], + [ + 77.773922947019898, + 13.0110104812524 + ], + [ + 77.773919850992797, + 13.0109804394855 + ], + [ + 77.773917866184902, + 13.0109611831256 + ], + [ + 77.7739147959512, + 13.0109313894934 + ], + [ + 77.773911645180803, + 13.0109008153572 + ], + [ + 77.773910231393103, + 13.010887094710901 + ], + [ + 77.773908252808198, + 13.010867900612601 + ], + [ + 77.773908006026105, + 13.010865508570999 + ], + [ + 77.773907205613796, + 13.010857735999201 + ], + [ + 77.773905472790204, + 13.0108409249201 + ], + [ + 77.773904772627802, + 13.01083413137 + ], + [ + 77.773902274498994, + 13.010809887892201 + ], + [ + 77.773901137533201, + 13.0107988579623 + ], + [ + 77.773862418322594, + 13.0107594089251 + ], + [ + 77.773679267647907, + 13.0105728013218 + ], + [ + 77.773669035790206, + 13.010562377223801 + ], + [ + 77.773505586015304, + 13.0103958444345 + ], + [ + 77.773399654105603, + 13.0102879139988 + ], + [ + 77.773311529589293, + 13.010041254697599 + ], + [ + 77.773301973221805, + 13.009993408135101 + ], + [ + 77.773284662276595, + 13.0099067324822 + ], + [ + 77.773257635987804, + 13.0097714134286 + ], + [ + 77.773214089032606, + 13.009553373080401 + ], + [ + 77.773202509207493, + 13.0093662265679 + ], + [ + 77.773194058205604, + 13.0092296429632 + ], + [ + 77.773193526965201, + 13.009221054523399 + ], + [ + 77.773187778045596, + 13.0091281406945 + ], + [ + 77.773178785892298, + 13.0089828188003 + ], + [ + 77.773167714915303, + 13.0088038914945 + ], + [ + 77.773213983006002, + 13.008691820485399 + ], + [ + 77.773450470178403, + 13.008118993454399 + ], + [ + 77.773445954945601, + 13.008045231133901 + ], + [ + 77.773440060910303, + 13.0079489576413 + ], + [ + 77.773414071891906, + 13.0075243975152 + ], + [ + 77.773409588750994, + 13.0074447344041 + ], + [ + 77.773405028508606, + 13.0073636873376 + ], + [ + 77.773401584776906, + 13.0072980496917 + ], + [ + 77.773364316929502, + 13.006587739538 + ], + [ + 77.773364051613399, + 13.006582684724901 + ], + [ + 77.773363780386404, + 13.0065775125443 + ], + [ + 77.773360014038801, + 13.006505720454699 + ], + [ + 77.773358249059001, + 13.006472086396901 + ], + [ + 77.773354382217306, + 13.006398380356901 + ], + [ + 77.773364822640502, + 13.006387232967001 + ], + [ + 77.773568274317597, + 13.0061700197072 + ], + [ + 77.773861000741903, + 13.0061783439315 + ], + [ + 77.774178447296606, + 13.0063466691721 + ], + [ + 77.774211383858301, + 13.006349059411001 + ], + [ + 77.774359355474004, + 13.0063597999645 + ], + [ + 77.774477596926999, + 13.0063077466768 + ], + [ + 77.774648733863799, + 13.0062614995699 + ], + [ + 77.774696301789007, + 13.0062486452358 + ], + [ + 77.774903477903706, + 13.0061435230605 + ], + [ + 77.775105295955598, + 13.006041119224401 + ], + [ + 77.775273402963805, + 13.005996055894 + ], + [ + 77.775726423806702, + 13.005874616999799 + ], + [ + 77.775755347962999, + 13.0058668633386 + ], + [ + 77.775836368666006, + 13.0057554582372 + ], + [ + 77.775770867761295, + 13.005344429729799 + ], + [ + 77.775756031336698, + 13.005251327884199 + ], + [ + 77.775746020917694, + 13.005188512117099 + ], + [ + 77.775737640602799, + 13.0051359242667 + ], + [ + 77.775735705436006, + 13.0051237782688 + ], + [ + 77.775710864273805, + 13.0046436503454 + ], + [ + 77.775685813541003, + 13.0044732809937 + ], + [ + 77.775623847774398, + 13.0040518571173 + ], + [ + 77.775623473243499, + 13.0040484149901 + ], + [ + 77.775602525596497, + 13.0038559274831 + ], + [ + 77.775569550331497, + 13.003552924692601 + ], + [ + 77.775441094823506, + 13.0034577835014 + ], + [ + 77.774780671003001, + 13.002968637559499 + ], + [ + 77.774482928356903, + 13.0029335813737 + ], + [ + 77.774478264361406, + 13.0029352373321 + ], + [ + 77.774054231005096, + 13.003085761573001 + ], + [ + 77.774038651591198, + 13.0030912919997 + ], + [ + 77.773972647072398, + 13.003093174644199 + ], + [ + 77.7736969363051, + 13.0031010396124 + ], + [ + 77.773502610875994, + 13.0031065827774 + ], + [ + 77.773116815193802, + 13.0030437850656 + ], + [ + 77.773116258225301, + 13.003043651004401 + ], + [ + 77.772974297800403, + 13.0030094014182 + ], + [ + 77.772879112879906, + 13.0029864374319 + ], + [ + 77.7728693460149, + 13.002984081176001 + ], + [ + 77.772850686789496, + 13.0029820475792 + ], + [ + 77.772752366874101, + 13.002971334359501 + ], + [ + 77.772738759140793, + 13.0029698519958 + ], + [ + 77.772714520829496, + 13.002951456665601 + ], + [ + 77.772707701781101, + 13.0029462821814 + ], + [ + 77.7726174747269, + 13.002877805849 + ], + [ + 77.772559453605695, + 13.002527477560299 + ], + [ + 77.772560342758197, + 13.0025263353046 + ], + [ + 77.772922132556403, + 13.0020617091084 + ], + [ + 77.7732786289355, + 13.001918765737599 + ], + [ + 77.773334040124396, + 13.001896547334599 + ], + [ + 77.773355098270699, + 13.0018881590413 + ], + [ + 77.773652273751907, + 13.001769783390801 + ], + [ + 77.773725945777798, + 13.0015230852448 + ], + [ + 77.773740475529095, + 13.0014744292627 + ], + [ + 77.773794810281004, + 13.0012924858422 + ], + [ + 77.773800340623197, + 13.0012739648206 + ], + [ + 77.773807867611595, + 13.0012717263541 + ], + [ + 77.774074675103407, + 13.001192364768 + ], + [ + 77.774199457816394, + 13.001155247956801 + ], + [ + 77.774748294692301, + 13.0011157581941 + ], + [ + 77.7747428530989, + 13.000432915835599 + ], + [ + 77.774738730128405, + 12.999920088037699 + ], + [ + 77.774737664757794, + 12.9997875618155 + ], + [ + 77.774846393528406, + 12.9989695773634 + ], + [ + 77.774951442451396, + 12.998178225817799 + ], + [ + 77.774947044638495, + 12.9981758935077 + ], + [ + 77.774945663019693, + 12.9981751603353 + ], + [ + 77.774542792298206, + 12.997961466843901 + ], + [ + 77.774454407984393, + 12.997914584751401 + ], + [ + 77.774456703623301, + 12.997893210418599 + ], + [ + 77.774474917803602, + 12.9977236373777 + ], + [ + 77.774494328229196, + 12.997542927256699 + ], + [ + 77.774552519877801, + 12.9973575751307 + ], + [ + 77.774586365614496, + 12.997249767946 + ], + [ + 77.774638904212793, + 12.997082422356799 + ], + [ + 77.774635464984996, + 12.997066465063099 + ], + [ + 77.774575829205702, + 12.996789799925599 + ], + [ + 77.7745755912688, + 12.9967886977172 + ], + [ + 77.774502102856104, + 12.9964477698694 + ], + [ + 77.774503824421799, + 12.996440053438899 + ], + [ + 77.774576854881801, + 12.996112712723599 + ], + [ + 77.7746521393547, + 12.995775263345299 + ], + [ + 77.774655974712303, + 12.9957580738666 + ], + [ + 77.774652142382095, + 12.995750919939001 + ], + [ + 77.774634841407305, + 12.995718624427001 + ], + [ + 77.774614907488896, + 12.9956814150281 + ], + [ + 77.774570838595295, + 12.9955991533919 + ], + [ + 77.774540106666905, + 12.995541788139301 + ], + [ + 77.774510518614903, + 12.9954865578305 + ], + [ + 77.774464938951198, + 12.995484437060099 + ], + [ + 77.771339243764203, + 12.995338984676501 + ], + [ + 77.767916575938699, + 12.995270335514499 + ], + [ + 77.766859374348101, + 12.9953912192712 + ], + [ + 77.766654152729103, + 12.993257477632699 + ], + [ + 77.766493162576793, + 12.991925553327601 + ], + [ + 77.766467128720095, + 12.9917597320641 + ], + [ + 77.766448638086402, + 12.991641959248501 + ], + [ + 77.766430227759201, + 12.9915246977537 + ], + [ + 77.766321205991403, + 12.9909235704487 + ], + [ + 77.766344731604605, + 12.9904070723172 + ], + [ + 77.7665888615699, + 12.988683646345899 + ], + [ + 77.766712354994795, + 12.987950980783401 + ], + [ + 77.767211238897701, + 12.986784109631399 + ], + [ + 77.7675273491692, + 12.986278835223599 + ], + [ + 77.767661239815794, + 12.9859827510548 + ], + [ + 77.766855526243305, + 12.9854511612377 + ], + [ + 77.766455161875697, + 12.985610777415101 + ], + [ + 77.766298352767294, + 12.985755848983199 + ], + [ + 77.766055855157504, + 12.9858659827858 + ], + [ + 77.765533115164402, + 12.985979099692299 + ], + [ + 77.765057923185793, + 12.9859841576083 + ], + [ + 77.764547763902996, + 12.986132988827199 + ], + [ + 77.764099583674707, + 12.986376761752799 + ], + [ + 77.763928736661299, + 12.9863546793898 + ], + [ + 77.763780672959498, + 12.986188951466501 + ], + [ + 77.763000438751305, + 12.9864569184506 + ], + [ + 77.762901906381899, + 12.986362365165199 + ], + [ + 77.761868735522398, + 12.986600404489799 + ], + [ + 77.761766505038906, + 12.986171283255899 + ], + [ + 77.760550697478294, + 12.9864232098268 + ], + [ + 77.760256686046205, + 12.9862829312759 + ], + [ + 77.759320931801994, + 12.986366778984699 + ], + [ + 77.758901997026697, + 12.9849715347807 + ], + [ + 77.758284771008405, + 12.9825296501811 + ], + [ + 77.758279843366594, + 12.9825101554416 + ], + [ + 77.758277737840601, + 12.9825018247467 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "67", + "group": "BYRATHI", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "2", + "ward_name": "2 - Byrathi", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಬೈರತಿ", + "dig_ward_n": "BYRATHI", + "Assembly": "174 - Mahadevapura", + "Slno": "2" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.690818504101898, + 13.0325082139499 + ], + [ + 77.690914702054101, + 13.0324903050691 + ], + [ + 77.694379544547004, + 13.0267388802321 + ], + [ + 77.694284656664394, + 13.026628623052099 + ], + [ + 77.6942324872672, + 13.0265680041491 + ], + [ + 77.694095775982802, + 13.026409149844801 + ], + [ + 77.693917210171193, + 13.026263460000701 + ], + [ + 77.693871112830607, + 13.0262311489667 + ], + [ + 77.693328275471501, + 13.025850647289101 + ], + [ + 77.692729770575497, + 13.025369456217 + ], + [ + 77.692665489905394, + 13.0253177750955 + ], + [ + 77.692218979901199, + 13.0249455133773 + ], + [ + 77.692028701579801, + 13.0247868754095 + ], + [ + 77.691948453121199, + 13.0247199701941 + ], + [ + 77.691708551131796, + 13.0245271094022 + ], + [ + 77.691371067046106, + 13.0242562172732 + ], + [ + 77.690900367596797, + 13.0238602365368 + ], + [ + 77.690646531876197, + 13.0236640231126 + ], + [ + 77.690544998072994, + 13.023585538550099 + ], + [ + 77.690368467968995, + 13.0234490811489 + ], + [ + 77.690318938412105, + 13.0234085526578 + ], + [ + 77.690189978903703, + 13.0233030302785 + ], + [ + 77.690072758616594, + 13.0232071125146 + ], + [ + 77.689464400691506, + 13.022700765481 + ], + [ + 77.689216859081498, + 13.0224933011727 + ], + [ + 77.688769930781902, + 13.0221117483364 + ], + [ + 77.688655566196701, + 13.022030975797399 + ], + [ + 77.688594120263502, + 13.021987577638599 + ], + [ + 77.688587152643095, + 13.0219826560987 + ], + [ + 77.688389973559595, + 13.022026207978101 + ], + [ + 77.688246515714297, + 13.0220578940524 + ], + [ + 77.6878575928597, + 13.022143797153801 + ], + [ + 77.687025152958498, + 13.022322941321599 + ], + [ + 77.686459642725197, + 13.0225320630891 + ], + [ + 77.685990562536603, + 13.022605807749599 + ], + [ + 77.685404208631496, + 13.0226977051828 + ], + [ + 77.685050576175897, + 13.022744279865799 + ], + [ + 77.684600324556399, + 13.022802018032399 + ], + [ + 77.684184581970698, + 13.022856010343 + ], + [ + 77.683961562266106, + 13.0228933261081 + ], + [ + 77.683829724217205, + 13.022895820832099 + ], + [ + 77.683798007704993, + 13.023060636384701 + ], + [ + 77.6837053951499, + 13.023541891021001 + ], + [ + 77.683686029900898, + 13.0236685638164 + ], + [ + 77.683682952380707, + 13.0237036013964 + ], + [ + 77.683679887024496, + 13.023739768066701 + ], + [ + 77.683654885732096, + 13.0238777914011 + ], + [ + 77.683607755882306, + 13.024134088589999 + ], + [ + 77.683605346789605, + 13.024147190770201 + ], + [ + 77.683602462468698, + 13.024162875195801 + ], + [ + 77.6836014868056, + 13.0241681799706 + ], + [ + 77.683543373163701, + 13.0244842063248 + ], + [ + 77.683428052960707, + 13.0252182621701 + ], + [ + 77.683428588189102, + 13.0252679421486 + ], + [ + 77.683429135584106, + 13.0253187512173 + ], + [ + 77.683371651780703, + 13.0257021509696 + ], + [ + 77.683300215560806, + 13.0260732738648 + ], + [ + 77.6832937055336, + 13.0261251118021 + ], + [ + 77.683293492540301, + 13.026126806929501 + ], + [ + 77.683274228795995, + 13.026280189636701 + ], + [ + 77.683224753144401, + 13.026676504205099 + ], + [ + 77.683218978123804, + 13.026722763429101 + ], + [ + 77.683200546194698, + 13.026870403816901 + ], + [ + 77.683186603930693, + 13.027073112501601 + ], + [ + 77.683181458098304, + 13.027147925352899 + ], + [ + 77.683147774073305, + 13.027637688419199 + ], + [ + 77.683148248710197, + 13.027922453829699 + ], + [ + 77.683148723543198, + 13.0282068036814 + ], + [ + 77.683150142394695, + 13.0282814500651 + ], + [ + 77.683150193362195, + 13.028284128038599 + ], + [ + 77.683151779881399, + 13.0282838676937 + ], + [ + 77.683150527864598, + 13.028301747576901 + ], + [ + 77.683150595915507, + 13.028305326939799 + ], + [ + 77.683152713751298, + 13.028416796605301 + ], + [ + 77.683156205413397, + 13.0285894962198 + ], + [ + 77.683160110302595, + 13.0287825861025 + ], + [ + 77.683197956428302, + 13.0290581465249 + ], + [ + 77.683231970406595, + 13.0293057980666 + ], + [ + 77.683243559453103, + 13.029472802017899 + ], + [ + 77.683256579958396, + 13.0296657631082 + ], + [ + 77.683261219661702, + 13.0297119948396 + ], + [ + 77.683287118224399, + 13.029970037899201 + ], + [ + 77.683290771117598, + 13.0300064321822 + ], + [ + 77.683334809062401, + 13.0307264158264 + ], + [ + 77.683355389724099, + 13.030990507809101 + ], + [ + 77.683361274793796, + 13.0310660230052 + ], + [ + 77.683376860002795, + 13.0312660064826 + ], + [ + 77.683381099497396, + 13.031320402511399 + ], + [ + 77.683388270926699, + 13.031412425255599 + ], + [ + 77.683396045246596, + 13.0316528677098 + ], + [ + 77.683403968593197, + 13.0316934373837 + ], + [ + 77.683486473519096, + 13.031933611328 + ], + [ + 77.683521201877596, + 13.0332087522295 + ], + [ + 77.683542560469803, + 13.033210072933 + ], + [ + 77.683571824381204, + 13.0332195983421 + ], + [ + 77.683628474327406, + 13.033238038057601 + ], + [ + 77.683630155269299, + 13.033238585244099 + ], + [ + 77.683934916175104, + 13.033271807546299 + ], + [ + 77.686465587443394, + 13.033548204530399 + ], + [ + 77.686915706723099, + 13.0334054309906 + ], + [ + 77.687104976024202, + 13.0333573991575 + ], + [ + 77.687329156062006, + 13.033300507456 + ], + [ + 77.687646345076999, + 13.033220011871499 + ], + [ + 77.688084473317701, + 13.033104501165299 + ], + [ + 77.688450237639501, + 13.033004513231001 + ], + [ + 77.689167986993098, + 13.032859592719101 + ], + [ + 77.689791918591695, + 13.0326873679037 + ], + [ + 77.690818504101898, + 13.0325082139499 + ] + ] + ], + [ + [ + [ + 77.679268492335794, + 13.0605362768601 + ], + [ + 77.679293406058207, + 13.0603286906286 + ], + [ + 77.679349318396206, + 13.059862818269 + ], + [ + 77.679387180990105, + 13.059512354780599 + ], + [ + 77.679467165547905, + 13.058526641099499 + ], + [ + 77.679370571881805, + 13.0583811910485 + ], + [ + 77.679194595342906, + 13.058116207244099 + ], + [ + 77.679168184003203, + 13.0580764371361 + ], + [ + 77.679136994721404, + 13.0580294732927 + ], + [ + 77.679135460463499, + 13.058027163909999 + ], + [ + 77.679128241797002, + 13.058028621797201 + ], + [ + 77.679003639520602, + 13.0580537831237 + ], + [ + 77.678944938702699, + 13.058064372904401 + ], + [ + 77.678936073988893, + 13.058065972512299 + ], + [ + 77.678905340398202, + 13.058043831347399 + ], + [ + 77.678884795320101, + 13.0580290310991 + ], + [ + 77.678920080875002, + 13.057752939280199 + ], + [ + 77.678993726135801, + 13.057520115409901 + ], + [ + 77.679005980495901, + 13.057525743802501 + ], + [ + 77.679042637087093, + 13.0575425803942 + ], + [ + 77.679052502387805, + 13.057544389687401 + ], + [ + 77.679061767560299, + 13.0575460895682 + ], + [ + 77.679227842582193, + 13.057576550961199 + ], + [ + 77.679239152156697, + 13.0574838053631 + ], + [ + 77.679270442140705, + 13.0572272163764 + ], + [ + 77.679318423411203, + 13.056833745876901 + ], + [ + 77.679344742904306, + 13.0567193281427 + ], + [ + 77.679349577276298, + 13.0566719439403 + ], + [ + 77.679353037492902, + 13.056637950241701 + ], + [ + 77.679370315891305, + 13.056466134584999 + ], + [ + 77.679373094169094, + 13.056450321826 + ], + [ + 77.679382178569597, + 13.0563481702819 + ], + [ + 77.679388796006293, + 13.0562823692884 + ], + [ + 77.679404371574407, + 13.0561889109854 + ], + [ + 77.679415650155605, + 13.0561212352523 + ], + [ + 77.679459850616396, + 13.0558560234692 + ], + [ + 77.679473816425002, + 13.0557722244691 + ], + [ + 77.679489975791896, + 13.0556756552223 + ], + [ + 77.679469620180299, + 13.0556785772255 + ], + [ + 77.679387669485095, + 13.055690327610501 + ], + [ + 77.679370850440904, + 13.0556927404877 + ], + [ + 77.679255392578099, + 13.055637029929301 + ], + [ + 77.679214709577593, + 13.055595841228699 + ], + [ + 77.679140583229795, + 13.055520791927901 + ], + [ + 77.679082372738193, + 13.055461856470099 + ], + [ + 77.679035219835995, + 13.0553232814542 + ], + [ + 77.679027403372601, + 13.055300310144199 + ], + [ + 77.678924415375704, + 13.054997642054699 + ], + [ + 77.678726207432206, + 13.054164944173699 + ], + [ + 77.678721551534807, + 13.054145384663499 + ], + [ + 77.678715205745604, + 13.0541047145335 + ], + [ + 77.678708658994097, + 13.0540627537557 + ], + [ + 77.678703300044106, + 13.054028406057199 + ], + [ + 77.678694831108999, + 13.053974130514099 + ], + [ + 77.678694007583601, + 13.0539688534005 + ], + [ + 77.678705193465404, + 13.053968980519199 + ], + [ + 77.678719565230793, + 13.053969661824 + ], + [ + 77.678741918038696, + 13.0539707220652 + ], + [ + 77.678750998986999, + 13.0539712440837 + ], + [ + 77.678741414863296, + 13.0539353258307 + ], + [ + 77.678736087490293, + 13.053915362241201 + ], + [ + 77.678733036807799, + 13.0539039282157 + ], + [ + 77.678720346362098, + 13.0538563714455 + ], + [ + 77.678669729805094, + 13.053666959494301 + ], + [ + 77.678665719198506, + 13.053652040254599 + ], + [ + 77.678637967081698, + 13.0535282483331 + ], + [ + 77.678521576855999, + 13.053338127411999 + ], + [ + 77.678508797192194, + 13.0533172518151 + ], + [ + 77.678508539292295, + 13.0533091394701 + ], + [ + 77.678499727295801, + 13.0530466449651 + ], + [ + 77.678494461983803, + 13.0528152702112 + ], + [ + 77.678494380062801, + 13.0528116873715 + ], + [ + 77.678492395078706, + 13.0527244599828 + ], + [ + 77.678447047874201, + 13.052590708066299 + ], + [ + 77.678428708766603, + 13.052536616031899 + ], + [ + 77.678406054301604, + 13.052469759739299 + ], + [ + 77.678399394243101, + 13.0524501044346 + ], + [ + 77.678397065418906, + 13.0524432321918 + ], + [ + 77.678395723502305, + 13.052439271241299 + ], + [ + 77.678369685480206, + 13.0524409854385 + ], + [ + 77.678280788986797, + 13.0524468377287 + ], + [ + 77.678203176798405, + 13.0524521241374 + ], + [ + 77.677955147056593, + 13.0524634981267 + ], + [ + 77.676502577094993, + 13.0525301038387 + ], + [ + 77.676260241055999, + 13.0525351135304 + ], + [ + 77.676174386346304, + 13.0525368883075 + ], + [ + 77.676088921254603, + 13.052538820728399 + ], + [ + 77.675805899026798, + 13.052545218576499 + ], + [ + 77.675645840497495, + 13.0525491332623 + ], + [ + 77.675546056790793, + 13.052412889496701 + ], + [ + 77.675341320018703, + 13.052133342980399 + ], + [ + 77.675255408084297, + 13.0520167927804 + ], + [ + 77.675228003484193, + 13.051985458093901 + ], + [ + 77.675200598891294, + 13.0519541234031 + ], + [ + 77.675096187420905, + 13.0518309891764 + ], + [ + 77.674843654639801, + 13.0515366161214 + ], + [ + 77.6746898358289, + 13.0513710822691 + ], + [ + 77.674414151579597, + 13.051172931941901 + ], + [ + 77.674350259053597, + 13.051135165707599 + ], + [ + 77.673967291898407, + 13.050908797855399 + ], + [ + 77.673936038931899, + 13.050894441106999 + ], + [ + 77.673904737385101, + 13.0508755679659 + ], + [ + 77.673833399623305, + 13.050828878197599 + ], + [ + 77.673820370178504, + 13.050819768642 + ], + [ + 77.673777694430896, + 13.0507899313405 + ], + [ + 77.673591110128697, + 13.050788679554699 + ], + [ + 77.673533376045299, + 13.050788291730999 + ], + [ + 77.673181596382804, + 13.050785930643199 + ], + [ + 77.672981757448198, + 13.0507857377722 + ], + [ + 77.672949423473398, + 13.0508060655461 + ], + [ + 77.672450339355194, + 13.051119833994999 + ], + [ + 77.672362853475207, + 13.0511514791468 + ], + [ + 77.672103269543001, + 13.0512453765839 + ], + [ + 77.671555515646304, + 13.051238614339001 + ], + [ + 77.671454639456101, + 13.051188408606601 + ], + [ + 77.671397460459104, + 13.0511599510951 + ], + [ + 77.671358095125896, + 13.051140358713001 + ], + [ + 77.671293229840501, + 13.051108075260901 + ], + [ + 77.671141279839503, + 13.0509018674048 + ], + [ + 77.670696944749906, + 13.050658026897899 + ], + [ + 77.670045830291599, + 13.050250324170401 + ], + [ + 77.670026850648597, + 13.0501447324295 + ], + [ + 77.670019492811207, + 13.050103796713501 + ], + [ + 77.669515726700993, + 13.050083417791001 + ], + [ + 77.669463509172402, + 13.050081305345101 + ], + [ + 77.669402701911594, + 13.0500160295109 + ], + [ + 77.669335372202696, + 13.049943752017199 + ], + [ + 77.669320768622796, + 13.0499280745997 + ], + [ + 77.668705152876598, + 13.049929910734701 + ], + [ + 77.668082050970497, + 13.049931822630001 + ], + [ + 77.667815415050001, + 13.0499323147105 + ], + [ + 77.667456348236598, + 13.0499597320898 + ], + [ + 77.665978049847794, + 13.0500167562419 + ], + [ + 77.665763911374199, + 13.050025738897199 + ], + [ + 77.664245584971994, + 13.0508081319186 + ], + [ + 77.664287067026507, + 13.050945727260901 + ], + [ + 77.664343448843894, + 13.051132746818601 + ], + [ + 77.6643941326506, + 13.051300863918 + ], + [ + 77.664435912079696, + 13.051439447150999 + ], + [ + 77.664513698428095, + 13.051697461675801 + ], + [ + 77.664614889009201, + 13.0520577727009 + ], + [ + 77.664622065415699, + 13.0520825418178 + ], + [ + 77.664629229719097, + 13.0521061818287 + ], + [ + 77.664758020019207, + 13.052784651203501 + ], + [ + 77.664928917775896, + 13.053684015432999 + ], + [ + 77.665258615583895, + 13.0547838743881 + ], + [ + 77.665266681519398, + 13.0548991198993 + ], + [ + 77.665349755661495, + 13.0560860655546 + ], + [ + 77.665400236208797, + 13.0567653411224 + ], + [ + 77.665465481893705, + 13.0576398209957 + ], + [ + 77.665519348192305, + 13.058902872863101 + ], + [ + 77.665554615534703, + 13.059588467875001 + ], + [ + 77.665561556266496, + 13.0597233870291 + ], + [ + 77.665596145114606, + 13.0606388349075 + ], + [ + 77.665681773622296, + 13.060811242225901 + ], + [ + 77.6659651425216, + 13.0613817820355 + ], + [ + 77.665990670096306, + 13.0614331804316 + ], + [ + 77.666112883095494, + 13.0616792440824 + ], + [ + 77.666139307367104, + 13.0617324471926 + ], + [ + 77.666388505744195, + 13.0622341838518 + ], + [ + 77.666389054829494, + 13.062235288443 + ], + [ + 77.666499487180801, + 13.062471362661601 + ], + [ + 77.666758147019294, + 13.063024305913901 + ], + [ + 77.667002268710306, + 13.063546167923301 + ], + [ + 77.667295890399501, + 13.0640511266245 + ], + [ + 77.667297242942695, + 13.064040555742199 + ], + [ + 77.667322620140595, + 13.063842241764201 + ], + [ + 77.670026697934702, + 13.0657818970316 + ], + [ + 77.670967068617998, + 13.0657261481444 + ], + [ + 77.670983167007094, + 13.065725193956 + ], + [ + 77.672374035957404, + 13.0656478977684 + ], + [ + 77.672405982852794, + 13.0656462366189 + ], + [ + 77.672836694764101, + 13.065522402061299 + ], + [ + 77.673043459747106, + 13.0654548940522 + ], + [ + 77.673296046437599, + 13.065421375851701 + ], + [ + 77.673374885960897, + 13.0654102561058 + ], + [ + 77.673454829865094, + 13.065403152495 + ], + [ + 77.674579087329107, + 13.065301504213499 + ], + [ + 77.674632466207399, + 13.065207377112101 + ], + [ + 77.674740871924698, + 13.0651197591702 + ], + [ + 77.675353573719207, + 13.064945841428701 + ], + [ + 77.675999012048806, + 13.0650255857453 + ], + [ + 77.676424651113393, + 13.0651344786784 + ], + [ + 77.676810731068102, + 13.0651089116491 + ], + [ + 77.677120031840403, + 13.065055114896101 + ], + [ + 77.677187687118206, + 13.065030892640999 + ], + [ + 77.676840658176999, + 13.0644208464141 + ], + [ + 77.676761876692893, + 13.0641666334276 + ], + [ + 77.676676027671803, + 13.0638836153963 + ], + [ + 77.6765952083218, + 13.063282310355699 + ], + [ + 77.676670120180106, + 13.0628822956244 + ], + [ + 77.6775287545059, + 13.0628736579618 + ], + [ + 77.677579250564406, + 13.0628708265769 + ], + [ + 77.677614192355406, + 13.062868879066199 + ], + [ + 77.677642486056101, + 13.0628673093979 + ], + [ + 77.677661557474806, + 13.0628646184497 + ], + [ + 77.677692282718496, + 13.0628602917726 + ], + [ + 77.677721865669596, + 13.0628592444367 + ], + [ + 77.677850710154303, + 13.062854840416 + ], + [ + 77.677915142981007, + 13.0628526378204 + ], + [ + 77.678093859064404, + 13.0628470591579 + ], + [ + 77.678169685915805, + 13.062844937148199 + ], + [ + 77.678452414427696, + 13.0628434858139 + ], + [ + 77.678465660383395, + 13.062844140766799 + ], + [ + 77.679133464383398, + 13.0628712281937 + ], + [ + 77.679330344067907, + 13.0624278922591 + ], + [ + 77.679606906039695, + 13.0619696229359 + ], + [ + 77.679574912117801, + 13.0613453539803 + ], + [ + 77.679572194924205, + 13.0612923360491 + ], + [ + 77.679450181814502, + 13.0611286839685 + ], + [ + 77.679448301529405, + 13.0611261622737 + ], + [ + 77.679396002233105, + 13.061056014623899 + ], + [ + 77.679376769498404, + 13.060977622310901 + ], + [ + 77.679308936426906, + 13.0607011280173 + ], + [ + 77.679285119689993, + 13.0606040499447 + ], + [ + 77.679268492335794, + 13.0605362768601 + ] + ] + ], + [ + [ + [ + 77.654999346240004, + 13.0499272605673 + ], + [ + 77.654987236839801, + 13.049881385126399 + ], + [ + 77.654894050413105, + 13.0495142099783 + ], + [ + 77.654846509876705, + 13.0488913583063 + ], + [ + 77.654874287357501, + 13.048809352457599 + ], + [ + 77.654931002629297, + 13.048641913129501 + ], + [ + 77.654975477226799, + 13.0485106104076 + ], + [ + 77.6550497858385, + 13.0482873786612 + ], + [ + 77.655083729146597, + 13.0481854078248 + ], + [ + 77.655118309662996, + 13.048080033698501 + ], + [ + 77.6556315942737, + 13.0480408873561 + ], + [ + 77.655798255343896, + 13.048115964427099 + ], + [ + 77.6561027884716, + 13.0481049328447 + ], + [ + 77.656129330761601, + 13.0472035937592 + ], + [ + 77.656129772195698, + 13.047188591144501 + ], + [ + 77.656139976802194, + 13.0468420633694 + ], + [ + 77.655826810663697, + 13.046793846864199 + ], + [ + 77.655197988391805, + 13.0466970280639 + ], + [ + 77.654642034778504, + 13.046649707407299 + ], + [ + 77.653860115919699, + 13.046583152415 + ], + [ + 77.653472700600602, + 13.046550030522599 + ], + [ + 77.653423763665103, + 13.046545846579001 + ], + [ + 77.653385770658502, + 13.046547365509801 + ], + [ + 77.6533483414362, + 13.0465477494126 + ], + [ + 77.653079710459807, + 13.046553686286 + ], + [ + 77.652871610852699, + 13.0465582848549 + ], + [ + 77.652865777540796, + 13.0465626312709 + ], + [ + 77.652782479335301, + 13.0466246948139 + ], + [ + 77.652716687098007, + 13.0466733369003 + ], + [ + 77.652533294261403, + 13.0468089267221 + ], + [ + 77.652172232846993, + 13.0470758728143 + ], + [ + 77.651302152647503, + 13.047301606256701 + ], + [ + 77.6505618485658, + 13.047492130047299 + ], + [ + 77.650320935487102, + 13.047582679379101 + ], + [ + 77.650218269674696, + 13.047622125488299 + ], + [ + 77.649982167579907, + 13.047731822382699 + ], + [ + 77.649679254155501, + 13.047786870583 + ], + [ + 77.649135077596597, + 13.047899722342301 + ], + [ + 77.648776652888998, + 13.047879678738299 + ], + [ + 77.648566905993803, + 13.0479766829332 + ], + [ + 77.648393301590801, + 13.047952487839501 + ], + [ + 77.648354660190293, + 13.0479472372482 + ], + [ + 77.648158432516198, + 13.0480158716313 + ], + [ + 77.647847635183197, + 13.0480337334634 + ], + [ + 77.647738285659301, + 13.048040499017301 + ], + [ + 77.647533133918699, + 13.048055785749799 + ], + [ + 77.647439628906795, + 13.048062753075101 + ], + [ + 77.647286807851302, + 13.0481844886669 + ], + [ + 77.647244326468694, + 13.048218329209 + ], + [ + 77.647204571844398, + 13.0483248850856 + ], + [ + 77.647204369919095, + 13.048414097497901 + ], + [ + 77.647235446231306, + 13.048460705448299 + ], + [ + 77.647352438348406, + 13.048636172543601 + ], + [ + 77.647468955978297, + 13.0488698628435 + ], + [ + 77.647268243273103, + 13.049058242576301 + ], + [ + 77.647424029306606, + 13.0494101016344 + ], + [ + 77.647239505380199, + 13.0494658453661 + ], + [ + 77.647230571167398, + 13.0494685440095 + ], + [ + 77.647045606300196, + 13.0495133483924 + ], + [ + 77.647308836254894, + 13.0498957266873 + ], + [ + 77.647386365078702, + 13.0499987495366 + ], + [ + 77.647854456604705, + 13.050620762284799 + ], + [ + 77.647994942010996, + 13.050725472844301 + ], + [ + 77.648015413898804, + 13.0509172347194 + ], + [ + 77.647947817300505, + 13.0511132860755 + ], + [ + 77.647744063318399, + 13.0515569067519 + ], + [ + 77.647476112813706, + 13.051975212013801 + ], + [ + 77.647253206617407, + 13.0527295708966 + ], + [ + 77.647206471579395, + 13.053370331012999 + ], + [ + 77.647154686651703, + 13.053591063868099 + ], + [ + 77.647100537686597, + 13.0542386753807 + ], + [ + 77.647138040421495, + 13.0542450668879 + ], + [ + 77.647176106984503, + 13.0542503233721 + ], + [ + 77.647323802487904, + 13.054274783782899 + ], + [ + 77.647332186569997, + 13.055061781247399 + ], + [ + 77.647304803469893, + 13.055349224858199 + ], + [ + 77.647302143029904, + 13.0553771480487 + ], + [ + 77.647292586932807, + 13.055530891786599 + ], + [ + 77.647281985318799, + 13.0557014475794 + ], + [ + 77.647193398173101, + 13.0556766774755 + ], + [ + 77.647159274800003, + 13.0556671365059 + ], + [ + 77.647098872895, + 13.055650248074199 + ], + [ + 77.646995361267798, + 13.056043155779401 + ], + [ + 77.646964927952197, + 13.056159779573701 + ], + [ + 77.647092817229506, + 13.0565954876782 + ], + [ + 77.647127805066305, + 13.056744189665199 + ], + [ + 77.647061128640999, + 13.056864572335 + ], + [ + 77.646908212989004, + 13.057269278424499 + ], + [ + 77.647034094073504, + 13.057516423193899 + ], + [ + 77.647128064917595, + 13.0575146162177 + ], + [ + 77.647398436383199, + 13.057509417175099 + ], + [ + 77.647469746184598, + 13.0575080454245 + ], + [ + 77.647787825707098, + 13.0575019282367 + ], + [ + 77.647939268984302, + 13.057607655082199 + ], + [ + 77.648067770523497, + 13.0576142434087 + ], + [ + 77.648508581945606, + 13.0576356998127 + ], + [ + 77.648552604307497, + 13.057643525654401 + ], + [ + 77.648640719194901, + 13.057659189242299 + ], + [ + 77.648892888586303, + 13.0577051626901 + ], + [ + 77.648921238693802, + 13.0578837008687 + ], + [ + 77.648958948334595, + 13.058121176316099 + ], + [ + 77.6489645395568, + 13.058146293902899 + ], + [ + 77.648989798234794, + 13.058259757017 + ], + [ + 77.649003070622598, + 13.0583583863715 + ], + [ + 77.649021420043496, + 13.058494746344 + ], + [ + 77.649037351650307, + 13.058613143609501 + ], + [ + 77.649066733905102, + 13.0588314945653 + ], + [ + 77.649081658758703, + 13.058830763426601 + ], + [ + 77.649448437893795, + 13.058812786385101 + ], + [ + 77.649544375946306, + 13.058808084581299 + ], + [ + 77.649591129704604, + 13.0588057931006 + ], + [ + 77.649860995513293, + 13.0588369038002 + ], + [ + 77.650027061226993, + 13.0588555275678 + ], + [ + 77.650126842329996, + 13.0588691846541 + ], + [ + 77.650798155254506, + 13.058848749774199 + ], + [ + 77.650962850052906, + 13.0588318240211 + ], + [ + 77.651078899645896, + 13.058819897821399 + ], + [ + 77.651128530983797, + 13.0588085263603 + ], + [ + 77.651605161336406, + 13.058699316955201 + ], + [ + 77.651619307460393, + 13.058729661326799 + ], + [ + 77.651632877725007, + 13.058760011604599 + ], + [ + 77.651716593526103, + 13.0594807373864 + ], + [ + 77.651749329876694, + 13.0596056993167 + ], + [ + 77.651773385968099, + 13.059697523529801 + ], + [ + 77.651802449882794, + 13.0598084654348 + ], + [ + 77.651851200399506, + 13.059943223823 + ], + [ + 77.651893291127607, + 13.0600595725435 + ], + [ + 77.651894433385095, + 13.0600627299227 + ], + [ + 77.651920496766294, + 13.060323909594899 + ], + [ + 77.651928523862495, + 13.0604043510848 + ], + [ + 77.651963440979799, + 13.0607542460343 + ], + [ + 77.651957467238702, + 13.0608450648146 + ], + [ + 77.651956404907395, + 13.060861217525799 + ], + [ + 77.651953704666695, + 13.0609022727867 + ], + [ + 77.651951549066297, + 13.060935046483801 + ], + [ + 77.651976275856498, + 13.061632663101699 + ], + [ + 77.651978239340494, + 13.0624637635998 + ], + [ + 77.652010493475998, + 13.0627875244375 + ], + [ + 77.652008608285598, + 13.063204233316799 + ], + [ + 77.651968066694195, + 13.0640459331531 + ], + [ + 77.651927317472698, + 13.064509926969 + ], + [ + 77.651887961658304, + 13.0649580519623 + ], + [ + 77.651831280872599, + 13.0657445847297 + ], + [ + 77.651793682787996, + 13.066275306888 + ], + [ + 77.651753705694205, + 13.066839614483101 + ], + [ + 77.6517321989257, + 13.067232535197499 + ], + [ + 77.651656361393705, + 13.0686180373198 + ], + [ + 77.651648676269502, + 13.0689230109693 + ], + [ + 77.6516282321696, + 13.0697588583091 + ], + [ + 77.651627660302694, + 13.0697773548042 + ], + [ + 77.651614429003203, + 13.070205009081301 + ], + [ + 77.651613513832501, + 13.070234585587899 + ], + [ + 77.651590558017602, + 13.070976565568699 + ], + [ + 77.651511394069701, + 13.071545385991801 + ], + [ + 77.651408899679595, + 13.0724103068139 + ], + [ + 77.651246272861897, + 13.0739003147528 + ], + [ + 77.651222391252801, + 13.074167761608599 + ], + [ + 77.651193200190704, + 13.074494671843 + ], + [ + 77.6511665399468, + 13.0747932329518 + ], + [ + 77.651076291845499, + 13.075402819966399 + ], + [ + 77.651051694647904, + 13.0755803632099 + ], + [ + 77.650898214125405, + 13.0762769430813 + ], + [ + 77.650891214438303, + 13.0763050074631 + ], + [ + 77.650851916381995, + 13.0764402729742 + ], + [ + 77.650662929285602, + 13.077090761460999 + ], + [ + 77.650665162866403, + 13.0772312241191 + ], + [ + 77.650668389698893, + 13.077434105482499 + ], + [ + 77.650671187424507, + 13.077610022286899 + ], + [ + 77.650671551861706, + 13.077632915015201 + ], + [ + 77.650676972017493, + 13.0779736829603 + ], + [ + 77.650514327373301, + 13.078599822931301 + ], + [ + 77.650496238905404, + 13.078650171334999 + ], + [ + 77.650154351930297, + 13.079601767773401 + ], + [ + 77.649989062846203, + 13.0800618245769 + ], + [ + 77.649960242917601, + 13.0801420418167 + ], + [ + 77.649941680830807, + 13.0801937059029 + ], + [ + 77.649887282403995, + 13.080345117440899 + ], + [ + 77.649875002825297, + 13.080379295096201 + ], + [ + 77.649794439462596, + 13.080718742695399 + ], + [ + 77.6497608281244, + 13.0808603594168 + ], + [ + 77.649611729602995, + 13.0812955430454 + ], + [ + 77.649585994467103, + 13.0813628824214 + ], + [ + 77.653498361884402, + 13.0818626431521 + ], + [ + 77.653977434026899, + 13.0819220774657 + ], + [ + 77.654104157247701, + 13.081933869289699 + ], + [ + 77.654721148797705, + 13.081993213681899 + ], + [ + 77.654794176193207, + 13.0816424235006 + ], + [ + 77.655186169649198, + 13.0801263234224 + ], + [ + 77.655186169649198, + 13.0801263234224 + ], + [ + 77.655218273771993, + 13.079997103919901 + ], + [ + 77.655251491056902, + 13.079863402997599 + ], + [ + 77.655317876042304, + 13.079591720506899 + ], + [ + 77.655317891078298, + 13.079591661632 + ], + [ + 77.655354961115293, + 13.079439951766901 + ], + [ + 77.655427652042903, + 13.0791326235334 + ], + [ + 77.655522311604102, + 13.078715879390201 + ], + [ + 77.655675549303197, + 13.0779339194661 + ], + [ + 77.655778545424198, + 13.077621737472599 + ], + [ + 77.6558929260963, + 13.0771818992537 + ], + [ + 77.655895504356394, + 13.077171721348501 + ], + [ + 77.655904880147602, + 13.077130748354399 + ], + [ + 77.655911929145503, + 13.0770999425479 + ], + [ + 77.656040620146598, + 13.076537540073099 + ], + [ + 77.656048951821404, + 13.0765011309021 + ], + [ + 77.656342093406195, + 13.075220050408101 + ], + [ + 77.656390698800493, + 13.0750221499926 + ], + [ + 77.656431622533105, + 13.074855523522301 + ], + [ + 77.656444361324404, + 13.0748036581072 + ], + [ + 77.656491174026101, + 13.074613054742599 + ], + [ + 77.656477680379496, + 13.074394738018199 + ], + [ + 77.656464113252795, + 13.074175233182901 + ], + [ + 77.656459032893807, + 13.074093040975599 + ], + [ + 77.6564646033884, + 13.073939899981699 + ], + [ + 77.656467502564595, + 13.0738601985234 + ], + [ + 77.656463487935198, + 13.0736324061762 + ], + [ + 77.656461632872293, + 13.0735271344388 + ], + [ + 77.6564322267227, + 13.072932329836799 + ], + [ + 77.656433429486299, + 13.072888271854501 + ], + [ + 77.6564345355998, + 13.0728477534392 + ], + [ + 77.656441661783205, + 13.072586751722 + ], + [ + 77.656469049176394, + 13.071583643695501 + ], + [ + 77.656468624164503, + 13.071059682717101 + ], + [ + 77.656467199439206, + 13.070990890783699 + ], + [ + 77.656466239619405, + 13.070944525205499 + ], + [ + 77.656455368510706, + 13.070466970321601 + ], + [ + 77.656453367659594, + 13.070095698187099 + ], + [ + 77.656452303366095, + 13.0698982789722 + ], + [ + 77.656450110141904, + 13.069491364699401 + ], + [ + 77.656446174132, + 13.068854516172401 + ], + [ + 77.656463446201499, + 13.068638654481299 + ], + [ + 77.656472710484195, + 13.0685112419216 + ], + [ + 77.656483092858394, + 13.0683684430909 + ], + [ + 77.656501169883001, + 13.068119816250499 + ], + [ + 77.656506644268106, + 13.0680445257383 + ], + [ + 77.656507703813503, + 13.0680299549257 + ], + [ + 77.656522688251997, + 13.0678238661379 + ], + [ + 77.656363208771396, + 13.067075693543799 + ], + [ + 77.656343866418496, + 13.0668827930799 + ], + [ + 77.656333853664194, + 13.066783268511101 + ], + [ + 77.656316414529599, + 13.066609938451 + ], + [ + 77.656289729893601, + 13.066344704130399 + ], + [ + 77.656239459631294, + 13.066006450169199 + ], + [ + 77.656231405455401, + 13.0659534588802 + ], + [ + 77.6562016251941, + 13.0657538902617 + ], + [ + 77.656151564310605, + 13.065650515230899 + ], + [ + 77.656094130390002, + 13.065288620854499 + ], + [ + 77.656035632224899, + 13.0649223161814 + ], + [ + 77.656014257377905, + 13.0647884738729 + ], + [ + 77.655937841611404, + 13.064309968079099 + ], + [ + 77.655925611572897, + 13.0642333879196 + ], + [ + 77.655898413291595, + 13.0640597650644 + ], + [ + 77.655870512042299, + 13.063426748837401 + ], + [ + 77.655863215357797, + 13.0632612072716 + ], + [ + 77.655861637091604, + 13.0632253878442 + ], + [ + 77.655857893220997, + 13.0631404471967 + ], + [ + 77.6558573845589, + 13.0631289016883 + ], + [ + 77.6558558272461, + 13.0630935761989 + ], + [ + 77.6558498507286, + 13.0629580686916 + ], + [ + 77.655849468604103, + 13.062949393757201 + ], + [ + 77.655826370790194, + 13.062425621027201 + ], + [ + 77.655817051366796, + 13.0622142992863 + ], + [ + 77.655804321310001, + 13.0619974395825 + ], + [ + 77.655801461618694, + 13.0619487238829 + ], + [ + 77.655799850337502, + 13.0619212728853 + ], + [ + 77.655784657103595, + 13.061662435390501 + ], + [ + 77.655754122519198, + 13.0612844548253 + ], + [ + 77.655722227669301, + 13.0608823098905 + ], + [ + 77.655716179131105, + 13.060806048273101 + ], + [ + 77.655696315313094, + 13.060648740093599 + ], + [ + 77.655662521401595, + 13.0603811094657 + ], + [ + 77.655627461120105, + 13.060103445231499 + ], + [ + 77.655531642564497, + 13.059598531512201 + ], + [ + 77.655481009351107, + 13.059333680983 + ], + [ + 77.655450544941999, + 13.0585311062203 + ], + [ + 77.655445665598094, + 13.0583979063362 + ], + [ + 77.655383526373399, + 13.057541453468099 + ], + [ + 77.655381973339701, + 13.0570728358488 + ], + [ + 77.655381692394599, + 13.056992662869099 + ], + [ + 77.655483010814294, + 13.0566652724559 + ], + [ + 77.655523660541107, + 13.0565349925768 + ], + [ + 77.655371191393797, + 13.0561000216998 + ], + [ + 77.655330006631004, + 13.055982526116599 + ], + [ + 77.655302363064607, + 13.055865476833601 + ], + [ + 77.655269082146901, + 13.0557245564433 + ], + [ + 77.655158105797994, + 13.055255933300399 + ], + [ + 77.655133385845204, + 13.0551522972903 + ], + [ + 77.655519538669495, + 13.055071543099499 + ], + [ + 77.655491664914607, + 13.054403320733099 + ], + [ + 77.655553487129296, + 13.0540447174488 + ], + [ + 77.655519200460304, + 13.0538542284336 + ], + [ + 77.655459207103405, + 13.0533060350546 + ], + [ + 77.655523295723697, + 13.0527283364033 + ], + [ + 77.655526964730996, + 13.0526944215923 + ], + [ + 77.655531209585604, + 13.052660500867599 + ], + [ + 77.655481679693906, + 13.0523022660329 + ], + [ + 77.655462305428401, + 13.052162139576099 + ], + [ + 77.655443856940195, + 13.052028710375399 + ], + [ + 77.655336478998905, + 13.051252082429199 + ], + [ + 77.655194287252598, + 13.0509339680069 + ], + [ + 77.655154939589494, + 13.0505391386314 + ], + [ + 77.655151734746397, + 13.0505086821034 + ], + [ + 77.655145086910494, + 13.050479390161 + ], + [ + 77.655135194798603, + 13.050441916091501 + ], + [ + 77.654999346240004, + 13.0499272605673 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "76", + "group": "GUTTAHALLI", + "Corporatio": "West", + "ac_no": "157", + "ac": "Malleshwaram", + "corporat_1": "5", + "ward_id": "9", + "ward_name": "9 - Guttahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಲ್ಲೇಶ್ವರಂ", + "ward_name_": "ಗುಟ್ಟಹಳ್ಳಿ", + "dig_ward_n": "GUTTAHALLI", + "Assembly": "157 - Malleshwaram", + "Slno": "9" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.579445539695101, + 12.9974624358252 + ], + [ + 77.579442945380293, + 12.9974625320705 + ], + [ + 77.579427999286807, + 12.997463086218101 + ], + [ + 77.578316426400804, + 12.997504325804799 + ], + [ + 77.578317961814307, + 12.997534527128 + ], + [ + 77.578318662977907, + 12.997548180230501 + ], + [ + 77.578322058428697, + 12.997614679702901 + ], + [ + 77.578322366986498, + 12.997620737841 + ], + [ + 77.578324477325395, + 12.9976621813255 + ], + [ + 77.578333762485698, + 12.9977806660682 + ], + [ + 77.578341028825704, + 12.9978709382499 + ], + [ + 77.5783530135988, + 12.998027793426299 + ], + [ + 77.578357062946097, + 12.998085346825899 + ], + [ + 77.578366780385906, + 12.9982828713402 + ], + [ + 77.578368725267893, + 12.9983223858051 + ], + [ + 77.578370657300098, + 12.9983980291008 + ], + [ + 77.578373619956807, + 12.998497456149099 + ], + [ + 77.578373631236104, + 12.998497834579799 + ], + [ + 77.5783750640188, + 12.998545925097901 + ], + [ + 77.5783884220386, + 12.9987242215911 + ], + [ + 77.578400520410199, + 12.9987805675378 + ], + [ + 77.578401661788305, + 12.9987907235528 + ], + [ + 77.5784119338159, + 12.9988820906492 + ], + [ + 77.578432889251999, + 12.9991269424183 + ], + [ + 77.578391470429395, + 12.999141259634801 + ], + [ + 77.578335348416005, + 12.999160660207901 + ], + [ + 77.578226774817495, + 12.9991854540157 + ], + [ + 77.578129448867003, + 12.999190209719 + ], + [ + 77.578118689716703, + 12.9991907357767 + ], + [ + 77.578081741726706, + 12.999192541022801 + ], + [ + 77.577947484774, + 12.999183710664701 + ], + [ + 77.577833791901199, + 12.999158865751401 + ], + [ + 77.577676843691407, + 12.9991113745604 + ], + [ + 77.577523030398694, + 12.9990648314682 + ], + [ + 77.577215311084899, + 12.9989865768386 + ], + [ + 77.577031711001496, + 12.998940386073 + ], + [ + 77.576999394120307, + 12.9989322551789 + ], + [ + 77.576985310352498, + 12.9989304986651 + ], + [ + 77.576983284547495, + 12.998930245936 + ], + [ + 77.576977299384495, + 12.998929499480701 + ], + [ + 77.576976788341199, + 12.9989294376992 + ], + [ + 77.576969331778898, + 12.998928506189699 + ], + [ + 77.576969038422106, + 12.9989284693504 + ], + [ + 77.5769633355427, + 12.998927758037199 + ], + [ + 77.5769631104491, + 12.998927729554699 + ], + [ + 77.576954673282899, + 12.998926676780099 + ], + [ + 77.576954241557303, + 12.9989266232456 + ], + [ + 77.576952415935807, + 12.9989263956322 + ], + [ + 77.576952082910793, + 12.998926353766 + ], + [ + 77.576948896603696, + 12.998925956261299 + ], + [ + 77.576948773914197, + 12.998925941217299 + ], + [ + 77.576948652145902, + 12.9989259261641 + ], + [ + 77.576941662380705, + 12.9989250541643 + ], + [ + 77.576941498180602, + 12.9989250341117 + ], + [ + 77.576907144368803, + 12.9989207486097 + ], + [ + 77.576905939158195, + 12.998920735277499 + ], + [ + 77.576852435557996, + 12.9989201623989 + ], + [ + 77.576734364316394, + 12.998921334453399 + ], + [ + 77.576611192293399, + 12.9989225570845 + ], + [ + 77.576598525581304, + 12.9989226828136 + ], + [ + 77.576427058802395, + 12.9989186704353 + ], + [ + 77.576395212479596, + 12.998917924968801 + ], + [ + 77.576303643370494, + 12.9989165751765 + ], + [ + 77.576217236177797, + 12.998915475873 + ], + [ + 77.576082209656903, + 12.998913756837 + ], + [ + 77.575954651331401, + 12.9989121334677 + ], + [ + 77.575790536440394, + 12.9989115033859 + ], + [ + 77.575147883279897, + 12.998907715745901 + ], + [ + 77.575136943834707, + 12.9989078242684 + ], + [ + 77.574623894732198, + 12.998908396119701 + ], + [ + 77.574403930905405, + 12.9989083190776 + ], + [ + 77.573979513752903, + 12.998904622710301 + ], + [ + 77.573974919310601, + 12.998905797575601 + ], + [ + 77.573973758986, + 12.9989217521969 + ], + [ + 77.573970740225505, + 12.998963244892 + ], + [ + 77.573941129056394, + 12.999370278139899 + ], + [ + 77.573940082331504, + 12.999380452289399 + ], + [ + 77.573890408827296, + 12.999812340432999 + ], + [ + 77.573886135815599, + 12.9999017761 + ], + [ + 77.573879989439604, + 13.0000304001587 + ], + [ + 77.573867208577596, + 13.000210206994799 + ], + [ + 77.573863608808196, + 13.0002608447148 + ], + [ + 77.573854846055895, + 13.0003841228275 + ], + [ + 77.573853638946304, + 13.000602091200101 + ], + [ + 77.573832088612903, + 13.0008575284633 + ], + [ + 77.573803899475607, + 13.0009443193042 + ], + [ + 77.5737986024034, + 13.000960628444499 + ], + [ + 77.5737885552156, + 13.0009762429603 + ], + [ + 77.573775932765997, + 13.000995860887301 + ], + [ + 77.573771241475598, + 13.000995688774401 + ], + [ + 77.573727545155904, + 13.000994082103 + ], + [ + 77.573295790641893, + 13.0010051390072 + ], + [ + 77.573213930308, + 13.0010070004165 + ], + [ + 77.573207710091296, + 13.001007141589 + ], + [ + 77.573185141828702, + 13.0010070003446 + ], + [ + 77.573136304115096, + 13.001006694012601 + ], + [ + 77.573105866349806, + 13.0010065033937 + ], + [ + 77.573069300487404, + 13.0010062741448 + ], + [ + 77.572611407130495, + 13.001003405835201 + ], + [ + 77.572579444473504, + 13.0010032058759 + ], + [ + 77.572249189366502, + 13.001007002214999 + ], + [ + 77.572233000227499, + 13.0010410003717 + ], + [ + 77.572234000130706, + 13.0011550000822 + ], + [ + 77.572235000282006, + 13.001388000050101 + ], + [ + 77.572236999796701, + 13.0018059998336 + ], + [ + 77.572242751138603, + 13.0018198974764 + ], + [ + 77.572243433333497, + 13.001821546733799 + ], + [ + 77.572244796783295, + 13.0018248434508 + ], + [ + 77.572261000158903, + 13.001863999973301 + ], + [ + 77.572277352770897, + 13.001862216209901 + ], + [ + 77.572273604235306, + 13.0019212550449 + ], + [ + 77.572593124985005, + 13.0019058977356 + ], + [ + 77.572590367101697, + 13.001874850111401 + ], + [ + 77.573775028876099, + 13.0018702751655 + ], + [ + 77.573936548736398, + 13.001870100765499 + ], + [ + 77.575127473209307, + 13.0018688111131 + ], + [ + 77.575398010736393, + 13.0018685171523 + ], + [ + 77.575403060063493, + 13.00105916747 + ], + [ + 77.575737702388395, + 13.001066678997899 + ], + [ + 77.575710603117997, + 13.0018667322471 + ], + [ + 77.576020202720102, + 13.0018551047293 + ], + [ + 77.576143121010801, + 13.0018504877024 + ], + [ + 77.576213758966304, + 13.002199378044001 + ], + [ + 77.576239256749304, + 13.002783843306201 + ], + [ + 77.576820772153695, + 13.002775769684201 + ], + [ + 77.577087857750001, + 13.002774902750501 + ], + [ + 77.577089779590594, + 13.002252827623799 + ], + [ + 77.577082603446399, + 13.0018412780201 + ], + [ + 77.578185152506904, + 13.0018304792073 + ], + [ + 77.578508700414304, + 13.0018169161484 + ], + [ + 77.578537793203907, + 13.0018166767924 + ], + [ + 77.579209086578899, + 13.0018111546648 + ], + [ + 77.579719708878599, + 13.0018069532591 + ], + [ + 77.579717309940804, + 13.0017670614733 + ], + [ + 77.580085874929196, + 13.0017462972486 + ], + [ + 77.581284497269195, + 13.0016637130039 + ], + [ + 77.581302111868595, + 13.001956062568899 + ], + [ + 77.581914445168493, + 13.001914003716999 + ], + [ + 77.581950955908098, + 13.002528294470199 + ], + [ + 77.581951413564497, + 13.002540114151699 + ], + [ + 77.581996926481494, + 13.002839749966901 + ], + [ + 77.581996926481494, + 13.002839749966901 + ], + [ + 77.583057523620596, + 13.002819738700101 + ], + [ + 77.583051844849805, + 13.0026989967952 + ], + [ + 77.583056457339197, + 13.002391072919 + ], + [ + 77.584125124703107, + 13.0023664835076 + ], + [ + 77.584125124703107, + 13.0023664835076 + ], + [ + 77.584150252834704, + 13.001224279203001 + ], + [ + 77.584162029341101, + 12.9994583931893 + ], + [ + 77.583732606512896, + 12.999382339554501 + ], + [ + 77.583407695560894, + 12.9993247951464 + ], + [ + 77.583156738541007, + 12.9992787327516 + ], + [ + 77.582998101409899, + 12.9992509495628 + ], + [ + 77.582297083818304, + 12.9986802244765 + ], + [ + 77.582084067763105, + 12.9985067993998 + ], + [ + 77.58205790177, + 12.998482215036599 + ], + [ + 77.581873588450506, + 12.998310135845101 + ], + [ + 77.581782566845703, + 12.998224934128601 + ], + [ + 77.581603798519097, + 12.9980575968018 + ], + [ + 77.581568867836793, + 12.9980206772135 + ], + [ + 77.581270730057994, + 12.997699532182001 + ], + [ + 77.580866039338005, + 12.9972642571172 + ], + [ + 77.580862549793693, + 12.997260903900299 + ], + [ + 77.580838675393693, + 12.9972351672839 + ], + [ + 77.580838628440105, + 12.997235170461 + ], + [ + 77.580030231133307, + 12.997290633561899 + ], + [ + 77.579551578620894, + 12.997323856547 + ], + [ + 77.579445447965597, + 12.9973312234132 + ], + [ + 77.579440665628994, + 12.9973364088087 + ], + [ + 77.579445539695101, + 12.9974624358252 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "68", + "group": "AECS LAYOUT", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "39", + "ward_name": "39 - AECS Layout", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಎಇಸಿಎಸ್ ಲೇಔಟ್", + "dig_ward_n": "AECS LAYOUT", + "Assembly": "174 - Mahadevapura", + "Slno": "39" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.704909971159395, + 12.9566398397287 + ], + [ + 77.704907685802695, + 12.956801339502499 + ], + [ + 77.704873383749202, + 12.957036570107499 + ], + [ + 77.704821847701496, + 12.957328439920699 + ], + [ + 77.704776650567098, + 12.9574610262506 + ], + [ + 77.704694490289995, + 12.9576357771153 + ], + [ + 77.704643939433595, + 12.957805682768401 + ], + [ + 77.704625168793896, + 12.9579865502856 + ], + [ + 77.704591393359706, + 12.9582172586327 + ], + [ + 77.704564217870796, + 12.958472740885201 + ], + [ + 77.704544707013895, + 12.958674532556399 + ], + [ + 77.704542469185697, + 12.9586976782739 + ], + [ + 77.704502349828303, + 12.958927323339299 + ], + [ + 77.704472186517606, + 12.9591726738161 + ], + [ + 77.704442945131603, + 12.9593434873057 + ], + [ + 77.704399328122705, + 12.959462506803501 + ], + [ + 77.704336611089104, + 12.959731908775201 + ], + [ + 77.704294786690397, + 12.9600169025373 + ], + [ + 77.704288354979099, + 12.9600610082882 + ], + [ + 77.704199127591394, + 12.960801763139299 + ], + [ + 77.704137330476001, + 12.9613147943101 + ], + [ + 77.704060091923495, + 12.9616095853505 + ], + [ + 77.703699508861902, + 12.9617316440025 + ], + [ + 77.703130542453593, + 12.961852281190801 + ], + [ + 77.702853601047096, + 12.9619340328265 + ], + [ + 77.702664190683393, + 12.961996948886799 + ], + [ + 77.701992645966399, + 12.9620971381055 + ], + [ + 77.701671728079603, + 12.962142189792999 + ], + [ + 77.701716356424299, + 12.9624241362406 + ], + [ + 77.701722743060202, + 12.962464483745199 + ], + [ + 77.701781592117698, + 12.9628362711445 + ], + [ + 77.701781938076905, + 12.962838455500799 + ], + [ + 77.701814493283393, + 12.963044126097801 + ], + [ + 77.701821022313894, + 12.9630853727682 + ], + [ + 77.701865208378507, + 12.9633645232748 + ], + [ + 77.7020546810177, + 12.9649548857812 + ], + [ + 77.7020783533018, + 12.965153583263 + ], + [ + 77.702081301829907, + 12.965178331914 + ], + [ + 77.702086987230004, + 12.9652312596792 + ], + [ + 77.702096411310094, + 12.9653189877478 + ], + [ + 77.702131092044496, + 12.9656418312853 + ], + [ + 77.702159371750298, + 12.965905089454701 + ], + [ + 77.702183489808604, + 12.966176431668901 + ], + [ + 77.702195809560607, + 12.966355479587801 + ], + [ + 77.702173893309507, + 12.9665827722005 + ], + [ + 77.7021518470969, + 12.9667981146636 + ], + [ + 77.702123773883002, + 12.9670194954784 + ], + [ + 77.702469602374805, + 12.9668844450087 + ], + [ + 77.702967280281499, + 12.9667059890521 + ], + [ + 77.7033254207075, + 12.966582760281 + ], + [ + 77.703316015519505, + 12.966697716991799 + ], + [ + 77.703313333727493, + 12.9667305017011 + ], + [ + 77.703305604721706, + 12.9668249735016 + ], + [ + 77.703294205323502, + 12.9669643137301 + ], + [ + 77.703216546430397, + 12.9673021807425 + ], + [ + 77.703055476465295, + 12.9680029453244 + ], + [ + 77.702628385071094, + 12.969075781472201 + ], + [ + 77.702335080562094, + 12.9696739771718 + ], + [ + 77.702473289665505, + 12.970059746283599 + ], + [ + 77.702662942028297, + 12.9706764395479 + ], + [ + 77.703289623464201, + 12.970505526428999 + ], + [ + 77.703378348853803, + 12.9707156655096 + ], + [ + 77.7029814194793, + 12.9708221359771 + ], + [ + 77.703089757849796, + 12.971207857934001 + ], + [ + 77.703170879039604, + 12.9714670179513 + ], + [ + 77.703320443862694, + 12.9714936470836 + ], + [ + 77.703490423030104, + 12.9714320062866 + ], + [ + 77.704372073217201, + 12.971146217136999 + ], + [ + 77.704501892471498, + 12.971322733964699 + ], + [ + 77.707135530756304, + 12.970762397378399 + ], + [ + 77.707034030497596, + 12.970305935279701 + ], + [ + 77.707027672554005, + 12.970261123417099 + ], + [ + 77.707004115448896, + 12.9700950852571 + ], + [ + 77.706945908099499, + 12.969876627062501 + ], + [ + 77.7068326864174, + 12.969681324446899 + ], + [ + 77.706562165622401, + 12.9692076167373 + ], + [ + 77.7064898462896, + 12.9691744931863 + ], + [ + 77.706452131218896, + 12.969157708194601 + ], + [ + 77.706447074917193, + 12.9691495899056 + ], + [ + 77.706511627660802, + 12.969071959154901 + ], + [ + 77.706639540070398, + 12.968918133736899 + ], + [ + 77.706989005234504, + 12.9681743835615 + ], + [ + 77.707307477030099, + 12.967582262426999 + ], + [ + 77.710440750589896, + 12.968119594117701 + ], + [ + 77.710739648638295, + 12.9671466771167 + ], + [ + 77.708919350954901, + 12.9665878706264 + ], + [ + 77.709322848282198, + 12.9652187442789 + ], + [ + 77.709357429784205, + 12.965229027565901 + ], + [ + 77.710256198245006, + 12.9654962738232 + ], + [ + 77.710207839332, + 12.965651117226299 + ], + [ + 77.710771806557304, + 12.965838695312099 + ], + [ + 77.711119174291298, + 12.9659542297433 + ], + [ + 77.711232880711506, + 12.9655705268648 + ], + [ + 77.711976521410094, + 12.965831321701801 + ], + [ + 77.712602053565604, + 12.966002012443701 + ], + [ + 77.712291981677794, + 12.9668967379513 + ], + [ + 77.713975298957095, + 12.9674684594839 + ], + [ + 77.714028542411995, + 12.9675805669343 + ], + [ + 77.714051249179803, + 12.967648566819401 + ], + [ + 77.714069738474905, + 12.9677039357172 + ], + [ + 77.714122868524896, + 12.9676790522436 + ], + [ + 77.714128020791605, + 12.9676766398286 + ], + [ + 77.714582763203794, + 12.967622222304399 + ], + [ + 77.714655242684003, + 12.9676135498897 + ], + [ + 77.714890269175896, + 12.967597690592401 + ], + [ + 77.7151640391141, + 12.9675792162187 + ], + [ + 77.715763781687798, + 12.967538754157999 + ], + [ + 77.7162317082078, + 12.9675309800328 + ], + [ + 77.716314039685201, + 12.967529612712299 + ], + [ + 77.716374031969494, + 12.967508668067399 + ], + [ + 77.716481921345505, + 12.967471002652401 + ], + [ + 77.716510754846595, + 12.9674609363173 + ], + [ + 77.716755074843405, + 12.9673759539725 + ], + [ + 77.716829254879102, + 12.967349594522 + ], + [ + 77.7169351457229, + 12.967311967881701 + ], + [ + 77.717211773993398, + 12.967180350879101 + ], + [ + 77.717501871647897, + 12.9670169755735 + ], + [ + 77.717681525990002, + 12.966914600886 + ], + [ + 77.717750512907799, + 12.9668529038918 + ], + [ + 77.717950078086901, + 12.966675794436901 + ], + [ + 77.718145161718596, + 12.966456951627499 + ], + [ + 77.718156388625999, + 12.9664331791337 + ], + [ + 77.718215604316796, + 12.966307798397899 + ], + [ + 77.718218924946697, + 12.966300768140099 + ], + [ + 77.718220383561402, + 12.9662976787909 + ], + [ + 77.718229838510297, + 12.9662776592701 + ], + [ + 77.718245281019804, + 12.966244961869499 + ], + [ + 77.718246573969097, + 12.9662422238488 + ], + [ + 77.718250948939698, + 12.966232960327201 + ], + [ + 77.718254380328005, + 12.966225696750399 + ], + [ + 77.718255196072903, + 12.966223969147199 + ], + [ + 77.718273715189198, + 12.9661847571421 + ], + [ + 77.718281877162795, + 12.966167473835201 + ], + [ + 77.718291474372094, + 12.966147153817699 + ], + [ + 77.718292324221594, + 12.966144071732201 + ], + [ + 77.718294112536398, + 12.966137585945001 + ], + [ + 77.718305918118503, + 12.9660947574988 + ], + [ + 77.718322406264093, + 12.966034944973901 + ], + [ + 77.718345267740702, + 12.965952010490099 + ], + [ + 77.718360152797104, + 12.965898014239899 + ], + [ + 77.718362988509199, + 12.9658337932643 + ], + [ + 77.718371726764502, + 12.965635864989199 + ], + [ + 77.718371820633905, + 12.965633737515899 + ], + [ + 77.718376486631797, + 12.965528057010101 + ], + [ + 77.718377709217194, + 12.965500355569199 + ], + [ + 77.718377243181706, + 12.965457451178599 + ], + [ + 77.718367722288306, + 12.965331648557299 + ], + [ + 77.718351029160502, + 12.9651110633929 + ], + [ + 77.718278053049104, + 12.9649604482293 + ], + [ + 77.718265630947499, + 12.9649348098595 + ], + [ + 77.718192620104602, + 12.964784123648901 + ], + [ + 77.718181131895307, + 12.9647638179453 + ], + [ + 77.718030035771605, + 12.964496749036501 + ], + [ + 77.718008259845803, + 12.9644529380337 + ], + [ + 77.718000937402607, + 12.964438028795101 + ], + [ + 77.717960307030197, + 12.9643553040531 + ], + [ + 77.717849701149603, + 12.9641301079188 + ], + [ + 77.717691542290694, + 12.9638080900797 + ], + [ + 77.7176462941827, + 12.963728960039001 + ], + [ + 77.717445725857502, + 12.9633782101319 + ], + [ + 77.717328887100507, + 12.9631738838189 + ], + [ + 77.717285565375406, + 12.963111311901301 + ], + [ + 77.7172031459842, + 12.962992268538899 + ], + [ + 77.717187934966105, + 12.9629698435175 + ], + [ + 77.717126019088099, + 12.962879747195499 + ], + [ + 77.717076216136107, + 12.9628072761894 + ], + [ + 77.717030190258797, + 12.9627318912615 + ], + [ + 77.716931902514801, + 12.962570904493401 + ], + [ + 77.716923251762793, + 12.9625567362678 + ], + [ + 77.716917970334293, + 12.962548084879799 + ], + [ + 77.716830304991305, + 12.9623739752369 + ], + [ + 77.716786433992596, + 12.9622093362297 + ], + [ + 77.716761891606794, + 12.962117232602999 + ], + [ + 77.716725975198898, + 12.9619563308138 + ], + [ + 77.716713039747901, + 12.961898379267801 + ], + [ + 77.716695944176706, + 12.9618217906845 + ], + [ + 77.716665076742103, + 12.9616835049352 + ], + [ + 77.716636457663299, + 12.9615402073842 + ], + [ + 77.716535562148593, + 12.9610350072155 + ], + [ + 77.716506193313506, + 12.9608879540679 + ], + [ + 77.716490696308995, + 12.960808507707901 + ], + [ + 77.716467069987502, + 12.960687387729299 + ], + [ + 77.716420243706693, + 12.960447336645 + ], + [ + 77.716419569070794, + 12.960445261453801 + ], + [ + 77.716399394636895, + 12.9603831902295 + ], + [ + 77.716372582434204, + 12.9603006956782 + ], + [ + 77.716280884880902, + 12.9600185684171 + ], + [ + 77.716094976463694, + 12.959444926936101 + ], + [ + 77.716028340671201, + 12.9592386726924 + ], + [ + 77.715971238945798, + 12.9590822581943 + ], + [ + 77.715911722357205, + 12.9589192283022 + ], + [ + 77.715877421348694, + 12.9588252686967 + ], + [ + 77.715797547800804, + 12.958606473843499 + ], + [ + 77.715781942658495, + 12.9585633785903 + ], + [ + 77.715632571348806, + 12.958150872328901 + ], + [ + 77.715557338302702, + 12.957955741074301 + ], + [ + 77.715427035377402, + 12.957617777447799 + ], + [ + 77.715391006352306, + 12.9575239369029 + ], + [ + 77.715281366924501, + 12.9572383708126 + ], + [ + 77.715102035987798, + 12.956771281259099 + ], + [ + 77.715025341822397, + 12.9565715234751 + ], + [ + 77.714892070500795, + 12.9562244058191 + ], + [ + 77.714867306789699, + 12.956159904274299 + ], + [ + 77.714844368618699, + 12.956100159731299 + ], + [ + 77.714761187141207, + 12.955883502598301 + ], + [ + 77.714754279988099, + 12.955883574616401 + ], + [ + 77.714730152379303, + 12.955885398023099 + ], + [ + 77.714111293787298, + 12.9559321738307 + ], + [ + 77.714078431564602, + 12.955934659150399 + ], + [ + 77.713520494248201, + 12.955976608771699 + ], + [ + 77.712894109345001, + 12.9560237872145 + ], + [ + 77.7126025951369, + 12.956046178020401 + ], + [ + 77.712417857986196, + 12.956060366606399 + ], + [ + 77.711447531205295, + 12.9561343200404 + ], + [ + 77.711371014555397, + 12.9561401512924 + ], + [ + 77.711246770876301, + 12.956149349491399 + ], + [ + 77.7112325466301, + 12.956150428071201 + ], + [ + 77.711121219076404, + 12.9561588702023 + ], + [ + 77.7092445279836, + 12.9563011788727 + ], + [ + 77.709189307053705, + 12.956305141077999 + ], + [ + 77.709068504385201, + 12.956313173259099 + ], + [ + 77.709044353619703, + 12.9563156829467 + ], + [ + 77.707154690522998, + 12.956444870450699 + ], + [ + 77.706647345332996, + 12.956481743891599 + ], + [ + 77.705269137261297, + 12.9565819062709 + ], + [ + 77.704910817495403, + 12.9566116008605 + ], + [ + 77.704909971159395, + 12.9566398397287 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "69", + "group": "Rajarajeshwari Temple", + "Corporatio": "South", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "4", + "ward_id": "66", + "ward_name": "66 - Abul Kalam Azad", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ಅಬುಲ್ ಕಲಾಂ ಆಜಾದ್", + "dig_ward_n": "Rajarajeshwari Temple", + "Assembly": "171 - Padmanabanagar", + "Slno": "66" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.556233286193304, + 12.9030297395531 + ], + [ + 77.556105824197999, + 12.9030614779457 + ], + [ + 77.556022713543101, + 12.903086623665899 + ], + [ + 77.555965666312702, + 12.903103883846001 + ], + [ + 77.555715461018295, + 12.903179585036099 + ], + [ + 77.555523374330605, + 12.9032377019529 + ], + [ + 77.555454139402599, + 12.9032589015399 + ], + [ + 77.555126079305495, + 12.9033593525585 + ], + [ + 77.555019603588093, + 12.903391955919799 + ], + [ + 77.554963324002301, + 12.9034091894278 + ], + [ + 77.554910639944296, + 12.9033980497362 + ], + [ + 77.554621254300599, + 12.903336866988299 + ], + [ + 77.554452774498003, + 12.9033168250662 + ], + [ + 77.554226486378596, + 12.903289905217299 + ], + [ + 77.553792739271799, + 12.9033156008277 + ], + [ + 77.553791376575504, + 12.9033157252682 + ], + [ + 77.553775902918602, + 12.9033171367878 + ], + [ + 77.553757454511697, + 12.903318819499701 + ], + [ + 77.553522466862105, + 12.903340250763 + ], + [ + 77.553432167119794, + 12.903348486193099 + ], + [ + 77.553334301740804, + 12.903399466184799 + ], + [ + 77.553228901148003, + 12.903454370321899 + ], + [ + 77.553235484385596, + 12.903479151294301 + ], + [ + 77.553166301192206, + 12.903525000348701 + ], + [ + 77.553034350950995, + 12.903511607949 + ], + [ + 77.552961333686994, + 12.903576693037699 + ], + [ + 77.552798690778502, + 12.9036584641432 + ], + [ + 77.552609343159403, + 12.903717909346399 + ], + [ + 77.552532021815594, + 12.903755932423399 + ], + [ + 77.552420407957896, + 12.903818006337501 + ], + [ + 77.552318386243897, + 12.903804321320701 + ], + [ + 77.552181544944006, + 12.903762742975299 + ], + [ + 77.551828510446597, + 12.903574203581799 + ], + [ + 77.551462571085494, + 12.903645536034301 + ], + [ + 77.551030179289398, + 12.9039185378348 + ], + [ + 77.550964654772699, + 12.9042116745537 + ], + [ + 77.550891817023597, + 12.904351293401501 + ], + [ + 77.550887917246598, + 12.9043521700555 + ], + [ + 77.550492677110697, + 12.9044410181099 + ], + [ + 77.550382101102699, + 12.904455996729601 + ], + [ + 77.550250102226698, + 12.9044738772276 + ], + [ + 77.550171784053603, + 12.9044136574335 + ], + [ + 77.550160347810007, + 12.9043076116875 + ], + [ + 77.550329108862698, + 12.904147858312101 + ], + [ + 77.550317054290005, + 12.903980834618901 + ], + [ + 77.5497130081813, + 12.904089780036299 + ], + [ + 77.549074856868401, + 12.9042048750822 + ], + [ + 77.549072556205303, + 12.90420529002 + ], + [ + 77.549083893784299, + 12.9040169567636 + ], + [ + 77.549088814270206, + 12.903935220572301 + ], + [ + 77.549089344046607, + 12.9039306980684 + ], + [ + 77.549090346377795, + 12.9039160069476 + ], + [ + 77.548883832247199, + 12.903815251573 + ], + [ + 77.548706451008798, + 12.9037201063942 + ], + [ + 77.548685318798107, + 12.903708771314699 + ], + [ + 77.548597540604305, + 12.903623797821 + ], + [ + 77.548538726647905, + 12.9035521386166 + ], + [ + 77.548514782269805, + 12.9035229646544 + ], + [ + 77.548398340949305, + 12.903449563896899 + ], + [ + 77.548397846467196, + 12.903450662817701 + ], + [ + 77.548382906448097, + 12.9034838542303 + ], + [ + 77.548310522416699, + 12.903644665716101 + ], + [ + 77.548304699115306, + 12.903808476048701 + ], + [ + 77.548273761779299, + 12.904106922092399 + ], + [ + 77.548252810386998, + 12.9043115359814 + ], + [ + 77.548252149833402, + 12.9043370581623 + ], + [ + 77.548247433320199, + 12.904519386024299 + ], + [ + 77.548252011387106, + 12.904573549460199 + ], + [ + 77.548289431471403, + 12.9048013102345 + ], + [ + 77.548290041352502, + 12.9048046922923 + ], + [ + 77.548296723690697, + 12.9048961032543 + ], + [ + 77.548297707681499, + 12.904993216451899 + ], + [ + 77.548305586922496, + 12.9050891330797 + ], + [ + 77.548306783804193, + 12.905093638748101 + ], + [ + 77.548323262091102, + 12.905186083520601 + ], + [ + 77.548350360162999, + 12.9053608661693 + ], + [ + 77.548353386702104, + 12.905375518008301 + ], + [ + 77.548371568832593, + 12.9054656874856 + ], + [ + 77.5484014681129, + 12.905576070723001 + ], + [ + 77.548428192118394, + 12.9056571222154 + ], + [ + 77.5484465379201, + 12.9057066340352 + ], + [ + 77.548450082815293, + 12.905715634142901 + ], + [ + 77.548525341561401, + 12.905928344451301 + ], + [ + 77.548580931808004, + 12.9060746157983 + ], + [ + 77.548582704261605, + 12.906079115850201 + ], + [ + 77.548591577975301, + 12.906102745332401 + ], + [ + 77.548649745223003, + 12.9062760955428 + ], + [ + 77.548687668287599, + 12.9063830124433 + ], + [ + 77.548691213205004, + 12.9063920125439 + ], + [ + 77.548716096305995, + 12.906461788582201 + ], + [ + 77.548777656845701, + 12.9066469672577 + ], + [ + 77.548777843027494, + 12.906647526495099 + ], + [ + 77.548786689614801, + 12.906670340922 + ], + [ + 77.548796166112297, + 12.9066947798153 + ], + [ + 77.548802499312401, + 12.9067111396195 + ], + [ + 77.548804441425801, + 12.9067161564501 + ], + [ + 77.548846370687698, + 12.906820775556399 + ], + [ + 77.548888977444093, + 12.9069184503148 + ], + [ + 77.5489341781403, + 12.907022069869001 + ], + [ + 77.549071363191302, + 12.9073245224986 + ], + [ + 77.549213866071, + 12.9076404751172 + ], + [ + 77.549271957268502, + 12.907749453747501 + ], + [ + 77.549277309063299, + 12.9077663415404 + ], + [ + 77.549674533480697, + 12.9076574377223 + ], + [ + 77.550040757270295, + 12.9075567412351 + ], + [ + 77.550350724542099, + 12.9074712747022 + ], + [ + 77.551016414448597, + 12.9072887758924 + ], + [ + 77.551115321516406, + 12.9072616603485 + ], + [ + 77.5514626075894, + 12.9071667936142 + ], + [ + 77.551630788404495, + 12.907119978095301 + ], + [ + 77.551709649236997, + 12.907099109354 + ], + [ + 77.551914381646199, + 12.9070449314163 + ], + [ + 77.551935620060306, + 12.907039077341301 + ], + [ + 77.552113679369597, + 12.9069447331386 + ], + [ + 77.552626099793898, + 12.9066732057907 + ], + [ + 77.553560244473204, + 12.9063252797673 + ], + [ + 77.553626555497601, + 12.9065100461545 + ], + [ + 77.553657986511197, + 12.906597622591001 + ], + [ + 77.553746843136906, + 12.9068452069057 + ], + [ + 77.553832143407803, + 12.907082661940899 + ], + [ + 77.553914485796398, + 12.9073122405152 + ], + [ + 77.553931083171406, + 12.907359510159599 + ], + [ + 77.554016718567397, + 12.9075732458583 + ], + [ + 77.554121253838503, + 12.907834228612501 + ], + [ + 77.554225789371401, + 12.908095211279401 + ], + [ + 77.554322636368795, + 12.908335941090799 + ], + [ + 77.554406324972305, + 12.908576629624299 + ], + [ + 77.554459606560002, + 12.9087298673833 + ], + [ + 77.554462224412106, + 12.908737429980199 + ], + [ + 77.554499339507899, + 12.908844670530099 + ], + [ + 77.554520840431906, + 12.908906164167099 + ], + [ + 77.554544988760398, + 12.9089752264307 + ], + [ + 77.5545451019361, + 12.9089753971134 + ], + [ + 77.554594093324994, + 12.9090492820538 + ], + [ + 77.554607134353105, + 12.9090864224148 + ], + [ + 77.5546289235768, + 12.9091347705302 + ], + [ + 77.5546415267425, + 12.9091854671225 + ], + [ + 77.554660955869394, + 12.909436880898401 + ], + [ + 77.554668037496796, + 12.909528524042001 + ], + [ + 77.554817074212096, + 12.909523678678299 + ], + [ + 77.554840188582801, + 12.909532487277801 + ], + [ + 77.554858088450501, + 12.909537958880501 + ], + [ + 77.554864432174796, + 12.9095447361903 + ], + [ + 77.554889513185202, + 12.909571531450201 + ], + [ + 77.554911435898603, + 12.9096109370915 + ], + [ + 77.554986449398399, + 12.909745772235199 + ], + [ + 77.555047349117004, + 12.909855237910399 + ], + [ + 77.555117596699404, + 12.9099815059659 + ], + [ + 77.555129406877398, + 12.910002781806099 + ], + [ + 77.555214457045395, + 12.9101559981285 + ], + [ + 77.555255391070006, + 12.910229739932999 + ], + [ + 77.555403440999399, + 12.910524175936001 + ], + [ + 77.555640192824697, + 12.9109939192853 + ], + [ + 77.555650828561994, + 12.911020919119 + ], + [ + 77.5557555997609, + 12.9112926106861 + ], + [ + 77.555805394079002, + 12.911421736504 + ], + [ + 77.555818732907994, + 12.911456326508 + ], + [ + 77.555813426035201, + 12.9114569758286 + ], + [ + 77.5558278736994, + 12.9115203633304 + ], + [ + 77.556013345278998, + 12.9115891505772 + ], + [ + 77.556367300335395, + 12.911745605189701 + ], + [ + 77.556462276119802, + 12.9117396560722 + ], + [ + 77.556758927199496, + 12.911724561355999 + ], + [ + 77.557141831264303, + 12.911690859909299 + ], + [ + 77.557332505608798, + 12.9116782357613 + ], + [ + 77.558458594229904, + 12.911542881879001 + ], + [ + 77.558458594229904, + 12.911542881879001 + ], + [ + 77.558400464367907, + 12.9112095997663 + ], + [ + 77.558365342162503, + 12.911032510309999 + ], + [ + 77.558307400868898, + 12.9107179017217 + ], + [ + 77.558298270442293, + 12.910656214269901 + ], + [ + 77.558293919375501, + 12.9106234260049 + ], + [ + 77.558306304708793, + 12.910609376959099 + ], + [ + 77.558313773422796, + 12.910600905243401 + ], + [ + 77.558344333238594, + 12.910574776016601 + ], + [ + 77.558374039518597, + 12.910477629551099 + ], + [ + 77.558452213877004, + 12.910212413686599 + ], + [ + 77.558518153370997, + 12.9097744132677 + ], + [ + 77.558517501185193, + 12.9095703287043 + ], + [ + 77.558515320688898, + 12.9088878114067 + ], + [ + 77.558514574580997, + 12.9086542098695 + ], + [ + 77.5584877383004, + 12.908608996942499 + ], + [ + 77.558251957259699, + 12.908211754417501 + ], + [ + 77.5582428344471, + 12.908192703007799 + ], + [ + 77.558189070610197, + 12.9080804295437 + ], + [ + 77.558129054031895, + 12.907955099016499 + ], + [ + 77.558066927532806, + 12.9078006249794 + ], + [ + 77.558853125202702, + 12.9072001391147 + ], + [ + 77.559060817439601, + 12.9069915228512 + ], + [ + 77.559456167672806, + 12.906642370709299 + ], + [ + 77.558935618961797, + 12.906217788118999 + ], + [ + 77.558742948381493, + 12.906057594709599 + ], + [ + 77.558549565606896, + 12.905896807283399 + ], + [ + 77.558548352543099, + 12.9058957982488 + ], + [ + 77.558605354345005, + 12.9058554851594 + ], + [ + 77.558778410623404, + 12.905740245566999 + ], + [ + 77.5587970270319, + 12.905732438075299 + ], + [ + 77.559116893377293, + 12.9055982878498 + ], + [ + 77.559603358639094, + 12.9054004568551 + ], + [ + 77.559760180735395, + 12.905336681459399 + ], + [ + 77.559731898133904, + 12.905273487668 + ], + [ + 77.559666613644396, + 12.905203609290499 + ], + [ + 77.559579861482604, + 12.905179359917501 + ], + [ + 77.5594208929177, + 12.9051223517724 + ], + [ + 77.559404909621406, + 12.9051081658626 + ], + [ + 77.559333896670395, + 12.9050836158978 + ], + [ + 77.559292146979004, + 12.905051754031801 + ], + [ + 77.559114162732996, + 12.9049220243976 + ], + [ + 77.559027936809201, + 12.904829642377001 + ], + [ + 77.559020766477403, + 12.9048233431861 + ], + [ + 77.558785752398407, + 12.9046168760544 + ], + [ + 77.558661444323803, + 12.904493792161301 + ], + [ + 77.558652264749298, + 12.9044740338887 + ], + [ + 77.558573003482906, + 12.904303425035399 + ], + [ + 77.558566238493498, + 12.904282287023999 + ], + [ + 77.558484917066593, + 12.9040281940624 + ], + [ + 77.558436918933396, + 12.903980856346699 + ], + [ + 77.558375291919603, + 12.903791420989201 + ], + [ + 77.558284372958994, + 12.9038365335603 + ], + [ + 77.557667650897898, + 12.9041324028801 + ], + [ + 77.557221895564197, + 12.904197917568199 + ], + [ + 77.557183396563701, + 12.903971436756301 + ], + [ + 77.557158832228893, + 12.903731010871599 + ], + [ + 77.557704722560302, + 12.903621045437101 + ], + [ + 77.557842725614506, + 12.903609451808601 + ], + [ + 77.557820117167196, + 12.9034949325015 + ], + [ + 77.557836985106903, + 12.9034348913404 + ], + [ + 77.557774384252397, + 12.903426456426301 + ], + [ + 77.557445898191901, + 12.903353178212701 + ], + [ + 77.557325623293906, + 12.9033390557908 + ], + [ + 77.5572905572742, + 12.9033413115061 + ], + [ + 77.557099914848095, + 12.903380467076399 + ], + [ + 77.557009588387103, + 12.9034119483055 + ], + [ + 77.556622433660394, + 12.903584020787701 + ], + [ + 77.556622433660394, + 12.903584020787701 + ], + [ + 77.556595528690707, + 12.903496068060701 + ], + [ + 77.556502569507998, + 12.903225129905399 + ], + [ + 77.556359050073297, + 12.902989783888801 + ], + [ + 77.556354125694895, + 12.9029687642004 + ], + [ + 77.556346902296696, + 12.9029382821079 + ], + [ + 77.556233286193304, + 12.9030297395531 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "71", + "group": "Padmanabhanagara", + "Corporatio": "South", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "4", + "ward_id": "4", + "ward_name": "4 - Padmanabhanagara", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ಪದ್ಮನಾಭನಗರ", + "dig_ward_n": "Padmanabhanagara", + "Assembly": "171 - Padmanabanagar", + "Slno": "4" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.5624147960161, + 12.9176316195722 + ], + [ + 77.562410415520901, + 12.917622576482399 + ], + [ + 77.562206768456306, + 12.917008180941 + ], + [ + 77.561992988429594, + 12.916549076941999 + ], + [ + 77.561915183964999, + 12.9164216359151 + ], + [ + 77.561255509304999, + 12.916721579504101 + ], + [ + 77.560716672774404, + 12.916812733405401 + ], + [ + 77.560374451404698, + 12.9156234773696 + ], + [ + 77.560866826232797, + 12.9156933565963 + ], + [ + 77.561256475377306, + 12.9156940006445 + ], + [ + 77.561010888314399, + 12.9151456925532 + ], + [ + 77.560953149775003, + 12.914982982902901 + ], + [ + 77.560880427108899, + 12.91490483668 + ], + [ + 77.560803385555403, + 12.9148184345035 + ], + [ + 77.560730987894402, + 12.914780760014301 + ], + [ + 77.560589680068503, + 12.914659180177299 + ], + [ + 77.560166955945306, + 12.9141782975812 + ], + [ + 77.559794283307298, + 12.9138327369864 + ], + [ + 77.559782271290203, + 12.913826473577 + ], + [ + 77.559585612489002, + 12.9137239356427 + ], + [ + 77.559535432965205, + 12.9137008434754 + ], + [ + 77.559467696730707, + 12.913684937810901 + ], + [ + 77.559413139423299, + 12.9136725827763 + ], + [ + 77.559351110506398, + 12.913663986158999 + ], + [ + 77.559302238991194, + 12.9136570982366 + ], + [ + 77.5592083040586, + 12.913648813323 + ], + [ + 77.559106901164299, + 12.9136442840518 + ], + [ + 77.559059925221604, + 12.9136392187614 + ], + [ + 77.558941832325402, + 12.913635641673601 + ], + [ + 77.558918487778698, + 12.9134552008595 + ], + [ + 77.558894358175493, + 12.9132208049271 + ], + [ + 77.558870286896394, + 12.9129493403225 + ], + [ + 77.558865708412597, + 12.9128483665299 + ], + [ + 77.558865332690701, + 12.9128114620357 + ], + [ + 77.558864857365293, + 12.912764774037999 + ], + [ + 77.558863925063903, + 12.9127542560477 + ], + [ + 77.558860845354502, + 12.9127195300862 + ], + [ + 77.558827825007995, + 12.9126153511748 + ], + [ + 77.558799431658102, + 12.912535764300801 + ], + [ + 77.558796734211001, + 12.9125282721253 + ], + [ + 77.558707215676705, + 12.912279671002 + ], + [ + 77.558458594229904, + 12.911542881879001 + ], + [ + 77.557332505608798, + 12.9116782357613 + ], + [ + 77.557141831264303, + 12.911690859909299 + ], + [ + 77.556758927199496, + 12.911724561355999 + ], + [ + 77.556462276119802, + 12.9117396560722 + ], + [ + 77.556367300335395, + 12.911745605189701 + ], + [ + 77.556013345278998, + 12.9115891505772 + ], + [ + 77.5558278736994, + 12.9115203633304 + ], + [ + 77.555813426035201, + 12.9114569758286 + ], + [ + 77.555618089209304, + 12.9114808761235 + ], + [ + 77.554848862291806, + 12.9115753589651 + ], + [ + 77.554839181726905, + 12.9115748841564 + ], + [ + 77.554791270970696, + 12.911572534242399 + ], + [ + 77.554734543868406, + 12.911541467824399 + ], + [ + 77.554603237139403, + 12.9114778074073 + ], + [ + 77.554525968225306, + 12.9114403457547 + ], + [ + 77.554259615050697, + 12.9113112116517 + ], + [ + 77.554145191642505, + 12.9113236237605 + ], + [ + 77.552906854766903, + 12.911647424070701 + ], + [ + 77.552848402930195, + 12.9116685881413 + ], + [ + 77.552727343563902, + 12.911712420913799 + ], + [ + 77.552689401803605, + 12.9117173090184 + ], + [ + 77.552647419581803, + 12.9117211072709 + ], + [ + 77.552606554096002, + 12.9117215066114 + ], + [ + 77.552439746114402, + 12.9117019503789 + ], + [ + 77.552415748186405, + 12.9116991369009 + ], + [ + 77.552357586676706, + 12.911692318130401 + ], + [ + 77.552304496618802, + 12.9116792848953 + ], + [ + 77.552248528713093, + 12.911666279766701 + ], + [ + 77.552085023211902, + 12.9116068933685 + ], + [ + 77.551999445036103, + 12.911560211551301 + ], + [ + 77.551929167137104, + 12.9115218758055 + ], + [ + 77.551861614679098, + 12.9114687506436 + ], + [ + 77.551726146828997, + 12.9113266488728 + ], + [ + 77.551627531532901, + 12.9112140673453 + ], + [ + 77.551525687994797, + 12.9110835889275 + ], + [ + 77.551446386981198, + 12.910991400494799 + ], + [ + 77.551404534933894, + 12.911013099426899 + ], + [ + 77.5505204197419, + 12.911387258193299 + ], + [ + 77.5500509264442, + 12.9115859470222 + ], + [ + 77.550050932970095, + 12.911585987457901 + ], + [ + 77.550152819701495, + 12.9122172955799 + ], + [ + 77.5501720843409, + 12.9123366604764 + ], + [ + 77.550185328453793, + 12.9124187240122 + ], + [ + 77.550198793691095, + 12.912502155944599 + ], + [ + 77.550252436288503, + 12.9127454551413 + ], + [ + 77.550400616324595, + 12.9130956056828 + ], + [ + 77.550574173034505, + 12.913046023621201 + ], + [ + 77.550663213243396, + 12.9130205861685 + ], + [ + 77.550667269562197, + 12.9130223472394 + ], + [ + 77.550703599712307, + 12.9130381201494 + ], + [ + 77.550829215857107, + 12.912880815167901 + ], + [ + 77.550909935951694, + 12.9127797322083 + ], + [ + 77.551006429951499, + 12.9126831724205 + ], + [ + 77.551103117038593, + 12.9126057343806 + ], + [ + 77.551180311948301, + 12.9125284866976 + ], + [ + 77.551306436528705, + 12.9124382403264 + ], + [ + 77.551315790889504, + 12.912431546962701 + ], + [ + 77.551371952153403, + 12.9123957936152 + ], + [ + 77.551620860962601, + 12.9122373332064 + ], + [ + 77.551877683841994, + 12.9120913991918 + ], + [ + 77.551998785394204, + 12.9120185026222 + ], + [ + 77.552166318158001, + 12.9118811321083 + ], + [ + 77.552188569816394, + 12.9118628865749 + ], + [ + 77.552212242531098, + 12.9118434758236 + ], + [ + 77.552707442100598, + 12.912764078083001 + ], + [ + 77.552721797691106, + 12.9127907657482 + ], + [ + 77.552771468386993, + 12.9128831056652 + ], + [ + 77.552795525642296, + 12.912928043768501 + ], + [ + 77.552933767473505, + 12.913220318557 + ], + [ + 77.5529996540497, + 12.9133597115322 + ], + [ + 77.5532706263172, + 12.9139115638771 + ], + [ + 77.553365005260105, + 12.9140224448873 + ], + [ + 77.553634248467006, + 12.914347318159599 + ], + [ + 77.553642985373102, + 12.9143573967009 + ], + [ + 77.553640124016994, + 12.914358778971099 + ], + [ + 77.553628664824004, + 12.9143643127037 + ], + [ + 77.553620800193002, + 12.914367780922101 + ], + [ + 77.553111430399198, + 12.914592406908 + ], + [ + 77.552489408761701, + 12.914866708503199 + ], + [ + 77.552100306902602, + 12.915017893259501 + ], + [ + 77.552086901472904, + 12.915023101899999 + ], + [ + 77.551946821693704, + 12.915058850550601 + ], + [ + 77.5518883879827, + 12.9150737629309 + ], + [ + 77.551833849844101, + 12.9150876811419 + ], + [ + 77.551447301051198, + 12.9151863285924 + ], + [ + 77.551368031699297, + 12.9152029136841 + ], + [ + 77.550869979148004, + 12.915303772255299 + ], + [ + 77.550569260641794, + 12.915337201429599 + ], + [ + 77.550505176483497, + 12.915318628664901 + ], + [ + 77.550514832742707, + 12.9153625783173 + ], + [ + 77.5505410688788, + 12.9154868043119 + ], + [ + 77.550581954267599, + 12.915680394457 + ], + [ + 77.550604305239503, + 12.915784074717299 + ], + [ + 77.550607343610693, + 12.9157998556918 + ], + [ + 77.550612472575096, + 12.9158239936305 + ], + [ + 77.550680537905507, + 12.916019330869201 + ], + [ + 77.550699884977305, + 12.916110617794599 + ], + [ + 77.550704592791703, + 12.9161207357986 + ], + [ + 77.550752179406899, + 12.9161937941091 + ], + [ + 77.550754296677994, + 12.9161970448767 + ], + [ + 77.5508273792247, + 12.9163081348609 + ], + [ + 77.550895742548093, + 12.916407977594 + ], + [ + 77.5509428461624, + 12.916454949386599 + ], + [ + 77.550982030168598, + 12.9164930209524 + ], + [ + 77.551054469945896, + 12.916563404100501 + ], + [ + 77.551141323411102, + 12.9166607067671 + ], + [ + 77.551204299057304, + 12.9167129821325 + ], + [ + 77.551232151713094, + 12.9167430971593 + ], + [ + 77.551270552921295, + 12.916783377904601 + ], + [ + 77.551351418852505, + 12.9168672876624 + ], + [ + 77.551420014132304, + 12.9169332479798 + ], + [ + 77.551478606665498, + 12.916977848716099 + ], + [ + 77.551569672675797, + 12.917045848073201 + ], + [ + 77.551576792451698, + 12.917051281666099 + ], + [ + 77.551609121940402, + 12.917075954526901 + ], + [ + 77.551663534191206, + 12.9171623813161 + ], + [ + 77.551665295344804, + 12.9171657520995 + ], + [ + 77.551689859754902, + 12.917203909312001 + ], + [ + 77.551775913390799, + 12.9174018306388 + ], + [ + 77.551859196337105, + 12.917593161211601 + ], + [ + 77.5518625542405, + 12.917600875502799 + ], + [ + 77.5518790490855, + 12.9176379822187 + ], + [ + 77.551960046367697, + 12.917808946475301 + ], + [ + 77.551996154961003, + 12.9178851619711 + ], + [ + 77.552008464835893, + 12.917911144780501 + ], + [ + 77.552009673356807, + 12.917916779623001 + ], + [ + 77.552016562036101, + 12.917946188733399 + ], + [ + 77.552024716787798, + 12.9179810044501 + ], + [ + 77.552031839686606, + 12.918058858663001 + ], + [ + 77.5520324590982, + 12.918119836478001 + ], + [ + 77.552029030714294, + 12.9181444030074 + ], + [ + 77.552027093247403, + 12.918158286176499 + ], + [ + 77.552001891615006, + 12.918227421690601 + ], + [ + 77.552000786326502, + 12.918231949817701 + ], + [ + 77.551946480103496, + 12.9183826816337 + ], + [ + 77.551940813947297, + 12.918448238211401 + ], + [ + 77.551931588981205, + 12.9185601321433 + ], + [ + 77.551922813426003, + 12.9186595990424 + ], + [ + 77.551926737241402, + 12.9187058632592 + ], + [ + 77.551967923027902, + 12.918793548505199 + ], + [ + 77.551986351239293, + 12.9188509642534 + ], + [ + 77.551991116529393, + 12.918866728306901 + ], + [ + 77.551993499174799, + 12.918874610333599 + ], + [ + 77.552051449314305, + 12.9191959031706 + ], + [ + 77.552102079620894, + 12.9194766116102 + ], + [ + 77.552103898162997, + 12.9194856284791 + ], + [ + 77.552125938112198, + 12.9197162195946 + ], + [ + 77.552145485184298, + 12.9197137698446 + ], + [ + 77.552152218202593, + 12.919753230598101 + ], + [ + 77.5521702254036, + 12.919753246184399 + ], + [ + 77.552194224713105, + 12.9197516906123 + ], + [ + 77.552433118883997, + 12.919695147194 + ], + [ + 77.5524344175127, + 12.9196949851738 + ], + [ + 77.552588732826294, + 12.919669486682301 + ], + [ + 77.552640639057302, + 12.9196791431356 + ], + [ + 77.552645210852702, + 12.9197201774238 + ], + [ + 77.552704815941993, + 12.9198076823723 + ], + [ + 77.552748614425397, + 12.919925833777301 + ], + [ + 77.552780130498803, + 12.920024906657799 + ], + [ + 77.552787347414494, + 12.920055328001901 + ], + [ + 77.552847183955194, + 12.9201089507261 + ], + [ + 77.553015124550896, + 12.9202642852786 + ], + [ + 77.5531377102335, + 12.920374890071599 + ], + [ + 77.553338379258307, + 12.9205334855862 + ], + [ + 77.553356486769502, + 12.9205477964206 + ], + [ + 77.553628782020098, + 12.920719049672901 + ], + [ + 77.5537370718136, + 12.9207823621065 + ], + [ + 77.553995036664304, + 12.9209029352616 + ], + [ + 77.554030423263796, + 12.9209296929433 + ], + [ + 77.554053533159404, + 12.9209374082787 + ], + [ + 77.5541257287165, + 12.9209615110054 + ], + [ + 77.554247672125697, + 12.9210088789872 + ], + [ + 77.5543704452068, + 12.921024617577199 + ], + [ + 77.554478656260102, + 12.921023558675699 + ], + [ + 77.554512833229893, + 12.921020212589999 + ], + [ + 77.554568368010806, + 12.9210147754647 + ], + [ + 77.554643609590102, + 12.920998228534 + ], + [ + 77.554741668037096, + 12.9209611303682 + ], + [ + 77.554830251529907, + 12.920954616771301 + ], + [ + 77.554918892443197, + 12.9209537492252 + ], + [ + 77.555026619722597, + 12.920961729463199 + ], + [ + 77.555079193715997, + 12.9209804134558 + ], + [ + 77.555156426201094, + 12.920989821446801 + ], + [ + 77.555284241704697, + 12.920991958302899 + ], + [ + 77.555411884871901, + 12.9209771568626 + ], + [ + 77.555523457445702, + 12.9209670300007 + ], + [ + 77.555588971310598, + 12.920956224680699 + ], + [ + 77.555630333366295, + 12.920947914450499 + ], + [ + 77.555644013712097, + 12.9209989338238 + ], + [ + 77.555662046040297, + 12.921066183399899 + ], + [ + 77.555691974533403, + 12.921178823168299 + ], + [ + 77.555693160184006, + 12.9211821995435 + ], + [ + 77.555815131975393, + 12.921571752725701 + ], + [ + 77.5558990252743, + 12.921839711257901 + ], + [ + 77.555991241415398, + 12.922133562759401 + ], + [ + 77.555994211314896, + 12.922142568297 + ], + [ + 77.556087624898794, + 12.922440925303 + ], + [ + 77.556088810563594, + 12.9224443016741 + ], + [ + 77.556102497430203, + 12.9224882114069 + ], + [ + 77.556253076356796, + 12.9229734767825 + ], + [ + 77.556277781880098, + 12.9229656803082 + ], + [ + 77.556456204518597, + 12.9229093742966 + ], + [ + 77.557226259935007, + 12.9226669308408 + ], + [ + 77.557281868459896, + 12.922649406455101 + ], + [ + 77.5579067970869, + 12.922452466470901 + ], + [ + 77.557946962042095, + 12.922439650270899 + ], + [ + 77.558136889080401, + 12.922375808999 + ], + [ + 77.558229343807596, + 12.9223447315995 + ], + [ + 77.558570729455695, + 12.922229978842401 + ], + [ + 77.558697915751097, + 12.922187226228701 + ], + [ + 77.558751848777703, + 12.922169757652799 + ], + [ + 77.558983901941104, + 12.922120619371499 + ], + [ + 77.558984023823299, + 12.9221205935622 + ], + [ + 77.559322237166199, + 12.9220489744208 + ], + [ + 77.559418165207802, + 12.9220288353049 + ], + [ + 77.559676709170901, + 12.921979997747099 + ], + [ + 77.560200692220903, + 12.921881124960599 + ], + [ + 77.560204618390401, + 12.921880381753301 + ], + [ + 77.560345476146097, + 12.921853730386101 + ], + [ + 77.560945284185493, + 12.9217373688275 + ], + [ + 77.5614307266857, + 12.921643192904 + ], + [ + 77.561524236737995, + 12.9216117835649 + ], + [ + 77.561626184551102, + 12.9215046267494 + ], + [ + 77.561651245557997, + 12.9214784063831 + ], + [ + 77.561767950968203, + 12.9212943107475 + ], + [ + 77.561845239851607, + 12.921083498177399 + ], + [ + 77.561942696919203, + 12.9208182801743 + ], + [ + 77.5620882635925, + 12.920480888688401 + ], + [ + 77.5617630192652, + 12.920317944500701 + ], + [ + 77.561842881238704, + 12.9201723896137 + ], + [ + 77.561758510928001, + 12.920006869233299 + ], + [ + 77.561542110741996, + 12.919653930834601 + ], + [ + 77.561656751316704, + 12.919559899801399 + ], + [ + 77.561355336771896, + 12.918593827542299 + ], + [ + 77.561704410881504, + 12.9184328154991 + ], + [ + 77.561589126258596, + 12.9180631318479 + ], + [ + 77.5624147960161, + 12.9176316195722 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "77", + "group": "Kammagondanahalli", + "Corporatio": "North", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "2", + "ward_id": "28", + "ward_name": "28 - Kammagondanahalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ಕಮ್ಮಗೊಂಡನಹಳ್ಳಿ", + "dig_ward_n": "Kammagondanahalli", + "Assembly": "155 - Dasarahalli", + "Slno": "28" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.526881078868996, + 13.0634464745304 + ], + [ + 77.526876847996405, + 13.0634446737233 + ], + [ + 77.525160459888895, + 13.0640947660814 + ], + [ + 77.525248801067903, + 13.064335489466 + ], + [ + 77.525282720030603, + 13.0643851022771 + ], + [ + 77.525349039196499, + 13.064402314884999 + ], + [ + 77.525395551206898, + 13.0645655182523 + ], + [ + 77.525565715555302, + 13.0650685440631 + ], + [ + 77.524799817783403, + 13.065347046590899 + ], + [ + 77.524648954337295, + 13.065416403275901 + ], + [ + 77.524940337776897, + 13.066371474560199 + ], + [ + 77.524951053204802, + 13.066408001170201 + ], + [ + 77.5249698555685, + 13.0665007342946 + ], + [ + 77.524975424353499, + 13.066521996928 + ], + [ + 77.5249828889946, + 13.0665546535466 + ], + [ + 77.524996180733595, + 13.066600466170099 + ], + [ + 77.525058260029198, + 13.0668627685963 + ], + [ + 77.525118694001904, + 13.067049006483 + ], + [ + 77.525136919116207, + 13.0671163381552 + ], + [ + 77.525167800559899, + 13.0671092506108 + ], + [ + 77.525189267405196, + 13.0671038241193 + ], + [ + 77.526016091035899, + 13.0669265564963 + ], + [ + 77.526906745569505, + 13.066802588781201 + ], + [ + 77.526906432388202, + 13.0668045966497 + ], + [ + 77.526965161231999, + 13.067262150407799 + ], + [ + 77.526427394377606, + 13.067611633303899 + ], + [ + 77.525933731567306, + 13.0679821993711 + ], + [ + 77.525962970752801, + 13.0686990459351 + ], + [ + 77.525787678043002, + 13.0692051437063 + ], + [ + 77.525473585180507, + 13.069490287370501 + ], + [ + 77.524914944137393, + 13.069706108317799 + ], + [ + 77.524218208049206, + 13.0697702890313 + ], + [ + 77.523804544094801, + 13.0698556070724 + ], + [ + 77.523516402703706, + 13.069866305400801 + ], + [ + 77.523443502246494, + 13.0700890567977 + ], + [ + 77.523481977487805, + 13.070530509566099 + ], + [ + 77.523548802906902, + 13.0708707116996 + ], + [ + 77.5241915944803, + 13.070989676860201 + ], + [ + 77.524587019391205, + 13.071028839699 + ], + [ + 77.524806553497598, + 13.0710362550493 + ], + [ + 77.524932968727001, + 13.0710059652653 + ], + [ + 77.525301540801394, + 13.071956786963099 + ], + [ + 77.523597171346907, + 13.072506517520999 + ], + [ + 77.524015806394004, + 13.073928327269 + ], + [ + 77.524170752655607, + 13.074803702434499 + ], + [ + 77.5241710352458, + 13.074805298820101 + ], + [ + 77.524171492164498, + 13.0748048254503 + ], + [ + 77.525450656224095, + 13.073479949262101 + ], + [ + 77.525541932161602, + 13.0735942809401 + ], + [ + 77.525634963586796, + 13.074109706579801 + ], + [ + 77.525749558494496, + 13.0753061973346 + ], + [ + 77.525961889071198, + 13.076042766601599 + ], + [ + 77.526751294264201, + 13.0759776712825 + ], + [ + 77.526673826299699, + 13.0762724535712 + ], + [ + 77.526790935532006, + 13.076278479150099 + ], + [ + 77.526853526202203, + 13.0765461416559 + ], + [ + 77.527259122643997, + 13.076517720731999 + ], + [ + 77.528573945178906, + 13.0763255630074 + ], + [ + 77.530094404678096, + 13.0761847706442 + ], + [ + 77.530296202256395, + 13.077572869485801 + ], + [ + 77.530345693724101, + 13.077913297764001 + ], + [ + 77.530403524960604, + 13.077913807806199 + ], + [ + 77.530405321598906, + 13.077902370339601 + ], + [ + 77.530570715139007, + 13.077853316845401 + ], + [ + 77.530704205477804, + 13.0778645302542 + ], + [ + 77.530775377820802, + 13.0778705091234 + ], + [ + 77.530812793436795, + 13.077681808705201 + ], + [ + 77.530873728060598, + 13.077374491612099 + ], + [ + 77.530888231110694, + 13.077301346396601 + ], + [ + 77.530891632230905, + 13.0772510593817 + ], + [ + 77.530895218346998, + 13.0771980375585 + ], + [ + 77.530905459449102, + 13.077046629545 + ], + [ + 77.530922295454403, + 13.0767977204272 + ], + [ + 77.530955801704906, + 13.076302350414201 + ], + [ + 77.531117196398895, + 13.075861456216099 + ], + [ + 77.531308748229094, + 13.075741803749899 + ], + [ + 77.531521287858197, + 13.0756090402288 + ], + [ + 77.531367022385595, + 13.0749984525287 + ], + [ + 77.531276775482993, + 13.074591492382201 + ], + [ + 77.531269812125004, + 13.074560093721599 + ], + [ + 77.5312615458256, + 13.0744091960284 + ], + [ + 77.531242914798298, + 13.0740690960395 + ], + [ + 77.531247683659998, + 13.0739154595238 + ], + [ + 77.531350974948197, + 13.073368977415999 + ], + [ + 77.531376766049107, + 13.073186901410301 + ], + [ + 77.531497666416698, + 13.072981207815801 + ], + [ + 77.531540255090107, + 13.0729087503813 + ], + [ + 77.531607768400406, + 13.0727938863988 + ], + [ + 77.531737781978094, + 13.0726136408642 + ], + [ + 77.531792360240999, + 13.0725379759982 + ], + [ + 77.531830349822002, + 13.0724788780539 + ], + [ + 77.531805952556397, + 13.0724587892024 + ], + [ + 77.531788998645297, + 13.072442896262499 + ], + [ + 77.531782108203799, + 13.0724364362546 + ], + [ + 77.5316192295017, + 13.072279926011101 + ], + [ + 77.531593659728003, + 13.0721815738725 + ], + [ + 77.531531001623804, + 13.071940564334 + ], + [ + 77.531527898441695, + 13.0719286264983 + ], + [ + 77.531509927930799, + 13.071859505671901 + ], + [ + 77.531505830969806, + 13.071843745061001 + ], + [ + 77.531498387219202, + 13.0718151130073 + ], + [ + 77.531456203481696, + 13.0716528577902 + ], + [ + 77.531250520347996, + 13.070861705494 + ], + [ + 77.531018155589294, + 13.069939934021299 + ], + [ + 77.531010365355399, + 13.0699090312929 + ], + [ + 77.530986006328106, + 13.0698123990821 + ], + [ + 77.530976189524495, + 13.0697734545505 + ], + [ + 77.531123052333996, + 13.0696694218866 + ], + [ + 77.531847791819004, + 13.069156039853301 + ], + [ + 77.532118559727607, + 13.0690481766429 + ], + [ + 77.532205421436203, + 13.0688928816221 + ], + [ + 77.532310734211606, + 13.068704597134801 + ], + [ + 77.532320282013899, + 13.0686875273521 + ], + [ + 77.532320622334794, + 13.0686869195951 + ], + [ + 77.532343399824995, + 13.068646195591 + ], + [ + 77.532403082574405, + 13.068629311893799 + ], + [ + 77.532471808648197, + 13.0686098694382 + ], + [ + 77.532801111770894, + 13.068304824359901 + ], + [ + 77.533065071324799, + 13.068060307976801 + ], + [ + 77.5333080609295, + 13.067870752657401 + ], + [ + 77.533930191144407, + 13.0673392091647 + ], + [ + 77.533956196550704, + 13.0673169907732 + ], + [ + 77.533952087888196, + 13.067020624041501 + ], + [ + 77.533938403541995, + 13.0660334159885 + ], + [ + 77.534206249824905, + 13.065259134221 + ], + [ + 77.5347306299591, + 13.063743259715199 + ], + [ + 77.534756456809703, + 13.0637150539805 + ], + [ + 77.5348795956576, + 13.063580570995001 + ], + [ + 77.534953927137806, + 13.0634993916272 + ], + [ + 77.535007499525705, + 13.0634435286828 + ], + [ + 77.535061705452193, + 13.063393306187001 + ], + [ + 77.535097643063693, + 13.0633590735883 + ], + [ + 77.535186530938404, + 13.0632644667844 + ], + [ + 77.535200214857397, + 13.0632507805214 + ], + [ + 77.535007451386704, + 13.0631566782435 + ], + [ + 77.535002230540698, + 13.063141398516199 + ], + [ + 77.534217283654499, + 13.060850379835401 + ], + [ + 77.534088773325294, + 13.060566499055099 + ], + [ + 77.533854890216006, + 13.0600498462777 + ], + [ + 77.534328284178699, + 13.0593665159483 + ], + [ + 77.534452994915398, + 13.0591283687616 + ], + [ + 77.534277320187599, + 13.059015527978501 + ], + [ + 77.534090006512898, + 13.0589643964078 + ], + [ + 77.533878898938994, + 13.058917314862599 + ], + [ + 77.533565021970603, + 13.0588752958491 + ], + [ + 77.533529394403402, + 13.059012174051199 + ], + [ + 77.533445862629605, + 13.0594586893514 + ], + [ + 77.5334721877947, + 13.059537664846699 + ], + [ + 77.533201262874101, + 13.0596259934043 + ], + [ + 77.532788746008706, + 13.0597310535594 + ], + [ + 77.532694266510006, + 13.0597298512081 + ], + [ + 77.532677053902006, + 13.059667075814501 + ], + [ + 77.532655791251997, + 13.0594382493843 + ], + [ + 77.5326578162814, + 13.0592721983381 + ], + [ + 77.532688191471905, + 13.059180060260299 + ], + [ + 77.532743879321103, + 13.059057546991999 + ], + [ + 77.532795833553095, + 13.058345944873199 + ], + [ + 77.532518406813296, + 13.0582588693271 + ], + [ + 77.532362987088703, + 13.0582047002374 + ], + [ + 77.532251801235205, + 13.058165528898 + ], + [ + 77.532035124876401, + 13.058649506933101 + ], + [ + 77.531838315793195, + 13.059127222231499 + ], + [ + 77.531752129351602, + 13.059355730111999 + ], + [ + 77.531700491527701, + 13.0596068316867 + ], + [ + 77.531609365956299, + 13.059927796199499 + ], + [ + 77.531510140334007, + 13.060165735191701 + ], + [ + 77.531212463467199, + 13.0610172530317 + ], + [ + 77.531205249363495, + 13.0610414266212 + ], + [ + 77.5310656500465, + 13.061792832895501 + ], + [ + 77.530282729511597, + 13.061700188564499 + ], + [ + 77.529908608415496, + 13.061646525727999 + ], + [ + 77.529743276240097, + 13.0615650563774 + ], + [ + 77.529688502660406, + 13.0616105799641 + ], + [ + 77.529396746046601, + 13.061853065107201 + ], + [ + 77.529213951674194, + 13.061989252720499 + ], + [ + 77.528963829766198, + 13.0621756012162 + ], + [ + 77.528720538633095, + 13.0623339338014 + ], + [ + 77.528710095405899, + 13.0623407298113 + ], + [ + 77.528638912652397, + 13.0623870552678 + ], + [ + 77.5286061190656, + 13.062408397223299 + ], + [ + 77.528535436135996, + 13.0624543970346 + ], + [ + 77.528369375305104, + 13.0625506216375 + ], + [ + 77.528122193572401, + 13.0626938532758 + ], + [ + 77.528080741276199, + 13.062717872853 + ], + [ + 77.528012072176793, + 13.062757663164501 + ], + [ + 77.527772943300505, + 13.0628701636612 + ], + [ + 77.527734504910001, + 13.062888247714501 + ], + [ + 77.527480103651797, + 13.0630079336165 + ], + [ + 77.527205465528695, + 13.0631106322777 + ], + [ + 77.527193571716396, + 13.063115079845 + ], + [ + 77.527214425401496, + 13.0631441673741 + ], + [ + 77.527252969749199, + 13.0631688174937 + ], + [ + 77.527347663449007, + 13.0632406536938 + ], + [ + 77.526881078868996, + 13.0634464745304 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "72", + "group": "Isro Layout", + "Corporatio": "South", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "4", + "ward_id": "65", + "ward_name": "65 - ISRO Layout", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ಇಸ್ರೋ ಲೇಔಟ್", + "dig_ward_n": "Isro Layout", + "Assembly": "171 - Padmanabanagar", + "Slno": "65" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.556346902296696, + 12.9029382821079 + ], + [ + 77.556354125694895, + 12.9029687642004 + ], + [ + 77.556359050073297, + 12.902989783888801 + ], + [ + 77.556502569507998, + 12.903225129905399 + ], + [ + 77.556595528690707, + 12.903496068060701 + ], + [ + 77.556622433660394, + 12.903584020787701 + ], + [ + 77.556622433660394, + 12.903584020787701 + ], + [ + 77.557009588387103, + 12.9034119483055 + ], + [ + 77.557099914848095, + 12.903380467076399 + ], + [ + 77.5572905572742, + 12.9033413115061 + ], + [ + 77.557325623293906, + 12.9033390557908 + ], + [ + 77.557445898191901, + 12.903353178212701 + ], + [ + 77.557774384252397, + 12.903426456426301 + ], + [ + 77.557836985106903, + 12.9034348913404 + ], + [ + 77.557820117167196, + 12.9034949325015 + ], + [ + 77.557842725614506, + 12.903609451808601 + ], + [ + 77.557704722560302, + 12.903621045437101 + ], + [ + 77.557158832228893, + 12.903731010871599 + ], + [ + 77.557183396563701, + 12.903971436756301 + ], + [ + 77.557221895564197, + 12.904197917568199 + ], + [ + 77.557667650897898, + 12.9041324028801 + ], + [ + 77.558284372958994, + 12.9038365335603 + ], + [ + 77.558375291919603, + 12.903791420989201 + ], + [ + 77.558436918933396, + 12.903980856346699 + ], + [ + 77.558484917066593, + 12.9040281940624 + ], + [ + 77.558566238493498, + 12.904282287023999 + ], + [ + 77.558573003482906, + 12.904303425035399 + ], + [ + 77.558652264749298, + 12.9044740338887 + ], + [ + 77.558661444323803, + 12.904493792161301 + ], + [ + 77.558785752398407, + 12.9046168760544 + ], + [ + 77.559020766477403, + 12.9048233431861 + ], + [ + 77.559027936809201, + 12.904829642377001 + ], + [ + 77.559114162732996, + 12.9049220243976 + ], + [ + 77.559292146979004, + 12.905051754031801 + ], + [ + 77.559333896670395, + 12.9050836158978 + ], + [ + 77.559404909621406, + 12.9051081658626 + ], + [ + 77.5594208929177, + 12.9051223517724 + ], + [ + 77.559579861482604, + 12.905179359917501 + ], + [ + 77.559666613644396, + 12.905203609290499 + ], + [ + 77.559731898133904, + 12.905273487668 + ], + [ + 77.559760180735395, + 12.905336681459399 + ], + [ + 77.559603358639094, + 12.9054004568551 + ], + [ + 77.559116893377293, + 12.9055982878498 + ], + [ + 77.5587970270319, + 12.905732438075299 + ], + [ + 77.558778410623404, + 12.905740245566999 + ], + [ + 77.558605354345005, + 12.9058554851594 + ], + [ + 77.558548352543099, + 12.9058957982488 + ], + [ + 77.558549565606896, + 12.905896807283399 + ], + [ + 77.558742948381493, + 12.906057594709599 + ], + [ + 77.558935618961797, + 12.906217788118999 + ], + [ + 77.559456167672806, + 12.906642370709299 + ], + [ + 77.559060817439601, + 12.9069915228512 + ], + [ + 77.558853125202702, + 12.9072001391147 + ], + [ + 77.558066927532806, + 12.9078006249794 + ], + [ + 77.558129054031895, + 12.907955099016499 + ], + [ + 77.558189070610197, + 12.9080804295437 + ], + [ + 77.5582428344471, + 12.908192703007799 + ], + [ + 77.558251957259699, + 12.908211754417501 + ], + [ + 77.5584877383004, + 12.908608996942499 + ], + [ + 77.558867623452798, + 12.9084152066358 + ], + [ + 77.559136968028895, + 12.908278117435099 + ], + [ + 77.559196772983398, + 12.9083374500863 + ], + [ + 77.559361909563705, + 12.908473519954599 + ], + [ + 77.559478686545802, + 12.9085985894737 + ], + [ + 77.559645183630593, + 12.9087246065231 + ], + [ + 77.559839208731304, + 12.908825971142999 + ], + [ + 77.559949510527304, + 12.908889431819199 + ], + [ + 77.560061273836396, + 12.908952878117899 + ], + [ + 77.560146693347704, + 12.909013713110401 + ], + [ + 77.560216149030694, + 12.909086179346 + ], + [ + 77.560222055143399, + 12.9090918584418 + ], + [ + 77.560700472502802, + 12.9088361770325 + ], + [ + 77.560923422224604, + 12.9087149014068 + ], + [ + 77.561160488719196, + 12.908592101342 + ], + [ + 77.561517147767802, + 12.908381343285001 + ], + [ + 77.561553856953395, + 12.9084077926451 + ], + [ + 77.562098552760204, + 12.9087739217111 + ], + [ + 77.562136299580303, + 12.908798340658301 + ], + [ + 77.562166254142795, + 12.908817718822901 + ], + [ + 77.562480392279397, + 12.908940852109801 + ], + [ + 77.562521749946498, + 12.908982039000801 + ], + [ + 77.562847597460305, + 12.909106490718001 + ], + [ + 77.563276131586605, + 12.9092643562795 + ], + [ + 77.563655618846497, + 12.9093438187111 + ], + [ + 77.564026363043297, + 12.909426234829301 + ], + [ + 77.564210151969803, + 12.9094445926084 + ], + [ + 77.564222479979605, + 12.9094458240875 + ], + [ + 77.564824502179604, + 12.909487461798699 + ], + [ + 77.564839910122302, + 12.909488527492799 + ], + [ + 77.565475515158994, + 12.9094975850859 + ], + [ + 77.5657023311378, + 12.9095052433553 + ], + [ + 77.5656865041732, + 12.9094658255827 + ], + [ + 77.5656299706487, + 12.9093702864136 + ], + [ + 77.565541358709197, + 12.909271358055699 + ], + [ + 77.565373674311203, + 12.909076991555599 + ], + [ + 77.565183914640201, + 12.9088684992597 + ], + [ + 77.565013087899004, + 12.9086048419273 + ], + [ + 77.564900053707603, + 12.908154165239299 + ], + [ + 77.564864852732399, + 12.9080259524567 + ], + [ + 77.564862091263606, + 12.908015895175801 + ], + [ + 77.564860761734707, + 12.907766111371799 + ], + [ + 77.565041013272307, + 12.907401000451101 + ], + [ + 77.565347938254703, + 12.9070322562724 + ], + [ + 77.565606539750902, + 12.906840174845501 + ], + [ + 77.565848553595501, + 12.906660414823801 + ], + [ + 77.565987657088598, + 12.906555099930801 + ], + [ + 77.566358766709598, + 12.9062741351401 + ], + [ + 77.566658649126296, + 12.906051273336701 + ], + [ + 77.5666985289254, + 12.905933317621299 + ], + [ + 77.566813443062998, + 12.905886220215001 + ], + [ + 77.566813478388198, + 12.9058862039504 + ], + [ + 77.5662648295407, + 12.9054475670951 + ], + [ + 77.566252915249606, + 12.905408157876799 + ], + [ + 77.566181581090504, + 12.905355780293499 + ], + [ + 77.565949707009196, + 12.9051630505045 + ], + [ + 77.565628336141003, + 12.9048959320767 + ], + [ + 77.565528063546793, + 12.904828027857199 + ], + [ + 77.565230963924904, + 12.9045825892903 + ], + [ + 77.565007938028501, + 12.904398343552201 + ], + [ + 77.564997107386503, + 12.9043903919128 + ], + [ + 77.564990294616905, + 12.9043853894769 + ], + [ + 77.564936604399705, + 12.9043459664257 + ], + [ + 77.564921501967603, + 12.9043325627822 + ], + [ + 77.564894796456898, + 12.904310238436 + ], + [ + 77.5647171013144, + 12.9041572651705 + ], + [ + 77.564517339857204, + 12.903985309791 + ], + [ + 77.564343708529293, + 12.9038356842778 + ], + [ + 77.564215971531397, + 12.903727393274901 + ], + [ + 77.564138779163002, + 12.903664908539699 + ], + [ + 77.564119624963297, + 12.903649285939601 + ], + [ + 77.563992509740999, + 12.9035455059815 + ], + [ + 77.5638358230714, + 12.903420558887801 + ], + [ + 77.563781369273102, + 12.9033760294449 + ], + [ + 77.563707545472099, + 12.903315660827101 + ], + [ + 77.563656460076004, + 12.9032732476373 + ], + [ + 77.563550697455995, + 12.9031853377088 + ], + [ + 77.563523520713602, + 12.9031627485684 + ], + [ + 77.563441079719894, + 12.903093539102899 + ], + [ + 77.563253014951698, + 12.9029395368919 + ], + [ + 77.562969709599102, + 12.9027028984718 + ], + [ + 77.562909900340799, + 12.902653995257801 + ], + [ + 77.562565725209495, + 12.9023725795837 + ], + [ + 77.562516469409104, + 12.902331993026101 + ], + [ + 77.562509140580801, + 12.9023259547804 + ], + [ + 77.562468205543297, + 12.9022922243007 + ], + [ + 77.562462979633906, + 12.9022877582362 + ], + [ + 77.562400078897099, + 12.902235509852 + ], + [ + 77.562270829710499, + 12.9021281485223 + ], + [ + 77.562261108918406, + 12.902119374550001 + ], + [ + 77.562242363518294, + 12.9021024531046 + ], + [ + 77.562040775157499, + 12.901920349203801 + ], + [ + 77.561860631679195, + 12.9017527161398 + ], + [ + 77.561823947550195, + 12.9017188535191 + ], + [ + 77.561773472242507, + 12.901672258976699 + ], + [ + 77.561193330432502, + 12.901226213837999 + ], + [ + 77.560899901724198, + 12.900983215510699 + ], + [ + 77.560883346999006, + 12.900969505958299 + ], + [ + 77.560329568225399, + 12.9005119068044 + ], + [ + 77.560092725100006, + 12.9003154649383 + ], + [ + 77.560174280528301, + 12.9002412601158 + ], + [ + 77.560180554020704, + 12.9002355520518 + ], + [ + 77.56067499644, + 12.8997834967453 + ], + [ + 77.5608669291708, + 12.8995998958732 + ], + [ + 77.561156532847093, + 12.899322863299099 + ], + [ + 77.561187923608799, + 12.8992928346719 + ], + [ + 77.561195322328501, + 12.8992857567649 + ], + [ + 77.561223555512399, + 12.8992587491701 + ], + [ + 77.561242761889801, + 12.8992403765278 + ], + [ + 77.561038292842795, + 12.8987183726599 + ], + [ + 77.560767641125295, + 12.8980276178479 + ], + [ + 77.560511758710902, + 12.897373985582901 + ], + [ + 77.560468538358094, + 12.897255829609801 + ], + [ + 77.560270166975002, + 12.8967177889028 + ], + [ + 77.560096810691803, + 12.896247593212699 + ], + [ + 77.560120315587497, + 12.896238328496199 + ], + [ + 77.560125209394201, + 12.896153581138501 + ], + [ + 77.560111788388994, + 12.896135643311601 + ], + [ + 77.559925735978396, + 12.8958957888578 + ], + [ + 77.559986904275505, + 12.895854534342201 + ], + [ + 77.559998155683104, + 12.8956025844794 + ], + [ + 77.559846601424496, + 12.8948496780485 + ], + [ + 77.559841134563001, + 12.8948214983998 + ], + [ + 77.559712037329007, + 12.8941259675426 + ], + [ + 77.559539677817298, + 12.8941570168254 + ], + [ + 77.559259681715801, + 12.8942444562737 + ], + [ + 77.559174270570793, + 12.8942972822269 + ], + [ + 77.559137724836503, + 12.894319885390299 + ], + [ + 77.559114968785707, + 12.8943339597711 + ], + [ + 77.5591186041448, + 12.8944381647529 + ], + [ + 77.559121467310305, + 12.894520235122901 + ], + [ + 77.559119889975804, + 12.894534931806399 + ], + [ + 77.559091279815803, + 12.8947780170347 + ], + [ + 77.559076394949301, + 12.8948425343146 + ], + [ + 77.559041629134001, + 12.894989686991799 + ], + [ + 77.558998138506595, + 12.8951278904253 + ], + [ + 77.558953165346395, + 12.8951768915339 + ], + [ + 77.558936578314203, + 12.895187217774399 + ], + [ + 77.558858531116201, + 12.895205890286 + ], + [ + 77.558785615692798, + 12.8952233350164 + ], + [ + 77.558626515494197, + 12.8952613990421 + ], + [ + 77.558462960085393, + 12.895309301548799 + ], + [ + 77.558450011463293, + 12.895281195038599 + ], + [ + 77.558429143320396, + 12.8952332992304 + ], + [ + 77.558425579267805, + 12.8952251191429 + ], + [ + 77.558325072276006, + 12.8949944387542 + ], + [ + 77.558042069024395, + 12.8951259503282 + ], + [ + 77.557884050245207, + 12.8951996506427 + ], + [ + 77.5576834511577, + 12.895293210323601 + ], + [ + 77.556819565993393, + 12.8956969226042 + ], + [ + 77.556498539363801, + 12.8958818829844 + ], + [ + 77.556207151112403, + 12.8960947865727 + ], + [ + 77.556137671584594, + 12.896137965528499 + ], + [ + 77.555915441235697, + 12.8962760718425 + ], + [ + 77.555501901554607, + 12.8967600784599 + ], + [ + 77.555385787730202, + 12.896939876325 + ], + [ + 77.555380064956296, + 12.896948737817301 + ], + [ + 77.555600887589407, + 12.897211972236899 + ], + [ + 77.555713768583303, + 12.8973317072474 + ], + [ + 77.555704582944401, + 12.897334055684199 + ], + [ + 77.5558674053473, + 12.8975538127923 + ], + [ + 77.555610930492094, + 12.897974171483 + ], + [ + 77.555638089817606, + 12.898001916687701 + ], + [ + 77.555825551755007, + 12.898193422264001 + ], + [ + 77.555820629636997, + 12.898285390773999 + ], + [ + 77.555814424747695, + 12.8984013276132 + ], + [ + 77.555652036354303, + 12.8985644089944 + ], + [ + 77.555760874935601, + 12.8990794486194 + ], + [ + 77.555750538157, + 12.899081808321499 + ], + [ + 77.555753564964306, + 12.899096460014499 + ], + [ + 77.555862515025396, + 12.8995883218684 + ], + [ + 77.556438617936607, + 12.902189137156901 + ], + [ + 77.556471457861605, + 12.902337390503799 + ], + [ + 77.556511683573007, + 12.902500749707601 + ], + [ + 77.556259042967298, + 12.9025629765095 + ], + [ + 77.556239528169002, + 12.9025677831031 + ], + [ + 77.556227476093596, + 12.9025712889516 + ], + [ + 77.556346902296696, + 12.9029382821079 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "73", + "group": "Banashankari Temple", + "Corporatio": "South", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "4", + "ward_id": "7", + "ward_name": "7 - Banashankari Temple Ward", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ಬನಶಂಕರಿ ದೇವಸ್ಥಾನ ವಾರ್ಡ್", + "dig_ward_n": "Banashankari Temple", + "Assembly": "171 - Padmanabanagar", + "Slno": "7" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.570221865103804, + 12.9087025061944 + ], + [ + 77.5699993053057, + 12.909001643687301 + ], + [ + 77.569929687811694, + 12.9090952143713 + ], + [ + 77.569595958390394, + 12.909499242857301 + ], + [ + 77.569359411672593, + 12.909785617076 + ], + [ + 77.569128334667994, + 12.910065370172701 + ], + [ + 77.568681758166207, + 12.9105829190992 + ], + [ + 77.568171786216297, + 12.911217838871099 + ], + [ + 77.568209574817004, + 12.9112525747102 + ], + [ + 77.568470430937296, + 12.911598051435799 + ], + [ + 77.568760901090599, + 12.9117922654748 + ], + [ + 77.569079316075403, + 12.912207589730301 + ], + [ + 77.569199790235601, + 12.9124325970451 + ], + [ + 77.569441734586107, + 12.912416080128301 + ], + [ + 77.569608589845402, + 12.912948817774099 + ], + [ + 77.569678547219098, + 12.9131798533137 + ], + [ + 77.569671569087305, + 12.9131885273639 + ], + [ + 77.569866523162602, + 12.913650303136601 + ], + [ + 77.569976656126698, + 12.9139913350373 + ], + [ + 77.570016791463999, + 12.9145338011508 + ], + [ + 77.570277022645797, + 12.914825632633599 + ], + [ + 77.570214147660806, + 12.9152302269523 + ], + [ + 77.570178049763896, + 12.915646210143301 + ], + [ + 77.569995949602102, + 12.9156823809617 + ], + [ + 77.570090524524403, + 12.915827920500799 + ], + [ + 77.570127238091104, + 12.9159032342204 + ], + [ + 77.570163319522607, + 12.9159772531796 + ], + [ + 77.570235164462702, + 12.9161246364859 + ], + [ + 77.570292115409302, + 12.916233619625601 + ], + [ + 77.570366585731804, + 12.916310809435499 + ], + [ + 77.570403676516904, + 12.916335289295899 + ], + [ + 77.570648999618498, + 12.9164017626307 + ], + [ + 77.570707294209299, + 12.9164169991699 + ], + [ + 77.571001300612096, + 12.9165157430241 + ], + [ + 77.571024404126007, + 12.9165213229417 + ], + [ + 77.57106419982, + 12.916530934137899 + ], + [ + 77.571102867196501, + 12.916540717251801 + ], + [ + 77.571181801567306, + 12.916547845237 + ], + [ + 77.571237655246094, + 12.9165495538921 + ], + [ + 77.5714102461978, + 12.916539949150501 + ], + [ + 77.571643249127106, + 12.9165274907128 + ], + [ + 77.571934117805398, + 12.9165306637356 + ], + [ + 77.571975739805694, + 12.916530821144301 + ], + [ + 77.572028388063401, + 12.9165316026391 + ], + [ + 77.572556765959703, + 12.916582863386701 + ], + [ + 77.572748743713007, + 12.9166114634564 + ], + [ + 77.572814439892994, + 12.9166187213655 + ], + [ + 77.572893443613694, + 12.9166326240213 + ], + [ + 77.573103602116205, + 12.916750260494601 + ], + [ + 77.573326550607703, + 12.9168801931699 + ], + [ + 77.573534210559103, + 12.9169786555094 + ], + [ + 77.573536826465201, + 12.916881111905999 + ], + [ + 77.573540875191, + 12.9167301407851 + ], + [ + 77.573539243985707, + 12.915840257548799 + ], + [ + 77.573539098800396, + 12.9157752737416 + ], + [ + 77.573538835715198, + 12.915657501544 + ], + [ + 77.573538279705204, + 12.9154089114478 + ], + [ + 77.573538279610602, + 12.9154088691448 + ], + [ + 77.573529925433405, + 12.9153078128295 + ], + [ + 77.573523168061101, + 12.91522606921 + ], + [ + 77.573507902798696, + 12.915039406722499 + ], + [ + 77.573499426229006, + 12.9149357469559 + ], + [ + 77.573457851099903, + 12.9144273589874 + ], + [ + 77.573457496760795, + 12.914423026048 + ], + [ + 77.573453486995106, + 12.914373997373101 + ], + [ + 77.573452759042397, + 12.9143650964598 + ], + [ + 77.573446885142999, + 12.9142973954964 + ], + [ + 77.573364703758102, + 12.913748229286799 + ], + [ + 77.573340455543004, + 12.9136287608997 + ], + [ + 77.573270746770206, + 12.91345440401 + ], + [ + 77.573265682383706, + 12.9134419996495 + ], + [ + 77.5732335497039, + 12.9133632960315 + ], + [ + 77.573144970704504, + 12.9130377540518 + ], + [ + 77.5730600927659, + 12.9127258129297 + ], + [ + 77.572987548142507, + 12.9124430696139 + ], + [ + 77.572968965900202, + 12.9123709765274 + ], + [ + 77.572945450733997, + 12.912154379759199 + ], + [ + 77.572932069333405, + 12.9120280283312 + ], + [ + 77.572914429953101, + 12.911654398929601 + ], + [ + 77.572909781374193, + 12.9114251938369 + ], + [ + 77.572901406402593, + 12.9110402578304 + ], + [ + 77.572901085367704, + 12.9110255020819 + ], + [ + 77.572901924036699, + 12.911002710485301 + ], + [ + 77.572903787469997, + 12.910952070011 + ], + [ + 77.572923446563095, + 12.9103420464279 + ], + [ + 77.572931113784904, + 12.9100788405761 + ], + [ + 77.572936677570496, + 12.909891319528599 + ], + [ + 77.572948103396698, + 12.9094891709388 + ], + [ + 77.572951563746997, + 12.909377334695501 + ], + [ + 77.572958981389604, + 12.9092022178507 + ], + [ + 77.572963420203493, + 12.9090959968619 + ], + [ + 77.572985178528796, + 12.908575312104499 + ], + [ + 77.572988111209199, + 12.9085051437386 + ], + [ + 77.572992357407301, + 12.908470093163199 + ], + [ + 77.573042326015596, + 12.908050889642199 + ], + [ + 77.573071872465903, + 12.9078030143768 + ], + [ + 77.573111562853896, + 12.907519165504899 + ], + [ + 77.573256721037396, + 12.9064894425051 + ], + [ + 77.573258068691004, + 12.906479882508799 + ], + [ + 77.573259162012903, + 12.9064742251686 + ], + [ + 77.573171045256402, + 12.906469446304101 + ], + [ + 77.572868462809794, + 12.906521044005199 + ], + [ + 77.572635321001897, + 12.9065608001348 + ], + [ + 77.572152695310507, + 12.906643098420799 + ], + [ + 77.572109750008096, + 12.906650421494099 + ], + [ + 77.571947021468304, + 12.906723170101101 + ], + [ + 77.571805969294999, + 12.9068329727074 + ], + [ + 77.571754978424707, + 12.906884185363401 + ], + [ + 77.571478929066998, + 12.907161434322401 + ], + [ + 77.571328507755595, + 12.9073119843355 + ], + [ + 77.571200687412102, + 12.907449243445599 + ], + [ + 77.570905241269799, + 12.9077665061946 + ], + [ + 77.570789325115996, + 12.9078909825389 + ], + [ + 77.570771736962598, + 12.907916000554 + ], + [ + 77.570754027080994, + 12.907940643026199 + ], + [ + 77.570743762372999, + 12.9079549255262 + ], + [ + 77.570532235955, + 12.908249246707999 + ], + [ + 77.5702922396069, + 12.908590402840099 + ], + [ + 77.570269540628203, + 12.908622247018 + ], + [ + 77.570223969258905, + 12.9086797490544 + ], + [ + 77.570212712353097, + 12.908693953034 + ], + [ + 77.570221865103804, + 12.9087025061944 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "74", + "group": "Kumarswamy Layout", + "Corporatio": "South", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "4", + "ward_id": "6", + "ward_name": "6 - Kumarswamy Layout", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ಕುಮಾರಸ್ವಾಮಿ ಲೇಔಟ್", + "dig_ward_n": "Kumarswamy Layout", + "Assembly": "171 - Padmanabanagar", + "Slno": "6" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.561010888314399, + 12.9151456925532 + ], + [ + 77.561256475377306, + 12.9156940006445 + ], + [ + 77.561531860619695, + 12.915690494997699 + ], + [ + 77.561585939029797, + 12.915688530752799 + ], + [ + 77.561818419976404, + 12.9155456946411 + ], + [ + 77.561823066907706, + 12.9155425745854 + ], + [ + 77.562073976141306, + 12.9153740908258 + ], + [ + 77.562113209683801, + 12.9153477450332 + ], + [ + 77.562179354215502, + 12.9152944795733 + ], + [ + 77.562179919677007, + 12.915294024103201 + ], + [ + 77.562431335971695, + 12.9151827240164 + ], + [ + 77.562431727471903, + 12.915182550324801 + ], + [ + 77.562766696241795, + 12.9150835004569 + ], + [ + 77.563008517515001, + 12.9150119928956 + ], + [ + 77.563204312798803, + 12.9149540957358 + ], + [ + 77.563312522782695, + 12.914922920504999 + ], + [ + 77.563714549445606, + 12.914807097282001 + ], + [ + 77.563984367484593, + 12.914741341940699 + ], + [ + 77.564232783677795, + 12.914672045326601 + ], + [ + 77.564479120456795, + 12.914603329061499 + ], + [ + 77.564602539498296, + 12.9145689006297 + ], + [ + 77.564720445738899, + 12.914517544004999 + ], + [ + 77.564725196314399, + 12.9145162831069 + ], + [ + 77.564978538139997, + 12.9144490344079 + ], + [ + 77.565024190006497, + 12.914436618859 + ], + [ + 77.565531138870298, + 12.9142987482157 + ], + [ + 77.565863793843903, + 12.914214499862601 + ], + [ + 77.565851549912296, + 12.9142409206636 + ], + [ + 77.565613109155905, + 12.9148351489186 + ], + [ + 77.565607362467404, + 12.9148492604425 + ], + [ + 77.565643188905398, + 12.914921718019899 + ], + [ + 77.565814062031805, + 12.9149028284452 + ], + [ + 77.566076745627996, + 12.9148543519448 + ], + [ + 77.566190631366098, + 12.9148388905458 + ], + [ + 77.566320540417493, + 12.9148175347001 + ], + [ + 77.566437729662198, + 12.9148106316966 + ], + [ + 77.566466662238696, + 12.914808927139401 + ], + [ + 77.566508927448297, + 12.914795604115801 + ], + [ + 77.566584831687706, + 12.914783384280099 + ], + [ + 77.566628575314297, + 12.914914904068601 + ], + [ + 77.566639527152404, + 12.914985074437199 + ], + [ + 77.566657512948495, + 12.9150347733303 + ], + [ + 77.566663650466893, + 12.915060986286299 + ], + [ + 77.566657263049507, + 12.9151514063634 + ], + [ + 77.566669542501501, + 12.9152031117716 + ], + [ + 77.566684835828895, + 12.9152689363045 + ], + [ + 77.566707674216104, + 12.9153601390802 + ], + [ + 77.566751508777799, + 12.9154988648867 + ], + [ + 77.566786334475196, + 12.915616130806599 + ], + [ + 77.566815386546494, + 12.915740623287601 + ], + [ + 77.566838007398502, + 12.9159512340044 + ], + [ + 77.566842864260593, + 12.916147653720699 + ], + [ + 77.566982335545504, + 12.9161558449075 + ], + [ + 77.567142914664302, + 12.9161610965817 + ], + [ + 77.567168515579098, + 12.9161591644372 + ], + [ + 77.567139925199598, + 12.9168211194908 + ], + [ + 77.567461718509804, + 12.917127168840899 + ], + [ + 77.5665801775733, + 12.9173416368824 + ], + [ + 77.566617854391396, + 12.9174739887819 + ], + [ + 77.566835220649693, + 12.9174218208799 + ], + [ + 77.567034231535104, + 12.918197576903999 + ], + [ + 77.567118038303605, + 12.918536909785001 + ], + [ + 77.567341972000705, + 12.918481015335299 + ], + [ + 77.568026609160299, + 12.918325258267799 + ], + [ + 77.568081726168799, + 12.9183111643259 + ], + [ + 77.568215501149993, + 12.9182770982612 + ], + [ + 77.568411852467605, + 12.9182266061158 + ], + [ + 77.568689173034997, + 12.918156599984901 + ], + [ + 77.568714431559997, + 12.918150223768301 + ], + [ + 77.568665239342707, + 12.917965061475201 + ], + [ + 77.568656923915299, + 12.9178273665283 + ], + [ + 77.568655973121196, + 12.917811675993001 + ], + [ + 77.568651384158599, + 12.9177359462967 + ], + [ + 77.568655852716105, + 12.9176938564841 + ], + [ + 77.568659785242801, + 12.917656811412099 + ], + [ + 77.5686636347221, + 12.9176194132242 + ], + [ + 77.568669210485993, + 12.917565243958199 + ], + [ + 77.568741325352406, + 12.917295111473299 + ], + [ + 77.5687928420259, + 12.917102136785999 + ], + [ + 77.568858810448106, + 12.9169670990011 + ], + [ + 77.569111414526802, + 12.9164507743525 + ], + [ + 77.569224403102496, + 12.9162073897831 + ], + [ + 77.569249404925998, + 12.9161535355517 + ], + [ + 77.569283764363206, + 12.9160797918663 + ], + [ + 77.569351355135097, + 12.915934574225901 + ], + [ + 77.569473122719202, + 12.915690218842 + ], + [ + 77.569560371837497, + 12.9155151326439 + ], + [ + 77.569566824267199, + 12.915502184293899 + ], + [ + 77.569723208225795, + 12.9155401715708 + ], + [ + 77.569774561091805, + 12.915552088723301 + ], + [ + 77.569897608150995, + 12.9155949212028 + ], + [ + 77.569934675686397, + 12.9156171427533 + ], + [ + 77.569975312145104, + 12.9156506223419 + ], + [ + 77.569995949602102, + 12.9156823809617 + ], + [ + 77.570178049763896, + 12.915646210143301 + ], + [ + 77.570214147660806, + 12.9152302269523 + ], + [ + 77.570277022645797, + 12.914825632633599 + ], + [ + 77.570016791463999, + 12.9145338011508 + ], + [ + 77.569976656126698, + 12.9139913350373 + ], + [ + 77.569866523162602, + 12.913650303136601 + ], + [ + 77.569671569087305, + 12.9131885273639 + ], + [ + 77.569678547219098, + 12.9131798533137 + ], + [ + 77.569608589845402, + 12.912948817774099 + ], + [ + 77.569441734586107, + 12.912416080128301 + ], + [ + 77.569199790235601, + 12.9124325970451 + ], + [ + 77.569079316075403, + 12.912207589730301 + ], + [ + 77.568760901090599, + 12.9117922654748 + ], + [ + 77.568470430937296, + 12.911598051435799 + ], + [ + 77.568209574817004, + 12.9112525747102 + ], + [ + 77.568171786216297, + 12.911217838871099 + ], + [ + 77.568681758166207, + 12.9105829190992 + ], + [ + 77.569128334667994, + 12.910065370172701 + ], + [ + 77.569359411672593, + 12.909785617076 + ], + [ + 77.569595958390394, + 12.909499242857301 + ], + [ + 77.569929687811694, + 12.9090952143713 + ], + [ + 77.5699993053057, + 12.909001643687301 + ], + [ + 77.570221865103804, + 12.9087025061944 + ], + [ + 77.570212712353097, + 12.908693953034 + ], + [ + 77.569561078018907, + 12.9081831351187 + ], + [ + 77.569461274868104, + 12.9081050643741 + ], + [ + 77.569347506974196, + 12.908008045368 + ], + [ + 77.569119124367901, + 12.907813284784 + ], + [ + 77.568962477909906, + 12.907679698893601 + ], + [ + 77.5688016305985, + 12.907542374123199 + ], + [ + 77.568655886263599, + 12.907418452572699 + ], + [ + 77.568458468017397, + 12.9072509954312 + ], + [ + 77.568243834244896, + 12.907067670971401 + ], + [ + 77.568156516407498, + 12.906993090676499 + ], + [ + 77.568062090756399, + 12.9069124005644 + ], + [ + 77.568025863901298, + 12.9068814428385 + ], + [ + 77.567774435854503, + 12.9066670843983 + ], + [ + 77.567513730226096, + 12.906446040876199 + ], + [ + 77.567258067877304, + 12.9062416451295 + ], + [ + 77.566978393582701, + 12.906018050688299 + ], + [ + 77.566813478388198, + 12.9058862039504 + ], + [ + 77.566813443062998, + 12.905886220215001 + ], + [ + 77.5666985289254, + 12.905933317621299 + ], + [ + 77.566658649126296, + 12.906051273336701 + ], + [ + 77.566358766709598, + 12.9062741351401 + ], + [ + 77.565987657088598, + 12.906555099930801 + ], + [ + 77.565848553595501, + 12.906660414823801 + ], + [ + 77.565606539750902, + 12.906840174845501 + ], + [ + 77.565347938254703, + 12.9070322562724 + ], + [ + 77.565041013272307, + 12.907401000451101 + ], + [ + 77.564860761734707, + 12.907766111371799 + ], + [ + 77.564862091263606, + 12.908015895175801 + ], + [ + 77.564864852732399, + 12.9080259524567 + ], + [ + 77.564900053707603, + 12.908154165239299 + ], + [ + 77.565013087899004, + 12.9086048419273 + ], + [ + 77.565183914640201, + 12.9088684992597 + ], + [ + 77.565373674311203, + 12.909076991555599 + ], + [ + 77.565541358709197, + 12.909271358055699 + ], + [ + 77.5656299706487, + 12.9093702864136 + ], + [ + 77.5656865041732, + 12.9094658255827 + ], + [ + 77.5657023311378, + 12.9095052433553 + ], + [ + 77.565475515158994, + 12.9094975850859 + ], + [ + 77.564839910122302, + 12.909488527492799 + ], + [ + 77.564824502179604, + 12.909487461798699 + ], + [ + 77.564222479979605, + 12.9094458240875 + ], + [ + 77.564210151969803, + 12.9094445926084 + ], + [ + 77.564026363043297, + 12.909426234829301 + ], + [ + 77.563655618846497, + 12.9093438187111 + ], + [ + 77.563276131586605, + 12.9092643562795 + ], + [ + 77.562847597460305, + 12.909106490718001 + ], + [ + 77.562521749946498, + 12.908982039000801 + ], + [ + 77.562480392279397, + 12.908940852109801 + ], + [ + 77.562166254142795, + 12.908817718822901 + ], + [ + 77.562136299580303, + 12.908798340658301 + ], + [ + 77.562098552760204, + 12.9087739217111 + ], + [ + 77.561553856953395, + 12.9084077926451 + ], + [ + 77.561517147767802, + 12.908381343285001 + ], + [ + 77.561160488719196, + 12.908592101342 + ], + [ + 77.560923422224604, + 12.9087149014068 + ], + [ + 77.560700472502802, + 12.9088361770325 + ], + [ + 77.560222055143399, + 12.9090918584418 + ], + [ + 77.560216149030694, + 12.909086179346 + ], + [ + 77.560146693347704, + 12.909013713110401 + ], + [ + 77.560061273836396, + 12.908952878117899 + ], + [ + 77.559949510527304, + 12.908889431819199 + ], + [ + 77.559839208731304, + 12.908825971142999 + ], + [ + 77.559645183630593, + 12.9087246065231 + ], + [ + 77.559478686545802, + 12.9085985894737 + ], + [ + 77.559361909563705, + 12.908473519954599 + ], + [ + 77.559196772983398, + 12.9083374500863 + ], + [ + 77.559136968028895, + 12.908278117435099 + ], + [ + 77.558867623452798, + 12.9084152066358 + ], + [ + 77.5584877383004, + 12.908608996942499 + ], + [ + 77.558514574580997, + 12.9086542098695 + ], + [ + 77.558515320688898, + 12.9088878114067 + ], + [ + 77.558517501185193, + 12.9095703287043 + ], + [ + 77.558518153370997, + 12.9097744132677 + ], + [ + 77.558452213877004, + 12.910212413686599 + ], + [ + 77.558374039518597, + 12.910477629551099 + ], + [ + 77.558344333238594, + 12.910574776016601 + ], + [ + 77.558313773422796, + 12.910600905243401 + ], + [ + 77.558306304708793, + 12.910609376959099 + ], + [ + 77.558293919375501, + 12.9106234260049 + ], + [ + 77.558298270442293, + 12.910656214269901 + ], + [ + 77.558307400868898, + 12.9107179017217 + ], + [ + 77.558365342162503, + 12.911032510309999 + ], + [ + 77.558400464367907, + 12.9112095997663 + ], + [ + 77.558458594229904, + 12.911542881879001 + ], + [ + 77.558458594229904, + 12.911542881879001 + ], + [ + 77.558707215676705, + 12.912279671002 + ], + [ + 77.558796734211001, + 12.9125282721253 + ], + [ + 77.558799431658102, + 12.912535764300801 + ], + [ + 77.558827825007995, + 12.9126153511748 + ], + [ + 77.558860845354502, + 12.9127195300862 + ], + [ + 77.558863925063903, + 12.9127542560477 + ], + [ + 77.558864857365293, + 12.912764774037999 + ], + [ + 77.558865332690701, + 12.9128114620357 + ], + [ + 77.558865708412597, + 12.9128483665299 + ], + [ + 77.558870286896394, + 12.9129493403225 + ], + [ + 77.558894358175493, + 12.9132208049271 + ], + [ + 77.558918487778698, + 12.9134552008595 + ], + [ + 77.558941832325402, + 12.913635641673601 + ], + [ + 77.559059925221604, + 12.9136392187614 + ], + [ + 77.559106901164299, + 12.9136442840518 + ], + [ + 77.5592083040586, + 12.913648813323 + ], + [ + 77.559302238991194, + 12.9136570982366 + ], + [ + 77.559351110506398, + 12.913663986158999 + ], + [ + 77.559413139423299, + 12.9136725827763 + ], + [ + 77.559467696730707, + 12.913684937810901 + ], + [ + 77.559535432965205, + 12.9137008434754 + ], + [ + 77.559585612489002, + 12.9137239356427 + ], + [ + 77.559782271290203, + 12.913826473577 + ], + [ + 77.559794283307298, + 12.9138327369864 + ], + [ + 77.560166955945306, + 12.9141782975812 + ], + [ + 77.560589680068503, + 12.914659180177299 + ], + [ + 77.560730987894402, + 12.914780760014301 + ], + [ + 77.560803385555403, + 12.9148184345035 + ], + [ + 77.560880427108899, + 12.91490483668 + ], + [ + 77.560953149775003, + 12.914982982902901 + ], + [ + 77.561010888314399, + 12.9151456925532 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "75", + "group": "GAYATHRI NAGARA", + "Corporatio": "West", + "ac_no": "157", + "ac": "Malleshwaram", + "corporat_1": "5", + "ward_id": "35", + "ward_name": "35 - Gayathri Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಲ್ಲೇಶ್ವರಂ", + "ward_name_": "ಗಾಯತ್ರಿ ನಗರ", + "dig_ward_n": "GAYATHRI NAGARA", + "Assembly": "157 - Malleshwaram", + "Slno": "35" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.559959114823499, + 12.997418177694 + ], + [ + 77.559784731037496, + 12.9974831390545 + ], + [ + 77.559709019649603, + 12.997512118543799 + ], + [ + 77.559688236032102, + 12.9975205982132 + ], + [ + 77.559496279467496, + 12.9975989149867 + ], + [ + 77.559265184099104, + 12.9976926681477 + ], + [ + 77.559196358587499, + 12.9977193209865 + ], + [ + 77.558937695677898, + 12.9978201215729 + ], + [ + 77.558828728561394, + 12.9978629804798 + ], + [ + 77.558754823707105, + 12.9978936774617 + ], + [ + 77.558731253559699, + 12.997903467438 + ], + [ + 77.558670662399294, + 12.997928657612301 + ], + [ + 77.558621782860598, + 12.9979489783601 + ], + [ + 77.558202596410595, + 12.9981232483805 + ], + [ + 77.557868611242895, + 12.9982349541765 + ], + [ + 77.557850820332305, + 12.998240776076599 + ], + [ + 77.557844066658703, + 12.998242804928999 + ], + [ + 77.557578716800293, + 12.998322509469 + ], + [ + 77.557370902299397, + 12.998384410819501 + ], + [ + 77.557364016230906, + 12.998386737298899 + ], + [ + 77.557281956515197, + 12.9984064767212 + ], + [ + 77.557263032236193, + 12.9984110286484 + ], + [ + 77.556923443750406, + 12.998492716087799 + ], + [ + 77.556818685620598, + 12.9985185983995 + ], + [ + 77.556675889306803, + 12.9985538790375 + ], + [ + 77.556360842626702, + 12.9986032838786 + ], + [ + 77.556301251797507, + 12.9986100575774 + ], + [ + 77.555991016819107, + 12.998645322476699 + ], + [ + 77.555807346703602, + 12.9986471308703 + ], + [ + 77.555800246512305, + 12.998646993883501 + ], + [ + 77.555613254923003, + 12.9986433951207 + ], + [ + 77.555511725698395, + 12.998635885865101 + ], + [ + 77.555438071003607, + 12.9986304385135 + ], + [ + 77.555402891321904, + 12.9986251382097 + ], + [ + 77.555392127687696, + 12.998623715515 + ], + [ + 77.555212034498098, + 12.998599913177101 + ], + [ + 77.555080458736001, + 12.998571845874 + ], + [ + 77.554945486555596, + 12.998542835288101 + ], + [ + 77.554909638267006, + 12.9985351301632 + ], + [ + 77.5547284886634, + 12.998501903952301 + ], + [ + 77.554433117348395, + 12.9984483444387 + ], + [ + 77.554367928391102, + 12.998436563337 + ], + [ + 77.554157863336698, + 12.9983911986615 + ], + [ + 77.554041573588293, + 12.9983654938136 + ], + [ + 77.553859486233407, + 12.998325245459201 + ], + [ + 77.553669043627195, + 12.9982842046086 + ], + [ + 77.553637882815494, + 12.998277735191801 + ], + [ + 77.553078382427401, + 12.9981849871024 + ], + [ + 77.5529844270295, + 12.998420216145799 + ], + [ + 77.552844257267907, + 12.9987711504094 + ], + [ + 77.5527346529678, + 12.9991460347473 + ], + [ + 77.552703406213496, + 12.9993563964311 + ], + [ + 77.552729269114195, + 12.9995051632658 + ], + [ + 77.552740767482703, + 12.9995713063129 + ], + [ + 77.552748681028703, + 12.9996168251987 + ], + [ + 77.552845588801404, + 13.000162866391401 + ], + [ + 77.552855542493901, + 13.0002189501337 + ], + [ + 77.552861724330299, + 13.0002537818488 + ], + [ + 77.552866988795799, + 13.0002842263515 + ], + [ + 77.552867146447397, + 13.000285137295201 + ], + [ + 77.5528770722171, + 13.0003425430705 + ], + [ + 77.552888041840504, + 13.0004059818191 + ], + [ + 77.553054723943504, + 13.0009949790118 + ], + [ + 77.553060884632103, + 13.0010197210849 + ], + [ + 77.553062963787497, + 13.001028068474699 + ], + [ + 77.553067693829703, + 13.0010470641624 + ], + [ + 77.553161014354998, + 13.001421947351 + ], + [ + 77.553163714312504, + 13.001438651955199 + ], + [ + 77.553228635782901, + 13.0018402613999 + ], + [ + 77.553231389146106, + 13.0018576819192 + ], + [ + 77.553231969017702, + 13.001861352454201 + ], + [ + 77.553314347541303, + 13.001851876907301 + ], + [ + 77.553483433909307, + 13.0018200071167 + ], + [ + 77.553906001031294, + 13.001725234145299 + ], + [ + 77.553957318469102, + 13.0017139807135 + ], + [ + 77.553979212765398, + 13.0017091793058 + ], + [ + 77.5545858242035, + 13.0015761567607 + ], + [ + 77.554618640317997, + 13.0015689602452 + ], + [ + 77.554843376128503, + 13.0015196770157 + ], + [ + 77.554859881954499, + 13.0015162702176 + ], + [ + 77.555519739506295, + 13.0013800897298 + ], + [ + 77.5555228488859, + 13.0013794483766 + ], + [ + 77.555534970117904, + 13.0013769466092 + ], + [ + 77.555826870045493, + 13.0013061115143 + ], + [ + 77.556026678796499, + 13.001266386547901 + ], + [ + 77.556193071472904, + 13.001250748767299 + ], + [ + 77.556295940474598, + 13.0012410804946 + ], + [ + 77.556490640497699, + 13.0012370866504 + ], + [ + 77.556808383182201, + 13.001235238099399 + ], + [ + 77.556937069857398, + 13.002309335950301 + ], + [ + 77.557197215872307, + 13.002242231622899 + ], + [ + 77.557561370682095, + 13.0021845225743 + ], + [ + 77.557567146360697, + 13.0021836073731 + ], + [ + 77.557998865398105, + 13.0020704213594 + ], + [ + 77.558308021632399, + 13.0033451140421 + ], + [ + 77.558657661991603, + 13.0032782185035 + ], + [ + 77.559028188722905, + 13.0031784761414 + ], + [ + 77.5592107139136, + 13.003129341447901 + ], + [ + 77.559284123294702, + 13.003115331280499 + ], + [ + 77.559473990527295, + 13.0030809469612 + ], + [ + 77.559679861490807, + 13.003043864887999 + ], + [ + 77.559747899797898, + 13.002975826580901 + ], + [ + 77.560090092459703, + 13.003324022622801 + ], + [ + 77.560194151047, + 13.0038283065456 + ], + [ + 77.560565265891896, + 13.0037350200391 + ], + [ + 77.560669087015398, + 13.0041330010125 + ], + [ + 77.5606738766013, + 13.0041315199663 + ], + [ + 77.561006956069306, + 13.004021684259 + ], + [ + 77.561449764185596, + 13.0039293962536 + ], + [ + 77.561459281121898, + 13.0039224748454 + ], + [ + 77.561407658952206, + 13.003887867804201 + ], + [ + 77.561219503040803, + 13.003230419300699 + ], + [ + 77.5612171754466, + 13.0032209650388 + ], + [ + 77.561072597196898, + 13.0026336559418 + ], + [ + 77.560986370816195, + 13.0022833829372 + ], + [ + 77.560865791753798, + 13.0017935606443 + ], + [ + 77.560841115782694, + 13.001706022680301 + ], + [ + 77.560801201918196, + 13.001564428692401 + ], + [ + 77.560680671921503, + 13.0011368528021 + ], + [ + 77.560781340099496, + 13.0011145995002 + ], + [ + 77.560771973649693, + 13.0010642501458 + ], + [ + 77.562142412479602, + 13.0009096720286 + ], + [ + 77.562317878774095, + 13.000889853399601 + ], + [ + 77.562317754821507, + 13.000888907803899 + ], + [ + 77.5622935298926, + 13.0005313017119 + ], + [ + 77.562292376324606, + 13.000349037961801 + ], + [ + 77.562177019520703, + 13.000353652234001 + ], + [ + 77.561967070137698, + 12.999047813214201 + ], + [ + 77.561673156379399, + 12.999079956257701 + ], + [ + 77.561570099837098, + 12.9988546166564 + ], + [ + 77.561437363329205, + 12.9985751102022 + ], + [ + 77.561605784262795, + 12.9985716494981 + ], + [ + 77.561546033316105, + 12.9983087137478 + ], + [ + 77.561502847667796, + 12.9981075205017 + ], + [ + 77.561461690143503, + 12.997915775423801 + ], + [ + 77.561116239600196, + 12.997983724639999 + ], + [ + 77.561086966240097, + 12.997981622892 + ], + [ + 77.560893313927494, + 12.9971636273595 + ], + [ + 77.560844017673304, + 12.9970241874463 + ], + [ + 77.560722164379897, + 12.9970794764721 + ], + [ + 77.560584213, + 12.997176453333701 + ], + [ + 77.560576156637495, + 12.9971793934685 + ], + [ + 77.5605722086203, + 12.997178362497699 + ], + [ + 77.559959114823499, + 12.997418177694 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "78", + "group": "SUBRAMANYA NAGARA", + "Corporatio": "West", + "ac_no": "157", + "ac": "Malleshwaram", + "corporat_1": "5", + "ward_id": "13", + "ward_name": "13 - Subramanya Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಲ್ಲೇಶ್ವರಂ", + "ward_name_": "ಸುಬ್ರಹ್ಮಣ್ಯ ನಗರ", + "dig_ward_n": "SUBRAMANYA NAGARA", + "Assembly": "157 - Malleshwaram", + "Slno": "13" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.554257678739404, + 13.006061709820999 + ], + [ + 77.554287531723105, + 13.0061653136414 + ], + [ + 77.554360253185806, + 13.0066927124639 + ], + [ + 77.554373994718105, + 13.0067923659487 + ], + [ + 77.554397784890597, + 13.0070349361342 + ], + [ + 77.554421168980994, + 13.0073608362597 + ], + [ + 77.5544273401933, + 13.0074468479638 + ], + [ + 77.554432801255103, + 13.007498600294801 + ], + [ + 77.554454125190205, + 13.007700681853301 + ], + [ + 77.554493064565904, + 13.0080729749284 + ], + [ + 77.554493080993396, + 13.0081870363608 + ], + [ + 77.5544926099207, + 13.0084784062563 + ], + [ + 77.554492053349804, + 13.0086430317498 + ], + [ + 77.554492011936404, + 13.0086552713051 + ], + [ + 77.554491609380406, + 13.008774298651501 + ], + [ + 77.554464979607403, + 13.009856534206699 + ], + [ + 77.554464017403106, + 13.009895635410899 + ], + [ + 77.554463146894307, + 13.0099310053336 + ], + [ + 77.554461859016499, + 13.009973932276299 + ], + [ + 77.554461531025197, + 13.010479468182799 + ], + [ + 77.554461206742303, + 13.0109807595914 + ], + [ + 77.554461203112695, + 13.010986071960399 + ], + [ + 77.554461105026405, + 13.0111371419504 + ], + [ + 77.5544590904247, + 13.0115006536699 + ], + [ + 77.554459054781901, + 13.0115071580151 + ], + [ + 77.554458316201007, + 13.0116403097024 + ], + [ + 77.554457271502798, + 13.011828662976599 + ], + [ + 77.554456750469598, + 13.011922697305501 + ], + [ + 77.554455647165994, + 13.012121964926401 + ], + [ + 77.554455245642004, + 13.0121953748416 + ], + [ + 77.554456680362193, + 13.012335423798101 + ], + [ + 77.554456692605996, + 13.0123366189524 + ], + [ + 77.554457231303701, + 13.012389203030599 + ], + [ + 77.554457466721502, + 13.012412182875201 + ], + [ + 77.554394660759698, + 13.0124647503413 + ], + [ + 77.554394200638697, + 13.0124760480983 + ], + [ + 77.554366000872307, + 13.0130398577835 + ], + [ + 77.554340335317207, + 13.0131202924872 + ], + [ + 77.554294001304299, + 13.013263043513099 + ], + [ + 77.554228237728196, + 13.0133642009824 + ], + [ + 77.554121437867707, + 13.01361935051 + ], + [ + 77.554094690004106, + 13.013706571807001 + ], + [ + 77.554067128568505, + 13.013883017607199 + ], + [ + 77.554074804293506, + 13.0140139434313 + ], + [ + 77.554072569009506, + 13.014094528614599 + ], + [ + 77.554072418968502, + 13.0140999390962 + ], + [ + 77.554066813859805, + 13.014301999405999 + ], + [ + 77.554036796864494, + 13.014667128616299 + ], + [ + 77.554036339692004, + 13.0146726884833 + ], + [ + 77.554019704863705, + 13.014875029996601 + ], + [ + 77.554128655952596, + 13.015054648405 + ], + [ + 77.554198646320401, + 13.015197382901601 + ], + [ + 77.5543402282009, + 13.015245678327901 + ], + [ + 77.554575504730707, + 13.015277240048301 + ], + [ + 77.554858862603695, + 13.0153365608226 + ], + [ + 77.555040163763707, + 13.0153833351243 + ], + [ + 77.555214291982693, + 13.015460671660501 + ], + [ + 77.555495931352695, + 13.0156066013596 + ], + [ + 77.555599287629207, + 13.015660155052 + ], + [ + 77.555606406045001, + 13.0156638263928 + ], + [ + 77.556033769438699, + 13.0152187412065 + ], + [ + 77.556338273602293, + 13.014866136762199 + ], + [ + 77.556777932396997, + 13.014387033719199 + ], + [ + 77.557039043495905, + 13.014095281605901 + ], + [ + 77.557084548367698, + 13.014044956673301 + ], + [ + 77.557369819825894, + 13.013729469015299 + ], + [ + 77.557778754662294, + 13.013259299543501 + ], + [ + 77.558095795608395, + 13.012841831270499 + ], + [ + 77.558373401333398, + 13.0124420114304 + ], + [ + 77.558554797263199, + 13.0121035709333 + ], + [ + 77.558813733186994, + 13.0116003521089 + ], + [ + 77.559041771331493, + 13.0110888046366 + ], + [ + 77.559149893930098, + 13.010770640440301 + ], + [ + 77.5591742222432, + 13.010699050936299 + ], + [ + 77.5592775476008, + 13.010473595125999 + ], + [ + 77.559298529071299, + 13.010410226656701 + ], + [ + 77.559421027111398, + 13.0100402502067 + ], + [ + 77.559469665553195, + 13.0098933473319 + ], + [ + 77.559670098323707, + 13.0092655391253 + ], + [ + 77.559766675449694, + 13.008941482673899 + ], + [ + 77.559810784872198, + 13.008793478909601 + ], + [ + 77.559912636369305, + 13.008451724135 + ], + [ + 77.559972583070007, + 13.008252841429499 + ], + [ + 77.560123360532401, + 13.0077526067872 + ], + [ + 77.560159057189793, + 13.0076341766119 + ], + [ + 77.560172293182205, + 13.0075902636791 + ], + [ + 77.560260490366204, + 13.00728431566 + ], + [ + 77.560308298825205, + 13.0071184701129 + ], + [ + 77.560419362659005, + 13.0067893532017 + ], + [ + 77.560739434345805, + 13.005810761733899 + ], + [ + 77.560840166656007, + 13.005556270918699 + ], + [ + 77.560900555061806, + 13.0053408307675 + ], + [ + 77.560930749251995, + 13.0052331120477 + ], + [ + 77.561056301839898, + 13.004886586206201 + ], + [ + 77.561188314136302, + 13.0045975475283 + ], + [ + 77.561250796682003, + 13.0043955120343 + ], + [ + 77.561359869619807, + 13.004158491167299 + ], + [ + 77.561449764185596, + 13.0039293962536 + ], + [ + 77.561006956069306, + 13.004021684259 + ], + [ + 77.5606738766013, + 13.0041315199663 + ], + [ + 77.560669087015398, + 13.0041330010125 + ], + [ + 77.560565265891896, + 13.0037350200391 + ], + [ + 77.560194151047, + 13.0038283065456 + ], + [ + 77.560090092459703, + 13.003324022622801 + ], + [ + 77.559747899797898, + 13.002975826580901 + ], + [ + 77.559679861490807, + 13.003043864887999 + ], + [ + 77.559473990527295, + 13.0030809469612 + ], + [ + 77.559284123294702, + 13.003115331280499 + ], + [ + 77.5592107139136, + 13.003129341447901 + ], + [ + 77.559028188722905, + 13.0031784761414 + ], + [ + 77.558657661991603, + 13.0032782185035 + ], + [ + 77.558308021632399, + 13.0033451140421 + ], + [ + 77.557998865398105, + 13.0020704213594 + ], + [ + 77.557567146360697, + 13.0021836073731 + ], + [ + 77.557561370682095, + 13.0021845225743 + ], + [ + 77.557197215872307, + 13.002242231622899 + ], + [ + 77.556937069857398, + 13.002309335950301 + ], + [ + 77.556808383182201, + 13.001235238099399 + ], + [ + 77.556490640497699, + 13.0012370866504 + ], + [ + 77.556295940474598, + 13.0012410804946 + ], + [ + 77.556193071472904, + 13.001250748767299 + ], + [ + 77.556026678796499, + 13.001266386547901 + ], + [ + 77.555826870045493, + 13.0013061115143 + ], + [ + 77.555534970117904, + 13.0013769466092 + ], + [ + 77.5555228488859, + 13.0013794483766 + ], + [ + 77.555519739506295, + 13.0013800897298 + ], + [ + 77.554859881954499, + 13.0015162702176 + ], + [ + 77.554843376128503, + 13.0015196770157 + ], + [ + 77.554618640317997, + 13.0015689602452 + ], + [ + 77.5545858242035, + 13.0015761567607 + ], + [ + 77.553979212765398, + 13.0017091793058 + ], + [ + 77.553957318469102, + 13.0017139807135 + ], + [ + 77.553906001031294, + 13.001725234145299 + ], + [ + 77.553483433909307, + 13.0018200071167 + ], + [ + 77.553314347541303, + 13.001851876907301 + ], + [ + 77.553231969017702, + 13.001861352454201 + ], + [ + 77.553232169372805, + 13.001862620683299 + ], + [ + 77.553235408343099, + 13.001883109090301 + ], + [ + 77.553243234898304, + 13.001933879687 + ], + [ + 77.553255533775797, + 13.0020136615352 + ], + [ + 77.553299552391096, + 13.002299198627799 + ], + [ + 77.553307031398703, + 13.0023386893335 + ], + [ + 77.553434689163694, + 13.003012731112401 + ], + [ + 77.553453143850106, + 13.003086675638 + ], + [ + 77.5534614224796, + 13.0031198468957 + ], + [ + 77.553569818289404, + 13.0035541680453 + ], + [ + 77.553625034783906, + 13.0037754103159 + ], + [ + 77.553779728512396, + 13.004389095566999 + ], + [ + 77.553780635997398, + 13.00439269234 + ], + [ + 77.553783490119301, + 13.004404014403701 + ], + [ + 77.553793636708605, + 13.004438922669101 + ], + [ + 77.553802706771904, + 13.004470641477401 + ], + [ + 77.553845140797804, + 13.004619037056401 + ], + [ + 77.553911927144696, + 13.0048525959812 + ], + [ + 77.553950344204495, + 13.0049869443265 + ], + [ + 77.554229627216898, + 13.005963613809501 + ], + [ + 77.554238495788994, + 13.0059946262522 + ], + [ + 77.554257678739404, + 13.006061709820999 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "79", + "group": "SUBEDARPALYA", + "Corporatio": "West", + "ac_no": "157", + "ac": "Malleshwaram", + "corporat_1": "5", + "ward_id": "6", + "ward_name": "6 - Subedarpalya", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಲ್ಲೇಶ್ವರಂ", + "ward_name_": "ಸುಬೇದಾರಪಾಳ್ಯ", + "dig_ward_n": "SUBEDARPALYA", + "Assembly": "157 - Malleshwaram", + "Slno": "6" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.553941238448104, + 13.0190757534025 + ], + [ + 77.553888280460001, + 13.019190336741699 + ], + [ + 77.554342148356696, + 13.0198160262774 + ], + [ + 77.554373621573404, + 13.0197965176402 + ], + [ + 77.554638625099699, + 13.0198063284674 + ], + [ + 77.554935770189402, + 13.019805658305801 + ], + [ + 77.555173145972802, + 13.0198168702274 + ], + [ + 77.555374855789296, + 13.0198318215157 + ], + [ + 77.555486104359105, + 13.019842017928999 + ], + [ + 77.555544418832298, + 13.0199690562677 + ], + [ + 77.555576230967105, + 13.020038760517 + ], + [ + 77.555578741493207, + 13.020044212519201 + ], + [ + 77.555832444670202, + 13.0205952479988 + ], + [ + 77.5558363911789, + 13.020603795533701 + ], + [ + 77.556050950039804, + 13.021068537178101 + ], + [ + 77.556085997336695, + 13.021116752314001 + ], + [ + 77.556093886485101, + 13.021131490289701 + ], + [ + 77.556098938624103, + 13.021140928562501 + ], + [ + 77.556185222321005, + 13.021302111572099 + ], + [ + 77.556293860976197, + 13.0215630423761 + ], + [ + 77.556387861063996, + 13.0218004017614 + ], + [ + 77.556434776032106, + 13.021938845371 + ], + [ + 77.556488577759097, + 13.022074962386 + ], + [ + 77.556492934966798, + 13.0220885091907 + ], + [ + 77.556496905756006, + 13.0221008545966 + ], + [ + 77.556765154284705, + 13.0227633776943 + ], + [ + 77.556905955140195, + 13.0231278880897 + ], + [ + 77.556926043099097, + 13.0231773799492 + ], + [ + 77.556931364592003, + 13.023190879277999 + ], + [ + 77.557017536405894, + 13.0234509018327 + ], + [ + 77.557103507561493, + 13.0237131668729 + ], + [ + 77.557113845203403, + 13.0237447038754 + ], + [ + 77.557221151017799, + 13.024073567026701 + ], + [ + 77.5572214659163, + 13.0240745324234 + ], + [ + 77.557317763731106, + 13.0243672050832 + ], + [ + 77.557355223263002, + 13.024482025943801 + ], + [ + 77.557480332146199, + 13.024888475353199 + ], + [ + 77.557492158265902, + 13.0249267690269 + ], + [ + 77.5575064834497, + 13.0249731564816 + ], + [ + 77.5575613461573, + 13.025150807044501 + ], + [ + 77.557589736504696, + 13.025250646810299 + ], + [ + 77.557721465755606, + 13.0257138859315 + ], + [ + 77.557727363199305, + 13.025727379538999 + ], + [ + 77.557744819359201, + 13.025767562744299 + ], + [ + 77.557886617657104, + 13.0260939652497 + ], + [ + 77.557890729647497, + 13.0261018298838 + ], + [ + 77.558029157921496, + 13.026403120553001 + ], + [ + 77.558155215757594, + 13.0266774295898 + ], + [ + 77.558399672575703, + 13.027209183180799 + ], + [ + 77.558404383638603, + 13.0272193005204 + ], + [ + 77.5584045721275, + 13.027219709730799 + ], + [ + 77.558406749274496, + 13.027224445822 + ], + [ + 77.558459165728493, + 13.0273384672363 + ], + [ + 77.558819817509303, + 13.028193186805501 + ], + [ + 77.559087791348006, + 13.0288274747782 + ], + [ + 77.559098458733402, + 13.028852756449799 + ], + [ + 77.559101428028498, + 13.028859793029 + ], + [ + 77.559743587851202, + 13.0303817111886 + ], + [ + 77.559766882625993, + 13.030436824722299 + ], + [ + 77.559975558595099, + 13.0309305250885 + ], + [ + 77.560002983316096, + 13.030945219244099 + ], + [ + 77.560027546932901, + 13.030908292019699 + ], + [ + 77.560220862429503, + 13.030631874987099 + ], + [ + 77.560688274346603, + 13.029963532456801 + ], + [ + 77.560689786736106, + 13.0299613230174 + ], + [ + 77.561173454469397, + 13.0292547649874 + ], + [ + 77.561484353810599, + 13.0288164416075 + ], + [ + 77.561616724120796, + 13.0286566045685 + ], + [ + 77.561484353810599, + 13.0288164416075 + ], + [ + 77.561342779134307, + 13.0288757817708 + ], + [ + 77.561055636081704, + 13.0280989714546 + ], + [ + 77.560874534117403, + 13.028170011451699 + ], + [ + 77.560706439476505, + 13.0277797917495 + ], + [ + 77.560638401169399, + 13.0273375427538 + ], + [ + 77.560560357228994, + 13.0269953500919 + ], + [ + 77.560362245687898, + 13.0264630503957 + ], + [ + 77.560661296418502, + 13.026343339045001 + ], + [ + 77.560648178740607, + 13.0263105053007 + ], + [ + 77.560409033172306, + 13.025711939486699 + ], + [ + 77.560407453764597, + 13.0257079862239 + ], + [ + 77.560258724050499, + 13.025335723439699 + ], + [ + 77.560117455853302, + 13.0249821343258 + ], + [ + 77.5601146763983, + 13.0249748275518 + ], + [ + 77.560112128003993, + 13.024968127422399 + ], + [ + 77.559453514694795, + 13.023354905240399 + ], + [ + 77.558937574347993, + 13.022018475219699 + ], + [ + 77.559830751448203, + 13.021684628765801 + ], + [ + 77.560187979830005, + 13.021553060472201 + ], + [ + 77.560270459944803, + 13.0218166507691 + ], + [ + 77.561186173888899, + 13.0214422894324 + ], + [ + 77.561245627230306, + 13.021541875174099 + ], + [ + 77.561493022987193, + 13.021430753752 + ], + [ + 77.561469951626407, + 13.0212323400493 + ], + [ + 77.562008310195097, + 13.0210189584703 + ], + [ + 77.562771972236604, + 13.0207374878689 + ], + [ + 77.562697550338498, + 13.020576588735 + ], + [ + 77.562664940394697, + 13.0205004547076 + ], + [ + 77.562512014178395, + 13.0201434153494 + ], + [ + 77.562454136638493, + 13.020019766450901 + ], + [ + 77.562414810830404, + 13.0199357492787 + ], + [ + 77.562176234466904, + 13.0196273841607 + ], + [ + 77.562037878369296, + 13.019463893305399 + ], + [ + 77.561746266489706, + 13.019119305672501 + ], + [ + 77.561598815061501, + 13.018945065637499 + ], + [ + 77.561415059610596, + 13.018684989358601 + ], + [ + 77.561203233347698, + 13.018336409672401 + ], + [ + 77.560969266487007, + 13.0178787666927 + ], + [ + 77.560685785104297, + 13.0172560057411 + ], + [ + 77.560569408478798, + 13.0170775440771 + ], + [ + 77.560429411132404, + 13.0171374732864 + ], + [ + 77.559902302197102, + 13.0174414771425 + ], + [ + 77.558881344947693, + 13.018133856297499 + ], + [ + 77.557948239080403, + 13.018557360340401 + ], + [ + 77.557693485331498, + 13.0186764053621 + ], + [ + 77.557690580025593, + 13.018678904979099 + ], + [ + 77.557411821691602, + 13.018272476564499 + ], + [ + 77.557402036554294, + 13.0182564997176 + ], + [ + 77.557076395262101, + 13.0176917535859 + ], + [ + 77.556817941242699, + 13.0172123983522 + ], + [ + 77.5566370122352, + 13.0168757018722 + ], + [ + 77.556499847696102, + 13.0166227161391 + ], + [ + 77.556243777940196, + 13.016185406760799 + ], + [ + 77.556042497231701, + 13.0159560005701 + ], + [ + 77.555949903140004, + 13.0158651221819 + ], + [ + 77.555868536781702, + 13.015799769903399 + ], + [ + 77.555859991120997, + 13.0158092666203 + ], + [ + 77.555694108809405, + 13.016034155056699 + ], + [ + 77.5551161913817, + 13.016901523545799 + ], + [ + 77.553941238448104, + 13.0190757534025 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "80", + "group": "MATHIKERE", + "Corporatio": "West", + "ac_no": "157", + "ac": "Malleshwaram", + "corporat_1": "5", + "ward_id": "7", + "ward_name": "7 - Mathikere", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಲ್ಲೇಶ್ವರಂ", + "ward_name_": "ಮತ್ತಿಕೆರೆ", + "dig_ward_n": "MATHIKERE", + "Assembly": "157 - Malleshwaram", + "Slno": "7" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.559363245258794, + 13.031814056176399 + ], + [ + 77.558884552529804, + 13.032474919969999 + ], + [ + 77.558824720319294, + 13.0325572195643 + ], + [ + 77.558728622156906, + 13.032689401229099 + ], + [ + 77.5586199225, + 13.0328389163789 + ], + [ + 77.558332571197099, + 13.0332336287064 + ], + [ + 77.557961984272495, + 13.033787223394601 + ], + [ + 77.557818121337505, + 13.0340021299419 + ], + [ + 77.557772737991499, + 13.0340692080231 + ], + [ + 77.557716587527494, + 13.034153332232099 + ], + [ + 77.557602663368897, + 13.0343317605314 + ], + [ + 77.557427006189101, + 13.0346065042347 + ], + [ + 77.557393120562494, + 13.034659502210999 + ], + [ + 77.557381044548407, + 13.0346783916637 + ], + [ + 77.557397848642793, + 13.0346883895565 + ], + [ + 77.557394941990097, + 13.034715257198799 + ], + [ + 77.557391982247907, + 13.034742607810299 + ], + [ + 77.557387329400697, + 13.0347856148516 + ], + [ + 77.557375163818406, + 13.034890761638099 + ], + [ + 77.557374804431703, + 13.034901521721199 + ], + [ + 77.557373842339501, + 13.034930300839999 + ], + [ + 77.557371717224498, + 13.035003727536299 + ], + [ + 77.557392251843694, + 13.0351525947579 + ], + [ + 77.557503244382701, + 13.0356416226169 + ], + [ + 77.557535040992093, + 13.0357655335453 + ], + [ + 77.557554794440605, + 13.0358431114062 + ], + [ + 77.557574049590997, + 13.0359187354958 + ], + [ + 77.557576010680407, + 13.036109570919299 + ], + [ + 77.557564058457203, + 13.036291509241099 + ], + [ + 77.557507868444802, + 13.0367641193921 + ], + [ + 77.557450895179002, + 13.0373846779937 + ], + [ + 77.557427937927599, + 13.037677709027699 + ], + [ + 77.557406091792899, + 13.0379565556901 + ], + [ + 77.557399993849003, + 13.038035668216599 + ], + [ + 77.557389339857096, + 13.0381758089438 + ], + [ + 77.557330318081696, + 13.038372893435501 + ], + [ + 77.557310724440796, + 13.038483760207599 + ], + [ + 77.557302262122903, + 13.038542890898301 + ], + [ + 77.557297291173697, + 13.0385776263442 + ], + [ + 77.557421688523206, + 13.0385775266616 + ], + [ + 77.558734646223201, + 13.0386763538742 + ], + [ + 77.558765777473496, + 13.0386794340907 + ], + [ + 77.559110238079697, + 13.038807726140799 + ], + [ + 77.559308471987293, + 13.0388815569162 + ], + [ + 77.559442192792204, + 13.0389313602508 + ], + [ + 77.5600826669383, + 13.0392163900428 + ], + [ + 77.560483031681798, + 13.0395060519774 + ], + [ + 77.560770516891296, + 13.0397957006266 + ], + [ + 77.560857872358, + 13.0398896988407 + ], + [ + 77.560962689708205, + 13.040001593281501 + ], + [ + 77.560966083967799, + 13.0400052204853 + ], + [ + 77.560983258424599, + 13.040023577646 + ], + [ + 77.561017905497394, + 13.0400606106412 + ], + [ + 77.561026184211897, + 13.040069459327601 + ], + [ + 77.561148290101002, + 13.040006098955899 + ], + [ + 77.561025576988897, + 13.039926811085699 + ], + [ + 77.560925774683398, + 13.039823816637201 + ], + [ + 77.560847654922398, + 13.0396955088022 + ], + [ + 77.560769240046497, + 13.0395385183302 + ], + [ + 77.560619414276402, + 13.039312817211201 + ], + [ + 77.560925997526198, + 13.038326506587 + ], + [ + 77.561444074544795, + 13.038470652615899 + ], + [ + 77.561702872885306, + 13.037511457995301 + ], + [ + 77.561746688855393, + 13.03733193765 + ], + [ + 77.561763696777206, + 13.037262255948001 + ], + [ + 77.561766893923604, + 13.0372622243101 + ], + [ + 77.561782776718005, + 13.0369897043938 + ], + [ + 77.563422659647699, + 13.036972524882099 + ], + [ + 77.563443805537403, + 13.036954388322201 + ], + [ + 77.563373579669104, + 13.036527793860699 + ], + [ + 77.563344675699497, + 13.036352209767101 + ], + [ + 77.563343980656398, + 13.036352273566299 + ], + [ + 77.563328450286093, + 13.036298582559199 + ], + [ + 77.563244398749305, + 13.035898846233399 + ], + [ + 77.563186714516704, + 13.035624504384099 + ], + [ + 77.563633496422, + 13.035197596536401 + ], + [ + 77.563809787232302, + 13.035045642325001 + ], + [ + 77.564198587656804, + 13.0347386050907 + ], + [ + 77.564268775524894, + 13.034680472224499 + ], + [ + 77.564263701358499, + 13.034643468359 + ], + [ + 77.564193282141602, + 13.034153472746301 + ], + [ + 77.564090703390605, + 13.0334054213701 + ], + [ + 77.565189200579198, + 13.033284034523501 + ], + [ + 77.565836626413898, + 13.0332287481571 + ], + [ + 77.566200376447597, + 13.0329589644544 + ], + [ + 77.566126548093095, + 13.0325621370491 + ], + [ + 77.566502706143098, + 13.032531634918 + ], + [ + 77.566735632017497, + 13.0325073425672 + ], + [ + 77.566780621171006, + 13.032471581957999 + ], + [ + 77.567055170364299, + 13.032219527341599 + ], + [ + 77.567920346393194, + 13.0314737456046 + ], + [ + 77.567924037529593, + 13.031470516219301 + ], + [ + 77.569564180848403, + 13.030052549781001 + ], + [ + 77.569949472573299, + 13.0297087865055 + ], + [ + 77.570109818530696, + 13.029535751299701 + ], + [ + 77.570672759733498, + 13.0289589672803 + ], + [ + 77.5707535094962, + 13.0288701425414 + ], + [ + 77.571056321106397, + 13.028553488114801 + ], + [ + 77.571126688756806, + 13.028478506192201 + ], + [ + 77.571182135351194, + 13.0284190569252 + ], + [ + 77.571331447083693, + 13.028169926741899 + ], + [ + 77.5714938398268, + 13.0276039053731 + ], + [ + 77.571497560881298, + 13.027593142722599 + ], + [ + 77.570563241939098, + 13.027788797725099 + ], + [ + 77.569789440902497, + 13.027930336056 + ], + [ + 77.569239658060496, + 13.0280457461722 + ], + [ + 77.569070453727804, + 13.0280141950567 + ], + [ + 77.568735918996595, + 13.0280095807845 + ], + [ + 77.568290641733697, + 13.028028037873201 + ], + [ + 77.567688479217495, + 13.0280603377782 + ], + [ + 77.567405855047994, + 13.0280787948669 + ], + [ + 77.566936352856303, + 13.028093791251401 + ], + [ + 77.5665591361076, + 13.0283245048591 + ], + [ + 77.566557178448804, + 13.0283251666078 + ], + [ + 77.565896988053396, + 13.028739789353001 + ], + [ + 77.565387110980396, + 13.0291043168532 + ], + [ + 77.564792534460196, + 13.029387315987799 + ], + [ + 77.564347495680494, + 13.0297316347734 + ], + [ + 77.564330160794299, + 13.0297528414364 + ], + [ + 77.563652144650106, + 13.029934885841101 + ], + [ + 77.563562166343104, + 13.0299556500658 + ], + [ + 77.563662526762499, + 13.030629333800301 + ], + [ + 77.563870169009505, + 13.031946708500501 + ], + [ + 77.563019510185995, + 13.0320201921768 + ], + [ + 77.563019470750802, + 13.0320180622286 + ], + [ + 77.562970809156596, + 13.0308085792658 + ], + [ + 77.562245901161802, + 13.030888797343801 + ], + [ + 77.562231570654504, + 13.0308904686594 + ], + [ + 77.562223886578806, + 13.030842007623299 + ], + [ + 77.562191422247395, + 13.0306537675119 + ], + [ + 77.5621707951952, + 13.030534160276 + ], + [ + 77.562094355664399, + 13.030155559617199 + ], + [ + 77.562089272908494, + 13.030130384609 + ], + [ + 77.562060329920399, + 13.0299870337639 + ], + [ + 77.561910547382695, + 13.0294026129339 + ], + [ + 77.561616724120796, + 13.0286566045685 + ], + [ + 77.561484353810599, + 13.0288164416075 + ], + [ + 77.561173454469397, + 13.0292547649874 + ], + [ + 77.560689786736106, + 13.0299613230174 + ], + [ + 77.560688274346603, + 13.029963532456801 + ], + [ + 77.560220862429503, + 13.030631874987099 + ], + [ + 77.560027546932901, + 13.030908292019699 + ], + [ + 77.560002983316096, + 13.030945219244099 + ], + [ + 77.559975558595099, + 13.0309305250885 + ], + [ + 77.559861683069897, + 13.031071823265499 + ], + [ + 77.5597975725846, + 13.031151371785 + ], + [ + 77.559363245258794, + 13.031814056176399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "81", + "group": "LAKSHMINARAYANA NAGARA", + "Corporatio": "West", + "ac_no": "157", + "ac": "Malleshwaram", + "corporat_1": "5", + "ward_id": "36", + "ward_name": "36 - Srirampura", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಲ್ಲೇಶ್ವರಂ", + "ward_name_": "ಶ್ರೀರಾಮಪುರ", + "dig_ward_n": "LAKSHMINARAYANA NAGARA", + "Assembly": "157 - Malleshwaram", + "Slno": "36" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.568320718527104, + 12.993380539775 + ], + [ + 77.568329624846598, + 12.9933693582262 + ], + [ + 77.567850399633102, + 12.9933793138895 + ], + [ + 77.567810931497405, + 12.9933801341998 + ], + [ + 77.567170178658003, + 12.993392115806699 + ], + [ + 77.566439848465507, + 12.993425044076201 + ], + [ + 77.566436500189198, + 12.9934251955188 + ], + [ + 77.566432332330507, + 12.9934253830682 + ], + [ + 77.566411913144194, + 12.993426230834199 + ], + [ + 77.566360962340099, + 12.993428347023499 + ], + [ + 77.565761156611998, + 12.9934466963999 + ], + [ + 77.5656385695696, + 12.993450619723401 + ], + [ + 77.565608041388302, + 12.9934515971152 + ], + [ + 77.565354826470696, + 12.9934653918191 + ], + [ + 77.565108454849906, + 12.9934897676753 + ], + [ + 77.565063186855099, + 12.993494246925 + ], + [ + 77.565039028452503, + 12.993496744181201 + ], + [ + 77.564898096687401, + 12.9935105586656 + ], + [ + 77.564821614386105, + 12.993520348591 + ], + [ + 77.564670400204704, + 12.9935421697212 + ], + [ + 77.564667521441393, + 12.993542198152101 + ], + [ + 77.564632471111196, + 12.993546995620701 + ], + [ + 77.564418545198706, + 12.993576277788501 + ], + [ + 77.564331699279094, + 12.9935861699183 + ], + [ + 77.563948630373602, + 12.9936272198106 + ], + [ + 77.563878061734798, + 12.9936348532643 + ], + [ + 77.563489067165094, + 12.993676929509499 + ], + [ + 77.563461010486193, + 12.993679945743899 + ], + [ + 77.563437252445596, + 12.993682499435799 + ], + [ + 77.563384960098304, + 12.9936881210464 + ], + [ + 77.562350163840605, + 12.9937943257037 + ], + [ + 77.562046684673106, + 12.9938150584764 + ], + [ + 77.561542375427194, + 12.9938495115059 + ], + [ + 77.561345498709997, + 12.9938629616792 + ], + [ + 77.560844259266403, + 12.993891620868 + ], + [ + 77.560604161279599, + 12.9939051534047 + ], + [ + 77.560601406339003, + 12.993905308860899 + ], + [ + 77.560362007874005, + 12.9939189625705 + ], + [ + 77.560231380837607, + 12.9939270264034 + ], + [ + 77.560119742138994, + 12.9939337736505 + ], + [ + 77.560115711849605, + 12.9939338133844 + ], + [ + 77.560119341021704, + 12.9939507237175 + ], + [ + 77.560125375437096, + 12.993977761562 + ], + [ + 77.560214554327999, + 12.994083038341 + ], + [ + 77.560299364750307, + 12.9942378521359 + ], + [ + 77.560328392899095, + 12.9942908399684 + ], + [ + 77.560384216021205, + 12.9944562994423 + ], + [ + 77.560382023541393, + 12.994579416828399 + ], + [ + 77.560213986670107, + 12.994645444856801 + ], + [ + 77.559845353101096, + 12.9947467996697 + ], + [ + 77.559817790707299, + 12.994754377632701 + ], + [ + 77.559502165694198, + 12.994859127719501 + ], + [ + 77.559150487463896, + 12.994985689882499 + ], + [ + 77.559207255397794, + 12.9952469735812 + ], + [ + 77.559226632513997, + 12.9953361578703 + ], + [ + 77.559278280273602, + 12.9954940092535 + ], + [ + 77.559320554001502, + 12.9956232086636 + ], + [ + 77.559354660128093, + 12.9958046929519 + ], + [ + 77.559361135938005, + 12.9958204142974 + ], + [ + 77.559414892479396, + 12.995950910776401 + ], + [ + 77.559522568830204, + 12.996119247262801 + ], + [ + 77.559626200358906, + 12.9962300282612 + ], + [ + 77.559695595788, + 12.9963151723877 + ], + [ + 77.559743942794896, + 12.996425369032201 + ], + [ + 77.559819825347901, + 12.9965815962642 + ], + [ + 77.559851865890906, + 12.9966738845352 + ], + [ + 77.559853974069497, + 12.996676601219001 + ], + [ + 77.559991912970006, + 12.9968543240496 + ], + [ + 77.5601102633332, + 12.9969965805561 + ], + [ + 77.560257097640303, + 12.997052727851299 + ], + [ + 77.560319592691698, + 12.997082603153499 + ], + [ + 77.560453644481896, + 12.997127583191499 + ], + [ + 77.560566427827695, + 12.997176160875499 + ], + [ + 77.5605722086203, + 12.997178362497699 + ], + [ + 77.560576156637495, + 12.9971793934685 + ], + [ + 77.560584213, + 12.997176453333701 + ], + [ + 77.560722164379897, + 12.9970794764721 + ], + [ + 77.560844017673304, + 12.9970241874463 + ], + [ + 77.560893313927494, + 12.9971636273595 + ], + [ + 77.561086966240097, + 12.997981622892 + ], + [ + 77.561116239600196, + 12.997983724639999 + ], + [ + 77.561461690143503, + 12.997915775423801 + ], + [ + 77.561502847667796, + 12.9981075205017 + ], + [ + 77.561546033316105, + 12.9983087137478 + ], + [ + 77.561605784262795, + 12.9985716494981 + ], + [ + 77.561437363329205, + 12.9985751102022 + ], + [ + 77.561570099837098, + 12.9988546166564 + ], + [ + 77.561673156379399, + 12.999079956257701 + ], + [ + 77.561967070137698, + 12.999047813214201 + ], + [ + 77.562177019520703, + 13.000353652234001 + ], + [ + 77.562292376324606, + 13.000349037961801 + ], + [ + 77.5622935298926, + 13.0005313017119 + ], + [ + 77.562317754821507, + 13.000888907803899 + ], + [ + 77.562317878774095, + 13.000889853399601 + ], + [ + 77.562142412479602, + 13.0009096720286 + ], + [ + 77.560771973649693, + 13.0010642501458 + ], + [ + 77.560781340099496, + 13.0011145995002 + ], + [ + 77.560680671921503, + 13.0011368528021 + ], + [ + 77.560801201918196, + 13.001564428692401 + ], + [ + 77.560841115782694, + 13.001706022680301 + ], + [ + 77.560865791753798, + 13.0017935606443 + ], + [ + 77.560986370816195, + 13.0022833829372 + ], + [ + 77.561072597196898, + 13.0026336559418 + ], + [ + 77.5612171754466, + 13.0032209650388 + ], + [ + 77.561219503040803, + 13.003230419300699 + ], + [ + 77.561407658952206, + 13.003887867804201 + ], + [ + 77.561459281121898, + 13.0039224748454 + ], + [ + 77.563316814056193, + 13.0007513163072 + ], + [ + 77.563509575610993, + 13.0003452523683 + ], + [ + 77.563615769671102, + 13.000134685608399 + ], + [ + 77.563645271203399, + 13.000076188383201 + ], + [ + 77.563736825453205, + 12.9998764034529 + ], + [ + 77.564117390275101, + 12.999327813347501 + ], + [ + 77.564465767822796, + 12.998790250641401 + ], + [ + 77.564945272057003, + 12.998093606863099 + ], + [ + 77.565000097266093, + 12.998023274403099 + ], + [ + 77.565349255832203, + 12.997575355845701 + ], + [ + 77.565527045695006, + 12.997351914492301 + ], + [ + 77.565942760126802, + 12.996829457106999 + ], + [ + 77.566051615107796, + 12.996634006380001 + ], + [ + 77.566080033905706, + 12.9966472558591 + ], + [ + 77.566099985716903, + 12.996608816643199 + ], + [ + 77.566148394863504, + 12.9965283185809 + ], + [ + 77.566261901970194, + 12.9963395696993 + ], + [ + 77.566331690592804, + 12.996226598959 + ], + [ + 77.566374116541695, + 12.996157922050701 + ], + [ + 77.566426155753902, + 12.9960736866443 + ], + [ + 77.566577386427298, + 12.9958293883384 + ], + [ + 77.566780617708005, + 12.9955012687166 + ], + [ + 77.566789225384696, + 12.9954873716649 + ], + [ + 77.566869225546, + 12.995358652139799 + ], + [ + 77.5668693243326, + 12.9953584930592 + ], + [ + 77.566869465710298, + 12.995358264895399 + ], + [ + 77.567019762818305, + 12.9951158069975 + ], + [ + 77.567178770587105, + 12.9947878633486 + ], + [ + 77.567186640319605, + 12.9947786317795 + ], + [ + 77.567205074327106, + 12.994757007026299 + ], + [ + 77.567211316397504, + 12.9947496842784 + ], + [ + 77.567496244772499, + 12.994415438952 + ], + [ + 77.567499865741794, + 12.9944108949305 + ], + [ + 77.567503899671607, + 12.994405834569299 + ], + [ + 77.567732162477895, + 12.9941194838662 + ], + [ + 77.567759671055597, + 12.994084945781101 + ], + [ + 77.567761152728394, + 12.994083086283799 + ], + [ + 77.567780207905102, + 12.9940591624069 + ], + [ + 77.567780502594402, + 12.9940587917885 + ], + [ + 77.568237988556504, + 12.9934844100158 + ], + [ + 77.568309512871195, + 12.993394608904699 + ], + [ + 77.568320718527104, + 12.993380539775 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "82", + "group": "KODANDARAMPURA", + "Corporatio": "West", + "ac_no": "157", + "ac": "Malleshwaram", + "corporat_1": "5", + "ward_id": "10", + "ward_name": "10 - Kodandarampura", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಲ್ಲೇಶ್ವರಂ", + "ward_name_": "ಕೋದಂಡರಾಮಪುರ", + "dig_ward_n": "KODANDARAMPURA", + "Assembly": "157 - Malleshwaram", + "Slno": "10" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.572088815537398, + 13.003364490225 + ], + [ + 77.572088815896294, + 13.003364535581699 + ], + [ + 77.571381408214805, + 13.0045840461155 + ], + [ + 77.5712337515059, + 13.0046994029194 + ], + [ + 77.571207305082893, + 13.005436369968301 + ], + [ + 77.573976936301804, + 13.0054399936002 + ], + [ + 77.573987404539295, + 13.006316743003101 + ], + [ + 77.573988471982204, + 13.006316705309599 + ], + [ + 77.576307143739996, + 13.006270562588099 + ], + [ + 77.5762591533408, + 13.005407312249099 + ], + [ + 77.576260098672506, + 13.0054073164145 + ], + [ + 77.576555258677899, + 13.005408617302701 + ], + [ + 77.577867177764702, + 13.0054039355293 + ], + [ + 77.577864460592195, + 13.004672870854501 + ], + [ + 77.578566983527693, + 13.0046555673339 + ], + [ + 77.578568947555297, + 13.004581948284001 + ], + [ + 77.578550272599401, + 13.0037199881367 + ], + [ + 77.579221669089705, + 13.003680450333301 + ], + [ + 77.579221056605704, + 13.0034200959646 + ], + [ + 77.579932808085502, + 13.0034097138522 + ], + [ + 77.580098921883106, + 13.003379721083199 + ], + [ + 77.580176210941701, + 13.003391256763599 + ], + [ + 77.580202743006595, + 13.0037361736071 + ], + [ + 77.580519974217196, + 13.0037269450628 + ], + [ + 77.580575345483098, + 13.0046463387896 + ], + [ + 77.581041386970696, + 13.0043833252768 + ], + [ + 77.582027687643802, + 13.0037361736071 + ], + [ + 77.582020439719898, + 13.003228969105599 + ], + [ + 77.581996926481494, + 13.002839749966901 + ], + [ + 77.581951413564497, + 13.002540114151699 + ], + [ + 77.581950955908098, + 13.002528294470199 + ], + [ + 77.581914445168493, + 13.001914003716999 + ], + [ + 77.581302111868595, + 13.001956062568899 + ], + [ + 77.581284497269195, + 13.0016637130039 + ], + [ + 77.580085874929196, + 13.0017462972486 + ], + [ + 77.579717309940804, + 13.0017670614733 + ], + [ + 77.579719708878599, + 13.0018069532591 + ], + [ + 77.579209086578899, + 13.0018111546648 + ], + [ + 77.578537793203907, + 13.0018166767924 + ], + [ + 77.578508700414304, + 13.0018169161484 + ], + [ + 77.578185152506904, + 13.0018304792073 + ], + [ + 77.577082603446399, + 13.0018412780201 + ], + [ + 77.577089779590594, + 13.002252827623799 + ], + [ + 77.577087857750001, + 13.002774902750501 + ], + [ + 77.576820772153695, + 13.002775769684201 + ], + [ + 77.576239256749304, + 13.002783843306201 + ], + [ + 77.576213758966304, + 13.002199378044001 + ], + [ + 77.576143121010801, + 13.0018504877024 + ], + [ + 77.576020202720102, + 13.0018551047293 + ], + [ + 77.575710603117997, + 13.0018667322471 + ], + [ + 77.575737702388395, + 13.001066678997899 + ], + [ + 77.575403060063493, + 13.00105916747 + ], + [ + 77.575398010736393, + 13.0018685171523 + ], + [ + 77.575127473209307, + 13.0018688111131 + ], + [ + 77.573936548736398, + 13.001870100765499 + ], + [ + 77.573775028876099, + 13.0018702751655 + ], + [ + 77.572590367101697, + 13.001874850111401 + ], + [ + 77.572593124985005, + 13.0019058977356 + ], + [ + 77.572273604235306, + 13.0019212550449 + ], + [ + 77.572213362450697, + 13.0028046941143 + ], + [ + 77.572213408088203, + 13.0028092108977 + ], + [ + 77.572208110420306, + 13.0028723990042 + ], + [ + 77.572193179868094, + 13.003050489944 + ], + [ + 77.572191589954102, + 13.0030694672518 + ], + [ + 77.572182713562697, + 13.003175350701801 + ], + [ + 77.572182179432204, + 13.0031817198778 + ], + [ + 77.572181017753294, + 13.0031955848509 + ], + [ + 77.572178295200601, + 13.0032281160582 + ], + [ + 77.572178154124302, + 13.0032298032889 + ], + [ + 77.572175664549505, + 13.003259552280101 + ], + [ + 77.572175661274301, + 13.0032595920642 + ], + [ + 77.572175184936995, + 13.0032655794127 + ], + [ + 77.572174533227496, + 13.003273770200099 + ], + [ + 77.572174445085395, + 13.003274872375799 + ], + [ + 77.572174190669699, + 13.003277898735201 + ], + [ + 77.572174065894998, + 13.0032793798184 + ], + [ + 77.572172906309504, + 13.003293179722601 + ], + [ + 77.572172828299699, + 13.0032941029153 + ], + [ + 77.572171001555901, + 13.0033158462155 + ], + [ + 77.572170887435007, + 13.0033171989036 + ], + [ + 77.572169315925606, + 13.003335905898499 + ], + [ + 77.572169117802503, + 13.0033382261076 + ], + [ + 77.572168904968905, + 13.0033407280555 + ], + [ + 77.572166233773899, + 13.003372074334701 + ], + [ + 77.572102253251103, + 13.0033659326463 + ], + [ + 77.572097084401506, + 13.0033653776654 + ], + [ + 77.5720933725149, + 13.0033649792941 + ], + [ + 77.572093372514701, + 13.0033649792941 + ], + [ + 77.572088815537398, + 13.003364490225 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "83", + "group": "SADASHIVA NAGARA", + "Corporatio": "West", + "ac_no": "157", + "ac": "Malleshwaram", + "corporat_1": "5", + "ward_id": "11", + "ward_name": "11 - Sadashiva Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಲ್ಲೇಶ್ವರಂ", + "ward_name_": "ಸದಾಶಿವ ನಗರ", + "dig_ward_n": "SADASHIVA NAGARA", + "Assembly": "157 - Malleshwaram", + "Slno": "11" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.571365461623202, + 13.0001569577684 + ], + [ + 77.571367145683297, + 13.0000645942073 + ], + [ + 77.5709464805594, + 13.0000733083626 + ], + [ + 77.570967420379503, + 12.999266347981999 + ], + [ + 77.569438799637595, + 12.9992314904162 + ], + [ + 77.569298064336905, + 13.0054861363218 + ], + [ + 77.569109828083995, + 13.011639613236801 + ], + [ + 77.569097691832596, + 13.0118392104024 + ], + [ + 77.569093964730797, + 13.0119366679974 + ], + [ + 77.569061425038896, + 13.0119926581323 + ], + [ + 77.568975513089299, + 13.0121001188196 + ], + [ + 77.568733106995694, + 13.0122696127839 + ], + [ + 77.568183121949403, + 13.012613708656099 + ], + [ + 77.5672712213549, + 13.013188699223599 + ], + [ + 77.566129189110299, + 13.0139283319721 + ], + [ + 77.5658848969519, + 13.0140669662396 + ], + [ + 77.565821985405094, + 13.014102667934401 + ], + [ + 77.564581704351099, + 13.014806502454499 + ], + [ + 77.563320911907695, + 13.015500909630999 + ], + [ + 77.5622205735488, + 13.0161566141861 + ], + [ + 77.560781003320301, + 13.0169501974888 + ], + [ + 77.560569408478798, + 13.0170775440771 + ], + [ + 77.560685785104297, + 13.0172560057411 + ], + [ + 77.560969266487007, + 13.0178787666927 + ], + [ + 77.561203233347698, + 13.018336409672401 + ], + [ + 77.561415059610596, + 13.018684989358601 + ], + [ + 77.561598815061501, + 13.018945065637499 + ], + [ + 77.561746266489706, + 13.019119305672501 + ], + [ + 77.562037878369296, + 13.019463893305399 + ], + [ + 77.562176234466904, + 13.0196273841607 + ], + [ + 77.562414810830404, + 13.0199357492787 + ], + [ + 77.562454136638493, + 13.020019766450901 + ], + [ + 77.562512014178395, + 13.0201434153494 + ], + [ + 77.562664940394697, + 13.0205004547076 + ], + [ + 77.562697550338498, + 13.020576588735 + ], + [ + 77.562771972236604, + 13.0207374878689 + ], + [ + 77.562008310195097, + 13.0210189584703 + ], + [ + 77.561469951626407, + 13.0212323400493 + ], + [ + 77.561493022987193, + 13.021430753752 + ], + [ + 77.561245627230306, + 13.021541875174099 + ], + [ + 77.561186173888899, + 13.0214422894324 + ], + [ + 77.560270459944803, + 13.0218166507691 + ], + [ + 77.560187979830005, + 13.021553060472201 + ], + [ + 77.559830751448203, + 13.021684628765801 + ], + [ + 77.558937574347993, + 13.022018475219699 + ], + [ + 77.559453514694795, + 13.023354905240399 + ], + [ + 77.560112128003993, + 13.024968127422399 + ], + [ + 77.5601146763983, + 13.0249748275518 + ], + [ + 77.560117455853302, + 13.0249821343258 + ], + [ + 77.560258724050499, + 13.025335723439699 + ], + [ + 77.560407453764597, + 13.0257079862239 + ], + [ + 77.560409033172306, + 13.025711939486699 + ], + [ + 77.560648178740607, + 13.0263105053007 + ], + [ + 77.560661296418502, + 13.026343339045001 + ], + [ + 77.560362245687898, + 13.0264630503957 + ], + [ + 77.560560357228994, + 13.0269953500919 + ], + [ + 77.560638401169399, + 13.0273375427538 + ], + [ + 77.560706439476505, + 13.0277797917495 + ], + [ + 77.560874534117403, + 13.028170011451699 + ], + [ + 77.561055636081704, + 13.0280989714546 + ], + [ + 77.561342779134307, + 13.0288757817708 + ], + [ + 77.561484353810599, + 13.0288164416075 + ], + [ + 77.561616724120796, + 13.0286566045685 + ], + [ + 77.561910547382695, + 13.0294026129339 + ], + [ + 77.562060329920399, + 13.0299870337639 + ], + [ + 77.562089272908494, + 13.030130384609 + ], + [ + 77.562094355664399, + 13.030155559617199 + ], + [ + 77.5621707951952, + 13.030534160276 + ], + [ + 77.562191422247395, + 13.0306537675119 + ], + [ + 77.562223886578806, + 13.030842007623299 + ], + [ + 77.562231570654504, + 13.0308904686594 + ], + [ + 77.562245901161802, + 13.030888797343801 + ], + [ + 77.562970809156596, + 13.0308085792658 + ], + [ + 77.563019470750802, + 13.0320180622286 + ], + [ + 77.563019510185995, + 13.0320201921768 + ], + [ + 77.563870169009505, + 13.031946708500501 + ], + [ + 77.563662526762499, + 13.030629333800301 + ], + [ + 77.563562166343104, + 13.0299556500658 + ], + [ + 77.563652144650106, + 13.029934885841101 + ], + [ + 77.564330160794299, + 13.0297528414364 + ], + [ + 77.564347495680494, + 13.0297316347734 + ], + [ + 77.564792534460196, + 13.029387315987799 + ], + [ + 77.565387110980396, + 13.0291043168532 + ], + [ + 77.565896988053396, + 13.028739789353001 + ], + [ + 77.566557178448804, + 13.0283251666078 + ], + [ + 77.5665591361076, + 13.0283245048591 + ], + [ + 77.566936352856303, + 13.028093791251401 + ], + [ + 77.567405855047994, + 13.0280787948669 + ], + [ + 77.567688479217495, + 13.0280603377782 + ], + [ + 77.568290641733697, + 13.028028037873201 + ], + [ + 77.568735918996595, + 13.0280095807845 + ], + [ + 77.569070453727804, + 13.0280141950567 + ], + [ + 77.569239658060496, + 13.0280457461722 + ], + [ + 77.569789440902497, + 13.027930336056 + ], + [ + 77.570563241939098, + 13.027788797725099 + ], + [ + 77.571497560881298, + 13.027593142722599 + ], + [ + 77.571702895992104, + 13.0271594011401 + ], + [ + 77.571820559932107, + 13.026656445475201 + ], + [ + 77.571843631292893, + 13.026259618069901 + ], + [ + 77.571947452416296, + 13.0256389984651 + ], + [ + 77.571615224821201, + 13.0256574555537 + ], + [ + 77.57158061778, + 13.025549020158101 + ], + [ + 77.571776724346606, + 13.025411745561501 + ], + [ + 77.571518325105899, + 13.023639865054101 + ], + [ + 77.571375282669095, + 13.0227193177593 + ], + [ + 77.571227861718199, + 13.022669438802801 + ], + [ + 77.571230089833904, + 13.0226490990832 + ], + [ + 77.571303984157296, + 13.0212910789239 + ], + [ + 77.571507770995694, + 13.021291914008801 + ], + [ + 77.572413052834605, + 13.0212546442096 + ], + [ + 77.572428172161906, + 13.0209085502135 + ], + [ + 77.572460377702697, + 13.020171335726801 + ], + [ + 77.572517746778104, + 13.018998288539599 + ], + [ + 77.572578218818407, + 13.0177714275088 + ], + [ + 77.572660362425594, + 13.0161642815858 + ], + [ + 77.572733216826194, + 13.01466954426 + ], + [ + 77.572763569175095, + 13.0146720979901 + ], + [ + 77.573707142882697, + 13.014652132081 + ], + [ + 77.573879576713907, + 13.0138869837772 + ], + [ + 77.574046946246696, + 13.013358113125699 + ], + [ + 77.574162303050599, + 13.013198920736301 + ], + [ + 77.574728882618302, + 13.012484232136099 + ], + [ + 77.574807607804502, + 13.0124356429264 + ], + [ + 77.574931698524495, + 13.0123537359457 + ], + [ + 77.575126291077098, + 13.012017152480899 + ], + [ + 77.575312857329095, + 13.0117091279427 + ], + [ + 77.575362984086496, + 13.011626367031001 + ], + [ + 77.575388524183495, + 13.011443847977599 + ], + [ + 77.575475055477099, + 13.0097906463015 + ], + [ + 77.575482591832198, + 13.0096351970566 + ], + [ + 77.575670083984704, + 13.0093680144691 + ], + [ + 77.5758879941461, + 13.0090574833368 + ], + [ + 77.576347744861806, + 13.008431421975001 + ], + [ + 77.576989571510296, + 13.008027648095499 + ], + [ + 77.577559877316304, + 13.007779957805599 + ], + [ + 77.577989750111499, + 13.0075067701279 + ], + [ + 77.578219919383699, + 13.007370025148701 + ], + [ + 77.578396579200401, + 13.0072191435262 + ], + [ + 77.578446455979602, + 13.007176544664 + ], + [ + 77.578558293050094, + 13.0070887821031 + ], + [ + 77.578867576370897, + 13.0066464784705 + ], + [ + 77.578891765280503, + 13.0066283101142 + ], + [ + 77.5787414032513, + 13.006386787622199 + ], + [ + 77.578829658979799, + 13.0063435642329 + ], + [ + 77.580140823184195, + 13.005636937041199 + ], + [ + 77.581043013522802, + 13.005122892273199 + ], + [ + 77.581600309061699, + 13.0048053573478 + ], + [ + 77.583190830303494, + 13.003903623667499 + ], + [ + 77.583276781897197, + 13.0038548929315 + ], + [ + 77.583620314064504, + 13.0036119908034 + ], + [ + 77.584108724385302, + 13.003065373792699 + ], + [ + 77.584125124703107, + 13.0023664835076 + ], + [ + 77.583056457339197, + 13.002391072919 + ], + [ + 77.583051844849805, + 13.0026989967952 + ], + [ + 77.583057523620596, + 13.002819738700101 + ], + [ + 77.581996926481494, + 13.002839749966901 + ], + [ + 77.582020439719898, + 13.003228969105599 + ], + [ + 77.582027687643802, + 13.0037361736071 + ], + [ + 77.581041386970696, + 13.0043833252768 + ], + [ + 77.580575345483098, + 13.0046463387896 + ], + [ + 77.580519974217196, + 13.0037269450628 + ], + [ + 77.580202743006595, + 13.0037361736071 + ], + [ + 77.580176210941701, + 13.003391256763599 + ], + [ + 77.580098921883106, + 13.003379721083199 + ], + [ + 77.579932808085502, + 13.0034097138522 + ], + [ + 77.579221056605704, + 13.0034200959646 + ], + [ + 77.579221669089705, + 13.003680450333301 + ], + [ + 77.578550272599401, + 13.0037199881367 + ], + [ + 77.578568947555297, + 13.004581948284001 + ], + [ + 77.578566983527693, + 13.0046555673339 + ], + [ + 77.577864460592195, + 13.004672870854501 + ], + [ + 77.577867177764702, + 13.0054039355293 + ], + [ + 77.576555258677899, + 13.005408617302701 + ], + [ + 77.576260098672506, + 13.0054073164145 + ], + [ + 77.5762591533408, + 13.005407312249099 + ], + [ + 77.576307143739996, + 13.006270562588099 + ], + [ + 77.573988471982204, + 13.006316705309599 + ], + [ + 77.573987404539295, + 13.006316743003101 + ], + [ + 77.573976936301804, + 13.0054399936002 + ], + [ + 77.571207305082893, + 13.005436369968301 + ], + [ + 77.5712337515059, + 13.0046994029194 + ], + [ + 77.571381408214805, + 13.0045840461155 + ], + [ + 77.572088815896294, + 13.003364535581699 + ], + [ + 77.571774819050006, + 13.003330781363299 + ], + [ + 77.571435674481506, + 13.003323764309901 + ], + [ + 77.571353078101296, + 13.003322054907899 + ], + [ + 77.571295053699799, + 13.003320854704199 + ], + [ + 77.5712950496102, + 13.0033208546196 + ], + [ + 77.571301712912103, + 13.0028498664716 + ], + [ + 77.571334240681495, + 13.0018726913073 + ], + [ + 77.571334245510499, + 13.001872534059601 + ], + [ + 77.571334691571906, + 13.0018591351235 + ], + [ + 77.571339902118893, + 13.0016942042813 + ], + [ + 77.571342158493593, + 13.001554358927599 + ], + [ + 77.571344069250301, + 13.001435961234 + ], + [ + 77.571351148252703, + 13.000997308754799 + ], + [ + 77.571357038908204, + 13.000618931624301 + ], + [ + 77.571365461623202, + 13.0001569577684 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "84", + "group": "Prakash Nagara", + "Corporatio": "West", + "ac_no": "165", + "ac": "Rajajinagar", + "corporat_1": "5", + "ward_id": "39", + "ward_name": "39 - Prakash Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜಾಜಿನಗರ", + "ward_name_": "ಪ್ರಕಾಶ್ ನಗರ", + "dig_ward_n": "Prakash Nagara", + "Assembly": "165 - Rajajinagar", + "Slno": "39" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.554776466719403, + 12.989939826616601 + ], + [ + 77.554403282787703, + 12.989964422915699 + ], + [ + 77.554515669802996, + 12.9915641677186 + ], + [ + 77.554842473752103, + 12.9915457478556 + ], + [ + 77.555587299385806, + 12.9915271480246 + ], + [ + 77.555493513954602, + 12.9928698316983 + ], + [ + 77.555318263603496, + 12.994159327776201 + ], + [ + 77.555504850067294, + 12.9943219419266 + ], + [ + 77.555312817645003, + 12.9946068084126 + ], + [ + 77.555205628421405, + 12.9947670977587 + ], + [ + 77.555181920278102, + 12.994813633301399 + ], + [ + 77.555128309269307, + 12.994920317219099 + ], + [ + 77.554953958166294, + 12.995269864368799 + ], + [ + 77.554893830709304, + 12.9954150093815 + ], + [ + 77.554868526322593, + 12.995476089139499 + ], + [ + 77.554776385110898, + 12.9956984958161 + ], + [ + 77.554604530674197, + 12.9960107506553 + ], + [ + 77.554568731311207, + 12.9960574051434 + ], + [ + 77.554424957969204, + 12.996244028734401 + ], + [ + 77.554326656345296, + 12.9963726094209 + ], + [ + 77.554302786188302, + 12.9964033359964 + ], + [ + 77.554291584804801, + 12.996418101203499 + ], + [ + 77.554257901572697, + 12.9964625024023 + ], + [ + 77.554181661816898, + 12.9965524690086 + ], + [ + 77.553934184565904, + 12.996846269072 + ], + [ + 77.553801625323899, + 12.997003419732 + ], + [ + 77.553572236773903, + 12.9972642912621 + ], + [ + 77.553534133990098, + 12.9973109683252 + ], + [ + 77.553521617281106, + 12.9973257726508 + ], + [ + 77.553385154219995, + 12.997495384147999 + ], + [ + 77.553264675572095, + 12.9977077527271 + ], + [ + 77.553054741608804, + 12.9981818750018 + ], + [ + 77.553078382767893, + 12.9981850304759 + ], + [ + 77.553637883156597, + 12.998277778622599 + ], + [ + 77.553669043968299, + 12.9982842480426 + ], + [ + 77.553859486574694, + 12.998325288912699 + ], + [ + 77.554041573929794, + 12.9983655372858 + ], + [ + 77.554157863678199, + 12.998391242145701 + ], + [ + 77.554367928732802, + 12.998436606842599 + ], + [ + 77.554433117690294, + 12.9984483879511 + ], + [ + 77.554728489005498, + 12.998501947495001 + ], + [ + 77.554909638609303, + 12.9985351737245 + ], + [ + 77.554945486897907, + 12.998542878853099 + ], + [ + 77.555080459078397, + 12.998571889452901 + ], + [ + 77.555212034840693, + 12.9985999567695 + ], + [ + 77.555392128030405, + 12.9986237591259 + ], + [ + 77.555402891664698, + 12.998625181821801 + ], + [ + 77.555438071346401, + 12.9986304821291 + ], + [ + 77.555511726041203, + 12.9986359294883 + ], + [ + 77.555613255265996, + 12.998643438754399 + ], + [ + 77.555800246855398, + 12.998647037536401 + ], + [ + 77.555807347046795, + 12.998647174523899 + ], + [ + 77.555991017162398, + 12.998645366149301 + ], + [ + 77.556301252141097, + 12.9986101012819 + ], + [ + 77.556360842970307, + 12.998603327589199 + ], + [ + 77.556675889650705, + 12.9985539227806 + ], + [ + 77.5568186859647, + 12.9985186421573 + ], + [ + 77.556923444094593, + 12.998492759856401 + ], + [ + 77.557263032580806, + 12.998411072452001 + ], + [ + 77.557281956859796, + 12.9984065205268 + ], + [ + 77.557364016575505, + 12.998386781112901 + ], + [ + 77.557370902643996, + 12.9983844546343 + ], + [ + 77.557578717145105, + 12.998322553305201 + ], + [ + 77.5578440670037, + 12.9982428487926 + ], + [ + 77.557850820677402, + 12.9982408199409 + ], + [ + 77.557868611587907, + 12.9982349980426 + ], + [ + 77.558202596756004, + 12.9981232922812 + ], + [ + 77.558621783206405, + 12.9979490223042 + ], + [ + 77.558670662745101, + 12.9979287015613 + ], + [ + 77.558731253905606, + 12.9979035113934 + ], + [ + 77.558754824053096, + 12.9978937214195 + ], + [ + 77.5588287289074, + 12.9978630244453 + ], + [ + 77.558937696024003, + 12.9978201655496 + ], + [ + 77.559196358933804, + 12.997719364989999 + ], + [ + 77.559265184445493, + 12.997692712158299 + ], + [ + 77.559496279814098, + 12.9975989590213 + ], + [ + 77.559688236378904, + 12.997520642267601 + ], + [ + 77.559709019996404, + 12.9975121626003 + ], + [ + 77.559784731384397, + 12.997483183119 + ], + [ + 77.5599591151705, + 12.9974182217766 + ], + [ + 77.560572208967898, + 12.997178406643799 + ], + [ + 77.560566428175306, + 12.9971762050211 + ], + [ + 77.560453644829494, + 12.9971276273253 + ], + [ + 77.560319593039097, + 12.9970826472734 + ], + [ + 77.560257097987702, + 12.997052771964601 + ], + [ + 77.5601102636804, + 12.9969966246542 + ], + [ + 77.559991913317106, + 12.9968543681355 + ], + [ + 77.559853974416399, + 12.996676645290499 + ], + [ + 77.559851866237906, + 12.9966739286065 + ], + [ + 77.559819825694802, + 12.996581640332201 + ], + [ + 77.559743943141797, + 12.9964254130923 + ], + [ + 77.559695596134802, + 12.996315216442699 + ], + [ + 77.559626200705594, + 12.9962300723091 + ], + [ + 77.559522569176806, + 12.9961192912999 + ], + [ + 77.559414892825899, + 12.9959509548023 + ], + [ + 77.559361136284394, + 12.9958204583177 + ], + [ + 77.559354660474497, + 12.9958047369715 + ], + [ + 77.559320554347906, + 12.9956232526797 + ], + [ + 77.559278280619907, + 12.995494053265199 + ], + [ + 77.559226632860302, + 12.995336201876601 + ], + [ + 77.559207255744099, + 12.9952470175855 + ], + [ + 77.5589906308454, + 12.9953107867263 + ], + [ + 77.558752981852393, + 12.9953301311924 + ], + [ + 77.558791801214696, + 12.9952137833075 + ], + [ + 77.558796097054, + 12.995068176743899 + ], + [ + 77.558806086857203, + 12.9948291258896 + ], + [ + 77.558835912089407, + 12.9944207735037 + ], + [ + 77.558869788315704, + 12.9940389747574 + ], + [ + 77.558978297997101, + 12.9934316469724 + ], + [ + 77.559124038953101, + 12.9927765452509 + ], + [ + 77.558200432571297, + 12.9926723294839 + ], + [ + 77.558172163885104, + 12.9926686851325 + ], + [ + 77.5580800186343, + 12.992657559636701 + ], + [ + 77.557520462255098, + 12.992589999034699 + ], + [ + 77.557167509089197, + 12.992496531013 + ], + [ + 77.556903617291795, + 12.992366805143 + ], + [ + 77.556906658605499, + 12.992362676213901 + ], + [ + 77.557058934854894, + 12.9921559313242 + ], + [ + 77.557076540405205, + 12.992132042227899 + ], + [ + 77.557092695827095, + 12.9921105823503 + ], + [ + 77.557141508393897, + 12.992045743961899 + ], + [ + 77.557912098923794, + 12.991021787397599 + ], + [ + 77.557913889528393, + 12.991019320491599 + ], + [ + 77.556127144539104, + 12.9899483366688 + ], + [ + 77.556059184846703, + 12.989910640868001 + ], + [ + 77.555988941646206, + 12.9899104601538 + ], + [ + 77.555251019110401, + 12.9899159764721 + ], + [ + 77.555034164166599, + 12.989925085013001 + ], + [ + 77.554776466719403, + 12.989939826616601 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "85", + "group": "MALLESHWARAM", + "Corporatio": "West", + "ac_no": "157", + "ac": "Malleshwaram", + "corporat_1": "5", + "ward_id": "12", + "ward_name": "12 - Malleshwaram", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಲ್ಲೇಶ್ವರಂ", + "ward_name_": "ಮಲ್ಲೇಶ್ವರಂ", + "dig_ward_n": "MALLESHWARAM", + "Assembly": "157 - Malleshwaram", + "Slno": "12" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.568728349213998, + 12.9967533512963 + ], + [ + 77.568541672895194, + 12.9967616623933 + ], + [ + 77.568532661107994, + 12.9967620632397 + ], + [ + 77.568492957017199, + 12.9967647146649 + ], + [ + 77.568142447902105, + 12.9967806044982 + ], + [ + 77.567964032428307, + 12.9967891451612 + ], + [ + 77.567775206804697, + 12.9967932714122 + ], + [ + 77.567637047925103, + 12.996796896445 + ], + [ + 77.567112466659594, + 12.9968517737355 + ], + [ + 77.566916190814595, + 12.9968593609781 + ], + [ + 77.566787185898704, + 12.996857248491001 + ], + [ + 77.566596180017896, + 12.9968173522096 + ], + [ + 77.566407635086506, + 12.9967367761455 + ], + [ + 77.566334717981604, + 12.9967013588754 + ], + [ + 77.566305779126793, + 12.9966869638442 + ], + [ + 77.566135844348807, + 12.996624272620901 + ], + [ + 77.566109830731804, + 12.9966143659083 + ], + [ + 77.566099985716903, + 12.996608816643199 + ], + [ + 77.566080033905706, + 12.9966472558591 + ], + [ + 77.566051615107796, + 12.996634006380001 + ], + [ + 77.565942760126802, + 12.996829457106999 + ], + [ + 77.565527045695006, + 12.997351914492301 + ], + [ + 77.565349255832203, + 12.997575355845701 + ], + [ + 77.565000097266093, + 12.998023274403099 + ], + [ + 77.564945272057003, + 12.998093606863099 + ], + [ + 77.564465767822796, + 12.998790250641401 + ], + [ + 77.564117390275101, + 12.999327813347501 + ], + [ + 77.563736825453205, + 12.9998764034529 + ], + [ + 77.563645271203399, + 13.000076188383201 + ], + [ + 77.563615769671102, + 13.000134685608399 + ], + [ + 77.563509575610993, + 13.0003452523683 + ], + [ + 77.563316814056193, + 13.0007513163072 + ], + [ + 77.561459281121898, + 13.0039224748454 + ], + [ + 77.561449764185596, + 13.0039293962536 + ], + [ + 77.561359869619807, + 13.004158491167299 + ], + [ + 77.561250796682003, + 13.0043955120343 + ], + [ + 77.561188314136302, + 13.0045975475283 + ], + [ + 77.561056301839898, + 13.004886586206201 + ], + [ + 77.560930749251995, + 13.0052331120477 + ], + [ + 77.560900555061806, + 13.0053408307675 + ], + [ + 77.560840166656007, + 13.005556270918699 + ], + [ + 77.560739434345805, + 13.005810761733899 + ], + [ + 77.560419362659005, + 13.0067893532017 + ], + [ + 77.560308298825205, + 13.0071184701129 + ], + [ + 77.560260490366204, + 13.00728431566 + ], + [ + 77.560172293182205, + 13.0075902636791 + ], + [ + 77.560159057189793, + 13.0076341766119 + ], + [ + 77.560123360532401, + 13.0077526067872 + ], + [ + 77.559972583070007, + 13.008252841429499 + ], + [ + 77.559912636369305, + 13.008451724135 + ], + [ + 77.559810784872198, + 13.008793478909601 + ], + [ + 77.559766675449694, + 13.008941482673899 + ], + [ + 77.559670098323707, + 13.0092655391253 + ], + [ + 77.559469665553195, + 13.0098933473319 + ], + [ + 77.559421027111398, + 13.0100402502067 + ], + [ + 77.559298529071299, + 13.010410226656701 + ], + [ + 77.5592775476008, + 13.010473595125999 + ], + [ + 77.5591742222432, + 13.010699050936299 + ], + [ + 77.559149893930098, + 13.010770640440301 + ], + [ + 77.559041771331493, + 13.0110888046366 + ], + [ + 77.558813733186994, + 13.0116003521089 + ], + [ + 77.558554797263199, + 13.0121035709333 + ], + [ + 77.558373401333398, + 13.0124420114304 + ], + [ + 77.558095795608395, + 13.012841831270499 + ], + [ + 77.557778754662294, + 13.013259299543501 + ], + [ + 77.557369819825894, + 13.013729469015299 + ], + [ + 77.557084548367698, + 13.014044956673301 + ], + [ + 77.557039043495905, + 13.014095281605901 + ], + [ + 77.556777932396997, + 13.014387033719199 + ], + [ + 77.556338273602293, + 13.014866136762199 + ], + [ + 77.556033769438699, + 13.0152187412065 + ], + [ + 77.555606406045001, + 13.0156638263928 + ], + [ + 77.555807701413499, + 13.0157676448469 + ], + [ + 77.555856048702097, + 13.015803983219399 + ], + [ + 77.555861092537896, + 13.015807774093499 + ], + [ + 77.555859991120997, + 13.0158092666203 + ], + [ + 77.555868536781702, + 13.015799769903399 + ], + [ + 77.555949903140004, + 13.0158651221819 + ], + [ + 77.556042497231701, + 13.0159560005701 + ], + [ + 77.556243777940196, + 13.016185406760799 + ], + [ + 77.556499847696102, + 13.0166227161391 + ], + [ + 77.5566370122352, + 13.0168757018722 + ], + [ + 77.556817941242699, + 13.0172123983522 + ], + [ + 77.557076395262101, + 13.0176917535859 + ], + [ + 77.557402036554294, + 13.0182564997176 + ], + [ + 77.557411821691602, + 13.018272476564499 + ], + [ + 77.557690580025593, + 13.018678904979099 + ], + [ + 77.557693485331498, + 13.0186764053621 + ], + [ + 77.557948239080403, + 13.018557360340401 + ], + [ + 77.558881344947693, + 13.018133856297499 + ], + [ + 77.559902302197102, + 13.0174414771425 + ], + [ + 77.560429411132404, + 13.0171374732864 + ], + [ + 77.560569408478798, + 13.0170775440771 + ], + [ + 77.560781003320301, + 13.0169501974888 + ], + [ + 77.5622205735488, + 13.0161566141861 + ], + [ + 77.563320911907695, + 13.015500909630999 + ], + [ + 77.564581704351099, + 13.014806502454499 + ], + [ + 77.565821985405094, + 13.014102667934401 + ], + [ + 77.5658848969519, + 13.0140669662396 + ], + [ + 77.566129189110299, + 13.0139283319721 + ], + [ + 77.5672712213549, + 13.013188699223599 + ], + [ + 77.568183121949403, + 13.012613708656099 + ], + [ + 77.568733106995694, + 13.0122696127839 + ], + [ + 77.568975513089299, + 13.0121001188196 + ], + [ + 77.569061425038896, + 13.0119926581323 + ], + [ + 77.569093964730797, + 13.0119366679974 + ], + [ + 77.569097691832596, + 13.0118392104024 + ], + [ + 77.569109828083995, + 13.011639613236801 + ], + [ + 77.569298064336905, + 13.0054861363218 + ], + [ + 77.569438799637595, + 12.9992314904162 + ], + [ + 77.570967420379503, + 12.999266347981999 + ], + [ + 77.5709464805594, + 13.0000733083626 + ], + [ + 77.571367145683297, + 13.0000645942073 + ], + [ + 77.571381690160507, + 12.999266903570399 + ], + [ + 77.571382783141601, + 12.999231875103501 + ], + [ + 77.571410493326695, + 12.9983434065299 + ], + [ + 77.571411989729995, + 12.9982953969403 + ], + [ + 77.571433118305706, + 12.9976074379216 + ], + [ + 77.571456474596104, + 12.996856215470499 + ], + [ + 77.5714420749525, + 12.996855803376 + ], + [ + 77.571419107399393, + 12.9968551454796 + ], + [ + 77.571016997335903, + 12.996843629203401 + ], + [ + 77.571010090127501, + 12.996843432894501 + ], + [ + 77.570425461821301, + 12.996826899338201 + ], + [ + 77.569523167940702, + 12.996827925863 + ], + [ + 77.569458739035895, + 12.9968223676623 + ], + [ + 77.569439075633099, + 12.9968206713488 + ], + [ + 77.569429226405504, + 12.996819821106399 + ], + [ + 77.569027378463701, + 12.9967817105987 + ], + [ + 77.568728349213998, + 12.9967533512963 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "88", + "group": "Nelamaheshwaramma", + "Corporatio": "North", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "2", + "ward_id": "24", + "ward_name": "24 - Nele Maheshwaramma Temple Ward", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ನೆಲೆ ಮಹೇಶ್ವರಮ್ಮ ದೇವಸ್ಥಾನ ವಾರ್ಡ್", + "dig_ward_n": "Nelamaheshwaramma Ward", + "Assembly": "155 - Dasarahalli", + "Slno": "24" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.514366084847097, + 13.0502655211061 + ], + [ + 77.514457457086706, + 13.050647930752501 + ], + [ + 77.514585562254894, + 13.050606484962801 + ], + [ + 77.514835492925997, + 13.0504143272106 + ], + [ + 77.515146964315093, + 13.0502297050566 + ], + [ + 77.515130284673901, + 13.050147906283501 + ], + [ + 77.515139428717006, + 13.050146499494 + ], + [ + 77.514951475056705, + 13.0492634601926 + ], + [ + 77.514955914643195, + 13.049262307438999 + ], + [ + 77.514726012420297, + 13.0483076405147 + ], + [ + 77.514520473631293, + 13.0476272362478 + ], + [ + 77.514463773275693, + 13.047603948601701 + ], + [ + 77.514432385164497, + 13.047553323444999 + ], + [ + 77.513621367992798, + 13.045153683235601 + ], + [ + 77.5135995991063, + 13.045097995386399 + ], + [ + 77.513599092853099, + 13.044781080899 + ], + [ + 77.513581880245198, + 13.0445451669195 + ], + [ + 77.513412285431599, + 13.044308240433701 + ], + [ + 77.513250790668906, + 13.044107257923301 + ], + [ + 77.513140427476699, + 13.0436389737366 + ], + [ + 77.512978886347298, + 13.0429291415759 + ], + [ + 77.512978291842799, + 13.0429258451209 + ], + [ + 77.512956299285193, + 13.0429341755731 + ], + [ + 77.512624090907707, + 13.043059371522901 + ], + [ + 77.512526543141703, + 13.043095328608199 + ], + [ + 77.511992190832103, + 13.043278954109599 + ], + [ + 77.511947995464894, + 13.043294064723099 + ], + [ + 77.511620301801003, + 13.04341018089 + ], + [ + 77.511616857853895, + 13.0434113436709 + ], + [ + 77.511457668238705, + 13.043490348851201 + ], + [ + 77.511431181093698, + 13.0435034941077 + ], + [ + 77.511273010189299, + 13.0435818252468 + ], + [ + 77.510731447890294, + 13.0438502200466 + ], + [ + 77.510668407419004, + 13.043881324287799 + ], + [ + 77.510498809283405, + 13.043968800746301 + ], + [ + 77.510305148847095, + 13.044068933455801 + ], + [ + 77.510252890078604, + 13.0440955673816 + ], + [ + 77.510187683254998, + 13.0441287994669 + ], + [ + 77.510028969747495, + 13.0442105233055 + ], + [ + 77.5100237980961, + 13.0442117028275 + ], + [ + 77.509957347637396, + 13.044247357424499 + ], + [ + 77.509824999760397, + 13.0443164025017 + ], + [ + 77.509707568089496, + 13.044379656070699 + ], + [ + 77.5096847930498, + 13.0443919303552 + ], + [ + 77.509517419492894, + 13.044482134915301 + ], + [ + 77.509063126748003, + 13.0447269713515 + ], + [ + 77.508822537683301, + 13.0448569214683 + ], + [ + 77.508698804753195, + 13.0449236238304 + ], + [ + 77.508449137439499, + 13.0450402458327 + ], + [ + 77.508417337979907, + 13.0450550993279 + ], + [ + 77.507781118117407, + 13.045190013194301 + ], + [ + 77.507303371680905, + 13.045333554175301 + ], + [ + 77.507639101203296, + 13.0461852237929 + ], + [ + 77.508006923053202, + 13.0471348354427 + ], + [ + 77.508015960210201, + 13.047174275312701 + ], + [ + 77.508027403484903, + 13.047223856064599 + ], + [ + 77.508027967241404, + 13.0472797510399 + ], + [ + 77.508028086859596, + 13.047291610834799 + ], + [ + 77.508023404883005, + 13.0473413479152 + ], + [ + 77.508020832891802, + 13.047371865477899 + ], + [ + 77.507991237589394, + 13.047521227467501 + ], + [ + 77.507961123312896, + 13.0476762412728 + ], + [ + 77.507932081095703, + 13.047823339189801 + ], + [ + 77.507916177169406, + 13.047902548338 + ], + [ + 77.507863994799195, + 13.0481537714056 + ], + [ + 77.507798651250397, + 13.0484706247576 + ], + [ + 77.507791494784399, + 13.0485034454809 + ], + [ + 77.507791198745196, + 13.0485047936406 + ], + [ + 77.507783785191407, + 13.0485385302801 + ], + [ + 77.507730245845593, + 13.0487694380914 + ], + [ + 77.507682249099304, + 13.0489788343942 + ], + [ + 77.507633362449695, + 13.049214214532 + ], + [ + 77.507628512517201, + 13.049313545561301 + ], + [ + 77.507622383124499, + 13.0494390629666 + ], + [ + 77.507649395938898, + 13.049718881552501 + ], + [ + 77.507674567242901, + 13.049987424407499 + ], + [ + 77.507737489062393, + 13.0505153532501 + ], + [ + 77.507742789640801, + 13.0505144245724 + ], + [ + 77.507739595282999, + 13.050523989120901 + ], + [ + 77.507743392893104, + 13.0509004517719 + ], + [ + 77.507772957088804, + 13.051414117192101 + ], + [ + 77.507842053082697, + 13.0516166382866 + ], + [ + 77.507852006599606, + 13.051628042229501 + ], + [ + 77.507875519688795, + 13.0519142831492 + ], + [ + 77.507883095455199, + 13.0520065070114 + ], + [ + 77.507845722164802, + 13.0526522975054 + ], + [ + 77.507809095529296, + 13.0529616165928 + ], + [ + 77.507803721836495, + 13.053122059108601 + ], + [ + 77.507764231873495, + 13.0532331411044 + ], + [ + 77.507766098962193, + 13.0532352434773 + ], + [ + 77.508951726050697, + 13.0530967729044 + ], + [ + 77.509081987443096, + 13.053282394617099 + ], + [ + 77.509236202992597, + 13.053829850145499 + ], + [ + 77.510960501306002, + 13.0534380101882 + ], + [ + 77.511156927537797, + 13.0538075750058 + ], + [ + 77.5111579359708, + 13.053808238307401 + ], + [ + 77.511430604923206, + 13.0537613609602 + ], + [ + 77.511466879321603, + 13.0537091180183 + ], + [ + 77.511479931389502, + 13.053689792241499 + ], + [ + 77.511577802048805, + 13.053571388902199 + ], + [ + 77.511594874095707, + 13.0535508947235 + ], + [ + 77.511595849040404, + 13.0534774979359 + ], + [ + 77.511559398811897, + 13.053355997173901 + ], + [ + 77.511443973088006, + 13.0530441452182 + ], + [ + 77.511230334248197, + 13.0524427164465 + ], + [ + 77.511134146144997, + 13.0520620140591 + ], + [ + 77.510808119100403, + 13.0510444451777 + ], + [ + 77.511201984070496, + 13.0509340819856 + ], + [ + 77.511422710454696, + 13.0508692815792 + ], + [ + 77.511486498354699, + 13.050850043958601 + ], + [ + 77.511574586407093, + 13.0508206812745 + ], + [ + 77.5116454618516, + 13.050757905880801 + ], + [ + 77.511707224738998, + 13.050704243044301 + ], + [ + 77.511803919095399, + 13.050665261549799 + ], + [ + 77.511999396102198, + 13.0505805907063 + ], + [ + 77.512023906171706, + 13.050547229787799 + ], + [ + 77.512106114984505, + 13.050607269921001 + ], + [ + 77.512451496565205, + 13.0505570326001 + ], + [ + 77.512457776230306, + 13.0505859190596 + ], + [ + 77.512617279723898, + 13.050563312265201 + ], + [ + 77.512727801829797, + 13.050533169872701 + ], + [ + 77.512726545896697, + 13.050494235949101 + ], + [ + 77.512899864653605, + 13.0504439986283 + ], + [ + 77.512916191782907, + 13.0505055393463 + ], + [ + 77.513451376241306, + 13.0503739803624 + ], + [ + 77.513718262008197, + 13.0503289237652 + ], + [ + 77.514065919967507, + 13.0502928156909 + ], + [ + 77.5140687458168, + 13.0503135385857 + ], + [ + 77.514366084847097, + 13.0502655211061 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "86", + "group": "Panathur", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "43", + "ward_name": "43 - Panathur", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಪಣತ್ತೂರ್", + "dig_ward_n": "Panathur", + "Assembly": "174 - Mahadevapura", + "Slno": "43" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.694741641781405, + 12.9276375721865 + ], + [ + 77.694712539082403, + 12.9280364851521 + ], + [ + 77.694687798334698, + 12.928412768797401 + ], + [ + 77.694677100058897, + 12.9285958118891 + ], + [ + 77.6946637266186, + 12.928738043929499 + ], + [ + 77.6946585017659, + 12.9287936163576 + ], + [ + 77.694654326838304, + 12.9288731244944 + ], + [ + 77.694687548361799, + 12.9291189438131 + ], + [ + 77.694714105217997, + 12.9292191355888 + ], + [ + 77.694743076333907, + 12.9295366107335 + ], + [ + 77.694769633190106, + 12.929914442369601 + ], + [ + 77.694788947267398, + 12.9300411910015 + ], + [ + 77.694856546537693, + 12.9300399838717 + ], + [ + 77.694893363997494, + 12.9304051406446 + ], + [ + 77.694904831730796, + 12.9304781719992 + ], + [ + 77.694908453120306, + 12.930518007283499 + ], + [ + 77.694922938678204, + 12.930573535255601 + ], + [ + 77.694944063450293, + 12.9308529858108 + ], + [ + 77.694947081274805, + 12.930886181881 + ], + [ + 77.6949507026643, + 12.930922999340799 + ], + [ + 77.6949622221411, + 12.931133596350501 + ], + [ + 77.694994533601104, + 12.9312242246823 + ], + [ + 77.6949976178539, + 12.9312328760118 + ], + [ + 77.695020384122202, + 12.931296731302201 + ], + [ + 77.695036130630399, + 12.931340685600199 + ], + [ + 77.695018518824895, + 12.9313408675737 + ], + [ + 77.694978116190796, + 12.9313412850281 + ], + [ + 77.694687710590699, + 12.9313442854186 + ], + [ + 77.693732047760093, + 12.9313541567815 + ], + [ + 77.693128206139605, + 12.9313986346947 + ], + [ + 77.691752713966693, + 12.932156761470299 + ], + [ + 77.691406745481601, + 12.9326592963241 + ], + [ + 77.690777242785998, + 12.9339469284813 + ], + [ + 77.690586111000499, + 12.934341737806401 + ], + [ + 77.690395804068999, + 12.9347348429518 + ], + [ + 77.690363639734898, + 12.934801282755901 + ], + [ + 77.690467075283095, + 12.9348960309629 + ], + [ + 77.690524157585401, + 12.934942138102601 + ], + [ + 77.690427587199196, + 12.935113550538199 + ], + [ + 77.690548300182002, + 12.9352390920403 + ], + [ + 77.690422758679802, + 12.9355360459779 + ], + [ + 77.690343088111206, + 12.935741258048701 + ], + [ + 77.690309288476001, + 12.9359126704842 + ], + [ + 77.690289974398794, + 12.9362337670184 + ], + [ + 77.690205475310805, + 12.9373032840459 + ], + [ + 77.690183746973901, + 12.9378151070929 + ], + [ + 77.690203061051207, + 12.937991348047801 + ], + [ + 77.690137876040396, + 12.9380565330585 + ], + [ + 77.690063033991095, + 12.938203802897499 + ], + [ + 77.689949563787295, + 12.9386021557407 + ], + [ + 77.689811950986893, + 12.9394640464378 + ], + [ + 77.690811277261901, + 12.939939829023 + ], + [ + 77.691281602911303, + 12.9400544825367 + ], + [ + 77.691928388811903, + 12.940149386336 + ], + [ + 77.692446035656303, + 12.940132088418199 + ], + [ + 77.693685870820701, + 12.9398563602431 + ], + [ + 77.694623596479303, + 12.9395987068506 + ], + [ + 77.694659829859702, + 12.939588751156901 + ], + [ + 77.695173626773197, + 12.9394276054195 + ], + [ + 77.695180315928596, + 12.9394254494755 + ], + [ + 77.695207189330105, + 12.939469170257601 + ], + [ + 77.695795890945405, + 12.9404172668653 + ], + [ + 77.696237555172601, + 12.941127489529 + ], + [ + 77.696986481638405, + 12.942360742903301 + ], + [ + 77.696989475589902, + 12.9423661962715 + ], + [ + 77.697331133464601, + 12.942988405632899 + ], + [ + 77.697548751084, + 12.9435259156371 + ], + [ + 77.697829014219593, + 12.944321365772399 + ], + [ + 77.697838780234804, + 12.944445837283199 + ], + [ + 77.697851501216107, + 12.9446079910939 + ], + [ + 77.697851807361005, + 12.944611876019399 + ], + [ + 77.697855341790699, + 12.944656932837599 + ], + [ + 77.697856367619707, + 12.944670008403 + ], + [ + 77.697850735943007, + 12.944672186009999 + ], + [ + 77.697772802339401, + 12.9447023216039 + ], + [ + 77.697285291751399, + 12.944939587336901 + ], + [ + 77.696806158862799, + 12.945076103081099 + ], + [ + 77.696446520123999, + 12.945149478416401 + ], + [ + 77.696338106233, + 12.945500261920801 + ], + [ + 77.696290717806505, + 12.945832105986099 + ], + [ + 77.696337798700995, + 12.9466998023971 + ], + [ + 77.696346161265097, + 12.9481906239713 + ], + [ + 77.696368576100397, + 12.949137650761299 + ], + [ + 77.6969146973628, + 12.9488874813301 + ], + [ + 77.697478110445999, + 12.948711768891201 + ], + [ + 77.697754653860599, + 12.9502343081282 + ], + [ + 77.6978703700632, + 12.9510727982058 + ], + [ + 77.697938891017998, + 12.9514639993854 + ], + [ + 77.698218802235601, + 12.952864964987199 + ], + [ + 77.6982303878425, + 12.9530206465795 + ], + [ + 77.698021361763494, + 12.9537648047394 + ], + [ + 77.697978579175697, + 12.954001068392801 + ], + [ + 77.698042217133604, + 12.9543659110868 + ], + [ + 77.699121865032197, + 12.954145498540001 + ], + [ + 77.699743876710798, + 12.9540222169461 + ], + [ + 77.699964289257593, + 12.9539885946932 + ], + [ + 77.700294908077794, + 12.9538989353521 + ], + [ + 77.700310551869407, + 12.953932318789199 + ], + [ + 77.7003482751728, + 12.9540674324557 + ], + [ + 77.700370436529894, + 12.954147376343 + ], + [ + 77.700383598758293, + 12.9541935373374 + ], + [ + 77.700428594530095, + 12.9543624517671 + ], + [ + 77.700432806311994, + 12.9543793461934 + ], + [ + 77.700485001519993, + 12.9545752869022 + ], + [ + 77.700500024509395, + 12.9546338498594 + ], + [ + 77.700505411850401, + 12.9546529905047 + ], + [ + 77.700617135984501, + 12.955084317989799 + ], + [ + 77.700744495918499, + 12.9555775895259 + ], + [ + 77.700754107327796, + 12.955614753649 + ], + [ + 77.7009146614907, + 12.9560365406582 + ], + [ + 77.701084976356398, + 12.9566693877621 + ], + [ + 77.701099582410805, + 12.956742634634001 + ], + [ + 77.701120532724701, + 12.956868478245999 + ], + [ + 77.701121427948706, + 12.956873853013301 + ], + [ + 77.7011303598198, + 12.956927505139999 + ], + [ + 77.701140304302797, + 12.9569267921948 + ], + [ + 77.701277617260402, + 12.9569169436593 + ], + [ + 77.701423272192898, + 12.956906313808799 + ], + [ + 77.701530137267994, + 12.9568985146282 + ], + [ + 77.701694062802105, + 12.9568855215495 + ], + [ + 77.701955755791403, + 12.9568636093103 + ], + [ + 77.702025343018803, + 12.956857241091299 + ], + [ + 77.702506024287203, + 12.956803696151299 + ], + [ + 77.702772970500604, + 12.956788503816499 + ], + [ + 77.702837063832504, + 12.956782937695699 + ], + [ + 77.703186488387004, + 12.9567525929605 + ], + [ + 77.704546985379807, + 12.956663936299201 + ], + [ + 77.704733370913701, + 12.956651837248099 + ], + [ + 77.704892139675295, + 12.956641154187601 + ], + [ + 77.704909971159395, + 12.9566398397287 + ], + [ + 77.704910817495403, + 12.9566116008605 + ], + [ + 77.704913052247704, + 12.9564753469775 + ], + [ + 77.704903077786895, + 12.956107678205999 + ], + [ + 77.704915487198093, + 12.955873226102 + ], + [ + 77.704933863038704, + 12.9556287732219 + ], + [ + 77.704955601929697, + 12.9553280538041 + ], + [ + 77.7049628091344, + 12.955228344377399 + ], + [ + 77.705022734695007, + 12.9546693246142 + ], + [ + 77.705023647432498, + 12.954664118991699 + ], + [ + 77.705056060798498, + 12.954335877067299 + ], + [ + 77.705066125118606, + 12.9541990648738 + ], + [ + 77.705095214420695, + 12.953803615703899 + ], + [ + 77.705437667364393, + 12.951514183003299 + ], + [ + 77.705487686298198, + 12.9511797879457 + ], + [ + 77.7055032150285, + 12.951178497438599 + ], + [ + 77.705513524210602, + 12.951052421899099 + ], + [ + 77.705533663179693, + 12.950873839303901 + ], + [ + 77.705559416949995, + 12.9506454538396 + ], + [ + 77.705562671512496, + 12.9506234945272 + ], + [ + 77.705609947161307, + 12.950304509537 + ], + [ + 77.705654320206506, + 12.950005109787501 + ], + [ + 77.705671662716497, + 12.949888099612799 + ], + [ + 77.705690240897695, + 12.9497422250203 + ], + [ + 77.705726436223799, + 12.9494580325103 + ], + [ + 77.705764670119393, + 12.9491578338364 + ], + [ + 77.705794141759498, + 12.9489264359126 + ], + [ + 77.705833770788104, + 12.9486350043426 + ], + [ + 77.705859621000997, + 12.948444903304599 + ], + [ + 77.705881655247694, + 12.9483169778674 + ], + [ + 77.705894688769106, + 12.9482413096669 + ], + [ + 77.705896460314193, + 12.948231024554801 + ], + [ + 77.705933960008693, + 12.9480133095974 + ], + [ + 77.705953983101594, + 12.947861367489899 + ], + [ + 77.705988365525599, + 12.9476004472938 + ], + [ + 77.706027431695603, + 12.947303984451599 + ], + [ + 77.706091473698507, + 12.9468179988003 + ], + [ + 77.706153105926802, + 12.94658252696 + ], + [ + 77.706155760437696, + 12.946572385346601 + ], + [ + 77.706183377771794, + 12.9460369476867 + ], + [ + 77.7062301293562, + 12.9458885365648 + ], + [ + 77.706276253931904, + 12.945788687667401 + ], + [ + 77.706287841242499, + 12.9457422700103 + ], + [ + 77.706305177388899, + 12.9455885183985 + ], + [ + 77.706306745644596, + 12.945573822476399 + ], + [ + 77.706385724454805, + 12.944784818786401 + ], + [ + 77.706386235430401, + 12.944772601831099 + ], + [ + 77.706386402973806, + 12.944768584646701 + ], + [ + 77.706439082612704, + 12.943508953158601 + ], + [ + 77.7067914744989, + 12.9414960598388 + ], + [ + 77.7068475115871, + 12.940894595092599 + ], + [ + 77.706944642539895, + 12.9400316239349 + ], + [ + 77.706985736404604, + 12.939833626223299 + ], + [ + 77.707041823853203, + 12.9391204521779 + ], + [ + 77.707059367650004, + 12.938995759624 + ], + [ + 77.707268143094794, + 12.9375119218906 + ], + [ + 77.707484922120699, + 12.9359226114153 + ], + [ + 77.707958131924698, + 12.9324389350488 + ], + [ + 77.708009721873594, + 12.9312357558297 + ], + [ + 77.708008527794703, + 12.930928431424899 + ], + [ + 77.707950585562898, + 12.9305904350731 + ], + [ + 77.707919200187405, + 12.9304262654166 + ], + [ + 77.707863672215296, + 12.9300930975841 + ], + [ + 77.707857033001304, + 12.9299434134854 + ], + [ + 77.707846772397701, + 12.9298788320396 + ], + [ + 77.707833493969602, + 12.929826321892101 + ], + [ + 77.707841340313493, + 12.9297798473937 + ], + [ + 77.707836511794198, + 12.9297279408111 + ], + [ + 77.707826854755595, + 12.929597570789699 + ], + [ + 77.707796072945001, + 12.929528160824599 + ], + [ + 77.707120786735004, + 12.9271473325411 + ], + [ + 77.710572419844993, + 12.9242271303313 + ], + [ + 77.709042119765101, + 12.9217876919811 + ], + [ + 77.706252049103298, + 12.918513027906499 + ], + [ + 77.705136167375102, + 12.9171921303383 + ], + [ + 77.705052478500207, + 12.9171593482139 + ], + [ + 77.703142059132006, + 12.917632665844801 + ], + [ + 77.701655403510401, + 12.918094227095199 + ], + [ + 77.701182208617794, + 12.9181207839514 + ], + [ + 77.700908190146905, + 12.918242704063999 + ], + [ + 77.700871372687203, + 12.918303060555401 + ], + [ + 77.696659928321594, + 12.919411934969601 + ], + [ + 77.696657858511301, + 12.919414293368501 + ], + [ + 77.696652523579004, + 12.9194144695291 + ], + [ + 77.696650431950502, + 12.919419084771601 + ], + [ + 77.696462381162107, + 12.919834102243801 + ], + [ + 77.696398267441495, + 12.920103658027999 + ], + [ + 77.696181814289602, + 12.920368813349899 + ], + [ + 77.695875792575904, + 12.9208022050609 + ], + [ + 77.695568872112503, + 12.921151949244701 + ], + [ + 77.695532231906, + 12.9213066724532 + ], + [ + 77.695044142645301, + 12.9243022070126 + ], + [ + 77.694986312988306, + 12.924339916823 + ], + [ + 77.694959756138005, + 12.9243918234072 + ], + [ + 77.694941950971995, + 12.9244432018703 + ], + [ + 77.694942856320395, + 12.924537886116299 + ], + [ + 77.694924749373001, + 12.9246344565026 + ], + [ + 77.694891475110595, + 12.924768952808201 + ], + [ + 77.694874049920202, + 12.9247986261592 + ], + [ + 77.694867395403804, + 12.924833149445901 + ], + [ + 77.694826357086697, + 12.9249408518692 + ], + [ + 77.694816107688496, + 12.9251450724198 + ], + [ + 77.694808864909504, + 12.9254323693188 + ], + [ + 77.694810072039402, + 12.925460133304799 + ], + [ + 77.694801622130598, + 12.9256267172211 + ], + [ + 77.694800415000699, + 12.925666552505399 + ], + [ + 77.6948245575973, + 12.925830722162001 + ], + [ + 77.694829007825405, + 12.9258937983368 + ], + [ + 77.694852321583298, + 12.9261216404505 + ], + [ + 77.694840853849996, + 12.9263298703458 + ], + [ + 77.694809503339599, + 12.9265596024866 + ], + [ + 77.694784793122906, + 12.926777795006 + ], + [ + 77.694759628478096, + 12.927221845770299 + ], + [ + 77.6947592897628, + 12.927229671556701 + ], + [ + 77.694741641781405, + 12.9276375721865 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "87", + "group": "Mallasandra", + "Corporatio": "North", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "2", + "ward_id": "26", + "ward_name": "26 - Mallasandra", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ಮಲ್ಲಸಂದ್ರ", + "dig_ward_n": "Mallasandra", + "Assembly": "155 - Dasarahalli", + "Slno": "26" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.514559868328007, + 13.051364063520699 + ], + [ + 77.513772986450306, + 13.051931640243099 + ], + [ + 77.513609170914805, + 13.052049799693 + ], + [ + 77.512372336237107, + 13.052941915739099 + ], + [ + 77.512365655581206, + 13.0529432509407 + ], + [ + 77.5121468585766, + 13.053063027126599 + ], + [ + 77.512143815859005, + 13.0530646928921 + ], + [ + 77.512142039280505, + 13.053064710151 + ], + [ + 77.512142325680003, + 13.053065601816201 + ], + [ + 77.511996437774201, + 13.0531630140367 + ], + [ + 77.511803667138693, + 13.053294762188701 + ], + [ + 77.511770931001493, + 13.0533366385613 + ], + [ + 77.511748510984205, + 13.0533653178439 + ], + [ + 77.511746241561895, + 13.0533687279473 + ], + [ + 77.511718364103601, + 13.053402879327001 + ], + [ + 77.511595849040404, + 13.0534774979359 + ], + [ + 77.511594874095707, + 13.0535508947235 + ], + [ + 77.511577802048805, + 13.053571388902199 + ], + [ + 77.511479931389502, + 13.053689792241499 + ], + [ + 77.511466879321603, + 13.0537091180183 + ], + [ + 77.511430604923206, + 13.0537613609602 + ], + [ + 77.511416353135104, + 13.0537818873711 + ], + [ + 77.511311440425104, + 13.0539444038564 + ], + [ + 77.511305208042501, + 13.053954628567499 + ], + [ + 77.511059772634994, + 13.054346639164899 + ], + [ + 77.510925436609796, + 13.054561391585599 + ], + [ + 77.510859691199499, + 13.0546670599382 + ], + [ + 77.510779200041398, + 13.054795458550901 + ], + [ + 77.510736126181101, + 13.0548647674095 + ], + [ + 77.510644299066001, + 13.055011345742599 + ], + [ + 77.510541700508895, + 13.055174968961101 + ], + [ + 77.510334244976306, + 13.055506754684901 + ], + [ + 77.510330257491006, + 13.055512969613 + ], + [ + 77.5103240381181, + 13.055522664745499 + ], + [ + 77.510322315966903, + 13.0555254262489 + ], + [ + 77.510319945402998, + 13.055529227632899 + ], + [ + 77.510304200318203, + 13.0555544792745 + ], + [ + 77.510219306602906, + 13.055703248927101 + ], + [ + 77.510202136613003, + 13.0557336859396 + ], + [ + 77.510151405254007, + 13.0558236197336 + ], + [ + 77.5101338596901, + 13.055854282647401 + ], + [ + 77.509871519649195, + 13.056283725534 + ], + [ + 77.509858478748598, + 13.0563041805173 + ], + [ + 77.509753090873701, + 13.056476865505299 + ], + [ + 77.509588177570294, + 13.056743864748499 + ], + [ + 77.509100928434407, + 13.057602386585 + ], + [ + 77.508419236932298, + 13.058833086990701 + ], + [ + 77.507992212379307, + 13.0594600815477 + ], + [ + 77.508741467077996, + 13.0594033811921 + ], + [ + 77.509547105724096, + 13.059267388933 + ], + [ + 77.5098037760837, + 13.0591727195893 + ], + [ + 77.510002733581402, + 13.059096781613 + ], + [ + 77.510097402925098, + 13.059062356397201 + ], + [ + 77.510191376169999, + 13.059033310121199 + ], + [ + 77.510664406514294, + 13.058942121273301 + ], + [ + 77.510669002525802, + 13.058940947278501 + ], + [ + 77.510947061052406, + 13.058877950762399 + ], + [ + 77.511246597631995, + 13.058830745569701 + ], + [ + 77.511249918131199, + 13.0588579162157 + ], + [ + 77.511260809905593, + 13.058909760649099 + ], + [ + 77.511282604889104, + 13.0590145787538 + ], + [ + 77.511308930054199, + 13.0591441795666 + ], + [ + 77.511339305244704, + 13.059377562280201 + ], + [ + 77.511376767979598, + 13.0595719634993 + ], + [ + 77.511402080638305, + 13.0596691641089 + ], + [ + 77.511438530866897, + 13.0599020405693 + ], + [ + 77.511463337272502, + 13.0600103787487 + ], + [ + 77.511487345334601, + 13.0600075948613 + ], + [ + 77.511530460169794, + 13.0599992704439 + ], + [ + 77.511601544389194, + 13.0599658284693 + ], + [ + 77.511721020138495, + 13.059897990543901 + ], + [ + 77.511851633457596, + 13.0598402776819 + ], + [ + 77.511897536540303, + 13.059822891291899 + ], + [ + 77.511903272997799, + 13.059820576837399 + ], + [ + 77.511967349609805, + 13.0598346356918 + ], + [ + 77.512071530777007, + 13.0598844440348 + ], + [ + 77.512160344886894, + 13.059918339026201 + ], + [ + 77.512207337781106, + 13.059951762849501 + ], + [ + 77.512449606778702, + 13.060100741162699 + ], + [ + 77.512488479614902, + 13.060128597093501 + ], + [ + 77.512548833194103, + 13.060173184482901 + ], + [ + 77.512745748204196, + 13.060288565571 + ], + [ + 77.5128483938268, + 13.060348709840399 + ], + [ + 77.513082303511496, + 13.0604664061471 + ], + [ + 77.513106019433195, + 13.0604783391159 + ], + [ + 77.513242254248595, + 13.060565103823 + ], + [ + 77.5134852031224, + 13.0607242384985 + ], + [ + 77.513576401296206, + 13.060800147455399 + ], + [ + 77.513665826020798, + 13.0608715562137 + ], + [ + 77.513756157901199, + 13.0609542877931 + ], + [ + 77.513920690182999, + 13.0611013543404 + ], + [ + 77.513990903638401, + 13.061152621501799 + ], + [ + 77.514019238580502, + 13.0611636393841 + ], + [ + 77.514111775663295, + 13.0612263521208 + ], + [ + 77.514238503497396, + 13.0612273779926 + ], + [ + 77.514411447395901, + 13.0611850388424 + ], + [ + 77.514593343181204, + 13.0611166374257 + ], + [ + 77.514802124678198, + 13.061029904683 + ], + [ + 77.515088553734898, + 13.0609322520283 + ], + [ + 77.515438414888706, + 13.0608418871788 + ], + [ + 77.515581108347504, + 13.060826946136199 + ], + [ + 77.515595483728603, + 13.060824547515899 + ], + [ + 77.515631122778302, + 13.0608174245264 + ], + [ + 77.515929515769102, + 13.0607636992124 + ], + [ + 77.516088209313594, + 13.0607361793035 + ], + [ + 77.5162244758681, + 13.0607122656951 + ], + [ + 77.516445232644699, + 13.060655510985001 + ], + [ + 77.516484719860301, + 13.060645358998 + ], + [ + 77.516511155407997, + 13.060639454856201 + ], + [ + 77.516876172507295, + 13.0605670102227 + ], + [ + 77.517076149507602, + 13.060521018139401 + ], + [ + 77.517369796769799, + 13.0604537853094 + ], + [ + 77.517759787704193, + 13.060344957130299 + ], + [ + 77.517818372122903, + 13.0603285755545 + ], + [ + 77.518079503573404, + 13.060235683743301 + ], + [ + 77.518203468937799, + 13.060191560754101 + ], + [ + 77.518633574610902, + 13.0599490775513 + ], + [ + 77.5189479754725, + 13.0597133681472 + ], + [ + 77.519215401756199, + 13.0595029619335 + ], + [ + 77.519498334536706, + 13.0593226338107 + ], + [ + 77.519635022893894, + 13.059215308137601 + ], + [ + 77.519746398592304, + 13.0591586077821 + ], + [ + 77.519919537178197, + 13.059149495224901 + ], + [ + 77.520167611176007, + 13.0591678619466 + ], + [ + 77.520190129500094, + 13.0591732891241 + ], + [ + 77.520382058356503, + 13.0591911824259 + ], + [ + 77.520379695077906, + 13.0591861496132 + ], + [ + 77.520377176110202, + 13.059180785125299 + ], + [ + 77.520535330883604, + 13.059208916691301 + ], + [ + 77.521046583308006, + 13.0581775524108 + ], + [ + 77.520758082280494, + 13.0567161260585 + ], + [ + 77.519912576196404, + 13.0523779160402 + ], + [ + 77.519862963385194, + 13.052171364744799 + ], + [ + 77.519840751527695, + 13.052093022066201 + ], + [ + 77.519819428439803, + 13.051956740715699 + ], + [ + 77.519803516304407, + 13.0518834845846 + ], + [ + 77.519791032904706, + 13.0518260131298 + ], + [ + 77.519725832057006, + 13.051412111546 + ], + [ + 77.519664069186405, + 13.0511822725932 + ], + [ + 77.519417017614302, + 13.0501950789182 + ], + [ + 77.519407335527902, + 13.0501726772107 + ], + [ + 77.519390589758601, + 13.0501572732929 + ], + [ + 77.519386375332303, + 13.050139244784299 + ], + [ + 77.519361214671704, + 13.050043495325101 + ], + [ + 77.519335363700307, + 13.0499364591078 + ], + [ + 77.519203378780603, + 13.049642250446899 + ], + [ + 77.519117331077297, + 13.0494480234746 + ], + [ + 77.5188813090856, + 13.048853016204299 + ], + [ + 77.518702631108596, + 13.0483805409719 + ], + [ + 77.518548358889205, + 13.048471216138401 + ], + [ + 77.5183807981998, + 13.0485891703857 + ], + [ + 77.518332189778107, + 13.048623524071299 + ], + [ + 77.518308173512295, + 13.048640698108301 + ], + [ + 77.518306835448698, + 13.0486390604792 + ], + [ + 77.516686921802503, + 13.049857473183099 + ], + [ + 77.516681795083201, + 13.049859455609299 + ], + [ + 77.516503884637899, + 13.0499326292848 + ], + [ + 77.516331794297201, + 13.050054061803699 + ], + [ + 77.516316153642506, + 13.050054213967799 + ], + [ + 77.5159064167553, + 13.050392790018 + ], + [ + 77.5157685241618, + 13.0504922528833 + ], + [ + 77.514559868328007, + 13.051364063520699 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "90", + "group": "Gunda Anjaneya Devasthana", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "16", + "ward_name": "16 - Rajiv Nagar", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ರಾಜೀವ್ ನಗರ", + "dig_ward_n": "Gunda Anjaneya Devasthana Ward", + "Assembly": "152 - Byatarayanapura", + "Slno": "16" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.582160371889202, + 13.045233748543 + ], + [ + 77.582025095218597, + 13.0453509031503 + ], + [ + 77.581547764549001, + 13.045764289013 + ], + [ + 77.5813221072505, + 13.0459597165909 + ], + [ + 77.581132786931093, + 13.046105301956 + ], + [ + 77.580851793592501, + 13.0463213837374 + ], + [ + 77.580851137211496, + 13.046321888983799 + ], + [ + 77.580849127817999, + 13.046323433131301 + ], + [ + 77.580813613484693, + 13.0463507433324 + ], + [ + 77.580771164115006, + 13.0463833861486 + ], + [ + 77.580435236477797, + 13.0466417093219 + ], + [ + 77.580011180051699, + 13.0469678017822 + ], + [ + 77.579991963736504, + 13.046982578558801 + ], + [ + 77.579589837155396, + 13.047267600966901 + ], + [ + 77.579554022433399, + 13.047292986095799 + ], + [ + 77.579302457058503, + 13.047415200295699 + ], + [ + 77.579118124328403, + 13.0474776445408 + ], + [ + 77.578852508733505, + 13.0475676245694 + ], + [ + 77.578469693806994, + 13.0476403279413 + ], + [ + 77.578362545340994, + 13.047645083780401 + ], + [ + 77.578325928380906, + 13.0476467090469 + ], + [ + 77.5783156695543, + 13.0476471645426 + ], + [ + 77.578240002166794, + 13.0476505224277 + ], + [ + 77.577994517000107, + 13.047637158783299 + ], + [ + 77.577347145941999, + 13.0475792393388 + ], + [ + 77.576997129721804, + 13.0475438296235 + ], + [ + 77.5768238784337, + 13.047526302224499 + ], + [ + 77.576259799598802, + 13.0474692351711 + ], + [ + 77.575973284547501, + 13.0474436399094 + ], + [ + 77.575966163127404, + 13.047443003427899 + ], + [ + 77.575957732899894, + 13.0474422498833 + ], + [ + 77.5760097398217, + 13.0484685636458 + ], + [ + 77.576009805790903, + 13.048469861235199 + ], + [ + 77.575954525402295, + 13.0488000163786 + ], + [ + 77.575752312232794, + 13.049596851523701 + ], + [ + 77.575745760395705, + 13.049604680049701 + ], + [ + 77.575726329497598, + 13.049607953385999 + ], + [ + 77.575154612857901, + 13.0502911269433 + ], + [ + 77.575142310123695, + 13.050305827387801 + ], + [ + 77.5748385395311, + 13.050879896266199 + ], + [ + 77.574750271805598, + 13.051397093521899 + ], + [ + 77.574791200626805, + 13.0519588993859 + ], + [ + 77.574903054796195, + 13.0525888413085 + ], + [ + 77.575251311173602, + 13.0534800192898 + ], + [ + 77.575460405727995, + 13.0539721627192 + ], + [ + 77.576129038378099, + 13.055199017081399 + ], + [ + 77.576695846229498, + 13.056886137004501 + ], + [ + 77.576822692333096, + 13.0573390477921 + ], + [ + 77.578955569079397, + 13.0563780561745 + ], + [ + 77.579268434551594, + 13.0570731578071 + ], + [ + 77.579578530891993, + 13.057750531859201 + ], + [ + 77.579791966542302, + 13.058195162861001 + ], + [ + 77.580703456716293, + 13.057846917439299 + ], + [ + 77.581633799073003, + 13.057463696693601 + ], + [ + 77.581969523792694, + 13.0583957304205 + ], + [ + 77.583867268779699, + 13.058142863062301 + ], + [ + 77.5840282197493, + 13.0585739815132 + ], + [ + 77.585103066102207, + 13.058371912785899 + ], + [ + 77.585177495113996, + 13.059131347612199 + ], + [ + 77.585342880271497, + 13.0604268531029 + ], + [ + 77.585477541642803, + 13.0608653807524 + ], + [ + 77.585174015964895, + 13.0611053843047 + ], + [ + 77.585895474409199, + 13.062077732157199 + ], + [ + 77.585523806004701, + 13.0623510822179 + ], + [ + 77.585703899543105, + 13.0626161096452 + ], + [ + 77.585283080080401, + 13.062896243637001 + ], + [ + 77.5856708447877, + 13.063410718858799 + ], + [ + 77.587109367724693, + 13.062316189552099 + ], + [ + 77.587242382989203, + 13.0615943690431 + ], + [ + 77.587256641444, + 13.0615184209344 + ], + [ + 77.587292892037595, + 13.061417699861501 + ], + [ + 77.587996851607897, + 13.0609633657564 + ], + [ + 77.588343152995904, + 13.060703686611699 + ], + [ + 77.589076889016496, + 13.0601800440602 + ], + [ + 77.589935111592993, + 13.0595574979096 + ], + [ + 77.590002190574694, + 13.060129648079499 + ], + [ + 77.590011189584203, + 13.0602128946944 + ], + [ + 77.590954397806101, + 13.059434387526601 + ], + [ + 77.591316714191706, + 13.0591556118498 + ], + [ + 77.591753331145597, + 13.0589685993433 + ], + [ + 77.592038829499202, + 13.058876665537801 + ], + [ + 77.592951537507602, + 13.058714331857701 + ], + [ + 77.593449420081697, + 13.0585953376468 + ], + [ + 77.593448187231701, + 13.0584288402647 + ], + [ + 77.593449487696802, + 13.058102504534901 + ], + [ + 77.593451031264493, + 13.057715143247 + ], + [ + 77.593470459690707, + 13.0574699994211 + ], + [ + 77.593484619739399, + 13.0572913232388 + ], + [ + 77.593490212849105, + 13.0572201219771 + ], + [ + 77.593486682312303, + 13.0569828876486 + ], + [ + 77.5934865991522, + 13.0569773043791 + ], + [ + 77.593482597147997, + 13.0567084041166 + ], + [ + 77.593481012959401, + 13.056601921816499 + ], + [ + 77.593480851389899, + 13.0565910334862 + ], + [ + 77.593479287110696, + 13.0564859278134 + ], + [ + 77.593478635820205, + 13.0564421586222 + ], + [ + 77.593478395223102, + 13.0564263473883 + ], + [ + 77.593472364081506, + 13.0560303005884 + ], + [ + 77.593471991985297, + 13.056005862911499 + ], + [ + 77.593471311568194, + 13.055961155346401 + ], + [ + 77.593470181759002, + 13.055908089232799 + ], + [ + 77.593467932362799, + 13.0548427322646 + ], + [ + 77.593479652376104, + 13.0543451957495 + ], + [ + 77.593460264979896, + 13.053809297179299 + ], + [ + 77.593403595461993, + 13.0522428297178 + ], + [ + 77.592747599340598, + 13.0499829967656 + ], + [ + 77.5927868503897, + 13.049600620781799 + ], + [ + 77.592756657055702, + 13.0496110581445 + ], + [ + 77.592146788605405, + 13.048188771228499 + ], + [ + 77.592161155396894, + 13.0481855854041 + ], + [ + 77.592100456721198, + 13.0479574799472 + ], + [ + 77.592022092470501, + 13.047662988408 + ], + [ + 77.591092259354397, + 13.045866567897299 + ], + [ + 77.5908774583867, + 13.045426037026401 + ], + [ + 77.590749032148196, + 13.0444312882905 + ], + [ + 77.590691323981702, + 13.0438672204945 + ], + [ + 77.590624240109605, + 13.0435641127832 + ], + [ + 77.590539165027295, + 13.0434136394744 + ], + [ + 77.590483339952897, + 13.043085574537599 + ], + [ + 77.589468977622204, + 13.042796755662399 + ], + [ + 77.589426543737204, + 13.0427846731458 + ], + [ + 77.588958403394301, + 13.042651377511699 + ], + [ + 77.588559112625404, + 13.042578580050501 + ], + [ + 77.588525141786505, + 13.042578919861199 + ], + [ + 77.588403056830401, + 13.0425801410417 + ], + [ + 77.5875362894094, + 13.0427275119941 + ], + [ + 77.587429178827307, + 13.042745722966799 + ], + [ + 77.586964446643407, + 13.0428387244097 + ], + [ + 77.586475755911394, + 13.0429365187694 + ], + [ + 77.586419394658606, + 13.0429477977613 + ], + [ + 77.586039906506898, + 13.043023266395901 + ], + [ + 77.585882835419, + 13.043054503097199 + ], + [ + 77.5856779946252, + 13.043095239661 + ], + [ + 77.585540255001803, + 13.043140494056599 + ], + [ + 77.585497198096505, + 13.0431546402401 + ], + [ + 77.585219609587696, + 13.0432658260428 + ], + [ + 77.585048790129903, + 13.043343195403599 + ], + [ + 77.584794493640302, + 13.0434789926418 + ], + [ + 77.584340771868597, + 13.0437703116134 + ], + [ + 77.583960814664493, + 13.044014266942099 + ], + [ + 77.583922609099602, + 13.044038797352099 + ], + [ + 77.583743313343604, + 13.0441569252175 + ], + [ + 77.583171717720404, + 13.0445335161009 + ], + [ + 77.583148112567699, + 13.0445490677461 + ], + [ + 77.583122259196799, + 13.0445660566182 + ], + [ + 77.582804329558499, + 13.0447749713053 + ], + [ + 77.582369981551096, + 13.045042433168501 + ], + [ + 77.582174301035906, + 13.0452216868502 + ], + [ + 77.582160371889202, + 13.045233748543 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "91", + "group": "Doddanna Nagar", + "Corporatio": "North", + "ac_no": "159", + "ac": "Pulakeshinagar", + "corporat_1": "2", + "ward_id": "70", + "ward_name": "70 - Doddanna Nagar", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಪುಲಕೇಶಿನಗರ", + "ward_name_": "ದೊಡ್ಡಣ್ಣ ನಗರ", + "dig_ward_n": "Doddanna Nagar", + "Assembly": "159 - Pulakeshinagar", + "Slno": "70" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.606695624375604, + 13.0101704008637 + ], + [ + 77.606693372488905, + 13.0103254284065 + ], + [ + 77.606753353687296, + 13.010484852013199 + ], + [ + 77.607126491005502, + 13.011345814707401 + ], + [ + 77.607121908422002, + 13.011348119334199 + ], + [ + 77.607115609824504, + 13.011350641771299 + ], + [ + 77.6070963910865, + 13.011358339710799 + ], + [ + 77.607088649272697, + 13.0113614403918 + ], + [ + 77.607076406238505, + 13.011366344383701 + ], + [ + 77.607055390119001, + 13.011374761445699 + ], + [ + 77.606681822506999, + 13.0115417886676 + ], + [ + 77.606606465608394, + 13.011596801023501 + ], + [ + 77.606463664125698, + 13.011652441709501 + ], + [ + 77.606388998928594, + 13.0116810871379 + ], + [ + 77.606351824617903, + 13.0116953490801 + ], + [ + 77.606258864459704, + 13.0117304363581 + ], + [ + 77.606112070946097, + 13.0117858423536 + ], + [ + 77.605723703948499, + 13.011964035833699 + ], + [ + 77.605722891990794, + 13.011964363804299 + ], + [ + 77.605565342088696, + 13.012015690345899 + ], + [ + 77.605562015350202, + 13.0120170337359 + ], + [ + 77.605443682123493, + 13.012076520328799 + ], + [ + 77.605374907463002, + 13.0121077018684 + ], + [ + 77.605288410845205, + 13.0121608707079 + ], + [ + 77.605216240461701, + 13.0121977327347 + ], + [ + 77.605140039612806, + 13.012234635233 + ], + [ + 77.605085036327097, + 13.012261161242201 + ], + [ + 77.604982234370198, + 13.012290130493 + ], + [ + 77.604978791502006, + 13.0122912943581 + ], + [ + 77.604870136700896, + 13.012307610704401 + ], + [ + 77.604836741600707, + 13.0123079461386 + ], + [ + 77.604742947881107, + 13.0123120241264 + ], + [ + 77.604630463384098, + 13.0123004698277 + ], + [ + 77.604595047619597, + 13.0123002608841 + ], + [ + 77.604559630932997, + 13.0123000519449 + ], + [ + 77.6044784351609, + 13.0123052188603 + ], + [ + 77.604317817652301, + 13.012343288699601 + ], + [ + 77.604229572862195, + 13.01237271642 + ], + [ + 77.604152659146195, + 13.012382029583801 + ], + [ + 77.604034954825394, + 13.012414831429499 + ], + [ + 77.6038684503404, + 13.0124737872369 + ], + [ + 77.603788409082298, + 13.012545246064599 + ], + [ + 77.603752941109306, + 13.012626754194899 + ], + [ + 77.603697575679007, + 13.0127383966549 + ], + [ + 77.603673560028597, + 13.012809782599801 + ], + [ + 77.603664009602696, + 13.012887799008199 + ], + [ + 77.603662700319603, + 13.012900234265601 + ], + [ + 77.603729545621604, + 13.0136355400253 + ], + [ + 77.603760492652199, + 13.013797771017099 + ], + [ + 77.603888269603402, + 13.014508700224599 + ], + [ + 77.604395299420702, + 13.0144543270538 + ], + [ + 77.604516959390196, + 13.0150204876942 + ], + [ + 77.604575410548804, + 13.015214192115 + ], + [ + 77.604734452073203, + 13.0152046768101 + ], + [ + 77.604864947682998, + 13.0152033174809 + ], + [ + 77.605135825608301, + 13.015156752220699 + ], + [ + 77.605151766158698, + 13.0151516629687 + ], + [ + 77.605279543110001, + 13.0151401086699 + ], + [ + 77.605520824055205, + 13.015130593365001 + ], + [ + 77.605701680135198, + 13.015157877666599 + ], + [ + 77.605759609891095, + 13.0151988643159 + ], + [ + 77.605761528070303, + 13.015198769150601 + ], + [ + 77.605990833792205, + 13.014548163426101 + ], + [ + 77.606505984783595, + 13.014462885030101 + ], + [ + 77.606557639284404, + 13.014649792810401 + ], + [ + 77.607426604623598, + 13.014421297215 + ], + [ + 77.607194838049296, + 13.0135065347213 + ], + [ + 77.607506124451803, + 13.013370601794399 + ], + [ + 77.607201634695599, + 13.012614814720999 + ], + [ + 77.607558245369702, + 13.0124303161905 + ], + [ + 77.607967491212406, + 13.012265935777 + ], + [ + 77.608034563705004, + 13.0122158515807 + ], + [ + 77.608492827584698, + 13.012021807327599 + ], + [ + 77.608396145290399, + 13.011701855201 + ], + [ + 77.608339904929196, + 13.0116009112827 + ], + [ + 77.608279882205593, + 13.011558622545699 + ], + [ + 77.608156903339193, + 13.011228808615501 + ], + [ + 77.608928858996904, + 13.0110451345579 + ], + [ + 77.609506710044599, + 13.0109754150775 + ], + [ + 77.609523565552195, + 13.0110845551067 + ], + [ + 77.609617359271894, + 13.011270783216601 + ], + [ + 77.609795431406198, + 13.0115521643754 + ], + [ + 77.609937454765202, + 13.011699986123199 + ], + [ + 77.609795431406198, + 13.0115521643754 + ], + [ + 77.609617359271894, + 13.011270783216601 + ], + [ + 77.609523565552195, + 13.0110845551067 + ], + [ + 77.609506710044599, + 13.0109754150775 + ], + [ + 77.6095114075396, + 13.0109290674042 + ], + [ + 77.609553914529997, + 13.010801941254099 + ], + [ + 77.609615051622299, + 13.0105912803682 + ], + [ + 77.609649464703807, + 13.0105231774243 + ], + [ + 77.609686133588198, + 13.010450534668999 + ], + [ + 77.609714524765195, + 13.010375999415601 + ], + [ + 77.610676956437203, + 13.010157492545201 + ], + [ + 77.610917531167999, + 13.010090200436901 + ], + [ + 77.6109606898723, + 13.0102380274948 + ], + [ + 77.611010062893797, + 13.010224907868301 + ], + [ + 77.611261238169206, + 13.010179805094101 + ], + [ + 77.611617282052293, + 13.0101647994132 + ], + [ + 77.611830268688394, + 13.010102231407901 + ], + [ + 77.611789049605306, + 13.0099410762429 + ], + [ + 77.611864617924297, + 13.009922470406799 + ], + [ + 77.611737525751494, + 13.0092446454855 + ], + [ + 77.612028921769195, + 13.009198846504299 + ], + [ + 77.612403614683899, + 13.0091244231599 + ], + [ + 77.612674401160007, + 13.0090219479395 + ], + [ + 77.612680412276404, + 13.008989316165399 + ], + [ + 77.613188017390598, + 13.008819883441801 + ], + [ + 77.613185346043906, + 13.0085158691976 + ], + [ + 77.612254481751805, + 13.0086515486793 + ], + [ + 77.6121457091715, + 13.0081969937912 + ], + [ + 77.612879637844799, + 13.0078970104645 + ], + [ + 77.612509811071902, + 13.0068470688212 + ], + [ + 77.612383863873504, + 13.006122299944099 + ], + [ + 77.612375704256394, + 13.005745406250099 + ], + [ + 77.612357703079397, + 13.0050970637843 + ], + [ + 77.612348590201407, + 13.0049966499361 + ], + [ + 77.612332316398593, + 13.0048172588328 + ], + [ + 77.6123290829251, + 13.004783413094501 + ], + [ + 77.612312115196801, + 13.0045927362043 + ], + [ + 77.612308199574997, + 13.0045487338438 + ], + [ + 77.612299098602705, + 13.0044494491399 + ], + [ + 77.612285656437294, + 13.0042655124017 + ], + [ + 77.6122776360844, + 13.004159441154 + ], + [ + 77.612273602269696, + 13.0041041472142 + ], + [ + 77.612263535484203, + 13.003967606098501 + ], + [ + 77.612258371830706, + 13.003897496581599 + ], + [ + 77.612254809381298, + 13.0038491199075 + ], + [ + 77.612254079944194, + 13.003834446655601 + ], + [ + 77.612228969171198, + 13.0036359467649 + ], + [ + 77.612221244447696, + 13.003558104442201 + ], + [ + 77.612212250014096, + 13.0034689821335 + ], + [ + 77.612185818900997, + 13.003199351084101 + ], + [ + 77.612177033830207, + 13.003075219083801 + ], + [ + 77.612140541311803, + 13.0025595069609 + ], + [ + 77.612102210391896, + 13.001758106262001 + ], + [ + 77.612150117468701, + 13.00160404244 + ], + [ + 77.611718800212898, + 13.0014356038382 + ], + [ + 77.611233052648899, + 13.0011830162289 + ], + [ + 77.610901786842007, + 13.001001147332699 + ], + [ + 77.610611805102394, + 13.0008141233216 + ], + [ + 77.610570766494405, + 13.000787655667301 + ], + [ + 77.610429787032402, + 13.0006726831314 + ], + [ + 77.610019491470496, + 13.0008182054372 + ], + [ + 77.609204095733404, + 13.001535168744599 + ], + [ + 77.609225922178396, + 13.0016443009693 + ], + [ + 77.609339949087399, + 13.001980927071701 + ], + [ + 77.608894819735298, + 13.002698662924599 + ], + [ + 77.6087319676123, + 13.0027640896497 + ], + [ + 77.608633348248105, + 13.002839538117801 + ], + [ + 77.608860777246903, + 13.003690946531201 + ], + [ + 77.608290579931307, + 13.0038964694592 + ], + [ + 77.608506407630003, + 13.004375068812401 + ], + [ + 77.608150320551403, + 13.004539372657399 + ], + [ + 77.608459463674293, + 13.005100982664 + ], + [ + 77.605237182583707, + 13.0066705371102 + ], + [ + 77.606150178841702, + 13.0094903685494 + ], + [ + 77.606569234583105, + 13.0094994338807 + ], + [ + 77.607414029894102, + 13.0094309257415 + ], + [ + 77.6074866273471, + 13.010044412927799 + ], + [ + 77.606695624375604, + 13.0101704008637 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "94", + "group": "Nagavara", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "40", + "ward_name": "40 - Nagavara", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ನಾಗವಾರ", + "dig_ward_n": "Nagavara", + "Assembly": "160 - Sarvagnanagar", + "Slno": "40" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.618527240936601, + 13.033173772781799 + ], + [ + 77.616328603072603, + 13.0337618310847 + ], + [ + 77.616048531561702, + 13.0338390924601 + ], + [ + 77.615798661905799, + 13.033908022498601 + ], + [ + 77.615609067629407, + 13.0339603240544 + ], + [ + 77.615288478854595, + 13.0340421002856 + ], + [ + 77.614787830325795, + 13.0341828355864 + ], + [ + 77.614485595499701, + 13.034300499526299 + ], + [ + 77.614287470089593, + 13.0337310233946 + ], + [ + 77.6140083303994, + 13.0331243467904 + ], + [ + 77.614006988677403, + 13.033138141277901 + ], + [ + 77.613136421515094, + 13.0334366481788 + ], + [ + 77.613363763453904, + 13.034052946218299 + ], + [ + 77.613368031325393, + 13.034075488614199 + ], + [ + 77.613372230241595, + 13.034099273906699 + ], + [ + 77.613375072289202, + 13.0341153721517 + ], + [ + 77.613380604562295, + 13.0341467110223 + ], + [ + 77.613399871051499, + 13.034255851923101 + ], + [ + 77.613402339395904, + 13.034271635935401 + ], + [ + 77.613486061693095, + 13.034558634524901 + ], + [ + 77.613510050615403, + 13.0347986177475 + ], + [ + 77.613518878100606, + 13.034886922742499 + ], + [ + 77.613530353264693, + 13.034937624212199 + ], + [ + 77.613531059512098, + 13.0349408251229 + ], + [ + 77.613548493593498, + 13.0350198780539 + ], + [ + 77.613622134123304, + 13.0354516463549 + ], + [ + 77.613638558007096, + 13.035535046776401 + ], + [ + 77.613707083748807, + 13.035845506492 + ], + [ + 77.612886722787493, + 13.036006532250999 + ], + [ + 77.612773025545494, + 13.0359885800549 + ], + [ + 77.612660960321406, + 13.035990212072701 + ], + [ + 77.611933902998103, + 13.036198118949899 + ], + [ + 77.610702130737494, + 13.036412065676799 + ], + [ + 77.610619813021799, + 13.0367489835659 + ], + [ + 77.610615920710401, + 13.0367655653495 + ], + [ + 77.610404154733203, + 13.037667790454799 + ], + [ + 77.610397965678601, + 13.037694160473 + ], + [ + 77.610396461857405, + 13.037700568241601 + ], + [ + 77.610295674317001, + 13.0381299685675 + ], + [ + 77.610287229654801, + 13.0381688185989 + ], + [ + 77.610279191973007, + 13.038205796252701 + ], + [ + 77.610314875552604, + 13.0382585123781 + ], + [ + 77.610334904069504, + 13.0383012228846 + ], + [ + 77.610420830395896, + 13.0384765224657 + ], + [ + 77.610559118821598, + 13.038758576889601 + ], + [ + 77.610674470665501, + 13.0389945613252 + ], + [ + 77.610762729997504, + 13.039173225897599 + ], + [ + 77.610869743280901, + 13.0393279864631 + ], + [ + 77.611141079316596, + 13.039720495582699 + ], + [ + 77.611231941072901, + 13.0398178258332 + ], + [ + 77.611293127009404, + 13.039886094297399 + ], + [ + 77.611355280844705, + 13.0399916190434 + ], + [ + 77.611488363758795, + 13.040325670855401 + ], + [ + 77.611497238400403, + 13.040348166801399 + ], + [ + 77.611616793893106, + 13.040655252380599 + ], + [ + 77.611730980722896, + 13.0411091976977 + ], + [ + 77.611752024248005, + 13.041193680911199 + ], + [ + 77.611834701339205, + 13.0416084194782 + ], + [ + 77.611967965207398, + 13.042343361234099 + ], + [ + 77.612000993440304, + 13.0425270995395 + ], + [ + 77.613131246577097, + 13.042284187576399 + ], + [ + 77.613553458988093, + 13.042181677014399 + ], + [ + 77.613608597509696, + 13.0421675688628 + ], + [ + 77.613868213867903, + 13.042101707416199 + ], + [ + 77.614081662163699, + 13.0419719435725 + ], + [ + 77.614404033535095, + 13.0417947790528 + ], + [ + 77.614541250418299, + 13.041699663197299 + ], + [ + 77.614726030316007, + 13.0416368156183 + ], + [ + 77.614856295146396, + 13.041592587105001 + ], + [ + 77.615320755353494, + 13.0414456579175 + ], + [ + 77.615380375235901, + 13.0414267973427 + ], + [ + 77.615612243192402, + 13.041353447204701 + ], + [ + 77.615943523061304, + 13.0412021642898 + ], + [ + 77.6168283434817, + 13.041005760102699 + ], + [ + 77.617346597245202, + 13.040890980171 + ], + [ + 77.617648900206007, + 13.0408867934571 + ], + [ + 77.618077667998094, + 13.040915205170901 + ], + [ + 77.618235625742301, + 13.040930546242601 + ], + [ + 77.618418557506303, + 13.0409489780816 + ], + [ + 77.618480066074397, + 13.0409551756455 + ], + [ + 77.619062459289907, + 13.040642121495001 + ], + [ + 77.619369307253805, + 13.0405227014712 + ], + [ + 77.619384208600707, + 13.0405157768544 + ], + [ + 77.619642673175306, + 13.0403957160621 + ], + [ + 77.619756153565504, + 13.040343749452999 + ], + [ + 77.619970379550196, + 13.040178966371901 + ], + [ + 77.620246136285999, + 13.040005655368899 + ], + [ + 77.620052701480503, + 13.039136948173301 + ], + [ + 77.620340522592201, + 13.039125000414501 + ], + [ + 77.620762993201097, + 13.0391026548848 + ], + [ + 77.620776004413401, + 13.0390257329751 + ], + [ + 77.620790350633499, + 13.0389115317316 + ], + [ + 77.620837557859304, + 13.0389099244797 + ], + [ + 77.621391961486793, + 13.0387834788269 + ], + [ + 77.621247234558197, + 13.0378321480765 + ], + [ + 77.6224123382773, + 13.037608355877 + ], + [ + 77.622300133616605, + 13.0370788359646 + ], + [ + 77.622237572933201, + 13.0370810119884 + ], + [ + 77.622153939036593, + 13.0367777868892 + ], + [ + 77.622094227367299, + 13.0367004798316 + ], + [ + 77.622018394792306, + 13.0365488036336 + ], + [ + 77.621708084989805, + 13.036177931509201 + ], + [ + 77.621579462153505, + 13.0360677657615 + ], + [ + 77.621704047501694, + 13.035977787454501 + ], + [ + 77.622340240275093, + 13.0358197486332 + ], + [ + 77.622772330774694, + 13.035734597280699 + ], + [ + 77.622796476434203, + 13.0358180182811 + ], + [ + 77.6230871754681, + 13.0357418828529 + ], + [ + 77.622971241992204, + 13.0351645219872 + ], + [ + 77.622904257955099, + 13.034768923379801 + ], + [ + 77.622656131092597, + 13.0341897917226 + ], + [ + 77.622691000489993, + 13.034166050979801 + ], + [ + 77.622676249214507, + 13.034125260439399 + ], + [ + 77.622641242149399, + 13.0340284602037 + ], + [ + 77.622616875996897, + 13.033961085648899 + ], + [ + 77.6225953750522, + 13.0339016321019 + ], + [ + 77.622559000483903, + 13.033801051358999 + ], + [ + 77.622555511380398, + 13.0337914572199 + ], + [ + 77.622419000667094, + 13.033416050644 + ], + [ + 77.622401364501698, + 13.033371929493599 + ], + [ + 77.622389643030004, + 13.033342605971299 + ], + [ + 77.622308110423205, + 13.033138631536801 + ], + [ + 77.622183147396797, + 13.032826005182701 + ], + [ + 77.622133999997402, + 13.032703050533801 + ], + [ + 77.622096541693494, + 13.0326187700711 + ], + [ + 77.622068056781899, + 13.0325546785591 + ], + [ + 77.622048082807495, + 13.0325097363402 + ], + [ + 77.621861868828304, + 13.0320918654891 + ], + [ + 77.621831472497107, + 13.0320296448095 + ], + [ + 77.621658230373697, + 13.032095739960999 + ], + [ + 77.620349012796098, + 13.032597860688901 + ], + [ + 77.620315608174394, + 13.032609155314301 + ], + [ + 77.620244564451895, + 13.032633175045101 + ], + [ + 77.620238457912293, + 13.032635239704 + ], + [ + 77.619540073150006, + 13.032871367113801 + ], + [ + 77.619367935072106, + 13.032920771670801 + ], + [ + 77.619043794189196, + 13.033013800947799 + ], + [ + 77.618789030156194, + 13.033086918925299 + ], + [ + 77.618751852999495, + 13.033099253412599 + ], + [ + 77.618527240936601, + 13.033173772781799 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "92", + "group": "Varalakshmi nagar", + "Corporatio": "North", + "ac_no": "159", + "ac": "Pulakeshinagar", + "corporat_1": "2", + "ward_id": "51", + "ward_name": "51 - Varalakshmi Nagar", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಪುಲಕೇಶಿನಗರ", + "ward_name_": "ವರಲಕ್ಷ್ಮಿ ನಗರ", + "dig_ward_n": "Varalakshmi nagar", + "Assembly": "159 - Pulakeshinagar", + "Slno": "51" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.601302723638199, + 13.0085948585381 + ], + [ + 77.600984398383105, + 13.008750316132801 + ], + [ + 77.600736112135493, + 13.0088715684579 + ], + [ + 77.599902261352597, + 13.009309056110199 + ], + [ + 77.598934240069397, + 13.0097467566841 + ], + [ + 77.598868661547101, + 13.009778347184 + ], + [ + 77.5983155331907, + 13.0100447983266 + ], + [ + 77.598156161368806, + 13.01012157011 + ], + [ + 77.597838311415899, + 13.0102885005461 + ], + [ + 77.597249106899199, + 13.0106083434165 + ], + [ + 77.597000749451993, + 13.0107372256918 + ], + [ + 77.596860787663005, + 13.0108098571885 + ], + [ + 77.596817169650294, + 13.0108238453723 + ], + [ + 77.596775278965097, + 13.0108378162554 + ], + [ + 77.596241639316503, + 13.0110193276885 + ], + [ + 77.595768056050503, + 13.011217176428101 + ], + [ + 77.595773020132796, + 13.011229379986499 + ], + [ + 77.595634351031904, + 13.011285002636701 + ], + [ + 77.595391449624799, + 13.011382433867899 + ], + [ + 77.595562433834004, + 13.0118211456581 + ], + [ + 77.595571815582005, + 13.0118482893234 + ], + [ + 77.595573714527106, + 13.011853782154599 + ], + [ + 77.595690058632698, + 13.0121880166824 + ], + [ + 77.595792819230496, + 13.012489637671299 + ], + [ + 77.595798531711907, + 13.0125048719723 + ], + [ + 77.595851455706594, + 13.0126460219445 + ], + [ + 77.595933945976, + 13.01277054731 + ], + [ + 77.596101276945504, + 13.0130240915407 + ], + [ + 77.596275764614703, + 13.0133012790116 + ], + [ + 77.596283955851305, + 13.013313619178099 + ], + [ + 77.596457054204606, + 13.013579712676 + ], + [ + 77.596543789388605, + 13.013713044331899 + ], + [ + 77.596622802188804, + 13.013835345588999 + ], + [ + 77.596777537989396, + 13.0140957909697 + ], + [ + 77.596925826683901, + 13.014314061771101 + ], + [ + 77.596978713424505, + 13.014391908307999 + ], + [ + 77.5971754477752, + 13.014703879915301 + ], + [ + 77.597200136658699, + 13.0147521920026 + ], + [ + 77.5973722440648, + 13.0150836449699 + ], + [ + 77.597400856909402, + 13.015138748551101 + ], + [ + 77.597500473438998, + 13.015330580552099 + ], + [ + 77.597519812141499, + 13.0153678394135 + ], + [ + 77.597544941162695, + 13.0154105403454 + ], + [ + 77.597581731, + 13.015473057730601 + ], + [ + 77.597644678858799, + 13.015580023788299 + ], + [ + 77.597679709393006, + 13.0156813086978 + ], + [ + 77.597684790801594, + 13.015722079272701 + ], + [ + 77.597690392090797, + 13.0157670275194 + ], + [ + 77.597667703205801, + 13.0159544238654 + ], + [ + 77.597652747002797, + 13.016077958769699 + ], + [ + 77.597665062966598, + 13.016154626924299 + ], + [ + 77.597680093148398, + 13.0162154578562 + ], + [ + 77.597731506017695, + 13.016312713718101 + ], + [ + 77.597792766154498, + 13.0164285962839 + ], + [ + 77.597843399005498, + 13.0165243755871 + ], + [ + 77.597848111245796, + 13.016534491954999 + ], + [ + 77.598119083473804, + 13.0171178765804 + ], + [ + 77.598140353413797, + 13.0171696106209 + ], + [ + 77.598233647395503, + 13.0173911451521 + ], + [ + 77.598329315376404, + 13.0176194315438 + ], + [ + 77.598360033544196, + 13.0176936565862 + ], + [ + 77.598447627865099, + 13.0178655594747 + ], + [ + 77.598460566086104, + 13.0178914033817 + ], + [ + 77.598584988915704, + 13.0181160135034 + ], + [ + 77.598644274360097, + 13.0182238307112 + ], + [ + 77.598739929097405, + 13.018340317583601 + ], + [ + 77.598809931053495, + 13.018426570852499 + ], + [ + 77.599017068810596, + 13.018631153506799 + ], + [ + 77.599169399113805, + 13.018770786904099 + ], + [ + 77.599191344257306, + 13.0187989670478 + ], + [ + 77.599210603572999, + 13.018823697726001 + ], + [ + 77.599257533648597, + 13.0188839610478 + ], + [ + 77.599374272226498, + 13.0190894497531 + ], + [ + 77.5995237974237, + 13.019346556706299 + ], + [ + 77.599637128826998, + 13.0195565965226 + ], + [ + 77.599740705811001, + 13.019714786951599 + ], + [ + 77.599766171892099, + 13.019782288661199 + ], + [ + 77.599797443084796, + 13.019854249280799 + ], + [ + 77.599830691995507, + 13.020060575031801 + ], + [ + 77.599842340467106, + 13.020183550309801 + ], + [ + 77.5998771843539, + 13.0202667679228 + ], + [ + 77.600008261834503, + 13.020521800837599 + ], + [ + 77.6000294265273, + 13.0205633720779 + ], + [ + 77.6001190216883, + 13.020761227472001 + ], + [ + 77.600189767231498, + 13.020918617652899 + ], + [ + 77.600207453633701, + 13.0209579651923 + ], + [ + 77.600362402244699, + 13.0213482724941 + ], + [ + 77.600541827722907, + 13.021854649426899 + ], + [ + 77.600611604555894, + 13.022051574968801 + ], + [ + 77.600942721490796, + 13.022988945932401 + ], + [ + 77.600943908464501, + 13.022992321872101 + ], + [ + 77.600859831097296, + 13.0230473713954 + ], + [ + 77.6006582560032, + 13.023155547218501 + ], + [ + 77.600638784733505, + 13.023165906192901 + ], + [ + 77.600363765685003, + 13.023299663159399 + ], + [ + 77.600234845969695, + 13.0233619382182 + ], + [ + 77.600091554614494, + 13.023426615999099 + ], + [ + 77.599904114684094, + 13.0235098052373 + ], + [ + 77.599931719637198, + 13.023561475385099 + ], + [ + 77.600046417712605, + 13.0237918279827 + ], + [ + 77.600146638361196, + 13.024014420769401 + ], + [ + 77.600325421792604, + 13.0244259449282 + ], + [ + 77.600432200892996, + 13.024669928095699 + ], + [ + 77.600453132179993, + 13.024744250813599 + ], + [ + 77.600476732405994, + 13.024856226903999 + ], + [ + 77.600482820304293, + 13.0248851134338 + ], + [ + 77.600496055751805, + 13.0249945212048 + ], + [ + 77.600505590635095, + 13.025135586083399 + ], + [ + 77.600502007935305, + 13.0251785348576 + ], + [ + 77.600498413447099, + 13.025220354465599 + ], + [ + 77.600479462550197, + 13.025335731703899 + ], + [ + 77.600431302247401, + 13.025576752708201 + ], + [ + 77.600428012426406, + 13.0255925957127 + ], + [ + 77.600435769099505, + 13.0256184914067 + ], + [ + 77.600433738834397, + 13.025699820278 + ], + [ + 77.600449372136794, + 13.0257658358319 + ], + [ + 77.600471089545096, + 13.025857545232 + ], + [ + 77.6004963563486, + 13.025905850859401 + ], + [ + 77.600610396168094, + 13.0260729695649 + ], + [ + 77.600618190960105, + 13.0260904223335 + ], + [ + 77.600651097643706, + 13.0261641053176 + ], + [ + 77.600661106748504, + 13.026186518258999 + ], + [ + 77.600670661651804, + 13.026219171592899 + ], + [ + 77.600670022660907, + 13.026222039162199 + ], + [ + 77.6006646106907, + 13.0262463351596 + ], + [ + 77.600662810851006, + 13.0262556549166 + ], + [ + 77.600660240002995, + 13.0262689647217 + ], + [ + 77.600655563982002, + 13.026280795065899 + ], + [ + 77.600651017222802, + 13.0262922979752 + ], + [ + 77.6006509274509, + 13.026292524733201 + ], + [ + 77.600650464256603, + 13.026293697514699 + ], + [ + 77.600647938190306, + 13.0263000893256 + ], + [ + 77.600646843914006, + 13.026302857571 + ], + [ + 77.6006409667919, + 13.0263177264543 + ], + [ + 77.600640499094794, + 13.0263189092187 + ], + [ + 77.600636826683996, + 13.026328200794699 + ], + [ + 77.600632173992494, + 13.0263399712784 + ], + [ + 77.600606322552593, + 13.0264053751325 + ], + [ + 77.600588986527598, + 13.026449236199699 + ], + [ + 77.600578218336096, + 13.026462047386399 + ], + [ + 77.600562979784002, + 13.026480177656699 + ], + [ + 77.600549738874605, + 13.026495930831601 + ], + [ + 77.600494356668804, + 13.026541658131 + ], + [ + 77.600461723992794, + 13.026560054241401 + ], + [ + 77.600320028800198, + 13.026612294301399 + ], + [ + 77.600170446466393, + 13.0266716918114 + ], + [ + 77.600134712628204, + 13.026685881032799 + ], + [ + 77.600086616052494, + 13.026704979783901 + ], + [ + 77.600064689044203, + 13.026756297730801 + ], + [ + 77.600044455627895, + 13.026803650700099 + ], + [ + 77.600000388582004, + 13.026913421293299 + ], + [ + 77.599969805652705, + 13.0269896026212 + ], + [ + 77.599938725283494, + 13.027046378791299 + ], + [ + 77.599929197780995, + 13.0270701866827 + ], + [ + 77.599858591746795, + 13.0272466111154 + ], + [ + 77.599855619437804, + 13.02725403731 + ], + [ + 77.599853417614895, + 13.0272595405047 + ], + [ + 77.599850865276807, + 13.0272692436402 + ], + [ + 77.5998495084376, + 13.027274399569301 + ], + [ + 77.5998488845281, + 13.027276771005299 + ], + [ + 77.599844339033098, + 13.027294048608599 + ], + [ + 77.599786396230598, + 13.027514302244199 + ], + [ + 77.599762567401299, + 13.0276037558053 + ], + [ + 77.599727196658407, + 13.027753806091701 + ], + [ + 77.599712936466204, + 13.027814300003101 + ], + [ + 77.599698472115193, + 13.027863004420601 + ], + [ + 77.600490014830001, + 13.0278349176508 + ], + [ + 77.601159352585199, + 13.0278111652025 + ], + [ + 77.601162957607201, + 13.027811036854001 + ], + [ + 77.601290590368194, + 13.0277951025443 + ], + [ + 77.601448219801199, + 13.0277754239789 + ], + [ + 77.601472380425406, + 13.0277729218777 + ], + [ + 77.601926014009805, + 13.027702867462001 + ], + [ + 77.602195669821, + 13.027661763235701 + ], + [ + 77.602293992468404, + 13.0276472241547 + ], + [ + 77.602501025959597, + 13.027620300089501 + ], + [ + 77.602551936796701, + 13.027611821302701 + ], + [ + 77.602692498515495, + 13.027588412491999 + ], + [ + 77.602775240777405, + 13.0275746323591 + ], + [ + 77.602948865088607, + 13.0275469143427 + ], + [ + 77.603116167192795, + 13.027520389028201 + ], + [ + 77.603286020364706, + 13.0275175529015 + ], + [ + 77.603498117764204, + 13.027479284366301 + ], + [ + 77.603700568826795, + 13.0274546640045 + ], + [ + 77.604036287792098, + 13.027398213299399 + ], + [ + 77.604231075055793, + 13.0273567303582 + ], + [ + 77.604244859136102, + 13.0273532039448 + ], + [ + 77.604264929814406, + 13.027356277092499 + ], + [ + 77.603583665520802, + 13.025146809517301 + ], + [ + 77.603504647057505, + 13.024890533741299 + ], + [ + 77.603464328787894, + 13.024781491339899 + ], + [ + 77.603045384059499, + 13.023700913681299 + ], + [ + 77.602415436340706, + 13.0221263814461 + ], + [ + 77.6024430462342, + 13.022110137023301 + ], + [ + 77.602762065304304, + 13.0219625822693 + ], + [ + 77.603038804518206, + 13.021848686788699 + ], + [ + 77.603049133535393, + 13.021845195192901 + ], + [ + 77.603315198717496, + 13.021750221388601 + ], + [ + 77.603348615883704, + 13.021738292939901 + ], + [ + 77.603674421887504, + 13.0216706508045 + ], + [ + 77.604062644591096, + 13.021601345001899 + ], + [ + 77.604498838229503, + 13.021516782754301 + ], + [ + 77.604712702804804, + 13.021486137360601 + ], + [ + 77.604652892317006, + 13.021331173824001 + ], + [ + 77.604803777865797, + 13.021278159982501 + ], + [ + 77.604622986691695, + 13.020872164405199 + ], + [ + 77.604584742551793, + 13.0200120343327 + ], + [ + 77.6045830280937, + 13.019428761137901 + ], + [ + 77.604655328192607, + 13.019373512949199 + ], + [ + 77.605041383437495, + 13.0193830620188 + ], + [ + 77.6050857184037, + 13.0192688142211 + ], + [ + 77.604943846511503, + 13.018488518814401 + ], + [ + 77.6050613707623, + 13.018468426384199 + ], + [ + 77.605074391946303, + 13.0184682955257 + ], + [ + 77.605397804756294, + 13.018425607512199 + ], + [ + 77.605258473506197, + 13.017409508883899 + ], + [ + 77.605394886821898, + 13.0173111103307 + ], + [ + 77.605495676463605, + 13.0172912472375 + ], + [ + 77.606860481208003, + 13.017155741520201 + ], + [ + 77.606741117837203, + 13.0156074280822 + ], + [ + 77.607514960092303, + 13.015544509127301 + ], + [ + 77.607489472668505, + 13.0152481753467 + ], + [ + 77.607299227042304, + 13.0152622585511 + ], + [ + 77.606801312226295, + 13.015292353548 + ], + [ + 77.606633367122797, + 13.0152947837382 + ], + [ + 77.606568055086996, + 13.015295729435801 + ], + [ + 77.606082227042904, + 13.0153205596303 + ], + [ + 77.605902795579397, + 13.0152940527095 + ], + [ + 77.605761528070303, + 13.015198769150601 + ], + [ + 77.605759609891095, + 13.0151988643159 + ], + [ + 77.605701680135198, + 13.015157877666599 + ], + [ + 77.605520824055205, + 13.015130593365001 + ], + [ + 77.605279543110001, + 13.0151401086699 + ], + [ + 77.605151766158698, + 13.0151516629687 + ], + [ + 77.605135825608301, + 13.015156752220699 + ], + [ + 77.604864947682998, + 13.0152033174809 + ], + [ + 77.604734452073203, + 13.0152046768101 + ], + [ + 77.604575410548804, + 13.015214192115 + ], + [ + 77.604516959390196, + 13.0150204876942 + ], + [ + 77.604395299420702, + 13.0144543270538 + ], + [ + 77.603888269603402, + 13.014508700224599 + ], + [ + 77.603760492652199, + 13.013797771017099 + ], + [ + 77.603729545621604, + 13.0136355400253 + ], + [ + 77.603662700319603, + 13.012900234265601 + ], + [ + 77.603664009602696, + 13.012887799008199 + ], + [ + 77.603673560028597, + 13.012809782599801 + ], + [ + 77.603697575679007, + 13.0127383966549 + ], + [ + 77.603752941109306, + 13.012626754194899 + ], + [ + 77.603788409082298, + 13.012545246064599 + ], + [ + 77.6038684503404, + 13.0124737872369 + ], + [ + 77.604034954825394, + 13.012414831429499 + ], + [ + 77.604152659146195, + 13.012382029583801 + ], + [ + 77.604229572862195, + 13.01237271642 + ], + [ + 77.604317817652301, + 13.012343288699601 + ], + [ + 77.6044784351609, + 13.0123052188603 + ], + [ + 77.604559630932997, + 13.0123000519449 + ], + [ + 77.604595047619597, + 13.0123002608841 + ], + [ + 77.604630463384098, + 13.0123004698277 + ], + [ + 77.604742947881107, + 13.0123120241264 + ], + [ + 77.604836741600707, + 13.0123079461386 + ], + [ + 77.604870136700896, + 13.012307610704401 + ], + [ + 77.604978791502006, + 13.0122912943581 + ], + [ + 77.604982234370198, + 13.012290130493 + ], + [ + 77.605085036327097, + 13.012261161242201 + ], + [ + 77.605140039612806, + 13.012234635233 + ], + [ + 77.605216240461701, + 13.0121977327347 + ], + [ + 77.605288410845205, + 13.0121608707079 + ], + [ + 77.605374907463002, + 13.0121077018684 + ], + [ + 77.605443682123493, + 13.012076520328799 + ], + [ + 77.605562015350202, + 13.0120170337359 + ], + [ + 77.605565342088696, + 13.012015690345899 + ], + [ + 77.605722891990794, + 13.011964363804299 + ], + [ + 77.605723703948499, + 13.011964035833699 + ], + [ + 77.606112070946097, + 13.0117858423536 + ], + [ + 77.606258864459704, + 13.0117304363581 + ], + [ + 77.606351824617903, + 13.0116953490801 + ], + [ + 77.606388998928594, + 13.0116810871379 + ], + [ + 77.606463664125698, + 13.011652441709501 + ], + [ + 77.606606465608394, + 13.011596801023501 + ], + [ + 77.606681822506999, + 13.0115417886676 + ], + [ + 77.607055390119001, + 13.011374761445699 + ], + [ + 77.607076406238505, + 13.011366344383701 + ], + [ + 77.607088649272697, + 13.0113614403918 + ], + [ + 77.6070963910865, + 13.011358339710799 + ], + [ + 77.607115609824504, + 13.011350641771299 + ], + [ + 77.607121908422002, + 13.011348119334199 + ], + [ + 77.607126491005502, + 13.011345814707401 + ], + [ + 77.606753353687296, + 13.010484852013199 + ], + [ + 77.606693372488905, + 13.0103254284065 + ], + [ + 77.606695624375604, + 13.0101704008637 + ], + [ + 77.6074866273471, + 13.010044412927799 + ], + [ + 77.607414029894102, + 13.0094309257415 + ], + [ + 77.606569234583105, + 13.0094994338807 + ], + [ + 77.606150178841702, + 13.0094903685494 + ], + [ + 77.605237182583707, + 13.0066705371102 + ], + [ + 77.605236838908795, + 13.0066694763259 + ], + [ + 77.605043773217005, + 13.0067640161312 + ], + [ + 77.604374914371604, + 13.007090737598199 + ], + [ + 77.6041586369237, + 13.0071963835156 + ], + [ + 77.603955453976695, + 13.0072946108127 + ], + [ + 77.603183189897905, + 13.007667954537901 + ], + [ + 77.602627176932202, + 13.0079367522869 + ], + [ + 77.602345220567599, + 13.0080769696412 + ], + [ + 77.601459119935996, + 13.008517628048301 + ], + [ + 77.601302723638199, + 13.0085948585381 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "93", + "group": "KG.Halli", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "54", + "ward_name": "54 - KG.Halli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಕೆ.ಜಿ.ಹಳ್ಳಿ", + "dig_ward_n": "KG.Halli", + "Assembly": "160 - Sarvagnanagar", + "Slno": "54" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.619802102197895, + 13.0157661218493 + ], + [ + 77.619344554837795, + 13.0159737790358 + ], + [ + 77.618992322565006, + 13.016103710872599 + ], + [ + 77.618883513505395, + 13.0158293143759 + ], + [ + 77.618783953275596, + 13.015603863366399 + ], + [ + 77.618436603412903, + 13.0157070185083 + ], + [ + 77.618360467940605, + 13.015490147706601 + ], + [ + 77.617702030271403, + 13.015745769274501 + ], + [ + 77.617701976126497, + 13.0157457896963 + ], + [ + 77.617701864170698, + 13.015745832383899 + ], + [ + 77.617713187740705, + 13.0157756853013 + ], + [ + 77.617742203600997, + 13.0158521836877 + ], + [ + 77.617816053752094, + 13.016037794879701 + ], + [ + 77.617890778457095, + 13.0162256051487 + ], + [ + 77.617893229440796, + 13.0162317651917 + ], + [ + 77.617942491447707, + 13.0163555788208 + ], + [ + 77.617966354993996, + 13.016415556000601 + ], + [ + 77.618113637060901, + 13.0167857289204 + ], + [ + 77.618114506848897, + 13.016788188271001 + ], + [ + 77.618136808697798, + 13.016851224800799 + ], + [ + 77.618177731074795, + 13.016966893336701 + ], + [ + 77.618179509628803, + 13.016973066488999 + ], + [ + 77.618197781988798, + 13.017036496937701 + ], + [ + 77.618205193622899, + 13.0170622245674 + ], + [ + 77.618228009933205, + 13.017141427041301 + ], + [ + 77.618330996791997, + 13.0174989312421 + ], + [ + 77.618352242127102, + 13.0175726793689 + ], + [ + 77.618389713676805, + 13.017686357221899 + ], + [ + 77.618407160143704, + 13.0177403561774 + ], + [ + 77.618407310608205, + 13.017740821723899 + ], + [ + 77.6184697665785, + 13.0179341317889 + ], + [ + 77.618476317589099, + 13.017954407844 + ], + [ + 77.618479502149299, + 13.017964264472401 + ], + [ + 77.618568273814105, + 13.0182390253857 + ], + [ + 77.618584529803599, + 13.0182957249063 + ], + [ + 77.618644786131597, + 13.018505889545199 + ], + [ + 77.618665817526306, + 13.018589243085501 + ], + [ + 77.618684411356298, + 13.018664034275201 + ], + [ + 77.61868450083, + 13.018664394737799 + ], + [ + 77.618684673043802, + 13.0186650886285 + ], + [ + 77.618710740821797, + 13.0187699449836 + ], + [ + 77.618733991840998, + 13.0188634711366 + ], + [ + 77.618749832444806, + 13.0189271889503 + ], + [ + 77.618768032852401, + 13.019000394989 + ], + [ + 77.618783442170198, + 13.019057175304599 + ], + [ + 77.618797373524004, + 13.019108508495901 + ], + [ + 77.618798195754806, + 13.0191115257294 + ], + [ + 77.618843198273694, + 13.019277384541001 + ], + [ + 77.618860925303395, + 13.019342712136201 + ], + [ + 77.618871930546803, + 13.0193832691215 + ], + [ + 77.6188884393991, + 13.0194441100078 + ], + [ + 77.618918403574895, + 13.0195556049896 + ], + [ + 77.618926073838196, + 13.019607413381999 + ], + [ + 77.618950369923795, + 13.0197715146218 + ], + [ + 77.618982780780499, + 13.0199904353482 + ], + [ + 77.618985347394599, + 13.0200077649378 + ], + [ + 77.618994244878493, + 13.020138638726401 + ], + [ + 77.6190078256531, + 13.020338413892 + ], + [ + 77.619004728912003, + 13.0204076622025 + ], + [ + 77.619004665577194, + 13.0204090875294 + ], + [ + 77.619004585772203, + 13.0204108743891 + ], + [ + 77.619001764532101, + 13.0204739875283 + ], + [ + 77.619010375464796, + 13.020571016823 + ], + [ + 77.619033589696897, + 13.020639432001101 + ], + [ + 77.619667905586198, + 13.0205781758638 + ], + [ + 77.620419581364601, + 13.020552413936899 + ], + [ + 77.620501037962995, + 13.020900303237701 + ], + [ + 77.620723572102193, + 13.0218777219545 + ], + [ + 77.621131183034606, + 13.0217758192214 + ], + [ + 77.621379642507506, + 13.0228326307119 + ], + [ + 77.620543811101101, + 13.0229963620696 + ], + [ + 77.620620270329297, + 13.023325453206599 + ], + [ + 77.620718900396497, + 13.023828985655401 + ], + [ + 77.620741267026602, + 13.0244455030323 + ], + [ + 77.620778885934399, + 13.0246607082113 + ], + [ + 77.620257473180999, + 13.0247172330451 + ], + [ + 77.619650696392597, + 13.0248395112572 + ], + [ + 77.620062825372997, + 13.0262010784121 + ], + [ + 77.620198732293503, + 13.026146628305399 + ], + [ + 77.620492919042306, + 13.026029596736301 + ], + [ + 77.620697832438395, + 13.025911209397099 + ], + [ + 77.620922637268393, + 13.025767776809101 + ], + [ + 77.621022422988702, + 13.0256937271953 + ], + [ + 77.621030631954696, + 13.0256876355405 + ], + [ + 77.621126065892, + 13.025617784724799 + ], + [ + 77.621296839997498, + 13.025483932651801 + ], + [ + 77.621324979677098, + 13.0254570405962 + ], + [ + 77.621435380992295, + 13.025351535897601 + ], + [ + 77.621556517124404, + 13.025206893259099 + ], + [ + 77.621670927143995, + 13.025057442921399 + ], + [ + 77.621698529853603, + 13.025021385719 + ], + [ + 77.621834487274398, + 13.0248077077283 + ], + [ + 77.622023992408401, + 13.024483948915201 + ], + [ + 77.622060165989893, + 13.0244192146268 + ], + [ + 77.622113232913406, + 13.024324103744 + ], + [ + 77.622264201531607, + 13.0240535258179 + ], + [ + 77.622356667043604, + 13.023893025524799 + ], + [ + 77.622401623928496, + 13.023814989001099 + ], + [ + 77.622429326811798, + 13.023766150157 + ], + [ + 77.622616959910005, + 13.0234029815411 + ], + [ + 77.622771089677201, + 13.0231046584022 + ], + [ + 77.622773020220507, + 13.0231009213165 + ], + [ + 77.623024259098003, + 13.0224603427503 + ], + [ + 77.623034338052094, + 13.0224331383363 + ], + [ + 77.623107941237905, + 13.0222042815004 + ], + [ + 77.623179531633298, + 13.021948342645 + ], + [ + 77.623268893372995, + 13.021630114256901 + ], + [ + 77.623311427351993, + 13.0214038304496 + ], + [ + 77.623345917039202, + 13.0212231707646 + ], + [ + 77.623367583289394, + 13.021104006451299 + ], + [ + 77.623418545174403, + 13.020803105768801 + ], + [ + 77.623461920849294, + 13.0204379137049 + ], + [ + 77.623478501172897, + 13.0201846989877 + ], + [ + 77.623481417400995, + 13.0201401673442 + ], + [ + 77.623490608083102, + 13.019999809507301 + ], + [ + 77.623497142164496, + 13.019900026447299 + ], + [ + 77.623497506092804, + 13.019748100312 + ], + [ + 77.623498316627106, + 13.019409912987699 + ], + [ + 77.623492697981206, + 13.019347403985901 + ], + [ + 77.623465052645599, + 13.0190398503051 + ], + [ + 77.623450002831305, + 13.0188683541359 + ], + [ + 77.623422100536601, + 13.018622143872101 + ], + [ + 77.623420833955393, + 13.018610967015601 + ], + [ + 77.623412548897505, + 13.018537858139 + ], + [ + 77.623389766258697, + 13.018406181354401 + ], + [ + 77.623339808923106, + 13.018117434804401 + ], + [ + 77.623339457702301, + 13.0181154038721 + ], + [ + 77.6233388425767, + 13.018111847035501 + ], + [ + 77.623338768073594, + 13.0181114213784 + ], + [ + 77.623338668941898, + 13.0181108441971 + ], + [ + 77.623330113358506, + 13.0180613957285 + ], + [ + 77.623327236955504, + 13.018044769511 + ], + [ + 77.623310153257606, + 13.017946029485699 + ], + [ + 77.623306612836402, + 13.017928641182399 + ], + [ + 77.623304739663297, + 13.0179194435164 + ], + [ + 77.623277249209906, + 13.0177844500266 + ], + [ + 77.623263601624402, + 13.017717431099101 + ], + [ + 77.623241536387198, + 13.017609073139299 + ], + [ + 77.623218812515802, + 13.017521646697899 + ], + [ + 77.623214556787602, + 13.0175052747416 + ], + [ + 77.623193524882694, + 13.0174243592379 + ], + [ + 77.623190862734106, + 13.017415306871699 + ], + [ + 77.623138677713101, + 13.0172378669997 + ], + [ + 77.623134581295602, + 13.017223937161299 + ], + [ + 77.623093193003697, + 13.017083206632201 + ], + [ + 77.623024326527698, + 13.0168828523753 + ], + [ + 77.623021458250705, + 13.0168741599994 + ], + [ + 77.623020032507597, + 13.0168748203655 + ], + [ + 77.622760715824896, + 13.0170171663872 + ], + [ + 77.622624429157796, + 13.017112117857399 + ], + [ + 77.622462723392204, + 13.0168267867406 + ], + [ + 77.622282113419303, + 13.0164851510088 + ], + [ + 77.621846908665304, + 13.016687521219399 + ], + [ + 77.621755515667004, + 13.0165243194366 + ], + [ + 77.6220819192325, + 13.016358397624201 + ], + [ + 77.621925245521098, + 13.016054298302301 + ], + [ + 77.622075391161204, + 13.0159716093991 + ], + [ + 77.621729121797202, + 13.0154091614572 + ], + [ + 77.621524920621994, + 13.015115428417699 + ], + [ + 77.621413636747903, + 13.015234326983499 + ], + [ + 77.621253290790506, + 13.015355451627499 + ], + [ + 77.621020648427006, + 13.0154633833136 + ], + [ + 77.620892223994503, + 13.0154927262241 + ], + [ + 77.620323148020404, + 13.0155032202826 + ], + [ + 77.620177011810398, + 13.0155307939694 + ], + [ + 77.620108951296103, + 13.0155665545786 + ], + [ + 77.620047812190094, + 13.015613850868201 + ], + [ + 77.619964755291306, + 13.015693447062899 + ], + [ + 77.619802102197895, + 13.0157661218493 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "95", + "group": "venkateshpura", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "65", + "ward_name": "65 - P&T Colony", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಪಿ & ಟಿ ಕಾಲೋನಿ", + "dig_ward_n": "venkateshpura", + "Assembly": "160 - Sarvagnanagar", + "Slno": "65" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.620383994395496, + 13.0093057687381 + ], + [ + 77.620342943464905, + 13.0092663364854 + ], + [ + 77.620274404903896, + 13.0092005004183 + ], + [ + 77.620259981664901, + 13.009186645883901 + ], + [ + 77.620145239828901, + 13.0091031729481 + ], + [ + 77.620132904923494, + 13.009094200147301 + ], + [ + 77.620110833902302, + 13.009097892204601 + ], + [ + 77.620081430083999, + 13.0091028101833 + ], + [ + 77.620061053150295, + 13.0091062186171 + ], + [ + 77.619911200514807, + 13.009093051699701 + ], + [ + 77.619839170804298, + 13.0090881328568 + ], + [ + 77.619717604615602, + 13.009026997828901 + ], + [ + 77.619713596431794, + 13.009024937866901 + ], + [ + 77.619685763315701, + 13.009010633310799 + ], + [ + 77.619656247397302, + 13.0090011076524 + ], + [ + 77.619540225851793, + 13.0089636637274 + ], + [ + 77.619526295282995, + 13.008959168075799 + ], + [ + 77.619505603389399, + 13.0089627648461 + ], + [ + 77.619502724573806, + 13.008962793918 + ], + [ + 77.6194104829613, + 13.0089524327059 + ], + [ + 77.619383730341795, + 13.008951001725 + ], + [ + 77.619215169725607, + 13.008941982969199 + ], + [ + 77.619080661170301, + 13.0089094630074 + ], + [ + 77.619083047224805, + 13.008917343810101 + ], + [ + 77.6189513286363, + 13.009013731221501 + ], + [ + 77.618849833774902, + 13.009088002253799 + ], + [ + 77.618813902002799, + 13.0091142957922 + ], + [ + 77.6187409124271, + 13.0091674823503 + ], + [ + 77.618656752522497, + 13.009228809424799 + ], + [ + 77.618665614244804, + 13.009250176109299 + ], + [ + 77.618665763780001, + 13.0092644178683 + ], + [ + 77.618666112190397, + 13.009297600462199 + ], + [ + 77.618641205369997, + 13.0093385056646 + ], + [ + 77.618639793819995, + 13.009339813607699 + ], + [ + 77.618572201786606, + 13.009402441459001 + ], + [ + 77.618509116634499, + 13.0094267921033 + ], + [ + 77.618483365785806, + 13.009436539742399 + ], + [ + 77.618322140486796, + 13.0094975669234 + ], + [ + 77.618267754932106, + 13.0095182828847 + ], + [ + 77.618266577582204, + 13.009518731119501 + ], + [ + 77.617855619710994, + 13.0096752702185 + ], + [ + 77.617847036900201, + 13.0096785395813 + ], + [ + 77.617838456843401, + 13.0096818080126 + ], + [ + 77.617761798821306, + 13.0097110077108 + ], + [ + 77.617616145993694, + 13.009768941242999 + ], + [ + 77.617491458139895, + 13.0098161103198 + ], + [ + 77.617485336298401, + 13.009818426124401 + ], + [ + 77.6171976399161, + 13.009927261270199 + ], + [ + 77.6171039667407, + 13.009962698035601 + ], + [ + 77.616816179086797, + 13.010063136467201 + ], + [ + 77.6167574349669, + 13.010083638654301 + ], + [ + 77.6167565969386, + 13.010083938009499 + ], + [ + 77.616737929977106, + 13.010090611069799 + ], + [ + 77.616604862382403, + 13.0101405122361 + ], + [ + 77.616497208806507, + 13.0101813043776 + ], + [ + 77.6163966644379, + 13.010219403047 + ], + [ + 77.616186727184697, + 13.010297181984599 + ], + [ + 77.616185855400801, + 13.010297513298401 + ], + [ + 77.616064562454994, + 13.010343585117999 + ], + [ + 77.616017937010795, + 13.0103646741102 + ], + [ + 77.615992940261407, + 13.0103759804574 + ], + [ + 77.615862827833197, + 13.010434832372599 + ], + [ + 77.615735753441399, + 13.010507258175 + ], + [ + 77.615448469077194, + 13.010690430729699 + ], + [ + 77.615403815179405, + 13.010718902364101 + ], + [ + 77.615341642350103, + 13.0107585434508 + ], + [ + 77.615373579901302, + 13.0108066563905 + ], + [ + 77.615437207887894, + 13.010902508017301 + ], + [ + 77.615575958671698, + 13.0111115294453 + ], + [ + 77.615628329038302, + 13.0111904226265 + ], + [ + 77.615760963898197, + 13.011379899586 + ], + [ + 77.615787892530506, + 13.0114183683791 + ], + [ + 77.615822997986896, + 13.011468519010799 + ], + [ + 77.615842783648105, + 13.0115008479343 + ], + [ + 77.615922596592995, + 13.0116312590129 + ], + [ + 77.615965529253998, + 13.0117018256131 + ], + [ + 77.615983119515207, + 13.0117307382533 + ], + [ + 77.615983554520696, + 13.0117314538898 + ], + [ + 77.616013416619296, + 13.011780536227301 + ], + [ + 77.616100862579003, + 13.0119263629407 + ], + [ + 77.616108997463201, + 13.0119399288194 + ], + [ + 77.616167414871398, + 13.012037346848601 + ], + [ + 77.616167557410705, + 13.0120375848165 + ], + [ + 77.616274036043194, + 13.012288828113199 + ], + [ + 77.616355321002601, + 13.0124806240228 + ], + [ + 77.616407351599506, + 13.0126099654286 + ], + [ + 77.616442545571303, + 13.0126999521481 + ], + [ + 77.616483878198395, + 13.012805632530499 + ], + [ + 77.616564836629607, + 13.0130126307065 + ], + [ + 77.616591705118495, + 13.013081331038199 + ], + [ + 77.616727864555898, + 13.0134294704906 + ], + [ + 77.6167280595931, + 13.013429969919301 + ], + [ + 77.616733983254605, + 13.0134457199545 + ], + [ + 77.616742967784205, + 13.013468949213699 + ], + [ + 77.616743032192005, + 13.0134691165995 + ], + [ + 77.616759371432707, + 13.013511363567799 + ], + [ + 77.616816411517704, + 13.0136588427633 + ], + [ + 77.616973702654604, + 13.0140655278867 + ], + [ + 77.617020397974898, + 13.014180243254 + ], + [ + 77.617038109829494, + 13.014221847553999 + ], + [ + 77.617107384085301, + 13.0144029611424 + ], + [ + 77.617119143932399, + 13.014433138552601 + ], + [ + 77.617119557705493, + 13.0144342004089 + ], + [ + 77.617142890851795, + 13.0144940737804 + ], + [ + 77.617182262039293, + 13.014593638622699 + ], + [ + 77.617184781531506, + 13.0146000093873 + ], + [ + 77.617202045148105, + 13.014643668946499 + ], + [ + 77.6172158036849, + 13.0146781725145 + ], + [ + 77.617222611983905, + 13.0146952461377 + ], + [ + 77.617268874343694, + 13.0148112576711 + ], + [ + 77.617283865699505, + 13.014839973240299 + ], + [ + 77.617289070931903, + 13.014849944112999 + ], + [ + 77.617291543784802, + 13.014854680160701 + ], + [ + 77.617296179230294, + 13.014863560036 + ], + [ + 77.617297084692595, + 13.0148652944915 + ], + [ + 77.617301206744699, + 13.0148731894036 + ], + [ + 77.617301529256494, + 13.0148738076992 + ], + [ + 77.617305349491204, + 13.0148811247604 + ], + [ + 77.617305638155401, + 13.0148816783516 + ], + [ + 77.617310251967595, + 13.014890515984201 + ], + [ + 77.617310398640797, + 13.0148907963698 + ], + [ + 77.617314043996501, + 13.014897779124899 + ], + [ + 77.617314475554096, + 13.014898604105699 + ], + [ + 77.617314515043006, + 13.014898679594101 + ], + [ + 77.617314880804699, + 13.014899380567501 + ], + [ + 77.6173164886346, + 13.014902460348599 + ], + [ + 77.617316616503601, + 13.014902704787399 + ], + [ + 77.617316673856493, + 13.0149028144253 + ], + [ + 77.617317207925694, + 13.0149038380266 + ], + [ + 77.617318139723906, + 13.0149056237109 + ], + [ + 77.6173272187972, + 13.0149230149948 + ], + [ + 77.617328408204301, + 13.0149252922479 + ], + [ + 77.617366904953002, + 13.0149990335468 + ], + [ + 77.617378451258901, + 13.015021150993199 + ], + [ + 77.617438441313794, + 13.015136064462 + ], + [ + 77.617442425164498, + 13.015143695160599 + ], + [ + 77.617502781980306, + 13.015259310469199 + ], + [ + 77.617553888610701, + 13.0153572055605 + ], + [ + 77.617602951732195, + 13.015485633274601 + ], + [ + 77.617633824145699, + 13.0155664430211 + ], + [ + 77.617685143149203, + 13.015701745516401 + ], + [ + 77.617696823956507, + 13.0157325407061 + ], + [ + 77.617700779148294, + 13.015742967762399 + ], + [ + 77.617701274743894, + 13.015744275423501 + ], + [ + 77.617701439622707, + 13.015744710109299 + ], + [ + 77.617701591243602, + 13.015745110598999 + ], + [ + 77.617701864170698, + 13.015745832383899 + ], + [ + 77.617701976126497, + 13.0157457896963 + ], + [ + 77.617702030271403, + 13.015745769274501 + ], + [ + 77.618360467940605, + 13.015490147706601 + ], + [ + 77.618436603412903, + 13.0157070185083 + ], + [ + 77.618783953275596, + 13.015603863366399 + ], + [ + 77.618883513505395, + 13.0158293143759 + ], + [ + 77.618992322565006, + 13.016103710872599 + ], + [ + 77.619344554837795, + 13.0159737790358 + ], + [ + 77.619802102197895, + 13.0157661218493 + ], + [ + 77.619964755291306, + 13.015693447062899 + ], + [ + 77.620047812190094, + 13.015613850868201 + ], + [ + 77.620108951296103, + 13.0155665545786 + ], + [ + 77.620177011810398, + 13.0155307939694 + ], + [ + 77.620323148020404, + 13.0155032202826 + ], + [ + 77.620892223994503, + 13.0154927262241 + ], + [ + 77.621020648427006, + 13.0154633833136 + ], + [ + 77.621253290790506, + 13.015355451627499 + ], + [ + 77.621413636747903, + 13.015234326983499 + ], + [ + 77.621524920621994, + 13.015115428417699 + ], + [ + 77.621729121797202, + 13.0154091614572 + ], + [ + 77.622075391161204, + 13.0159716093991 + ], + [ + 77.621925245521098, + 13.016054298302301 + ], + [ + 77.6220819192325, + 13.016358397624201 + ], + [ + 77.621755515667004, + 13.0165243194366 + ], + [ + 77.621846908665304, + 13.016687521219399 + ], + [ + 77.622282113419303, + 13.0164851510088 + ], + [ + 77.622462723392204, + 13.0168267867406 + ], + [ + 77.622624429157796, + 13.017112117857399 + ], + [ + 77.622760715824896, + 13.0170171663872 + ], + [ + 77.623020032507597, + 13.0168748203655 + ], + [ + 77.623021458250705, + 13.0168741599994 + ], + [ + 77.623008710331504, + 13.0168373843818 + ], + [ + 77.622998551251797, + 13.0168078488818 + ], + [ + 77.622943497903506, + 13.0166476949426 + ], + [ + 77.622838582909694, + 13.016382430047701 + ], + [ + 77.622774897823902, + 13.0162214084492 + ], + [ + 77.6227272672391, + 13.0161154654492 + ], + [ + 77.622700603302505, + 13.0160561577583 + ], + [ + 77.622612236702906, + 13.015857404436501 + ], + [ + 77.622612132914, + 13.015857172405701 + ], + [ + 77.622591494547507, + 13.0158110812141 + ], + [ + 77.622323831670599, + 13.0152186646107 + ], + [ + 77.622158718622003, + 13.0148499347001 + ], + [ + 77.622032509857604, + 13.0145666355342 + ], + [ + 77.621816046761296, + 13.0140787220741 + ], + [ + 77.6216872761497, + 13.0137951088048 + ], + [ + 77.621645602704504, + 13.013703323132299 + ], + [ + 77.6216453555936, + 13.013702779064801 + ], + [ + 77.621602474924103, + 13.013608335091 + ], + [ + 77.621590020252, + 13.0135809032483 + ], + [ + 77.621584808250901, + 13.013569423853699 + ], + [ + 77.621539941312506, + 13.0134706057325 + ], + [ + 77.621539700793306, + 13.013470075149399 + ], + [ + 77.621377965370897, + 13.0131052047584 + ], + [ + 77.621344590874997, + 13.013030967950399 + ], + [ + 77.621327704107998, + 13.012993405725 + ], + [ + 77.621296112671203, + 13.0129231358437 + ], + [ + 77.621241331699906, + 13.012801283190401 + ], + [ + 77.621226648746898, + 13.012768624094001 + ], + [ + 77.621122963440698, + 13.012537993158499 + ], + [ + 77.621105560711598, + 13.012499282459499 + ], + [ + 77.620850964760706, + 13.011943996744799 + ], + [ + 77.620735557998302, + 13.011590444231301 + ], + [ + 77.620704002762594, + 13.0114937742417 + ], + [ + 77.620702366097902, + 13.0114817274756 + ], + [ + 77.6206353519879, + 13.010988555345 + ], + [ + 77.620638297247595, + 13.0109257635115 + ], + [ + 77.620654639119806, + 13.010577306461499 + ], + [ + 77.620745309357105, + 13.0101642070469 + ], + [ + 77.620815120348894, + 13.009957974667101 + ], + [ + 77.620893885470693, + 13.0097824167137 + ], + [ + 77.620917686760194, + 13.0097293670725 + ], + [ + 77.620948467527697, + 13.009660758754499 + ], + [ + 77.620885900154207, + 13.009632656038301 + ], + [ + 77.620810771184395, + 13.0095989110176 + ], + [ + 77.620578719698102, + 13.009473314779999 + ], + [ + 77.620532215102202, + 13.009448144779601 + ], + [ + 77.620394934921606, + 13.0093162778651 + ], + [ + 77.620384212182202, + 13.009305977937199 + ], + [ + 77.620383994395496, + 13.0093057687381 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "96", + "group": "SHIVA NAGARA", + "Corporatio": "West", + "ac_no": "165", + "ac": "Rajajinagar", + "corporat_1": "5", + "ward_id": "55", + "ward_name": "55 - Shiva Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜಾಜಿನಗರ", + "ward_name_": "ಶಿವ ನಗರ", + "dig_ward_n": "SHIVA NAGARA", + "Assembly": "165 - Rajajinagar", + "Slno": "55" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.547201662476496, + 12.9863706513606 + ], + [ + 77.546271703923097, + 12.9865079401541 + ], + [ + 77.546308078324898, + 12.986587365080901 + ], + [ + 77.545463142775901, + 12.986768504246299 + ], + [ + 77.545596815285805, + 12.988456337719301 + ], + [ + 77.545619821818505, + 12.988707227614301 + ], + [ + 77.545630478276806, + 12.9891422153744 + ], + [ + 77.545660129600904, + 12.989499920130299 + ], + [ + 77.545667994121999, + 12.989537110982599 + ], + [ + 77.545672853303302, + 12.9895619086452 + ], + [ + 77.545721917374905, + 12.989799716648101 + ], + [ + 77.545726177802806, + 12.989822261513501 + ], + [ + 77.545727398356206, + 12.9898290255374 + ], + [ + 77.545728594645198, + 12.989835759081201 + ], + [ + 77.545777487163093, + 12.9901108673693 + ], + [ + 77.545778097441797, + 12.990114249380801 + ], + [ + 77.545824524738507, + 12.9903757991099 + ], + [ + 77.545833598388995, + 12.9904186247492 + ], + [ + 77.545863341060695, + 12.9905685342301 + ], + [ + 77.545897632273906, + 12.990712752462899 + ], + [ + 77.545910264075303, + 12.9907657071952 + ], + [ + 77.545985088174902, + 12.990988581252701 + ], + [ + 77.546001186061602, + 12.9910426313293 + ], + [ + 77.546003627207398, + 12.9910561593683 + ], + [ + 77.546020231568406, + 12.9911598950249 + ], + [ + 77.546019863002996, + 12.991180226589 + ], + [ + 77.546019451155601, + 12.9912222516633 + ], + [ + 77.546019298532002, + 12.9912378279839 + ], + [ + 77.546062990059895, + 12.991666785416101 + ], + [ + 77.546416277960304, + 12.9917396155455 + ], + [ + 77.546941794593906, + 12.9918475940355 + ], + [ + 77.547140528556497, + 12.9919182341379 + ], + [ + 77.547137523704293, + 12.9920595158043 + ], + [ + 77.54736955397, + 12.9921431248824 + ], + [ + 77.547300169781195, + 12.9927998752483 + ], + [ + 77.547241312627307, + 12.9934197939639 + ], + [ + 77.547633152555605, + 12.9934364404627 + ], + [ + 77.549007133936101, + 12.993478198659499 + ], + [ + 77.549739954645901, + 12.993487479354901 + ], + [ + 77.549802197648901, + 12.993487740140299 + ], + [ + 77.5499346851729, + 12.9934881830973 + ], + [ + 77.5499880553879, + 12.9934902748124 + ], + [ + 77.550406890884403, + 12.9934948809896 + ], + [ + 77.550782037754402, + 12.993487708675101 + ], + [ + 77.551076339581499, + 12.9934615415933 + ], + [ + 77.551057401728301, + 12.9930732393202 + ], + [ + 77.551039961603607, + 12.9927188021102 + ], + [ + 77.551024767936795, + 12.992415162512099 + ], + [ + 77.551017000095797, + 12.9922590890853 + ], + [ + 77.551004035619002, + 12.991998603987 + ], + [ + 77.550982746821603, + 12.991570838947901 + ], + [ + 77.550973393632106, + 12.9913879798927 + ], + [ + 77.550932062656003, + 12.9911749430792 + ], + [ + 77.550848078230004, + 12.990844875154201 + ], + [ + 77.550786330982206, + 12.990606064257999 + ], + [ + 77.550731977221204, + 12.990414612450101 + ], + [ + 77.550637065758096, + 12.9900857809782 + ], + [ + 77.550315923651098, + 12.9901437870039 + ], + [ + 77.549857167676507, + 12.990225997563 + ], + [ + 77.549400719244801, + 12.9903149019569 + ], + [ + 77.549337290067797, + 12.9894049342596 + ], + [ + 77.549284008400505, + 12.9891740558857 + ], + [ + 77.548979837145495, + 12.989388176440199 + ], + [ + 77.548877779685, + 12.9891340333521 + ], + [ + 77.548819082335896, + 12.989158904710701 + ], + [ + 77.548634064063904, + 12.9883341338015 + ], + [ + 77.548269095246297, + 12.9884667592552 + ], + [ + 77.547476991010598, + 12.9887358091433 + ], + [ + 77.547294888482995, + 12.9879373595989 + ], + [ + 77.547194832149103, + 12.987393053142601 + ], + [ + 77.547235070011297, + 12.9873364193515 + ], + [ + 77.547201662476496, + 12.9863706513606 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "97", + "group": "Banaswadi", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "58", + "ward_name": "58 - Banaswadi", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಬಾಣಸವಾಡಿ", + "dig_ward_n": "Banaswadi", + "Assembly": "160 - Sarvagnanagar", + "Slno": "58" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.651323919116393, + 13.006776241641401 + ], + [ + 77.651264185826804, + 13.0067904030302 + ], + [ + 77.651188343713599, + 13.0068058582725 + ], + [ + 77.651105604665403, + 13.006822513218699 + ], + [ + 77.651088356371105, + 13.006824948870999 + ], + [ + 77.650969885193703, + 13.0068385802814 + ], + [ + 77.650864272350105, + 13.0068701490711 + ], + [ + 77.650844769059105, + 13.006877123825401 + ], + [ + 77.650740991394102, + 13.0069188370218 + ], + [ + 77.650634335888398, + 13.0069605795864 + ], + [ + 77.650615428588694, + 13.0069698022093 + ], + [ + 77.6504613360825, + 13.0070447820043 + ], + [ + 77.650414010114503, + 13.007074332282199 + ], + [ + 77.650384114485405, + 13.0070929992348 + ], + [ + 77.650226828459694, + 13.0071928504201 + ], + [ + 77.650042626230501, + 13.0073065274333 + ], + [ + 77.650008736292307, + 13.007326810967401 + ], + [ + 77.650467333301805, + 13.0080647550283 + ], + [ + 77.650878329791396, + 13.008814123214099 + ], + [ + 77.650710775961102, + 13.0089272764501 + ], + [ + 77.650389539358102, + 13.009098758481599 + ], + [ + 77.650040437258895, + 13.0092169437289 + ], + [ + 77.649779604961097, + 13.009197993767399 + ], + [ + 77.649535630810604, + 13.009258067590499 + ], + [ + 77.649172557295401, + 13.009506609328501 + ], + [ + 77.648909543782494, + 13.009735015800199 + ], + [ + 77.648828794019806, + 13.0098134584268 + ], + [ + 77.648455655418999, + 13.0101654377528 + ], + [ + 77.648196075161593, + 13.010512283539899 + ], + [ + 77.647748391601297, + 13.0111547087815 + ], + [ + 77.647122786639997, + 13.0120506069449 + ], + [ + 77.647757333427293, + 13.012557539811599 + ], + [ + 77.648310719648407, + 13.013249840061899 + ], + [ + 77.649024267380796, + 13.014332501484301 + ], + [ + 77.648829782698897, + 13.014382293397899 + ], + [ + 77.647906110551702, + 13.014630752216499 + ], + [ + 77.647500555375103, + 13.014715954531001 + ], + [ + 77.647332101831793, + 13.0147513450641 + ], + [ + 77.646446003117404, + 13.0148655617296 + ], + [ + 77.646145643271595, + 13.0148889618893 + ], + [ + 77.645729259336306, + 13.014921399811801 + ], + [ + 77.644836871797196, + 13.014979070557001 + ], + [ + 77.644975876770602, + 13.0162803608515 + ], + [ + 77.645026886107601, + 13.017801592653401 + ], + [ + 77.645026858413004, + 13.017801587515599 + ], + [ + 77.645030537912703, + 13.0185194612306 + ], + [ + 77.645076234411803, + 13.0195476324618 + ], + [ + 77.645186078496906, + 13.0215991386367 + ], + [ + 77.645285285348294, + 13.023117234175499 + ], + [ + 77.645206624850601, + 13.0234718877959 + ], + [ + 77.645421016422205, + 13.0233796185499 + ], + [ + 77.645591605039002, + 13.0233062004049 + ], + [ + 77.645948025151299, + 13.023152804900301 + ], + [ + 77.6459601857904, + 13.023147571108 + ], + [ + 77.646411847802199, + 13.022953183801899 + ], + [ + 77.646656433634405, + 13.0228465891119 + ], + [ + 77.646848903816206, + 13.0227627076715 + ], + [ + 77.647394917329905, + 13.022524744630701 + ], + [ + 77.647641280439402, + 13.0224173748582 + ], + [ + 77.647672206955207, + 13.022403896385301 + ], + [ + 77.647913605507696, + 13.0222986892605 + ], + [ + 77.648141160358307, + 13.022198230735899 + ], + [ + 77.648550019231905, + 13.022017731971401 + ], + [ + 77.649738448311197, + 13.021493068787899 + ], + [ + 77.650156518848604, + 13.0213084987709 + ], + [ + 77.650274244457094, + 13.0212565249756 + ], + [ + 77.650543884458003, + 13.021137484184299 + ], + [ + 77.650596280239697, + 13.0211143525924 + ], + [ + 77.6508130638164, + 13.021018647519501 + ], + [ + 77.651976826164599, + 13.020506049844499 + ], + [ + 77.652508204888093, + 13.020272345168699 + ], + [ + 77.652745271027101, + 13.0201680810915 + ], + [ + 77.652817781815102, + 13.0201407872815 + ], + [ + 77.653110586022393, + 13.020030573609199 + ], + [ + 77.6546757938996, + 13.0194414101737 + ], + [ + 77.655572973408297, + 13.019082218543 + ], + [ + 77.655598992297698, + 13.019071801460401 + ], + [ + 77.655600982180005, + 13.0190710050597 + ], + [ + 77.655633923906294, + 13.019057816808701 + ], + [ + 77.656473525424701, + 13.0186844627643 + ], + [ + 77.657225228685405, + 13.0183501929366 + ], + [ + 77.658416489707307, + 13.0178204524825 + ], + [ + 77.658565969570702, + 13.017753980189401 + ], + [ + 77.658745354286694, + 13.0176746945776 + ], + [ + 77.660370736701395, + 13.016956291634401 + ], + [ + 77.660535221216307, + 13.0168834617405 + ], + [ + 77.661404387245696, + 13.016528994219 + ], + [ + 77.661523639155106, + 13.016480342086499 + ], + [ + 77.661707123921005, + 13.0164073165015 + ], + [ + 77.661797921350896, + 13.0163363717017 + ], + [ + 77.661935856596202, + 13.016203964199899 + ], + [ + 77.662016909023194, + 13.016029229799701 + ], + [ + 77.662054493062499, + 13.015882043361399 + ], + [ + 77.6620948594, + 13.0157257944775 + ], + [ + 77.662159738852296, + 13.015061138241601 + ], + [ + 77.662255657913505, + 13.0136903915829 + ], + [ + 77.662277281613399, + 13.013297802933 + ], + [ + 77.662279538806501, + 13.0132568201533 + ], + [ + 77.662282667320099, + 13.0132000263674 + ], + [ + 77.662282631159002, + 13.0131966399376 + ], + [ + 77.662289845658293, + 13.013063316158499 + ], + [ + 77.662310611308399, + 13.012689326235501 + ], + [ + 77.662327773520502, + 13.012409099800101 + ], + [ + 77.662297617450704, + 13.0123890831658 + ], + [ + 77.661797642580794, + 13.0120497979043 + ], + [ + 77.661684865914907, + 13.0120035275453 + ], + [ + 77.661335457974104, + 13.0118834079965 + ], + [ + 77.661008682171996, + 13.011771068747199 + ], + [ + 77.660858996540995, + 13.0117195305107 + ], + [ + 77.660854734669698, + 13.0117180691926 + ], + [ + 77.660561791820598, + 13.011617615859601 + ], + [ + 77.6600244691695, + 13.011433360818099 + ], + [ + 77.659514297267506, + 13.011217262554499 + ], + [ + 77.659360426574096, + 13.0111406628487 + ], + [ + 77.658905309600996, + 13.010914095668401 + ], + [ + 77.658601899887302, + 13.010751641717601 + ], + [ + 77.658454176708602, + 13.010672546422301 + ], + [ + 77.658168205758599, + 13.0104755978064 + ], + [ + 77.658131077394302, + 13.010450010363 + ], + [ + 77.657592385224106, + 13.010062996457201 + ], + [ + 77.657563348415593, + 13.010042134751201 + ], + [ + 77.657547488468794, + 13.0100307401731 + ], + [ + 77.657495699261602, + 13.009993533450899 + ], + [ + 77.656323573956598, + 13.0091557258595 + ], + [ + 77.656202950935693, + 13.0090695064345 + ], + [ + 77.656101185236395, + 13.008975692349599 + ], + [ + 77.656079066388003, + 13.0089533340378 + ], + [ + 77.655852652348003, + 13.008720734217199 + ], + [ + 77.655681263239202, + 13.0085446624797 + ], + [ + 77.655587126763095, + 13.008447954132899 + ], + [ + 77.655013359028999, + 13.007828227826099 + ], + [ + 77.6549731648864, + 13.007784598794601 + ], + [ + 77.654730028745107, + 13.007511741889401 + ], + [ + 77.654621172637803, + 13.0073895788034 + ], + [ + 77.654217904386201, + 13.0069374913994 + ], + [ + 77.654085613046306, + 13.0067886556609 + ], + [ + 77.653855601076302, + 13.0066012959965 + ], + [ + 77.653686570789304, + 13.0064629989735 + ], + [ + 77.653672825800001, + 13.006451797455799 + ], + [ + 77.653534430767095, + 13.006339005940401 + ], + [ + 77.653525097383195, + 13.0063313999682 + ], + [ + 77.653464679825703, + 13.0062812019946 + ], + [ + 77.653350873771103, + 13.0061920265307 + ], + [ + 77.653174911114903, + 13.006051541480399 + ], + [ + 77.652919980230095, + 13.005849675894799 + ], + [ + 77.652876434766995, + 13.005815194118901 + ], + [ + 77.652543045596303, + 13.0058694187966 + ], + [ + 77.652224601450897, + 13.0059212318059 + ], + [ + 77.651831430773896, + 13.0059851006912 + ], + [ + 77.651261807121699, + 13.006079003367001 + ], + [ + 77.651473698299696, + 13.006501538577099 + ], + [ + 77.651568297552203, + 13.006690179958399 + ], + [ + 77.651465695627707, + 13.006734139881299 + ], + [ + 77.651388810082395, + 13.0067597690397 + ], + [ + 77.651323919116393, + 13.006776241641401 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "98", + "group": "Samadhana Nagar", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "53", + "ward_name": "53 - Samadhana Nagar", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಸಮಾಧಾನ ನಗರ", + "dig_ward_n": "Samadhana Nagar", + "Assembly": "160 - Sarvagnanagar", + "Slno": "53" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.617631372027802, + 13.020731767727099 + ], + [ + 77.617599274189601, + 13.020638068801301 + ], + [ + 77.617598514735604, + 13.020635852259201 + ], + [ + 77.6175847199804, + 13.0205955844557 + ], + [ + 77.617579320473595, + 13.020580029751899 + ], + [ + 77.617569874470405, + 13.0205528220877 + ], + [ + 77.617528090077499, + 13.020502947252499 + ], + [ + 77.617483566215, + 13.020449800794999 + ], + [ + 77.617468168170703, + 13.020438639196399 + ], + [ + 77.617374475488504, + 13.020370724227201 + ], + [ + 77.6173496809092, + 13.0203675858987 + ], + [ + 77.617307586140399, + 13.0203625398948 + ], + [ + 77.617269225737004, + 13.020357940405001 + ], + [ + 77.617219375298404, + 13.0203519635871 + ], + [ + 77.617162441482805, + 13.0203573085388 + ], + [ + 77.617125028674806, + 13.020360821178601 + ], + [ + 77.616902963245806, + 13.020381131758301 + ], + [ + 77.616869026248906, + 13.0203848622248 + ], + [ + 77.616648183450096, + 13.020411934976201 + ], + [ + 77.616590097438106, + 13.0204189925739 + ], + [ + 77.616486000129697, + 13.020431641550401 + ], + [ + 77.616274293823807, + 13.020447519661801 + ], + [ + 77.616120622673705, + 13.0204590445638 + ], + [ + 77.616113136466694, + 13.020459120127899 + ], + [ + 77.615837546727903, + 13.020482228624401 + ], + [ + 77.615808599294198, + 13.0204845083006 + ], + [ + 77.615808441871494, + 13.0204845207305 + ], + [ + 77.615640191564196, + 13.020497770767401 + ], + [ + 77.6156332040796, + 13.020498486325399 + ], + [ + 77.615554481580901, + 13.020506539741101 + ], + [ + 77.615486555367298, + 13.020513954781499 + ], + [ + 77.615429089388101, + 13.0205202280282 + ], + [ + 77.615168711868506, + 13.020621102163499 + ], + [ + 77.615117713341405, + 13.0206466432433 + ], + [ + 77.615026070495702, + 13.020692540081701 + ], + [ + 77.614906349022405, + 13.0207524864812 + ], + [ + 77.614884528156793, + 13.020758353004 + ], + [ + 77.614745280775594, + 13.0207918472977 + ], + [ + 77.614745059280807, + 13.020791900123699 + ], + [ + 77.614737659126007, + 13.020793680436199 + ], + [ + 77.614727715964307, + 13.0207960718193 + ], + [ + 77.614705895087894, + 13.020801938328599 + ], + [ + 77.614696612533805, + 13.0208028360189 + ], + [ + 77.614549421651603, + 13.0208170681576 + ], + [ + 77.614395530957196, + 13.0208039400011 + ], + [ + 77.614251824205397, + 13.020765088967201 + ], + [ + 77.614246538076301, + 13.0207636597766 + ], + [ + 77.614074331177704, + 13.0206513400669 + ], + [ + 77.613987424614393, + 13.020546064839801 + ], + [ + 77.613953585768797, + 13.0204492885576 + ], + [ + 77.613914573391796, + 13.0203027011197 + ], + [ + 77.613890640208894, + 13.020212775825099 + ], + [ + 77.613879744388896, + 13.020209723741701 + ], + [ + 77.613873322958696, + 13.020207924747501 + ], + [ + 77.613816713832605, + 13.020192065153299 + ], + [ + 77.613807095245306, + 13.0201922841153 + ], + [ + 77.613727477965696, + 13.0201940943292 + ], + [ + 77.613534284323805, + 13.0202220158016 + ], + [ + 77.613482546865995, + 13.0202304415154 + ], + [ + 77.613156628439498, + 13.020286804502099 + ], + [ + 77.612757494682896, + 13.0203902045489 + ], + [ + 77.612749747426804, + 13.020558087491301 + ], + [ + 77.612743886844996, + 13.0206850825006 + ], + [ + 77.612744490675894, + 13.0207426694378 + ], + [ + 77.612747474353498, + 13.0210272166526 + ], + [ + 77.612747947419706, + 13.021072331387 + ], + [ + 77.612747965606303, + 13.02107406577 + ], + [ + 77.612747995320404, + 13.021076899498899 + ], + [ + 77.612748279485004, + 13.021103999233199 + ], + [ + 77.612744389235004, + 13.0213920035639 + ], + [ + 77.612744367257804, + 13.021393685953401 + ], + [ + 77.6127421670503, + 13.0215590502469 + ], + [ + 77.612736983404702, + 13.021948810764201 + ], + [ + 77.612730846454198, + 13.022160937815 + ], + [ + 77.6127306436194, + 13.0221679540122 + ], + [ + 77.612708082386803, + 13.022322892134801 + ], + [ + 77.612700589603307, + 13.022377172872201 + ], + [ + 77.612654154154697, + 13.022726586983 + ], + [ + 77.6126485720565, + 13.022774870528499 + ], + [ + 77.612613500351898, + 13.023078202263401 + ], + [ + 77.612613535866799, + 13.023081588826701 + ], + [ + 77.612587240031004, + 13.0232647964847 + ], + [ + 77.612582289261496, + 13.0232976351229 + ], + [ + 77.612579737676796, + 13.023314563835701 + ], + [ + 77.612566780633998, + 13.023400515753 + ], + [ + 77.612541655621399, + 13.023530635687299 + ], + [ + 77.612557490861604, + 13.0236129131039 + ], + [ + 77.612562155453404, + 13.0236245653624 + ], + [ + 77.612597111560106, + 13.023711889824799 + ], + [ + 77.612615315948403, + 13.0237570281445 + ], + [ + 77.612615429467397, + 13.023757309770399 + ], + [ + 77.612618209698795, + 13.023764203741701 + ], + [ + 77.612682840842496, + 13.0239244592884 + ], + [ + 77.612692876054794, + 13.023947609419601 + ], + [ + 77.612845129917801, + 13.024298870438001 + ], + [ + 77.612909372079599, + 13.024446956214099 + ], + [ + 77.612988531964803, + 13.024629431058001 + ], + [ + 77.613046023812004, + 13.0247686003345 + ], + [ + 77.613104377951899, + 13.0249098586289 + ], + [ + 77.613110250707706, + 13.024924074331899 + ], + [ + 77.613158710336293, + 13.025042158497801 + ], + [ + 77.613241123402503, + 13.0252129769859 + ], + [ + 77.613342353272898, + 13.0254208716765 + ], + [ + 77.613430477283302, + 13.025587115353799 + ], + [ + 77.613471001577494, + 13.0256623679402 + ], + [ + 77.613549356037595, + 13.025775634216 + ], + [ + 77.613589453715804, + 13.0258216383623 + ], + [ + 77.613594238026295, + 13.0258271280582 + ], + [ + 77.613624607134497, + 13.025857181999401 + ], + [ + 77.613677000582896, + 13.025922050148701 + ], + [ + 77.613755863393493, + 13.025983647375501 + ], + [ + 77.613776569618906, + 13.026002253985199 + ], + [ + 77.613857708214994, + 13.026075168830101 + ], + [ + 77.614001764068604, + 13.0261934183976 + ], + [ + 77.614006028599604, + 13.0261968761177 + ], + [ + 77.614006059267595, + 13.026196901104001 + ], + [ + 77.614027900478305, + 13.0262146108845 + ], + [ + 77.614112247149606, + 13.0262666884223 + ], + [ + 77.614200009459793, + 13.0263208752729 + ], + [ + 77.614405814639397, + 13.0264479448931 + ], + [ + 77.614429807471794, + 13.0264621565626 + ], + [ + 77.614716990137296, + 13.026632263799501 + ], + [ + 77.614758178175293, + 13.026663699913801 + ], + [ + 77.614838550793195, + 13.026725042976 + ], + [ + 77.614858636768503, + 13.0267403745178 + ], + [ + 77.615070892718805, + 13.026936983124701 + ], + [ + 77.615102834781396, + 13.0269626339573 + ], + [ + 77.615290806336503, + 13.0271162751656 + ], + [ + 77.615389464117101, + 13.027196913808201 + ], + [ + 77.615411267987099, + 13.027214735838101 + ], + [ + 77.615432738865096, + 13.027230328881799 + ], + [ + 77.615479108200105, + 13.027264849202099 + ], + [ + 77.615514099728102, + 13.027290899206999 + ], + [ + 77.615515346908097, + 13.0272918279764 + ], + [ + 77.615613825629794, + 13.0273651425001 + ], + [ + 77.6156662690871, + 13.027403987541 + ], + [ + 77.615785454850396, + 13.0274922685105 + ], + [ + 77.615827406870807, + 13.0275233425488 + ], + [ + 77.615833937355404, + 13.0275291009388 + ], + [ + 77.616004896310301, + 13.027679849766299 + ], + [ + 77.616026195281094, + 13.0276986308359 + ], + [ + 77.616122075832493, + 13.027835432804901 + ], + [ + 77.616160658501897, + 13.027999916821001 + ], + [ + 77.616147274921801, + 13.0280527691004 + ], + [ + 77.616129694342007, + 13.028122192691299 + ], + [ + 77.616114877479603, + 13.028144298987799 + ], + [ + 77.615892695022893, + 13.0284757887807 + ], + [ + 77.615837979241903, + 13.0285354582666 + ], + [ + 77.615805644755099, + 13.028570718145501 + ], + [ + 77.615722179958297, + 13.0286617374309 + ], + [ + 77.615682605143604, + 13.028704894010801 + ], + [ + 77.615658130877605, + 13.0287322445848 + ], + [ + 77.615672834619204, + 13.0287416425207 + ], + [ + 77.615759009838797, + 13.0287967227642 + ], + [ + 77.615871785987594, + 13.0286595608227 + ], + [ + 77.615898984491295, + 13.028626481254401 + ], + [ + 77.615898424721607, + 13.0286256458258 + ], + [ + 77.616193202320105, + 13.028277790997899 + ], + [ + 77.616549718851303, + 13.027912755441101 + ], + [ + 77.616643614720601, + 13.02781661575 + ], + [ + 77.616673993996699, + 13.027793651184201 + ], + [ + 77.616744100429997, + 13.027740656852201 + ], + [ + 77.616799460100196, + 13.0276988096712 + ], + [ + 77.616981271144297, + 13.0275613764734 + ], + [ + 77.617006783100805, + 13.027547222386399 + ], + [ + 77.617257992793995, + 13.0274078502619 + ], + [ + 77.617514625164603, + 13.027265468979101 + ], + [ + 77.617977567386703, + 13.027053105504301 + ], + [ + 77.618088315663996, + 13.027002302917399 + ], + [ + 77.618280550810994, + 13.026914119097 + ], + [ + 77.6183647812733, + 13.026875480602801 + ], + [ + 77.618581478835296, + 13.026790087537 + ], + [ + 77.618888941658199, + 13.0266689257201 + ], + [ + 77.6189154808919, + 13.026658466905999 + ], + [ + 77.618944986674407, + 13.0266468397966 + ], + [ + 77.618954687353806, + 13.026643016948 + ], + [ + 77.618961916981704, + 13.026640167665899 + ], + [ + 77.619187880710896, + 13.0265511228401 + ], + [ + 77.619294208202803, + 13.026509222501099 + ], + [ + 77.619414211268406, + 13.0264619323 + ], + [ + 77.619442279145005, + 13.0264508716671 + ], + [ + 77.619602988581903, + 13.0263862099926 + ], + [ + 77.619687477518795, + 13.0263522156887 + ], + [ + 77.619718873459306, + 13.0263395837648 + ], + [ + 77.620046164798595, + 13.0262078969401 + ], + [ + 77.620062825372997, + 13.0262010784121 + ], + [ + 77.619650696392597, + 13.0248395112572 + ], + [ + 77.620257473180999, + 13.0247172330451 + ], + [ + 77.620778885934399, + 13.0246607082113 + ], + [ + 77.620741267026602, + 13.0244455030323 + ], + [ + 77.620718900396497, + 13.023828985655401 + ], + [ + 77.620620270329297, + 13.023325453206599 + ], + [ + 77.620543811101101, + 13.0229963620696 + ], + [ + 77.621379642507506, + 13.0228326307119 + ], + [ + 77.621131183034606, + 13.0217758192214 + ], + [ + 77.620723572102193, + 13.0218777219545 + ], + [ + 77.620501037962995, + 13.020900303237701 + ], + [ + 77.620419581364601, + 13.020552413936899 + ], + [ + 77.619667905586198, + 13.0205781758638 + ], + [ + 77.619033589696897, + 13.020639432001101 + ], + [ + 77.619010375464796, + 13.020571016823 + ], + [ + 77.619012173085494, + 13.0205912704076 + ], + [ + 77.619014864318004, + 13.0206215943734 + ], + [ + 77.619015482044901, + 13.020628558888401 + ], + [ + 77.619016534298694, + 13.020640135467699 + ], + [ + 77.619022504073499, + 13.020705817621 + ], + [ + 77.619028505119701, + 13.0207718445621 + ], + [ + 77.619035913069595, + 13.020819198133401 + ], + [ + 77.619045044002903, + 13.0208807549617 + ], + [ + 77.619060692891594, + 13.0209862485979 + ], + [ + 77.619105327243901, + 13.0212871445354 + ], + [ + 77.619110111615797, + 13.021304035231299 + ], + [ + 77.619056983883098, + 13.021301318028399 + ], + [ + 77.618999488376204, + 13.021298377541999 + ], + [ + 77.6189070371951, + 13.021282286919501 + ], + [ + 77.618628794787, + 13.0212338603035 + ], + [ + 77.618502770335496, + 13.0212119257704 + ], + [ + 77.617979756308898, + 13.021146568686 + ], + [ + 77.617934232708294, + 13.021140879884101 + ], + [ + 77.617853301512795, + 13.0211112061662 + ], + [ + 77.617848021497196, + 13.021107115527199 + ], + [ + 77.617844260271497, + 13.0211042011535 + ], + [ + 77.617787115533801, + 13.0210599282402 + ], + [ + 77.617771645847199, + 13.0210365152557 + ], + [ + 77.617755267055699, + 13.021011725610901 + ], + [ + 77.617731525606501, + 13.0209757944116 + ], + [ + 77.617714544582299, + 13.0209372671666 + ], + [ + 77.617701798677302, + 13.020908349248399 + ], + [ + 77.617690055141694, + 13.0208817041391 + ], + [ + 77.617657197449404, + 13.0208071554016 + ], + [ + 77.617631372027802, + 13.020731767727099 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "99", + "group": "kacharakanahalli", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "56", + "ward_name": "56 - Kacharakanahalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಕಾಚರಕನಹಳ್ಳಿ", + "dig_ward_n": "kacharakanahalli", + "Assembly": "160 - Sarvagnanagar", + "Slno": "56" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.633563980657101, + 13.0167775542028 + ], + [ + 77.630633106531903, + 13.0175464651744 + ], + [ + 77.630146108428093, + 13.017695933994 + ], + [ + 77.629883540975399, + 13.017776520502499 + ], + [ + 77.629857791398706, + 13.0177829095544 + ], + [ + 77.629851341865702, + 13.0177545203117 + ], + [ + 77.629836218624604, + 13.017687956980399 + ], + [ + 77.629819050878794, + 13.017612394751801 + ], + [ + 77.629775698636195, + 13.017421576522899 + ], + [ + 77.629691609422295, + 13.017130692537799 + ], + [ + 77.629534543729207, + 13.016755962488 + ], + [ + 77.629392327314306, + 13.0164299190526 + ], + [ + 77.6293454273208, + 13.0163267573969 + ], + [ + 77.6293230040379, + 13.016277434611199 + ], + [ + 77.629231877388193, + 13.016123366354799 + ], + [ + 77.629083275711494, + 13.015809495628201 + ], + [ + 77.628737287932097, + 13.0159182968167 + ], + [ + 77.6285283896501, + 13.0151284001882 + ], + [ + 77.628600198434498, + 13.0149630223817 + ], + [ + 77.627797245663402, + 13.0146409708638 + ], + [ + 77.627240183578294, + 13.0145865702695 + ], + [ + 77.627445674966097, + 13.014869815578299 + ], + [ + 77.627588841451995, + 13.015122448996401 + ], + [ + 77.627684521030901, + 13.015349590500399 + ], + [ + 77.627705215108406, + 13.0154313932801 + ], + [ + 77.627712161187304, + 13.015458848897 + ], + [ + 77.627746139611901, + 13.015950863233501 + ], + [ + 77.627827570120004, + 13.0164649818105 + ], + [ + 77.627914171264294, + 13.016977918608401 + ], + [ + 77.627930574429101, + 13.017059059257001 + ], + [ + 77.628038094771, + 13.017589852057201 + ], + [ + 77.628039929263494, + 13.017599996824099 + ], + [ + 77.628069833140003, + 13.017760048966 + ], + [ + 77.628114353546394, + 13.017995613506301 + ], + [ + 77.628155069854301, + 13.0182526725782 + ], + [ + 77.628164561433394, + 13.018311633164799 + ], + [ + 77.628234561185394, + 13.018746483603699 + ], + [ + 77.628243098455002, + 13.0187915675401 + ], + [ + 77.628313008783493, + 13.0191624257616 + ], + [ + 77.628337589141793, + 13.019292815911101 + ], + [ + 77.628389491504905, + 13.0195681449022 + ], + [ + 77.628537355044301, + 13.020429401726 + ], + [ + 77.628648659762206, + 13.021100183772701 + ], + [ + 77.626248068640706, + 13.021165211587 + ], + [ + 77.626264028191699, + 13.0212054865443 + ], + [ + 77.626372058462195, + 13.0214781081821 + ], + [ + 77.626773977154002, + 13.0224923756479 + ], + [ + 77.627095471420802, + 13.0233693465398 + ], + [ + 77.627851918260703, + 13.0258553813646 + ], + [ + 77.627852312804507, + 13.026220656640501 + ], + [ + 77.628156561588597, + 13.0276397208559 + ], + [ + 77.628416021210299, + 13.028577127883599 + ], + [ + 77.628422641095895, + 13.028604162990099 + ], + [ + 77.628507226376399, + 13.028925145123001 + ], + [ + 77.628530012810998, + 13.0290107368641 + ], + [ + 77.628557575358599, + 13.029115146025999 + ], + [ + 77.628670987209105, + 13.029530209506699 + ], + [ + 77.628916877895094, + 13.0299893505222 + ], + [ + 77.6303182372029, + 13.029512801316599 + ], + [ + 77.631276719732597, + 13.029267847735101 + ], + [ + 77.631412777159198, + 13.029212510036301 + ], + [ + 77.631536810514106, + 13.0288861064708 + ], + [ + 77.631944132705499, + 13.0281754236529 + ], + [ + 77.631969236437698, + 13.0281524740967 + ], + [ + 77.632121512303499, + 13.028013265689101 + ], + [ + 77.632326256882294, + 13.0279162425451 + ], + [ + 77.632345552517407, + 13.027907098221499 + ], + [ + 77.632715571280997, + 13.027773473178399 + ], + [ + 77.632762008182198, + 13.0277538038373 + ], + [ + 77.633887228370597, + 13.027262431020601 + ], + [ + 77.633985942650099, + 13.027228088050901 + ], + [ + 77.633986969891197, + 13.027227730698399 + ], + [ + 77.634069447494198, + 13.0271990364636 + ], + [ + 77.634973908888597, + 13.0268843717278 + ], + [ + 77.635815445317306, + 13.0266318916057 + ], + [ + 77.636303807508398, + 13.026517633036701 + ], + [ + 77.636986144088198, + 13.0263579907304 + ], + [ + 77.637150438910496, + 13.0263201822223 + ], + [ + 77.6384703070771, + 13.026088117319301 + ], + [ + 77.638581293977595, + 13.0260686027317 + ], + [ + 77.638688414618102, + 13.0260497679901 + ], + [ + 77.639011595474997, + 13.025992944155099 + ], + [ + 77.639413689288304, + 13.025924800404599 + ], + [ + 77.639649649870407, + 13.025884811245099 + ], + [ + 77.639936984176003, + 13.025774604559601 + ], + [ + 77.639885494514104, + 13.024991427998501 + ], + [ + 77.639879413175805, + 13.024919431892901 + ], + [ + 77.640363911752104, + 13.024682950444999 + ], + [ + 77.640202893176905, + 13.0228051400452 + ], + [ + 77.640144140535099, + 13.022300302530599 + ], + [ + 77.640084748286597, + 13.0218359445256 + ], + [ + 77.639136777531903, + 13.022157772973801 + ], + [ + 77.638422703363901, + 13.022372882973301 + ], + [ + 77.637222828624104, + 13.0228192841997 + ], + [ + 77.637161318894499, + 13.0223435290285 + ], + [ + 77.637076278256401, + 13.0216857605049 + ], + [ + 77.636914284046796, + 13.020809645103199 + ], + [ + 77.636921585334093, + 13.0201275427965 + ], + [ + 77.636858480644804, + 13.0194290391664 + ], + [ + 77.636675694648105, + 13.0186848390371 + ], + [ + 77.636506152677399, + 13.018082047428001 + ], + [ + 77.636284010369494, + 13.017255191420301 + ], + [ + 77.636116456539199, + 13.0161682675473 + ], + [ + 77.636016359445804, + 13.0157374148408 + ], + [ + 77.635918438376095, + 13.015121600114 + ], + [ + 77.635004508392797, + 13.015265217682799 + ], + [ + 77.635276511363998, + 13.0163401734251 + ], + [ + 77.634745299018704, + 13.0164530844786 + ], + [ + 77.633855567842204, + 13.016731857703601 + ], + [ + 77.633563980657101, + 13.0167775542028 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "100", + "group": "jeevanahalli", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "62", + "ward_name": "62 - Jeevanahalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಜೀವನಹಳ್ಳಿ", + "dig_ward_n": "Jeevanahalli", + "Assembly": "160 - Sarvagnanagar", + "Slno": "62" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.627843431526003, + 12.9947144386616 + ], + [ + 77.627675374873903, + 12.994745134413501 + ], + [ + 77.627136657993503, + 12.9948901771854 + ], + [ + 77.627088494529204, + 12.994903144225599 + ], + [ + 77.626951930304401, + 12.9949399125552 + ], + [ + 77.626231898249102, + 12.995185471318999 + ], + [ + 77.626097688000698, + 12.9952458496173 + ], + [ + 77.625988562918707, + 12.9952949425815 + ], + [ + 77.625425576555202, + 12.995548215312899 + ], + [ + 77.625050403865004, + 12.995790283953299 + ], + [ + 77.625034928161995, + 12.995799545922299 + ], + [ + 77.624616682042998, + 12.99604988306 + ], + [ + 77.624153282982107, + 12.9964441643746 + ], + [ + 77.623435724175593, + 12.9970801635521 + ], + [ + 77.623163499286804, + 12.9973214446192 + ], + [ + 77.622517051053805, + 12.997891027232599 + ], + [ + 77.622395423320697, + 12.9979981930591 + ], + [ + 77.622816390599397, + 12.997960171449201 + ], + [ + 77.623214308879597, + 12.9980470514685 + ], + [ + 77.623258764379202, + 12.9980816167761 + ], + [ + 77.623876707220603, + 12.9985620777439 + ], + [ + 77.624192916531499, + 12.9988077347724 + ], + [ + 77.624561164310705, + 12.999093817782301 + ], + [ + 77.624637405254006, + 12.999170967212899 + ], + [ + 77.624904495203694, + 12.999437031883801 + ], + [ + 77.625007659721106, + 12.9995556908521 + ], + [ + 77.625039645997504, + 12.9995858575656 + ], + [ + 77.625161163039905, + 12.999697555246801 + ], + [ + 77.625254467500596, + 12.999819270985199 + ], + [ + 77.625441234986496, + 12.9999382838574 + ], + [ + 77.625666442388606, + 13.000064671638199 + ], + [ + 77.625824571544797, + 13.0001534141297 + ], + [ + 77.626119450407899, + 13.000332285525101 + ], + [ + 77.626202152455306, + 13.0003872172901 + ], + [ + 77.626343854968994, + 13.000481337385301 + ], + [ + 77.626435100001402, + 13.000552274189401 + ], + [ + 77.626462867088406, + 13.000573861200399 + ], + [ + 77.626747926202299, + 13.000787111529799 + ], + [ + 77.627005937928899, + 13.0009539822404 + ], + [ + 77.627073652297696, + 13.0009931906029 + ], + [ + 77.627144778434001, + 13.0010218315321 + ], + [ + 77.627250587693098, + 13.001063466548599 + ], + [ + 77.627299154202404, + 13.0010823774873 + ], + [ + 77.627466042718794, + 13.0011281162262 + ], + [ + 77.627653152090602, + 13.0011483314756 + ], + [ + 77.627754240038698, + 13.0011636461966 + ], + [ + 77.628073971983895, + 13.001216044815299 + ], + [ + 77.628264614770004, + 13.0012419004977 + ], + [ + 77.629405709897298, + 13.0014169723335 + ], + [ + 77.629507557329205, + 13.001427851925801 + ], + [ + 77.629734856269593, + 13.0014521326361 + ], + [ + 77.629952402799901, + 13.0014774903575 + ], + [ + 77.634147427030697, + 13.0023730928554 + ], + [ + 77.635141393889, + 13.0030131838465 + ], + [ + 77.635298067600402, + 13.003119809011199 + ], + [ + 77.635443861192996, + 13.0032329622472 + ], + [ + 77.6354984699651, + 13.003278707199099 + ], + [ + 77.636060185272598, + 13.003782796175001 + ], + [ + 77.636066203991206, + 13.0037878483085 + ], + [ + 77.636322255057905, + 13.0039320749058 + ], + [ + 77.636350741838399, + 13.0039577592939 + ], + [ + 77.636340738815704, + 13.003895187168601 + ], + [ + 77.636339026288695, + 13.003884476627601 + ], + [ + 77.636423076883901, + 13.0038282881842 + ], + [ + 77.636439677082706, + 13.0038190863722 + ], + [ + 77.636506057647907, + 13.003780017194201 + ], + [ + 77.636586184435799, + 13.003734032791501 + ], + [ + 77.6367378026914, + 13.003642151673199 + ], + [ + 77.637126872312294, + 13.003407828777201 + ], + [ + 77.637214411891705, + 13.0033549942549 + ], + [ + 77.6373661452714, + 13.003277887769499 + ], + [ + 77.637436630112106, + 13.003242068697601 + ], + [ + 77.637702365713807, + 13.0031061155368 + ], + [ + 77.638086872053506, + 13.0029100392463 + ], + [ + 77.638445749463102, + 13.0027270324338 + ], + [ + 77.638526440204799, + 13.002679913467899 + ], + [ + 77.638565675805495, + 13.0026332150796 + ], + [ + 77.638593794167093, + 13.0025696908976 + ], + [ + 77.638605851513304, + 13.002511976293199 + ], + [ + 77.638675696268606, + 13.002256054488701 + ], + [ + 77.638747371271904, + 13.002118685853601 + ], + [ + 77.638761006185604, + 13.002086620917799 + ], + [ + 77.638801867743695, + 13.001990525923301 + ], + [ + 77.638868336182199, + 13.0018509517088 + ], + [ + 77.638908295075097, + 13.0017635927708 + ], + [ + 77.638959466662499, + 13.001702092678199 + ], + [ + 77.639049993003894, + 13.001605185497599 + ], + [ + 77.639192879896598, + 13.0014501538513 + ], + [ + 77.639244494812999, + 13.0013762274163 + ], + [ + 77.639469118693896, + 13.001055493299001 + ], + [ + 77.639589368170704, + 13.0008531447191 + ], + [ + 77.639619990810701, + 13.0008016148171 + ], + [ + 77.639654112803299, + 13.0007441961728 + ], + [ + 77.639679037589005, + 13.0006976549936 + ], + [ + 77.640020447383307, + 13.0000601541963 + ], + [ + 77.640065173384102, + 12.999976639472701 + ], + [ + 77.640078728207001, + 12.999951658011399 + ], + [ + 77.640152542142999, + 12.9998124678933 + ], + [ + 77.640431560357897, + 12.9992863262383 + ], + [ + 77.640469191609597, + 12.9991967323894 + ], + [ + 77.640492979572102, + 12.999105020852101 + ], + [ + 77.640527755102298, + 12.999017714559599 + ], + [ + 77.640579683067799, + 12.9989189412444 + ], + [ + 77.640652925870995, + 12.998821080347801 + ], + [ + 77.640696348290803, + 12.9987348153391 + ], + [ + 77.640715248774598, + 12.998705360941701 + ], + [ + 77.640749594844095, + 12.998651838147399 + ], + [ + 77.640962041767594, + 12.998323322578001 + ], + [ + 77.641310940555101, + 12.9978308061399 + ], + [ + 77.642102729039294, + 12.9966957546874 + ], + [ + 77.642149798073305, + 12.9966275205124 + ], + [ + 77.642682921991295, + 12.995860977490601 + ], + [ + 77.642706661033898, + 12.9958189544343 + ], + [ + 77.642719159592403, + 12.9958030176861 + ], + [ + 77.642718617465604, + 12.995802977130699 + ], + [ + 77.642480140509903, + 12.9957853859023 + ], + [ + 77.642369384656305, + 12.995777216206299 + ], + [ + 77.641324341085706, + 12.995777686486701 + ], + [ + 77.6412315468597, + 12.9953879088067 + ], + [ + 77.641177536516693, + 12.9953986215063 + ], + [ + 77.640659469882607, + 12.995683945917801 + ], + [ + 77.640448769724301, + 12.994870767335501 + ], + [ + 77.640315179887907, + 12.994886804297501 + ], + [ + 77.640047957807198, + 12.9949188838757 + ], + [ + 77.640036622956202, + 12.9949182971799 + ], + [ + 77.6398862954252, + 12.9949105205522 + ], + [ + 77.639883769810993, + 12.9949103899413 + ], + [ + 77.639722208651094, + 12.994925892507901 + ], + [ + 77.639541526889701, + 12.9949432299343 + ], + [ + 77.639471899485002, + 12.9949473264064 + ], + [ + 77.639407038235007, + 12.994947985743 + ], + [ + 77.639372299656003, + 12.9949483388658 + ], + [ + 77.639196295931299, + 12.994965937470001 + ], + [ + 77.639034935209395, + 12.994988129099401 + ], + [ + 77.639027837135103, + 12.9949891055503 + ], + [ + 77.638993076700899, + 12.9949952370189 + ], + [ + 77.638878411990902, + 12.995015467850299 + ], + [ + 77.638705719255, + 12.995019481419 + ], + [ + 77.638195319402499, + 12.995073533954001 + ], + [ + 77.637939056006303, + 12.9951006731999 + ], + [ + 77.637919523980202, + 12.994777904372301 + ], + [ + 77.637901132247094, + 12.9942360482349 + ], + [ + 77.638056806567107, + 12.9942017173795 + ], + [ + 77.637984095070806, + 12.9939060272351 + ], + [ + 77.637962350786296, + 12.993817601521 + ], + [ + 77.637954095359802, + 12.9937969242365 + ], + [ + 77.637924243729799, + 12.993722154535201 + ], + [ + 77.637889605845601, + 12.9936354009961 + ], + [ + 77.637471390880094, + 12.9936712673399 + ], + [ + 77.637439802339003, + 12.9934062137647 + ], + [ + 77.637413893863894, + 12.9932427346815 + ], + [ + 77.637405022878994, + 12.993166035321 + ], + [ + 77.637369609668298, + 12.9928660126849 + ], + [ + 77.637340031487199, + 12.992682243313199 + ], + [ + 77.636326456388304, + 12.9928811217227 + ], + [ + 77.634818305401694, + 12.9931911644008 + ], + [ + 77.634542722334004, + 12.993266232967001 + ], + [ + 77.634468656043495, + 12.993286181781301 + ], + [ + 77.634115378281095, + 12.9933100922 + ], + [ + 77.632957742948506, + 12.9935533306022 + ], + [ + 77.632579151063396, + 12.9936339587184 + ], + [ + 77.631912896525094, + 12.9937909040425 + ], + [ + 77.631874970252795, + 12.9937980640077 + ], + [ + 77.631842733674603, + 12.993803828352799 + ], + [ + 77.631792339292204, + 12.993812838377799 + ], + [ + 77.631783201076303, + 12.993814471306001 + ], + [ + 77.631633982007799, + 12.993841151671701 + ], + [ + 77.631607159556197, + 12.9938459477737 + ], + [ + 77.631282495223701, + 12.993899594768299 + ], + [ + 77.631270502018296, + 12.9939015764165 + ], + [ + 77.630602437483901, + 12.9940119662095 + ], + [ + 77.630494059953307, + 12.994029800685199 + ], + [ + 77.630442508307397, + 12.9940382837552 + ], + [ + 77.630441476443096, + 12.9940384532081 + ], + [ + 77.630339184292296, + 12.9940552873352 + ], + [ + 77.630191087770001, + 12.994081441511399 + ], + [ + 77.630064954543798, + 12.994103715244799 + ], + [ + 77.629705520360005, + 12.994167191130799 + ], + [ + 77.629097796023601, + 12.994274513440599 + ], + [ + 77.628891886945098, + 12.994186257091499 + ], + [ + 77.629080169379094, + 12.994350352561399 + ], + [ + 77.629133682975393, + 12.9944017568505 + ], + [ + 77.629151335182897, + 12.994437714546599 + ], + [ + 77.629152197693401, + 12.9944475340187 + ], + [ + 77.6291546061546, + 12.9944749471191 + ], + [ + 77.628120485660801, + 12.9946638342022 + ], + [ + 77.628064660521005, + 12.9946740304984 + ], + [ + 77.627843431526003, + 12.9947144386616 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "101", + "group": "Subbayanapalya", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "59", + "ward_name": "59 - Subbayanapalya", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಸುಬ್ಬಯ್ಯನಪಾಳ್ಯ", + "dig_ward_n": "Subbayanapalya", + "Assembly": "160 - Sarvagnanagar", + "Slno": "59" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.636177657207995, + 13.0041552563228 + ], + [ + 77.636138488780105, + 13.004749310812 + ], + [ + 77.636108024447296, + 13.004948416987 + ], + [ + 77.636159408594295, + 13.0058633170215 + ], + [ + 77.636147872913895, + 13.006035198659299 + ], + [ + 77.635865248744494, + 13.006659278968201 + ], + [ + 77.635716340168699, + 13.007056984019901 + ], + [ + 77.635590699551202, + 13.008057403431 + ], + [ + 77.635422365540506, + 13.009336808960301 + ], + [ + 77.6351910672374, + 13.0106356015022 + ], + [ + 77.635173723149407, + 13.0108768066771 + ], + [ + 77.637235822276693, + 13.0107840637402 + ], + [ + 77.638692229878004, + 13.0106718562363 + ], + [ + 77.638775813018597, + 13.0112283138576 + ], + [ + 77.639605919552395, + 13.011113816404601 + ], + [ + 77.639576130332102, + 13.011511644679899 + ], + [ + 77.640078221545707, + 13.0114126547568 + ], + [ + 77.640480107605498, + 13.0115231447989 + ], + [ + 77.640997636092706, + 13.0115803935253 + ], + [ + 77.641931935308705, + 13.011829997972701 + ], + [ + 77.641972552250607, + 13.0116991941445 + ], + [ + 77.641985493508997, + 13.0115829824611 + ], + [ + 77.641999367708905, + 13.0114583903575 + ], + [ + 77.641999907576803, + 13.0114549971026 + ], + [ + 77.642037064257593, + 13.0111576253869 + ], + [ + 77.642050995933403, + 13.011044893457001 + ], + [ + 77.642084473731401, + 13.010794304844699 + ], + [ + 77.642078744230602, + 13.010719854843501 + ], + [ + 77.642074631719794, + 13.0106577878952 + ], + [ + 77.642052202675501, + 13.010606070799099 + ], + [ + 77.642035650833407, + 13.0105655863471 + ], + [ + 77.641988417995407, + 13.0104554008176 + ], + [ + 77.641978823099805, + 13.010419362498601 + ], + [ + 77.641969144471503, + 13.010375420269 + ], + [ + 77.641923447972403, + 13.0101338816305 + ], + [ + 77.641879991366906, + 13.009484544946799 + ], + [ + 77.641879924284495, + 13.009457860955401 + ], + [ + 77.641879849458107, + 13.0094167912766 + ], + [ + 77.641878899117202, + 13.0091096444283 + ], + [ + 77.641878864875196, + 13.009052052927499 + ], + [ + 77.641880944828699, + 13.008923297020001 + ], + [ + 77.641883793406905, + 13.008701934621801 + ], + [ + 77.641886485779196, + 13.008521226884101 + ], + [ + 77.641887543580197, + 13.008269029259701 + ], + [ + 77.641948416054504, + 13.0083079331165 + ], + [ + 77.642210683109994, + 13.008470311458501 + ], + [ + 77.642482674215501, + 13.0085964603319 + ], + [ + 77.642567836075301, + 13.008645278931899 + ], + [ + 77.642606662681004, + 13.0086685985701 + ], + [ + 77.642744464529898, + 13.008747453720501 + ], + [ + 77.642847083240795, + 13.0088061763099 + ], + [ + 77.642964726656004, + 13.008877249733599 + ], + [ + 77.643051716297094, + 13.0089446846403 + ], + [ + 77.643045868232406, + 13.007929841554599 + ], + [ + 77.643512625330999, + 13.007935281613999 + ], + [ + 77.6437606920408, + 13.0078982892099 + ], + [ + 77.643587397403707, + 13.007165280796 + ], + [ + 77.643404964244297, + 13.006298150518401 + ], + [ + 77.643363477497999, + 13.006296237025101 + ], + [ + 77.643177800177, + 13.0062710267506 + ], + [ + 77.643157612257596, + 13.0062678446711 + ], + [ + 77.642855877828097, + 13.006222893741899 + ], + [ + 77.642852529170597, + 13.0062223948471 + ], + [ + 77.642711795955094, + 13.006200114137 + ], + [ + 77.642557327642706, + 13.006185877103301 + ], + [ + 77.642302573737794, + 13.006162499898 + ], + [ + 77.642277205031505, + 13.00615937051 + ], + [ + 77.641945180628497, + 13.006125486463 + ], + [ + 77.641637936311497, + 13.006093608170101 + ], + [ + 77.641094494391695, + 13.0060505830187 + ], + [ + 77.6410925128868, + 13.006050253573401 + ], + [ + 77.641092263695697, + 13.0060502118434 + ], + [ + 77.641017775753994, + 13.006037812953499 + ], + [ + 77.641012652017096, + 13.006036989713699 + ], + [ + 77.640674009343101, + 13.0059825909309 + ], + [ + 77.640110575053399, + 13.005846039070001 + ], + [ + 77.639703803865402, + 13.0057135373628 + ], + [ + 77.639700337449796, + 13.0057124442801 + ], + [ + 77.639327511713205, + 13.0055773380262 + ], + [ + 77.639200346795405, + 13.0055312038164 + ], + [ + 77.638819937857605, + 13.0054413449593 + ], + [ + 77.638634177404299, + 13.0054082272834 + ], + [ + 77.638541459325893, + 13.005406911684799 + ], + [ + 77.638463157857004, + 13.0054077079582 + ], + [ + 77.638311220578501, + 13.0054148992667 + ], + [ + 77.638067893908499, + 13.0054377000396 + ], + [ + 77.638053326009597, + 13.0054297328802 + ], + [ + 77.638007083268704, + 13.005404440673701 + ], + [ + 77.637593493407607, + 13.00517150178 + ], + [ + 77.637458090290096, + 13.0050543063404 + ], + [ + 77.637452261211493, + 13.005047590058 + ], + [ + 77.637449398738994, + 13.0050436667595 + ], + [ + 77.637448172228304, + 13.005041985343199 + ], + [ + 77.637412692717405, + 13.0050084683128 + ], + [ + 77.637346068809407, + 13.00492953298 + ], + [ + 77.637330475045403, + 13.004911058759101 + ], + [ + 77.637298966097902, + 13.0048718541646 + ], + [ + 77.637254036922201, + 13.004815848935401 + ], + [ + 77.637141386520995, + 13.004667639384699 + ], + [ + 77.637140755874796, + 13.0046668092414 + ], + [ + 77.636941991123805, + 13.004484552755001 + ], + [ + 77.636832590867598, + 13.0043842392326 + ], + [ + 77.636706520678104, + 13.0042782400715 + ], + [ + 77.636650748989197, + 13.004231378920901 + ], + [ + 77.636646083750094, + 13.004227123406601 + ], + [ + 77.636177657207995, + 13.0041552563228 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "102", + "group": "HRBR", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "60", + "ward_name": "60 - HRBR Layout", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಹೆಚ್‌ಆರ್‌ಬಿಆರ್ ಲೇಔಟ್", + "dig_ward_n": "HRBR", + "Assembly": "160 - Sarvagnanagar", + "Slno": "60" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.637235822276693, + 13.0107840637402 + ], + [ + 77.635173723149407, + 13.0108768066771 + ], + [ + 77.635124489244603, + 13.011157325436701 + ], + [ + 77.635213797257904, + 13.011867209644899 + ], + [ + 77.634023596234698, + 13.011874079492101 + ], + [ + 77.632899231246896, + 13.0117492772684 + ], + [ + 77.632995409107394, + 13.0107325398864 + ], + [ + 77.6318733340687, + 13.010551633910699 + ], + [ + 77.631648919060893, + 13.0121362786593 + ], + [ + 77.631708457736394, + 13.0129789799128 + ], + [ + 77.630316168708802, + 13.012914861339199 + ], + [ + 77.630363753436995, + 13.011774134422801 + ], + [ + 77.629632520631603, + 13.011683067776501 + ], + [ + 77.629527545940107, + 13.011777660355699 + ], + [ + 77.629139947079096, + 13.011883788615201 + ], + [ + 77.628681255319904, + 13.0120128781557 + ], + [ + 77.628726951819104, + 13.0126983256432 + ], + [ + 77.628747198917694, + 13.0127071544998 + ], + [ + 77.628808745784994, + 13.0127287263632 + ], + [ + 77.628785828981407, + 13.0139653809984 + ], + [ + 77.628864607529707, + 13.0141820800514 + ], + [ + 77.628833386372705, + 13.014756173031399 + ], + [ + 77.629573578200706, + 13.0150231844313 + ], + [ + 77.630036557837002, + 13.015722863047801 + ], + [ + 77.629231877388193, + 13.016123366354799 + ], + [ + 77.6293230040379, + 13.016277434611199 + ], + [ + 77.6293454273208, + 13.0163267573969 + ], + [ + 77.629392327314306, + 13.0164299190526 + ], + [ + 77.629534543729207, + 13.016755962488 + ], + [ + 77.629691609422295, + 13.017130692537799 + ], + [ + 77.629775698636195, + 13.017421576522899 + ], + [ + 77.629819050878794, + 13.017612394751801 + ], + [ + 77.629836218624604, + 13.017687956980399 + ], + [ + 77.629851341865702, + 13.0177545203117 + ], + [ + 77.629857791398706, + 13.0177829095544 + ], + [ + 77.629883540975399, + 13.017776520502499 + ], + [ + 77.630146108428093, + 13.017695933994 + ], + [ + 77.630633106531903, + 13.0175464651744 + ], + [ + 77.633563980657101, + 13.0167775542028 + ], + [ + 77.633855567842204, + 13.016731857703601 + ], + [ + 77.634745299018704, + 13.0164530844786 + ], + [ + 77.635276511363998, + 13.0163401734251 + ], + [ + 77.635004508392797, + 13.015265217682799 + ], + [ + 77.635918438376095, + 13.015121600114 + ], + [ + 77.636016359445804, + 13.0157374148408 + ], + [ + 77.636116456539199, + 13.0161682675473 + ], + [ + 77.636284010369494, + 13.017255191420301 + ], + [ + 77.636980496694605, + 13.0171109298393 + ], + [ + 77.637667477674199, + 13.016817507022299 + ], + [ + 77.638534622621293, + 13.016624117366 + ], + [ + 77.638472342274895, + 13.016303249021201 + ], + [ + 77.639396389213502, + 13.0161162101231 + ], + [ + 77.639397604482198, + 13.016086188374 + ], + [ + 77.639398096559702, + 13.0160782785898 + ], + [ + 77.639395520359301, + 13.0158430199939 + ], + [ + 77.639394902880895, + 13.015832386905 + ], + [ + 77.639392703178899, + 13.0157944907717 + ], + [ + 77.639391912204701, + 13.0157741722604 + ], + [ + 77.639371616264896, + 13.015434473554301 + ], + [ + 77.639341826133105, + 13.0153450012756 + ], + [ + 77.639341029094695, + 13.0153358561112 + ], + [ + 77.639338990955594, + 13.015306516264999 + ], + [ + 77.639314615117001, + 13.015016546217099 + ], + [ + 77.639314567298101, + 13.0150120296893 + ], + [ + 77.639313128849395, + 13.0149849422441 + ], + [ + 77.639298264280001, + 13.0147231067027 + ], + [ + 77.639295423265807, + 13.014672319205699 + ], + [ + 77.639258430861801, + 13.014043448336199 + ], + [ + 77.639297594880205, + 13.014044178954901 + ], + [ + 77.640268824204099, + 13.0140605878277 + ], + [ + 77.640625413600901, + 13.014083319712601 + ], + [ + 77.641001081313703, + 13.0140958362423 + ], + [ + 77.641520245020899, + 13.0141131338289 + ], + [ + 77.641785950469597, + 13.014091252858901 + ], + [ + 77.641765278243795, + 13.013516782583601 + ], + [ + 77.641762330854306, + 13.012911578321001 + ], + [ + 77.641931935308705, + 13.011829997972701 + ], + [ + 77.640997636092706, + 13.0115803935253 + ], + [ + 77.640480107605498, + 13.0115231447989 + ], + [ + 77.640078221545707, + 13.0114126547568 + ], + [ + 77.639576130332102, + 13.011511644679899 + ], + [ + 77.639605919552395, + 13.011113816404601 + ], + [ + 77.638775813018597, + 13.0112283138576 + ], + [ + 77.638692229878004, + 13.0106718562363 + ], + [ + 77.637235822276693, + 13.0107840637402 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "103", + "group": "Kalyanagar", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "57", + "ward_name": "57 - Kalyanagar", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಕಲ್ಯಾಣನಗರ", + "dig_ward_n": "Kalyanagar", + "Assembly": "160 - Sarvagnanagar", + "Slno": "57" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.641520245020899, + 13.0141131338289 + ], + [ + 77.641001081313703, + 13.0140958362423 + ], + [ + 77.640625413600901, + 13.014083319712601 + ], + [ + 77.640268824204099, + 13.0140605878277 + ], + [ + 77.639297594880205, + 13.014044178954901 + ], + [ + 77.639258430861801, + 13.014043448336199 + ], + [ + 77.639295423265807, + 13.014672319205699 + ], + [ + 77.639298264280001, + 13.0147231067027 + ], + [ + 77.639313128849395, + 13.0149849422441 + ], + [ + 77.639314567298101, + 13.0150120296893 + ], + [ + 77.639314615117001, + 13.015016546217099 + ], + [ + 77.639338990955594, + 13.015306516264999 + ], + [ + 77.639341029094695, + 13.0153358561112 + ], + [ + 77.639341826133105, + 13.0153450012756 + ], + [ + 77.639371616264896, + 13.015434473554301 + ], + [ + 77.639391912204701, + 13.0157741722604 + ], + [ + 77.639392703178899, + 13.0157944907717 + ], + [ + 77.639394902880895, + 13.015832386905 + ], + [ + 77.639395520359301, + 13.0158430199939 + ], + [ + 77.639398096559702, + 13.0160782785898 + ], + [ + 77.639397604482198, + 13.016086188374 + ], + [ + 77.639396389213502, + 13.0161162101231 + ], + [ + 77.638472342274895, + 13.016303249021201 + ], + [ + 77.638534622621293, + 13.016624117366 + ], + [ + 77.637667477674199, + 13.016817507022299 + ], + [ + 77.636980496694605, + 13.0171109298393 + ], + [ + 77.636284010369494, + 13.017255191420301 + ], + [ + 77.636506152677399, + 13.018082047428001 + ], + [ + 77.636675694648105, + 13.0186848390371 + ], + [ + 77.636858480644804, + 13.0194290391664 + ], + [ + 77.636921585334093, + 13.0201275427965 + ], + [ + 77.636914284046796, + 13.020809645103199 + ], + [ + 77.637076278256401, + 13.0216857605049 + ], + [ + 77.637161318894499, + 13.0223435290285 + ], + [ + 77.637222828624104, + 13.0228192841997 + ], + [ + 77.638422703363901, + 13.022372882973301 + ], + [ + 77.639136777531903, + 13.022157772973801 + ], + [ + 77.640084748286597, + 13.0218359445256 + ], + [ + 77.640144140535099, + 13.022300302530599 + ], + [ + 77.640202893176905, + 13.0228051400452 + ], + [ + 77.640363911752104, + 13.024682950444999 + ], + [ + 77.639879413175805, + 13.024919431892901 + ], + [ + 77.639885494514104, + 13.024991427998501 + ], + [ + 77.639936984176003, + 13.025774604559601 + ], + [ + 77.640115361434496, + 13.0257072902602 + ], + [ + 77.640555990876706, + 13.0254995343874 + ], + [ + 77.640577456470893, + 13.025490285210401 + ], + [ + 77.640632552166693, + 13.025466546003701 + ], + [ + 77.640837471231904, + 13.0253782502843 + ], + [ + 77.642020149447603, + 13.024868652955499 + ], + [ + 77.642029356011406, + 13.024864686196899 + ], + [ + 77.642753474178406, + 13.0245526720432 + ], + [ + 77.643119485450399, + 13.0243949613025 + ], + [ + 77.643231651468795, + 13.024344653153101 + ], + [ + 77.643307973915896, + 13.0243104207507 + ], + [ + 77.643339676281698, + 13.0242962021407 + ], + [ + 77.643362879016607, + 13.0242857958601 + ], + [ + 77.644487525057897, + 13.023781371253101 + ], + [ + 77.644757113206296, + 13.0236653470793 + ], + [ + 77.645095971748404, + 13.023519510771701 + ], + [ + 77.6451825263741, + 13.0234822599958 + ], + [ + 77.645190620341893, + 13.0234787760745 + ], + [ + 77.645206624850601, + 13.0234718877959 + ], + [ + 77.645285285348294, + 13.023117234175499 + ], + [ + 77.645186078496906, + 13.0215991386367 + ], + [ + 77.645076234411803, + 13.0195476324618 + ], + [ + 77.645030537912703, + 13.0185194612306 + ], + [ + 77.645026858413004, + 13.017801587515599 + ], + [ + 77.645026886107601, + 13.017801592653401 + ], + [ + 77.644975876770602, + 13.0162803608515 + ], + [ + 77.644836871797196, + 13.014979070557001 + ], + [ + 77.645729259336306, + 13.014921399811801 + ], + [ + 77.646145643271595, + 13.0148889618893 + ], + [ + 77.646446003117404, + 13.0148655617296 + ], + [ + 77.647332101831793, + 13.0147513450641 + ], + [ + 77.647500555375103, + 13.014715954531001 + ], + [ + 77.647906110551702, + 13.014630752216499 + ], + [ + 77.648829782698897, + 13.014382293397899 + ], + [ + 77.649024267380796, + 13.014332501484301 + ], + [ + 77.648310719648407, + 13.013249840061899 + ], + [ + 77.647757333427293, + 13.012557539811599 + ], + [ + 77.647122786639997, + 13.0120506069449 + ], + [ + 77.647748391601297, + 13.0111547087815 + ], + [ + 77.648196075161593, + 13.010512283539899 + ], + [ + 77.648455655418999, + 13.0101654377528 + ], + [ + 77.648828794019806, + 13.0098134584268 + ], + [ + 77.648909543782494, + 13.009735015800199 + ], + [ + 77.649172557295401, + 13.009506609328501 + ], + [ + 77.649535630810604, + 13.009258067590499 + ], + [ + 77.649779604961097, + 13.009197993767399 + ], + [ + 77.650040437258895, + 13.0092169437289 + ], + [ + 77.650389539358102, + 13.009098758481599 + ], + [ + 77.650710775961102, + 13.0089272764501 + ], + [ + 77.650878329791396, + 13.008814123214099 + ], + [ + 77.650467333301805, + 13.0080647550283 + ], + [ + 77.650008736292307, + 13.007326810967401 + ], + [ + 77.649953961525199, + 13.007361636931099 + ], + [ + 77.649736773597596, + 13.0074598412805 + ], + [ + 77.649678155496602, + 13.0074706032209 + ], + [ + 77.649573441749993, + 13.0074784482171 + ], + [ + 77.649509006204198, + 13.0074836233093 + ], + [ + 77.649303704810507, + 13.007508304957099 + ], + [ + 77.649071379254707, + 13.007536650151 + ], + [ + 77.6489690163624, + 13.007548987889701 + ], + [ + 77.6488579573046, + 13.007555768153599 + ], + [ + 77.648615148242598, + 13.007572927535399 + ], + [ + 77.648568536764799, + 13.007575661924699 + ], + [ + 77.648396915797505, + 13.0075815200184 + ], + [ + 77.648379739885996, + 13.007582106414199 + ], + [ + 77.647981994881803, + 13.0075952006799 + ], + [ + 77.647981287657799, + 13.007528582324101 + ], + [ + 77.647953109673907, + 13.0075351594027 + ], + [ + 77.647849753329496, + 13.007559285348099 + ], + [ + 77.647763951046699, + 13.0075916318804 + ], + [ + 77.647495199457694, + 13.0076929481626 + ], + [ + 77.647218902903006, + 13.0077971092108 + ], + [ + 77.646704443647195, + 13.0079910532515 + ], + [ + 77.646624583689103, + 13.007899269693899 + ], + [ + 77.646548238182007, + 13.007813096486499 + ], + [ + 77.646485003144306, + 13.0077143677654 + ], + [ + 77.646378420110096, + 13.007546067832401 + ], + [ + 77.646350448812498, + 13.007514734219599 + ], + [ + 77.646288664913698, + 13.007444221828299 + ], + [ + 77.646241789815704, + 13.0074221150212 + ], + [ + 77.646178110251896, + 13.007390016380199 + ], + [ + 77.646096343902698, + 13.0073355172355 + ], + [ + 77.646070075027097, + 13.007301907719199 + ], + [ + 77.645845142770796, + 13.006995916984801 + ], + [ + 77.645792571088094, + 13.0069253104698 + ], + [ + 77.645607810957699, + 13.0065522840115 + ], + [ + 77.645527785219301, + 13.0063904881944 + ], + [ + 77.645474864567902, + 13.0063955448261 + ], + [ + 77.645193948807602, + 13.0064029261587 + ], + [ + 77.645112780694603, + 13.0064048829759 + ], + [ + 77.644971687168393, + 13.0064029337177 + ], + [ + 77.644861108136595, + 13.006400673301 + ], + [ + 77.644764359880995, + 13.0063994010927 + ], + [ + 77.644760612723303, + 13.006399202601299 + ], + [ + 77.644548886494803, + 13.006388046587301 + ], + [ + 77.644513142390807, + 13.006383893938301 + ], + [ + 77.644233535658699, + 13.00635173713 + ], + [ + 77.644145373857, + 13.006345861073999 + ], + [ + 77.643541477764103, + 13.0063034573721 + ], + [ + 77.643463717092899, + 13.006300861041501 + ], + [ + 77.643404964244297, + 13.006298150518401 + ], + [ + 77.643587397403707, + 13.007165280796 + ], + [ + 77.6437606920408, + 13.0078982892099 + ], + [ + 77.643512625330999, + 13.007935281613999 + ], + [ + 77.643045868232406, + 13.007929841554599 + ], + [ + 77.643051716297094, + 13.0089446846403 + ], + [ + 77.642964726656004, + 13.008877249733599 + ], + [ + 77.642847083240795, + 13.0088061763099 + ], + [ + 77.642744464529898, + 13.008747453720501 + ], + [ + 77.642606662681004, + 13.0086685985701 + ], + [ + 77.642567836075301, + 13.008645278931899 + ], + [ + 77.642482674215501, + 13.0085964603319 + ], + [ + 77.642210683109994, + 13.008470311458501 + ], + [ + 77.641948416054504, + 13.0083079331165 + ], + [ + 77.641887543580197, + 13.008269029259701 + ], + [ + 77.641886485779196, + 13.008521226884101 + ], + [ + 77.641883793406905, + 13.008701934621801 + ], + [ + 77.641880944828699, + 13.008923297020001 + ], + [ + 77.641878864875196, + 13.009052052927499 + ], + [ + 77.641878899117202, + 13.0091096444283 + ], + [ + 77.641879849458107, + 13.0094167912766 + ], + [ + 77.641879924284495, + 13.009457860955401 + ], + [ + 77.641879991366906, + 13.009484544946799 + ], + [ + 77.641923447972403, + 13.0101338816305 + ], + [ + 77.641969144471503, + 13.010375420269 + ], + [ + 77.641978823099805, + 13.010419362498601 + ], + [ + 77.641988417995407, + 13.0104554008176 + ], + [ + 77.642035650833407, + 13.0105655863471 + ], + [ + 77.642052202675501, + 13.010606070799099 + ], + [ + 77.642074631719794, + 13.0106577878952 + ], + [ + 77.642078744230602, + 13.010719854843501 + ], + [ + 77.642084473731401, + 13.010794304844699 + ], + [ + 77.642050995933403, + 13.011044893457001 + ], + [ + 77.642037064257593, + 13.0111576253869 + ], + [ + 77.641999907576803, + 13.0114549971026 + ], + [ + 77.641999367708905, + 13.0114583903575 + ], + [ + 77.641985493508997, + 13.0115829824611 + ], + [ + 77.641972552250607, + 13.0116991941445 + ], + [ + 77.641931935308705, + 13.011829997972701 + ], + [ + 77.641762330854306, + 13.012911578321001 + ], + [ + 77.641765278243795, + 13.013516782583601 + ], + [ + 77.641785950469597, + 13.014091252858901 + ], + [ + 77.641520245020899, + 13.0141131338289 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "105", + "group": "Ulsoor", + "Corporatio": "Central", + "ac_no": "162", + "ac": "Shivajinagar", + "corporat_1": "1", + "ward_id": "13", + "ward_name": "13 - Halasuru", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಿವಾಜಿನಗರ", + "ward_name_": "ಹಲಸೂರು", + "dig_ward_n": "Ulsoor", + "Assembly": "162 - Shivajinagar", + "Slno": "13" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.622226216027002, + 12.9731823619768 + ], + [ + 77.621909808856699, + 12.9729949547693 + ], + [ + 77.621706034551906, + 12.9728710258403 + ], + [ + 77.621676017124997, + 12.972852770456401 + ], + [ + 77.621633997550106, + 12.9728272153927 + ], + [ + 77.621609098668699, + 12.972821394524701 + ], + [ + 77.621032027061602, + 12.9726864776742 + ], + [ + 77.621015570761699, + 12.972685044476099 + ], + [ + 77.620822841741102, + 12.972668258924999 + ], + [ + 77.620343790854093, + 12.972686952652399 + ], + [ + 77.620276688858098, + 12.9726895719892 + ], + [ + 77.620129587312803, + 12.972709756604299 + ], + [ + 77.620045756118301, + 12.9737327877535 + ], + [ + 77.620038455157498, + 12.974709146958199 + ], + [ + 77.620269531575602, + 12.9759437977721 + ], + [ + 77.620301035887906, + 12.9762947741792 + ], + [ + 77.620261538808904, + 12.976712279193899 + ], + [ + 77.620220150802396, + 12.976949335687401 + ], + [ + 77.620286882256707, + 12.978084053796399 + ], + [ + 77.620560849981302, + 12.978643011781401 + ], + [ + 77.620696017993694, + 12.978749212702301 + ], + [ + 77.621168008073298, + 12.978899822692901 + ], + [ + 77.621580750085997, + 12.979211179693401 + ], + [ + 77.621780896497398, + 12.9796447921052 + ], + [ + 77.621950843936403, + 12.9800458425666 + ], + [ + 77.622314003239396, + 12.9809743932269 + ], + [ + 77.62285531194, + 12.9814589411867 + ], + [ + 77.622928483611901, + 12.9817399093882 + ], + [ + 77.623346107243904, + 12.981773858219499 + ], + [ + 77.623818215653799, + 12.981812235929601 + ], + [ + 77.624557749625396, + 12.981891722479901 + ], + [ + 77.624553506317895, + 12.9818714385066 + ], + [ + 77.624416818576194, + 12.9812460749819 + ], + [ + 77.624353311812399, + 12.9809553650277 + ], + [ + 77.624312444047106, + 12.9809015727903 + ], + [ + 77.6250047704564, + 12.9807624572355 + ], + [ + 77.625120508980203, + 12.980763546854501 + ], + [ + 77.625297277419307, + 12.9807646108267 + ], + [ + 77.625330673409806, + 12.980764811941899 + ], + [ + 77.625574815693, + 12.980766862896999 + ], + [ + 77.625501623395294, + 12.980321541648401 + ], + [ + 77.625879297047803, + 12.9802646509404 + ], + [ + 77.625772643191098, + 12.979812892253101 + ], + [ + 77.625694316357894, + 12.9794816789049 + ], + [ + 77.626225235826297, + 12.979379198526001 + ], + [ + 77.626250038022704, + 12.9793834650128 + ], + [ + 77.626276062775204, + 12.9793944947459 + ], + [ + 77.626309571523905, + 12.979405448861799 + ], + [ + 77.626360141048394, + 12.9794088677783 + ], + [ + 77.626440360334001, + 12.979414290810301 + ], + [ + 77.626441464266506, + 12.979409762589601 + ], + [ + 77.626446924614797, + 12.9793814757523 + ], + [ + 77.626439702302505, + 12.9792968537273 + ], + [ + 77.626397286088405, + 12.9791504776216 + ], + [ + 77.626382057896095, + 12.9790162487415 + ], + [ + 77.626315380557998, + 12.9787526739764 + ], + [ + 77.626294353647495, + 12.978669320666199 + ], + [ + 77.626425705895898, + 12.978677027733299 + ], + [ + 77.626702434867497, + 12.978657292693001 + ], + [ + 77.627073654222301, + 12.978589173298101 + ], + [ + 77.627354725913705, + 12.9785345933381 + ], + [ + 77.627472411426197, + 12.978511740948999 + ], + [ + 77.627772677988105, + 12.978430786568399 + ], + [ + 77.628144466196602, + 12.978307326001 + ], + [ + 77.628406920695596, + 12.9781894874838 + ], + [ + 77.6284955029858, + 12.9781321638247 + ], + [ + 77.628495558802598, + 12.9781321280272 + ], + [ + 77.628493808006596, + 12.978129888102799 + ], + [ + 77.628493102158004, + 12.9781291670895 + ], + [ + 77.628470274264899, + 12.9781058902147 + ], + [ + 77.6282854564448, + 12.9779174333526 + ], + [ + 77.628043430417506, + 12.977787756063 + ], + [ + 77.628035235776096, + 12.9777853337397 + ], + [ + 77.627829162083302, + 12.9777244245986 + ], + [ + 77.627569385044296, + 12.9776039603413 + ], + [ + 77.627504012018605, + 12.977574130879001 + ], + [ + 77.627453641897603, + 12.977542136063599 + ], + [ + 77.627322012300993, + 12.9774585265671 + ], + [ + 77.627223162853397, + 12.9773640654861 + ], + [ + 77.627212092219295, + 12.9773534863716 + ], + [ + 77.627172903184501, + 12.977296634919201 + ], + [ + 77.627142517741603, + 12.9772525554837 + ], + [ + 77.627088724126594, + 12.977174050429401 + ], + [ + 77.627045292001398, + 12.9770471315494 + ], + [ + 77.626983589043206, + 12.9768668230633 + ], + [ + 77.626922750409307, + 12.9767016090724 + ], + [ + 77.626909738559903, + 12.9766662734447 + ], + [ + 77.626904095541306, + 12.976650948947899 + ], + [ + 77.626851427124606, + 12.9765079224091 + ], + [ + 77.626837984719998, + 12.9764888606925 + ], + [ + 77.626825750397998, + 12.9764708889332 + ], + [ + 77.626635654624096, + 12.9761916491561 + ], + [ + 77.626580947280104, + 12.9761357384871 + ], + [ + 77.626385970230601, + 12.975935569318599 + ], + [ + 77.626122036563302, + 12.9756931842683 + ], + [ + 77.625973203179697, + 12.9755557875728 + ], + [ + 77.625660676633103, + 12.975335514054899 + ], + [ + 77.625659637203896, + 12.975334781041299 + ], + [ + 77.625610470557305, + 12.9753001274863 + ], + [ + 77.625545136238102, + 12.975254078892901 + ], + [ + 77.625458660109302, + 12.975188325275001 + ], + [ + 77.625356220718103, + 12.975110899876199 + ], + [ + 77.625349554601399, + 12.9751058610843 + ], + [ + 77.625317067459605, + 12.9750824744683 + ], + [ + 77.625274698896703, + 12.975050153470001 + ], + [ + 77.625086480405301, + 12.9749298217404 + ], + [ + 77.624935212033805, + 12.974833113335199 + ], + [ + 77.624769111669906, + 12.9747269214259 + ], + [ + 77.624746073843198, + 12.974712192521199 + ], + [ + 77.624675801327996, + 12.974667723881 + ], + [ + 77.624573935062799, + 12.974603262629399 + ], + [ + 77.623971880368202, + 12.974235549701699 + ], + [ + 77.623776032655798, + 12.9741166940673 + ], + [ + 77.623775849086101, + 12.974116582089099 + ], + [ + 77.623490883405395, + 12.9739428602389 + ], + [ + 77.623109089414797, + 12.973710109853799 + ], + [ + 77.622935260394499, + 12.973604583472101 + ], + [ + 77.622611395030205, + 12.973411355945601 + ], + [ + 77.622289127846102, + 12.973219659358501 + ], + [ + 77.622275369827804, + 12.973211475815299 + ], + [ + 77.622261531533596, + 12.9732032795295 + ], + [ + 77.622226216027002, + 12.9731823619768 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "130", + "group": "DAYANAND NAGARA", + "Corporatio": "West", + "ac_no": "165", + "ac": "Rajajinagar", + "corporat_1": "5", + "ward_id": "37", + "ward_name": "37 - Dayanand Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜಾಜಿನಗರ", + "ward_name_": "ದಯಾನಂದ ನಗರ", + "dig_ward_n": "DAYANAND NAGARA", + "Assembly": "165 - Rajajinagar", + "Slno": "37" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.566255554336095, + 12.988493199645699 + ], + [ + 77.565781271798002, + 12.988510306899 + ], + [ + 77.565110730967206, + 12.9885361280512 + ], + [ + 77.5651105288634, + 12.988516444720499 + ], + [ + 77.565110429504301, + 12.9885067679185 + ], + [ + 77.565104289167095, + 12.9883012931053 + ], + [ + 77.565086093231002, + 12.9883023021402 + ], + [ + 77.563989601027899, + 12.988363116354799 + ], + [ + 77.564065862103703, + 12.988607775750401 + ], + [ + 77.564187399332098, + 12.988955933077801 + ], + [ + 77.563831198783504, + 12.9890019589914 + ], + [ + 77.562188246430594, + 12.9890926266901 + ], + [ + 77.562150252374295, + 12.9890920096919 + ], + [ + 77.562159257444407, + 12.989789402338999 + ], + [ + 77.562561023678995, + 12.9897779156853 + ], + [ + 77.562767599954398, + 12.989761386565499 + ], + [ + 77.5627796067144, + 12.9899855127534 + ], + [ + 77.563005734029005, + 12.9899925166968 + ], + [ + 77.563015351417704, + 12.9901894789897 + ], + [ + 77.563844206106893, + 12.990166614717699 + ], + [ + 77.563870423363596, + 12.9904433461415 + ], + [ + 77.563869247603705, + 12.990675287651801 + ], + [ + 77.563605584854301, + 12.990697588290001 + ], + [ + 77.562964710932107, + 12.9906999149773 + ], + [ + 77.562966712058795, + 12.9909200389119 + ], + [ + 77.563312906974005, + 12.991072124539301 + ], + [ + 77.565180514815196, + 12.991002388120201 + ], + [ + 77.565181959290996, + 12.9913322710074 + ], + [ + 77.564858859788501, + 12.991369153768501 + ], + [ + 77.564682262991298, + 12.991402286644201 + ], + [ + 77.564485110761893, + 12.991425159372801 + ], + [ + 77.564190574593994, + 12.991445613358399 + ], + [ + 77.563921026044298, + 12.991463492780399 + ], + [ + 77.563891444518106, + 12.991533354492701 + ], + [ + 77.563835562001699, + 12.9915607194611 + ], + [ + 77.563753456393997, + 12.991769152021799 + ], + [ + 77.563405402206001, + 12.9918062853728 + ], + [ + 77.563087864234205, + 12.991828623423499 + ], + [ + 77.5631737687536, + 12.992265915038001 + ], + [ + 77.563255124007497, + 12.9928100083701 + ], + [ + 77.563256461244606, + 12.992809871398499 + ], + [ + 77.563263799988704, + 12.992832731323199 + ], + [ + 77.563378230598602, + 12.993189163397201 + ], + [ + 77.563379703910002, + 12.993188909439301 + ], + [ + 77.563461010836505, + 12.9936799901906 + ], + [ + 77.563489067515505, + 12.9936769739592 + ], + [ + 77.563878062085493, + 12.9936348977546 + ], + [ + 77.563948630724397, + 12.9936272643083 + ], + [ + 77.564331699630301, + 12.9935862144561 + ], + [ + 77.564418545549998, + 12.9935763223354 + ], + [ + 77.564632471462701, + 12.993547040189901 + ], + [ + 77.564667521792899, + 12.993542242725001 + ], + [ + 77.564670400556196, + 12.993542214294299 + ], + [ + 77.564821614737795, + 12.993520393180001 + ], + [ + 77.564898097039205, + 12.9935106032626 + ], + [ + 77.565039028804406, + 12.993496788792999 + ], + [ + 77.565063187207002, + 12.993494291539299 + ], + [ + 77.565108455201894, + 12.9934898122943 + ], + [ + 77.565354826822897, + 12.993465436464 + ], + [ + 77.565608041740802, + 12.993451641786701 + ], + [ + 77.565638569922001, + 12.9934506643981 + ], + [ + 77.565761156964498, + 12.9934467410874 + ], + [ + 77.566360962693196, + 12.993428391774 + ], + [ + 77.566411913497404, + 12.99342627559 + ], + [ + 77.566432332683704, + 12.9934254278262 + ], + [ + 77.566436500542494, + 12.993425240277301 + ], + [ + 77.566439848818703, + 12.993425088835 + ], + [ + 77.567170179011995, + 12.9933921606422 + ], + [ + 77.567810931851994, + 12.9933801791028 + ], + [ + 77.567820888218804, + 12.993060485041401 + ], + [ + 77.567841347348505, + 12.9923909813105 + ], + [ + 77.567841393594506, + 12.9923894757046 + ], + [ + 77.567843291952798, + 12.992327339290201 + ], + [ + 77.567854347427499, + 12.992065065801899 + ], + [ + 77.567854864393396, + 12.9920528017702 + ], + [ + 77.567870373591703, + 12.991689021329901 + ], + [ + 77.567889793340996, + 12.9912335345181 + ], + [ + 77.567890122830903, + 12.991225795916799 + ], + [ + 77.567890954606298, + 12.991190475424499 + ], + [ + 77.567891382126305, + 12.9911715719154 + ], + [ + 77.567894413504405, + 12.9909835131026 + ], + [ + 77.567894457952093, + 12.9909807571389 + ], + [ + 77.567901523146404, + 12.990542448708201 + ], + [ + 77.567902281373506, + 12.990499524598601 + ], + [ + 77.567903676871495, + 12.990420460682 + ], + [ + 77.567903716350699, + 12.990418207086 + ], + [ + 77.567904729434005, + 12.9903608216332 + ], + [ + 77.567908800866903, + 12.990130178325799 + ], + [ + 77.567908996453397, + 12.990117837967199 + ], + [ + 77.567909116555896, + 12.9901102532154 + ], + [ + 77.567909765562604, + 12.990069250017401 + ], + [ + 77.567913998866402, + 12.9898016530733 + ], + [ + 77.567914734519107, + 12.9897551867557 + ], + [ + 77.567915731633207, + 12.989710046829201 + ], + [ + 77.567916928141599, + 12.989655893914801 + ], + [ + 77.567919738261594, + 12.9895287443064 + ], + [ + 77.5679204882927, + 12.989494788830701 + ], + [ + 77.567920814034693, + 12.9894800530409 + ], + [ + 77.567925310874202, + 12.989276530722901 + ], + [ + 77.5679301240868, + 12.9890587027487 + ], + [ + 77.567930767849006, + 12.989029554680499 + ], + [ + 77.567931493590194, + 12.9889967305645 + ], + [ + 77.567931500603095, + 12.988996426935801 + ], + [ + 77.567932293073397, + 12.988962117790701 + ], + [ + 77.567932401406196, + 12.988957420583301 + ], + [ + 77.567932762316005, + 12.9889418035813 + ], + [ + 77.567932796608105, + 12.988940299900401 + ], + [ + 77.567933265171206, + 12.9889200091874 + ], + [ + 77.567933289404493, + 12.988918960945 + ], + [ + 77.567933743264106, + 12.9888992115443 + ], + [ + 77.567933754130806, + 12.988898834697901 + ], + [ + 77.567934093946704, + 12.988884123161901 + ], + [ + 77.567934124000502, + 12.988882834544199 + ], + [ + 77.567934136852699, + 12.988882292346799 + ], + [ + 77.567934295819597, + 12.988875530254001 + ], + [ + 77.567934294424802, + 12.9888754841918 + ], + [ + 77.567934403251797, + 12.988870745420799 + ], + [ + 77.567934410907398, + 12.988870414682101 + ], + [ + 77.567934487295801, + 12.9888670910355 + ], + [ + 77.567934491030698, + 12.988866916632601 + ], + [ + 77.567934512171703, + 12.9888660156833 + ], + [ + 77.567937611808205, + 12.9887318027428 + ], + [ + 77.567937943794504, + 12.988708083880899 + ], + [ + 77.567935874419305, + 12.988618888583 + ], + [ + 77.567932115954093, + 12.988421295898499 + ], + [ + 77.567933012078498, + 12.988396442146399 + ], + [ + 77.567907000746203, + 12.988398502553199 + ], + [ + 77.567771742197706, + 12.988409219153301 + ], + [ + 77.567721290866004, + 12.988413215987499 + ], + [ + 77.567433096684596, + 12.9884304816492 + ], + [ + 77.567427814566202, + 12.9884307976603 + ], + [ + 77.567392130312896, + 12.988432279639699 + ], + [ + 77.5673616896742, + 12.988433015942499 + ], + [ + 77.567332217980393, + 12.9884337291143 + ], + [ + 77.567314417805903, + 12.9884341597998 + ], + [ + 77.567234400844697, + 12.988436097041101 + ], + [ + 77.566808631812506, + 12.9884674078013 + ], + [ + 77.566604314789103, + 12.988476935996299 + ], + [ + 77.566563459233706, + 12.988478852922301 + ], + [ + 77.566255554336095, + 12.988493199645699 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "104", + "group": "Hennur", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "41", + "ward_name": "41 - Hennur", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಹೆಣ್ಣೂರು", + "dig_ward_n": "Hennur", + "Assembly": "160 - Sarvagnanagar", + "Slno": "41" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.624326203841093, + 13.033674107470199 + ], + [ + 77.624338325415394, + 13.033671005165401 + ], + [ + 77.625662838348404, + 13.0333392711151 + ], + [ + 77.6251008802098, + 13.030870028142299 + ], + [ + 77.623796693964394, + 13.0312895247247 + ], + [ + 77.621861868828304, + 13.0320918654891 + ], + [ + 77.622048082807495, + 13.0325097363402 + ], + [ + 77.622068056781899, + 13.0325546785591 + ], + [ + 77.622096541693494, + 13.0326187700711 + ], + [ + 77.622133999997402, + 13.032703050533801 + ], + [ + 77.622183147396797, + 13.032826005182701 + ], + [ + 77.622308110423205, + 13.033138631536801 + ], + [ + 77.622389643030004, + 13.033342605971299 + ], + [ + 77.622401364501698, + 13.033371929493599 + ], + [ + 77.622419000667094, + 13.033416050644 + ], + [ + 77.622555511380398, + 13.0337914572199 + ], + [ + 77.622559000483903, + 13.033801051358999 + ], + [ + 77.6225953750522, + 13.0339016321019 + ], + [ + 77.622616875996897, + 13.033961085648899 + ], + [ + 77.622641242149399, + 13.0340284602037 + ], + [ + 77.622676249214507, + 13.034125260439399 + ], + [ + 77.622691000489993, + 13.034166050979801 + ], + [ + 77.622656131092597, + 13.0341897917226 + ], + [ + 77.622904257955099, + 13.034768923379801 + ], + [ + 77.622971241992204, + 13.0351645219872 + ], + [ + 77.6230871754681, + 13.0357418828529 + ], + [ + 77.622796476434203, + 13.0358180182811 + ], + [ + 77.622772330774694, + 13.035734597280699 + ], + [ + 77.622340240275093, + 13.0358197486332 + ], + [ + 77.621704047501694, + 13.035977787454501 + ], + [ + 77.621579462153505, + 13.0360677657615 + ], + [ + 77.621708084989805, + 13.036177931509201 + ], + [ + 77.622018394792306, + 13.0365488036336 + ], + [ + 77.622094227367299, + 13.0367004798316 + ], + [ + 77.622153939036593, + 13.0367777868892 + ], + [ + 77.622237572933201, + 13.0370810119884 + ], + [ + 77.622300133616605, + 13.0370788359646 + ], + [ + 77.6224123382773, + 13.037608355877 + ], + [ + 77.621247234558197, + 13.0378321480765 + ], + [ + 77.621391961486793, + 13.0387834788269 + ], + [ + 77.621469465194096, + 13.039252468819299 + ], + [ + 77.621495246774998, + 13.039239785769 + ], + [ + 77.621629575071907, + 13.039198900914601 + ], + [ + 77.621818833401903, + 13.039178915660701 + ], + [ + 77.621863772081596, + 13.039180718990799 + ], + [ + 77.621858726963495, + 13.039057660194 + ], + [ + 77.621838968040706, + 13.03857568349 + ], + [ + 77.621952204358394, + 13.038555338971699 + ], + [ + 77.622105844877595, + 13.0385436192458 + ], + [ + 77.6222562427361, + 13.0385522590693 + ], + [ + 77.622389835331902, + 13.038550905666201 + ], + [ + 77.622513833803097, + 13.0385135128922 + ], + [ + 77.622519354085, + 13.0384908716472 + ], + [ + 77.622507989480198, + 13.038396128459601 + ], + [ + 77.622504610511598, + 13.038348734432301 + ], + [ + 77.622503761878505, + 13.038322769012799 + ], + [ + 77.622591287044301, + 13.0383218822492 + ], + [ + 77.622908652373098, + 13.0383265714642 + ], + [ + 77.622973169065503, + 13.0383281762441 + ], + [ + 77.623204759570697, + 13.0383359927801 + ], + [ + 77.623208214546196, + 13.038335957767099 + ], + [ + 77.623352171848893, + 13.0383344988504 + ], + [ + 77.623534002895795, + 13.038320234078 + ], + [ + 77.623569921776095, + 13.0384497354946 + ], + [ + 77.623575306635999, + 13.0384688784199 + ], + [ + 77.623617769665998, + 13.0386728449743 + ], + [ + 77.623639074279794, + 13.0388363724374 + ], + [ + 77.623777799788499, + 13.0391579359768 + ], + [ + 77.623944396130298, + 13.0394464681518 + ], + [ + 77.624059942793195, + 13.039645176554799 + ], + [ + 77.624213180358893, + 13.0399149562449 + ], + [ + 77.624326158749795, + 13.040113857616801 + ], + [ + 77.624338232579106, + 13.0401351144214 + ], + [ + 77.624360966294603, + 13.0401751372052 + ], + [ + 77.624364445113997, + 13.040177360458699 + ], + [ + 77.624331956134199, + 13.040209309289301 + ], + [ + 77.624405884598801, + 13.0404479636557 + ], + [ + 77.624700810009202, + 13.0413822618673 + ], + [ + 77.624727028386403, + 13.041465561478301 + ], + [ + 77.624804091152896, + 13.041673693667301 + ], + [ + 77.624862179228998, + 13.0418300721413 + ], + [ + 77.625028969747902, + 13.0421366692671 + ], + [ + 77.625440783408706, + 13.042904907536 + ], + [ + 77.625601745641603, + 13.0432047875707 + ], + [ + 77.625621657924796, + 13.0432362048849 + ], + [ + 77.625745234139899, + 13.043431442664 + ], + [ + 77.625943182104095, + 13.0437433698145 + ], + [ + 77.626197488861607, + 13.044102151908399 + ], + [ + 77.626272892238802, + 13.044207537226701 + ], + [ + 77.626312269019706, + 13.044248787445801 + ], + [ + 77.627080025235401, + 13.0450530652213 + ], + [ + 77.627202455234297, + 13.045194108998199 + ], + [ + 77.627300425589993, + 13.0453094289698 + ], + [ + 77.627448780737296, + 13.045451337667201 + ], + [ + 77.627451484210198, + 13.045455169575099 + ], + [ + 77.627487192531603, + 13.045505784494599 + ], + [ + 77.627489122386294, + 13.045508520292801 + ], + [ + 77.627489408545102, + 13.0455083068923 + ], + [ + 77.627490651932305, + 13.045507380918201 + ], + [ + 77.627545677168897, + 13.0454663909193 + ], + [ + 77.627578262058705, + 13.0454421178401 + ], + [ + 77.627706645712294, + 13.0453290170781 + ], + [ + 77.627798509366599, + 13.045247906511101 + ], + [ + 77.627845084204694, + 13.0451864533599 + ], + [ + 77.627863636763294, + 13.0450891484771 + ], + [ + 77.627886351456993, + 13.0450042231908 + ], + [ + 77.627917247247197, + 13.044930507418499 + ], + [ + 77.627944159863205, + 13.044861350050301 + ], + [ + 77.6279550681882, + 13.044803646042199 + ], + [ + 77.627954495477098, + 13.0447494473347 + ], + [ + 77.6279690290323, + 13.044653312537299 + ], + [ + 77.628003215920799, + 13.044509550064999 + ], + [ + 77.628053618639697, + 13.0444288596891 + ], + [ + 77.628080769812001, + 13.044382284211601 + ], + [ + 77.628135104814007, + 13.044346725223001 + ], + [ + 77.628327152331906, + 13.0442634676614 + ], + [ + 77.628499835929006, + 13.0442007333838 + ], + [ + 77.628601559808999, + 13.0441262980417 + ], + [ + 77.628644965639296, + 13.0440919792595 + ], + [ + 77.628667966444496, + 13.044034153306599 + ], + [ + 77.628675503105896, + 13.0439843892818 + ], + [ + 77.628670815860104, + 13.0439223275791 + ], + [ + 77.628642447597997, + 13.0438537308923 + ], + [ + 77.628527488653503, + 13.043765687165701 + ], + [ + 77.628400678019105, + 13.0436946285931 + ], + [ + 77.628337467842897, + 13.0436592084155 + ], + [ + 77.6281861269849, + 13.0435071670914 + ], + [ + 77.628145872268504, + 13.0434036830565 + ], + [ + 77.628128722725705, + 13.0433067408055 + ], + [ + 77.628151317972694, + 13.0432105241367 + ], + [ + 77.628252803021496, + 13.0431135070951 + ], + [ + 77.628374105087303, + 13.043038872144599 + ], + [ + 77.628448355455106, + 13.042980525644399 + ], + [ + 77.628498996453402, + 13.042922418950999 + ], + [ + 77.628521949511807, + 13.042860076463 + ], + [ + 77.628532416228893, + 13.0427605961141 + ], + [ + 77.628515556093305, + 13.0426365478063 + ], + [ + 77.628510105338506, + 13.0425022211592 + ], + [ + 77.628540630875506, + 13.042393502072199 + ], + [ + 77.628595350336397, + 13.0423398709981 + ], + [ + 77.628681475152902, + 13.042315281671801 + ], + [ + 77.628803552359898, + 13.0423140415649 + ], + [ + 77.628949930975594, + 13.0423780516153 + ], + [ + 77.629076692440194, + 13.0424930775829 + ], + [ + 77.629168438377505, + 13.0425644180915 + ], + [ + 77.629239397522994, + 13.0425761189822 + ], + [ + 77.629297643465506, + 13.042529227508799 + ], + [ + 77.629379585130494, + 13.0424357955989 + ], + [ + 77.629453417293107, + 13.042337929036 + ], + [ + 77.629526804864099, + 13.042252488837599 + ], + [ + 77.629585757811896, + 13.042218011995001 + ], + [ + 77.629695742352297, + 13.0422168952588 + ], + [ + 77.629790585195096, + 13.0422543262749 + ], + [ + 77.629925817281404, + 13.042353455148501 + ], + [ + 77.630155674791197, + 13.042523895678 + ], + [ + 77.630276967702102, + 13.042611874303301 + ], + [ + 77.630335906863493, + 13.042630472612601 + ], + [ + 77.630442351988705, + 13.0426214857864 + ], + [ + 77.630634851874305, + 13.0425811341163 + ], + [ + 77.630866458866507, + 13.0425358676891 + ], + [ + 77.630980271239295, + 13.042515513164499 + ], + [ + 77.631043577291393, + 13.0425114817366 + ], + [ + 77.631071575688694, + 13.0425450748193 + ], + [ + 77.631183519063995, + 13.0427291349868 + ], + [ + 77.631271327774598, + 13.0428637531236 + ], + [ + 77.631315736334997, + 13.042924281496999 + ], + [ + 77.631346879264299, + 13.042928481842599 + ], + [ + 77.631410257069007, + 13.042931225126599 + ], + [ + 77.6314751100264, + 13.042925078327601 + ], + [ + 77.631543731569394, + 13.0429185751885 + ], + [ + 77.631618506629295, + 13.0429099108378 + ], + [ + 77.631700565364198, + 13.0428819741003 + ], + [ + 77.631782756951097, + 13.042812253445501 + ], + [ + 77.631947359743407, + 13.0425847277386 + ], + [ + 77.632145336753894, + 13.042354603996101 + ], + [ + 77.632309145742795, + 13.0421609639669 + ], + [ + 77.632367834360707, + 13.042101645585401 + ], + [ + 77.632508329001993, + 13.042044882787801 + ], + [ + 77.632704763597999, + 13.0419604215514 + ], + [ + 77.6327126666894, + 13.04195702294 + ], + [ + 77.632788091910299, + 13.041924593027501 + ], + [ + 77.632987200836098, + 13.041855941102099 + ], + [ + 77.633097545610795, + 13.0418344926572 + ], + [ + 77.633348513027201, + 13.041822904013401 + ], + [ + 77.633455089868704, + 13.041826336508 + ], + [ + 77.633523169602597, + 13.041838065523899 + ], + [ + 77.633540552165599, + 13.0418480519381 + ], + [ + 77.633576096172902, + 13.0422135693287 + ], + [ + 77.6336036086105, + 13.0424188140107 + ], + [ + 77.633630714650806, + 13.042585668096599 + ], + [ + 77.633635488697195, + 13.042601429098699 + ], + [ + 77.633648756795907, + 13.0426035525747 + ], + [ + 77.633714929912898, + 13.042598362058801 + ], + [ + 77.633826498275198, + 13.042583675435701 + ], + [ + 77.633890415872798, + 13.0425830257619 + ], + [ + 77.633958988868301, + 13.0425868439039 + ], + [ + 77.634034446124005, + 13.042588334343399 + ], + [ + 77.634084591514707, + 13.042592340929801 + ], + [ + 77.634253239128896, + 13.0425838486321 + ], + [ + 77.634399501862902, + 13.0425823596504 + ], + [ + 77.634515867214603, + 13.0425856919934 + ], + [ + 77.634636720553601, + 13.042577686033299 + ], + [ + 77.6346941125679, + 13.042559033608001 + ], + [ + 77.634733077895604, + 13.0425405687875 + ], + [ + 77.634745471151604, + 13.0425144697255 + ], + [ + 77.634747499402593, + 13.042488476197301 + ], + [ + 77.6347382878171, + 13.042434365721601 + ], + [ + 77.634724649892306, + 13.0423972391451 + ], + [ + 77.634726653305805, + 13.0423689873585 + ], + [ + 77.634739694150397, + 13.042349657237599 + ], + [ + 77.634765799754206, + 13.042313255262499 + ], + [ + 77.634802834217297, + 13.042275612755301 + ], + [ + 77.634885732890694, + 13.042218305912501 + ], + [ + 77.6348988684788, + 13.0422080088657 + ], + [ + 77.634907782788702, + 13.042179686713601 + ], + [ + 77.634902901034906, + 13.0421537635457 + ], + [ + 77.634895357139101, + 13.0420939898207 + ], + [ + 77.634877484147694, + 13.042037709031201 + ], + [ + 77.634829934514201, + 13.0418981654927 + ], + [ + 77.634820338484502, + 13.0418621270197 + ], + [ + 77.6348114498483, + 13.041838503154001 + ], + [ + 77.634811174773205, + 13.041812533077801 + ], + [ + 77.634826279720798, + 13.041770596832601 + ], + [ + 77.634880483181206, + 13.041668412864199 + ], + [ + 77.634956639933307, + 13.041572779092499 + ], + [ + 77.635006380173905, + 13.0414841907187 + ], + [ + 77.635194001929094, + 13.0412010957288 + ], + [ + 77.635274910311793, + 13.041064761241399 + ], + [ + 77.6352960246398, + 13.0410464781557 + ], + [ + 77.635335985851299, + 13.041013322835701 + ], + [ + 77.635448800640404, + 13.041007657003201 + ], + [ + 77.635546476370294, + 13.0409863357257 + ], + [ + 77.635653570332707, + 13.040929911596301 + ], + [ + 77.6358163537774, + 13.0408029064607 + ], + [ + 77.635882671404502, + 13.040757060841401 + ], + [ + 77.635960013500593, + 13.0407190077064 + ], + [ + 77.636062511028896, + 13.0407179637329 + ], + [ + 77.636119157612697, + 13.040737713331501 + ], + [ + 77.636196845132702, + 13.040786609207499 + ], + [ + 77.636259475881602, + 13.040881957859201 + ], + [ + 77.636326858375895, + 13.0409366049258 + ], + [ + 77.636378155034905, + 13.0409405993926 + ], + [ + 77.636496200005496, + 13.040939396849501 + ], + [ + 77.636563056013202, + 13.040944362023399 + ], + [ + 77.636681627545499, + 13.0409928421121 + ], + [ + 77.636743672101204, + 13.0410328631292 + ], + [ + 77.636775772178893, + 13.0411273925072 + ], + [ + 77.636786998812894, + 13.041208584406901 + ], + [ + 77.636768554869704, + 13.0414244598298 + ], + [ + 77.636729968828504, + 13.041641669732901 + ], + [ + 77.636628917727293, + 13.041833543234199 + ], + [ + 77.636568775840999, + 13.041973054236299 + ], + [ + 77.636559836426798, + 13.042053322353601 + ], + [ + 77.636555013901202, + 13.042087249109599 + ], + [ + 77.636553512875807, + 13.042108720230001 + ], + [ + 77.636555491698601, + 13.0421324144042 + ], + [ + 77.636575044681607, + 13.042184160874401 + ], + [ + 77.636610900497004, + 13.0422526800462 + ], + [ + 77.636647884071706, + 13.0423189301139 + ], + [ + 77.636694021122807, + 13.042379438829499 + ], + [ + 77.636718541212105, + 13.0424108080979 + ], + [ + 77.636814475202598, + 13.0424967831231 + ], + [ + 77.636939740815606, + 13.0425790714428 + ], + [ + 77.637019744397506, + 13.042629072584599 + ], + [ + 77.637290190745702, + 13.0428103232978 + ], + [ + 77.637343393600005, + 13.0428459785977 + ], + [ + 77.637556053365202, + 13.0429691581752 + ], + [ + 77.637650464982599, + 13.0430201414667 + ], + [ + 77.637745032299804, + 13.043085803418601 + ], + [ + 77.6378297985177, + 13.0431504359877 + ], + [ + 77.637906731660607, + 13.0431824000415 + ], + [ + 77.638007885760103, + 13.043217504898299 + ], + [ + 77.638071875150203, + 13.0432236280419 + ], + [ + 77.638131761847902, + 13.0432230174815 + ], + [ + 77.638202589390204, + 13.0432222962617 + ], + [ + 77.638309934883196, + 13.043243785930001 + ], + [ + 77.638383916146694, + 13.0432690053111 + ], + [ + 77.638470867008394, + 13.0432681178086 + ], + [ + 77.638586717353405, + 13.0432770997599 + ], + [ + 77.638636287871293, + 13.043281111284999 + ], + [ + 77.638794796886501, + 13.043294175139099 + ], + [ + 77.638850739836499, + 13.0432986889719 + ], + [ + 77.638906616392703, + 13.0433031980489 + ], + [ + 77.639065126324795, + 13.043316261722399 + ], + [ + 77.639176262165194, + 13.0433151282179 + ], + [ + 77.639262637163498, + 13.043314247223 + ], + [ + 77.639381031160994, + 13.043291583816901 + ], + [ + 77.639758310937097, + 13.043189490321801 + ], + [ + 77.640086512715598, + 13.043075475307701 + ], + [ + 77.640391081038004, + 13.0429594425832 + ], + [ + 77.640462568584397, + 13.042912413836699 + ], + [ + 77.640551547279202, + 13.042831329065599 + ], + [ + 77.640647772901303, + 13.042727585307601 + ], + [ + 77.640722498619297, + 13.042660196953699 + ], + [ + 77.640794321665197, + 13.042644783733 + ], + [ + 77.640934872383397, + 13.042647866339999 + ], + [ + 77.641010342205405, + 13.0426504838497 + ], + [ + 77.6410753271781, + 13.0426419158462 + ], + [ + 77.641118334657307, + 13.042624538139201 + ], + [ + 77.641214510734301, + 13.042570482644001 + ], + [ + 77.641326486269804, + 13.0424857742921 + ], + [ + 77.641390811711503, + 13.042415104196801 + ], + [ + 77.641429452877304, + 13.0423119480139 + ], + [ + 77.641455966219695, + 13.0420971198717 + ], + [ + 77.641468335619706, + 13.041906150355199 + ], + [ + 77.641470603581695, + 13.041794331450699 + ], + [ + 77.641459951221506, + 13.0417131341774 + ], + [ + 77.641409986678397, + 13.041617657909301 + ], + [ + 77.641375053316196, + 13.0415818784635 + ], + [ + 77.641347509818104, + 13.0415369895845 + ], + [ + 77.641315899925701, + 13.0414345504438 + ], + [ + 77.641299729151001, + 13.041375994477299 + ], + [ + 77.641303340338396, + 13.041336433862799 + ], + [ + 77.641318024128694, + 13.0413091819906 + ], + [ + 77.641335551087707, + 13.041278513349001 + ], + [ + 77.641354433509704, + 13.0412670281257 + ], + [ + 77.641393505861402, + 13.041258724582599 + ], + [ + 77.641394645878805, + 13.0412033796896 + ], + [ + 77.641400453173503, + 13.0410452253955 + ], + [ + 77.641444890263699, + 13.0406743778025 + ], + [ + 77.641449235325794, + 13.040602748933299 + ], + [ + 77.641454692395399, + 13.040512794987499 + ], + [ + 77.641459328099401, + 13.040422978611099 + ], + [ + 77.641464722692504, + 13.040318461589701 + ], + [ + 77.641461558149501, + 13.039966167834001 + ], + [ + 77.641471922991002, + 13.039966062051301 + ], + [ + 77.641464380815194, + 13.039711310621501 + ], + [ + 77.641458454473295, + 13.0395111116786 + ], + [ + 77.641418148522206, + 13.0383561120662 + ], + [ + 77.641375113988502, + 13.0377470369601 + ], + [ + 77.641177063855594, + 13.037003299781 + ], + [ + 77.640986243033893, + 13.0369407094528 + ], + [ + 77.640758553975601, + 13.036849812084 + ], + [ + 77.640560117512607, + 13.036758617010101 + ], + [ + 77.640375773482702, + 13.0366170814486 + ], + [ + 77.6402129114243, + 13.0364323030559 + ], + [ + 77.640020190556797, + 13.036190462118901 + ], + [ + 77.639825719944199, + 13.0357837120333 + ], + [ + 77.6395802887223, + 13.035398993038299 + ], + [ + 77.639417698547902, + 13.035099220711199 + ], + [ + 77.639371422985803, + 13.035013900909901 + ], + [ + 77.639178476107901, + 13.034750549473699 + ], + [ + 77.638888824858, + 13.034387501981801 + ], + [ + 77.638815280876202, + 13.034295322153101 + ], + [ + 77.638275820559699, + 13.033770182534401 + ], + [ + 77.637847193710996, + 13.0333514741776 + ], + [ + 77.637470668970593, + 13.0330182824116 + ], + [ + 77.636585461847304, + 13.0323030482442 + ], + [ + 77.636053170939206, + 13.0317634877504 + ], + [ + 77.635915191386403, + 13.031649561817 + ], + [ + 77.635294809349404, + 13.0328348913332 + ], + [ + 77.634721625302305, + 13.0328219214638 + ], + [ + 77.634672664767507, + 13.032500957957801 + ], + [ + 77.633878840630501, + 13.032743218723001 + ], + [ + 77.634076434254595, + 13.033426856071801 + ], + [ + 77.633394882789602, + 13.0336170104634 + ], + [ + 77.633407306945401, + 13.0340328786918 + ], + [ + 77.633113543736499, + 13.034208048605199 + ], + [ + 77.6330667592254, + 13.034290737508501 + ], + [ + 77.632696835184504, + 13.034427827006001 + ], + [ + 77.631752440868397, + 13.033522601117699 + ], + [ + 77.630117023003507, + 13.0319302957241 + ], + [ + 77.629514139240698, + 13.0331432500143 + ], + [ + 77.628561193771702, + 13.0349406232863 + ], + [ + 77.628324202227603, + 13.0354078105571 + ], + [ + 77.627693575940995, + 13.036650975605401 + ], + [ + 77.627677562413098, + 13.0366825424623 + ], + [ + 77.627436698471897, + 13.0369598684817 + ], + [ + 77.627280016410197, + 13.037128778262099 + ], + [ + 77.627050583744904, + 13.037334279904799 + ], + [ + 77.626578188937799, + 13.037638346091301 + ], + [ + 77.626410626284596, + 13.0377462005378 + ], + [ + 77.626239388931197, + 13.0378564202707 + ], + [ + 77.625889144820505, + 13.0380373064342 + ], + [ + 77.625660821923006, + 13.0365661432031 + ], + [ + 77.625294155328305, + 13.0358104000853 + ], + [ + 77.625118832406002, + 13.035458718267 + ], + [ + 77.624984722598697, + 13.035192442456699 + ], + [ + 77.624844123368803, + 13.034911551876499 + ], + [ + 77.6247040298028, + 13.034623880445899 + ], + [ + 77.624581354534897, + 13.034379410477101 + ], + [ + 77.624514270490906, + 13.0342434494694 + ], + [ + 77.624494864837501, + 13.034203615097301 + ], + [ + 77.624366880191502, + 13.0339028612715 + ], + [ + 77.624315162140206, + 13.033706573262499 + ], + [ + 77.624316592218193, + 13.0336873513318 + ], + [ + 77.624326203841093, + 13.033674107470199 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "106", + "group": "CHANNASANDRA", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "27", + "ward_name": "27 - Channasandra", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಚನ್ನಸಂದ್ರ", + "dig_ward_n": "CHANNASANDRA", + "Assembly": "174 - Mahadevapura", + "Slno": "27" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.770983326971105, + 12.9764304307385 + ], + [ + 77.771289663052798, + 12.975955983392501 + ], + [ + 77.771103417198702, + 12.975995451749 + ], + [ + 77.770792800871504, + 12.9762006786772 + ], + [ + 77.770325825137206, + 12.976280998503499 + ], + [ + 77.769784133285498, + 12.976295941727001 + ], + [ + 77.769797208605993, + 12.9760904724039 + ], + [ + 77.769392122894004, + 12.975908597967999 + ], + [ + 77.769427775223207, + 12.975653825957799 + ], + [ + 77.769415891326204, + 12.975514859733201 + ], + [ + 77.769242441433704, + 12.975517026202301 + ], + [ + 77.769027632596007, + 12.975494611367001 + ], + [ + 77.768946473685503, + 12.9748837196361 + ], + [ + 77.767487468740896, + 12.9749341602319 + ], + [ + 77.766301446842704, + 12.975054887176 + ], + [ + 77.764960933278701, + 12.975179957327599 + ], + [ + 77.763802417115699, + 12.9752979372883 + ], + [ + 77.763421621846106, + 12.975329385768299 + ], + [ + 77.763355149194894, + 12.975343484482099 + ], + [ + 77.763000766579694, + 12.9753875696126 + ], + [ + 77.762796601564304, + 12.975412967220599 + ], + [ + 77.761263567697597, + 12.9755866752215 + ], + [ + 77.760716903610501, + 12.975737221797599 + ], + [ + 77.760051401075501, + 12.975991993428501 + ], + [ + 77.759136333759599, + 12.976408891522301 + ], + [ + 77.758292571015204, + 12.9766405019048 + ], + [ + 77.757091523656896, + 12.976709779413399 + ], + [ + 77.757237493344107, + 12.977626236058001 + ], + [ + 77.757291493993804, + 12.9778859565711 + ], + [ + 77.757489789850297, + 12.9788396618475 + ], + [ + 77.757516306613496, + 12.9789761711114 + ], + [ + 77.757636236661597, + 12.9795935772581 + ], + [ + 77.757651980036002, + 12.9796746218796 + ], + [ + 77.757775568270901, + 12.980310592073099 + ], + [ + 77.757801510028997, + 12.9804522138349 + ], + [ + 77.757801760155303, + 12.9804521759512 + ], + [ + 77.757836379063605, + 12.9806413984847 + ], + [ + 77.757839796148005, + 12.9806600746049 + ], + [ + 77.757848733428403, + 12.980690267202499 + ], + [ + 77.757861797488104, + 12.980780326642501 + ], + [ + 77.757893223875797, + 12.980952096458701 + ], + [ + 77.757896056769894, + 12.9809675810047 + ], + [ + 77.757909221360407, + 12.981039534773901 + ], + [ + 77.757947926206299, + 12.9812510919655 + ], + [ + 77.757994131859803, + 12.981503635590199 + ], + [ + 77.758007736739401, + 12.9815779179571 + ], + [ + 77.758048379979599, + 12.981799833726701 + ], + [ + 77.758078699043395, + 12.981965378658501 + ], + [ + 77.758116712682494, + 12.9821729395592 + ], + [ + 77.758166889547397, + 12.982446906632299 + ], + [ + 77.758176908379994, + 12.9824468002945 + ], + [ + 77.758263596422296, + 12.982445880189401 + ], + [ + 77.758263949877204, + 12.982447275687701 + ], + [ + 77.758277737840601, + 12.9825018247467 + ], + [ + 77.758279843366594, + 12.9825101554416 + ], + [ + 77.758284771008405, + 12.9825296501811 + ], + [ + 77.758901997026697, + 12.9849715347807 + ], + [ + 77.759320931801994, + 12.986366778984699 + ], + [ + 77.760256686046205, + 12.9862829312759 + ], + [ + 77.760550697478294, + 12.9864232098268 + ], + [ + 77.761766505038906, + 12.986171283255899 + ], + [ + 77.761868735522398, + 12.986600404489799 + ], + [ + 77.762901906381899, + 12.986362365165199 + ], + [ + 77.763000438751305, + 12.9864569184506 + ], + [ + 77.763780672959498, + 12.986188951466501 + ], + [ + 77.763928736661299, + 12.9863546793898 + ], + [ + 77.764099583674707, + 12.986376761752799 + ], + [ + 77.764547763902996, + 12.986132988827199 + ], + [ + 77.765057923185793, + 12.9859841576083 + ], + [ + 77.765533115164402, + 12.985979099692299 + ], + [ + 77.766055855157504, + 12.9858659827858 + ], + [ + 77.766298352767294, + 12.985755848983199 + ], + [ + 77.766455161875697, + 12.985610777415101 + ], + [ + 77.766855526243305, + 12.9854511612377 + ], + [ + 77.767661239815794, + 12.9859827510548 + ], + [ + 77.7675273491692, + 12.986278835223599 + ], + [ + 77.767211238897701, + 12.986784109631399 + ], + [ + 77.766712354994795, + 12.987950980783401 + ], + [ + 77.7665888615699, + 12.988683646345899 + ], + [ + 77.766344731604605, + 12.9904070723172 + ], + [ + 77.766321205991403, + 12.9909235704487 + ], + [ + 77.766430227759201, + 12.9915246977537 + ], + [ + 77.766448638086402, + 12.991641959248501 + ], + [ + 77.766467128720095, + 12.9917597320641 + ], + [ + 77.766493162576793, + 12.991925553327601 + ], + [ + 77.766654152729103, + 12.993257477632699 + ], + [ + 77.766859374348101, + 12.9953912192712 + ], + [ + 77.767916575938699, + 12.995270335514499 + ], + [ + 77.771339243764203, + 12.995338984676501 + ], + [ + 77.774464938951198, + 12.995484437060099 + ], + [ + 77.774510518614903, + 12.9954865578305 + ], + [ + 77.774441882183297, + 12.9953584382574 + ], + [ + 77.774405640772201, + 12.9952907871135 + ], + [ + 77.774382114140593, + 12.9951575641026 + ], + [ + 77.774377649296298, + 12.9951322838228 + ], + [ + 77.774376411714996, + 12.995125279209301 + ], + [ + 77.774373755657095, + 12.995110243945399 + ], + [ + 77.774373747766802, + 12.9951101970575 + ], + [ + 77.774359403781204, + 12.995028990745899 + ], + [ + 77.774353875371105, + 12.9949976922157 + ], + [ + 77.774350292302202, + 12.994977405058901 + ], + [ + 77.774327195672797, + 12.9948466443821 + ], + [ + 77.774277556458799, + 12.994565723239599 + ], + [ + 77.774264303053698, + 12.9944907191457 + ], + [ + 77.7742535464197, + 12.9944298459968 + ], + [ + 77.774161441728197, + 12.993908627506 + ], + [ + 77.774162582117199, + 12.9939075494124 + ], + [ + 77.774287640756199, + 12.993789292907501 + ], + [ + 77.774295126713895, + 12.993827237886 + ], + [ + 77.774351496182703, + 12.993773204628001 + ], + [ + 77.774407157932103, + 12.993719895251401 + ], + [ + 77.774407044575099, + 12.9937192271077 + ], + [ + 77.774400831211295, + 12.993682652412801 + ], + [ + 77.7744000556565, + 12.993678098065599 + ], + [ + 77.774384044105105, + 12.993584167419099 + ], + [ + 77.774378629428696, + 12.993552404266399 + ], + [ + 77.7741415092745, + 12.992161507549399 + ], + [ + 77.774140947617894, + 12.992158212842799 + ], + [ + 77.774110425056904, + 12.991979911416999 + ], + [ + 77.774118197582695, + 12.9918864465706 + ], + [ + 77.774118243951506, + 12.991885894150901 + ], + [ + 77.774457218958204, + 12.991861961846199 + ], + [ + 77.774469030805406, + 12.991861128357 + ], + [ + 77.775034598613004, + 12.9919445060518 + ], + [ + 77.775053538066899, + 12.9919472981446 + ], + [ + 77.775073332830203, + 12.9919502165927 + ], + [ + 77.775212310889899, + 12.9918806460337 + ], + [ + 77.775366061121503, + 12.991803681105701 + ], + [ + 77.7754529752021, + 12.991760172786901 + ], + [ + 77.775485983883698, + 12.9917059916216 + ], + [ + 77.775502864535696, + 12.9916782818608 + ], + [ + 77.775605562421106, + 12.991509710148099 + ], + [ + 77.775543026144902, + 12.990993964804 + ], + [ + 77.775543399433005, + 12.9902872914288 + ], + [ + 77.775721496187103, + 12.9900314534682 + ], + [ + 77.775807137953294, + 12.989756157095901 + ], + [ + 77.775824315200794, + 12.9897009401229 + ], + [ + 77.775885958124704, + 12.9895027865606 + ], + [ + 77.776058254390804, + 12.988788677196 + ], + [ + 77.776145058078399, + 12.9883017793198 + ], + [ + 77.776152364093505, + 12.9882607965563 + ], + [ + 77.776143296204495, + 12.988146643462301 + ], + [ + 77.776142683565695, + 12.9881389275949 + ], + [ + 77.776137323979398, + 12.9880714207446 + ], + [ + 77.776128992380393, + 12.9879664925301 + ], + [ + 77.7761281923365, + 12.9879564183108 + ], + [ + 77.776098210821104, + 12.987578737832999 + ], + [ + 77.776060389294102, + 12.987453503946 + ], + [ + 77.776051976570997, + 12.9874256498869 + ], + [ + 77.776009344078105, + 12.987284504061099 + ], + [ + 77.775994139509294, + 12.987185493697799 + ], + [ + 77.775990107021599, + 12.987159235950401 + ], + [ + 77.775962564689607, + 12.986979883140201 + ], + [ + 77.775959960702707, + 12.986962893466201 + ], + [ + 77.775941890836094, + 12.9869734990372 + ], + [ + 77.775922945508995, + 12.986842644417701 + ], + [ + 77.775865834574304, + 12.986448114238801 + ], + [ + 77.775972782123503, + 12.9861415426225 + ], + [ + 77.775983695297199, + 12.986110258125199 + ], + [ + 77.776006454488694, + 12.986067231357399 + ], + [ + 77.776135696464806, + 12.9858228954881 + ], + [ + 77.776150540827899, + 12.985794830843 + ], + [ + 77.776159232378404, + 12.9857783997605 + ], + [ + 77.7763411716017, + 12.985616376010499 + ], + [ + 77.776424412458297, + 12.9855422468302 + ], + [ + 77.776457512517595, + 12.985512771228599 + ], + [ + 77.776513670392106, + 12.9854627608243 + ], + [ + 77.776540546820598, + 12.9854474975914 + ], + [ + 77.7767028195547, + 12.9853553454499 + ], + [ + 77.7767222367968, + 12.9853443180596 + ], + [ + 77.7768474899663, + 12.985246410844301 + ], + [ + 77.776868903369206, + 12.9852296739571 + ], + [ + 77.776913393076896, + 12.985194899702901 + ], + [ + 77.776847938911104, + 12.9850360048677 + ], + [ + 77.776821404934495, + 12.9849715923626 + ], + [ + 77.776819305225203, + 12.984966493929001 + ], + [ + 77.776781290158297, + 12.984874209585 + ], + [ + 77.776766859823297, + 12.9847972869195 + ], + [ + 77.776728580427999, + 12.9847065753391 + ], + [ + 77.776718963053995, + 12.9846837854878 + ], + [ + 77.776654096406105, + 12.984530070184499 + ], + [ + 77.776564945254606, + 12.9843188078104 + ], + [ + 77.776498597542201, + 12.984113434289901 + ], + [ + 77.776411948158298, + 12.983845021420199 + ], + [ + 77.776354925981707, + 12.983526878038701 + ], + [ + 77.776328848812796, + 12.9834597740912 + ], + [ + 77.776279377538799, + 12.983332429785101 + ], + [ + 77.776276105151794, + 12.9833240034224 + ], + [ + 77.776262072062096, + 12.983287864592 + ], + [ + 77.776186986298299, + 12.9830944203377 + ], + [ + 77.776132905262898, + 12.982954908825899 + ], + [ + 77.776095715251003, + 12.98285897239 + ], + [ + 77.776047366739306, + 12.9827342482475 + ], + [ + 77.776042645228301, + 12.9827220696432 + ], + [ + 77.775758050268806, + 12.9824966538861 + ], + [ + 77.775634064708299, + 12.9823982940491 + ], + [ + 77.775443461589404, + 12.982165070115199 + ], + [ + 77.775441104638901, + 12.982162183007 + ], + [ + 77.7753744293869, + 12.9820804352753 + ], + [ + 77.7752961111795, + 12.981779937314 + ], + [ + 77.775238357201303, + 12.981558344489899 + ], + [ + 77.775237722271996, + 12.9815351749674 + ], + [ + 77.775233956588707, + 12.9813977869388 + ], + [ + 77.775245398196901, + 12.9813975003535 + ], + [ + 77.775249484946002, + 12.9813973979966 + ], + [ + 77.775247222418301, + 12.9813104367239 + ], + [ + 77.775242957523105, + 12.981306357740101 + ], + [ + 77.775237791421802, + 12.9813014166829 + ], + [ + 77.775065009733098, + 12.981136164124299 + ], + [ + 77.775032712726599, + 12.9810943369058 + ], + [ + 77.7750170226265, + 12.9810740172961 + ], + [ + 77.774865121546597, + 12.9808772923679 + ], + [ + 77.774834003766003, + 12.980823031961799 + ], + [ + 77.774789610830894, + 12.980745607796701 + ], + [ + 77.774756202963701, + 12.980687342143501 + ], + [ + 77.774700833493, + 12.980590772885501 + ], + [ + 77.774700393685507, + 12.980588990826901 + ], + [ + 77.774686852092998, + 12.9805341082502 + ], + [ + 77.774668278428194, + 12.980458806695999 + ], + [ + 77.775031131934099, + 12.980279026869701 + ], + [ + 77.775489245919204, + 12.9800546535718 + ], + [ + 77.775538200072305, + 12.980032191136001 + ], + [ + 77.775835022320507, + 12.9798959948908 + ], + [ + 77.776014907863498, + 12.979695563494699 + ], + [ + 77.776092086394399, + 12.9796096588813 + ], + [ + 77.776192599028505, + 12.979497783200699 + ], + [ + 77.776250943484698, + 12.9794272878956 + ], + [ + 77.776270204993594, + 12.979404014269599 + ], + [ + 77.776444823676997, + 12.979193028652601 + ], + [ + 77.7764807608105, + 12.9791496073675 + ], + [ + 77.776791644807304, + 12.9787750964545 + ], + [ + 77.7768850344317, + 12.9786628486737 + ], + [ + 77.776946316583903, + 12.978589264188701 + ], + [ + 77.777029519637694, + 12.978489452703601 + ], + [ + 77.777275767970494, + 12.9784015022008 + ], + [ + 77.777325969288597, + 12.9784149039294 + ], + [ + 77.777541540307695, + 12.9784724539936 + ], + [ + 77.777590191449406, + 12.978485442253501 + ], + [ + 77.777928191576606, + 12.978510289123999 + ], + [ + 77.778148942416806, + 12.9784287907896 + ], + [ + 77.778208584805299, + 12.978370895157701 + ], + [ + 77.778155075167305, + 12.978361578509899 + ], + [ + 77.778153625315298, + 12.978361325722 + ], + [ + 77.778173228087695, + 12.9783423445034 + ], + [ + 77.778207098015898, + 12.978309548217601 + ], + [ + 77.778207268433704, + 12.9783093838002 + ], + [ + 77.778239344932899, + 12.9782434298679 + ], + [ + 77.778374949474895, + 12.9779646061951 + ], + [ + 77.778375853597396, + 12.977962747453899 + ], + [ + 77.778428576894996, + 12.9777531261402 + ], + [ + 77.778483040562307, + 12.977536585835701 + ], + [ + 77.778530510747899, + 12.9772329760653 + ], + [ + 77.778530664662796, + 12.9772319898112 + ], + [ + 77.778515679782402, + 12.9771061245371 + ], + [ + 77.778496930054899, + 12.976948646574799 + ], + [ + 77.778496908686705, + 12.9769484643344 + ], + [ + 77.778494505813796, + 12.9769372148877 + ], + [ + 77.778490863128795, + 12.9769201613687 + ], + [ + 77.778462910994904, + 12.9767893038658 + ], + [ + 77.778406384977799, + 12.976823986305501 + ], + [ + 77.778342901393501, + 12.9768752800104 + ], + [ + 77.778219067934003, + 12.976975319079999 + ], + [ + 77.777940396166699, + 12.9770335038393 + ], + [ + 77.777552058433301, + 12.977249006517001 + ], + [ + 77.777009385584904, + 12.9774188591594 + ], + [ + 77.777001249160804, + 12.9774199839826 + ], + [ + 77.776681315310398, + 12.977464177902901 + ], + [ + 77.776484269738901, + 12.977603726935699 + ], + [ + 77.776462285012101, + 12.9775936052694 + ], + [ + 77.776179386118002, + 12.9774626915731 + ], + [ + 77.775884632467694, + 12.977498728812201 + ], + [ + 77.775448204966693, + 12.9775507783507 + ], + [ + 77.775436139520494, + 12.9774866391498 + ], + [ + 77.7754373652364, + 12.9774635491229 + ], + [ + 77.775440063680307, + 12.9774126538474 + ], + [ + 77.774466531923494, + 12.9776904150829 + ], + [ + 77.774238647764903, + 12.977613831062399 + ], + [ + 77.774098463218095, + 12.977421701332799 + ], + [ + 77.773722001969901, + 12.977380599659901 + ], + [ + 77.773625412977793, + 12.977360582103501 + ], + [ + 77.773536648387093, + 12.9773421964231 + ], + [ + 77.773463701195197, + 12.9773204360942 + ], + [ + 77.773407561380907, + 12.9772948678175 + ], + [ + 77.773313414828294, + 12.977227404575901 + ], + [ + 77.773233883538794, + 12.977228467101799 + ], + [ + 77.773231562721904, + 12.9772284981831 + ], + [ + 77.773203394277303, + 12.9772288763633 + ], + [ + 77.773140377707904, + 12.9772297256494 + ], + [ + 77.772599594961406, + 12.977240788214001 + ], + [ + 77.772451520093398, + 12.977253882914599 + ], + [ + 77.772370709152796, + 12.9772604943409 + ], + [ + 77.772282092488993, + 12.977256442242499 + ], + [ + 77.772053594711494, + 12.977246022904099 + ], + [ + 77.771828791155002, + 12.9772358277393 + ], + [ + 77.771546499706602, + 12.9772177518264 + ], + [ + 77.770777857648, + 12.977182261670601 + ], + [ + 77.770587928058205, + 12.9771731226308 + ], + [ + 77.770480861080998, + 12.977173856107401 + ], + [ + 77.770983326971105, + 12.9764304307385 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "107", + "group": "HAGADURU", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "28", + "ward_name": "28 - Hagaduru", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಹಗದೂರು", + "dig_ward_n": "HAGADURU", + "Assembly": "174 - Mahadevapura", + "Slno": "28" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.748298460017594, + 12.9539576610078 + ], + [ + 77.7480013601526, + 12.953807100644299 + ], + [ + 77.747680492778997, + 12.953621796420199 + ], + [ + 77.746765425408199, + 12.9535638880023 + ], + [ + 77.745695222956698, + 12.953584193706901 + ], + [ + 77.744584714104704, + 12.953627586140099 + ], + [ + 77.744192542914206, + 12.9537144484883 + ], + [ + 77.744275729961501, + 12.954073476181399 + ], + [ + 77.744240078043106, + 12.9543051067813 + ], + [ + 77.744174716139895, + 12.954548318704299 + ], + [ + 77.744281672561399, + 12.955023160918101 + ], + [ + 77.744329208668901, + 12.9553011158501 + ], + [ + 77.744453990457799, + 12.9556259770547 + ], + [ + 77.744710683938706, + 12.9561019748501 + ], + [ + 77.744945987673901, + 12.956400775447101 + ], + [ + 77.744903232111, + 12.956511197611899 + ], + [ + 77.744786488177297, + 12.9566475545265 + ], + [ + 77.744667876340699, + 12.956660629847001 + ], + [ + 77.744573547242297, + 12.956662497749999 + ], + [ + 77.744433454521896, + 12.956688648391101 + ], + [ + 77.744332587763196, + 12.9564187364165 + ], + [ + 77.743472418459902, + 12.956616734128 + ], + [ + 77.743515380227507, + 12.9569361455305 + ], + [ + 77.743876487719703, + 12.9568809988002 + ], + [ + 77.744890065085301, + 12.9566956581155 + ], + [ + 77.745041418535905, + 12.9567968167065 + ], + [ + 77.745458499825602, + 12.9571402026755 + ], + [ + 77.745718206229299, + 12.957515735158999 + ], + [ + 77.745851080246396, + 12.957821467455901 + ], + [ + 77.746222111224398, + 12.958628168803701 + ], + [ + 77.746364351048399, + 12.9585895330135 + ], + [ + 77.746461340429093, + 12.9585625388811 + ], + [ + 77.747305355290294, + 12.958213791140601 + ], + [ + 77.748389677745095, + 12.958191442433099 + ], + [ + 77.749088455710904, + 12.958325785993599 + ], + [ + 77.749007644310893, + 12.9592939845438 + ], + [ + 77.749026659046805, + 12.960197323749201 + ], + [ + 77.749115353237997, + 12.960643932863899 + ], + [ + 77.749606611710902, + 12.9607149131756 + ], + [ + 77.749647705575597, + 12.9606009710963 + ], + [ + 77.750162767891695, + 12.9606374114282 + ], + [ + 77.750329143456895, + 12.9610682334526 + ], + [ + 77.750457490965303, + 12.9614758910368 + ], + [ + 77.750509780150907, + 12.961795532281901 + ], + [ + 77.750545592725203, + 12.963056394565699 + ], + [ + 77.749650597733293, + 12.96249324898 + ], + [ + 77.748212635564897, + 12.9616362425572 + ], + [ + 77.747915535674906, + 12.9614046187877 + ], + [ + 77.747630320758105, + 12.9613698752155 + ], + [ + 77.747632221653106, + 12.9613902524093 + ], + [ + 77.747649574948795, + 12.9614553440564 + ], + [ + 77.747741767455807, + 12.9618303849137 + ], + [ + 77.7477365672883, + 12.9618321579563 + ], + [ + 77.7477700092238, + 12.961964838726299 + ], + [ + 77.747785013567196, + 12.962025534237 + ], + [ + 77.747821894638903, + 12.9621747295435 + ], + [ + 77.747838749627903, + 12.9622429112987 + ], + [ + 77.747854280316602, + 12.9623057385261 + ], + [ + 77.747963690338494, + 12.9626599896351 + ], + [ + 77.748132663908194, + 12.9631279952231 + ], + [ + 77.748166005337893, + 12.9632301668602 + ], + [ + 77.748254910567894, + 12.9635026061973 + ], + [ + 77.748326628165003, + 12.963722375718501 + ], + [ + 77.748326129822303, + 12.963753910900101 + ], + [ + 77.748339672157201, + 12.9637515565118 + ], + [ + 77.748381854689498, + 12.963870802541001 + ], + [ + 77.748459102251601, + 12.9641135187376 + ], + [ + 77.748483216042601, + 12.9641892857793 + ], + [ + 77.748586525874998, + 12.964528073317499 + ], + [ + 77.748729256732503, + 12.964990211659501 + ], + [ + 77.748795438486297, + 12.965204494701601 + ], + [ + 77.748834792287496, + 12.965328287104199 + ], + [ + 77.748992075162704, + 12.965830565386099 + ], + [ + 77.749085363186097, + 12.966128475964 + ], + [ + 77.749100309253606, + 12.966177005818 + ], + [ + 77.749171326139503, + 12.9664076004902 + ], + [ + 77.749222402062202, + 12.966574489696701 + ], + [ + 77.749230077533397, + 12.966599571797 + ], + [ + 77.749310367892605, + 12.9668619189541 + ], + [ + 77.7494134422858, + 12.967198712716 + ], + [ + 77.749505109812304, + 12.9674982335302 + ], + [ + 77.749535110341995, + 12.967614756959 + ], + [ + 77.749556061960106, + 12.9676961343499 + ], + [ + 77.749564466286799, + 12.967728777736401 + ], + [ + 77.749570054389807, + 12.967750479927901 + ], + [ + 77.749598924218702, + 12.967863091215399 + ], + [ + 77.749763663538701, + 12.968500456811899 + ], + [ + 77.749785315165894, + 12.968584915241699 + ], + [ + 77.749805008876294, + 12.968752952503699 + ], + [ + 77.749817737145193, + 12.9688634760262 + ], + [ + 77.749841488876896, + 12.9689817871591 + ], + [ + 77.749901750383302, + 12.969279249379399 + ], + [ + 77.749985389985994, + 12.969818105449701 + ], + [ + 77.749988378779307, + 12.969839712242299 + ], + [ + 77.750046677540197, + 12.970261218826 + ], + [ + 77.750052354660895, + 12.9703072602973 + ], + [ + 77.750071398440994, + 12.9704617064932 + ], + [ + 77.750086821021199, + 12.9705867875488 + ], + [ + 77.750109248599102, + 12.9707686817951 + ], + [ + 77.750112679434196, + 12.970796310027399 + ], + [ + 77.750150171466103, + 12.971050020135699 + ], + [ + 77.751480731544405, + 12.9707932037711 + ], + [ + 77.752573729511198, + 12.9706481589264 + ], + [ + 77.752386291821907, + 12.969711674558001 + ], + [ + 77.752851159115593, + 12.969667771960999 + ], + [ + 77.753667385566303, + 12.9694453158806 + ], + [ + 77.753916190317895, + 12.9693517355757 + ], + [ + 77.753960233637798, + 12.969335170147501 + ], + [ + 77.754073817942199, + 12.9692924487622 + ], + [ + 77.754097332231296, + 12.9692827464612 + ], + [ + 77.754768077741602, + 12.969005994003201 + ], + [ + 77.756040020702798, + 12.968471495884801 + ], + [ + 77.756236819002595, + 12.9684247087083 + ], + [ + 77.7563437756734, + 12.969265478646401 + ], + [ + 77.756486383364404, + 12.9703424942246 + ], + [ + 77.756536295403095, + 12.970856679796 + ], + [ + 77.7571548074866, + 12.971264828973601 + ], + [ + 77.757580689356601, + 12.9712256030119 + ], + [ + 77.757896364953297, + 12.9711789054384 + ], + [ + 77.758050156958404, + 12.9711304335221 + ], + [ + 77.758658617091299, + 12.9706949975195 + ], + [ + 77.759350961430499, + 12.9701435364282 + ], + [ + 77.7594518281891, + 12.970033330154999 + ], + [ + 77.759842219902893, + 12.969345941874099 + ], + [ + 77.760370836434106, + 12.968940606936799 + ], + [ + 77.760804189915504, + 12.9687762314783 + ], + [ + 77.761273094191907, + 12.9687864799936 + ], + [ + 77.761891061648996, + 12.968628980380901 + ], + [ + 77.762352681450395, + 12.9683596891234 + ], + [ + 77.762328391962996, + 12.9677025102828 + ], + [ + 77.762527330374994, + 12.967227739943599 + ], + [ + 77.762884099836, + 12.9672408152641 + ], + [ + 77.762907448622698, + 12.967288446789 + ], + [ + 77.7628448738743, + 12.9673846437903 + ], + [ + 77.762730931795105, + 12.9675462173943 + ], + [ + 77.762672092852597, + 12.9676741687455 + ], + [ + 77.762648744065899, + 12.967811459611401 + ], + [ + 77.762613181460296, + 12.9679866640646 + ], + [ + 77.762623235679797, + 12.9683184533058 + ], + [ + 77.762559558956696, + 12.9684960778491 + ], + [ + 77.762544141501394, + 12.9687809012357 + ], + [ + 77.762489038364805, + 12.9692086510083 + ], + [ + 77.762472422388299, + 12.9694713371338 + ], + [ + 77.762469070981794, + 12.9698533974722 + ], + [ + 77.762438908323503, + 12.9702421606234 + ], + [ + 77.762455665355901, + 12.970426487979701 + ], + [ + 77.762536099111301, + 12.970708006123701 + ], + [ + 77.762613181460296, + 12.9711168777139 + ], + [ + 77.762593073021407, + 12.9712710424118 + ], + [ + 77.762566261769607, + 12.9715860746206 + ], + [ + 77.762603127240894, + 12.971753644944499 + ], + [ + 77.762633366806, + 12.9722361385017 + ], + [ + 77.762618927784899, + 12.9723512877312 + ], + [ + 77.762614414782902, + 12.9725681330121 + ], + [ + 77.762670599059206, + 12.9729119277231 + ], + [ + 77.762802076614193, + 12.9732447600593 + ], + [ + 77.762810380852002, + 12.9733711369185 + ], + [ + 77.763081493145293, + 12.974097688671399 + ], + [ + 77.763105748003795, + 12.9741932869238 + ], + [ + 77.763123409998499, + 12.974262901623 + ], + [ + 77.763262062846294, + 12.9748093939466 + ], + [ + 77.763331962505106, + 12.975024917589201 + ], + [ + 77.763336463432907, + 12.9750286266678 + ], + [ + 77.763376792175606, + 12.975181821436101 + ], + [ + 77.763421621846106, + 12.975329385768299 + ], + [ + 77.763802417115699, + 12.9752979372883 + ], + [ + 77.764960933278701, + 12.975179957327599 + ], + [ + 77.766301446842704, + 12.975054887176 + ], + [ + 77.767487468740896, + 12.9749341602319 + ], + [ + 77.768946473685503, + 12.9748837196361 + ], + [ + 77.769027632596007, + 12.975494611367001 + ], + [ + 77.769242441433704, + 12.975517026202301 + ], + [ + 77.769415891326204, + 12.975514859733201 + ], + [ + 77.769427775223207, + 12.975653825957799 + ], + [ + 77.769392122894004, + 12.975908597967999 + ], + [ + 77.769797208605993, + 12.9760904724039 + ], + [ + 77.769784133285498, + 12.976295941727001 + ], + [ + 77.770325825137206, + 12.976280998503499 + ], + [ + 77.770792800871504, + 12.9762006786772 + ], + [ + 77.771103417198702, + 12.975995451749 + ], + [ + 77.771289663052798, + 12.975955983392501 + ], + [ + 77.770983326971105, + 12.9764304307385 + ], + [ + 77.770480861080998, + 12.977173856107401 + ], + [ + 77.770587928058205, + 12.9771731226308 + ], + [ + 77.770777857648, + 12.977182261670601 + ], + [ + 77.771546499706602, + 12.9772177518264 + ], + [ + 77.771828791155002, + 12.9772358277393 + ], + [ + 77.772053594711494, + 12.977246022904099 + ], + [ + 77.772282092488993, + 12.977256442242499 + ], + [ + 77.772370709152796, + 12.9772604943409 + ], + [ + 77.772451520093398, + 12.977253882914599 + ], + [ + 77.772599594961406, + 12.977240788214001 + ], + [ + 77.773140377707904, + 12.9772297256494 + ], + [ + 77.773203394277303, + 12.9772288763633 + ], + [ + 77.773231562721904, + 12.9772284981831 + ], + [ + 77.773233883538794, + 12.977228467101799 + ], + [ + 77.773313414828294, + 12.977227404575901 + ], + [ + 77.773407561380907, + 12.9772948678175 + ], + [ + 77.773463701195197, + 12.9773204360942 + ], + [ + 77.773536648387093, + 12.9773421964231 + ], + [ + 77.773625412977793, + 12.977360582103501 + ], + [ + 77.773722001969901, + 12.977380599659901 + ], + [ + 77.774098463218095, + 12.977421701332799 + ], + [ + 77.774238647764903, + 12.977613831062399 + ], + [ + 77.774466531923494, + 12.9776904150829 + ], + [ + 77.775440063680307, + 12.9774126538474 + ], + [ + 77.7754373652364, + 12.9774635491229 + ], + [ + 77.775436139520494, + 12.9774866391498 + ], + [ + 77.775448204966693, + 12.9775507783507 + ], + [ + 77.775884632467694, + 12.977498728812201 + ], + [ + 77.776179386118002, + 12.9774626915731 + ], + [ + 77.776462285012101, + 12.9775936052694 + ], + [ + 77.776484269738901, + 12.977603726935699 + ], + [ + 77.776681315310398, + 12.977464177902901 + ], + [ + 77.777001249160804, + 12.9774199839826 + ], + [ + 77.777009385584904, + 12.9774188591594 + ], + [ + 77.777552058433301, + 12.977249006517001 + ], + [ + 77.777940396166699, + 12.9770335038393 + ], + [ + 77.778219067934003, + 12.976975319079999 + ], + [ + 77.778342901393501, + 12.9768752800104 + ], + [ + 77.778406384977799, + 12.976823986305501 + ], + [ + 77.778462910994904, + 12.9767893038658 + ], + [ + 77.778448661055506, + 12.9767224368049 + ], + [ + 77.778448570686905, + 12.9767220132145 + ], + [ + 77.778447957530105, + 12.976719138205301 + ], + [ + 77.778331226717896, + 12.9765651164922 + ], + [ + 77.778306970661006, + 12.9765331130527 + ], + [ + 77.778278432292197, + 12.976495457286401 + ], + [ + 77.778075504446704, + 12.976279435499499 + ], + [ + 77.777758744927993, + 12.976283023374201 + ], + [ + 77.777353909141596, + 12.9764571205965 + ], + [ + 77.777347523421895, + 12.976458050575401 + ], + [ + 77.777173977756306, + 12.976483316565201 + ], + [ + 77.776917800474394, + 12.976253509780401 + ], + [ + 77.776845247557205, + 12.976235465123001 + ], + [ + 77.776757884056195, + 12.976213735939901 + ], + [ + 77.776657661879796, + 12.976188581394799 + ], + [ + 77.776504942828197, + 12.975977426337099 + ], + [ + 77.776402024212501, + 12.975691665890301 + ], + [ + 77.776266563492598, + 12.9753165204738 + ], + [ + 77.776201678605901, + 12.9751374143348 + ], + [ + 77.776211355554807, + 12.975069717019799 + ], + [ + 77.776216174375506, + 12.975036006327599 + ], + [ + 77.776222450460594, + 12.974992100644201 + ], + [ + 77.776230113764697, + 12.9749384939265 + ], + [ + 77.776241330900802, + 12.974860023519399 + ], + [ + 77.776250015531602, + 12.97479926792 + ], + [ + 77.776251392471096, + 12.974789636550501 + ], + [ + 77.776397008757002, + 12.9746001673597 + ], + [ + 77.776438337605498, + 12.974546391760599 + ], + [ + 77.776493395261795, + 12.9745178427043 + ], + [ + 77.776542186917595, + 12.974492542017 + ], + [ + 77.776552408288595, + 12.974487242434099 + ], + [ + 77.776616334693799, + 12.9743704805195 + ], + [ + 77.776657982394994, + 12.9742944113581 + ], + [ + 77.776770697311406, + 12.9740885387682 + ], + [ + 77.776784978279906, + 12.9740624548719 + ], + [ + 77.777093016627106, + 12.9737789576787 + ], + [ + 77.777460361303099, + 12.973594374472899 + ], + [ + 77.777498334584607, + 12.973575293793701 + ], + [ + 77.777515412803993, + 12.9735667123784 + ], + [ + 77.777779567438003, + 12.9734465649257 + ], + [ + 77.777931440548798, + 12.973329323130899 + ], + [ + 77.777962933879095, + 12.9733050109903 + ], + [ + 77.777986245740806, + 12.9732681371789 + ], + [ + 77.778110082582998, + 12.9730722598556 + ], + [ + 77.7782270720393, + 12.9729625403406 + ], + [ + 77.778269678355102, + 12.972922581524299 + ], + [ + 77.7782778980649, + 12.9729148724669 + ], + [ + 77.778544572678101, + 12.9728775636669 + ], + [ + 77.778691971253096, + 12.972840147095599 + ], + [ + 77.778772881536895, + 12.9728196074963 + ], + [ + 77.778795892349393, + 12.972813766497399 + ], + [ + 77.778870846375895, + 12.972643956950099 + ], + [ + 77.778923819526895, + 12.972523945157301 + ], + [ + 77.778979289615705, + 12.9721809297913 + ], + [ + 77.778980669426801, + 12.9721723950175 + ], + [ + 77.778959484606204, + 12.9721189945377 + ], + [ + 77.778833787845898, + 12.971802149992101 + ], + [ + 77.7786192870945, + 12.971289020639199 + ], + [ + 77.778529307716099, + 12.9708715139631 + ], + [ + 77.778527892801407, + 12.970864949359401 + ], + [ + 77.778565929488295, + 12.9707559297473 + ], + [ + 77.778628373797005, + 12.970576949876699 + ], + [ + 77.778668687520195, + 12.970541334303499 + ], + [ + 77.778802660943597, + 12.970422975633699 + ], + [ + 77.778823670614202, + 12.9704044148503 + ], + [ + 77.779179477340705, + 12.9702437098112 + ], + [ + 77.779200834692801, + 12.9702340636788 + ], + [ + 77.779488742046894, + 12.9701358043377 + ], + [ + 77.779699073415102, + 12.9700964855808 + ], + [ + 77.779744377673893, + 12.9700880161316 + ], + [ + 77.779878282990097, + 12.970062983293699 + ], + [ + 77.780346233615504, + 12.969930892927 + ], + [ + 77.780470122310803, + 12.969987582753401 + ], + [ + 77.780504826192399, + 12.9700198212518 + ], + [ + 77.780668329810496, + 12.970171709141599 + ], + [ + 77.780823802822596, + 12.970316136500699 + ], + [ + 77.780827855914097, + 12.970319901519799 + ], + [ + 77.7808719208535, + 12.970372207156901 + ], + [ + 77.781164050133398, + 12.970718966936101 + ], + [ + 77.781225464096394, + 12.9707355381222 + ], + [ + 77.781327653501094, + 12.9707631118469 + ], + [ + 77.781540621265805, + 12.9708205755266 + ], + [ + 77.781552662647897, + 12.9708215948505 + ], + [ + 77.781955611464895, + 12.9708557036386 + ], + [ + 77.782205132471105, + 12.970857406515201 + ], + [ + 77.782623075278707, + 12.9709101462677 + ], + [ + 77.782893619042596, + 12.970944258265501 + ], + [ + 77.783203030657603, + 12.970900949721401 + ], + [ + 77.783351696871094, + 12.9706540058359 + ], + [ + 77.783391210627499, + 12.9705883713553 + ], + [ + 77.783395194937896, + 12.9705597110155 + ], + [ + 77.783458661708494, + 12.9701031864704 + ], + [ + 77.783458670254703, + 12.9701031267607 + ], + [ + 77.783470416804207, + 12.9700186311851 + ], + [ + 77.783504256921702, + 12.9697754535367 + ], + [ + 77.7835789225025, + 12.9692417552028 + ], + [ + 77.783583191074797, + 12.969211243656 + ], + [ + 77.783587399913699, + 12.9691811582067 + ], + [ + 77.783588434355394, + 12.969178269197499 + ], + [ + 77.783744221779799, + 12.968743148818801 + ], + [ + 77.783791917380398, + 12.9684961003907 + ], + [ + 77.7838850977801, + 12.9682821140443 + ], + [ + 77.783922350186998, + 12.9681063246182 + ], + [ + 77.783956006778894, + 12.9679475052776 + ], + [ + 77.783963902090505, + 12.9678944481066 + ], + [ + 77.783964310129804, + 12.967891717557 + ], + [ + 77.783968234434099, + 12.967865366721499 + ], + [ + 77.784014561340896, + 12.9675541836616 + ], + [ + 77.784022674223806, + 12.967168537102699 + ], + [ + 77.784028557103397, + 12.966890568813399 + ], + [ + 77.784063868534901, + 12.9667301573174 + ], + [ + 77.783816033164598, + 12.966635420177299 + ], + [ + 77.783736302586902, + 12.9666210191602 + ], + [ + 77.783453863626093, + 12.966570005259801 + ], + [ + 77.783055936165496, + 12.9664848700953 + ], + [ + 77.782955880557097, + 12.9664577725471 + ], + [ + 77.782585885117001, + 12.9663575696088 + ], + [ + 77.782511900425703, + 12.966326711673799 + ], + [ + 77.782372436814001, + 12.966268543291999 + ], + [ + 77.782223018501199, + 12.9662068075208 + ], + [ + 77.782123545119106, + 12.9661657075146 + ], + [ + 77.782071696278095, + 12.9661777809592 + ], + [ + 77.782046069956607, + 12.966183747645401 + ], + [ + 77.782041744858205, + 12.966184755016 + ], + [ + 77.781977159864397, + 12.9662083553636 + ], + [ + 77.781877163732801, + 12.9662638110557 + ], + [ + 77.7818229341772, + 12.9662938848646 + ], + [ + 77.781783180849501, + 12.966315931538301 + ], + [ + 77.781642244464095, + 12.9665167627071 + ], + [ + 77.781446443628695, + 12.9667958153636 + ], + [ + 77.781310637664504, + 12.966886414923399 + ], + [ + 77.7812640381119, + 12.966917502795001 + ], + [ + 77.781223053087004, + 12.966944844230101 + ], + [ + 77.780962158697207, + 12.967020436416799 + ], + [ + 77.780907444742994, + 12.9670362890361 + ], + [ + 77.780843344716004, + 12.9670493586113 + ], + [ + 77.780797664523902, + 12.967058672237901 + ], + [ + 77.780753117421099, + 12.967067755144599 + ], + [ + 77.780677461304805, + 12.967083180284201 + ], + [ + 77.780645118126102, + 12.9670897750895 + ], + [ + 77.780412391396098, + 12.9670834290456 + ], + [ + 77.780238432761905, + 12.967078685915499 + ], + [ + 77.780008757746202, + 12.9670959122017 + ], + [ + 77.779894913991598, + 12.9671043976729 + ], + [ + 77.779703019167997, + 12.9670402517271 + ], + [ + 77.7793012669691, + 12.966905871434101 + ], + [ + 77.779215550990301, + 12.9668829858078 + ], + [ + 77.778978698829803, + 12.9668197467971 + ], + [ + 77.778945484502003, + 12.9668175705126 + ], + [ + 77.778827898079498, + 12.966809844905599 + ], + [ + 77.778796412845907, + 12.966807776595999 + ], + [ + 77.7787910548535, + 12.9668074246262 + ], + [ + 77.778786691495696, + 12.9668154402454 + ], + [ + 77.778772026328895, + 12.966842381876599 + ], + [ + 77.778704586538097, + 12.9669662741408 + ], + [ + 77.778666234464097, + 12.9671752592947 + ], + [ + 77.778749423041305, + 12.967362765357899 + ], + [ + 77.778844518820804, + 12.967654319453301 + ], + [ + 77.778679017619993, + 12.967736821666501 + ], + [ + 77.778639325193794, + 12.967756608121 + ], + [ + 77.778504590008097, + 12.9678237740022 + ], + [ + 77.777780554255401, + 12.968099568744201 + ], + [ + 77.777638060184401, + 12.9681538464475 + ], + [ + 77.777632339722402, + 12.9681560248933 + ], + [ + 77.777629175449704, + 12.9681572302768 + ], + [ + 77.777618796187198, + 12.9681538425769 + ], + [ + 77.777598104231998, + 12.9681470899509 + ], + [ + 77.777583937669604, + 12.9681424663091 + ], + [ + 77.777578548396704, + 12.9681407100031 + ], + [ + 77.777508186139499, + 12.9681177475443 + ], + [ + 77.777456549640704, + 12.968100897473199 + ], + [ + 77.777428750848301, + 12.968091826031801 + ], + [ + 77.7774328736961, + 12.9680909301886 + ], + [ + 77.777440517562994, + 12.9680892704882 + ], + [ + 77.777437507291495, + 12.968055644311599 + ], + [ + 77.777430511956297, + 12.9679774939667 + ], + [ + 77.777416723181801, + 12.9678234475913 + ], + [ + 77.777351287008003, + 12.9678095441863 + ], + [ + 77.777334176680696, + 12.967805908562999 + ], + [ + 77.777311739845302, + 12.967801191632701 + ], + [ + 77.777296268644406, + 12.967797938674099 + ], + [ + 77.776940324964897, + 12.967723102514499 + ], + [ + 77.776923685911797, + 12.9677196045545 + ], + [ + 77.776900074361095, + 12.9677146878469 + ], + [ + 77.776849973686197, + 12.967704256435701 + ], + [ + 77.776789089436505, + 12.967691599637501 + ], + [ + 77.776708977283903, + 12.967674885329 + ], + [ + 77.776657052760697, + 12.967657633460499 + ], + [ + 77.776652954597594, + 12.9676562716484 + ], + [ + 77.776562073051196, + 12.967626075574101 + ], + [ + 77.7763463312656, + 12.9675543950239 + ], + [ + 77.776308260586006, + 12.9675349176013 + ], + [ + 77.7761924661922, + 12.9674646136753 + ], + [ + 77.776180142314601, + 12.967457131166199 + ], + [ + 77.775995440031593, + 12.9673449893367 + ], + [ + 77.775944457309905, + 12.9673141567768 + ], + [ + 77.7758741633277, + 12.9672716661465 + ], + [ + 77.775801018924099, + 12.967227452575299 + ], + [ + 77.775782896749803, + 12.967217289451501 + ], + [ + 77.775777817068004, + 12.967214212767299 + ], + [ + 77.775264113133005, + 12.9669038877462 + ], + [ + 77.775223862696805, + 12.9668595994775 + ], + [ + 77.775194806392705, + 12.966827649388801 + ], + [ + 77.775067984126295, + 12.966688353536099 + ], + [ + 77.774861126111006, + 12.9666094523089 + ], + [ + 77.774781025715399, + 12.9665788966074 + ], + [ + 77.774761571473505, + 12.9665760987728 + ], + [ + 77.774688652225194, + 12.966565613967701 + ], + [ + 77.774664671157495, + 12.9665621661436 + ], + [ + 77.774631484190706, + 12.966557393778899 + ], + [ + 77.774621069339503, + 12.966554277311999 + ], + [ + 77.774599949458803, + 12.96654795714 + ], + [ + 77.774542546485094, + 12.9665313404192 + ], + [ + 77.7744562881809, + 12.966506370431301 + ], + [ + 77.774438877774102, + 12.9665013304278 + ], + [ + 77.774416390793803, + 12.966494820669199 + ], + [ + 77.774241167697198, + 12.966444090122099 + ], + [ + 77.774203040734903, + 12.9664330516901 + ], + [ + 77.774197870876606, + 12.9664285676622 + ], + [ + 77.774063945659293, + 12.9663124085336 + ], + [ + 77.773959350135598, + 12.9662631739231 + ], + [ + 77.773635383963196, + 12.9661106218251 + ], + [ + 77.773617187916301, + 12.9661086550813 + ], + [ + 77.773598292881601, + 12.966106613586099 + ], + [ + 77.773528928996996, + 12.9660991175248 + ], + [ + 77.773498205481602, + 12.9660848330258 + ], + [ + 77.773495471513698, + 12.9660835613972 + ], + [ + 77.773458743026694, + 12.9660796919954 + ], + [ + 77.773347388255104, + 12.966067956208301 + ], + [ + 77.773334787295099, + 12.9660666253539 + ], + [ + 77.7731468997425, + 12.9660467814317 + ], + [ + 77.773038437432803, + 12.9660353263193 + ], + [ + 77.773018012388505, + 12.966033105971499 + ], + [ + 77.772894812886904, + 12.9660197103735 + ], + [ + 77.772814850975806, + 12.9660110163548 + ], + [ + 77.772447735889699, + 12.965971100705801 + ], + [ + 77.77218971117, + 12.9659430461678 + ], + [ + 77.772183456117205, + 12.9659423657743 + ], + [ + 77.772085852265107, + 12.965931753868899 + ], + [ + 77.772073603340203, + 12.965917303050499 + ], + [ + 77.772051995774703, + 12.9658918113472 + ], + [ + 77.771321386831005, + 12.9650298597839 + ], + [ + 77.771287606180906, + 12.964990005734 + ], + [ + 77.771257944960496, + 12.9649460356506 + ], + [ + 77.771201093115906, + 12.964861865794299 + ], + [ + 77.770765862423801, + 12.964221131446701 + ], + [ + 77.770696153475797, + 12.963950711479001 + ], + [ + 77.770639535917297, + 12.9637310756713 + ], + [ + 77.770617201136602, + 12.9636444333371 + ], + [ + 77.770603077358999, + 12.963589644869201 + ], + [ + 77.770590482778502, + 12.963540786654701 + ], + [ + 77.770506085731199, + 12.9632133872145 + ], + [ + 77.770621205661598, + 12.9632145734057 + ], + [ + 77.7706281638511, + 12.9631500593814 + ], + [ + 77.770641585123101, + 12.9630256453296 + ], + [ + 77.770642772140903, + 12.963014642934199 + ], + [ + 77.770657457277807, + 12.962878513855999 + ], + [ + 77.770545648867596, + 12.962893822198099 + ], + [ + 77.770506414707896, + 12.9628991936956 + ], + [ + 77.770428555189895, + 12.9629098534104 + ], + [ + 77.770374484296298, + 12.9629172572256 + ], + [ + 77.770373554537898, + 12.9629026559648 + ], + [ + 77.770366766989298, + 12.9627960211456 + ], + [ + 77.770361768940006, + 12.9627175047083 + ], + [ + 77.770360260494897, + 12.9626938077812 + ], + [ + 77.770157065910993, + 12.9626485114453 + ], + [ + 77.770056661744306, + 12.9626428324319 + ], + [ + 77.769964771516001, + 12.9626376354591 + ], + [ + 77.769905778546601, + 12.9626342987189 + ], + [ + 77.768476835070501, + 12.9625534770132 + ], + [ + 77.768138624353497, + 12.962213813580799 + ], + [ + 77.767913807876297, + 12.9622376586331 + ], + [ + 77.767784451056798, + 12.962252584217699 + ], + [ + 77.767756347256594, + 12.9622619163046 + ], + [ + 77.767728831522305, + 12.962272371283801 + ], + [ + 77.767613588289507, + 12.962314246266899 + ], + [ + 77.767537910611793, + 12.962342150656101 + ], + [ + 77.767507342174, + 12.962336829989599 + ], + [ + 77.767477399251305, + 12.9623360192645 + ], + [ + 77.767147527835704, + 12.962281940383299 + ], + [ + 77.767127330949293, + 12.9623295794188 + ], + [ + 77.767113303249999, + 12.962362473912799 + ], + [ + 77.767043114787299, + 12.9625224303135 + ], + [ + 77.766761916784802, + 12.962497191332099 + ], + [ + 77.7665345259921, + 12.9623923395208 + ], + [ + 77.766377391006898, + 12.9623940099326 + ], + [ + 77.766232533773803, + 12.9623086051651 + ], + [ + 77.766108932503101, + 12.9623234687613 + ], + [ + 77.765923180377001, + 12.9623401220194 + ], + [ + 77.765657558916502, + 12.962370044618201 + ], + [ + 77.765541666473695, + 12.9623532098051 + ], + [ + 77.765312759535405, + 12.962319509433399 + ], + [ + 77.765012417539793, + 12.962280922082901 + ], + [ + 77.764980922406394, + 12.962295935678799 + ], + [ + 77.764935124900106, + 12.962319005288 + ], + [ + 77.764793191935098, + 12.9623419670988 + ], + [ + 77.764734008230704, + 12.9622996880962 + ], + [ + 77.764627400000705, + 12.9622895291338 + ], + [ + 77.764532132972207, + 12.962159559554999 + ], + [ + 77.764514015479904, + 12.962134910673001 + ], + [ + 77.764496473577793, + 12.962110255674601 + ], + [ + 77.764051537033595, + 12.9620099705483 + ], + [ + 77.763574806340998, + 12.961897601533501 + ], + [ + 77.763470839353005, + 12.961865960103699 + ], + [ + 77.763222452381996, + 12.961788427629299 + ], + [ + 77.763004282615697, + 12.961736544607399 + ], + [ + 77.762619584025103, + 12.9616175507972 + ], + [ + 77.7624500003853, + 12.961586605428099 + ], + [ + 77.762279604475196, + 12.961534214638601 + ], + [ + 77.762191066408505, + 12.961492246492 + ], + [ + 77.762118719517801, + 12.9614568813964 + ], + [ + 77.761833134407198, + 12.961346996739501 + ], + [ + 77.761864198968496, + 12.9611885854987 + ], + [ + 77.761810432859093, + 12.961167702119701 + ], + [ + 77.761590402627306, + 12.9610514756867 + ], + [ + 77.761408871789399, + 12.9609811358945 + ], + [ + 77.761383346782495, + 12.960963340237701 + ], + [ + 77.761357821779001, + 12.9609455445776 + ], + [ + 77.761175655981901, + 12.9608176244358 + ], + [ + 77.761094404468494, + 12.960705570923899 + ], + [ + 77.761077451021706, + 12.960682038521099 + ], + [ + 77.761061073162907, + 12.960658500010499 + ], + [ + 77.760600579603306, + 12.9604522326309 + ], + [ + 77.760575692530196, + 12.960440075883399 + ], + [ + 77.760487494109896, + 12.9603766494685 + ], + [ + 77.759935424341194, + 12.960113764983101 + ], + [ + 77.759352681463795, + 12.9599404076287 + ], + [ + 77.759289820545604, + 12.9600480718264 + ], + [ + 77.759222576039804, + 12.9602572769556 + ], + [ + 77.759162803145799, + 12.9603581437143 + ], + [ + 77.758636054516998, + 12.9600947693999 + ], + [ + 77.758441792611407, + 12.9599677520001 + ], + [ + 77.758184022005807, + 12.959747339453299 + ], + [ + 77.757746932718206, + 12.959461550303701 + ], + [ + 77.757250070536401, + 12.9591421389012 + ], + [ + 77.756897297553095, + 12.959135365413401 + ], + [ + 77.756280628911199, + 12.958826463304501 + ], + [ + 77.755991103955694, + 12.9586788989723 + ], + [ + 77.755763219797103, + 12.9586172581754 + ], + [ + 77.755189773594907, + 12.9583632233757 + ], + [ + 77.754864758483606, + 12.9582212627523 + ], + [ + 77.754719062054406, + 12.9581484145377 + ], + [ + 77.754605119975096, + 12.9581334713142 + ], + [ + 77.754511724828106, + 12.958107320673101 + ], + [ + 77.7541101256963, + 12.957984039079101 + ], + [ + 77.7535217362705, + 12.9576870425119 + ], + [ + 77.753452623861804, + 12.9576478165502 + ], + [ + 77.753397119327403, + 12.9575972323376 + ], + [ + 77.752929993733503, + 12.957362790116299 + ], + [ + 77.752425277245493, + 12.957143482756701 + ], + [ + 77.752418267035694, + 12.957141872161101 + ], + [ + 77.752361768545597, + 12.957132275339101 + ], + [ + 77.752316938874998, + 12.957100520989099 + ], + [ + 77.752102130037102, + 12.9569735035893 + ], + [ + 77.751840645582305, + 12.956818758973 + ], + [ + 77.751663172846406, + 12.9566391489632 + ], + [ + 77.751351233055701, + 12.956431811737 + ], + [ + 77.750882389417995, + 12.956224474510799 + ], + [ + 77.7505611101125, + 12.956050759537501 + ], + [ + 77.750478922383195, + 12.955983515031701 + ], + [ + 77.750381791430399, + 12.9559256100406 + ], + [ + 77.750187529524794, + 12.955914402623 + ], + [ + 77.750039965192599, + 12.955906931011199 + ], + [ + 77.749728025401893, + 12.955873308758299 + ], + [ + 77.749173258229007, + 12.9558714408554 + ], + [ + 77.748919223429297, + 12.955863969243699 + ], + [ + 77.748799677641301, + 12.9558583655348 + ], + [ + 77.748599812026796, + 12.955878912467201 + ], + [ + 77.748480266238701, + 12.9558807803701 + ], + [ + 77.748400167272607, + 12.9558516748132 + ], + [ + 77.748383135285906, + 12.955873308758401 + ], + [ + 77.748334569809501, + 12.9558471581172 + ], + [ + 77.748147779515605, + 12.955802328446699 + ], + [ + 77.747921763259995, + 12.9557985926408 + ], + [ + 77.747917093502394, + 12.955460502208799 + ], + [ + 77.748020762115502, + 12.9554287478589 + ], + [ + 77.748298460017594, + 12.9539576610078 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "111", + "group": "sarakki", + "Corporatio": "South", + "ac_no": "173", + "ac": "Jayanagar", + "corporat_1": "4", + "ward_id": "61", + "ward_name": "61 - Sarakki", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಜಯನಗರ", + "ward_name_": "ಸಾರಕ್ಕಿ", + "dig_ward_n": "sarakki", + "Assembly": "173 - Jayanagar", + "Slno": "61" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.580326519620797, + 12.9043590208291 + ], + [ + 77.580302458019901, + 12.9043607222749 + ], + [ + 77.579667681727699, + 12.904539772992999 + ], + [ + 77.579660246016005, + 12.904544363626901 + ], + [ + 77.579689033815697, + 12.9047134759288 + ], + [ + 77.5786646284608, + 12.9049539649947 + ], + [ + 77.578695928231397, + 12.905368113098399 + ], + [ + 77.578046559003099, + 12.9053594341464 + ], + [ + 77.577480665153502, + 12.9053518690804 + ], + [ + 77.577208811444905, + 12.9053353518847 + ], + [ + 77.5769093084361, + 12.905316848415399 + ], + [ + 77.576910798212097, + 12.905284349670101 + ], + [ + 77.5769149537918, + 12.905193697752001 + ], + [ + 77.576926354593795, + 12.905070490337099 + ], + [ + 77.576921879912007, + 12.9046899563438 + ], + [ + 77.576940878492493, + 12.904577967133299 + ], + [ + 77.576971752247104, + 12.9043890676222 + ], + [ + 77.577235231080806, + 12.9038692447737 + ], + [ + 77.577004598106896, + 12.9038308636739 + ], + [ + 77.576905677356507, + 12.903895080477101 + ], + [ + 77.5768982531647, + 12.9039008002364 + ], + [ + 77.5767755645129, + 12.904004777263999 + ], + [ + 77.576570691787893, + 12.9041773232066 + ], + [ + 77.576373367414703, + 12.904300104880701 + ], + [ + 77.576253506991506, + 12.9043430709789 + ], + [ + 77.576214508888199, + 12.9043570071461 + ], + [ + 77.576124565060098, + 12.904398548983499 + ], + [ + 77.5759819399847, + 12.904523049876399 + ], + [ + 77.575977393467099, + 12.9045287412526 + ], + [ + 77.575972271406002, + 12.9045344383015 + ], + [ + 77.575899998549005, + 12.9046153318517 + ], + [ + 77.575763232757396, + 12.9047499387298 + ], + [ + 77.5757444248475, + 12.9047681931022 + ], + [ + 77.575616187974006, + 12.904892552054999 + ], + [ + 77.575472043873702, + 12.905037395366101 + ], + [ + 77.575466910227405, + 12.9050419632099 + ], + [ + 77.575457794023393, + 12.905051087553501 + ], + [ + 77.575457851842003, + 12.905056733549101 + ], + [ + 77.5754634355105, + 12.9053209377806 + ], + [ + 77.575468730138894, + 12.9055569120281 + ], + [ + 77.575475247979895, + 12.905856115743999 + ], + [ + 77.575476304291996, + 12.905904672117 + ], + [ + 77.575488295482799, + 12.906455652346899 + ], + [ + 77.575486667011603, + 12.9064556527902 + ], + [ + 77.575092929852403, + 12.9064557596872 + ], + [ + 77.574310032900897, + 12.906455969471599 + ], + [ + 77.573264399728899, + 12.906479820164201 + ], + [ + 77.573258068691004, + 12.906479882508799 + ], + [ + 77.573111562853896, + 12.907519165504899 + ], + [ + 77.573071872465903, + 12.9078030143768 + ], + [ + 77.573042326015596, + 12.908050889642199 + ], + [ + 77.572992357407301, + 12.908470093163199 + ], + [ + 77.572988111209199, + 12.9085051437386 + ], + [ + 77.572985178528796, + 12.908575312104499 + ], + [ + 77.572963420203493, + 12.9090959968619 + ], + [ + 77.572958981389604, + 12.9092022178507 + ], + [ + 77.572951563746997, + 12.909377334695501 + ], + [ + 77.572948103396698, + 12.9094891709388 + ], + [ + 77.572936677570496, + 12.909891319528599 + ], + [ + 77.572931113784904, + 12.9100788405761 + ], + [ + 77.572923446563095, + 12.9103420464279 + ], + [ + 77.572903787469997, + 12.910952070011 + ], + [ + 77.572901085367704, + 12.9110255020819 + ], + [ + 77.572909781374193, + 12.9114251938369 + ], + [ + 77.572914429953101, + 12.911654398929601 + ], + [ + 77.572932069333405, + 12.9120280283312 + ], + [ + 77.572945450733997, + 12.912154379759199 + ], + [ + 77.572968965900202, + 12.9123709765274 + ], + [ + 77.572987548142507, + 12.9124430696139 + ], + [ + 77.5730600927659, + 12.9127258129297 + ], + [ + 77.5732335497039, + 12.9133632960315 + ], + [ + 77.573265682383706, + 12.9134419996495 + ], + [ + 77.573265682383706, + 12.9134419996495 + ], + [ + 77.573270746770206, + 12.91345440401 + ], + [ + 77.573274001451196, + 12.913462544686499 + ], + [ + 77.573319326138602, + 12.9134143436766 + ], + [ + 77.573439022306303, + 12.9133989834049 + ], + [ + 77.573485285803301, + 12.913352680296599 + ], + [ + 77.5734984802707, + 12.9133127643746 + ], + [ + 77.573916590344993, + 12.9132956327822 + ], + [ + 77.573827168053896, + 12.912985430154 + ], + [ + 77.573988617703506, + 12.912983655982 + ], + [ + 77.573985069359594, + 12.912513500408799 + ], + [ + 77.574141474133697, + 12.9124746943977 + ], + [ + 77.574318018298897, + 12.912686009378 + ], + [ + 77.574582465209801, + 12.913017837541499 + ], + [ + 77.574626541938699, + 12.913076395049099 + ], + [ + 77.574649782671102, + 12.9129636541879 + ], + [ + 77.574643418024394, + 12.912644369391399 + ], + [ + 77.574637377374401, + 12.9124821863757 + ], + [ + 77.574852287744605, + 12.9124909599396 + ], + [ + 77.575209469432806, + 12.9125095497415 + ], + [ + 77.575270456672897, + 12.912516119139401 + ], + [ + 77.575353415221997, + 12.9125266557713 + ], + [ + 77.575473409575494, + 12.9125248745564 + ], + [ + 77.575496765902699, + 12.9125233441946 + ], + [ + 77.575559249137697, + 12.9125192480002 + ], + [ + 77.575704637127899, + 12.9124986910458 + ], + [ + 77.575907344932602, + 12.912463431435199 + ], + [ + 77.575996482875496, + 12.912449748590699 + ], + [ + 77.576289518640607, + 12.912412544373501 + ], + [ + 77.576305148393999, + 12.912409317309599 + ], + [ + 77.576576961625094, + 12.9123972834873 + ], + [ + 77.576721613551996, + 12.9123938021197 + ], + [ + 77.576849120302697, + 12.9123880748957 + ], + [ + 77.577147231734699, + 12.9123692791424 + ], + [ + 77.577321065822503, + 12.912358318971499 + ], + [ + 77.577733707361006, + 12.912319825685801 + ], + [ + 77.577990707970301, + 12.912290226515699 + ], + [ + 77.578534906168599, + 12.912225095452399 + ], + [ + 77.578666234152493, + 12.9122088984287 + ], + [ + 77.578817215998299, + 12.9121902775963 + ], + [ + 77.579096183363404, + 12.9121621851915 + ], + [ + 77.579084157578706, + 12.912035135529599 + ], + [ + 77.579081830128601, + 12.912023276365099 + ], + [ + 77.579056902855896, + 12.9118962845155 + ], + [ + 77.579037187177306, + 12.911827158530301 + ], + [ + 77.579003999757404, + 12.911585101988599 + ], + [ + 77.578985737382098, + 12.911467675969501 + ], + [ + 77.579167346134199, + 12.911450583930201 + ], + [ + 77.579125639870895, + 12.911185663948 + ], + [ + 77.579100326632897, + 12.9109985089831 + ], + [ + 77.579098096928405, + 12.910858109893899 + ], + [ + 77.579200311130606, + 12.9108468577304 + ], + [ + 77.580599488200704, + 12.910714175551799 + ], + [ + 77.5817918129639, + 12.910619854738499 + ], + [ + 77.5817827989964, + 12.910313316024601 + ], + [ + 77.5817738559482, + 12.9100091897045 + ], + [ + 77.581755364725794, + 12.9093803679314 + ], + [ + 77.581436129998096, + 12.909378443225799 + ], + [ + 77.580697104341994, + 12.909393704810499 + ], + [ + 77.580616732205598, + 12.9093965473119 + ], + [ + 77.580618497070802, + 12.9089581303312 + ], + [ + 77.580614871885302, + 12.9085603931987 + ], + [ + 77.580643337060906, + 12.908484815164901 + ], + [ + 77.582031920560993, + 12.9084495825931 + ], + [ + 77.582037961094599, + 12.9073662016146 + ], + [ + 77.582026675336095, + 12.9070881911233 + ], + [ + 77.583037405622093, + 12.9070863960343 + ], + [ + 77.583050485233699, + 12.906357110973101 + ], + [ + 77.580389944669903, + 12.906426273820999 + ], + [ + 77.580383620448103, + 12.9047549923033 + ], + [ + 77.580364449186504, + 12.904552059464301 + ], + [ + 77.580327450302605, + 12.904416769487501 + ], + [ + 77.580326519620797, + 12.9043590208291 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "108", + "group": "Maruthi Seva Nagara", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "63", + "ward_name": "63 - Maruthi Seva Nagara", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಮಾರುತಿ ಸೇವಾ ನಗರ", + "dig_ward_n": "Maruthi Seva Nagara", + "Assembly": "160 - Sarvagnanagar", + "Slno": "63" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.625666442388606, + 13.000064671638199 + ], + [ + 77.625441234986496, + 12.9999382838574 + ], + [ + 77.625254467500596, + 12.999819270985199 + ], + [ + 77.625161163039905, + 12.999697555246801 + ], + [ + 77.625039645997504, + 12.9995858575656 + ], + [ + 77.625007659721106, + 12.9995556908521 + ], + [ + 77.624904495203694, + 12.999437031883801 + ], + [ + 77.624637405254006, + 12.999170967212899 + ], + [ + 77.624561164310705, + 12.999093817782301 + ], + [ + 77.624192916531499, + 12.9988077347724 + ], + [ + 77.623876707220603, + 12.9985620777439 + ], + [ + 77.623258764379202, + 12.9980816167761 + ], + [ + 77.623214308879597, + 12.9980470514685 + ], + [ + 77.622816390599397, + 12.997960171449201 + ], + [ + 77.622395423320697, + 12.9979981930591 + ], + [ + 77.622360283123598, + 12.9980291539286 + ], + [ + 77.622302378836494, + 12.9980801728996 + ], + [ + 77.622291871284304, + 12.998089431539 + ], + [ + 77.622279269705999, + 12.998100535325699 + ], + [ + 77.621741201485094, + 12.9985746203585 + ], + [ + 77.621674763071397, + 12.9986338787492 + ], + [ + 77.621643455568105, + 12.9986618033118 + ], + [ + 77.621181508129396, + 12.9990738274566 + ], + [ + 77.620716726913699, + 12.9994883766943 + ], + [ + 77.620713425556303, + 12.9994913217358 + ], + [ + 77.620268527671897, + 12.9998881352758 + ], + [ + 77.620182709281195, + 12.999964678067601 + ], + [ + 77.620265882049495, + 13.000044016640601 + ], + [ + 77.620302958997399, + 13.0001204327202 + ], + [ + 77.620297004340401, + 13.000173222527099 + ], + [ + 77.620290844032297, + 13.000227835697499 + ], + [ + 77.620281334200598, + 13.00030923916 + ], + [ + 77.6202774126983, + 13.000593854849701 + ], + [ + 77.620282451541598, + 13.000739374138901 + ], + [ + 77.620294767042196, + 13.0010950756171 + ], + [ + 77.620304402766095, + 13.0011431566144 + ], + [ + 77.620311127642296, + 13.0011767120615 + ], + [ + 77.620345217870593, + 13.0013468235293 + ], + [ + 77.620345809008697, + 13.0013497753453 + ], + [ + 77.620360641311905, + 13.0013914085872 + ], + [ + 77.620458425585198, + 13.0016557997533 + ], + [ + 77.620506080700196, + 13.0017524357936 + ], + [ + 77.620638552424197, + 13.0020300278143 + ], + [ + 77.620744262045704, + 13.002226582548399 + ], + [ + 77.620743329956298, + 13.002236169071899 + ], + [ + 77.620738545485295, + 13.0022853632069 + ], + [ + 77.620733120045699, + 13.002317036645101 + ], + [ + 77.620716250820493, + 13.0023556021704 + ], + [ + 77.6206653760064, + 13.0023911241907 + ], + [ + 77.620582486441506, + 13.0024484238114 + ], + [ + 77.620494615071394, + 13.002502621699 + ], + [ + 77.620450330623996, + 13.002529936458499 + ], + [ + 77.620356512689398, + 13.002588476547301 + ], + [ + 77.6200821098533, + 13.002777576709899 + ], + [ + 77.619961599057206, + 13.002871393567199 + ], + [ + 77.619874209863397, + 13.002938902782301 + ], + [ + 77.619740918077596, + 13.003076889243101 + ], + [ + 77.619676053199598, + 13.0031509475505 + ], + [ + 77.619614915425799, + 13.003250940543801 + ], + [ + 77.6195721000378, + 13.0033959193957 + ], + [ + 77.619547853383906, + 13.0037421184739 + ], + [ + 77.619546061139204, + 13.0037677122874 + ], + [ + 77.619630900271304, + 13.0039577251297 + ], + [ + 77.619653979813606, + 13.0040094141815 + ], + [ + 77.619667534846698, + 13.0040397694454 + ], + [ + 77.619710199576701, + 13.004134381728999 + ], + [ + 77.619743376985795, + 13.004207954358799 + ], + [ + 77.619826710675298, + 13.0043927533036 + ], + [ + 77.619961723856093, + 13.004692905253901 + ], + [ + 77.620006525148199, + 13.004763284318599 + ], + [ + 77.620104579219898, + 13.004917316784301 + ], + [ + 77.6202162083693, + 13.0050742873297 + ], + [ + 77.620460929620506, + 13.005458026152199 + ], + [ + 77.620476588896395, + 13.0054842378006 + ], + [ + 77.620544155998104, + 13.0055973342652 + ], + [ + 77.620609804452698, + 13.0057072203685 + ], + [ + 77.620782947406894, + 13.0059519964259 + ], + [ + 77.620878673208693, + 13.0060873268422 + ], + [ + 77.620892891820205, + 13.006106275991099 + ], + [ + 77.620983792180098, + 13.0062274235892 + ], + [ + 77.621010940029507, + 13.0062640466235 + ], + [ + 77.621042785873897, + 13.0063070057245 + ], + [ + 77.621225568085407, + 13.0065613026037 + ], + [ + 77.621319188332905, + 13.006691552454701 + ], + [ + 77.621446269102407, + 13.0068617203287 + ], + [ + 77.621447841800801, + 13.0068638265593 + ], + [ + 77.621475710190794, + 13.0069011441913 + ], + [ + 77.621496824955301, + 13.006932108588799 + ], + [ + 77.621614900256603, + 13.007105264584601 + ], + [ + 77.62171263786, + 13.007229601314201 + ], + [ + 77.621837392194394, + 13.007388307291199 + ], + [ + 77.621848558538005, + 13.007402511756499 + ], + [ + 77.622005927850395, + 13.0076027079591 + ], + [ + 77.622114324677895, + 13.0077258318502 + ], + [ + 77.622375452145903, + 13.007971631271401 + ], + [ + 77.622427792852704, + 13.0080207899477 + ], + [ + 77.622545210233994, + 13.0081465895514 + ], + [ + 77.622634538287301, + 13.0082422948617 + ], + [ + 77.622657829892006, + 13.008266903270099 + ], + [ + 77.622604497915205, + 13.008287769284401 + ], + [ + 77.622957606167105, + 13.0086257528337 + ], + [ + 77.623241487939097, + 13.0089634980743 + ], + [ + 77.623341309527603, + 13.0091835900331 + ], + [ + 77.623577072885993, + 13.0095815785323 + ], + [ + 77.623744741264701, + 13.009878668476 + ], + [ + 77.623928137135493, + 13.0101549281272 + ], + [ + 77.623961470907105, + 13.0102051404888 + ], + [ + 77.624185791573098, + 13.0104451627916 + ], + [ + 77.624465098150907, + 13.0107440196906 + ], + [ + 77.624871107801596, + 13.0111044289141 + ], + [ + 77.624904499729297, + 13.011136502690899 + ], + [ + 77.625055800814195, + 13.011281830966301 + ], + [ + 77.625396547439806, + 13.011716938923101 + ], + [ + 77.625516398916105, + 13.0118536502849 + ], + [ + 77.627045993818797, + 13.011473625385699 + ], + [ + 77.626903994648899, + 13.010896519533899 + ], + [ + 77.626786813694196, + 13.0109158805585 + ], + [ + 77.626452198946794, + 13.009668768596301 + ], + [ + 77.626452198946794, + 13.009668768596301 + ], + [ + 77.627458884770903, + 13.0094690604934 + ], + [ + 77.627317886361894, + 13.0088372154251 + ], + [ + 77.627362884886196, + 13.008433066452101 + ], + [ + 77.627376904908303, + 13.0083755578436 + ], + [ + 77.627427475325604, + 13.0082765813584 + ], + [ + 77.627638578276702, + 13.008265045678 + ], + [ + 77.627921202446203, + 13.008156610282301 + ], + [ + 77.628427618815095, + 13.0079628108519 + ], + [ + 77.629096688277599, + 13.0077667042853 + ], + [ + 77.628986522529701, + 13.0074206338737 + ], + [ + 77.629824755811597, + 13.0071918974937 + ], + [ + 77.6294802496503, + 13.006458558129401 + ], + [ + 77.627758621242094, + 13.0069612389741 + ], + [ + 77.627491498351603, + 13.0062324587939 + ], + [ + 77.628905150361405, + 13.005722675904799 + ], + [ + 77.629059911097997, + 13.0056555147446 + ], + [ + 77.629099688721794, + 13.005638252232201 + ], + [ + 77.629863086281802, + 13.005306961085401 + ], + [ + 77.629874988450197, + 13.0053017967098 + ], + [ + 77.6300509122634, + 13.005229444561699 + ], + [ + 77.630131089749398, + 13.005196470445901 + ], + [ + 77.630691403134406, + 13.004966034475499 + ], + [ + 77.631038912880499, + 13.004841239084101 + ], + [ + 77.631367721653504, + 13.004723160068201 + ], + [ + 77.631713738444702, + 13.0046146449008 + ], + [ + 77.6317137898602, + 13.004614628117899 + ], + [ + 77.631753973082397, + 13.004602928852 + ], + [ + 77.632179496969698, + 13.004489947895699 + ], + [ + 77.632317657285498, + 13.0044594195443 + ], + [ + 77.632521029433903, + 13.004414482365499 + ], + [ + 77.632857901869599, + 13.004339904778201 + ], + [ + 77.632912528528294, + 13.004325804793099 + ], + [ + 77.633127646818906, + 13.004270214256101 + ], + [ + 77.633149556200294, + 13.004264552507101 + ], + [ + 77.633293537333003, + 13.004227343536099 + ], + [ + 77.633374281155398, + 13.004206477494799 + ], + [ + 77.633713920242599, + 13.0041187045545 + ], + [ + 77.6338729107283, + 13.004085850045501 + ], + [ + 77.634109388632496, + 13.004036983735499 + ], + [ + 77.6345766982936, + 13.0039856598308 + ], + [ + 77.634921043568696, + 13.003969279032299 + ], + [ + 77.635162276586399, + 13.003981291055799 + ], + [ + 77.635311556135306, + 13.003988725063801 + ], + [ + 77.635458710704299, + 13.004014953344299 + ], + [ + 77.636177657207995, + 13.0041552563228 + ], + [ + 77.636646083750094, + 13.004227123406601 + ], + [ + 77.636350741838399, + 13.0039577592939 + ], + [ + 77.636322255057905, + 13.0039320749058 + ], + [ + 77.636066203991206, + 13.0037878483085 + ], + [ + 77.636060185272598, + 13.003782796175001 + ], + [ + 77.6354984699651, + 13.003278707199099 + ], + [ + 77.635443861192996, + 13.0032329622472 + ], + [ + 77.635298067600402, + 13.003119809011199 + ], + [ + 77.635141393889, + 13.0030131838465 + ], + [ + 77.634147427030697, + 13.0023730928554 + ], + [ + 77.629952402799901, + 13.0014774903575 + ], + [ + 77.629734856269593, + 13.0014521326361 + ], + [ + 77.629507557329205, + 13.001427851925801 + ], + [ + 77.629405709897298, + 13.0014169723335 + ], + [ + 77.628264614770004, + 13.0012419004977 + ], + [ + 77.628073971983895, + 13.001216044815299 + ], + [ + 77.627754240038698, + 13.0011636461966 + ], + [ + 77.627653152090602, + 13.0011483314756 + ], + [ + 77.627466042718794, + 13.0011281162262 + ], + [ + 77.627299154202404, + 13.0010823774873 + ], + [ + 77.627250587693098, + 13.001063466548599 + ], + [ + 77.627144778434001, + 13.0010218315321 + ], + [ + 77.627073652297696, + 13.0009931906029 + ], + [ + 77.627005937928899, + 13.0009539822404 + ], + [ + 77.626747926202299, + 13.000787111529799 + ], + [ + 77.626462867088406, + 13.000573861200399 + ], + [ + 77.626435100001402, + 13.000552274189401 + ], + [ + 77.626343854968994, + 13.000481337385301 + ], + [ + 77.626202152455306, + 13.0003872172901 + ], + [ + 77.626119450407899, + 13.000332285525101 + ], + [ + 77.625824571544797, + 13.0001534141297 + ], + [ + 77.625666442388606, + 13.000064671638199 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "109", + "group": "Kammanahalli", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "61", + "ward_name": "61 - Kammanahalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಕಮ್ಮನಹಳ್ಳಿ", + "dig_ward_n": "Kammanahalli", + "Assembly": "160 - Sarvagnanagar", + "Slno": "61" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.631038912880499, + 13.004841239084101 + ], + [ + 77.630691403134406, + 13.004966034475499 + ], + [ + 77.630131089749398, + 13.005196470445901 + ], + [ + 77.6300509122634, + 13.005229444561699 + ], + [ + 77.629874988450197, + 13.0053017967098 + ], + [ + 77.629863086281802, + 13.005306961085401 + ], + [ + 77.629099688721794, + 13.005638252232201 + ], + [ + 77.629059911097997, + 13.0056555147446 + ], + [ + 77.628905150361405, + 13.005722675904799 + ], + [ + 77.627491498351603, + 13.0062324587939 + ], + [ + 77.627758621242094, + 13.0069612389741 + ], + [ + 77.6294802496503, + 13.006458558129401 + ], + [ + 77.629824755811597, + 13.0071918974937 + ], + [ + 77.628986522529701, + 13.0074206338737 + ], + [ + 77.629096688277599, + 13.0077667042853 + ], + [ + 77.630006853460102, + 13.007651347481399 + ], + [ + 77.630475454920301, + 13.007703603082501 + ], + [ + 77.630552491142396, + 13.007918975266399 + ], + [ + 77.630591712006904, + 13.007988189794901 + ], + [ + 77.630702849404202, + 13.0082280248111 + ], + [ + 77.631105413801706, + 13.008718718171201 + ], + [ + 77.631472461653203, + 13.009204050061401 + ], + [ + 77.630126247752102, + 13.010068072522399 + ], + [ + 77.630140132492897, + 13.010166355211 + ], + [ + 77.630083278612901, + 13.011247335980601 + ], + [ + 77.629762550149294, + 13.0113461997413 + ], + [ + 77.629646260643099, + 13.0114143061628 + ], + [ + 77.629632520631603, + 13.011683067776501 + ], + [ + 77.630363753436995, + 13.011774134422801 + ], + [ + 77.630316168708802, + 13.012914861339199 + ], + [ + 77.631708457736394, + 13.0129789799128 + ], + [ + 77.631648919060893, + 13.0121362786593 + ], + [ + 77.6318733340687, + 13.010551633910699 + ], + [ + 77.632995409107394, + 13.0107325398864 + ], + [ + 77.632899231246896, + 13.0117492772684 + ], + [ + 77.634023596234698, + 13.011874079492101 + ], + [ + 77.635213797257904, + 13.011867209644899 + ], + [ + 77.635124489244603, + 13.011157325436701 + ], + [ + 77.635173723149407, + 13.0108768066771 + ], + [ + 77.6351910672374, + 13.0106356015022 + ], + [ + 77.635422365540506, + 13.009336808960301 + ], + [ + 77.635590699551202, + 13.008057403431 + ], + [ + 77.635716340168699, + 13.007056984019901 + ], + [ + 77.635865248744494, + 13.006659278968201 + ], + [ + 77.636147872913895, + 13.006035198659299 + ], + [ + 77.636159408594295, + 13.0058633170215 + ], + [ + 77.636108024447296, + 13.004948416987 + ], + [ + 77.636138488780105, + 13.004749310812 + ], + [ + 77.636177657207995, + 13.0041552563228 + ], + [ + 77.635458710704299, + 13.004014953344299 + ], + [ + 77.635311556135306, + 13.003988725063801 + ], + [ + 77.635162276586399, + 13.003981291055799 + ], + [ + 77.634921043568696, + 13.003969279032299 + ], + [ + 77.6345766982936, + 13.0039856598308 + ], + [ + 77.634109388632496, + 13.004036983735499 + ], + [ + 77.6338729107283, + 13.004085850045501 + ], + [ + 77.633713920242599, + 13.0041187045545 + ], + [ + 77.633374281155398, + 13.004206477494799 + ], + [ + 77.633293537333003, + 13.004227343536099 + ], + [ + 77.633149556200294, + 13.004264552507101 + ], + [ + 77.633127646818906, + 13.004270214256101 + ], + [ + 77.632912528528294, + 13.004325804793099 + ], + [ + 77.632857901869599, + 13.004339904778201 + ], + [ + 77.632521029433903, + 13.004414482365499 + ], + [ + 77.632317657285498, + 13.0044594195443 + ], + [ + 77.632179496969698, + 13.004489947895699 + ], + [ + 77.631753973082397, + 13.004602928852 + ], + [ + 77.6317137898602, + 13.004614628117899 + ], + [ + 77.631713738444702, + 13.0046146449008 + ], + [ + 77.631367721653504, + 13.004723160068201 + ], + [ + 77.631038912880499, + 13.004841239084101 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "110", + "group": "Lingarajpura", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "55", + "ward_name": "55 - Lingarajpura", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಲಿಂಗರಾಜಪುರ", + "dig_ward_n": "Lingarajpura", + "Assembly": "160 - Sarvagnanagar", + "Slno": "55" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.621979358445202, + 13.008580922873699 + ], + [ + 77.621791660123606, + 13.0086923590715 + ], + [ + 77.621574747457402, + 13.0088703983599 + ], + [ + 77.621513062168006, + 13.008921028501099 + ], + [ + 77.621312510017404, + 13.009147733681701 + ], + [ + 77.621147154781696, + 13.0093346508356 + ], + [ + 77.620951849991499, + 13.0096539489615 + ], + [ + 77.620948467527697, + 13.009660758754499 + ], + [ + 77.620917686760194, + 13.0097293670725 + ], + [ + 77.620893885470693, + 13.0097824167137 + ], + [ + 77.620815120348894, + 13.009957974667101 + ], + [ + 77.620745309357105, + 13.0101642070469 + ], + [ + 77.620654639119806, + 13.010577306461499 + ], + [ + 77.620638297247595, + 13.0109257635115 + ], + [ + 77.6206353519879, + 13.010988555345 + ], + [ + 77.620702366097902, + 13.0114817274756 + ], + [ + 77.620704002762594, + 13.0114937742417 + ], + [ + 77.620735557998302, + 13.011590444231301 + ], + [ + 77.620850964760706, + 13.011943996744799 + ], + [ + 77.621105560711598, + 13.012499282459499 + ], + [ + 77.621122963440698, + 13.012537993158499 + ], + [ + 77.621226648746898, + 13.012768624094001 + ], + [ + 77.621241331699906, + 13.012801283190401 + ], + [ + 77.621296112671203, + 13.0129231358437 + ], + [ + 77.621327704107998, + 13.012993405725 + ], + [ + 77.621344590874997, + 13.013030967950399 + ], + [ + 77.621377965370897, + 13.0131052047584 + ], + [ + 77.621539700793306, + 13.013470075149399 + ], + [ + 77.621539941312506, + 13.0134706057325 + ], + [ + 77.621584808250901, + 13.013569423853699 + ], + [ + 77.621590020252, + 13.0135809032483 + ], + [ + 77.621602474924103, + 13.013608335091 + ], + [ + 77.6216453555936, + 13.013702779064801 + ], + [ + 77.621645602704504, + 13.013703323132299 + ], + [ + 77.6216872761497, + 13.0137951088048 + ], + [ + 77.621816046761296, + 13.0140787220741 + ], + [ + 77.622032509857604, + 13.0145666355342 + ], + [ + 77.622158718622003, + 13.0148499347001 + ], + [ + 77.622323831670599, + 13.0152186646107 + ], + [ + 77.622591494547507, + 13.0158110812141 + ], + [ + 77.622612132914, + 13.015857172405701 + ], + [ + 77.622612236702906, + 13.015857404436501 + ], + [ + 77.622700603302505, + 13.0160561577583 + ], + [ + 77.6227272672391, + 13.0161154654492 + ], + [ + 77.622774897823902, + 13.0162214084492 + ], + [ + 77.622838582909694, + 13.016382430047701 + ], + [ + 77.622943497903506, + 13.0166476949426 + ], + [ + 77.622998551251797, + 13.0168078488818 + ], + [ + 77.623008710331504, + 13.0168373843818 + ], + [ + 77.623021458250705, + 13.0168741599994 + ], + [ + 77.623024326527698, + 13.0168828523753 + ], + [ + 77.623093193003697, + 13.017083206632201 + ], + [ + 77.623134581295602, + 13.017223937161299 + ], + [ + 77.623138677713101, + 13.0172378669997 + ], + [ + 77.623190862734106, + 13.017415306871699 + ], + [ + 77.623193524882694, + 13.0174243592379 + ], + [ + 77.623214556787602, + 13.0175052747416 + ], + [ + 77.623218812515802, + 13.017521646697899 + ], + [ + 77.623241536387198, + 13.017609073139299 + ], + [ + 77.623263601624402, + 13.017717431099101 + ], + [ + 77.623277249209906, + 13.0177844500266 + ], + [ + 77.623304739663297, + 13.0179194435164 + ], + [ + 77.623306612836402, + 13.017928641182399 + ], + [ + 77.623310153257606, + 13.017946029485699 + ], + [ + 77.623327236955504, + 13.018044769511 + ], + [ + 77.623330113358506, + 13.0180613957285 + ], + [ + 77.623338668941898, + 13.0181108441971 + ], + [ + 77.623338768073594, + 13.0181114213784 + ], + [ + 77.6233388425767, + 13.018111847035501 + ], + [ + 77.623339457702301, + 13.0181154038721 + ], + [ + 77.623339808923106, + 13.018117434804401 + ], + [ + 77.623389766258697, + 13.018406181354401 + ], + [ + 77.623412548897505, + 13.018537858139 + ], + [ + 77.623420833955393, + 13.018610967015601 + ], + [ + 77.623422100536601, + 13.018622143872101 + ], + [ + 77.623450002831305, + 13.0188683541359 + ], + [ + 77.623465052645599, + 13.0190398503051 + ], + [ + 77.623492697981206, + 13.019347403985901 + ], + [ + 77.623498316627106, + 13.019409912987699 + ], + [ + 77.623497506092804, + 13.019748100312 + ], + [ + 77.623497142164496, + 13.019900026447299 + ], + [ + 77.623490608083102, + 13.019999809507301 + ], + [ + 77.623481417400995, + 13.0201401673442 + ], + [ + 77.623478501172897, + 13.0201846989877 + ], + [ + 77.623461920849294, + 13.0204379137049 + ], + [ + 77.623418545174403, + 13.020803105768801 + ], + [ + 77.623367583289394, + 13.021104006451299 + ], + [ + 77.623345917039202, + 13.0212231707646 + ], + [ + 77.624042063134098, + 13.021173777466 + ], + [ + 77.624133613603604, + 13.0211728496056 + ], + [ + 77.624319100954907, + 13.0211788771919 + ], + [ + 77.624508185736005, + 13.021198418494301 + ], + [ + 77.624520276384501, + 13.0211982960552 + ], + [ + 77.624872669717405, + 13.021218546714101 + ], + [ + 77.625455134385604, + 13.021167562158499 + ], + [ + 77.625855378743395, + 13.0211702828111 + ], + [ + 77.626046000373293, + 13.0211717391702 + ], + [ + 77.626248068640706, + 13.021165211587 + ], + [ + 77.628648659762206, + 13.021100183772701 + ], + [ + 77.628537355044301, + 13.020429401726 + ], + [ + 77.628389491504905, + 13.0195681449022 + ], + [ + 77.628337589141793, + 13.019292815911101 + ], + [ + 77.628313008783493, + 13.0191624257616 + ], + [ + 77.628243098455002, + 13.0187915675401 + ], + [ + 77.628234561185394, + 13.018746483603699 + ], + [ + 77.628164561433394, + 13.018311633164799 + ], + [ + 77.628155069854301, + 13.0182526725782 + ], + [ + 77.628114353546394, + 13.017995613506301 + ], + [ + 77.628069833140003, + 13.017760048966 + ], + [ + 77.628039929263494, + 13.017599996824099 + ], + [ + 77.628038094771, + 13.017589852057201 + ], + [ + 77.627930574429101, + 13.017059059257001 + ], + [ + 77.627914171264294, + 13.016977918608401 + ], + [ + 77.627827570120004, + 13.0164649818105 + ], + [ + 77.627746139611901, + 13.015950863233501 + ], + [ + 77.627712161187304, + 13.015458848897 + ], + [ + 77.627705215108406, + 13.0154313932801 + ], + [ + 77.627684521030901, + 13.015349590500399 + ], + [ + 77.627588841451995, + 13.015122448996401 + ], + [ + 77.627445674966097, + 13.014869815578299 + ], + [ + 77.627240183578294, + 13.0145865702695 + ], + [ + 77.627797245663402, + 13.0146409708638 + ], + [ + 77.628600198434498, + 13.0149630223817 + ], + [ + 77.6285283896501, + 13.0151284001882 + ], + [ + 77.628737287932097, + 13.0159182968167 + ], + [ + 77.629083275711494, + 13.015809495628201 + ], + [ + 77.629231877388193, + 13.016123366354799 + ], + [ + 77.630036557837002, + 13.015722863047801 + ], + [ + 77.629573578200706, + 13.0150231844313 + ], + [ + 77.628833386372705, + 13.014756173031399 + ], + [ + 77.628864607529707, + 13.0141820800514 + ], + [ + 77.628785828981407, + 13.0139653809984 + ], + [ + 77.628808745784994, + 13.0127287263632 + ], + [ + 77.628747198917694, + 13.0127071544998 + ], + [ + 77.628726951819104, + 13.0126983256432 + ], + [ + 77.628681255319904, + 13.0120128781557 + ], + [ + 77.629139947079096, + 13.011883788615201 + ], + [ + 77.629527545940107, + 13.011777660355699 + ], + [ + 77.629632520631603, + 13.011683067776501 + ], + [ + 77.629646260643099, + 13.0114143061628 + ], + [ + 77.629762550149294, + 13.0113461997413 + ], + [ + 77.630083278612901, + 13.011247335980601 + ], + [ + 77.630140132492897, + 13.010166355211 + ], + [ + 77.630126247752102, + 13.010068072522399 + ], + [ + 77.631472461653203, + 13.009204050061401 + ], + [ + 77.631105413801706, + 13.008718718171201 + ], + [ + 77.630702849404202, + 13.0082280248111 + ], + [ + 77.630591712006904, + 13.007988189794901 + ], + [ + 77.630552491142396, + 13.007918975266399 + ], + [ + 77.630475454920301, + 13.007703603082501 + ], + [ + 77.630006853460102, + 13.007651347481399 + ], + [ + 77.629096688277599, + 13.0077667042853 + ], + [ + 77.628427618815095, + 13.0079628108519 + ], + [ + 77.627921202446203, + 13.008156610282301 + ], + [ + 77.627638578276702, + 13.008265045678 + ], + [ + 77.627427475325604, + 13.0082765813584 + ], + [ + 77.627376904908303, + 13.0083755578436 + ], + [ + 77.627362884886196, + 13.008433066452101 + ], + [ + 77.627317886361894, + 13.0088372154251 + ], + [ + 77.627458884770903, + 13.0094690604934 + ], + [ + 77.626452198946794, + 13.009668768596301 + ], + [ + 77.626786813694196, + 13.0109158805585 + ], + [ + 77.626903994648899, + 13.010896519533899 + ], + [ + 77.627045993818797, + 13.011473625385699 + ], + [ + 77.625516398916105, + 13.0118536502849 + ], + [ + 77.625396547439806, + 13.011716938923101 + ], + [ + 77.625055800814195, + 13.011281830966301 + ], + [ + 77.624904499729297, + 13.011136502690899 + ], + [ + 77.624871107801596, + 13.0111044289141 + ], + [ + 77.624465098150907, + 13.0107440196906 + ], + [ + 77.624185791573098, + 13.0104451627916 + ], + [ + 77.623961470907105, + 13.0102051404888 + ], + [ + 77.623928137135493, + 13.0101549281272 + ], + [ + 77.623744741264701, + 13.009878668476 + ], + [ + 77.623577072885993, + 13.0095815785323 + ], + [ + 77.623341309527603, + 13.0091835900331 + ], + [ + 77.623241487939097, + 13.0089634980743 + ], + [ + 77.622957606167105, + 13.0086257528337 + ], + [ + 77.622604497915205, + 13.008287769284401 + ], + [ + 77.621979358445202, + 13.008580922873699 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "112", + "group": "chandranagara", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "64", + "ward_name": "64 - Chandranagara", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಚಂದ್ರನಗರ", + "dig_ward_n": "chandranagara", + "Assembly": "176 - Bangalore South", + "Slno": "64" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.560531477834999, + 12.8974243567587 + ], + [ + 77.560767641125295, + 12.8980276178479 + ], + [ + 77.561038292842795, + 12.8987183726599 + ], + [ + 77.561242761889801, + 12.8992403765278 + ], + [ + 77.561223555512399, + 12.8992587491701 + ], + [ + 77.561195322328501, + 12.8992857567649 + ], + [ + 77.561187923608799, + 12.8992928346719 + ], + [ + 77.561156532847093, + 12.899322863299099 + ], + [ + 77.5608669291708, + 12.8995998958732 + ], + [ + 77.56067499644, + 12.8997834967453 + ], + [ + 77.560180554020704, + 12.9002355520518 + ], + [ + 77.560174280528301, + 12.9002412601158 + ], + [ + 77.560092725100006, + 12.9003154649383 + ], + [ + 77.560329568225399, + 12.9005119068044 + ], + [ + 77.560883346999006, + 12.900969505958299 + ], + [ + 77.560899901724198, + 12.900983215510699 + ], + [ + 77.561193330432502, + 12.901226213837999 + ], + [ + 77.561773472242507, + 12.901672258976699 + ], + [ + 77.561823947550195, + 12.9017188535191 + ], + [ + 77.561860631679195, + 12.9017527161398 + ], + [ + 77.562040775157499, + 12.901920349203801 + ], + [ + 77.562242363518294, + 12.9021024531046 + ], + [ + 77.562261108918406, + 12.902119374550001 + ], + [ + 77.562270829710499, + 12.9021281485223 + ], + [ + 77.562400078897099, + 12.902235509852 + ], + [ + 77.562462979633906, + 12.9022877582362 + ], + [ + 77.562468205543297, + 12.9022922243007 + ], + [ + 77.562509140580801, + 12.9023259547804 + ], + [ + 77.562516469409104, + 12.902331993026101 + ], + [ + 77.562565725209495, + 12.9023725795837 + ], + [ + 77.562909900340799, + 12.902653995257801 + ], + [ + 77.562969709599102, + 12.9027028984718 + ], + [ + 77.563253014951698, + 12.9029395368919 + ], + [ + 77.563441079719894, + 12.903093539102899 + ], + [ + 77.563475226673205, + 12.903122205582999 + ], + [ + 77.563523520713602, + 12.9031627485684 + ], + [ + 77.563550697455995, + 12.9031853377088 + ], + [ + 77.563656460076004, + 12.9032732476373 + ], + [ + 77.563707545472099, + 12.903315660827101 + ], + [ + 77.563781369273102, + 12.9033760294449 + ], + [ + 77.5638358230714, + 12.903420558887801 + ], + [ + 77.563992509740999, + 12.9035455059815 + ], + [ + 77.564119624963297, + 12.903649285939601 + ], + [ + 77.564138779163002, + 12.903664908539699 + ], + [ + 77.564215971531397, + 12.903727393274901 + ], + [ + 77.564343708529293, + 12.9038356842778 + ], + [ + 77.564517339857204, + 12.903985309791 + ], + [ + 77.5647171013144, + 12.9041572651705 + ], + [ + 77.564894796456898, + 12.904310238436 + ], + [ + 77.564921501967603, + 12.9043325627822 + ], + [ + 77.564936604399705, + 12.9043459664257 + ], + [ + 77.564990294616905, + 12.9043853894769 + ], + [ + 77.564997107386503, + 12.9043903919128 + ], + [ + 77.565007938028501, + 12.904398343552201 + ], + [ + 77.565230963924904, + 12.9045825892903 + ], + [ + 77.565528063546793, + 12.904828027857199 + ], + [ + 77.565628336141003, + 12.9048959320767 + ], + [ + 77.565949707009196, + 12.9051630505045 + ], + [ + 77.566181581090504, + 12.905355780293499 + ], + [ + 77.566252915249606, + 12.905408157876799 + ], + [ + 77.5662648295407, + 12.9054475670951 + ], + [ + 77.566813479865502, + 12.9058862051315 + ], + [ + 77.566978393582701, + 12.906018050688299 + ], + [ + 77.567258067877304, + 12.9062416451295 + ], + [ + 77.567513730226096, + 12.906446040876199 + ], + [ + 77.567774435854503, + 12.9066670843983 + ], + [ + 77.568025863901298, + 12.9068814428385 + ], + [ + 77.568062090756399, + 12.9069124005644 + ], + [ + 77.568156516407498, + 12.906993090676499 + ], + [ + 77.568243834244896, + 12.907067670971401 + ], + [ + 77.568458468017397, + 12.9072509954312 + ], + [ + 77.568655886263599, + 12.907418452572699 + ], + [ + 77.5688016305985, + 12.907542374123199 + ], + [ + 77.568962477909906, + 12.907679698893601 + ], + [ + 77.569119124367901, + 12.907813284784 + ], + [ + 77.569347506974196, + 12.908008045368 + ], + [ + 77.569461274868104, + 12.9081050643741 + ], + [ + 77.569561078018907, + 12.9081831351187 + ], + [ + 77.570212712353097, + 12.908693953034 + ], + [ + 77.570223969258905, + 12.9086797490544 + ], + [ + 77.570269540628203, + 12.908622247018 + ], + [ + 77.5702922396069, + 12.908590402840099 + ], + [ + 77.570532235955, + 12.908249246707999 + ], + [ + 77.570743762372999, + 12.9079549255262 + ], + [ + 77.570754027080994, + 12.907940643026199 + ], + [ + 77.570771736962598, + 12.907916000554 + ], + [ + 77.570789325115996, + 12.9078909825389 + ], + [ + 77.570905241269799, + 12.9077665061946 + ], + [ + 77.571200687412102, + 12.907449243445599 + ], + [ + 77.571215626630504, + 12.907433201065 + ], + [ + 77.571203572290202, + 12.9073195967286 + ], + [ + 77.5711794201641, + 12.9071023081775 + ], + [ + 77.571156271687201, + 12.9068640947985 + ], + [ + 77.571140795063201, + 12.906720823894901 + ], + [ + 77.571125618759993, + 12.9066068318514 + ], + [ + 77.571091327061694, + 12.9062916373231 + ], + [ + 77.569563112418507, + 12.9054556279682 + ], + [ + 77.569059464750495, + 12.905198903264701 + ], + [ + 77.568429374902493, + 12.904825950097401 + ], + [ + 77.568848142308894, + 12.9047777474289 + ], + [ + 77.568761642991007, + 12.903576023768601 + ], + [ + 77.568461268883695, + 12.903576700270101 + ], + [ + 77.568166576834102, + 12.9035659433529 + ], + [ + 77.567539249098004, + 12.903576657535501 + ], + [ + 77.567447578141696, + 12.9035718694224 + ], + [ + 77.567372084934803, + 12.903314838858501 + ], + [ + 77.567290674220203, + 12.9029731871943 + ], + [ + 77.566896492032797, + 12.9031479716561 + ], + [ + 77.5664511491035, + 12.9033442732684 + ], + [ + 77.566359508625894, + 12.903102277915499 + ], + [ + 77.566226601778993, + 12.902876972448199 + ], + [ + 77.566205731647699, + 12.902841475455499 + ], + [ + 77.5660430951134, + 12.9025648481392 + ], + [ + 77.566015327074396, + 12.902517617886399 + ], + [ + 77.565800399726498, + 12.9021822034551 + ], + [ + 77.565920053479999, + 12.902119620082599 + ], + [ + 77.565749791216007, + 12.901791416656 + ], + [ + 77.565697723142605, + 12.901703482894201 + ], + [ + 77.565651138508699, + 12.901601119936799 + ], + [ + 77.565459100735694, + 12.901648513744099 + ], + [ + 77.565288994928196, + 12.9008896128757 + ], + [ + 77.565272860108195, + 12.900714774620599 + ], + [ + 77.565073099009794, + 12.900459608482601 + ], + [ + 77.565071149766098, + 12.899813398736301 + ], + [ + 77.564916442935797, + 12.8995357824947 + ], + [ + 77.564913113555804, + 12.8994417747644 + ], + [ + 77.565019313193105, + 12.899165402942799 + ], + [ + 77.565022792039201, + 12.8990515961131 + ], + [ + 77.565068226600204, + 12.8989578567565 + ], + [ + 77.565060109066295, + 12.898844163697101 + ], + [ + 77.565109811028904, + 12.8987139752131 + ], + [ + 77.565369244864797, + 12.8986795735036 + ], + [ + 77.565566151033806, + 12.8986548869161 + ], + [ + 77.566076228340904, + 12.8986339531581 + ], + [ + 77.566420767645894, + 12.898643086482799 + ], + [ + 77.566880075919897, + 12.8986476794573 + ], + [ + 77.567200922289601, + 12.898494349630599 + ], + [ + 77.567515059069095, + 12.898327167959399 + ], + [ + 77.5675215402226, + 12.898321527283899 + ], + [ + 77.567493927918093, + 12.8982423177898 + ], + [ + 77.5673921839619, + 12.8979020390325 + ], + [ + 77.567297244491002, + 12.8975838967092 + ], + [ + 77.567285211743894, + 12.897543573442301 + ], + [ + 77.567043211565405, + 12.896846996676 + ], + [ + 77.566903164256701, + 12.8964945923631 + ], + [ + 77.566791711523194, + 12.8961744163123 + ], + [ + 77.566649194228603, + 12.895740736610399 + ], + [ + 77.566620645747307, + 12.8957506322841 + ], + [ + 77.566160481863506, + 12.8959057425919 + ], + [ + 77.566036359873607, + 12.895920108537601 + ], + [ + 77.565936649375303, + 12.8959390141949 + ], + [ + 77.565752542898593, + 12.895984715919599 + ], + [ + 77.565174687299901, + 12.8961281601745 + ], + [ + 77.564233333103004, + 12.8963747450452 + ], + [ + 77.563697533166803, + 12.8965344205228 + ], + [ + 77.563459794122195, + 12.896672805936801 + ], + [ + 77.563333827912004, + 12.896679902624699 + ], + [ + 77.562829963071394, + 12.8966781284528 + ], + [ + 77.562367880123006, + 12.8966883396309 + ], + [ + 77.562274629875901, + 12.8963844767406 + ], + [ + 77.562031461063896, + 12.896684867517299 + ], + [ + 77.561947034660804, + 12.8961891709756 + ], + [ + 77.561855832231402, + 12.896065387743301 + ], + [ + 77.561757220950398, + 12.8958342568696 + ], + [ + 77.561674464308297, + 12.895451652539199 + ], + [ + 77.561601350053493, + 12.895446680051601 + ], + [ + 77.561413606590705, + 12.895459896227401 + ], + [ + 77.561192685428693, + 12.8955178086798 + ], + [ + 77.560622953287705, + 12.8956156280902 + ], + [ + 77.5601650705932, + 12.8957319819598 + ], + [ + 77.560146851273203, + 12.8959530338935 + ], + [ + 77.560118021126399, + 12.896143973669099 + ], + [ + 77.560125209394201, + 12.896153581138501 + ], + [ + 77.560120315587497, + 12.896238328496199 + ], + [ + 77.560096810691803, + 12.896247593212699 + ], + [ + 77.560270166975002, + 12.8967177889028 + ], + [ + 77.560468538358094, + 12.897255829609801 + ], + [ + 77.560488974044105, + 12.897311696788901 + ], + [ + 77.560511758710902, + 12.897373985582901 + ], + [ + 77.560531477834999, + 12.8974243567587 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "113", + "group": "Manorayanapalya", + "Corporatio": "North", + "ac_no": "158", + "ac": "Hebbal", + "corporat_1": "2", + "ward_id": "45", + "ward_name": "45 - Manorayanapalya", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಹೆಬ್ಬಾಳ", + "ward_name_": "ಮನೋರಾಯನಪಾಳ್ಯ", + "dig_ward_n": "Manorayanapalya", + "Assembly": "158 - Hebbal", + "Slno": "45" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.604891000533499, + 13.027277269802999 + ], + [ + 77.604306591543406, + 13.0274191620562 + ], + [ + 77.604294534899395, + 13.027422671108599 + ], + [ + 77.6042649294222, + 13.0273562282055 + ], + [ + 77.604244858743996, + 13.0273531550601 + ], + [ + 77.604149598858697, + 13.027374033027799 + ], + [ + 77.603789485618094, + 13.0274396639067 + ], + [ + 77.603540720730706, + 13.0274740545194 + ], + [ + 77.603438339536694, + 13.0274900212499 + ], + [ + 77.603286019973595, + 13.0275175041251 + ], + [ + 77.603116166801897, + 13.027520340271 + ], + [ + 77.602964451699506, + 13.027544394328601 + ], + [ + 77.602711298786204, + 13.027585232666899 + ], + [ + 77.601976316500895, + 13.0276951510765 + ], + [ + 77.601472380036199, + 13.027772873305601 + ], + [ + 77.601159352196305, + 13.0278111166656 + ], + [ + 77.600522380646595, + 13.0278337206621 + ], + [ + 77.5999999890157, + 13.027852257385099 + ], + [ + 77.599698547575997, + 13.0278627006516 + ], + [ + 77.599712696331196, + 13.027813277211299 + ], + [ + 77.599718911215007, + 13.027786091860399 + ], + [ + 77.599712696331196, + 13.027813277211299 + ], + [ + 77.599698472115193, + 13.027863004420601 + ], + [ + 77.599689522331801, + 13.027971276160301 + ], + [ + 77.599678838558503, + 13.028007806888599 + ], + [ + 77.599664033026698, + 13.0280584290948 + ], + [ + 77.599628814462704, + 13.0281176158793 + ], + [ + 77.599554388369, + 13.028242066068801 + ], + [ + 77.599486672824696, + 13.028361635858801 + ], + [ + 77.599443527483501, + 13.028428995772 + ], + [ + 77.599437763971395, + 13.0284464608637 + ], + [ + 77.599406106963499, + 13.028542380218999 + ], + [ + 77.599405683610399, + 13.0285471057833 + ], + [ + 77.599395726402804, + 13.028657924445501 + ], + [ + 77.599395668577799, + 13.0286585637495 + ], + [ + 77.599394588006007, + 13.028670591091799 + ], + [ + 77.599393209363001, + 13.0286859288759 + ], + [ + 77.599391670498505, + 13.0287040128828 + ], + [ + 77.599400240813495, + 13.0287870169781 + ], + [ + 77.599405764715797, + 13.028840514961701 + ], + [ + 77.599406387682194, + 13.028845025851099 + ], + [ + 77.599440154061, + 13.0289903647885 + ], + [ + 77.599452835621804, + 13.0290467017828 + ], + [ + 77.599528051049504, + 13.0292458304116 + ], + [ + 77.5995663416345, + 13.0293832189057 + ], + [ + 77.5996026745118, + 13.0296640462336 + ], + [ + 77.599603309275395, + 13.0296696862879 + ], + [ + 77.599620996576306, + 13.029834540672001 + ], + [ + 77.599635048124, + 13.029965514143999 + ], + [ + 77.599640949047398, + 13.0300205161422 + ], + [ + 77.599687043887798, + 13.030188316940601 + ], + [ + 77.599743525294102, + 13.0303029370729 + ], + [ + 77.599807455169, + 13.0303587596055 + ], + [ + 77.599870209847396, + 13.030412335344201 + ], + [ + 77.599915102285806, + 13.030464961086 + ], + [ + 77.600130198318894, + 13.030713502956001 + ], + [ + 77.600165337266802, + 13.0307696144062 + ], + [ + 77.600172684710202, + 13.0307842701247 + ], + [ + 77.600258850623703, + 13.0309561367723 + ], + [ + 77.600290902331096, + 13.0311026219397 + ], + [ + 77.600279189467699, + 13.031194211574499 + ], + [ + 77.600280957857805, + 13.0313673519557 + ], + [ + 77.600264155456401, + 13.0315505198407 + ], + [ + 77.600265207144503, + 13.0315647572363 + ], + [ + 77.600248015160602, + 13.0318614924141 + ], + [ + 77.600237034261497, + 13.032021325500599 + ], + [ + 77.600226053362405, + 13.032222031933699 + ], + [ + 77.600212632263506, + 13.0323336710743 + ], + [ + 77.600180034016404, + 13.0325627705264 + ], + [ + 77.600186705141297, + 13.032777711180801 + ], + [ + 77.600347219327304, + 13.032762547988799 + ], + [ + 77.600369088954395, + 13.032761199096299 + ], + [ + 77.600649844721104, + 13.0327346647022 + ], + [ + 77.600657330468195, + 13.0327345895241 + ], + [ + 77.600948047477203, + 13.0327081654866 + ], + [ + 77.601221069628707, + 13.032678222415701 + ], + [ + 77.601235453487405, + 13.032676948646101 + ], + [ + 77.601408736305302, + 13.032660449577399 + ], + [ + 77.601513905579594, + 13.032650436486 + ], + [ + 77.601524846275595, + 13.032650326574499 + ], + [ + 77.601727699665304, + 13.032622188521501 + ], + [ + 77.601866284191701, + 13.032609185303199 + ], + [ + 77.601984445559097, + 13.032609407817001 + ], + [ + 77.602386719083199, + 13.0325466378595 + ], + [ + 77.6023999512649, + 13.032545375601201 + ], + [ + 77.603008662463793, + 13.0324465524759 + ], + [ + 77.603273340155894, + 13.0324117735352 + ], + [ + 77.603521579424907, + 13.0323713199137 + ], + [ + 77.604043337292197, + 13.0322872379522 + ], + [ + 77.604387787500301, + 13.0322275670321 + ], + [ + 77.6046949116148, + 13.032193819744 + ], + [ + 77.604794617846906, + 13.032188437097 + ], + [ + 77.604809990015895, + 13.0325505699043 + ], + [ + 77.604808976446094, + 13.032591604605701 + ], + [ + 77.604806156067696, + 13.0327058249273 + ], + [ + 77.604807033947296, + 13.0327357429363 + ], + [ + 77.6048070509013, + 13.032736306502599 + ], + [ + 77.604807121792206, + 13.0327430814732 + ], + [ + 77.604809784388905, + 13.032810769968799 + ], + [ + 77.604777717604094, + 13.032929881678401 + ], + [ + 77.604777253978696, + 13.0329336536221 + ], + [ + 77.604770891585403, + 13.032985431445701 + ], + [ + 77.6047685480208, + 13.0330045019181 + ], + [ + 77.604757770161797, + 13.0330922045642 + ], + [ + 77.604750836254794, + 13.0331486272219 + ], + [ + 77.604739507357493, + 13.0332408182039 + ], + [ + 77.604738078297601, + 13.033252887875401 + ], + [ + 77.604736237819296, + 13.0332684353525 + ], + [ + 77.604735480101795, + 13.0332748337993 + ], + [ + 77.604728400110005, + 13.0333346430587 + ], + [ + 77.604726761097993, + 13.0333484864575 + ], + [ + 77.604721033064806, + 13.0333968709629 + ], + [ + 77.604719859728505, + 13.0334067861049 + ], + [ + 77.604718942021506, + 13.0334145376841 + ], + [ + 77.604708190335401, + 13.0335053586903 + ], + [ + 77.604705643764305, + 13.0335268668378 + ], + [ + 77.604703310255104, + 13.0335483954276 + ], + [ + 77.604701967440803, + 13.033560782237201 + ], + [ + 77.604698623939896, + 13.0335926904931 + ], + [ + 77.604692212518103, + 13.033653872557601 + ], + [ + 77.604675787317206, + 13.033810616606401 + ], + [ + 77.6046617256698, + 13.033940338039301 + ], + [ + 77.604661185255097, + 13.033946281684701 + ], + [ + 77.604661082019504, + 13.0339462782061 + ], + [ + 77.604660058493494, + 13.033958710588999 + ], + [ + 77.604659026837098, + 13.033970013773001 + ], + [ + 77.604660220613596, + 13.034017182765499 + ], + [ + 77.604661298333895, + 13.034059766022899 + ], + [ + 77.604657945335703, + 13.034832310772799 + ], + [ + 77.604739210305098, + 13.0348543830405 + ], + [ + 77.6048905286017, + 13.034846397894301 + ], + [ + 77.605296051669697, + 13.034832995674799 + ], + [ + 77.605501214216503, + 13.0348286006666 + ], + [ + 77.606087394047904, + 13.034798571919501 + ], + [ + 77.606413196303393, + 13.0347745371625 + ], + [ + 77.606404043994203, + 13.0345537375752 + ], + [ + 77.606372570295804, + 13.034392003324699 + ], + [ + 77.6063238144243, + 13.0342151138665 + ], + [ + 77.606326954258094, + 13.0340172631415 + ], + [ + 77.606345610980597, + 13.0337317038507 + ], + [ + 77.6063482772973, + 13.0337113499856 + ], + [ + 77.606394473852305, + 13.033497582053601 + ], + [ + 77.606401954498295, + 13.0334462447054 + ], + [ + 77.606431500554706, + 13.033134579872 + ], + [ + 77.606497800526896, + 13.0328424979947 + ], + [ + 77.606755064361806, + 13.0327887700675 + ], + [ + 77.606949230210105, + 13.0327255399063 + ], + [ + 77.607093265210807, + 13.0326875918499 + ], + [ + 77.607301044913399, + 13.032622723371 + ], + [ + 77.607407797712895, + 13.0325793108589 + ], + [ + 77.607912808951795, + 13.0324603518161 + ], + [ + 77.608417834820003, + 13.032342851641101 + ], + [ + 77.608564877483104, + 13.032307792382101 + ], + [ + 77.608641641235096, + 13.032279925896001 + ], + [ + 77.6086417288641, + 13.0322796711517 + ], + [ + 77.608630390995103, + 13.0322408161494 + ], + [ + 77.608576888238005, + 13.032055973788999 + ], + [ + 77.608498102997601, + 13.031792162263899 + ], + [ + 77.608481396783702, + 13.0317362207934 + ], + [ + 77.608391853123095, + 13.0314344753486 + ], + [ + 77.608364407164999, + 13.031343280275101 + ], + [ + 77.608330684784903, + 13.031192561384101 + ], + [ + 77.608329365273605, + 13.0311866635814 + ], + [ + 77.608265154346398, + 13.0308963495537 + ], + [ + 77.608257276324395, + 13.030860729255201 + ], + [ + 77.608254181243794, + 13.030846737503699 + ], + [ + 77.608239897339999, + 13.030782154756 + ], + [ + 77.6081923256408, + 13.030560553637001 + ], + [ + 77.608179883020597, + 13.0305025933949 + ], + [ + 77.608166762329901, + 13.0304414277616 + ], + [ + 77.608142757765805, + 13.030329602825599 + ], + [ + 77.608071145208001, + 13.0300655830553 + ], + [ + 77.607946517390005, + 13.0298229138892 + ], + [ + 77.607882223329796, + 13.0297414280115 + ], + [ + 77.607850218989299, + 13.0297008414639 + ], + [ + 77.607689741845206, + 13.029499187048099 + ], + [ + 77.607679786500199, + 13.0294834773765 + ], + [ + 77.607557525392593, + 13.0293017650976 + ], + [ + 77.607518181990599, + 13.0292258743292 + ], + [ + 77.607517422157699, + 13.0292244093989 + ], + [ + 77.607493460845703, + 13.029178189378101 + ], + [ + 77.6074890538451, + 13.0291696602584 + ], + [ + 77.607400002622299, + 13.028997316300201 + ], + [ + 77.607395263230003, + 13.0289867849245 + ], + [ + 77.607320410385597, + 13.028820460239899 + ], + [ + 77.607234925178503, + 13.0286305078001 + ], + [ + 77.607171830427006, + 13.028490308222599 + ], + [ + 77.607127666820304, + 13.028389536801701 + ], + [ + 77.607082152464201, + 13.028285682929299 + ], + [ + 77.607071407160404, + 13.028261132137199 + ], + [ + 77.606945868013597, + 13.027974243289099 + ], + [ + 77.606862964085707, + 13.027785060552301 + ], + [ + 77.606853243264894, + 13.027762870919499 + ], + [ + 77.606852056180898, + 13.027759495027601 + ], + [ + 77.606619919254001, + 13.0272303916665 + ], + [ + 77.606454421435799, + 13.026852118400299 + ], + [ + 77.606026343676206, + 13.026997585003899 + ], + [ + 77.606012733751996, + 13.0269627142332 + ], + [ + 77.605510809791198, + 13.0270953715512 + ], + [ + 77.605198691450894, + 13.0271983136646 + ], + [ + 77.604891000533499, + 13.027277269802999 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "114", + "group": "HBR", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "42", + "ward_name": "42 - HBR Layout", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಎಚ್.ಬಿ.ಆರ್. ಲೇಔಟ್", + "dig_ward_n": "HBR Layout", + "Assembly": "160 - Sarvagnanagar", + "Slno": "42" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.626248068640706, + 13.021165211587 + ], + [ + 77.626046000373293, + 13.0211717391702 + ], + [ + 77.625855378743395, + 13.0211702828111 + ], + [ + 77.625455134385604, + 13.021167562158499 + ], + [ + 77.624872669717405, + 13.021218546714101 + ], + [ + 77.624520276384501, + 13.0211982960552 + ], + [ + 77.624508185736005, + 13.021198418494301 + ], + [ + 77.624319100954907, + 13.0211788771919 + ], + [ + 77.624133613603604, + 13.0211728496056 + ], + [ + 77.624042063134098, + 13.021173777466 + ], + [ + 77.623345917039202, + 13.0212231707646 + ], + [ + 77.623311427351993, + 13.0214038304496 + ], + [ + 77.623268893372995, + 13.021630114256901 + ], + [ + 77.623179531633298, + 13.021948342645 + ], + [ + 77.623107941237905, + 13.0222042815004 + ], + [ + 77.623034338052094, + 13.0224331383363 + ], + [ + 77.623024259098003, + 13.0224603427503 + ], + [ + 77.622773020220507, + 13.0231009213165 + ], + [ + 77.622771089677201, + 13.0231046584022 + ], + [ + 77.622616959910005, + 13.0234029815411 + ], + [ + 77.622429326811798, + 13.023766150157 + ], + [ + 77.622401623928496, + 13.023814989001099 + ], + [ + 77.622356667043604, + 13.023893025524799 + ], + [ + 77.622264201531607, + 13.0240535258179 + ], + [ + 77.622113232913406, + 13.024324103744 + ], + [ + 77.622060165989893, + 13.0244192146268 + ], + [ + 77.622023992408401, + 13.024483948915201 + ], + [ + 77.621834487274398, + 13.0248077077283 + ], + [ + 77.621698529853603, + 13.025021385719 + ], + [ + 77.621670927143995, + 13.025057442921399 + ], + [ + 77.621556517124404, + 13.025206893259099 + ], + [ + 77.621435380992295, + 13.025351535897601 + ], + [ + 77.621324979677098, + 13.0254570405962 + ], + [ + 77.621296839997498, + 13.025483932651801 + ], + [ + 77.621126065892, + 13.025617784724799 + ], + [ + 77.621030631954696, + 13.0256876355405 + ], + [ + 77.621022422988702, + 13.0256937271953 + ], + [ + 77.620922637268393, + 13.025767776809101 + ], + [ + 77.620697832438395, + 13.025911209397099 + ], + [ + 77.620492919042306, + 13.026029596736301 + ], + [ + 77.620198732293503, + 13.026146628305399 + ], + [ + 77.620062825372997, + 13.0262010784121 + ], + [ + 77.620190912151998, + 13.026607449860199 + ], + [ + 77.620291583980006, + 13.026926014614 + ], + [ + 77.620303492102195, + 13.0269631600253 + ], + [ + 77.620363068422407, + 13.0271522745069 + ], + [ + 77.6204065525272, + 13.0272896053933 + ], + [ + 77.620473972393796, + 13.027565544441901 + ], + [ + 77.620513067191496, + 13.027725554735699 + ], + [ + 77.620585253246006, + 13.028018434199 + ], + [ + 77.620604487056895, + 13.028095029848901 + ], + [ + 77.6206356602694, + 13.0282663623187 + ], + [ + 77.620651211864498, + 13.028429948847799 + ], + [ + 77.620655084371094, + 13.028470564221299 + ], + [ + 77.620659038293596, + 13.0285179525718 + ], + [ + 77.620670745627507, + 13.0286454414096 + ], + [ + 77.620690325255197, + 13.0288643222042 + ], + [ + 77.6207536621923, + 13.0292465031985 + ], + [ + 77.620796690378697, + 13.0295046692643 + ], + [ + 77.620829323804003, + 13.029705348731101 + ], + [ + 77.620890314668799, + 13.029919292445999 + ], + [ + 77.620905029318394, + 13.0299544778821 + ], + [ + 77.621028548938199, + 13.0302498982822 + ], + [ + 77.621037999650994, + 13.030272387994 + ], + [ + 77.621073874594501, + 13.030350233494399 + ], + [ + 77.621119327886007, + 13.030448859947199 + ], + [ + 77.621266152507602, + 13.0307748615293 + ], + [ + 77.621330414008, + 13.0309164988021 + ], + [ + 77.621384919786195, + 13.031037305402901 + ], + [ + 77.621450109837099, + 13.0311817943319 + ], + [ + 77.621502700744301, + 13.031308869180201 + ], + [ + 77.621520234344999, + 13.03135107264 + ], + [ + 77.621581152528705, + 13.031497706990301 + ], + [ + 77.621642504711005, + 13.031645384878299 + ], + [ + 77.621663412378695, + 13.0316957101802 + ], + [ + 77.621672839443804, + 13.031715941551999 + ], + [ + 77.621831472497107, + 13.0320296448095 + ], + [ + 77.621861868828304, + 13.0320918654891 + ], + [ + 77.623796693964394, + 13.0312895247247 + ], + [ + 77.6251008802098, + 13.030870028142299 + ], + [ + 77.625662838348404, + 13.0333392711151 + ], + [ + 77.624338325415394, + 13.033671005165401 + ], + [ + 77.624326203841093, + 13.033674107470199 + ], + [ + 77.624316592218193, + 13.0336873513318 + ], + [ + 77.624315162140206, + 13.033706573262499 + ], + [ + 77.624366880191502, + 13.0339028612715 + ], + [ + 77.624494864837501, + 13.034203615097301 + ], + [ + 77.624514270490906, + 13.0342434494694 + ], + [ + 77.624581354534897, + 13.034379410477101 + ], + [ + 77.6247040298028, + 13.034623880445899 + ], + [ + 77.624844123368803, + 13.034911551876499 + ], + [ + 77.624984722598697, + 13.035192442456699 + ], + [ + 77.625118832406002, + 13.035458718267 + ], + [ + 77.625294155328305, + 13.0358104000853 + ], + [ + 77.625660821923006, + 13.0365661432031 + ], + [ + 77.625889144820505, + 13.0380373064342 + ], + [ + 77.626239388931197, + 13.0378564202707 + ], + [ + 77.626410626284596, + 13.0377462005378 + ], + [ + 77.626578188937799, + 13.037638346091301 + ], + [ + 77.627050583744904, + 13.037334279904799 + ], + [ + 77.627280016410197, + 13.037128778262099 + ], + [ + 77.627436698471897, + 13.0369598684817 + ], + [ + 77.627677562413098, + 13.0366825424623 + ], + [ + 77.627693575940995, + 13.036650975605401 + ], + [ + 77.628324202227603, + 13.0354078105571 + ], + [ + 77.628561193771702, + 13.0349406232863 + ], + [ + 77.629514139240698, + 13.0331432500143 + ], + [ + 77.630117023003507, + 13.0319302957241 + ], + [ + 77.631752440868397, + 13.033522601117699 + ], + [ + 77.632696835184504, + 13.034427827006001 + ], + [ + 77.6330667592254, + 13.034290737508501 + ], + [ + 77.633113543736499, + 13.034208048605199 + ], + [ + 77.633407306945401, + 13.0340328786918 + ], + [ + 77.633394882789602, + 13.0336170104634 + ], + [ + 77.634076434254595, + 13.033426856071801 + ], + [ + 77.633878840630501, + 13.032743218723001 + ], + [ + 77.634672664767507, + 13.032500957957801 + ], + [ + 77.634721625302305, + 13.0328219214638 + ], + [ + 77.635294809349404, + 13.0328348913332 + ], + [ + 77.635915191386403, + 13.031649561817 + ], + [ + 77.636053170939206, + 13.0317634877504 + ], + [ + 77.636585461847304, + 13.0323030482442 + ], + [ + 77.637470668970593, + 13.0330182824116 + ], + [ + 77.637847193710996, + 13.0333514741776 + ], + [ + 77.638275820559699, + 13.033770182534401 + ], + [ + 77.638815280876202, + 13.034295322153101 + ], + [ + 77.638888824858, + 13.034387501981801 + ], + [ + 77.639178476107901, + 13.034750549473699 + ], + [ + 77.639371422985803, + 13.035013900909901 + ], + [ + 77.639417698547902, + 13.035099220711199 + ], + [ + 77.6395802887223, + 13.035398993038299 + ], + [ + 77.639825719944199, + 13.0357837120333 + ], + [ + 77.640020190556797, + 13.036190462118901 + ], + [ + 77.6402129114243, + 13.0364323030559 + ], + [ + 77.640375773482702, + 13.0366170814486 + ], + [ + 77.640560117512607, + 13.036758617010101 + ], + [ + 77.640758553975601, + 13.036849812084 + ], + [ + 77.640986243033893, + 13.0369407094528 + ], + [ + 77.641177063855594, + 13.037003299781 + ], + [ + 77.641375113988502, + 13.0377470369601 + ], + [ + 77.641418148522206, + 13.0383561120662 + ], + [ + 77.641458454473295, + 13.0395111116786 + ], + [ + 77.641648248422996, + 13.0394877189061 + ], + [ + 77.641737789125003, + 13.039459703014399 + ], + [ + 77.641808351616305, + 13.0394341393035 + ], + [ + 77.641868717455694, + 13.0393702851578 + ], + [ + 77.641977596574307, + 13.039265283723401 + ], + [ + 77.642167487225805, + 13.0390341067835 + ], + [ + 77.642368437346803, + 13.0389767221917 + ], + [ + 77.642959638289895, + 13.038954876647701 + ], + [ + 77.643574999355494, + 13.0389305245168 + ], + [ + 77.643709261654806, + 13.038938187205799 + ], + [ + 77.643765404244505, + 13.038964715728801 + ], + [ + 77.643768295347897, + 13.038965815447201 + ], + [ + 77.643793259475501, + 13.0388763498415 + ], + [ + 77.643806503285205, + 13.038822010647401 + ], + [ + 77.643813485903095, + 13.038720306976099 + ], + [ + 77.643819590930704, + 13.038590381963701 + ], + [ + 77.643836973377503, + 13.038491958910701 + ], + [ + 77.643890620475304, + 13.038392037103501 + ], + [ + 77.643919987207397, + 13.0383375332288 + ], + [ + 77.643932103349101, + 13.0382854649548 + ], + [ + 77.643981611651199, + 13.038175421279201 + ], + [ + 77.644028288824202, + 13.038069924416 + ], + [ + 77.644071379073594, + 13.0379520424597 + ], + [ + 77.644110474557706, + 13.0378375890522 + ], + [ + 77.644137621813499, + 13.0377368086688 + ], + [ + 77.644154632204106, + 13.0376033836347 + ], + [ + 77.644192779501296, + 13.0372371175847 + ], + [ + 77.644232390531897, + 13.0370086048598 + ], + [ + 77.644245562235199, + 13.0369474909203 + ], + [ + 77.644267299112997, + 13.0368253109988 + ], + [ + 77.644287056642497, + 13.036733639187901 + ], + [ + 77.644294836763606, + 13.0367008404325 + ], + [ + 77.644339419515006, + 13.0365129009546 + ], + [ + 77.644393797727403, + 13.0363192440914 + ], + [ + 77.644421028805397, + 13.036226367599699 + ], + [ + 77.644462727313098, + 13.0361943227187 + ], + [ + 77.644687186770994, + 13.0361276626981 + ], + [ + 77.644762474428205, + 13.036113342607401 + ], + [ + 77.644832279751895, + 13.036070847312599 + ], + [ + 77.644907219373707, + 13.0360237825589 + ], + [ + 77.644929231916194, + 13.0359275716237 + ], + [ + 77.644938576743698, + 13.035885693992 + ], + [ + 77.644939680370399, + 13.0358811657266 + ], + [ + 77.644883430470102, + 13.0358444752182 + ], + [ + 77.643231324535705, + 13.0359065180415 + ], + [ + 77.643200043385093, + 13.035605260164299 + ], + [ + 77.643176156349199, + 13.0353752058826 + ], + [ + 77.6431766122369, + 13.0353639078341 + ], + [ + 77.643177111813799, + 13.0353348602541 + ], + [ + 77.643178748046694, + 13.0352396686293 + ], + [ + 77.643213286382903, + 13.034858759081899 + ], + [ + 77.643224623214806, + 13.0347332966958 + ], + [ + 77.643267151702901, + 13.034182918223101 + ], + [ + 77.643273869821698, + 13.034110577698099 + ], + [ + 77.643304124204107, + 13.034031221405099 + ], + [ + 77.643370319073199, + 13.0338656752752 + ], + [ + 77.642568336407905, + 13.033830949857 + ], + [ + 77.642152109221499, + 13.033897306169001 + ], + [ + 77.641834921089, + 13.0339626513761 + ], + [ + 77.641448538261102, + 13.034128076176501 + ], + [ + 77.641195024216799, + 13.034224390116799 + ], + [ + 77.641217815654599, + 13.034309980686301 + ], + [ + 77.641243426945195, + 13.0343356921957 + ], + [ + 77.6412287591195, + 13.034333860663599 + ], + [ + 77.641176536944002, + 13.0343273405225 + ], + [ + 77.641099270353195, + 13.0343179654257 + ], + [ + 77.641038627522207, + 13.034264293228199 + ], + [ + 77.641032417028399, + 13.0342587970477 + ], + [ + 77.640880143075606, + 13.033964486431501 + ], + [ + 77.640768883836003, + 13.033682179127201 + ], + [ + 77.640445524191705, + 13.033328633293801 + ], + [ + 77.640373708457901, + 13.0332304422608 + ], + [ + 77.640166791171495, + 13.032947529839401 + ], + [ + 77.6401148763495, + 13.0328848237573 + ], + [ + 77.639917711610806, + 13.032647429759701 + ], + [ + 77.639892040769496, + 13.0326160724071 + ], + [ + 77.639851902886505, + 13.032578087020299 + ], + [ + 77.639806368294302, + 13.0324656260041 + ], + [ + 77.639753600782996, + 13.0323227488953 + ], + [ + 77.639648653764496, + 13.0320381178673 + ], + [ + 77.639656007559097, + 13.0320256211348 + ], + [ + 77.639599536321796, + 13.0317506591946 + ], + [ + 77.639397556415304, + 13.0313845824433 + ], + [ + 77.6392472608254, + 13.031251553326999 + ], + [ + 77.639134076046901, + 13.031151372147599 + ], + [ + 77.639122590991306, + 13.031141206662101 + ], + [ + 77.638524606731195, + 13.0306301017153 + ], + [ + 77.638522025845205, + 13.030627833366101 + ], + [ + 77.638208200495697, + 13.030351993611401 + ], + [ + 77.638188045437204, + 13.0303342781146 + ], + [ + 77.638058930136495, + 13.0302002987568 + ], + [ + 77.638022618079205, + 13.030162618186999 + ], + [ + 77.637992985811294, + 13.030131870043901 + ], + [ + 77.637916311440407, + 13.0300152085939 + ], + [ + 77.637873380626402, + 13.029930951802299 + ], + [ + 77.637822282572998, + 13.0297824107064 + ], + [ + 77.637744437841107, + 13.0295008900118 + ], + [ + 77.637742073942903, + 13.029475179743001 + ], + [ + 77.637702845928501, + 13.0290484429716 + ], + [ + 77.637700227937302, + 13.029019967260201 + ], + [ + 77.637609366082401, + 13.028031538526999 + ], + [ + 77.637606403449297, + 13.0279993135808 + ], + [ + 77.637605153820502, + 13.0279857201472 + ], + [ + 77.637328196458697, + 13.0279343358429 + ], + [ + 77.637263647220294, + 13.027929346748801 + ], + [ + 77.637136851936702, + 13.0279193450636 + ], + [ + 77.6370302933029, + 13.0279170420886 + ], + [ + 77.6369484342286, + 13.0279088413632 + ], + [ + 77.636944967479806, + 13.0279077473988 + ], + [ + 77.6367287588685, + 13.027828641886501 + ], + [ + 77.636670255586907, + 13.0277964889777 + ], + [ + 77.636654037586496, + 13.027787620012701 + ], + [ + 77.636632222051801, + 13.0277831732683 + ], + [ + 77.636580167998503, + 13.0277725623097 + ], + [ + 77.636354142096096, + 13.0277997063522 + ], + [ + 77.636010567344698, + 13.027874345883699 + ], + [ + 77.635666954274598, + 13.027999801894 + ], + [ + 77.635039634003405, + 13.0282523618522 + ], + [ + 77.634911660603294, + 13.028294316865001 + ], + [ + 77.634876608459194, + 13.0283014498577 + ], + [ + 77.634276893843094, + 13.028441930096999 + ], + [ + 77.633744451573094, + 13.0285726919079 + ], + [ + 77.633496335445301, + 13.0286892695846 + ], + [ + 77.633495955725493, + 13.028688823549 + ], + [ + 77.633003034313504, + 13.0281104581133 + ], + [ + 77.632717770223195, + 13.027776050834101 + ], + [ + 77.632715571280997, + 13.027773473178399 + ], + [ + 77.632345552517407, + 13.027907098221499 + ], + [ + 77.632326256882294, + 13.0279162425451 + ], + [ + 77.632121512303499, + 13.028013265689101 + ], + [ + 77.631969236437698, + 13.0281524740967 + ], + [ + 77.631944132705499, + 13.0281754236529 + ], + [ + 77.631536810514106, + 13.0288861064708 + ], + [ + 77.631412777159198, + 13.029212510036301 + ], + [ + 77.631276719732597, + 13.029267847735101 + ], + [ + 77.6303182372029, + 13.029512801316599 + ], + [ + 77.628916877895094, + 13.0299893505222 + ], + [ + 77.628670987209105, + 13.029530209506699 + ], + [ + 77.628557575358599, + 13.029115146025999 + ], + [ + 77.628530012810998, + 13.0290107368641 + ], + [ + 77.628507226376399, + 13.028925145123001 + ], + [ + 77.628422641095895, + 13.028604162990099 + ], + [ + 77.628416021210299, + 13.028577127883599 + ], + [ + 77.628156561588597, + 13.0276397208559 + ], + [ + 77.627852312804507, + 13.026220656640501 + ], + [ + 77.627851918260703, + 13.0258553813646 + ], + [ + 77.627095471420802, + 13.0233693465398 + ], + [ + 77.626773977154002, + 13.0224923756479 + ], + [ + 77.626372058462195, + 13.0214781081821 + ], + [ + 77.626264028191699, + 13.0212054865443 + ], + [ + 77.626248068640706, + 13.021165211587 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "115", + "group": "Govindapura", + "Corporatio": "North", + "ac_no": "160", + "ac": "Sarvagnanagar", + "corporat_1": "2", + "ward_id": "43", + "ward_name": "43 - Govindapura", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಸರ್ವಜ್ಞನಗರ", + "ward_name_": "ಗೋವಿಂದಪುರ", + "dig_ward_n": "Govindapura", + "Assembly": "160 - Sarvagnanagar", + "Slno": "43" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.616193202320105, + 13.028277790997899 + ], + [ + 77.615898424721607, + 13.0286256458258 + ], + [ + 77.615898984491295, + 13.028626481254401 + ], + [ + 77.615871785987594, + 13.0286595608227 + ], + [ + 77.615759009838797, + 13.0287967227642 + ], + [ + 77.6156872432922, + 13.0288904895597 + ], + [ + 77.615558674527904, + 13.0290584702131 + ], + [ + 77.615499648198195, + 13.029135590242699 + ], + [ + 77.615471562483506, + 13.0291722851898 + ], + [ + 77.615458127121698, + 13.029188731157999 + ], + [ + 77.615449380357205, + 13.029199438250901 + ], + [ + 77.615407414064606, + 13.029250809344701 + ], + [ + 77.615160013456503, + 13.02955365223 + ], + [ + 77.615140879673504, + 13.029577073194799 + ], + [ + 77.614862581654904, + 13.0299195328799 + ], + [ + 77.614726731585506, + 13.0300916973674 + ], + [ + 77.614697175735401, + 13.030129154236301 + ], + [ + 77.614495745808895, + 13.0303844311596 + ], + [ + 77.614483455696003, + 13.030400006387501 + ], + [ + 77.614415018051801, + 13.030486738796199 + ], + [ + 77.614240346553103, + 13.0307081040044 + ], + [ + 77.6142271895676, + 13.0307242246062 + ], + [ + 77.614218829418405, + 13.030734467029699 + ], + [ + 77.614098853532397, + 13.0308814608648 + ], + [ + 77.613988495798495, + 13.0310166709677 + ], + [ + 77.613987751663402, + 13.0310175828004 + ], + [ + 77.613752869022903, + 13.031305359648099 + ], + [ + 77.613670645366099, + 13.031406098558801 + ], + [ + 77.613552999716703, + 13.0315523613558 + ], + [ + 77.613396430282705, + 13.0317470137621 + ], + [ + 77.613377973958407, + 13.031769959845599 + ], + [ + 77.613360252538399, + 13.0317919923829 + ], + [ + 77.613298530396406, + 13.0318687273801 + ], + [ + 77.6132035136431, + 13.0319868551233 + ], + [ + 77.613018620619002, + 13.0322167211962 + ], + [ + 77.613003488972097, + 13.0322352187082 + ], + [ + 77.612818859578098, + 13.0324609145674 + ], + [ + 77.612816940021702, + 13.032463260239799 + ], + [ + 77.612789761589497, + 13.032496483968901 + ], + [ + 77.612773275311199, + 13.032516637557199 + ], + [ + 77.612772474738193, + 13.032517615906899 + ], + [ + 77.612769502637207, + 13.0325212505371 + ], + [ + 77.612768919499104, + 13.0325219637981 + ], + [ + 77.612570574433704, + 13.0327644235664 + ], + [ + 77.612231306110999, + 13.033196788041399 + ], + [ + 77.612153453970606, + 13.033296002778201 + ], + [ + 77.612060795615605, + 13.0334090961285 + ], + [ + 77.612057362178504, + 13.0334132873973 + ], + [ + 77.611851520752197, + 13.033663804186 + ], + [ + 77.611821505734596, + 13.033709915747901 + ], + [ + 77.611798080415099, + 13.0337459039701 + ], + [ + 77.6115585102919, + 13.0341139524753 + ], + [ + 77.611494502060296, + 13.034240843779999 + ], + [ + 77.6113407564753, + 13.034545636393901 + ], + [ + 77.611327772834699, + 13.034571376590501 + ], + [ + 77.611316259823198, + 13.034595364678101 + ], + [ + 77.611247466702395, + 13.0347387040066 + ], + [ + 77.611234653429193, + 13.0347654028192 + ], + [ + 77.611190693300998, + 13.034856998552799 + ], + [ + 77.611151622230295, + 13.0349384086028 + ], + [ + 77.611149684450197, + 13.0349424456551 + ], + [ + 77.611136243672803, + 13.0349787180151 + ], + [ + 77.611120078876098, + 13.0350296297659 + ], + [ + 77.611113833451796, + 13.0350493005839 + ], + [ + 77.610772215499495, + 13.036125215850999 + ], + [ + 77.610702130737494, + 13.036412065676799 + ], + [ + 77.611933902998103, + 13.036198118949899 + ], + [ + 77.612660960321406, + 13.035990212072701 + ], + [ + 77.612773025545494, + 13.0359885800549 + ], + [ + 77.612886722787493, + 13.036006532250999 + ], + [ + 77.613707083748807, + 13.035845506492 + ], + [ + 77.613638558007096, + 13.035535046776401 + ], + [ + 77.613622134123304, + 13.0354516463549 + ], + [ + 77.613548493593498, + 13.0350198780539 + ], + [ + 77.613531059512098, + 13.0349408251229 + ], + [ + 77.613530353264693, + 13.034937624212199 + ], + [ + 77.613518878100606, + 13.034886922742499 + ], + [ + 77.613510050615403, + 13.0347986177475 + ], + [ + 77.613486061693095, + 13.034558634524901 + ], + [ + 77.613402339395904, + 13.034271635935401 + ], + [ + 77.613399871051499, + 13.034255851923101 + ], + [ + 77.613380604562295, + 13.0341467110223 + ], + [ + 77.613375072289202, + 13.0341153721517 + ], + [ + 77.613372230241595, + 13.034099273906699 + ], + [ + 77.613368031325393, + 13.034075488614199 + ], + [ + 77.613363763453904, + 13.034052946218299 + ], + [ + 77.613136421515094, + 13.0334366481788 + ], + [ + 77.614006988677403, + 13.033138141277901 + ], + [ + 77.6140083303994, + 13.0331243467904 + ], + [ + 77.614287470089593, + 13.0337310233946 + ], + [ + 77.614485595499701, + 13.034300499526299 + ], + [ + 77.614787830325795, + 13.0341828355864 + ], + [ + 77.615288478854595, + 13.0340421002856 + ], + [ + 77.615609067629407, + 13.0339603240544 + ], + [ + 77.615798661905799, + 13.033908022498601 + ], + [ + 77.616048531561702, + 13.0338390924601 + ], + [ + 77.616328603072603, + 13.0337618310847 + ], + [ + 77.618527240936601, + 13.033173772781799 + ], + [ + 77.618751852999495, + 13.033099253412599 + ], + [ + 77.618789030156194, + 13.033086918925299 + ], + [ + 77.619043794189196, + 13.033013800947799 + ], + [ + 77.619367935072106, + 13.032920771670801 + ], + [ + 77.619540073150006, + 13.032871367113801 + ], + [ + 77.620238457912293, + 13.032635239704 + ], + [ + 77.620244564451895, + 13.032633175045101 + ], + [ + 77.620315608174394, + 13.032609155314301 + ], + [ + 77.620349012796098, + 13.032597860688901 + ], + [ + 77.621658230373697, + 13.032095739960999 + ], + [ + 77.621831472497107, + 13.0320296448095 + ], + [ + 77.621672839443804, + 13.031715941551999 + ], + [ + 77.621663412378695, + 13.0316957101802 + ], + [ + 77.621642504711005, + 13.031645384878299 + ], + [ + 77.621581152528705, + 13.031497706990301 + ], + [ + 77.621520234344999, + 13.03135107264 + ], + [ + 77.621502700744301, + 13.031308869180201 + ], + [ + 77.621450109837099, + 13.0311817943319 + ], + [ + 77.621384919786195, + 13.031037305402901 + ], + [ + 77.621330414008, + 13.0309164988021 + ], + [ + 77.621266152507602, + 13.0307748615293 + ], + [ + 77.621119327886007, + 13.030448859947199 + ], + [ + 77.621073874594501, + 13.030350233494399 + ], + [ + 77.621037999650994, + 13.030272387994 + ], + [ + 77.621028548938199, + 13.0302498982822 + ], + [ + 77.620905029318394, + 13.0299544778821 + ], + [ + 77.620890314668799, + 13.029919292445999 + ], + [ + 77.620829323804003, + 13.029705348731101 + ], + [ + 77.620796690378697, + 13.0295046692643 + ], + [ + 77.6207536621923, + 13.0292465031985 + ], + [ + 77.620690325255197, + 13.0288643222042 + ], + [ + 77.620670745627507, + 13.0286454414096 + ], + [ + 77.620659038293596, + 13.0285179525718 + ], + [ + 77.620655084371094, + 13.028470564221299 + ], + [ + 77.620651211864498, + 13.028429948847799 + ], + [ + 77.6206356602694, + 13.0282663623187 + ], + [ + 77.620604487056895, + 13.028095029848901 + ], + [ + 77.620585253246006, + 13.028018434199 + ], + [ + 77.620513067191496, + 13.027725554735699 + ], + [ + 77.620473972393796, + 13.027565544441901 + ], + [ + 77.6204065525272, + 13.0272896053933 + ], + [ + 77.620363068422407, + 13.0271522745069 + ], + [ + 77.620303492102195, + 13.0269631600253 + ], + [ + 77.620291583980006, + 13.026926014614 + ], + [ + 77.620190912151998, + 13.026607449860199 + ], + [ + 77.620062825372997, + 13.0262010784121 + ], + [ + 77.620046164798595, + 13.0262078969401 + ], + [ + 77.619718873459306, + 13.0263395837648 + ], + [ + 77.619687477518795, + 13.0263522156887 + ], + [ + 77.619602988581903, + 13.0263862099926 + ], + [ + 77.619442279145005, + 13.0264508716671 + ], + [ + 77.619414211268406, + 13.0264619323 + ], + [ + 77.619294208202803, + 13.026509222501099 + ], + [ + 77.619187880710896, + 13.0265511228401 + ], + [ + 77.618961916981704, + 13.026640167665899 + ], + [ + 77.618954687353806, + 13.026643016948 + ], + [ + 77.618944986674407, + 13.0266468397966 + ], + [ + 77.6189154808919, + 13.026658466905999 + ], + [ + 77.618888941658199, + 13.0266689257201 + ], + [ + 77.618581478835296, + 13.026790087537 + ], + [ + 77.6183647812733, + 13.026875480602801 + ], + [ + 77.618280550810994, + 13.026914119097 + ], + [ + 77.618088315663996, + 13.027002302917399 + ], + [ + 77.617977567386703, + 13.027053105504301 + ], + [ + 77.617514625164603, + 13.027265468979101 + ], + [ + 77.617257992793995, + 13.0274078502619 + ], + [ + 77.617006783100805, + 13.027547222386399 + ], + [ + 77.616981271144297, + 13.0275613764734 + ], + [ + 77.616799460100196, + 13.0276988096712 + ], + [ + 77.616744100429997, + 13.027740656852201 + ], + [ + 77.616673993996699, + 13.027793651184201 + ], + [ + 77.616643614720601, + 13.02781661575 + ], + [ + 77.616549718851303, + 13.027912755441101 + ], + [ + 77.616193202320105, + 13.028277790997899 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "118", + "group": "SK Garden", + "Corporatio": "North", + "ac_no": "159", + "ac": "Pulakeshinagar", + "corporat_1": "2", + "ward_id": "71", + "ward_name": "71 - SK Garden", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಪುಲಕೇಶಿನಗರ", + "ward_name_": "ಎಸ್.ಕೆ. ಗಾರ್ಡನ್", + "dig_ward_n": "SK Garden", + "Assembly": "159 - Pulakeshinagar", + "Slno": "71" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6072282798999, + 12.9914908146329 + ], + [ + 77.607226680976297, + 12.991456698376901 + ], + [ + 77.607217636897403, + 12.9912637732766 + ], + [ + 77.6072139851684, + 12.991185859697101 + ], + [ + 77.607213250291395, + 12.991170178191799 + ], + [ + 77.607209194533596, + 12.9910836536041 + ], + [ + 77.607204691146293, + 12.990983193657501 + ], + [ + 77.607204453868206, + 12.9909799671976 + ], + [ + 77.607189899013704, + 12.990781755448401 + ], + [ + 77.6071848064975, + 12.9907124045356 + ], + [ + 77.607183870047095, + 12.990699652150401 + ], + [ + 77.607177843205505, + 12.9906175750292 + ], + [ + 77.607168630712493, + 12.9904449479479 + ], + [ + 77.607167975706702, + 12.9904326805868 + ], + [ + 77.607167954037095, + 12.9904322814903 + ], + [ + 77.607165675042694, + 12.990389582287801 + ], + [ + 77.607162065678295, + 12.9903196030572 + ], + [ + 77.607141746307306, + 12.990313414375301 + ], + [ + 77.607084722499494, + 12.9902960465223 + ], + [ + 77.607061559383794, + 12.990288991985601 + ], + [ + 77.606963356010198, + 12.9902583577566 + ], + [ + 77.606892306042198, + 12.990236485219 + ], + [ + 77.606636071030707, + 12.9901803341118 + ], + [ + 77.606629150538097, + 12.990179274279599 + ], + [ + 77.606600317920297, + 12.990175829765899 + ], + [ + 77.606494084215697, + 12.990163136653599 + ], + [ + 77.606447561663302, + 12.990157578549599 + ], + [ + 77.606419879289902, + 12.9901542715379 + ], + [ + 77.606392784830106, + 12.9901511555705 + ], + [ + 77.606076041350093, + 12.990145299462901 + ], + [ + 77.606041497793598, + 12.9901456460437 + ], + [ + 77.606016753367598, + 12.9901470244916 + ], + [ + 77.605976894167895, + 12.990147990843701 + ], + [ + 77.605850908106405, + 12.9901510490156 + ], + [ + 77.605699575426499, + 12.9901547227701 + ], + [ + 77.605675395850099, + 12.990154965333099 + ], + [ + 77.605420888614006, + 12.9901541304954 + ], + [ + 77.605371307055293, + 12.990150740384401 + ], + [ + 77.605363834010305, + 12.990150229922399 + ], + [ + 77.605363268876303, + 12.990150191323 + ], + [ + 77.6053319600165, + 12.9902950536015 + ], + [ + 77.605317007047006, + 12.990462337486001 + ], + [ + 77.605294707230996, + 12.9905969612128 + ], + [ + 77.605291027267299, + 12.9906191754382 + ], + [ + 77.605287214722793, + 12.990642192332899 + ], + [ + 77.605208322001204, + 12.9908620645922 + ], + [ + 77.605129228956002, + 12.9910627410441 + ], + [ + 77.604999506535293, + 12.991313730310701 + ], + [ + 77.604980792851606, + 12.9913499385306 + ], + [ + 77.604918944264199, + 12.991437513674899 + ], + [ + 77.604783511777399, + 12.9916466601418 + ], + [ + 77.604692572590395, + 12.991760500536 + ], + [ + 77.604630620046393, + 12.9918932480306 + ], + [ + 77.604570252043402, + 12.9919570933304 + ], + [ + 77.604552534842995, + 12.9919696931304 + ], + [ + 77.604522596839104, + 12.991969993366601 + ], + [ + 77.604495598303004, + 12.9919816617554 + ], + [ + 77.604338023032895, + 12.9920497648887 + ], + [ + 77.604275692225002, + 12.992091044145599 + ], + [ + 77.604253271980298, + 12.992123173494999 + ], + [ + 77.604193886478498, + 12.9922082791692 + ], + [ + 77.604178224068804, + 12.9922307246733 + ], + [ + 77.603984434794597, + 12.9925084416794 + ], + [ + 77.603951973464902, + 12.9925549621081 + ], + [ + 77.603879706521994, + 12.9926585274443 + ], + [ + 77.603871788706201, + 12.992727493163899 + ], + [ + 77.603797659290606, + 12.992686452903 + ], + [ + 77.603665027713902, + 12.9926121206204 + ], + [ + 77.603352320325598, + 12.992496680663599 + ], + [ + 77.602930283568597, + 12.992418106399899 + ], + [ + 77.602857329554496, + 12.9924045236748 + ], + [ + 77.602565138902193, + 12.9923792198417 + ], + [ + 77.602395415409603, + 12.992392213487699 + ], + [ + 77.6018205882865, + 12.9924849279959 + ], + [ + 77.601264172790707, + 12.9926316626253 + ], + [ + 77.600572541998403, + 12.992898325353501 + ], + [ + 77.600280080232906, + 12.993017031109201 + ], + [ + 77.599188993144196, + 12.993459881118699 + ], + [ + 77.598642207757393, + 12.993647169661999 + ], + [ + 77.596675657382804, + 12.994410131175901 + ], + [ + 77.596592575278393, + 12.9944423643764 + ], + [ + 77.596592482855201, + 12.9944429561451 + ], + [ + 77.596590239400598, + 12.994457383801 + ], + [ + 77.596582643846602, + 12.994506237850601 + ], + [ + 77.596576923858393, + 12.9945430276875 + ], + [ + 77.596601142888602, + 12.9945491799932 + ], + [ + 77.596786493027295, + 12.994596267161 + ], + [ + 77.596965953755998, + 12.994632841128 + ], + [ + 77.597129821954596, + 12.994666237255201 + ], + [ + 77.597236698037094, + 12.9947001762322 + ], + [ + 77.597505986717294, + 12.9947862790149 + ], + [ + 77.597688091657105, + 12.9948419787272 + ], + [ + 77.598042307166594, + 12.994950320232901 + ], + [ + 77.5983452775194, + 12.995042988144901 + ], + [ + 77.598684716959497, + 12.9951468094097 + ], + [ + 77.598942762982702, + 12.9952257359708 + ], + [ + 77.599318929250302, + 12.995321905242999 + ], + [ + 77.599824499655696, + 12.995475035003199 + ], + [ + 77.600057886133598, + 12.995545724036401 + ], + [ + 77.6003511412856, + 12.995634545862 + ], + [ + 77.6004363689581, + 12.995657709051899 + ], + [ + 77.600551511526206, + 12.9956890033903 + ], + [ + 77.600676001007599, + 12.995700178638399 + ], + [ + 77.600959650346994, + 12.9956367235795 + ], + [ + 77.601938911511695, + 12.9954176518357 + ], + [ + 77.602080653531999, + 12.9953859457656 + ], + [ + 77.602160984223701, + 12.995367971059 + ], + [ + 77.602217277267101, + 12.995354984753201 + ], + [ + 77.602546752046095, + 12.9952683963964 + ], + [ + 77.602704221453706, + 12.99522701205 + ], + [ + 77.602940766127404, + 12.995165492530999 + ], + [ + 77.603137774315996, + 12.9951142544957 + ], + [ + 77.603271462289797, + 12.9950688720849 + ], + [ + 77.603385627780995, + 12.995030329159301 + ], + [ + 77.6035240847106, + 12.9949835843319 + ], + [ + 77.603695484722195, + 12.99492571857 + ], + [ + 77.603731626695193, + 12.994912934029999 + ], + [ + 77.604190686015897, + 12.9947615234765 + ], + [ + 77.604375652642602, + 12.994700770320801 + ], + [ + 77.604437000176901, + 12.994678049050901 + ], + [ + 77.604562775004396, + 12.9946298662048 + ], + [ + 77.604651318725104, + 12.9945954157412 + ], + [ + 77.604662316882397, + 12.994591085513299 + ], + [ + 77.604963270842504, + 12.994472582376799 + ], + [ + 77.605255401704099, + 12.9943815674803 + ], + [ + 77.605388548320704, + 12.994339577393101 + ], + [ + 77.6054241388306, + 12.994329056745601 + ], + [ + 77.605574430825399, + 12.994264693747899 + ], + [ + 77.605629355840605, + 12.9942411720998 + ], + [ + 77.605668531054505, + 12.994298372405799 + ], + [ + 77.6064674720608, + 12.995522011233501 + ], + [ + 77.606477563869205, + 12.995537467815399 + ], + [ + 77.606482850849105, + 12.9955455645422 + ], + [ + 77.606549769131604, + 12.995648054006001 + ], + [ + 77.606991054225105, + 12.996276021134401 + ], + [ + 77.607389267518798, + 12.996912312889799 + ], + [ + 77.607821154209205, + 12.997602406712 + ], + [ + 77.608132083255796, + 12.998065275698799 + ], + [ + 77.608284567571403, + 12.998285570429401 + ], + [ + 77.608389286229794, + 12.998438421946201 + ], + [ + 77.6086441724715, + 12.9988104599863 + ], + [ + 77.608769093024804, + 12.998972950145101 + ], + [ + 77.608466031813293, + 12.999065208834701 + ], + [ + 77.6082777654767, + 12.999122435351 + ], + [ + 77.607627205484505, + 12.999352569031201 + ], + [ + 77.607371764999002, + 12.9994285382672 + ], + [ + 77.607085033470597, + 12.9994856237848 + ], + [ + 77.606937783755001, + 12.9995006540668 + ], + [ + 77.606851327342099, + 12.9994924881071 + ], + [ + 77.606809684860906, + 12.999474837815701 + ], + [ + 77.606768054177394, + 12.9994583166794 + ], + [ + 77.606745822007696, + 12.999424661507 + ], + [ + 77.606720530055, + 12.9992634282662 + ], + [ + 77.606707057545194, + 12.9991726076248 + ], + [ + 77.6066016029298, + 12.998461703402301 + ], + [ + 77.6065235627117, + 12.9978809069897 + ], + [ + 77.606468253996198, + 12.997822739664899 + ], + [ + 77.606383207074401, + 12.997784068682501 + ], + [ + 77.606250514942602, + 12.997759427380901 + ], + [ + 77.605998997566005, + 12.9977698573074 + ], + [ + 77.605710726816298, + 12.9977896901585 + ], + [ + 77.605365820926806, + 12.997789764006299 + ], + [ + 77.605092941866999, + 12.9977947610349 + ], + [ + 77.605056412404707, + 12.997825618238499 + ], + [ + 77.605038929625096, + 12.997860801441499 + ], + [ + 77.604957156914594, + 12.9980807028764 + ], + [ + 77.604949919682397, + 12.9981044904395 + ], + [ + 77.6049259992663, + 12.998184909555199 + ], + [ + 77.604868160263607, + 12.998380855884101 + ], + [ + 77.604799838316893, + 12.998510279708899 + ], + [ + 77.604783917744697, + 12.9985296372709 + ], + [ + 77.604750384704005, + 12.9985717572191 + ], + [ + 77.604598273103406, + 12.9986726604014 + ], + [ + 77.604363923858998, + 12.99878342287 + ], + [ + 77.604357625990005, + 12.9987868739052 + ], + [ + 77.604296034402907, + 12.9988439560016 + ], + [ + 77.604275953950705, + 12.998850933160201 + ], + [ + 77.603775130442898, + 12.9990840725246 + ], + [ + 77.602395388404602, + 12.9995157441257 + ], + [ + 77.601849243800899, + 12.9998758146386 + ], + [ + 77.601701993296402, + 13.0005537325532 + ], + [ + 77.601590355271398, + 13.0005051630098 + ], + [ + 77.601515994350095, + 13.001436439564401 + ], + [ + 77.602105858390104, + 13.001348088451699 + ], + [ + 77.602239162407898, + 13.0013207783668 + ], + [ + 77.602332481561206, + 13.001324359830001 + ], + [ + 77.602435061085799, + 13.001387700492099 + ], + [ + 77.602563833442701, + 13.0015332162231 + ], + [ + 77.602586558685005, + 13.001558961881599 + ], + [ + 77.602739185759006, + 13.001783288183701 + ], + [ + 77.602799418838401, + 13.0018718975815 + ], + [ + 77.602982651340596, + 13.002172556267899 + ], + [ + 77.603036098933302, + 13.0022602561261 + ], + [ + 77.603047848413297, + 13.0022796062313 + ], + [ + 77.6030613977304, + 13.002301921399599 + ], + [ + 77.603169679857899, + 13.002480255918201 + ], + [ + 77.603298853785404, + 13.0026641627204 + ], + [ + 77.603495135277399, + 13.002933221744801 + ], + [ + 77.603603370388598, + 13.0030970112691 + ], + [ + 77.6036091356968, + 13.003105730218101 + ], + [ + 77.603716869947604, + 13.003268652884801 + ], + [ + 77.603765423683598, + 13.0033415691403 + ], + [ + 77.603869864546198, + 13.003527982224099 + ], + [ + 77.603808022411002, + 13.0038922320197 + ], + [ + 77.603805180605804, + 13.003950983272199 + ], + [ + 77.6037878352072, + 13.0042752616584 + ], + [ + 77.603796895821006, + 13.004315824940999 + ], + [ + 77.603989527939007, + 13.004676391794399 + ], + [ + 77.604311374129693, + 13.0052795866015 + ], + [ + 77.604450589525598, + 13.0055572377047 + ], + [ + 77.604472504180706, + 13.0056009441127 + ], + [ + 77.604607183078102, + 13.0058706199837 + ], + [ + 77.604704799304599, + 13.006065005889299 + ], + [ + 77.604940013286296, + 13.0059813360565 + ], + [ + 77.605236838908795, + 13.0066694763259 + ], + [ + 77.605237182583707, + 13.0066705371102 + ], + [ + 77.608459463674293, + 13.005100982664 + ], + [ + 77.608150320551403, + 13.004539372657399 + ], + [ + 77.608506407630003, + 13.004375068812401 + ], + [ + 77.608290579931307, + 13.0038964694592 + ], + [ + 77.608860777246903, + 13.003690946531201 + ], + [ + 77.608633348248105, + 13.002839538117801 + ], + [ + 77.6087319676123, + 13.0027640896497 + ], + [ + 77.608894819735298, + 13.002698662924599 + ], + [ + 77.609339949087399, + 13.001980927071701 + ], + [ + 77.609225922178396, + 13.0016443009693 + ], + [ + 77.609204095733404, + 13.001535168744599 + ], + [ + 77.610019491470496, + 13.0008182054372 + ], + [ + 77.610429787032402, + 13.0006726831314 + ], + [ + 77.610570766494405, + 13.000787655667301 + ], + [ + 77.610611805102394, + 13.0008141233216 + ], + [ + 77.610901786842007, + 13.001001147332699 + ], + [ + 77.611233052648899, + 13.0011830162289 + ], + [ + 77.611718800212898, + 13.0014356038382 + ], + [ + 77.612150117468701, + 13.00160404244 + ], + [ + 77.612105635062903, + 13.0013735180839 + ], + [ + 77.611842806595007, + 13.001045890032101 + ], + [ + 77.611625310995507, + 13.0008830984846 + ], + [ + 77.611512860632203, + 13.0007989306868 + ], + [ + 77.611001367059103, + 13.000269234937999 + ], + [ + 77.610933666687899, + 13.000074637209099 + ], + [ + 77.610899500796506, + 13.0000112462463 + ], + [ + 77.610709887732, + 12.999659439192699 + ], + [ + 77.610560793036001, + 12.999382807446 + ], + [ + 77.6100526320987, + 12.998340961533501 + ], + [ + 77.609777901844794, + 12.9976660905581 + ], + [ + 77.608610201331203, + 12.9958336788173 + ], + [ + 77.608156087400104, + 12.9950637785973 + ], + [ + 77.607848127841905, + 12.9945097817793 + ], + [ + 77.608618731946706, + 12.993850429058 + ], + [ + 77.608765425021303, + 12.993689599510599 + ], + [ + 77.608821166394094, + 12.993628486620199 + ], + [ + 77.608951369399506, + 12.993383441973 + ], + [ + 77.608891247838599, + 12.993415665825299 + ], + [ + 77.608835517332693, + 12.9934459790787 + ], + [ + 77.608815100127799, + 12.9934570849084 + ], + [ + 77.608763103235106, + 12.9934607403471 + ], + [ + 77.608683915726701, + 12.993466307736099 + ], + [ + 77.608531832906706, + 12.993474263327601 + ], + [ + 77.608496885252507, + 12.993476091475999 + ], + [ + 77.608296048948802, + 12.9934871430324 + ], + [ + 77.607726873301104, + 12.9935143156503 + ], + [ + 77.607535953975002, + 12.9935376891339 + ], + [ + 77.6074041199806, + 12.993484807385901 + ], + [ + 77.607355509783005, + 12.9934062466803 + ], + [ + 77.607310044598506, + 12.9932429564793 + ], + [ + 77.607282920407002, + 12.9930715780496 + ], + [ + 77.607278735499307, + 12.9930453222658 + ], + [ + 77.607274294282007, + 12.993017459151501 + ], + [ + 77.607269727219801, + 12.992878271841899 + ], + [ + 77.607264787038702, + 12.9927276987959 + ], + [ + 77.607258367385299, + 12.992532038908999 + ], + [ + 77.6072574039774, + 12.992502676424101 + ], + [ + 77.6072510354862, + 12.9923229434036 + ], + [ + 77.607251022747406, + 12.9923226056505 + ], + [ + 77.607249323282105, + 12.992276126130999 + ], + [ + 77.607246012976006, + 12.992185566602201 + ], + [ + 77.607226697017595, + 12.991657152905301 + ], + [ + 77.607226893046402, + 12.991645661175999 + ], + [ + 77.607227024382098, + 12.9916379446066 + ], + [ + 77.607227234780495, + 12.9916255348531 + ], + [ + 77.607229194745102, + 12.991510321239801 + ], + [ + 77.6072282798999, + 12.9914908146329 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "119", + "group": "Munieshwara nagar", + "Corporatio": "North", + "ac_no": "159", + "ac": "Pulakeshinagar", + "corporat_1": "2", + "ward_id": "67", + "ward_name": "67 - Aruna Asif Ali Ward", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಪುಲಕೇಶಿನಗರ", + "ward_name_": "ಅರುಣಾ ಆಸಿಫ್ ಅಲಿ ವಾರ್ಡ್", + "dig_ward_n": "Munieshwara nagar", + "Assembly": "159 - Pulakeshinagar", + "Slno": "67" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.610044929982095, + 13.0126618930072 + ], + [ + 77.610045170910297, + 13.0126471503459 + ], + [ + 77.610074839823895, + 13.0124745283533 + ], + [ + 77.610079655384197, + 13.0124394722768 + ], + [ + 77.610091964440997, + 13.012350135450101 + ], + [ + 77.610104825630302, + 13.012258534511499 + ], + [ + 77.610111778809298, + 13.012207647033099 + ], + [ + 77.610119174345499, + 13.0120889984399 + ], + [ + 77.610119309259005, + 13.0120673845135 + ], + [ + 77.610119604887203, + 13.012020108166 + ], + [ + 77.610077465679893, + 13.0119154398123 + ], + [ + 77.610020447952493, + 13.0118072191725 + ], + [ + 77.609983351732893, + 13.0117592883242 + ], + [ + 77.609937454765202, + 13.011699986123199 + ], + [ + 77.609795431406198, + 13.0115521643754 + ], + [ + 77.609617359271894, + 13.011270783216601 + ], + [ + 77.609523565552195, + 13.0110845551067 + ], + [ + 77.609506710044599, + 13.0109754150775 + ], + [ + 77.608928858996904, + 13.0110451345579 + ], + [ + 77.608156903339193, + 13.011228808615501 + ], + [ + 77.608279882205593, + 13.011558622545699 + ], + [ + 77.608339904929196, + 13.0116009112827 + ], + [ + 77.608396145290399, + 13.011701855201 + ], + [ + 77.608492827584698, + 13.012021807327599 + ], + [ + 77.608034563705004, + 13.0122158515807 + ], + [ + 77.607967491212406, + 13.012265935777 + ], + [ + 77.607558245369702, + 13.0124303161905 + ], + [ + 77.607201634695599, + 13.012614814720999 + ], + [ + 77.607506124451803, + 13.013370601794399 + ], + [ + 77.607194838049296, + 13.0135065347213 + ], + [ + 77.607426604623598, + 13.014421297215 + ], + [ + 77.606557639284404, + 13.014649792810401 + ], + [ + 77.606505984783595, + 13.014462885030101 + ], + [ + 77.605990833792205, + 13.014548163426101 + ], + [ + 77.605761528070303, + 13.015198769150601 + ], + [ + 77.605902795579397, + 13.0152940527095 + ], + [ + 77.606082227042904, + 13.0153205596303 + ], + [ + 77.606568055086996, + 13.015295729435801 + ], + [ + 77.606633367122797, + 13.0152947837382 + ], + [ + 77.606801312226295, + 13.015292353548 + ], + [ + 77.607299227042304, + 13.0152622585511 + ], + [ + 77.607489472668505, + 13.0152481753467 + ], + [ + 77.607514960092303, + 13.015544509127301 + ], + [ + 77.606741117837203, + 13.0156074280822 + ], + [ + 77.606860481208003, + 13.017155741520201 + ], + [ + 77.607159495488403, + 13.017164149950901 + ], + [ + 77.607505646204999, + 13.017294680485501 + ], + [ + 77.607504765122698, + 13.0172871692497 + ], + [ + 77.607831553016595, + 13.0173525863175 + ], + [ + 77.608087866304899, + 13.0173858628578 + ], + [ + 77.608337016710905, + 13.017433552138399 + ], + [ + 77.608411672323498, + 13.0174614467127 + ], + [ + 77.608542593236805, + 13.0175103642026 + ], + [ + 77.608682356833299, + 13.017587838363401 + ], + [ + 77.608848462104802, + 13.017755458182799 + ], + [ + 77.608970622385399, + 13.0178789454356 + ], + [ + 77.609089273962297, + 13.0180355114188 + ], + [ + 77.609148900070807, + 13.0181424754717 + ], + [ + 77.609182347356494, + 13.018196220698 + ], + [ + 77.610619668141894, + 13.0175957369937 + ], + [ + 77.610879307718506, + 13.018105407010699 + ], + [ + 77.611004358324905, + 13.0183963819329 + ], + [ + 77.611851900123895, + 13.0180531512926 + ], + [ + 77.611923264910502, + 13.018331134127999 + ], + [ + 77.611970161770302, + 13.0185928050123 + ], + [ + 77.612128839355506, + 13.0191276244053 + ], + [ + 77.612720511526604, + 13.018927879676999 + ], + [ + 77.612772244679405, + 13.019579305967 + ], + [ + 77.612779540245597, + 13.0198946193221 + ], + [ + 77.613415235454596, + 13.0197711634929 + ], + [ + 77.613363397647802, + 13.019456044194101 + ], + [ + 77.613423420371404, + 13.019394657317701 + ], + [ + 77.613404424064996, + 13.019093378015301 + ], + [ + 77.613409609643099, + 13.0190066769474 + ], + [ + 77.6134095574414, + 13.019006443487999 + ], + [ + 77.613268661089805, + 13.0183365714286 + ], + [ + 77.613111998355905, + 13.0177024443413 + ], + [ + 77.613076862986105, + 13.0176292495429 + ], + [ + 77.612980070708502, + 13.0172597581719 + ], + [ + 77.6126444891175, + 13.017235203421301 + ], + [ + 77.612619411412297, + 13.0171175929234 + ], + [ + 77.612562319583006, + 13.0170115652404 + ], + [ + 77.612517618074307, + 13.016933135378499 + ], + [ + 77.612399200070797, + 13.0167043568257 + ], + [ + 77.612179772164097, + 13.0163738293921 + ], + [ + 77.611950777258201, + 13.0159868280012 + ], + [ + 77.612471740669093, + 13.015231144811899 + ], + [ + 77.612641196899403, + 13.0152437395317 + ], + [ + 77.612658944004593, + 13.0149929901098 + ], + [ + 77.612770006533907, + 13.014813801596 + ], + [ + 77.612126654552398, + 13.014098522617701 + ], + [ + 77.611232242443705, + 13.0148118359626 + ], + [ + 77.610938531679096, + 13.014390381637099 + ], + [ + 77.610871114718094, + 13.014295863333899 + ], + [ + 77.610786677946805, + 13.0141750506347 + ], + [ + 77.610595531598506, + 13.013923040401499 + ], + [ + 77.610434289612897, + 13.013609164081 + ], + [ + 77.610285236676404, + 13.0132808165013 + ], + [ + 77.610252549188601, + 13.013190597352001 + ], + [ + 77.610132397732798, + 13.0128906275067 + ], + [ + 77.610043482448205, + 13.012705889782 + ], + [ + 77.610044819714801, + 13.012668610157601 + ], + [ + 77.610044929982095, + 13.0126618930072 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "120", + "group": "Sagayapuram", + "Corporatio": "North", + "ac_no": "159", + "ac": "Pulakeshinagar", + "corporat_1": "2", + "ward_id": "64", + "ward_name": "64 - Sagayapuram", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಪುಲಕೇಶಿನಗರ", + "ward_name_": "ಸಗಾಯಪುರಂ", + "dig_ward_n": "Sagayapuram", + "Assembly": "159 - Pulakeshinagar", + "Slno": "64" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.615132785461299, + 13.0021510642844 + ], + [ + 77.614821916226106, + 13.002157584485399 + ], + [ + 77.614100379648406, + 13.0020982261575 + ], + [ + 77.613948940667498, + 13.0020796793322 + ], + [ + 77.613870336124506, + 13.0020700527958 + ], + [ + 77.613464215872298, + 13.001998481393001 + ], + [ + 77.613162247332994, + 13.0019202142457 + ], + [ + 77.612782316253998, + 13.001820146085601 + ], + [ + 77.612266903478002, + 13.0016491673201 + ], + [ + 77.612150117468701, + 13.00160404244 + ], + [ + 77.612102210391896, + 13.001758106262001 + ], + [ + 77.612140541311803, + 13.0025595069609 + ], + [ + 77.612177033830207, + 13.003075219083801 + ], + [ + 77.612185818900997, + 13.003199351084101 + ], + [ + 77.612212250014096, + 13.0034689821335 + ], + [ + 77.612221244447696, + 13.003558104442201 + ], + [ + 77.612228969171198, + 13.0036359467649 + ], + [ + 77.612254079944194, + 13.003834446655601 + ], + [ + 77.612254809381298, + 13.0038491199075 + ], + [ + 77.612258371830706, + 13.003897496581599 + ], + [ + 77.612263535484203, + 13.003967606098501 + ], + [ + 77.612273602269696, + 13.0041041472142 + ], + [ + 77.6122776360844, + 13.004159441154 + ], + [ + 77.612285656437294, + 13.0042655124017 + ], + [ + 77.612299098602705, + 13.0044494491399 + ], + [ + 77.612308199574997, + 13.0045487338438 + ], + [ + 77.612312115196801, + 13.0045927362043 + ], + [ + 77.6123290829251, + 13.004783413094501 + ], + [ + 77.612332316398593, + 13.0048172588328 + ], + [ + 77.612348590201407, + 13.0049966499361 + ], + [ + 77.612357703079397, + 13.0050970637843 + ], + [ + 77.612375704256394, + 13.005745406250099 + ], + [ + 77.612383863873504, + 13.006122299944099 + ], + [ + 77.612509811071902, + 13.0068470688212 + ], + [ + 77.613454415058399, + 13.0064738071246 + ], + [ + 77.613696250933003, + 13.0070009880114 + ], + [ + 77.614147941574899, + 13.0067999721311 + ], + [ + 77.614508364112595, + 13.0066089141191 + ], + [ + 77.614650475822799, + 13.0069276647979 + ], + [ + 77.615005155553106, + 13.006802162739501 + ], + [ + 77.615220691696905, + 13.007173212303501 + ], + [ + 77.615479198654199, + 13.007607353934899 + ], + [ + 77.615355742825002, + 13.0076874979124 + ], + [ + 77.615835962079601, + 13.0084574754966 + ], + [ + 77.616224108444996, + 13.008217030845501 + ], + [ + 77.616392419700801, + 13.0088982906904 + ], + [ + 77.615577197835904, + 13.0091536200104 + ], + [ + 77.615653859332298, + 13.009380653690201 + ], + [ + 77.615720319652098, + 13.009667141086799 + ], + [ + 77.6147362140442, + 13.0100615848121 + ], + [ + 77.615284916436593, + 13.010675549210299 + ], + [ + 77.615294139486906, + 13.0106890436293 + ], + [ + 77.615295273534798, + 13.0106907026156 + ], + [ + 77.615312293647804, + 13.010715604478801 + ], + [ + 77.615323268301694, + 13.0107316613979 + ], + [ + 77.615341642350103, + 13.0107585434508 + ], + [ + 77.615403815179405, + 13.010718902364101 + ], + [ + 77.615448469077194, + 13.010690430729699 + ], + [ + 77.615735753441399, + 13.010507258175 + ], + [ + 77.615862827833197, + 13.010434832372599 + ], + [ + 77.615992940261407, + 13.0103759804574 + ], + [ + 77.616017937010795, + 13.0103646741102 + ], + [ + 77.616064562454994, + 13.010343585117999 + ], + [ + 77.616185855400801, + 13.010297513298401 + ], + [ + 77.616186727184697, + 13.010297181984599 + ], + [ + 77.6163966644379, + 13.010219403047 + ], + [ + 77.616497208806507, + 13.0101813043776 + ], + [ + 77.616604862382403, + 13.0101405122361 + ], + [ + 77.616737929977106, + 13.010090611069799 + ], + [ + 77.6167565969386, + 13.010083938009499 + ], + [ + 77.6167574349669, + 13.010083638654301 + ], + [ + 77.616816179086797, + 13.010063136467201 + ], + [ + 77.6171039667407, + 13.009962698035601 + ], + [ + 77.6171976399161, + 13.009927261270199 + ], + [ + 77.617485336298401, + 13.009818426124401 + ], + [ + 77.617491458139895, + 13.0098161103198 + ], + [ + 77.617616145993694, + 13.009768941242999 + ], + [ + 77.617761798821306, + 13.0097110077108 + ], + [ + 77.617838456843401, + 13.0096818080126 + ], + [ + 77.617847036900201, + 13.0096785395813 + ], + [ + 77.617855619710994, + 13.0096752702185 + ], + [ + 77.618266577582204, + 13.009518731119501 + ], + [ + 77.618267754932106, + 13.0095182828847 + ], + [ + 77.618322140486796, + 13.0094975669234 + ], + [ + 77.618483365785806, + 13.009436539742399 + ], + [ + 77.618509116634499, + 13.0094267921033 + ], + [ + 77.618572201786606, + 13.009402441459001 + ], + [ + 77.618639793819995, + 13.009339813607699 + ], + [ + 77.618641205369997, + 13.0093385056646 + ], + [ + 77.618666112190397, + 13.009297600462199 + ], + [ + 77.618665763780001, + 13.0092644178683 + ], + [ + 77.618665614244804, + 13.009250176109299 + ], + [ + 77.618656752522497, + 13.009228809424799 + ], + [ + 77.6187409124271, + 13.0091674823503 + ], + [ + 77.618813902002799, + 13.0091142957922 + ], + [ + 77.618849833774902, + 13.009088002253799 + ], + [ + 77.6189513286363, + 13.009013731221501 + ], + [ + 77.619083047224805, + 13.008917343810101 + ], + [ + 77.619080661170301, + 13.0089094630074 + ], + [ + 77.619215169725607, + 13.008941982969199 + ], + [ + 77.619383730341795, + 13.008951001725 + ], + [ + 77.6194104829613, + 13.0089524327059 + ], + [ + 77.619502724573806, + 13.008962793918 + ], + [ + 77.619505603389399, + 13.0089627648461 + ], + [ + 77.619526295282995, + 13.008959168075799 + ], + [ + 77.619540225851793, + 13.0089636637274 + ], + [ + 77.619656247397302, + 13.0090011076524 + ], + [ + 77.619685763315701, + 13.009010633310799 + ], + [ + 77.619713596431794, + 13.009024937866901 + ], + [ + 77.619717604615602, + 13.009026997828901 + ], + [ + 77.619839170804298, + 13.0090881328568 + ], + [ + 77.619911200514807, + 13.009093051699701 + ], + [ + 77.620061053150295, + 13.0091062186171 + ], + [ + 77.620081430083999, + 13.0091028101833 + ], + [ + 77.620110833902302, + 13.009097892204601 + ], + [ + 77.620132904923494, + 13.009094200147301 + ], + [ + 77.620145239828901, + 13.0091031729481 + ], + [ + 77.620259981664901, + 13.009186645883901 + ], + [ + 77.620274404903896, + 13.0092005004183 + ], + [ + 77.620342943464905, + 13.0092663364854 + ], + [ + 77.620383994395496, + 13.0093057687381 + ], + [ + 77.620384212182202, + 13.009305977937199 + ], + [ + 77.620394934921606, + 13.0093162778651 + ], + [ + 77.620532215102202, + 13.009448144779601 + ], + [ + 77.620578719698102, + 13.009473314779999 + ], + [ + 77.620810771184395, + 13.0095989110176 + ], + [ + 77.620885900154207, + 13.009632656038301 + ], + [ + 77.620948467527697, + 13.009660758754499 + ], + [ + 77.620951849991499, + 13.0096539489615 + ], + [ + 77.621147154781696, + 13.0093346508356 + ], + [ + 77.621312510017404, + 13.009147733681701 + ], + [ + 77.621513062168006, + 13.008921028501099 + ], + [ + 77.621574747457402, + 13.0088703983599 + ], + [ + 77.621791660123606, + 13.0086923590715 + ], + [ + 77.621979358445202, + 13.008580922873699 + ], + [ + 77.622604497915205, + 13.008287769284401 + ], + [ + 77.622657829892006, + 13.008266903270099 + ], + [ + 77.622634538287301, + 13.0082422948617 + ], + [ + 77.622545210233994, + 13.0081465895514 + ], + [ + 77.622427792852704, + 13.0080207899477 + ], + [ + 77.622375452145903, + 13.007971631271401 + ], + [ + 77.622114324677895, + 13.0077258318502 + ], + [ + 77.622005927850395, + 13.0076027079591 + ], + [ + 77.621848558538005, + 13.007402511756499 + ], + [ + 77.621837392194394, + 13.007388307291199 + ], + [ + 77.62171263786, + 13.007229601314201 + ], + [ + 77.621614900256603, + 13.007105264584601 + ], + [ + 77.621496824955301, + 13.006932108588799 + ], + [ + 77.621475710190794, + 13.0069011441913 + ], + [ + 77.621447841800801, + 13.0068638265593 + ], + [ + 77.621446269102407, + 13.0068617203287 + ], + [ + 77.621319188332905, + 13.006691552454701 + ], + [ + 77.621225568085407, + 13.0065613026037 + ], + [ + 77.621042785873897, + 13.0063070057245 + ], + [ + 77.621010940029507, + 13.0062640466235 + ], + [ + 77.620983792180098, + 13.0062274235892 + ], + [ + 77.620892891820205, + 13.006106275991099 + ], + [ + 77.620878673208693, + 13.0060873268422 + ], + [ + 77.620782947406894, + 13.0059519964259 + ], + [ + 77.620609804452698, + 13.0057072203685 + ], + [ + 77.620544155998104, + 13.0055973342652 + ], + [ + 77.620476588896395, + 13.0054842378006 + ], + [ + 77.620460929620506, + 13.005458026152199 + ], + [ + 77.6202162083693, + 13.0050742873297 + ], + [ + 77.620104579219898, + 13.004917316784301 + ], + [ + 77.620006525148199, + 13.004763284318599 + ], + [ + 77.619961723856093, + 13.004692905253901 + ], + [ + 77.619826710675298, + 13.0043927533036 + ], + [ + 77.619743376985795, + 13.004207954358799 + ], + [ + 77.619710199576701, + 13.004134381728999 + ], + [ + 77.619667534846698, + 13.0040397694454 + ], + [ + 77.619653979813606, + 13.0040094141815 + ], + [ + 77.619630900271304, + 13.0039577251297 + ], + [ + 77.619546061139204, + 13.0037677122874 + ], + [ + 77.619547853383906, + 13.0037421184739 + ], + [ + 77.619393635139701, + 13.0035363809152 + ], + [ + 77.619330884110497, + 13.003318116465801 + ], + [ + 77.619358167166595, + 13.003130545454599 + ], + [ + 77.619115898071897, + 13.0024110994619 + ], + [ + 77.618964297824803, + 13.001992696826999 + ], + [ + 77.618593020723907, + 13.001136334976101 + ], + [ + 77.618012541289801, + 13.0014501127875 + ], + [ + 77.617570760678007, + 13.001656708581701 + ], + [ + 77.617073340334201, + 13.0018288573758 + ], + [ + 77.616421019127102, + 13.0020003084915 + ], + [ + 77.616222153435999, + 13.0020350622395 + ], + [ + 77.616150315066207, + 13.002048208433999 + ], + [ + 77.615446533352994, + 13.0021445147016 + ], + [ + 77.615132785461299, + 13.0021510642844 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "121", + "group": "Muslim Colony", + "Corporatio": "North", + "ac_no": "159", + "ac": "Pulakeshinagar", + "corporat_1": "2", + "ward_id": "66", + "ward_name": "66 - Shakthi Nagar", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಪುಲಕೇಶಿನಗರ", + "ward_name_": "ಶಕ್ತಿ ನಗರ", + "dig_ward_n": "Shakthi Nagar", + "Assembly": "159 - Pulakeshinagar", + "Slno": "66" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.613255340541002, + 13.015560801675299 + ], + [ + 77.613259108111194, + 13.015506680466499 + ], + [ + 77.613278006442997, + 13.015312403654599 + ], + [ + 77.612641196899403, + 13.0152437395317 + ], + [ + 77.612471740669093, + 13.015231144811899 + ], + [ + 77.611950777258201, + 13.0159868280012 + ], + [ + 77.612179772164097, + 13.0163738293921 + ], + [ + 77.612399200070797, + 13.0167043568257 + ], + [ + 77.612517618074307, + 13.016933135378499 + ], + [ + 77.612562319583006, + 13.0170115652404 + ], + [ + 77.612619411412297, + 13.0171175929234 + ], + [ + 77.6126444891175, + 13.017235203421301 + ], + [ + 77.612980070708502, + 13.0172597581719 + ], + [ + 77.613076862986105, + 13.0176292495429 + ], + [ + 77.613111998355905, + 13.0177024443413 + ], + [ + 77.613268661089805, + 13.0183365714286 + ], + [ + 77.6134095574414, + 13.019006443487999 + ], + [ + 77.613409609643099, + 13.0190066769474 + ], + [ + 77.613404424064996, + 13.019093378015301 + ], + [ + 77.613423420371404, + 13.019394657317701 + ], + [ + 77.613363397647802, + 13.019456044194101 + ], + [ + 77.613415235454596, + 13.0197711634929 + ], + [ + 77.612779540245597, + 13.0198946193221 + ], + [ + 77.612780784349994, + 13.0201152993834 + ], + [ + 77.612781693514506, + 13.0201723953965 + ], + [ + 77.612783813847699, + 13.020305459531 + ], + [ + 77.612783692401294, + 13.0203054761134 + ], + [ + 77.612752371774903, + 13.020387996738201 + ], + [ + 77.612757494682896, + 13.0203902045489 + ], + [ + 77.613156628439498, + 13.020286804502099 + ], + [ + 77.613482546865995, + 13.0202304415154 + ], + [ + 77.613534284323805, + 13.0202220158016 + ], + [ + 77.613727477965696, + 13.0201940943292 + ], + [ + 77.613807095245306, + 13.0201922841153 + ], + [ + 77.613816713832605, + 13.020192065153299 + ], + [ + 77.613873322958696, + 13.020207924747501 + ], + [ + 77.613879744388896, + 13.020209723741701 + ], + [ + 77.613890640208894, + 13.020212775825099 + ], + [ + 77.613914573391796, + 13.0203027011197 + ], + [ + 77.613953585768797, + 13.0204492885576 + ], + [ + 77.613987424614393, + 13.020546064839801 + ], + [ + 77.614074331177704, + 13.0206513400669 + ], + [ + 77.614246538076301, + 13.0207636597766 + ], + [ + 77.614251824205397, + 13.020765088967201 + ], + [ + 77.614395530957196, + 13.0208039400011 + ], + [ + 77.614549421651603, + 13.0208170681576 + ], + [ + 77.614696612533805, + 13.0208028360189 + ], + [ + 77.614705895087894, + 13.020801938328599 + ], + [ + 77.614727715964307, + 13.0207960718193 + ], + [ + 77.614737659126007, + 13.020793680436199 + ], + [ + 77.614745059280807, + 13.020791900123699 + ], + [ + 77.614745280775594, + 13.0207918472977 + ], + [ + 77.614884528156793, + 13.020758353004 + ], + [ + 77.614906349022405, + 13.0207524864812 + ], + [ + 77.615026070495702, + 13.020692540081701 + ], + [ + 77.615117713341405, + 13.0206466432433 + ], + [ + 77.615168711868506, + 13.020621102163499 + ], + [ + 77.615429089388101, + 13.0205202280282 + ], + [ + 77.615486555367298, + 13.020513954781499 + ], + [ + 77.615554481580901, + 13.020506539741101 + ], + [ + 77.6156332040796, + 13.020498486325399 + ], + [ + 77.615640191564196, + 13.020497770767401 + ], + [ + 77.615808441871494, + 13.0204845207305 + ], + [ + 77.615808599294198, + 13.0204845083006 + ], + [ + 77.615837546727903, + 13.020482228624401 + ], + [ + 77.616113136466694, + 13.020459120127899 + ], + [ + 77.616120622673705, + 13.0204590445638 + ], + [ + 77.616274293823807, + 13.020447519661801 + ], + [ + 77.616486000129697, + 13.020431641550401 + ], + [ + 77.616590097438106, + 13.0204189925739 + ], + [ + 77.616648183450096, + 13.020411934976201 + ], + [ + 77.616869026248906, + 13.0203848622248 + ], + [ + 77.616902963245806, + 13.020381131758301 + ], + [ + 77.617125028674806, + 13.020360821178601 + ], + [ + 77.617162441482805, + 13.0203573085388 + ], + [ + 77.617219375298404, + 13.0203519635871 + ], + [ + 77.617269225737004, + 13.020357940405001 + ], + [ + 77.617307586140399, + 13.0203625398948 + ], + [ + 77.6173496809092, + 13.0203675858987 + ], + [ + 77.617374475488504, + 13.020370724227201 + ], + [ + 77.617468168170703, + 13.020438639196399 + ], + [ + 77.617483566215, + 13.020449800794999 + ], + [ + 77.617528090077499, + 13.020502947252499 + ], + [ + 77.617569874470405, + 13.0205528220877 + ], + [ + 77.617579320473595, + 13.020580029751899 + ], + [ + 77.6175847199804, + 13.0205955844557 + ], + [ + 77.617598514735604, + 13.020635852259201 + ], + [ + 77.617599274189601, + 13.020638068801301 + ], + [ + 77.617631372027802, + 13.020731767727099 + ], + [ + 77.617657197449404, + 13.0208071554016 + ], + [ + 77.617690055141694, + 13.0208817041391 + ], + [ + 77.617701798677302, + 13.020908349248399 + ], + [ + 77.617714544582299, + 13.0209372671666 + ], + [ + 77.617731525606501, + 13.0209757944116 + ], + [ + 77.617755267055699, + 13.021011725610901 + ], + [ + 77.617771645847199, + 13.0210365152557 + ], + [ + 77.617787115533801, + 13.0210599282402 + ], + [ + 77.617844260271497, + 13.0211042011535 + ], + [ + 77.617848021497196, + 13.021107115527199 + ], + [ + 77.617853301512795, + 13.0211112061662 + ], + [ + 77.617934232708294, + 13.021140879884101 + ], + [ + 77.617979756308898, + 13.021146568686 + ], + [ + 77.618502770335496, + 13.0212119257704 + ], + [ + 77.618628794787, + 13.0212338603035 + ], + [ + 77.6189070371951, + 13.021282286919501 + ], + [ + 77.618999488376204, + 13.021298377541999 + ], + [ + 77.619056983883098, + 13.021301318028399 + ], + [ + 77.619110111615797, + 13.021304035231299 + ], + [ + 77.619105327243901, + 13.0212871445354 + ], + [ + 77.619060692891594, + 13.0209862485979 + ], + [ + 77.619045044002903, + 13.0208807549617 + ], + [ + 77.619035913069595, + 13.020819198133401 + ], + [ + 77.619028505119701, + 13.0207718445621 + ], + [ + 77.619022504073499, + 13.020705817621 + ], + [ + 77.619016534298694, + 13.020640135467699 + ], + [ + 77.619015482044901, + 13.020628558888401 + ], + [ + 77.619014864318004, + 13.0206215943734 + ], + [ + 77.619012173085494, + 13.0205912704076 + ], + [ + 77.619010375464796, + 13.020571016823 + ], + [ + 77.619001764532101, + 13.0204739875283 + ], + [ + 77.619004585772203, + 13.0204108743891 + ], + [ + 77.619004665577194, + 13.0204090875294 + ], + [ + 77.619004728912003, + 13.0204076622025 + ], + [ + 77.6190078256531, + 13.020338413892 + ], + [ + 77.618994244878493, + 13.020138638726401 + ], + [ + 77.618985347394599, + 13.0200077649378 + ], + [ + 77.618982780780499, + 13.0199904353482 + ], + [ + 77.618950369923795, + 13.0197715146218 + ], + [ + 77.618926073838196, + 13.019607413381999 + ], + [ + 77.618918403574895, + 13.0195556049896 + ], + [ + 77.6188884393991, + 13.0194441100078 + ], + [ + 77.618871930546803, + 13.0193832691215 + ], + [ + 77.618860925303395, + 13.019342712136201 + ], + [ + 77.618843198273694, + 13.019277384541001 + ], + [ + 77.618798195754806, + 13.0191115257294 + ], + [ + 77.618797373524004, + 13.019108508495901 + ], + [ + 77.618783442170198, + 13.019057175304599 + ], + [ + 77.618768032852401, + 13.019000394989 + ], + [ + 77.618749832444806, + 13.0189271889503 + ], + [ + 77.618733991840998, + 13.0188634711366 + ], + [ + 77.618710740821797, + 13.0187699449836 + ], + [ + 77.618684673043802, + 13.0186650886285 + ], + [ + 77.61868450083, + 13.018664394737799 + ], + [ + 77.618684411356298, + 13.018664034275201 + ], + [ + 77.618665817526306, + 13.018589243085501 + ], + [ + 77.618644786131597, + 13.018505889545199 + ], + [ + 77.618584529803599, + 13.0182957249063 + ], + [ + 77.618568273814105, + 13.0182390253857 + ], + [ + 77.618479502149299, + 13.017964264472401 + ], + [ + 77.618476317589099, + 13.017954407844 + ], + [ + 77.6184697665785, + 13.0179341317889 + ], + [ + 77.618407310608205, + 13.017740821723899 + ], + [ + 77.618407160143704, + 13.0177403561774 + ], + [ + 77.618389713676805, + 13.017686357221899 + ], + [ + 77.618352242127102, + 13.0175726793689 + ], + [ + 77.618330996791997, + 13.0174989312421 + ], + [ + 77.618228009933205, + 13.017141427041301 + ], + [ + 77.618205193622899, + 13.0170622245674 + ], + [ + 77.618197781988798, + 13.017036496937701 + ], + [ + 77.618179509628803, + 13.016973066488999 + ], + [ + 77.618177731074795, + 13.016966893336701 + ], + [ + 77.618136808697798, + 13.016851224800799 + ], + [ + 77.618114506848897, + 13.016788188271001 + ], + [ + 77.618113637060901, + 13.0167857289204 + ], + [ + 77.617966354993996, + 13.016415556000601 + ], + [ + 77.617942491447707, + 13.0163555788208 + ], + [ + 77.617893229440796, + 13.0162317651917 + ], + [ + 77.617890778457095, + 13.0162256051487 + ], + [ + 77.617816053752094, + 13.016037794879701 + ], + [ + 77.617742203600997, + 13.0158521836877 + ], + [ + 77.617713187740705, + 13.0157756853013 + ], + [ + 77.617701864170698, + 13.015745832383899 + ], + [ + 77.617701591243602, + 13.015745110598999 + ], + [ + 77.617701439622707, + 13.015744710109299 + ], + [ + 77.617701274743894, + 13.015744275423501 + ], + [ + 77.617700779148294, + 13.015742967762399 + ], + [ + 77.617696823956507, + 13.0157325407061 + ], + [ + 77.617685143149203, + 13.015701745516401 + ], + [ + 77.617633824145699, + 13.0155664430211 + ], + [ + 77.617602951732195, + 13.015485633274601 + ], + [ + 77.617553888610701, + 13.0153572055605 + ], + [ + 77.617502781980306, + 13.015259310469199 + ], + [ + 77.617442425164498, + 13.015143695160599 + ], + [ + 77.617438441313794, + 13.015136064462 + ], + [ + 77.617378451258901, + 13.015021150993199 + ], + [ + 77.617366904953002, + 13.0149990335468 + ], + [ + 77.617328408204301, + 13.0149252922479 + ], + [ + 77.6173272187972, + 13.0149230149948 + ], + [ + 77.617318139723906, + 13.0149056237109 + ], + [ + 77.617317207925694, + 13.0149038380266 + ], + [ + 77.617316673856493, + 13.0149028144253 + ], + [ + 77.617316616503601, + 13.014902704787399 + ], + [ + 77.6173164886346, + 13.014902460348599 + ], + [ + 77.617314880804699, + 13.014899380567501 + ], + [ + 77.617314515043006, + 13.014898679594101 + ], + [ + 77.617314475554096, + 13.014898604105699 + ], + [ + 77.617314043996501, + 13.014897779124899 + ], + [ + 77.617310398640797, + 13.0148907963698 + ], + [ + 77.617310251967595, + 13.014890515984201 + ], + [ + 77.617305638155401, + 13.0148816783516 + ], + [ + 77.617305349491204, + 13.0148811247604 + ], + [ + 77.617301529256494, + 13.0148738076992 + ], + [ + 77.617301206744699, + 13.0148731894036 + ], + [ + 77.617297084692595, + 13.0148652944915 + ], + [ + 77.617296179230294, + 13.014863560036 + ], + [ + 77.617291543784802, + 13.014854680160701 + ], + [ + 77.617289070931903, + 13.014849944112999 + ], + [ + 77.617283865699505, + 13.014839973240299 + ], + [ + 77.617268874343694, + 13.0148112576711 + ], + [ + 77.617222611983905, + 13.0146952461377 + ], + [ + 77.6172158036849, + 13.0146781725145 + ], + [ + 77.617202045148105, + 13.014643668946499 + ], + [ + 77.617184781531506, + 13.0146000093873 + ], + [ + 77.617182262039293, + 13.014593638622699 + ], + [ + 77.617142890851795, + 13.0144940737804 + ], + [ + 77.617119557705493, + 13.0144342004089 + ], + [ + 77.617109926720502, + 13.014435935513101 + ], + [ + 77.617043949624403, + 13.014455956247 + ], + [ + 77.6168698529533, + 13.014508783551699 + ], + [ + 77.615197352535901, + 13.0150439414763 + ], + [ + 77.6148280982502, + 13.0151750410599 + ], + [ + 77.615065680465094, + 13.015916984554901 + ], + [ + 77.6142830903744, + 13.0160996079924 + ], + [ + 77.614351686829096, + 13.0163979512895 + ], + [ + 77.614429647114093, + 13.0163961563954 + ], + [ + 77.614607118166106, + 13.0172171031329 + ], + [ + 77.614804053785207, + 13.0178067650155 + ], + [ + 77.614328316868196, + 13.018012860430799 + ], + [ + 77.6141933447892, + 13.0177109401492 + ], + [ + 77.614048236389706, + 13.0177537590212 + ], + [ + 77.613789033864904, + 13.017815352324501 + ], + [ + 77.613535422006805, + 13.0167402212415 + ], + [ + 77.613123552654699, + 13.0167961115514 + ], + [ + 77.613194104300007, + 13.016282018260499 + ], + [ + 77.6132119407781, + 13.016115835064699 + ], + [ + 77.613224575796906, + 13.0160027802189 + ], + [ + 77.613255340541002, + 13.015560801675299 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "123", + "group": "Shampura", + "Corporatio": "North", + "ac_no": "159", + "ac": "Pulakeshinagar", + "corporat_1": "2", + "ward_id": "44", + "ward_name": "44 - Shampura", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಪುಲಕೇಶಿನಗರ", + "ward_name_": "ಶಂಪುರ", + "dig_ward_n": "Shampura", + "Assembly": "159 - Pulakeshinagar", + "Slno": "44" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.610071609509603, + 13.0244427478508 + ], + [ + 77.609648597295703, + 13.0245558426813 + ], + [ + 77.609458291198095, + 13.023964534449499 + ], + [ + 77.609222767496703, + 13.023992636140401 + ], + [ + 77.608794579562002, + 13.024071476711001 + ], + [ + 77.608314491578298, + 13.024197247163301 + ], + [ + 77.608275674734301, + 13.0242064950593 + ], + [ + 77.608284831936501, + 13.024229158292 + ], + [ + 77.6089668936674, + 13.0259192499378 + ], + [ + 77.6075584481286, + 13.0263110822687 + ], + [ + 77.606917775625902, + 13.024865933195599 + ], + [ + 77.6057099407397, + 13.025341534998599 + ], + [ + 77.605508359751894, + 13.0250078076101 + ], + [ + 77.6051036798859, + 13.0243954418277 + ], + [ + 77.604278567019804, + 13.024576232620401 + ], + [ + 77.603464328787894, + 13.024781491339899 + ], + [ + 77.603504647057505, + 13.024890533741299 + ], + [ + 77.603583665520802, + 13.025146809517301 + ], + [ + 77.604264929814406, + 13.027356277092499 + ], + [ + 77.604265623812907, + 13.0273563830439 + ], + [ + 77.6042945352917, + 13.027422719998899 + ], + [ + 77.604306591935597, + 13.027419210947899 + ], + [ + 77.604861480527902, + 13.027284893953601 + ], + [ + 77.605146801746599, + 13.027211677876601 + ], + [ + 77.605198691843995, + 13.027198362657201 + ], + [ + 77.6052279036832, + 13.0271908667884 + ], + [ + 77.605510810184697, + 13.0270954205791 + ], + [ + 77.605637625878501, + 13.027061903686199 + ], + [ + 77.605799903770503, + 13.027019013865001 + ], + [ + 77.605959483842, + 13.0269768376921 + ], + [ + 77.605996750692697, + 13.026966987703 + ], + [ + 77.606012734146006, + 13.026962763318 + ], + [ + 77.606026344070301, + 13.0269976340903 + ], + [ + 77.606335886104006, + 13.0268921151754 + ], + [ + 77.606380375373405, + 13.026876949002199 + ], + [ + 77.606401802426703, + 13.0268696451657 + ], + [ + 77.606425725843906, + 13.0268614904827 + ], + [ + 77.606430785522306, + 13.026859846841401 + ], + [ + 77.606454421830307, + 13.026852167535299 + ], + [ + 77.606486776558199, + 13.0269261206056 + ], + [ + 77.6065073136769, + 13.0269730618525 + ], + [ + 77.606554307608206, + 13.027080474073999 + ], + [ + 77.606564319424393, + 13.0271033582437 + ], + [ + 77.606598351661205, + 13.0271811438967 + ], + [ + 77.606619919648594, + 13.0272304408204 + ], + [ + 77.606663351120801, + 13.0273297101549 + ], + [ + 77.606680570221101, + 13.0273690661906 + ], + [ + 77.606688951810398, + 13.027388223870901 + ], + [ + 77.606710276292603, + 13.027436964011001 + ], + [ + 77.606724691794795, + 13.027469912262699 + ], + [ + 77.606759816322295, + 13.0275501929803 + ], + [ + 77.606773890112905, + 13.0275823595903 + ], + [ + 77.606822978062993, + 13.0276945568587 + ], + [ + 77.606834113270807, + 13.027720008073899 + ], + [ + 77.606836142837693, + 13.0277246475083 + ], + [ + 77.606841125720905, + 13.0277355595048 + ], + [ + 77.606852056180898, + 13.027759495027601 + ], + [ + 77.606853243264894, + 13.027762870919499 + ], + [ + 77.606862964085707, + 13.027785060552301 + ], + [ + 77.606945868013597, + 13.027974243289099 + ], + [ + 77.607071407160404, + 13.028261132137199 + ], + [ + 77.607082152464201, + 13.028285682929299 + ], + [ + 77.607127666820304, + 13.028389536801701 + ], + [ + 77.607171830427006, + 13.028490308222599 + ], + [ + 77.607234925178503, + 13.0286305078001 + ], + [ + 77.607320410385597, + 13.028820460239899 + ], + [ + 77.607395263230003, + 13.0289867849245 + ], + [ + 77.607400002622299, + 13.028997316300201 + ], + [ + 77.6074890538451, + 13.0291696602584 + ], + [ + 77.607493460845703, + 13.029178189378101 + ], + [ + 77.607517422157699, + 13.0292244093989 + ], + [ + 77.607518181990599, + 13.0292258743292 + ], + [ + 77.607557525392593, + 13.0293017650976 + ], + [ + 77.607679786500199, + 13.0294834773765 + ], + [ + 77.607689741845206, + 13.029499187048099 + ], + [ + 77.607850218989299, + 13.0297008414639 + ], + [ + 77.607882223329796, + 13.0297414280115 + ], + [ + 77.607946517786104, + 13.029822963194199 + ], + [ + 77.608002943394595, + 13.029931935028401 + ], + [ + 77.608026116133601, + 13.029977359767701 + ], + [ + 77.608032448128, + 13.0299897731773 + ], + [ + 77.608071145604299, + 13.030065632374599 + ], + [ + 77.608088838410893, + 13.030126503893401 + ], + [ + 77.608095574315797, + 13.030149680221999 + ], + [ + 77.608108782264594, + 13.030195120368001 + ], + [ + 77.608117365735097, + 13.0302250835721 + ], + [ + 77.608129105211205, + 13.0302660602378 + ], + [ + 77.608133775981003, + 13.0302878028495 + ], + [ + 77.608148975567502, + 13.030358619946499 + ], + [ + 77.608167813356403, + 13.0304463711936 + ], + [ + 77.608179883020597, + 13.0305025933949 + ], + [ + 77.6081923256408, + 13.030560553637001 + ], + [ + 77.608239897339999, + 13.030782154756 + ], + [ + 77.608254181243794, + 13.030846737503699 + ], + [ + 77.608257276324395, + 13.030860729255201 + ], + [ + 77.608265154346398, + 13.0308963495537 + ], + [ + 77.608329365273605, + 13.0311866635814 + ], + [ + 77.608330684784903, + 13.031192561384101 + ], + [ + 77.608364407164999, + 13.031343280275101 + ], + [ + 77.608391853123095, + 13.0314344753486 + ], + [ + 77.608481396783702, + 13.0317362207934 + ], + [ + 77.608498102997601, + 13.031792162263899 + ], + [ + 77.608576888238005, + 13.032055973788999 + ], + [ + 77.608630390995103, + 13.0322408161494 + ], + [ + 77.608630664430095, + 13.0322417619881 + ], + [ + 77.608682949374597, + 13.032423544954 + ], + [ + 77.608688637147694, + 13.032443318673099 + ], + [ + 77.608703682094102, + 13.032495295465599 + ], + [ + 77.608753168865803, + 13.032666265520801 + ], + [ + 77.608778039800896, + 13.0327489274163 + ], + [ + 77.6088835839967, + 13.033099717104401 + ], + [ + 77.608923219025499, + 13.0332314495422 + ], + [ + 77.608932775406004, + 13.0332641022994 + ], + [ + 77.608984789319805, + 13.033446521144199 + ], + [ + 77.608999342737803, + 13.0334981794218 + ], + [ + 77.609042210627194, + 13.033650341743501 + ], + [ + 77.609107311054501, + 13.033892479449401 + ], + [ + 77.609155181018295, + 13.034070526748399 + ], + [ + 77.609155693989806, + 13.0340724359297 + ], + [ + 77.609156667167696, + 13.034076055167899 + ], + [ + 77.609187419138394, + 13.034207870692001 + ], + [ + 77.609199503812704, + 13.0342619542088 + ], + [ + 77.6092097031392, + 13.034306180518399 + ], + [ + 77.609216390810303, + 13.034335187941601 + ], + [ + 77.6092556124201, + 13.0345053126042 + ], + [ + 77.609264830027996, + 13.034544311666201 + ], + [ + 77.609265098078097, + 13.034545446372601 + ], + [ + 77.609267062123394, + 13.034553756126201 + ], + [ + 77.609376125658201, + 13.034971550942 + ], + [ + 77.609385850060306, + 13.0350087886333 + ], + [ + 77.609399658768197, + 13.035061723664599 + ], + [ + 77.609416697328598, + 13.0351457074505 + ], + [ + 77.609427735054993, + 13.0352001095549 + ], + [ + 77.609456134895893, + 13.0353400858095 + ], + [ + 77.609462800495507, + 13.035371638374601 + ], + [ + 77.609486594970093, + 13.0354893664037 + ], + [ + 77.609504545832607, + 13.035578184217499 + ], + [ + 77.609506533258696, + 13.035588018705299 + ], + [ + 77.609520793958197, + 13.035650396238299 + ], + [ + 77.609558234709894, + 13.0358141623697 + ], + [ + 77.609598234682807, + 13.035989122276799 + ], + [ + 77.609642917242994, + 13.036185769471199 + ], + [ + 77.6096501992063, + 13.036217836179199 + ], + [ + 77.609651390877403, + 13.036222343079499 + ], + [ + 77.609734765979397, + 13.0365388274832 + ], + [ + 77.609758299155999, + 13.036628794134 + ], + [ + 77.609764108539096, + 13.0366510030925 + ], + [ + 77.609784234075605, + 13.0367279442343 + ], + [ + 77.609787558744401, + 13.0367404357475 + ], + [ + 77.609821143435298, + 13.036867705393901 + ], + [ + 77.609897700624501, + 13.0371060926034 + ], + [ + 77.609909868345596, + 13.037143982270599 + ], + [ + 77.609947361184496, + 13.037260729179 + ], + [ + 77.610011650879898, + 13.0374609132627 + ], + [ + 77.610024622829698, + 13.0375015927033 + ], + [ + 77.610025278347194, + 13.037503649507199 + ], + [ + 77.610049173765006, + 13.037578580419799 + ], + [ + 77.610075381599401, + 13.0376607650662 + ], + [ + 77.610088468837802, + 13.037701803801699 + ], + [ + 77.610108954853104, + 13.0377649487206 + ], + [ + 77.610120605221098, + 13.0378008569591 + ], + [ + 77.610133617039097, + 13.0378334738582 + ], + [ + 77.610160627015702, + 13.0379029618526 + ], + [ + 77.610179176618104, + 13.0379506841142 + ], + [ + 77.610182150171099, + 13.037958335013499 + ], + [ + 77.610241186202401, + 13.038108878384399 + ], + [ + 77.610250923626396, + 13.0381337100872 + ], + [ + 77.610254489111796, + 13.038142801392301 + ], + [ + 77.610262135125197, + 13.0381622978027 + ], + [ + 77.610264906289899, + 13.038169364420799 + ], + [ + 77.610272284384294, + 13.0381881787394 + ], + [ + 77.610276902683196, + 13.0381999561379 + ], + [ + 77.610279191973007, + 13.038205796252701 + ], + [ + 77.610287229654801, + 13.0381688185989 + ], + [ + 77.610295674317001, + 13.0381299685675 + ], + [ + 77.610396461857405, + 13.037700568241601 + ], + [ + 77.610397965678601, + 13.037694160473 + ], + [ + 77.610404154733203, + 13.037667790454799 + ], + [ + 77.610615920710401, + 13.0367655653495 + ], + [ + 77.610619813021799, + 13.0367489835659 + ], + [ + 77.610702130737494, + 13.036412065676799 + ], + [ + 77.610772215499495, + 13.036125215850999 + ], + [ + 77.611113833451796, + 13.0350493005839 + ], + [ + 77.611120078876098, + 13.0350296297659 + ], + [ + 77.611136243672803, + 13.0349787180151 + ], + [ + 77.611149684450197, + 13.0349424456551 + ], + [ + 77.611151622230295, + 13.0349384086028 + ], + [ + 77.611190693300998, + 13.034856998552799 + ], + [ + 77.611234653429193, + 13.0347654028192 + ], + [ + 77.611247466702395, + 13.0347387040066 + ], + [ + 77.611316259823198, + 13.034595364678101 + ], + [ + 77.611327772834699, + 13.034571376590501 + ], + [ + 77.6113407564753, + 13.034545636393901 + ], + [ + 77.611494502060296, + 13.034240843779999 + ], + [ + 77.6115585102919, + 13.0341139524753 + ], + [ + 77.611798080415099, + 13.0337459039701 + ], + [ + 77.611821505734596, + 13.033709915747901 + ], + [ + 77.611851520752197, + 13.033663804186 + ], + [ + 77.612057362178504, + 13.0334132873973 + ], + [ + 77.612060795615605, + 13.0334090961285 + ], + [ + 77.612153453970606, + 13.033296002778201 + ], + [ + 77.612231306110999, + 13.033196788041399 + ], + [ + 77.612570574433704, + 13.0327644235664 + ], + [ + 77.612768919499104, + 13.0325219637981 + ], + [ + 77.612769502637207, + 13.0325212505371 + ], + [ + 77.612772474738193, + 13.032517615906899 + ], + [ + 77.612773275311199, + 13.032516637557199 + ], + [ + 77.612789761589497, + 13.032496483968901 + ], + [ + 77.612816940021702, + 13.032463260239799 + ], + [ + 77.612818859578098, + 13.0324609145674 + ], + [ + 77.613003488972097, + 13.0322352187082 + ], + [ + 77.613018620619002, + 13.0322167211962 + ], + [ + 77.6132035136431, + 13.0319868551233 + ], + [ + 77.613298530396406, + 13.0318687273801 + ], + [ + 77.613360252538399, + 13.0317919923829 + ], + [ + 77.613377973958407, + 13.031769959845599 + ], + [ + 77.613396430282705, + 13.0317470137621 + ], + [ + 77.613552999716703, + 13.0315523613558 + ], + [ + 77.613670645366099, + 13.031406098558801 + ], + [ + 77.613752869022903, + 13.031305359648099 + ], + [ + 77.613987751663402, + 13.0310175828004 + ], + [ + 77.613988495798495, + 13.0310166709677 + ], + [ + 77.614098853532397, + 13.0308814608648 + ], + [ + 77.614218829418405, + 13.030734467029699 + ], + [ + 77.6142271895676, + 13.0307242246062 + ], + [ + 77.614240346553103, + 13.0307081040044 + ], + [ + 77.614415018051801, + 13.030486738796199 + ], + [ + 77.614483455696003, + 13.030400006387501 + ], + [ + 77.614495745808895, + 13.0303844311596 + ], + [ + 77.614697175735401, + 13.030129154236301 + ], + [ + 77.614726731585506, + 13.0300916973674 + ], + [ + 77.614862581654904, + 13.0299195328799 + ], + [ + 77.615140879673504, + 13.029577073194799 + ], + [ + 77.615160013456503, + 13.02955365223 + ], + [ + 77.615407414064606, + 13.029250809344701 + ], + [ + 77.615449380357205, + 13.029199438250901 + ], + [ + 77.615458127121698, + 13.029188731157999 + ], + [ + 77.615471562483506, + 13.0291722851898 + ], + [ + 77.615499648198195, + 13.029135590242699 + ], + [ + 77.615558674527904, + 13.0290584702131 + ], + [ + 77.6156872432922, + 13.0288904895597 + ], + [ + 77.615759009838797, + 13.0287967227642 + ], + [ + 77.615672834619204, + 13.0287416425207 + ], + [ + 77.615658130877605, + 13.0287322445848 + ], + [ + 77.615682605143604, + 13.028704894010801 + ], + [ + 77.615722179958297, + 13.0286617374309 + ], + [ + 77.615805644755099, + 13.028570718145501 + ], + [ + 77.615837979241903, + 13.0285354582666 + ], + [ + 77.615892695022893, + 13.0284757887807 + ], + [ + 77.616114877479603, + 13.028144298987799 + ], + [ + 77.616129694342007, + 13.028122192691299 + ], + [ + 77.616147274921801, + 13.0280527691004 + ], + [ + 77.616160658501897, + 13.027999916821001 + ], + [ + 77.616122075832493, + 13.027835432804901 + ], + [ + 77.616026195281094, + 13.0276986308359 + ], + [ + 77.616004896310301, + 13.027679849766299 + ], + [ + 77.615833937355404, + 13.0275291009388 + ], + [ + 77.615827406870807, + 13.0275233425488 + ], + [ + 77.615785454850396, + 13.0274922685105 + ], + [ + 77.6156662690871, + 13.027403987541 + ], + [ + 77.615613825629794, + 13.0273651425001 + ], + [ + 77.615515346908097, + 13.0272918279764 + ], + [ + 77.615514099728102, + 13.027290899206999 + ], + [ + 77.615479108200105, + 13.027264849202099 + ], + [ + 77.615432738865096, + 13.027230328881799 + ], + [ + 77.615411267987099, + 13.027214735838101 + ], + [ + 77.615389464117101, + 13.027196913808201 + ], + [ + 77.615290806336503, + 13.0271162751656 + ], + [ + 77.615102834781396, + 13.0269626339573 + ], + [ + 77.615070892718805, + 13.026936983124701 + ], + [ + 77.614858636768503, + 13.0267403745178 + ], + [ + 77.614838550793195, + 13.026725042976 + ], + [ + 77.614758178175293, + 13.026663699913801 + ], + [ + 77.614716990137296, + 13.026632263799501 + ], + [ + 77.614429807471794, + 13.0264621565626 + ], + [ + 77.614405814639397, + 13.0264479448931 + ], + [ + 77.614200009459793, + 13.0263208752729 + ], + [ + 77.614112247149606, + 13.0262666884223 + ], + [ + 77.614027900478305, + 13.0262146108845 + ], + [ + 77.614006059267595, + 13.026196901104001 + ], + [ + 77.614006028599604, + 13.0261968761177 + ], + [ + 77.614001764068604, + 13.0261934183976 + ], + [ + 77.613857708214994, + 13.026075168830101 + ], + [ + 77.613776569618906, + 13.026002253985199 + ], + [ + 77.613755863393493, + 13.025983647375501 + ], + [ + 77.613677000582896, + 13.025922050148701 + ], + [ + 77.613624607134497, + 13.025857181999401 + ], + [ + 77.613594238026295, + 13.0258271280582 + ], + [ + 77.613589453715804, + 13.0258216383623 + ], + [ + 77.613549356037595, + 13.025775634216 + ], + [ + 77.613471001577494, + 13.0256623679402 + ], + [ + 77.613430477283302, + 13.025587115353799 + ], + [ + 77.613342353272898, + 13.0254208716765 + ], + [ + 77.613241123402503, + 13.0252129769859 + ], + [ + 77.613158710336293, + 13.025042158497801 + ], + [ + 77.613110250707706, + 13.024924074331899 + ], + [ + 77.613104377951899, + 13.0249098586289 + ], + [ + 77.613046023812004, + 13.0247686003345 + ], + [ + 77.612988531964803, + 13.024629431058001 + ], + [ + 77.612909372079599, + 13.024446956214099 + ], + [ + 77.612845129917801, + 13.024298870438001 + ], + [ + 77.612692876054794, + 13.023947609419601 + ], + [ + 77.612682840842496, + 13.0239244592884 + ], + [ + 77.612618209698795, + 13.023764203741701 + ], + [ + 77.612615429467397, + 13.023757309770399 + ], + [ + 77.612615315948403, + 13.0237570281445 + ], + [ + 77.612603293956198, + 13.0237607323209 + ], + [ + 77.612485005293905, + 13.023794091217599 + ], + [ + 77.611000220959497, + 13.024212810054401 + ], + [ + 77.611003274362702, + 13.024222826230201 + ], + [ + 77.611000845216395, + 13.024225074930399 + ], + [ + 77.610999496186906, + 13.024220579550301 + ], + [ + 77.610071609509603, + 13.0244427478508 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "132", + "group": "Yelahanka Satalite Town", + "Corporatio": "North", + "ac_no": "150", + "ac": "Yelahanka", + "corporat_1": "2", + "ward_id": "8", + "ward_name": "8 - Yelahanka Satelite Town", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಯಲಹಂಕ", + "ward_name_": "ಯಲಹಂಕ ಉಪಗ್ರಹ ಪಟ್ಟಣ", + "dig_ward_n": "Yelahanka Satelite Town", + "Assembly": "150 - Yelahanka", + "Slno": "8" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.578073645301302, + 13.0932676422917 + ], + [ + 77.578020909891407, + 13.0930818389948 + ], + [ + 77.577821289948602, + 13.0923161166151 + ], + [ + 77.577758715231596, + 13.0921207636317 + ], + [ + 77.577639227067195, + 13.0915975084278 + ], + [ + 77.577221134327104, + 13.0897686553614 + ], + [ + 77.576602963036905, + 13.089923217228201 + ], + [ + 77.576217540343293, + 13.0900033159696 + ], + [ + 77.5751232609976, + 13.090230724937999 + ], + [ + 77.574174453826203, + 13.0904375165521 + ], + [ + 77.573331309345804, + 13.0908271488765 + ], + [ + 77.570294154457102, + 13.0923085647443 + ], + [ + 77.570242616492393, + 13.092449337137399 + ], + [ + 77.569535525708304, + 13.094380711301801 + ], + [ + 77.569958902811706, + 13.097865592680201 + ], + [ + 77.569931960332198, + 13.098064740796101 + ], + [ + 77.569945081943402, + 13.0980628383178 + ], + [ + 77.569947961904106, + 13.0980628096037 + ], + [ + 77.5700596106295, + 13.098052661975601 + ], + [ + 77.570126425707699, + 13.0980519957719 + ], + [ + 77.5703166436966, + 13.098063650686401 + ], + [ + 77.5706461797175, + 13.0981224761261 + ], + [ + 77.570978282205203, + 13.098179090459199 + ], + [ + 77.570907542525305, + 13.099055078706799 + ], + [ + 77.570805664816902, + 13.099281436720799 + ], + [ + 77.570598480668295, + 13.099617530846301 + ], + [ + 77.570516909137496, + 13.0997350005059 + ], + [ + 77.570187329532502, + 13.100101298055501 + ], + [ + 77.570163178881998, + 13.100124725209399 + ], + [ + 77.570140574166899, + 13.100154658093199 + ], + [ + 77.570111234555199, + 13.1001766878473 + ], + [ + 77.570275793117801, + 13.100291702819399 + ], + [ + 77.570442832450794, + 13.100432052931801 + ], + [ + 77.570568323299796, + 13.1002728445938 + ], + [ + 77.570768165226895, + 13.1000839117068 + ], + [ + 77.5708203251545, + 13.1004087241047 + ], + [ + 77.571182918643402, + 13.1008014474312 + ], + [ + 77.571613018549201, + 13.1010746667031 + ], + [ + 77.571734416807502, + 13.101090844949301 + ], + [ + 77.571801905230402, + 13.1010409006005 + ], + [ + 77.571900617769003, + 13.1010080343288 + ], + [ + 77.572067646471496, + 13.1010049181731 + ], + [ + 77.572330413010505, + 13.1011095319323 + ], + [ + 77.572625379777705, + 13.1014674236877 + ], + [ + 77.572810098709397, + 13.101672806733299 + ], + [ + 77.572995947421205, + 13.101560091845201 + ], + [ + 77.573241648182901, + 13.1015873458605 + ], + [ + 77.573592901823105, + 13.1015997786531 + ], + [ + 77.574011691558496, + 13.1013535894421 + ], + [ + 77.574307751035903, + 13.101087613207399 + ], + [ + 77.574384305513703, + 13.101554196001 + ], + [ + 77.574550140903796, + 13.1023604344748 + ], + [ + 77.574683215190404, + 13.1023620031297 + ], + [ + 77.574728223395596, + 13.1027093468216 + ], + [ + 77.574926130744601, + 13.102689979534 + ], + [ + 77.575929129685903, + 13.102537214498099 + ], + [ + 77.575950804138699, + 13.1034960579371 + ], + [ + 77.575599999081206, + 13.1038093161783 + ], + [ + 77.575351015623795, + 13.103827467259 + ], + [ + 77.574939990537104, + 13.103862556710499 + ], + [ + 77.574090067660705, + 13.1039276542019 + ], + [ + 77.574152606126404, + 13.104817190519601 + ], + [ + 77.574096518102095, + 13.104828860104501 + ], + [ + 77.574165284612803, + 13.1052478862293 + ], + [ + 77.574211424912306, + 13.105579640424001 + ], + [ + 77.574178012018194, + 13.1056364907339 + ], + [ + 77.573733218324506, + 13.105835119572699 + ], + [ + 77.5737159518185, + 13.106022955698499 + ], + [ + 77.573580899101898, + 13.1060445928929 + ], + [ + 77.573780550252394, + 13.106832379477201 + ], + [ + 77.574015670679003, + 13.1077082953688 + ], + [ + 77.574689258584499, + 13.107471190617 + ], + [ + 77.575751139062405, + 13.107098887501699 + ], + [ + 77.577853804851003, + 13.1064192214803 + ], + [ + 77.578117858450398, + 13.1068855667313 + ], + [ + 77.578636395157005, + 13.107530845505901 + ], + [ + 77.579275434751196, + 13.1082736496744 + ], + [ + 77.579665484952201, + 13.108674051735701 + ], + [ + 77.579726354402894, + 13.108343764198599 + ], + [ + 77.580243205433902, + 13.1084095945775 + ], + [ + 77.580736962252701, + 13.108493769421999 + ], + [ + 77.580872830552394, + 13.1080640156052 + ], + [ + 77.580901188658601, + 13.107974734005699 + ], + [ + 77.581004100707602, + 13.107678956927799 + ], + [ + 77.581071091242407, + 13.1075292187867 + ], + [ + 77.581287910203997, + 13.1071634133208 + ], + [ + 77.58164941007, + 13.1066956506507 + ], + [ + 77.581711370272899, + 13.1066159790971 + ], + [ + 77.5820232279262, + 13.106265767233401 + ], + [ + 77.582083755060907, + 13.106197795924301 + ], + [ + 77.582137851206994, + 13.1061374011292 + ], + [ + 77.582354729068101, + 13.105887911878799 + ], + [ + 77.582450366795598, + 13.1057785409996 + ], + [ + 77.582498209192494, + 13.1057261139032 + ], + [ + 77.582847892967195, + 13.105340907132801 + ], + [ + 77.582958388515394, + 13.1052200942465 + ], + [ + 77.583394493254502, + 13.1047809437647 + ], + [ + 77.583423562920601, + 13.1047512906578 + ], + [ + 77.583857046772295, + 13.1043156044183 + ], + [ + 77.583916112480296, + 13.104256238251899 + ], + [ + 77.583997055811906, + 13.104174117405 + ], + [ + 77.584522576474399, + 13.1036922850623 + ], + [ + 77.584568831517203, + 13.103653425148501 + ], + [ + 77.584648763914302, + 13.1035848658103 + ], + [ + 77.584654476737995, + 13.1035802913352 + ], + [ + 77.585317984606604, + 13.1030180232042 + ], + [ + 77.585491013870595, + 13.102872867051399 + ], + [ + 77.585854198307104, + 13.102567701852299 + ], + [ + 77.586131985246993, + 13.1023593830924 + ], + [ + 77.586446328607806, + 13.1021213356304 + ], + [ + 77.586514893439897, + 13.1020675707598 + ], + [ + 77.587063387379601, + 13.101635192987199 + ], + [ + 77.587343886912194, + 13.101411035977 + ], + [ + 77.587472987246201, + 13.1013069743667 + ], + [ + 77.587855162664297, + 13.101000487176 + ], + [ + 77.588248198282997, + 13.100685985481199 + ], + [ + 77.588340705981494, + 13.100608264719799 + ], + [ + 77.588602771452798, + 13.1003842918701 + ], + [ + 77.589000271301103, + 13.100056193048699 + ], + [ + 77.589241859766801, + 13.0998572697981 + ], + [ + 77.589630564552806, + 13.0995145779001 + ], + [ + 77.5896614080322, + 13.0994894236484 + ], + [ + 77.590157124087099, + 13.099079027933 + ], + [ + 77.590284470359194, + 13.098972724369901 + ], + [ + 77.590480896443495, + 13.098807003519701 + ], + [ + 77.590630493187604, + 13.098680149027899 + ], + [ + 77.591184811466803, + 13.0982002763614 + ], + [ + 77.591524519922004, + 13.09791002223 + ], + [ + 77.592318229665693, + 13.097188541219699 + ], + [ + 77.592121826666599, + 13.0969876392616 + ], + [ + 77.5918671574358, + 13.095728877046399 + ], + [ + 77.591717961488797, + 13.0949905312536 + ], + [ + 77.591536232019905, + 13.094307820166801 + ], + [ + 77.591346128348903, + 13.093901216313901 + ], + [ + 77.591004402238099, + 13.0932670364054 + ], + [ + 77.590955079275801, + 13.093128140174199 + ], + [ + 77.590982225133104, + 13.093031259177 + ], + [ + 77.590146398386494, + 13.0925400538431 + ], + [ + 77.589749591162203, + 13.0934771506075 + ], + [ + 77.588932100291998, + 13.093056419127301 + ], + [ + 77.587537470670895, + 13.0927665927044 + ], + [ + 77.586629679465204, + 13.0927039897787 + ], + [ + 77.585971192582406, + 13.0926962524101 + ], + [ + 77.585834072208996, + 13.0927188871123 + ], + [ + 77.584586295343698, + 13.092935355293999 + ], + [ + 77.583996091212796, + 13.0930769497682 + ], + [ + 77.582563377049198, + 13.093496750551401 + ], + [ + 77.581883102040194, + 13.093788097539299 + ], + [ + 77.581107024623094, + 13.094220800154 + ], + [ + 77.581106331647902, + 13.0942212533889 + ], + [ + 77.580697906337505, + 13.0944963718638 + ], + [ + 77.5806915535358, + 13.094500993290101 + ], + [ + 77.580662624256206, + 13.0945220366029 + ], + [ + 77.580312637793398, + 13.094776623599 + ], + [ + 77.579744123255793, + 13.095284003221 + ], + [ + 77.579503901386104, + 13.095542708949001 + ], + [ + 77.579168095267207, + 13.0951671198425 + ], + [ + 77.578497572158199, + 13.0944492589867 + ], + [ + 77.578141790599901, + 13.0940716940496 + ], + [ + 77.577970680636696, + 13.093824153488301 + ], + [ + 77.577924766140399, + 13.093673902345399 + ], + [ + 77.577902018212299, + 13.093444256152999 + ], + [ + 77.577898312297407, + 13.0933587251288 + ], + [ + 77.578073645301302, + 13.0932676422917 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "124", + "group": "JP PARK", + "Corporatio": "North", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "2", + "ward_id": "32", + "ward_name": "32 - JP PARK", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಜೆಪಿ ಪಾರ್ಕ್", + "dig_ward_n": "JP PARK", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "32" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.552500815081302, + 13.0250970642563 + ], + [ + 77.552355103771305, + 13.0250866029135 + ], + [ + 77.551973833452294, + 13.0250592279298 + ], + [ + 77.551388787062294, + 13.0250649895099 + ], + [ + 77.551302026224903, + 13.0250157253257 + ], + [ + 77.551190158988206, + 13.024952205075 + ], + [ + 77.5507737299762, + 13.024710130268099 + ], + [ + 77.550711526182496, + 13.024823562138399 + ], + [ + 77.550663207835299, + 13.0249116733759 + ], + [ + 77.550183850767795, + 13.0257904892437 + ], + [ + 77.550040247970301, + 13.0260516474107 + ], + [ + 77.549205167718497, + 13.028129919099101 + ], + [ + 77.549123792254804, + 13.0283179918701 + ], + [ + 77.548965059290396, + 13.028684852744201 + ], + [ + 77.548854645754602, + 13.0289400374979 + ], + [ + 77.548801791001907, + 13.0290621940945 + ], + [ + 77.548445563731505, + 13.029834284909199 + ], + [ + 77.548159243026703, + 13.030454857731 + ], + [ + 77.5476879380127, + 13.0314763586974 + ], + [ + 77.546948857076103, + 13.032896117156399 + ], + [ + 77.546865272626803, + 13.0332622036993 + ], + [ + 77.547595766376503, + 13.033897664563099 + ], + [ + 77.548369769158398, + 13.0348600156549 + ], + [ + 77.548990059109599, + 13.0354740082463 + ], + [ + 77.549233079953495, + 13.035789734972701 + ], + [ + 77.549308648272401, + 13.035916827145501 + ], + [ + 77.549418565827196, + 13.0360439193182 + ], + [ + 77.549699084586905, + 13.0363416126958 + ], + [ + 77.5500289637273, + 13.0368368978689 + ], + [ + 77.550036852073006, + 13.0368408215906 + ], + [ + 77.549977313397505, + 13.036882040673699 + ], + [ + 77.550195656068695, + 13.037602921991001 + ], + [ + 77.550183210352003, + 13.0375249154971 + ], + [ + 77.549895972239099, + 13.0375766530211 + ], + [ + 77.549896059735104, + 13.037577278256601 + ], + [ + 77.5502009461254, + 13.0390231660685 + ], + [ + 77.550420820908002, + 13.039543915919801 + ], + [ + 77.550422409268506, + 13.0395432606201 + ], + [ + 77.550435255656197, + 13.0395379635435 + ], + [ + 77.550744948784896, + 13.0394102598015 + ], + [ + 77.551147011070199, + 13.03925818526 + ], + [ + 77.551176640488507, + 13.039246978548601 + ], + [ + 77.551243742899302, + 13.039221597644399 + ], + [ + 77.551474020366896, + 13.0391344985317 + ], + [ + 77.551735150575894, + 13.0390357295892 + ], + [ + 77.551771305907295, + 13.039024082646799 + ], + [ + 77.552204036321399, + 13.0388846960665 + ], + [ + 77.552384482887604, + 13.0388373419062 + ], + [ + 77.552412242713402, + 13.0388305569594 + ], + [ + 77.552687809501506, + 13.038763204401 + ], + [ + 77.553021383560306, + 13.03872197121 + ], + [ + 77.553144511233, + 13.038706751394701 + ], + [ + 77.553415030693401, + 13.0387067509419 + ], + [ + 77.553405415112493, + 13.038530746633 + ], + [ + 77.553401294661398, + 13.038129199656 + ], + [ + 77.553349007568301, + 13.0378856428198 + ], + [ + 77.553390409793394, + 13.0378629813895 + ], + [ + 77.553367693791998, + 13.037781894300799 + ], + [ + 77.553295743786094, + 13.037511317430999 + ], + [ + 77.553293413793696, + 13.0375025551931 + ], + [ + 77.553246855402406, + 13.037230846970701 + ], + [ + 77.553241947327606, + 13.0372015348205 + ], + [ + 77.5532369128113, + 13.0368965637174 + ], + [ + 77.553236523325694, + 13.0368729710591 + ], + [ + 77.553250760174805, + 13.036751022010099 + ], + [ + 77.553257346674201, + 13.0366946048019 + ], + [ + 77.553259920757696, + 13.036672552221299 + ], + [ + 77.553273878911199, + 13.036552988339301 + ], + [ + 77.553282344623298, + 13.036506125632499 + ], + [ + 77.553283131092897, + 13.0365017695358 + ], + [ + 77.553288592925, + 13.0364715320625 + ], + [ + 77.553290857295096, + 13.036466444948701 + ], + [ + 77.553292923504799, + 13.036461802483201 + ], + [ + 77.553294331289905, + 13.036458638243399 + ], + [ + 77.553336630009795, + 13.0363635974727 + ], + [ + 77.553366841302505, + 13.0362957154864 + ], + [ + 77.5533671554211, + 13.036295795506501 + ], + [ + 77.5533750302057, + 13.0362763016402 + ], + [ + 77.553394490221606, + 13.0362281252906 + ], + [ + 77.553410840058007, + 13.0361876499676 + ], + [ + 77.553444541969199, + 13.0360951739697 + ], + [ + 77.553465060300496, + 13.0360388732316 + ], + [ + 77.553486786442207, + 13.0359302802195 + ], + [ + 77.553503558544406, + 13.035846451045201 + ], + [ + 77.553513581471904, + 13.0357963539641 + ], + [ + 77.553517893076901, + 13.0357748073504 + ], + [ + 77.553531519360405, + 13.035706701352099 + ], + [ + 77.553532376490594, + 13.0357010598426 + ], + [ + 77.553543029538602, + 13.0356309196724 + ], + [ + 77.553551327906902, + 13.0355762834659 + ], + [ + 77.553556727810104, + 13.0355407315664 + ], + [ + 77.553558498158296, + 13.035529077576699 + ], + [ + 77.553572038821798, + 13.0354079006355 + ], + [ + 77.553576255278799, + 13.035370165007199 + ], + [ + 77.553577459609699, + 13.035359385725901 + ], + [ + 77.553578677496205, + 13.0353484906685 + ], + [ + 77.553599110152305, + 13.0351656507514 + ], + [ + 77.553606591125103, + 13.0350987048721 + ], + [ + 77.553606815482496, + 13.035098478602 + ], + [ + 77.553609059581206, + 13.0350810884075 + ], + [ + 77.5536185181669, + 13.0350077816579 + ], + [ + 77.553631307404501, + 13.0349086573906 + ], + [ + 77.553631713739605, + 13.034905511158801 + ], + [ + 77.553634481950695, + 13.034884060175999 + ], + [ + 77.553657801870798, + 13.034703320332801 + ], + [ + 77.553659625146494, + 13.0346891912523 + ], + [ + 77.553712563094507, + 13.034369653892901 + ], + [ + 77.553756382071896, + 13.034105154742001 + ], + [ + 77.553757524008304, + 13.034098263653201 + ], + [ + 77.5537661396055, + 13.0340462597078 + ], + [ + 77.553767005583197, + 13.034041031894899 + ], + [ + 77.553811181819896, + 13.033795462978301 + ], + [ + 77.553812441498394, + 13.0337884623136 + ], + [ + 77.553819309901598, + 13.033750279523 + ], + [ + 77.553844902649303, + 13.033606603290201 + ], + [ + 77.553897299107305, + 13.0334931543858 + ], + [ + 77.554009897070799, + 13.0332413345182 + ], + [ + 77.554172265374106, + 13.0329339279048 + ], + [ + 77.554283287023495, + 13.032710632718 + ], + [ + 77.553935215523396, + 13.032457342653 + ], + [ + 77.553718806331304, + 13.0323276768202 + ], + [ + 77.5537154989551, + 13.032321808954601 + ], + [ + 77.553671657648394, + 13.032297942786499 + ], + [ + 77.553645927213495, + 13.032283938145101 + ], + [ + 77.553621319866593, + 13.032270546715401 + ], + [ + 77.553617678937599, + 13.0322683628224 + ], + [ + 77.553349619230602, + 13.032107614716899 + ], + [ + 77.553257167530802, + 13.0320521739597 + ], + [ + 77.552900203646004, + 13.0318190304558 + ], + [ + 77.552713428669904, + 13.031697042674001 + ], + [ + 77.552673048590805, + 13.031670668514799 + ], + [ + 77.552552724091697, + 13.0315771865183 + ], + [ + 77.552483909682906, + 13.0315237232091 + ], + [ + 77.552430099614298, + 13.031479916330101 + ], + [ + 77.552252006184304, + 13.031334931767701 + ], + [ + 77.552251080701097, + 13.0313341783692 + ], + [ + 77.552156867029893, + 13.031258627240399 + ], + [ + 77.552096396758699, + 13.0312101355177 + ], + [ + 77.551927568635307, + 13.0310747507614 + ], + [ + 77.551882967199106, + 13.031026492003599 + ], + [ + 77.551733841769206, + 13.030865136367501 + ], + [ + 77.551662767691099, + 13.0307714188456 + ], + [ + 77.551649921467302, + 13.0307544790712 + ], + [ + 77.551600986667395, + 13.030689952795401 + ], + [ + 77.551575817333202, + 13.0306567646497 + ], + [ + 77.551503650515301, + 13.0305616050653 + ], + [ + 77.551432854968994, + 13.0304682542188 + ], + [ + 77.551365450123001, + 13.030379373685401 + ], + [ + 77.551342402535099, + 13.030345876401499 + ], + [ + 77.551179262487096, + 13.030108770504199 + ], + [ + 77.551248536570697, + 13.030108867852499 + ], + [ + 77.552224571045699, + 13.030110234566401 + ], + [ + 77.552234291581101, + 13.030701763977801 + ], + [ + 77.553237025523302, + 13.0306676294065 + ], + [ + 77.553440145621494, + 13.030660714864499 + ], + [ + 77.553555163228694, + 13.0306567991568 + ], + [ + 77.553568624492399, + 13.0306563411937 + ], + [ + 77.553584954558701, + 13.0306631051919 + ], + [ + 77.5535840775418, + 13.030636799735699 + ], + [ + 77.553568480328195, + 13.0301523470307 + ], + [ + 77.553567946162502, + 13.030135751264799 + ], + [ + 77.553560414953694, + 13.029901844465201 + ], + [ + 77.553553138691797, + 13.029701688320801 + ], + [ + 77.553552946471399, + 13.0296964221547 + ], + [ + 77.5535515909731, + 13.029659127237601 + ], + [ + 77.553550115051905, + 13.029627520772999 + ], + [ + 77.553548820103899, + 13.029593793916 + ], + [ + 77.553544762740401, + 13.0293784782024 + ], + [ + 77.554283418598899, + 13.029369032974399 + ], + [ + 77.555123404485201, + 13.0293488561964 + ], + [ + 77.555073648947499, + 13.028397494636501 + ], + [ + 77.555598753882606, + 13.028358484921799 + ], + [ + 77.555612433676998, + 13.028139757795101 + ], + [ + 77.555190667078804, + 13.028162134424299 + ], + [ + 77.555165565642, + 13.027785050180601 + ], + [ + 77.554780426230806, + 13.027790590043701 + ], + [ + 77.554430625121398, + 13.0278079120065 + ], + [ + 77.554456118758196, + 13.0271883156146 + ], + [ + 77.553632386540698, + 13.0272113807191 + ], + [ + 77.553630135993401, + 13.027211430006799 + ], + [ + 77.553642253636696, + 13.0271316383939 + ], + [ + 77.553644761662696, + 13.0271094310762 + ], + [ + 77.553653644067396, + 13.0270307806509 + ], + [ + 77.553712810029594, + 13.026783180683299 + ], + [ + 77.553717830445095, + 13.026767320687799 + ], + [ + 77.553718314716704, + 13.026654616500601 + ], + [ + 77.553785755025203, + 13.0262643374445 + ], + [ + 77.553787899665707, + 13.026251892859101 + ], + [ + 77.553797510594507, + 13.026192355130201 + ], + [ + 77.553819306568599, + 13.026057339894299 + ], + [ + 77.553846083629097, + 13.025860573020999 + ], + [ + 77.553851998275306, + 13.025816360037201 + ], + [ + 77.553856971517007, + 13.0257791852331 + ], + [ + 77.553858985340895, + 13.025764137269199 + ], + [ + 77.553861060721104, + 13.0257486225145 + ], + [ + 77.553862822032798, + 13.0257359070568 + ], + [ + 77.553875001923601, + 13.0256479754394 + ], + [ + 77.553904989900104, + 13.0254274620629 + ], + [ + 77.553907143635598, + 13.025412759648001 + ], + [ + 77.553921148412499, + 13.0253401525611 + ], + [ + 77.553941332763301, + 13.025235513006299 + ], + [ + 77.553956904520206, + 13.025154783749899 + ], + [ + 77.553972643029994, + 13.0250780967263 + ], + [ + 77.553982683420699, + 13.0250291749123 + ], + [ + 77.554000953620999, + 13.024941578078 + ], + [ + 77.5540265484439, + 13.0247628017931 + ], + [ + 77.553569702107595, + 13.024732684177801 + ], + [ + 77.553548698981501, + 13.0250139387059 + ], + [ + 77.552500815081302, + 13.0250970642563 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "125", + "group": "BRUNDAVAN NAGARA", + "Corporatio": "North", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "2", + "ward_id": "34", + "ward_name": "34 - Brundavana Nagara", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಬೃಂದಾವನ ನಗರ", + "dig_ward_n": "BRUNDAVANA NAGARA", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "34" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.555599977559496, + 13.026788872118599 + ], + [ + 77.5556276236766, + 13.027033635633 + ], + [ + 77.554790303372101, + 13.027130630282899 + ], + [ + 77.554779274725504, + 13.027131611781501 + ], + [ + 77.554779373631305, + 13.0271356844935 + ], + [ + 77.554780426230806, + 13.027790590043701 + ], + [ + 77.555165565642, + 13.027785050180601 + ], + [ + 77.555190667078804, + 13.028162134424299 + ], + [ + 77.555612433676998, + 13.028139757795101 + ], + [ + 77.555598753882606, + 13.028358484921799 + ], + [ + 77.555073648947499, + 13.028397494636501 + ], + [ + 77.555123404485201, + 13.0293488561964 + ], + [ + 77.554283418598899, + 13.029369032974399 + ], + [ + 77.553544762740401, + 13.0293784782024 + ], + [ + 77.553548820103899, + 13.029593793916 + ], + [ + 77.553550115051905, + 13.029627520772999 + ], + [ + 77.5535515909731, + 13.029659127237601 + ], + [ + 77.553552946471399, + 13.0296964221547 + ], + [ + 77.553553138691797, + 13.029701688320801 + ], + [ + 77.553560414953694, + 13.029901844465201 + ], + [ + 77.553567946162502, + 13.030135751264799 + ], + [ + 77.553568480328195, + 13.0301523470307 + ], + [ + 77.5535840775418, + 13.030636799735699 + ], + [ + 77.553584954558701, + 13.0306631051919 + ], + [ + 77.553568624492399, + 13.0306563411937 + ], + [ + 77.553555163228694, + 13.0306567991568 + ], + [ + 77.553440145621494, + 13.030660714864499 + ], + [ + 77.553237025523302, + 13.0306676294065 + ], + [ + 77.552234291581101, + 13.030701763977801 + ], + [ + 77.552224571045699, + 13.030110234566401 + ], + [ + 77.551248536570697, + 13.030108867852499 + ], + [ + 77.551179262487096, + 13.030108770504199 + ], + [ + 77.551342402535099, + 13.030345876401499 + ], + [ + 77.551365450123001, + 13.030379373685401 + ], + [ + 77.551432854968994, + 13.0304682542188 + ], + [ + 77.551503650515301, + 13.0305616050653 + ], + [ + 77.551575817333202, + 13.0306567646497 + ], + [ + 77.551600986667395, + 13.030689952795401 + ], + [ + 77.551649921467302, + 13.0307544790712 + ], + [ + 77.551662767691099, + 13.0307714188456 + ], + [ + 77.551733841769206, + 13.030865136367501 + ], + [ + 77.551882967199106, + 13.031026492003599 + ], + [ + 77.551927568635307, + 13.0310747507614 + ], + [ + 77.552096396758699, + 13.0312101355177 + ], + [ + 77.552156867029893, + 13.031258627240399 + ], + [ + 77.552251080701097, + 13.0313341783692 + ], + [ + 77.552252006184304, + 13.031334931767701 + ], + [ + 77.552430099614298, + 13.031479916330101 + ], + [ + 77.552483909682906, + 13.0315237232091 + ], + [ + 77.552552724091697, + 13.0315771865183 + ], + [ + 77.552673048590805, + 13.031670668514799 + ], + [ + 77.552713428669904, + 13.031697042674001 + ], + [ + 77.552900203646004, + 13.0318190304558 + ], + [ + 77.553257167530802, + 13.0320521739597 + ], + [ + 77.553349619230602, + 13.032107614716899 + ], + [ + 77.553617678937599, + 13.0322683628224 + ], + [ + 77.553621319866593, + 13.032270546715401 + ], + [ + 77.553645927213495, + 13.032283938145101 + ], + [ + 77.553671657648394, + 13.032297942786499 + ], + [ + 77.5537154989551, + 13.032321808954601 + ], + [ + 77.553718806331304, + 13.0323276768202 + ], + [ + 77.553935215523396, + 13.032457342653 + ], + [ + 77.554283287023495, + 13.032710632718 + ], + [ + 77.554172265374106, + 13.0329339279048 + ], + [ + 77.554009897070799, + 13.0332413345182 + ], + [ + 77.553897299107305, + 13.0334931543858 + ], + [ + 77.553844902649303, + 13.033606603290201 + ], + [ + 77.553819309901598, + 13.033750279523 + ], + [ + 77.553812441498394, + 13.0337884623136 + ], + [ + 77.553811181819896, + 13.033795462978301 + ], + [ + 77.553767005583197, + 13.034041031894899 + ], + [ + 77.5537661396055, + 13.0340462597078 + ], + [ + 77.553757524008304, + 13.034098263653201 + ], + [ + 77.553756382071896, + 13.034105154742001 + ], + [ + 77.553712563094507, + 13.034369653892901 + ], + [ + 77.553659625146494, + 13.0346891912523 + ], + [ + 77.553657801870798, + 13.034703320332801 + ], + [ + 77.553634481950695, + 13.034884060175999 + ], + [ + 77.553631713739605, + 13.034905511158801 + ], + [ + 77.553631307404501, + 13.0349086573906 + ], + [ + 77.5536185181669, + 13.0350077816579 + ], + [ + 77.553609059581206, + 13.0350810884075 + ], + [ + 77.553606815482496, + 13.035098478602 + ], + [ + 77.553606591125103, + 13.0350987048721 + ], + [ + 77.553599110152305, + 13.0351656507514 + ], + [ + 77.553578677496205, + 13.0353484906685 + ], + [ + 77.553577459609699, + 13.035359385725901 + ], + [ + 77.553576255278799, + 13.035370165007199 + ], + [ + 77.553572038821798, + 13.0354079006355 + ], + [ + 77.553558498158296, + 13.035529077576699 + ], + [ + 77.553556727810104, + 13.0355407315664 + ], + [ + 77.553551327906902, + 13.0355762834659 + ], + [ + 77.553543029538602, + 13.0356309196724 + ], + [ + 77.553532376490594, + 13.0357010598426 + ], + [ + 77.553531519360405, + 13.035706701352099 + ], + [ + 77.553517893076901, + 13.0357748073504 + ], + [ + 77.553513581471904, + 13.0357963539641 + ], + [ + 77.553503558544406, + 13.035846451045201 + ], + [ + 77.553486786442207, + 13.0359302802195 + ], + [ + 77.553465060300496, + 13.0360388732316 + ], + [ + 77.553444541969199, + 13.0360951739697 + ], + [ + 77.553410840058007, + 13.0361876499676 + ], + [ + 77.553394490221606, + 13.0362281252906 + ], + [ + 77.5533750302057, + 13.0362763016402 + ], + [ + 77.5533671554211, + 13.036295795506501 + ], + [ + 77.553366841302505, + 13.0362957154864 + ], + [ + 77.553336630009795, + 13.0363635974727 + ], + [ + 77.553294331289905, + 13.036458638243399 + ], + [ + 77.553292923504799, + 13.036461802483201 + ], + [ + 77.553290857295096, + 13.036466444948701 + ], + [ + 77.553288592925, + 13.0364715320625 + ], + [ + 77.553283131092897, + 13.0365017695358 + ], + [ + 77.553282344623298, + 13.036506125632499 + ], + [ + 77.553273878911199, + 13.036552988339301 + ], + [ + 77.553259920757696, + 13.036672552221299 + ], + [ + 77.553257346674201, + 13.0366946048019 + ], + [ + 77.553250760174805, + 13.036751022010099 + ], + [ + 77.553236523325694, + 13.0368729710591 + ], + [ + 77.5532369128113, + 13.0368965637174 + ], + [ + 77.553241947327606, + 13.0372015348205 + ], + [ + 77.553246855402406, + 13.037230846970701 + ], + [ + 77.553293413793696, + 13.0375025551931 + ], + [ + 77.553295743786094, + 13.037511317430999 + ], + [ + 77.553367693791998, + 13.037781894300799 + ], + [ + 77.553390409793394, + 13.0378629813895 + ], + [ + 77.553349007568301, + 13.0378856428198 + ], + [ + 77.553401294661398, + 13.038129199656 + ], + [ + 77.553405415112493, + 13.038530746633 + ], + [ + 77.553415030693401, + 13.0387067509419 + ], + [ + 77.553944182597505, + 13.038670761623299 + ], + [ + 77.554150537619805, + 13.038656725850201 + ], + [ + 77.554523923472601, + 13.0386568150539 + ], + [ + 77.555333001215303, + 13.038657007390499 + ], + [ + 77.555450857364804, + 13.0386508170885 + ], + [ + 77.556296045072898, + 13.0386064239764 + ], + [ + 77.557302262467999, + 13.0385429347103 + ], + [ + 77.557310724785907, + 13.0384838040204 + ], + [ + 77.557330318426807, + 13.038372937250401 + ], + [ + 77.557389340202405, + 13.0381758527647 + ], + [ + 77.557399994194199, + 13.038035712038599 + ], + [ + 77.557406092138194, + 13.0379565995127 + ], + [ + 77.557427938272795, + 13.0376777528526 + ], + [ + 77.557450895524298, + 13.037384721821001 + ], + [ + 77.557507868790097, + 13.0367641632252 + ], + [ + 77.557564058802498, + 13.0362915530799 + ], + [ + 77.557576011025802, + 13.036109614759299 + ], + [ + 77.557574049936406, + 13.035918779335599 + ], + [ + 77.557554794786, + 13.035843155244001 + ], + [ + 77.557535041337403, + 13.035765577381 + ], + [ + 77.557503244727997, + 13.035641666449299 + ], + [ + 77.557392252188905, + 13.035152638578801 + ], + [ + 77.557371717569595, + 13.0350037713551 + ], + [ + 77.557373842684598, + 13.034930344658999 + ], + [ + 77.557374804776899, + 13.0349015655403 + ], + [ + 77.557375164163602, + 13.0348908054572 + ], + [ + 77.557387329745893, + 13.034785658672 + ], + [ + 77.557391982593003, + 13.0347426516312 + ], + [ + 77.557394942335307, + 13.034715301019901 + ], + [ + 77.557397848988003, + 13.034688433377999 + ], + [ + 77.557381044893503, + 13.034678435483499 + ], + [ + 77.557393120907605, + 13.034659546032 + ], + [ + 77.557427006534297, + 13.0346065480592 + ], + [ + 77.557602663714206, + 13.034331804374 + ], + [ + 77.557716587873003, + 13.034153376086399 + ], + [ + 77.557772738337107, + 13.034069251883199 + ], + [ + 77.557818121683098, + 13.0340021738067 + ], + [ + 77.557961984618203, + 13.033787267274301 + ], + [ + 77.558332571543104, + 13.0332336726243 + ], + [ + 77.558619922846404, + 13.032838960326499 + ], + [ + 77.558728622503295, + 13.032689445188 + ], + [ + 77.558824720665797, + 13.0325572635331 + ], + [ + 77.558884552876293, + 13.032474963945001 + ], + [ + 77.559363245605795, + 13.031814100200901 + ], + [ + 77.559797572932098, + 13.031151415854399 + ], + [ + 77.559861683417395, + 13.0310718673416 + ], + [ + 77.559975558942696, + 13.030930569176499 + ], + [ + 77.559766882973307, + 13.030436868788501 + ], + [ + 77.559743588198501, + 13.0303817552523 + ], + [ + 77.5591014283753, + 13.028859837026101 + ], + [ + 77.559098459080104, + 13.0288528004466 + ], + [ + 77.559087791694694, + 13.028827518773801 + ], + [ + 77.558819817855706, + 13.028193230773301 + ], + [ + 77.558459166074599, + 13.0273385111667 + ], + [ + 77.558406749620502, + 13.027224489746899 + ], + [ + 77.558404572473606, + 13.027219753655499 + ], + [ + 77.558404383984694, + 13.027219344445101 + ], + [ + 77.558399672921695, + 13.027209227105001 + ], + [ + 77.558155216103401, + 13.0266774734887 + ], + [ + 77.558029158267203, + 13.026403164438801 + ], + [ + 77.557890729993005, + 13.0261018737553 + ], + [ + 77.557886618002598, + 13.026094009120801 + ], + [ + 77.557744819704496, + 13.0257676066007 + ], + [ + 77.5577273635447, + 13.0257274233935 + ], + [ + 77.557721466101, + 13.0257139297854 + ], + [ + 77.557589736849906, + 13.0252506906505 + ], + [ + 77.557561346502496, + 13.025150850881801 + ], + [ + 77.557506483794796, + 13.0249732003132 + ], + [ + 77.557386125229698, + 13.024926075106601 + ], + [ + 77.557056739108106, + 13.026249257282799 + ], + [ + 77.556717328122502, + 13.0261498166776 + ], + [ + 77.556608931616097, + 13.0267077755939 + ], + [ + 77.556081815278006, + 13.026742551097 + ], + [ + 77.555599977559496, + 13.026788872118599 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "126", + "group": "HMT", + "Corporatio": "North", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "2", + "ward_id": "31", + "ward_name": "31 - HMT Ward", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಎಚ್ಎಮ್.ಟಿ ವಾರ್ಡ್", + "dig_ward_n": "HMT Ward", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "31" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.546948857076103, + 13.032896117156399 + ], + [ + 77.546777164894195, + 13.033225931279 + ], + [ + 77.5466142391125, + 13.033538906256201 + ], + [ + 77.545796385819401, + 13.0350534713724 + ], + [ + 77.545324450239704, + 13.0359852895297 + ], + [ + 77.545198436144801, + 13.0362447298199 + ], + [ + 77.544865110894705, + 13.0369309836239 + ], + [ + 77.544841629487394, + 13.0369793274486 + ], + [ + 77.544508345342294, + 13.037503223905 + ], + [ + 77.544451014748802, + 13.037545563530101 + ], + [ + 77.544358013222805, + 13.0376142463713 + ], + [ + 77.543955196710101, + 13.038121406165001 + ], + [ + 77.543855367983696, + 13.038247093135 + ], + [ + 77.5434212562444, + 13.038710995876301 + ], + [ + 77.542954612296398, + 13.039290078724299 + ], + [ + 77.542788885610804, + 13.039133806635 + ], + [ + 77.542147960747499, + 13.038529439649199 + ], + [ + 77.541950708257701, + 13.0383125233041 + ], + [ + 77.541465380818295, + 13.035851079026701 + ], + [ + 77.541389487574193, + 13.035465370475199 + ], + [ + 77.541225244362707, + 13.0346306377042 + ], + [ + 77.540773060474393, + 13.0326098625229 + ], + [ + 77.540770283724996, + 13.032597454466799 + ], + [ + 77.540753478320298, + 13.032522349827101 + ], + [ + 77.540751046248303, + 13.0325114815078 + ], + [ + 77.540749010983603, + 13.0325023855087 + ], + [ + 77.540748808726406, + 13.032502521205901 + ], + [ + 77.539823609543006, + 13.0331223641909 + ], + [ + 77.537781283791603, + 13.034652106253001 + ], + [ + 77.537600546529902, + 13.0347906969028 + ], + [ + 77.536419423946796, + 13.0356963914919 + ], + [ + 77.535179541606098, + 13.036684489372901 + ], + [ + 77.535125749880905, + 13.0367208937699 + ], + [ + 77.533034617741805, + 13.038180294551999 + ], + [ + 77.531990740793404, + 13.038953912096201 + ], + [ + 77.531413671539397, + 13.0394021932992 + ], + [ + 77.531213850847806, + 13.039596547023001 + ], + [ + 77.531172466402893, + 13.0396255014122 + ], + [ + 77.531054110279797, + 13.0397083054834 + ], + [ + 77.530266568826903, + 13.0402592836477 + ], + [ + 77.528569423507903, + 13.0414657048898 + ], + [ + 77.528491190446204, + 13.0415213163504 + ], + [ + 77.528266549352097, + 13.041681001663701 + ], + [ + 77.526943376732603, + 13.042615861659399 + ], + [ + 77.525434837521303, + 13.043681672862499 + ], + [ + 77.525358237523506, + 13.043728186846099 + ], + [ + 77.525348123647404, + 13.043734327988901 + ], + [ + 77.525313732998399, + 13.0437552113388 + ], + [ + 77.525546743127094, + 13.0441361361696 + ], + [ + 77.526372723430796, + 13.044563483852301 + ], + [ + 77.5269166204816, + 13.045107380903 + ], + [ + 77.531222659635006, + 13.0442511191922 + ], + [ + 77.530012779779696, + 13.0463860457086 + ], + [ + 77.529984064717993, + 13.046549890472299 + ], + [ + 77.531190097308794, + 13.0468978494551 + ], + [ + 77.533092047865097, + 13.047453570354699 + ], + [ + 77.536426044135794, + 13.0490503790232 + ], + [ + 77.536479475046207, + 13.0489658470766 + ], + [ + 77.536636933563202, + 13.0487167339962 + ], + [ + 77.536682503481003, + 13.048644637646399 + ], + [ + 77.536866862405404, + 13.048352963977701 + ], + [ + 77.536933427373199, + 13.0482476517289 + ], + [ + 77.537018035548897, + 13.048113793648801 + ], + [ + 77.538868644513897, + 13.0451859140013 + ], + [ + 77.539689083172505, + 13.0440215809524 + ], + [ + 77.540130616220395, + 13.0443118047822 + ], + [ + 77.540604529236703, + 13.0449030242319 + ], + [ + 77.541055454673696, + 13.045541203975199 + ], + [ + 77.541478588833101, + 13.046227888937199 + ], + [ + 77.543090771267202, + 13.044422235248 + ], + [ + 77.543994958304197, + 13.0434332758576 + ], + [ + 77.544920495474003, + 13.0451273458924 + ], + [ + 77.545029956601397, + 13.045102364504499 + ], + [ + 77.545068054213701, + 13.0452513907665 + ], + [ + 77.546454850736396, + 13.0446640468161 + ], + [ + 77.546388810546503, + 13.044561794731001 + ], + [ + 77.546203007206202, + 13.044463825696999 + ], + [ + 77.545915856589303, + 13.043992560861099 + ], + [ + 77.547487692833599, + 13.0435815814819 + ], + [ + 77.547440537953804, + 13.043207895536501 + ], + [ + 77.547343041832804, + 13.042435269727299 + ], + [ + 77.547340363886207, + 13.042418432991701 + ], + [ + 77.547217605024102, + 13.0416788033955 + ], + [ + 77.547232266074602, + 13.0416835910871 + ], + [ + 77.547711099331394, + 13.0418399566041 + ], + [ + 77.548339246556793, + 13.0420460851921 + ], + [ + 77.548529356278607, + 13.042107455302199 + ], + [ + 77.548872615978794, + 13.042220395157999 + ], + [ + 77.548905544826894, + 13.042230234754101 + ], + [ + 77.548961601130301, + 13.0422488811477 + ], + [ + 77.549017657440103, + 13.0422675275275 + ], + [ + 77.549367839513707, + 13.0423815277854 + ], + [ + 77.549637133481397, + 13.042470350010801 + ], + [ + 77.549880996602099, + 13.042550387910699 + ], + [ + 77.549914512959504, + 13.042561350898101 + ], + [ + 77.550183219771299, + 13.042649048946201 + ], + [ + 77.550217887893893, + 13.0426600005392 + ], + [ + 77.550251980146101, + 13.042670957802301 + ], + [ + 77.550596991793697, + 13.0427861364686 + ], + [ + 77.5509113263697, + 13.042912335275799 + ], + [ + 77.550831178152706, + 13.043208883678901 + ], + [ + 77.550819375652296, + 13.0436834516677 + ], + [ + 77.550855222617798, + 13.044135168073099 + ], + [ + 77.550898731649895, + 13.0444088169856 + ], + [ + 77.551964599877195, + 13.0442594420227 + ], + [ + 77.552121078767101, + 13.044886502955899 + ], + [ + 77.552302424132293, + 13.0454029771262 + ], + [ + 77.5498287060243, + 13.0479476383278 + ], + [ + 77.549843063555102, + 13.048002534769299 + ], + [ + 77.549977521776697, + 13.0483504772227 + ], + [ + 77.549987511467293, + 13.0483789208159 + ], + [ + 77.550154345420594, + 13.0488539273739 + ], + [ + 77.550152970594198, + 13.0488540240463 + ], + [ + 77.549539455290102, + 13.048897166110899 + ], + [ + 77.548912785228893, + 13.0489203850031 + ], + [ + 77.548894559411707, + 13.0489215412415 + ], + [ + 77.548858169464907, + 13.0489238485894 + ], + [ + 77.548218924567095, + 13.048964386184799 + ], + [ + 77.546585776684793, + 13.049043711291199 + ], + [ + 77.546332446746803, + 13.049053265798999 + ], + [ + 77.546058988476204, + 13.049063579238201 + ], + [ + 77.545229374501105, + 13.0490954598139 + ], + [ + 77.545048961247801, + 13.049137890799299 + ], + [ + 77.544808637593206, + 13.049162961085599 + ], + [ + 77.544653238435899, + 13.049110598325999 + ], + [ + 77.544511352248705, + 13.049225458572799 + ], + [ + 77.542923578249699, + 13.049250795391901 + ], + [ + 77.542690479513595, + 13.049249106270601 + ], + [ + 77.542840811307201, + 13.0504804756805 + ], + [ + 77.542800272396605, + 13.0506181390645 + ], + [ + 77.542724261939199, + 13.050706817931401 + ], + [ + 77.542571235400104, + 13.050753331204101 + ], + [ + 77.542442569461301, + 13.0507491012036 + ], + [ + 77.541961765029995, + 13.050704135824899 + ], + [ + 77.541937554359095, + 13.0507021160214 + ], + [ + 77.541735281432295, + 13.050689082158 + ], + [ + 77.539871113568594, + 13.0501599526674 + ], + [ + 77.539815819281202, + 13.050145872164 + ], + [ + 77.539810084256501, + 13.050144301339801 + ], + [ + 77.539662449329796, + 13.0501038537372 + ], + [ + 77.539578438482195, + 13.050080837092199 + ], + [ + 77.538807075098703, + 13.049869507271801 + ], + [ + 77.538732487498905, + 13.049849072086699 + ], + [ + 77.538729412986498, + 13.049848229516099 + ], + [ + 77.537694058780502, + 13.0495683501917 + ], + [ + 77.5372295504297, + 13.051309834226799 + ], + [ + 77.537239685157303, + 13.0514871919607 + ], + [ + 77.537670411082601, + 13.0514669225054 + ], + [ + 77.537539794610694, + 13.0544832962516 + ], + [ + 77.537539262587899, + 13.054492292769799 + ], + [ + 77.5375391171724, + 13.0544947480115 + ], + [ + 77.537555229062704, + 13.054492277918801 + ], + [ + 77.5376050623711, + 13.054484880944299 + ], + [ + 77.537694029512807, + 13.054471675470401 + ], + [ + 77.537701876522505, + 13.054470510682 + ], + [ + 77.5378105608428, + 13.0544561223575 + ], + [ + 77.538062193898199, + 13.0544228090281 + ], + [ + 77.538281339460895, + 13.0543937959636 + ], + [ + 77.538530302524094, + 13.054360835464401 + ], + [ + 77.538706150772001, + 13.0543375549949 + ], + [ + 77.538924309188999, + 13.0543226207697 + ], + [ + 77.538956519358294, + 13.0543204153423 + ], + [ + 77.539158707098693, + 13.0543229472371 + ], + [ + 77.539196639836504, + 13.054327217637701 + ], + [ + 77.539324775285493, + 13.054341644338599 + ], + [ + 77.539499789608996, + 13.054371957854899 + ], + [ + 77.539641909425896, + 13.0543965736482 + ], + [ + 77.540393717381903, + 13.0545267904178 + ], + [ + 77.540453933268694, + 13.0545372201492 + ], + [ + 77.540712481041098, + 13.054587758238601 + ], + [ + 77.5412664089598, + 13.0546965033724 + ], + [ + 77.541446578745493, + 13.054731873898801 + ], + [ + 77.541683794254695, + 13.0547803619645 + ], + [ + 77.542031835325105, + 13.054842744166599 + ], + [ + 77.542227347363905, + 13.054877787094 + ], + [ + 77.542528466243198, + 13.054923387339199 + ], + [ + 77.542563030002, + 13.054925776812601 + ], + [ + 77.542587861864106, + 13.0549274931362 + ], + [ + 77.542757286071605, + 13.054939206373801 + ], + [ + 77.542838243470896, + 13.0549384092817 + ], + [ + 77.543218009470905, + 13.0549346740736 + ], + [ + 77.5433486558548, + 13.0549333889654 + ], + [ + 77.5434034505938, + 13.0549328499552 + ], + [ + 77.543501130773905, + 13.0549329190038 + ], + [ + 77.543939099063294, + 13.0549332277677 + ], + [ + 77.544250681470501, + 13.054935567310199 + ], + [ + 77.544459808505394, + 13.054937138562501 + ], + [ + 77.544706422415004, + 13.054947134093 + ], + [ + 77.544861721134197, + 13.0549828733813 + ], + [ + 77.544974056015405, + 13.0550350899838 + ], + [ + 77.545033021219496, + 13.0550624988125 + ], + [ + 77.545157200299499, + 13.055161104413999 + ], + [ + 77.545311170024505, + 13.055283367423 + ], + [ + 77.545452658707703, + 13.0554243572668 + ], + [ + 77.545670267874499, + 13.0556411974672 + ], + [ + 77.545955434171105, + 13.055925355780699 + ], + [ + 77.546128161176, + 13.056097471605799 + ], + [ + 77.546140241520604, + 13.056109688487499 + ], + [ + 77.546505294130597, + 13.0564788581526 + ], + [ + 77.546723547088703, + 13.056669406413601 + ], + [ + 77.546737754494501, + 13.0566818110025 + ], + [ + 77.546791808461705, + 13.0567290037968 + ], + [ + 77.546793362567001, + 13.0567276025785 + ], + [ + 77.546959639860304, + 13.0565776831456 + ], + [ + 77.547095514261898, + 13.056455175117099 + ], + [ + 77.547113831111901, + 13.0564386600924 + ], + [ + 77.547206659897498, + 13.056354964147401 + ], + [ + 77.547311837409893, + 13.056260134232399 + ], + [ + 77.547388957058004, + 13.0561906011733 + ], + [ + 77.547988541917803, + 13.055649999865601 + ], + [ + 77.548080993039306, + 13.0555666480307 + ], + [ + 77.548259696718404, + 13.055408111225001 + ], + [ + 77.548379219280207, + 13.0553020767618 + ], + [ + 77.548450070315496, + 13.0552392213046 + ], + [ + 77.549043877670798, + 13.054712422291299 + ], + [ + 77.549091245523798, + 13.054677478402599 + ], + [ + 77.549105807090896, + 13.0546667363644 + ], + [ + 77.549109043905602, + 13.0546643482318 + ], + [ + 77.5495497385986, + 13.054335887268101 + ], + [ + 77.549981294344704, + 13.0540210957589 + ], + [ + 77.550135138024601, + 13.053908876872301 + ], + [ + 77.550228447562503, + 13.0538393579161 + ], + [ + 77.550243505449103, + 13.0538281393299 + ], + [ + 77.5504807559131, + 13.053651380361099 + ], + [ + 77.550602124162495, + 13.0535609567891 + ], + [ + 77.550804968468398, + 13.053403109367 + ], + [ + 77.550984741865307, + 13.053242101461301 + ], + [ + 77.551010309514396, + 13.0532079695605 + ], + [ + 77.551158532204497, + 13.0530032292624 + ], + [ + 77.551166185143899, + 13.0529919734707 + ], + [ + 77.551172015188499, + 13.0529833999601 + ], + [ + 77.551591449174794, + 13.0523665376059 + ], + [ + 77.551697187272197, + 13.052216952313101 + ], + [ + 77.551729844538997, + 13.052170753407699 + ], + [ + 77.551912203786998, + 13.051912773191701 + ], + [ + 77.552019927152301, + 13.0517468274073 + ], + [ + 77.5521571404458, + 13.051535421332099 + ], + [ + 77.552212783520105, + 13.0514577657529 + ], + [ + 77.552227211446194, + 13.0514376298602 + ], + [ + 77.552452971310103, + 13.0511225581093 + ], + [ + 77.552839447919098, + 13.050731386419701 + ], + [ + 77.5530319356739, + 13.0505166897947 + ], + [ + 77.553075357756697, + 13.050468257797901 + ], + [ + 77.553077467826895, + 13.050465905147 + ], + [ + 77.553196483393293, + 13.050333729064899 + ], + [ + 77.553511907075901, + 13.049978267088701 + ], + [ + 77.553785854409497, + 13.0496220850754 + ], + [ + 77.553821083826904, + 13.0495754351013 + ], + [ + 77.553921493594203, + 13.049439343543501 + ], + [ + 77.553923690299101, + 13.0494363657448 + ], + [ + 77.553933555044694, + 13.0494229956658 + ], + [ + 77.554328617481005, + 13.048849870298801 + ], + [ + 77.554474369429002, + 13.0486384244301 + ], + [ + 77.554488557720404, + 13.0486179574592 + ], + [ + 77.554580079610005, + 13.048479070612 + ], + [ + 77.554586526408897, + 13.0484692875668 + ], + [ + 77.555048851745397, + 13.047767692700001 + ], + [ + 77.555100184931604, + 13.0476837389027 + ], + [ + 77.555307884493303, + 13.047344047050901 + ], + [ + 77.555347332676007, + 13.047279530120401 + ], + [ + 77.555883187336207, + 13.0464031385747 + ], + [ + 77.555932993085804, + 13.046320798005199 + ], + [ + 77.555970744022403, + 13.0462583865881 + ], + [ + 77.556215222675206, + 13.045854203803099 + ], + [ + 77.556301691688603, + 13.045711248643601 + ], + [ + 77.556430419263805, + 13.0454973621758 + ], + [ + 77.556435319933797, + 13.045489219701 + ], + [ + 77.556443713307402, + 13.0454752732528 + ], + [ + 77.5564664752835, + 13.045437454684899 + ], + [ + 77.556664754900396, + 13.0452288301592 + ], + [ + 77.556847679622095, + 13.0447030188376 + ], + [ + 77.556863019260405, + 13.0446825386203 + ], + [ + 77.556881638490694, + 13.044250363278101 + ], + [ + 77.556883735014196, + 13.0442017032734 + ], + [ + 77.556898357834001, + 13.0438623043297 + ], + [ + 77.556900162169697, + 13.043813725812701 + ], + [ + 77.556961699239096, + 13.043805212502299 + ], + [ + 77.556966452575196, + 13.0437633807555 + ], + [ + 77.557032390189704, + 13.043211265010999 + ], + [ + 77.557034955079104, + 13.043189789846799 + ], + [ + 77.557078294067793, + 13.0428268974154 + ], + [ + 77.557079689803899, + 13.0428152137005 + ], + [ + 77.557097432660797, + 13.0426666477659 + ], + [ + 77.557103269745994, + 13.042668748440301 + ], + [ + 77.557132024142703, + 13.042679094350801 + ], + [ + 77.557174878744405, + 13.0426945147599 + ], + [ + 77.557252161132993, + 13.042722322813701 + ], + [ + 77.557254305062798, + 13.0427230939569 + ], + [ + 77.557387622019604, + 13.042771066239901 + ], + [ + 77.557389994269002, + 13.042769665931401 + ], + [ + 77.557451215922896, + 13.0427335497176 + ], + [ + 77.557551970894494, + 13.042674112206701 + ], + [ + 77.557570013779895, + 13.042663468270799 + ], + [ + 77.558106053138999, + 13.042347246237499 + ], + [ + 77.558143263941304, + 13.042325421372 + ], + [ + 77.558790238797201, + 13.041849733366501 + ], + [ + 77.558816967844507, + 13.041830080972 + ], + [ + 77.559225308199103, + 13.0415298478444 + ], + [ + 77.559348198368497, + 13.041390555108199 + ], + [ + 77.559435374645702, + 13.0412917433059 + ], + [ + 77.559541702279802, + 13.0410454530242 + ], + [ + 77.559603547704, + 13.040902198788601 + ], + [ + 77.559607886729196, + 13.0408921474229 + ], + [ + 77.559645495253605, + 13.040805032237399 + ], + [ + 77.559647883916597, + 13.040799498453399 + ], + [ + 77.559714751387602, + 13.0406446113717 + ], + [ + 77.559715186991696, + 13.0406436015203 + ], + [ + 77.559730133720706, + 13.0406089797346 + ], + [ + 77.559797901236294, + 13.0404784381284 + ], + [ + 77.559805652984807, + 13.0404775718432 + ], + [ + 77.559921689855798, + 13.0404646006851 + ], + [ + 77.559935432588205, + 13.0404630644065 + ], + [ + 77.559964151410497, + 13.040459854068001 + ], + [ + 77.560012489052497, + 13.0404559880107 + ], + [ + 77.560109175946494, + 13.040449385070801 + ], + [ + 77.560114358713605, + 13.040449333805499 + ], + [ + 77.560115270936393, + 13.0404493302029 + ], + [ + 77.560264094707605, + 13.040448981962699 + ], + [ + 77.560386189266097, + 13.0404489034793 + ], + [ + 77.560388847123804, + 13.0404488455655 + ], + [ + 77.560411701917005, + 13.040448345725601 + ], + [ + 77.560466085239995, + 13.040447157238299 + ], + [ + 77.560480619163798, + 13.0404468408962 + ], + [ + 77.560482443096603, + 13.0404468734455 + ], + [ + 77.560641907236501, + 13.0404497624972 + ], + [ + 77.560642026207901, + 13.040449593278 + ], + [ + 77.560653972057395, + 13.0404326582269 + ], + [ + 77.560836039562702, + 13.040174547432899 + ], + [ + 77.560962690056897, + 13.0400016374729 + ], + [ + 77.560857872706507, + 13.039889743021201 + ], + [ + 77.560770517239803, + 13.039795744798001 + ], + [ + 77.560483032029893, + 13.039506096118901 + ], + [ + 77.560082667286096, + 13.0392164341427 + ], + [ + 77.559442193139404, + 13.0389314042843 + ], + [ + 77.559308472334294, + 13.038881600935801 + ], + [ + 77.559110238426499, + 13.038807770139799 + ], + [ + 77.55876577782, + 13.038679478054 + ], + [ + 77.558734646569803, + 13.038676397834401 + ], + [ + 77.557421688868402, + 13.038577570486 + ], + [ + 77.557297291518793, + 13.0385776701557 + ], + [ + 77.557302262467999, + 13.0385429347103 + ], + [ + 77.556296045072898, + 13.0386064239764 + ], + [ + 77.555450857364804, + 13.0386508170885 + ], + [ + 77.555333001215303, + 13.038657007390499 + ], + [ + 77.554523923472601, + 13.0386568150539 + ], + [ + 77.554150537619805, + 13.038656725850201 + ], + [ + 77.553944182597505, + 13.038670761623299 + ], + [ + 77.553415030693401, + 13.0387067509419 + ], + [ + 77.553144511233, + 13.038706751394701 + ], + [ + 77.553021383560306, + 13.03872197121 + ], + [ + 77.552687809501506, + 13.038763204401 + ], + [ + 77.552412242713402, + 13.0388305569594 + ], + [ + 77.552384482887604, + 13.0388373419062 + ], + [ + 77.552204036321399, + 13.0388846960665 + ], + [ + 77.551771305907295, + 13.039024082646799 + ], + [ + 77.551735150575894, + 13.0390357295892 + ], + [ + 77.551474020366896, + 13.0391344985317 + ], + [ + 77.551243742899302, + 13.039221597644399 + ], + [ + 77.551176640488507, + 13.039246978548601 + ], + [ + 77.551147011070199, + 13.03925818526 + ], + [ + 77.550744948784896, + 13.0394102598015 + ], + [ + 77.550435255656197, + 13.0395379635435 + ], + [ + 77.550422409268506, + 13.0395432606201 + ], + [ + 77.550420820908002, + 13.039543915919801 + ], + [ + 77.5502009461254, + 13.0390231660685 + ], + [ + 77.549896059735104, + 13.037577278256601 + ], + [ + 77.549895972239099, + 13.0375766530211 + ], + [ + 77.550183210352003, + 13.0375249154971 + ], + [ + 77.550195656068695, + 13.037602921991001 + ], + [ + 77.549977313397505, + 13.036882040673699 + ], + [ + 77.550036852073006, + 13.0368408215906 + ], + [ + 77.5500289637273, + 13.0368368978689 + ], + [ + 77.549699084586905, + 13.0363416126958 + ], + [ + 77.549418565827196, + 13.0360439193182 + ], + [ + 77.549308648272401, + 13.035916827145501 + ], + [ + 77.549233079953495, + 13.035789734972701 + ], + [ + 77.548990059109599, + 13.0354740082463 + ], + [ + 77.548369769158398, + 13.0348600156549 + ], + [ + 77.547595766376503, + 13.033897664563099 + ], + [ + 77.546865272626803, + 13.0332622036993 + ], + [ + 77.546948857076103, + 13.032896117156399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "127", + "group": "JALAHALLI", + "Corporatio": "North", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "2", + "ward_id": "29", + "ward_name": "29 - Jalahalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಜಾಲಹಳ್ಳಿ", + "dig_ward_n": "JALAHALLI", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "29" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.546454850736396, + 13.0446640468161 + ], + [ + 77.545068054213701, + 13.0452513907665 + ], + [ + 77.545029956601397, + 13.045102364504499 + ], + [ + 77.544920495474003, + 13.0451273458924 + ], + [ + 77.543994958304197, + 13.0434332758576 + ], + [ + 77.543090771267202, + 13.044422235248 + ], + [ + 77.541478588833101, + 13.046227888937199 + ], + [ + 77.541055454673696, + 13.045541203975199 + ], + [ + 77.540604529236703, + 13.0449030242319 + ], + [ + 77.540130616220395, + 13.0443118047822 + ], + [ + 77.539689083172505, + 13.0440215809524 + ], + [ + 77.538868644513897, + 13.0451859140013 + ], + [ + 77.537018035548897, + 13.048113793648801 + ], + [ + 77.536933427373199, + 13.0482476517289 + ], + [ + 77.536866862405404, + 13.048352963977701 + ], + [ + 77.536682503481003, + 13.048644637646399 + ], + [ + 77.536636933563202, + 13.0487167339962 + ], + [ + 77.536479475046207, + 13.0489658470766 + ], + [ + 77.536426044135794, + 13.0490503790232 + ], + [ + 77.533092047865097, + 13.047453570354699 + ], + [ + 77.531190097308794, + 13.0468978494551 + ], + [ + 77.529984064717993, + 13.046549890472299 + ], + [ + 77.530012779779696, + 13.0463860457086 + ], + [ + 77.531222659635006, + 13.0442511191922 + ], + [ + 77.5269166204816, + 13.045107380903 + ], + [ + 77.526372723430796, + 13.044563483852301 + ], + [ + 77.525546743127094, + 13.0441361361696 + ], + [ + 77.525313732998399, + 13.0437552113388 + ], + [ + 77.524838430608398, + 13.0440438251853 + ], + [ + 77.524178615765706, + 13.0445077200771 + ], + [ + 77.524113560382503, + 13.044553458904099 + ], + [ + 77.523981541786398, + 13.044646276915699 + ], + [ + 77.523908921221604, + 13.044697334174099 + ], + [ + 77.523597122019098, + 13.044917804947699 + ], + [ + 77.523362511223993, + 13.0450836962848 + ], + [ + 77.523279611107, + 13.0451423145643 + ], + [ + 77.523144824904094, + 13.0452376212146 + ], + [ + 77.523104363251406, + 13.0452658076095 + ], + [ + 77.522957092381901, + 13.045368399592601 + ], + [ + 77.522848244373904, + 13.045444225420001 + ], + [ + 77.522192160770601, + 13.045901264264501 + ], + [ + 77.52219228717, + 13.045901460893599 + ], + [ + 77.522198086456697, + 13.0459104725521 + ], + [ + 77.522411141491702, + 13.0462415189411 + ], + [ + 77.522519425440393, + 13.046414833198201 + ], + [ + 77.522606098432803, + 13.046553576078001 + ], + [ + 77.522716718258494, + 13.0467474630666 + ], + [ + 77.5228904206528, + 13.046990496317299 + ], + [ + 77.523110384409193, + 13.047437452833 + ], + [ + 77.523119507076004, + 13.0474283290994 + ], + [ + 77.523248268210295, + 13.0477760714447 + ], + [ + 77.523292424200093, + 13.047895320553801 + ], + [ + 77.523447976372395, + 13.0482969791871 + ], + [ + 77.523589286340396, + 13.0486005236212 + ], + [ + 77.523713024512105, + 13.0488184091944 + ], + [ + 77.523799194688706, + 13.048966641885499 + ], + [ + 77.523876832398898, + 13.0490686546768 + ], + [ + 77.523902679352901, + 13.049096784249601 + ], + [ + 77.523925170813101, + 13.0491212621881 + ], + [ + 77.5239740851476, + 13.049173864067001 + ], + [ + 77.524075139993002, + 13.049256449426201 + ], + [ + 77.524277512936905, + 13.049380636699301 + ], + [ + 77.524406652747302, + 13.049459884125699 + ], + [ + 77.524896627809198, + 13.0497272734008 + ], + [ + 77.525209345879205, + 13.0498947513335 + ], + [ + 77.525384171664498, + 13.0500387296652 + ], + [ + 77.5264537847208, + 13.0508380221134 + ], + [ + 77.526711009777898, + 13.0510421788091 + ], + [ + 77.526839271375806, + 13.051138049082301 + ], + [ + 77.526917374081407, + 13.051172295577301 + ], + [ + 77.527101729905993, + 13.051233737372 + ], + [ + 77.5275353580451, + 13.0513401753187 + ], + [ + 77.527946652534496, + 13.0514592535249 + ], + [ + 77.528281652451795, + 13.051551972711099 + ], + [ + 77.528354549315495, + 13.051584010925099 + ], + [ + 77.528461665688994, + 13.0516394307048 + ], + [ + 77.528805001278997, + 13.051872105796001 + ], + [ + 77.528880431667403, + 13.051926705857399 + ], + [ + 77.529062632619997, + 13.0520593155436 + ], + [ + 77.529299692647299, + 13.052262536917199 + ], + [ + 77.529760787641493, + 13.052634096706001 + ], + [ + 77.529954542121104, + 13.0527699805775 + ], + [ + 77.529970566348396, + 13.052781345773599 + ], + [ + 77.530018938854795, + 13.0528156534471 + ], + [ + 77.530424831536195, + 13.053082723270601 + ], + [ + 77.530531522475201, + 13.053152827557399 + ], + [ + 77.530622052587006, + 13.0532761688522 + ], + [ + 77.5306869094794, + 13.0533670105422 + ], + [ + 77.530741549586907, + 13.053472633597 + ], + [ + 77.530792066412104, + 13.0535692622806 + ], + [ + 77.531158032524701, + 13.054270387137899 + ], + [ + 77.531283531973898, + 13.0544340419058 + ], + [ + 77.531416312156594, + 13.0545208303352 + ], + [ + 77.531581775158202, + 13.054536706141 + ], + [ + 77.531763369718007, + 13.054553564306801 + ], + [ + 77.532256104387102, + 13.054637956775901 + ], + [ + 77.532926383590507, + 13.054652131864801 + ], + [ + 77.533422750673495, + 13.054837721104599 + ], + [ + 77.533511509624304, + 13.054843627420301 + ], + [ + 77.533563674042199, + 13.054846644320801 + ], + [ + 77.534079170662494, + 13.0548764619066 + ], + [ + 77.534550942969702, + 13.0548820017223 + ], + [ + 77.534686156004994, + 13.0548806762362 + ], + [ + 77.534841200525094, + 13.054879156256099 + ], + [ + 77.535304379948599, + 13.0548328295377 + ], + [ + 77.535374571533694, + 13.054825365252199 + ], + [ + 77.536508612261201, + 13.0546527478296 + ], + [ + 77.5375391171724, + 13.0544947480115 + ], + [ + 77.537539262587899, + 13.054492292769799 + ], + [ + 77.537539794610694, + 13.0544832962516 + ], + [ + 77.537670411082601, + 13.0514669225054 + ], + [ + 77.537239685157303, + 13.0514871919607 + ], + [ + 77.5372295504297, + 13.051309834226799 + ], + [ + 77.537694058780502, + 13.0495683501917 + ], + [ + 77.538729412986498, + 13.049848229516099 + ], + [ + 77.538732487498905, + 13.049849072086699 + ], + [ + 77.538807075098703, + 13.049869507271801 + ], + [ + 77.539578438482195, + 13.050080837092199 + ], + [ + 77.539662449329796, + 13.0501038537372 + ], + [ + 77.539810084256501, + 13.050144301339801 + ], + [ + 77.539815819281202, + 13.050145872164 + ], + [ + 77.539871113568594, + 13.0501599526674 + ], + [ + 77.541735281432295, + 13.050689082158 + ], + [ + 77.541937554359095, + 13.0507021160214 + ], + [ + 77.541961765029995, + 13.050704135824899 + ], + [ + 77.542442569461301, + 13.0507491012036 + ], + [ + 77.542571235400104, + 13.050753331204101 + ], + [ + 77.542724261939199, + 13.050706817931401 + ], + [ + 77.542800272396605, + 13.0506181390645 + ], + [ + 77.542840811307201, + 13.0504804756805 + ], + [ + 77.542690479513595, + 13.049249106270601 + ], + [ + 77.542923578249699, + 13.049250795391901 + ], + [ + 77.544511352248705, + 13.049225458572799 + ], + [ + 77.544653238435899, + 13.049110598325999 + ], + [ + 77.544808637593206, + 13.049162961085599 + ], + [ + 77.545048961247801, + 13.049137890799299 + ], + [ + 77.545229374501105, + 13.0490954598139 + ], + [ + 77.546058988476204, + 13.049063579238201 + ], + [ + 77.546332446746803, + 13.049053265798999 + ], + [ + 77.546585776684793, + 13.049043711291199 + ], + [ + 77.548218924567095, + 13.048964386184799 + ], + [ + 77.548858169464907, + 13.0489238485894 + ], + [ + 77.548894559411707, + 13.0489215412415 + ], + [ + 77.548912785228893, + 13.0489203850031 + ], + [ + 77.549539455290102, + 13.048897166110899 + ], + [ + 77.550152970594198, + 13.0488540240463 + ], + [ + 77.550154345420594, + 13.0488539273739 + ], + [ + 77.549987511467293, + 13.0483789208159 + ], + [ + 77.549977521776697, + 13.0483504772227 + ], + [ + 77.549843063555102, + 13.048002534769299 + ], + [ + 77.5498287060243, + 13.0479476383278 + ], + [ + 77.552302424132293, + 13.0454029771262 + ], + [ + 77.552121078767101, + 13.044886502955899 + ], + [ + 77.551964599877195, + 13.0442594420227 + ], + [ + 77.550898731649895, + 13.0444088169856 + ], + [ + 77.550855222617798, + 13.044135168073099 + ], + [ + 77.550819375652296, + 13.0436834516677 + ], + [ + 77.550831178152706, + 13.043208883678901 + ], + [ + 77.5509113263697, + 13.042912335275799 + ], + [ + 77.550596991793697, + 13.0427861364686 + ], + [ + 77.550251980146101, + 13.042670957802301 + ], + [ + 77.550217887893893, + 13.0426600005392 + ], + [ + 77.550183219771299, + 13.042649048946201 + ], + [ + 77.549914512959504, + 13.042561350898101 + ], + [ + 77.549880996602099, + 13.042550387910699 + ], + [ + 77.549637133481397, + 13.042470350010801 + ], + [ + 77.549367839513707, + 13.0423815277854 + ], + [ + 77.549017657440103, + 13.0422675275275 + ], + [ + 77.548961601130301, + 13.0422488811477 + ], + [ + 77.548905544826894, + 13.042230234754101 + ], + [ + 77.548872615978794, + 13.042220395157999 + ], + [ + 77.548529356278607, + 13.042107455302199 + ], + [ + 77.548339246556793, + 13.0420460851921 + ], + [ + 77.547711099331394, + 13.0418399566041 + ], + [ + 77.547232266074602, + 13.0416835910871 + ], + [ + 77.547217605024102, + 13.0416788033955 + ], + [ + 77.547340363886207, + 13.042418432991701 + ], + [ + 77.547343041832804, + 13.042435269727299 + ], + [ + 77.547440537953804, + 13.043207895536501 + ], + [ + 77.547487692833599, + 13.0435815814819 + ], + [ + 77.545915856589303, + 13.043992560861099 + ], + [ + 77.546203007206202, + 13.044463825696999 + ], + [ + 77.546388810546503, + 13.044561794731001 + ], + [ + 77.546454850736396, + 13.0446640468161 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "128", + "group": "YESHWANTHPURA", + "Corporatio": "North", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "2", + "ward_id": "33", + "ward_name": "33 - Yeshwanthpura", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಯಶವಂತಪುರ", + "dig_ward_n": "YESHWANTHPURA", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "33" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.556093886828805, + 13.0211315339753 + ], + [ + 77.556085997680398, + 13.021116795998701 + ], + [ + 77.556050950383494, + 13.0210685808593 + ], + [ + 77.555836391522405, + 13.020603839192701 + ], + [ + 77.555832445013706, + 13.020595291657299 + ], + [ + 77.555578741836399, + 13.0200442561516 + ], + [ + 77.555576231310297, + 13.020038804149101 + ], + [ + 77.555544419175504, + 13.019969099896599 + ], + [ + 77.555486104702297, + 13.019842061551801 + ], + [ + 77.555374856132303, + 13.0198318651272 + ], + [ + 77.555173146315596, + 13.019816913818101 + ], + [ + 77.554935770531998, + 13.0198057018721 + ], + [ + 77.554638625441996, + 13.019806372003201 + ], + [ + 77.554373621915502, + 13.0197965611488 + ], + [ + 77.554342148698694, + 13.019816069782699 + ], + [ + 77.553888280801601, + 13.019190380200399 + ], + [ + 77.5536196330916, + 13.0197802746675 + ], + [ + 77.553369713188005, + 13.020255016797099 + ], + [ + 77.553355429341195, + 13.0202821501312 + ], + [ + 77.553341146403895, + 13.0203092825527 + ], + [ + 77.552890206894304, + 13.0209811543945 + ], + [ + 77.552766513745496, + 13.021187855339599 + ], + [ + 77.552094145687207, + 13.022311432307699 + ], + [ + 77.552006700235395, + 13.022470233417501 + ], + [ + 77.550884252881701, + 13.024508587134299 + ], + [ + 77.5507737299762, + 13.024710130268099 + ], + [ + 77.551190158988206, + 13.024952205075 + ], + [ + 77.551302026224903, + 13.0250157253257 + ], + [ + 77.551388787062294, + 13.0250649895099 + ], + [ + 77.551973833452294, + 13.0250592279298 + ], + [ + 77.552355103771305, + 13.0250866029135 + ], + [ + 77.552500815081302, + 13.0250970642563 + ], + [ + 77.553548698981501, + 13.0250139387059 + ], + [ + 77.553569702107595, + 13.024732684177801 + ], + [ + 77.5540265484439, + 13.0247628017931 + ], + [ + 77.554000953620999, + 13.024941578078 + ], + [ + 77.553982683420699, + 13.0250291749123 + ], + [ + 77.553972643029994, + 13.0250780967263 + ], + [ + 77.553956904520206, + 13.025154783749899 + ], + [ + 77.553941332763301, + 13.025235513006299 + ], + [ + 77.553921148412499, + 13.0253401525611 + ], + [ + 77.553907143635598, + 13.025412759648001 + ], + [ + 77.553904989900104, + 13.0254274620629 + ], + [ + 77.553875001923601, + 13.0256479754394 + ], + [ + 77.553862822032798, + 13.0257359070568 + ], + [ + 77.553861060721104, + 13.0257486225145 + ], + [ + 77.553858985340895, + 13.025764137269199 + ], + [ + 77.553856971517007, + 13.0257791852331 + ], + [ + 77.553851998275306, + 13.025816360037201 + ], + [ + 77.553846083629097, + 13.025860573020999 + ], + [ + 77.553819306568599, + 13.026057339894299 + ], + [ + 77.553797510594507, + 13.026192355130201 + ], + [ + 77.553787899665707, + 13.026251892859101 + ], + [ + 77.553785755025203, + 13.0262643374445 + ], + [ + 77.553718314716704, + 13.026654616500601 + ], + [ + 77.553717830445095, + 13.026767320687799 + ], + [ + 77.553712810029594, + 13.026783180683299 + ], + [ + 77.553653644067396, + 13.0270307806509 + ], + [ + 77.553644761662696, + 13.0271094310762 + ], + [ + 77.553642253636696, + 13.0271316383939 + ], + [ + 77.553630135993401, + 13.027211430006799 + ], + [ + 77.553632386540698, + 13.0272113807191 + ], + [ + 77.554456118758196, + 13.0271883156146 + ], + [ + 77.554430625121398, + 13.0278079120065 + ], + [ + 77.554780426230806, + 13.027790590043701 + ], + [ + 77.554779373631305, + 13.0271356844935 + ], + [ + 77.554779274725504, + 13.027131611781501 + ], + [ + 77.554790303372101, + 13.027130630282899 + ], + [ + 77.5556276236766, + 13.027033635633 + ], + [ + 77.555599977559496, + 13.026788872118599 + ], + [ + 77.556081815278006, + 13.026742551097 + ], + [ + 77.556608931616097, + 13.0267077755939 + ], + [ + 77.556717328122502, + 13.0261498166776 + ], + [ + 77.557056739108106, + 13.026249257282799 + ], + [ + 77.557386125229698, + 13.024926075106601 + ], + [ + 77.557506483794796, + 13.0249732003132 + ], + [ + 77.557492158611097, + 13.0249268128571 + ], + [ + 77.557480332491295, + 13.024888519182101 + ], + [ + 77.5573552236079, + 13.0244820697598 + ], + [ + 77.557317764076103, + 13.024367248895301 + ], + [ + 77.557221466261197, + 13.0240745762255 + ], + [ + 77.557221151362597, + 13.0240736108288 + ], + [ + 77.557113845548102, + 13.023744747666401 + ], + [ + 77.557103507906305, + 13.023713210662899 + ], + [ + 77.557017536750493, + 13.0234509456137 + ], + [ + 77.556931364936503, + 13.0231909230501 + ], + [ + 77.556926043443696, + 13.0231774237207 + ], + [ + 77.556905955484694, + 13.023127931859101 + ], + [ + 77.556765154629105, + 13.0227634214492 + ], + [ + 77.556496906100193, + 13.022100898323799 + ], + [ + 77.556492935310999, + 13.022088552917401 + ], + [ + 77.556488578103199, + 13.0220750061124 + ], + [ + 77.556434776376094, + 13.0219388890917 + ], + [ + 77.556387861407998, + 13.0218004454773 + ], + [ + 77.5562938613201, + 13.021563086082301 + ], + [ + 77.556185222664794, + 13.021302155267101 + ], + [ + 77.556098938967807, + 13.021140972248601 + ], + [ + 77.556093886828805, + 13.0211315339753 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "129", + "group": "Bandi Reddy circle", + "Corporatio": "West", + "ac_no": "165", + "ac": "Rajajinagar", + "corporat_1": "5", + "ward_id": "38", + "ward_name": "38 - Bandi Reddy Circle Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜಾಜಿನಗರ", + "ward_name_": "ಬಂಡಿ ರೆಡ್ಡಿ ವೃತ್ತ ವಾರ್ಡ್", + "dig_ward_n": "Bandi Reddy circle", + "Assembly": "165 - Rajajinagar", + "Slno": "38" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.561037625941594, + 12.9902986890785 + ], + [ + 77.559907813070694, + 12.9899244017746 + ], + [ + 77.559526659388993, + 12.9909064516472 + ], + [ + 77.559414734098297, + 12.991079431743101 + ], + [ + 77.559361046667803, + 12.9912306938936 + ], + [ + 77.559295059199798, + 12.9914402727461 + ], + [ + 77.559207702703006, + 12.991713615729299 + ], + [ + 77.559002923369306, + 12.991669978225501 + ], + [ + 77.558842936136799, + 12.991598361145 + ], + [ + 77.558698007771397, + 12.991517899351299 + ], + [ + 77.558611706574297, + 12.991461499273001 + ], + [ + 77.558462285445103, + 12.991375284082199 + ], + [ + 77.557912098923794, + 12.991021787397599 + ], + [ + 77.557141508393897, + 12.992045743961899 + ], + [ + 77.557092695827095, + 12.9921105823503 + ], + [ + 77.557076540405205, + 12.992132042227899 + ], + [ + 77.557058934854894, + 12.9921559313242 + ], + [ + 77.556906658605499, + 12.992362676213901 + ], + [ + 77.556903617291795, + 12.992366805143 + ], + [ + 77.557167509089197, + 12.992496531013 + ], + [ + 77.557520462255098, + 12.992589999034699 + ], + [ + 77.5580800186343, + 12.992657559636701 + ], + [ + 77.558172163885104, + 12.9926686851325 + ], + [ + 77.558200432571297, + 12.9926723294839 + ], + [ + 77.559124038953101, + 12.9927765452509 + ], + [ + 77.558978297997101, + 12.9934316469724 + ], + [ + 77.558869788315704, + 12.9940389747574 + ], + [ + 77.558835912089407, + 12.9944207735037 + ], + [ + 77.558806086857203, + 12.9948291258896 + ], + [ + 77.558796097054, + 12.995068176743899 + ], + [ + 77.558791801214696, + 12.9952137833075 + ], + [ + 77.558752981852393, + 12.9953301311924 + ], + [ + 77.5589906308454, + 12.9953107867263 + ], + [ + 77.559207255744099, + 12.9952470175855 + ], + [ + 77.5591504878102, + 12.994985733880901 + ], + [ + 77.559502166040801, + 12.9948591717543 + ], + [ + 77.559817791054201, + 12.9947544217003 + ], + [ + 77.559845353447997, + 12.994746843740099 + ], + [ + 77.560213987017406, + 12.9946454889654 + ], + [ + 77.560382023888806, + 12.994579460954499 + ], + [ + 77.560384216368604, + 12.9944563435687 + ], + [ + 77.560328393246394, + 12.994290884088899 + ], + [ + 77.560299365097606, + 12.9942378962534 + ], + [ + 77.560214554675198, + 12.9940830824497 + ], + [ + 77.560125375784196, + 12.9939778056614 + ], + [ + 77.560119341368903, + 12.993950767816299 + ], + [ + 77.560115712196804, + 12.9939338574828 + ], + [ + 77.560119742486094, + 12.9939338177493 + ], + [ + 77.560231381184906, + 12.9939270705138 + ], + [ + 77.560362008221404, + 12.993919006694499 + ], + [ + 77.5606014066867, + 12.9939053530097 + ], + [ + 77.560604161627296, + 12.993905197553801 + ], + [ + 77.560844259614299, + 12.993891665042 + ], + [ + 77.561345499058305, + 12.9938630059054 + ], + [ + 77.561542375775701, + 12.993849555752499 + ], + [ + 77.562046685022196, + 12.993815102775599 + ], + [ + 77.562350164189894, + 12.9937943700345 + ], + [ + 77.563384960448602, + 12.993688165485199 + ], + [ + 77.563437252795893, + 12.99368254388 + ], + [ + 77.563461010836505, + 12.9936799901906 + ], + [ + 77.563379703910002, + 12.993188909439301 + ], + [ + 77.563378230598602, + 12.993189163397201 + ], + [ + 77.563263799988704, + 12.992832731323199 + ], + [ + 77.563256461244606, + 12.992809871398499 + ], + [ + 77.563255124007497, + 12.9928100083701 + ], + [ + 77.5631737687536, + 12.992265915038001 + ], + [ + 77.563087864234205, + 12.991828623423499 + ], + [ + 77.563405402206001, + 12.9918062853728 + ], + [ + 77.563753456393997, + 12.991769152021799 + ], + [ + 77.563835562001699, + 12.9915607194611 + ], + [ + 77.563891444518106, + 12.991533354492701 + ], + [ + 77.563921026044298, + 12.991463492780399 + ], + [ + 77.564190574593994, + 12.991445613358399 + ], + [ + 77.564485110761893, + 12.991425159372801 + ], + [ + 77.564682262991298, + 12.991402286644201 + ], + [ + 77.564858859788501, + 12.991369153768501 + ], + [ + 77.565181959290996, + 12.9913322710074 + ], + [ + 77.565180514815196, + 12.991002388120201 + ], + [ + 77.563312906974005, + 12.991072124539301 + ], + [ + 77.562966712058795, + 12.9909200389119 + ], + [ + 77.562964710932107, + 12.9906999149773 + ], + [ + 77.563605584854301, + 12.990697588290001 + ], + [ + 77.563869247603705, + 12.990675287651801 + ], + [ + 77.563870423363596, + 12.9904433461415 + ], + [ + 77.563844206106893, + 12.990166614717699 + ], + [ + 77.563015351417704, + 12.9901894789897 + ], + [ + 77.563005734029005, + 12.9899925166968 + ], + [ + 77.5627796067144, + 12.9899855127534 + ], + [ + 77.562767599954398, + 12.989761386565499 + ], + [ + 77.562561023678995, + 12.9897779156853 + ], + [ + 77.562159257444407, + 12.989789402338999 + ], + [ + 77.562150252374295, + 12.9890920096919 + ], + [ + 77.562188246430594, + 12.9890926266901 + ], + [ + 77.563831198783504, + 12.9890019589914 + ], + [ + 77.564187399332098, + 12.988955933077801 + ], + [ + 77.564065862103703, + 12.988607775750401 + ], + [ + 77.563989601027899, + 12.988363116354799 + ], + [ + 77.563988049262093, + 12.9883575185155 + ], + [ + 77.563961498199106, + 12.988261756134801 + ], + [ + 77.563956081041695, + 12.9881827565373 + ], + [ + 77.563934590736594, + 12.988184406931699 + ], + [ + 77.5637029289596, + 12.988202195543201 + ], + [ + 77.563679323586697, + 12.9882024284917 + ], + [ + 77.5636655057979, + 12.9882025639474 + ], + [ + 77.563537104002506, + 12.988202701713201 + ], + [ + 77.5632309256752, + 12.988217016028701 + ], + [ + 77.563172234908095, + 12.9882209893814 + ], + [ + 77.562899495718, + 12.988239484329499 + ], + [ + 77.562650926053095, + 12.9882566175853 + ], + [ + 77.562344148502007, + 12.988268678148399 + ], + [ + 77.562292930664498, + 12.9882714419564 + ], + [ + 77.562280851672298, + 12.988272690410501 + ], + [ + 77.562132943974802, + 12.988279795781899 + ], + [ + 77.5621224655753, + 12.9882801782923 + ], + [ + 77.561963146485297, + 12.988285987626901 + ], + [ + 77.561953947127193, + 12.9882872085711 + ], + [ + 77.561918837536396, + 12.9882886841312 + ], + [ + 77.561657415993807, + 12.9882878741008 + ], + [ + 77.561626325929694, + 12.988288180667899 + ], + [ + 77.561450067832297, + 12.9882820124774 + ], + [ + 77.561432755536202, + 12.9883905977557 + ], + [ + 77.561420347052504, + 12.988472031038199 + ], + [ + 77.561316639115603, + 12.9886021998839 + ], + [ + 77.561192518898295, + 12.9887237484193 + ], + [ + 77.561150450207506, + 12.989216797246099 + ], + [ + 77.561125675515399, + 12.9895742812212 + ], + [ + 77.561053634955002, + 12.9899144727564 + ], + [ + 77.561105664248601, + 12.9900045234569 + ], + [ + 77.561037625941594, + 12.9902986890785 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "131", + "group": "Chowadeswari", + "Corporatio": "North", + "ac_no": "150", + "ac": "Yelahanka", + "corporat_1": "2", + "ward_id": "1", + "ward_name": "1 - Chowadeswari Ward", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಯಲಹಂಕ", + "ward_name_": "ಚೌಡೇಶ್ವರಿ ವಾರ್ಡ್", + "dig_ward_n": "Chowadeswari Ward", + "Assembly": "150 - Yelahanka", + "Slno": "1" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.590222436131199, + 13.1049251563753 + ], + [ + 77.589967611333094, + 13.1047931568243 + ], + [ + 77.589580544233797, + 13.104739082762601 + ], + [ + 77.587785362792005, + 13.1042330947095 + ], + [ + 77.587839752754704, + 13.104110001636 + ], + [ + 77.589176979729501, + 13.104218348887001 + ], + [ + 77.589686405343102, + 13.1043555194309 + ], + [ + 77.5902984303533, + 13.104621732999201 + ], + [ + 77.590488573812706, + 13.1046853930556 + ], + [ + 77.5912016134059, + 13.104477052370401 + ], + [ + 77.592464881006606, + 13.1014850236038 + ], + [ + 77.592630816898605, + 13.1011850746123 + ], + [ + 77.591827899439394, + 13.1003541781762 + ], + [ + 77.591060211073994, + 13.099526931619099 + ], + [ + 77.591669951182396, + 13.0990503037878 + ], + [ + 77.592747731233302, + 13.098069853144001 + ], + [ + 77.592425192687003, + 13.0971149821331 + ], + [ + 77.592408631105002, + 13.0971287001256 + ], + [ + 77.592318229665693, + 13.097188541219699 + ], + [ + 77.591524519922004, + 13.09791002223 + ], + [ + 77.591184811466803, + 13.0982002763614 + ], + [ + 77.590630493187604, + 13.098680149027899 + ], + [ + 77.590480896443495, + 13.098807003519701 + ], + [ + 77.590284470359194, + 13.098972724369901 + ], + [ + 77.590157124087099, + 13.099079027933 + ], + [ + 77.5896614080322, + 13.0994894236484 + ], + [ + 77.589630564552806, + 13.0995145779001 + ], + [ + 77.589241859766801, + 13.0998572697981 + ], + [ + 77.589000271301103, + 13.100056193048699 + ], + [ + 77.588602771452798, + 13.1003842918701 + ], + [ + 77.588340705981494, + 13.100608264719799 + ], + [ + 77.588248198282997, + 13.100685985481199 + ], + [ + 77.587855162664297, + 13.101000487176 + ], + [ + 77.587472987246201, + 13.1013069743667 + ], + [ + 77.587343886912194, + 13.101411035977 + ], + [ + 77.587063387379601, + 13.101635192987199 + ], + [ + 77.586514893439897, + 13.1020675707598 + ], + [ + 77.586446328607806, + 13.1021213356304 + ], + [ + 77.586131985246993, + 13.1023593830924 + ], + [ + 77.585854198307104, + 13.102567701852299 + ], + [ + 77.585491013870595, + 13.102872867051399 + ], + [ + 77.585317984606604, + 13.1030180232042 + ], + [ + 77.584654476737995, + 13.1035802913352 + ], + [ + 77.584648763914302, + 13.1035848658103 + ], + [ + 77.584568831517203, + 13.103653425148501 + ], + [ + 77.584522576474399, + 13.1036922850623 + ], + [ + 77.583997055811906, + 13.104174117405 + ], + [ + 77.583916112480296, + 13.104256238251899 + ], + [ + 77.583857046772295, + 13.1043156044183 + ], + [ + 77.583423562920601, + 13.1047512906578 + ], + [ + 77.583394493254502, + 13.1047809437647 + ], + [ + 77.582958388515394, + 13.1052200942465 + ], + [ + 77.582847892967195, + 13.105340907132801 + ], + [ + 77.582498209192494, + 13.1057261139032 + ], + [ + 77.582450366795598, + 13.1057785409996 + ], + [ + 77.582354729068101, + 13.105887911878799 + ], + [ + 77.582137851206994, + 13.1061374011292 + ], + [ + 77.582083755060907, + 13.106197795924301 + ], + [ + 77.5820232279262, + 13.106265767233401 + ], + [ + 77.581711370272899, + 13.1066159790971 + ], + [ + 77.58164941007, + 13.1066956506507 + ], + [ + 77.581287910203997, + 13.1071634133208 + ], + [ + 77.581071091242407, + 13.1075292187867 + ], + [ + 77.581004100707602, + 13.107678956927799 + ], + [ + 77.580901188658601, + 13.107974734005699 + ], + [ + 77.580872830552394, + 13.1080640156052 + ], + [ + 77.580736962252701, + 13.108493769421999 + ], + [ + 77.580494524555704, + 13.109249265234901 + ], + [ + 77.580459457800501, + 13.109360802435701 + ], + [ + 77.580433956408996, + 13.109441916358399 + ], + [ + 77.580320002379807, + 13.109804368314499 + ], + [ + 77.5801856456971, + 13.110233717232999 + ], + [ + 77.580023115075505, + 13.1107327838026 + ], + [ + 77.580011486580005, + 13.110768489362 + ], + [ + 77.579875043923806, + 13.1111815494432 + ], + [ + 77.579717279574893, + 13.1116419906253 + ], + [ + 77.579690838023296, + 13.111719160528001 + ], + [ + 77.579646568084897, + 13.1118483635658 + ], + [ + 77.579543244216595, + 13.112270625830799 + ], + [ + 77.579500770277903, + 13.1128932931219 + ], + [ + 77.579479278623893, + 13.113428794465801 + ], + [ + 77.579471134777705, + 13.113586977413 + ], + [ + 77.579462436514603, + 13.1136367535538 + ], + [ + 77.579461919652601, + 13.113638808628901 + ], + [ + 77.579444562148396, + 13.113707809012899 + ], + [ + 77.579433672578702, + 13.1137511005586 + ], + [ + 77.579422868715199, + 13.113789352781099 + ], + [ + 77.579471603708996, + 13.113820649233199 + ], + [ + 77.579304964274698, + 13.1142159495163 + ], + [ + 77.579228393672196, + 13.114385830868001 + ], + [ + 77.578904515808802, + 13.1151043892795 + ], + [ + 77.578265908314606, + 13.1164511620822 + ], + [ + 77.576157427195199, + 13.116262491736 + ], + [ + 77.575411169990105, + 13.116199568460599 + ], + [ + 77.575126728620702, + 13.116171566460499 + ], + [ + 77.574892396093603, + 13.116170092671 + ], + [ + 77.574876146026696, + 13.116513057597601 + ], + [ + 77.574874378975494, + 13.1165715583344 + ], + [ + 77.574873236830399, + 13.116588648883001 + ], + [ + 77.574818213172193, + 13.1166913098635 + ], + [ + 77.574754671105893, + 13.117040681586801 + ], + [ + 77.574747967695799, + 13.117171393168601 + ], + [ + 77.574746637573895, + 13.1171973279497 + ], + [ + 77.574739210897704, + 13.1173421440308 + ], + [ + 77.574729370113502, + 13.1175340507292 + ], + [ + 77.574706903214803, + 13.118100501431901 + ], + [ + 77.574708711883105, + 13.1183564321635 + ], + [ + 77.574704266305005, + 13.1184655813628 + ], + [ + 77.573943732004196, + 13.1184805700419 + ], + [ + 77.573619079424702, + 13.1184869676516 + ], + [ + 77.573439338355499, + 13.118489768545199 + ], + [ + 77.569261046495498, + 13.118497206257899 + ], + [ + 77.569063558705295, + 13.1184441498366 + ], + [ + 77.568191075333999, + 13.118591528784499 + ], + [ + 77.568254175109502, + 13.1196755753849 + ], + [ + 77.565336466434701, + 13.120452862734 + ], + [ + 77.565027257360001, + 13.119171853709901 + ], + [ + 77.564796086765895, + 13.118105818614 + ], + [ + 77.564173489659794, + 13.1157622070043 + ], + [ + 77.563967564398595, + 13.115830755496701 + ], + [ + 77.563612147766406, + 13.1159792100368 + ], + [ + 77.563174557736801, + 13.116147114283701 + ], + [ + 77.563124171328496, + 13.116176598966 + ], + [ + 77.562970685544698, + 13.1162443739859 + ], + [ + 77.562950041811504, + 13.1162536139819 + ], + [ + 77.562707957405095, + 13.1163691322721 + ], + [ + 77.562587024280404, + 13.1164189862047 + ], + [ + 77.562521723624897, + 13.1164264534113 + ], + [ + 77.562532765087596, + 13.116461733228601 + ], + [ + 77.562553631803596, + 13.1165481064477 + ], + [ + 77.562844595781399, + 13.1179395886563 + ], + [ + 77.562888855370403, + 13.1181683469728 + ], + [ + 77.562969564875104, + 13.1188062972465 + ], + [ + 77.563063228070106, + 13.1194330719545 + ], + [ + 77.563192760191399, + 13.1205024555293 + ], + [ + 77.563221663200295, + 13.1205834315821 + ], + [ + 77.563897599678498, + 13.122161290812899 + ], + [ + 77.564291818507598, + 13.1230561942028 + ], + [ + 77.564647071423394, + 13.1238540058258 + ], + [ + 77.5650234024383, + 13.124700812498601 + ], + [ + 77.565150440753499, + 13.1249871855681 + ], + [ + 77.565365795673699, + 13.1254979274012 + ], + [ + 77.565556506057305, + 13.1259628954215 + ], + [ + 77.566606805784602, + 13.1257208411288 + ], + [ + 77.568123238594396, + 13.1253714180425 + ], + [ + 77.569595398764406, + 13.1250289111298 + ], + [ + 77.569663378848205, + 13.125022397645401 + ], + [ + 77.569958698653394, + 13.127390251393299 + ], + [ + 77.5707970040079, + 13.130576610836201 + ], + [ + 77.570861077321297, + 13.1309948164182 + ], + [ + 77.5708679121975, + 13.131039425047099 + ], + [ + 77.571316585027603, + 13.133295799100701 + ], + [ + 77.571333620508, + 13.1339359421428 + ], + [ + 77.571576442836403, + 13.134625729313299 + ], + [ + 77.571766472157094, + 13.1352671954114 + ], + [ + 77.571911271546796, + 13.1359732433181 + ], + [ + 77.572017588107997, + 13.1359717315203 + ], + [ + 77.572227104248398, + 13.135897360015299 + ], + [ + 77.572352450126999, + 13.136114333438 + ], + [ + 77.572384417565402, + 13.136251788093601 + ], + [ + 77.572567540381698, + 13.136243179762401 + ], + [ + 77.572652870786399, + 13.136249101601001 + ], + [ + 77.572717488389202, + 13.136284893332601 + ], + [ + 77.572733207718599, + 13.136293600558799 + ], + [ + 77.572808814566898, + 13.136285174565 + ], + [ + 77.572892357379601, + 13.1362758632528 + ], + [ + 77.572982637099898, + 13.136237559070301 + ], + [ + 77.573088286479503, + 13.1361905102157 + ], + [ + 77.573351365999301, + 13.1360733532506 + ], + [ + 77.573395994475902, + 13.1360534789452 + ], + [ + 77.573417667333501, + 13.1360438273733 + ], + [ + 77.573442291015397, + 13.1361266087189 + ], + [ + 77.573444343856494, + 13.1361488913654 + ], + [ + 77.573459323766798, + 13.1363114796643 + ], + [ + 77.573502283665405, + 13.136489085773601 + ], + [ + 77.573597331321196, + 13.1368820299141 + ], + [ + 77.573611293872403, + 13.136939391290101 + ], + [ + 77.573671332052101, + 13.137121617270401 + ], + [ + 77.5737003209086, + 13.137209268648901 + ], + [ + 77.573750070175905, + 13.137359695377899 + ], + [ + 77.573771775705794, + 13.1374253251689 + ], + [ + 77.573835995783199, + 13.137619505950999 + ], + [ + 77.573842381616501, + 13.137638813537601 + ], + [ + 77.573867193053502, + 13.137719671287501 + ], + [ + 77.573872401761406, + 13.137778948844399 + ], + [ + 77.573887579267407, + 13.1379493814205 + ], + [ + 77.573923914913294, + 13.138352723579599 + ], + [ + 77.573928482185295, + 13.1384034348239 + ], + [ + 77.573934896691597, + 13.1384746464639 + ], + [ + 77.573946286022306, + 13.1386010860695 + ], + [ + 77.573950488003405, + 13.138647881853201 + ], + [ + 77.573962902187802, + 13.138845997225401 + ], + [ + 77.573971924718293, + 13.138989980003 + ], + [ + 77.573977490378695, + 13.1390787945992 + ], + [ + 77.573989916614394, + 13.1393678752436 + ], + [ + 77.573990599267006, + 13.139383747240201 + ], + [ + 77.573989320642397, + 13.1395242185186 + ], + [ + 77.573988124582897, + 13.1396562517579 + ], + [ + 77.5739879264233, + 13.139678090752099 + ], + [ + 77.573982539351405, + 13.1402437856711 + ], + [ + 77.573978178400097, + 13.140701714495201 + ], + [ + 77.573978326204696, + 13.140703777371399 + ], + [ + 77.573997649901301, + 13.1409722428903 + ], + [ + 77.574001746470998, + 13.1410291600293 + ], + [ + 77.573964603897494, + 13.141066573938801 + ], + [ + 77.573890496601294, + 13.1411412219887 + ], + [ + 77.574002751978099, + 13.141174103923699 + ], + [ + 77.574028611921904, + 13.1411821023204 + ], + [ + 77.574363732370898, + 13.141285753031999 + ], + [ + 77.574355445924695, + 13.141320219995499 + ], + [ + 77.574331797789995, + 13.141418574795299 + ], + [ + 77.574322264866794, + 13.141458242691099 + ], + [ + 77.574310887199104, + 13.141505586608799 + ], + [ + 77.574307611188402, + 13.141519217978001 + ], + [ + 77.574343885269897, + 13.141523596728099 + ], + [ + 77.574467032723703, + 13.1415382138092 + ], + [ + 77.574605446916806, + 13.141554431441699 + ], + [ + 77.575606948135899, + 13.141736135366999 + ], + [ + 77.576724971450801, + 13.141984618876799 + ], + [ + 77.577327261773902, + 13.142115269140101 + ], + [ + 77.577793031707998, + 13.142303660379101 + ], + [ + 77.578240543018595, + 13.1424539298136 + ], + [ + 77.578658905206893, + 13.142516313903601 + ], + [ + 77.579195248984504, + 13.1425663122457 + ], + [ + 77.579256417608093, + 13.1425734298363 + ], + [ + 77.579911435386194, + 13.1426195873817 + ], + [ + 77.580098479143999, + 13.142409985176901 + ], + [ + 77.5801461726616, + 13.1423599194689 + ], + [ + 77.5806113839473, + 13.141907328678601 + ], + [ + 77.580881720011405, + 13.1416546063131 + ], + [ + 77.581445060030504, + 13.141127280700999 + ], + [ + 77.582356860638299, + 13.1401926734352 + ], + [ + 77.582480551120497, + 13.140029855548001 + ], + [ + 77.582744631104404, + 13.1389079438131 + ], + [ + 77.582955139906502, + 13.1381800727921 + ], + [ + 77.582993393493197, + 13.138028594661799 + ], + [ + 77.583292178570503, + 13.1371358160954 + ], + [ + 77.583470214089502, + 13.136703322068101 + ], + [ + 77.583498887365096, + 13.136633648468401 + ], + [ + 77.583622878792497, + 13.136144690245301 + ], + [ + 77.583697024267295, + 13.135581849637701 + ], + [ + 77.583700429108603, + 13.135559704812801 + ], + [ + 77.583788287431403, + 13.1352353718726 + ], + [ + 77.583792555356993, + 13.1352194090381 + ], + [ + 77.584011125995403, + 13.135117379888101 + ], + [ + 77.584124763749202, + 13.1345386773973 + ], + [ + 77.584332830848794, + 13.133958554464799 + ], + [ + 77.584527376137302, + 13.133817406481199 + ], + [ + 77.584543583687307, + 13.133781865799101 + ], + [ + 77.584850437074607, + 13.133102883940699 + ], + [ + 77.584994002661603, + 13.132962779212001 + ], + [ + 77.585039614940399, + 13.1329182666028 + ], + [ + 77.585194910265201, + 13.132766714839001 + ], + [ + 77.585195796228604, + 13.132711685140199 + ], + [ + 77.585197271645796, + 13.1325825446342 + ], + [ + 77.585198149480306, + 13.132505689915901 + ], + [ + 77.585198802999599, + 13.1324485313583 + ], + [ + 77.585271328564502, + 13.132169021261801 + ], + [ + 77.585310761624299, + 13.1320170488555 + ], + [ + 77.585329073249099, + 13.131950016293301 + ], + [ + 77.586063920700397, + 13.129345579450201 + ], + [ + 77.586187027197695, + 13.129146726841601 + ], + [ + 77.586027325097106, + 13.128511849076499 + ], + [ + 77.585761198472198, + 13.1275144242135 + ], + [ + 77.585648699452605, + 13.1269020473436 + ], + [ + 77.585605894687603, + 13.126292276361699 + ], + [ + 77.585605014631, + 13.126266752420801 + ], + [ + 77.585595436285203, + 13.125989064222701 + ], + [ + 77.585612351245004, + 13.125657945491101 + ], + [ + 77.585641547835493, + 13.1252285843119 + ], + [ + 77.585706769039206, + 13.1247299635624 + ], + [ + 77.585763171818897, + 13.124298761510399 + ], + [ + 77.585946329513703, + 13.122898519604799 + ], + [ + 77.586052445609397, + 13.121980546800399 + ], + [ + 77.586150985480501, + 13.1211281119296 + ], + [ + 77.586184588052205, + 13.120837430283499 + ], + [ + 77.586238429615307, + 13.120471327340301 + ], + [ + 77.586479323507206, + 13.1188333673943 + ], + [ + 77.586600827475294, + 13.117749402656001 + ], + [ + 77.5866094722913, + 13.1176722792744 + ], + [ + 77.586878993851997, + 13.1155160160812 + ], + [ + 77.586899610343295, + 13.1153259401448 + ], + [ + 77.5869730432117, + 13.114648906117701 + ], + [ + 77.587101572748693, + 13.1140490912892 + ], + [ + 77.587255017952202, + 13.1135732479304 + ], + [ + 77.587441452103107, + 13.1131670889889 + ], + [ + 77.587817499673093, + 13.1124709799003 + ], + [ + 77.588642602503398, + 13.112588197204801 + ], + [ + 77.5887521391533, + 13.1125905561187 + ], + [ + 77.589201123901006, + 13.112600222914001 + ], + [ + 77.589597361905206, + 13.112596238258099 + ], + [ + 77.590052508330103, + 13.112532151546599 + ], + [ + 77.590068565858701, + 13.1125252143061 + ], + [ + 77.590303127953604, + 13.112424606841699 + ], + [ + 77.590656073694504, + 13.112241499545799 + ], + [ + 77.590967917241898, + 13.11198427253 + ], + [ + 77.591131226423599, + 13.1118459856537 + ], + [ + 77.591145388042705, + 13.111603046625699 + ], + [ + 77.591123578802197, + 13.1115558360554 + ], + [ + 77.591196208663305, + 13.1114500816185 + ], + [ + 77.591623990221706, + 13.1113170381765 + ], + [ + 77.5925909320041, + 13.110685069033099 + ], + [ + 77.592669889060701, + 13.110633456313399 + ], + [ + 77.592981320055401, + 13.1103244309617 + ], + [ + 77.593155080000102, + 13.110152013057601 + ], + [ + 77.593335449995905, + 13.109937891343501 + ], + [ + 77.593445361205198, + 13.1099266209951 + ], + [ + 77.593632733599406, + 13.1096661279723 + ], + [ + 77.593924763476707, + 13.109117371550999 + ], + [ + 77.594396593952595, + 13.108611099539701 + ], + [ + 77.594398757910298, + 13.1086081786452 + ], + [ + 77.5944298936178, + 13.1085559179668 + ], + [ + 77.594655428258804, + 13.108301403755901 + ], + [ + 77.594868170844293, + 13.1077214795563 + ], + [ + 77.595160331078901, + 13.1070976146848 + ], + [ + 77.595185391326496, + 13.107044101597801 + ], + [ + 77.595380521170597, + 13.1066083093388 + ], + [ + 77.595440375328806, + 13.1064746324752 + ], + [ + 77.595462347013395, + 13.106388526866599 + ], + [ + 77.595473021214303, + 13.106346694569501 + ], + [ + 77.595476899270494, + 13.1063319748169 + ], + [ + 77.595438801970701, + 13.1060270914097 + ], + [ + 77.595460625420202, + 13.105781970671901 + ], + [ + 77.595639870297703, + 13.105393027914401 + ], + [ + 77.5957252013187, + 13.104992763372 + ], + [ + 77.5957352335151, + 13.104945703095 + ], + [ + 77.5957573667676, + 13.104841883290399 + ], + [ + 77.596249555581394, + 13.1043151952769 + ], + [ + 77.5969604253592, + 13.1042746811315 + ], + [ + 77.596977624321198, + 13.1041142955804 + ], + [ + 77.596718095168697, + 13.1041729355056 + ], + [ + 77.595668602606196, + 13.104326410465401 + ], + [ + 77.595385841022207, + 13.104430697320501 + ], + [ + 77.595003841200196, + 13.104436341412301 + ], + [ + 77.594769105571601, + 13.10437908882 + ], + [ + 77.593798674131406, + 13.104339012005299 + ], + [ + 77.593235451754197, + 13.104331139773899 + ], + [ + 77.593160307726805, + 13.104334718060899 + ], + [ + 77.593009304014402, + 13.1043075230796 + ], + [ + 77.592409403494003, + 13.1041817083546 + ], + [ + 77.591933498257305, + 13.103996195253 + ], + [ + 77.591686975975605, + 13.104539126241299 + ], + [ + 77.591553914767204, + 13.1048321765444 + ], + [ + 77.590222436131199, + 13.1049251563753 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "149", + "group": "RAJAJI NAGARA", + "Corporatio": "West", + "ac_no": "165", + "ac": "Rajajinagar", + "corporat_1": "5", + "ward_id": "40", + "ward_name": "40 - Rajaji Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜಾಜಿನಗರ", + "ward_name_": "ರಾಜಾಜಿ ನಗರ", + "dig_ward_n": "RAJAJI NAGARA", + "Assembly": "165 - Rajajinagar", + "Slno": "40" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.545887402332795, + 12.9849058329228 + ], + [ + 77.545884960274506, + 12.9849062191384 + ], + [ + 77.545856934062897, + 12.9849106487592 + ], + [ + 77.545554532153304, + 12.984956526834701 + ], + [ + 77.545425941312104, + 12.9849759091225 + ], + [ + 77.545236571189506, + 12.9850044533529 + ], + [ + 77.545169912143294, + 12.9850145014115 + ], + [ + 77.545463142775901, + 12.986768504246299 + ], + [ + 77.546308078324898, + 12.986587365080901 + ], + [ + 77.546271703923097, + 12.9865079401541 + ], + [ + 77.547201662476496, + 12.9863706513606 + ], + [ + 77.547235070011297, + 12.9873364193515 + ], + [ + 77.547194832149103, + 12.987393053142601 + ], + [ + 77.547294888482995, + 12.9879373595989 + ], + [ + 77.547476991010598, + 12.9887358091433 + ], + [ + 77.548269095246297, + 12.9884667592552 + ], + [ + 77.548634064063904, + 12.9883341338015 + ], + [ + 77.548819082335896, + 12.989158904710701 + ], + [ + 77.548877779685, + 12.9891340333521 + ], + [ + 77.548979837145495, + 12.989388176440199 + ], + [ + 77.549284008400505, + 12.9891740558857 + ], + [ + 77.549337290067797, + 12.9894049342596 + ], + [ + 77.549400719244801, + 12.9903149019569 + ], + [ + 77.549857167676507, + 12.990225997563 + ], + [ + 77.550315923651098, + 12.9901437870039 + ], + [ + 77.550637065758096, + 12.9900857809782 + ], + [ + 77.550731977221204, + 12.990414612450101 + ], + [ + 77.550786330982206, + 12.990606064257999 + ], + [ + 77.550848078230004, + 12.990844875154201 + ], + [ + 77.550932062656003, + 12.9911749430792 + ], + [ + 77.550973393632106, + 12.9913879798927 + ], + [ + 77.550982746821603, + 12.991570838947901 + ], + [ + 77.551004035619002, + 12.991998603987 + ], + [ + 77.551017000095797, + 12.9922590890853 + ], + [ + 77.551024767936795, + 12.992415162512099 + ], + [ + 77.551039961603607, + 12.9927188021102 + ], + [ + 77.551057401728301, + 12.9930732393202 + ], + [ + 77.551076339581499, + 12.9934615415933 + ], + [ + 77.551059544292002, + 12.9937578951302 + ], + [ + 77.551021297738203, + 12.994397824129599 + ], + [ + 77.550823389956605, + 12.9952516798489 + ], + [ + 77.550603793131501, + 12.996199105138601 + ], + [ + 77.550510086676994, + 12.996603387726999 + ], + [ + 77.550282135329596, + 12.997586851117299 + ], + [ + 77.550328738142099, + 12.997590056852699 + ], + [ + 77.5504690887214, + 12.997599713854299 + ], + [ + 77.550886539895004, + 12.9976916178239 + ], + [ + 77.550887679369097, + 12.997691868631399 + ], + [ + 77.551038596990693, + 12.9977250939644 + ], + [ + 77.551038711490804, + 12.9977251190396 + ], + [ + 77.551085090062003, + 12.9977354108731 + ], + [ + 77.551106817128797, + 12.997740233260799 + ], + [ + 77.551114060405794, + 12.9977418407139 + ], + [ + 77.552378819177207, + 12.998022510677099 + ], + [ + 77.5524625134491, + 12.9980420165558 + ], + [ + 77.553054741608804, + 12.9981818750018 + ], + [ + 77.553264675572095, + 12.9977077527271 + ], + [ + 77.553385154219995, + 12.997495384147999 + ], + [ + 77.553521617281106, + 12.9973257726508 + ], + [ + 77.553534133990098, + 12.9973109683252 + ], + [ + 77.553572236773903, + 12.9972642912621 + ], + [ + 77.553801625323899, + 12.997003419732 + ], + [ + 77.553934184565904, + 12.996846269072 + ], + [ + 77.554181661816898, + 12.9965524690086 + ], + [ + 77.554257901572697, + 12.9964625024023 + ], + [ + 77.554291584804801, + 12.996418101203499 + ], + [ + 77.554302786188302, + 12.9964033359964 + ], + [ + 77.554326656345296, + 12.9963726094209 + ], + [ + 77.554424957969204, + 12.996244028734401 + ], + [ + 77.554568731311207, + 12.9960574051434 + ], + [ + 77.554604530674197, + 12.9960107506553 + ], + [ + 77.554776385110898, + 12.9956984958161 + ], + [ + 77.554868526322593, + 12.995476089139499 + ], + [ + 77.554893830709304, + 12.9954150093815 + ], + [ + 77.554953958166294, + 12.995269864368799 + ], + [ + 77.555128309269307, + 12.994920317219099 + ], + [ + 77.555181920278102, + 12.994813633301399 + ], + [ + 77.555205628421405, + 12.9947670977587 + ], + [ + 77.555312817645003, + 12.9946068084126 + ], + [ + 77.555504850067294, + 12.9943219419266 + ], + [ + 77.555318263603496, + 12.994159327776201 + ], + [ + 77.555493513954602, + 12.9928698316983 + ], + [ + 77.555587299385806, + 12.9915271480246 + ], + [ + 77.554842473752103, + 12.9915457478556 + ], + [ + 77.554515669802996, + 12.9915641677186 + ], + [ + 77.554403282787703, + 12.989964422915699 + ], + [ + 77.554776466719403, + 12.989939826616601 + ], + [ + 77.555034164166599, + 12.989925085013001 + ], + [ + 77.555251019110401, + 12.9899159764721 + ], + [ + 77.555988941646206, + 12.9899104601538 + ], + [ + 77.556059184846703, + 12.989910640868001 + ], + [ + 77.555984737007407, + 12.988365056700101 + ], + [ + 77.555948067978804, + 12.9875034314642 + ], + [ + 77.554318399012502, + 12.9875214757135 + ], + [ + 77.554277712632498, + 12.987020520004 + ], + [ + 77.554155756868198, + 12.984353198104101 + ], + [ + 77.553238854805102, + 12.9844180119263 + ], + [ + 77.551595916957993, + 12.984562758502801 + ], + [ + 77.551262284140705, + 12.9846288129554 + ], + [ + 77.550607250552801, + 12.9847398743882 + ], + [ + 77.550139560696394, + 12.9848255537553 + ], + [ + 77.549306222185805, + 12.984976726656299 + ], + [ + 77.549201081638003, + 12.9850854410443 + ], + [ + 77.549145974681494, + 12.984956500613 + ], + [ + 77.549078661309096, + 12.984416039487 + ], + [ + 77.549027491467797, + 12.9844194288987 + ], + [ + 77.548898558745407, + 12.984427970094799 + ], + [ + 77.548677279333106, + 12.984467408339301 + ], + [ + 77.5484989137681, + 12.9844880608431 + ], + [ + 77.548112513771002, + 12.984532802287299 + ], + [ + 77.548065924925695, + 12.984537775539801 + ], + [ + 77.547835398779199, + 12.9845739157866 + ], + [ + 77.547455986133798, + 12.9846341020686 + ], + [ + 77.547166308402197, + 12.984684718716 + ], + [ + 77.547141010065701, + 12.984689138893801 + ], + [ + 77.547103982104005, + 12.984695554152999 + ], + [ + 77.546802462953494, + 12.984747794370801 + ], + [ + 77.546535192380702, + 12.984794457630199 + ], + [ + 77.545887402332795, + 12.9849058329228 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "133", + "group": "kudlu", + "Corporatio": "South", + "ac_no": "177", + "ac": "Anekal", + "corporat_1": "4", + "ward_id": "41", + "ward_name": "41 - Kudlu", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಆನೇಕಲ್", + "ward_name_": "ಕುಡ್ಲು", + "dig_ward_n": "kudlu", + "Assembly": "177 - Anekal", + "Slno": "41" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.656091084349896, + 12.8841189053093 + ], + [ + 77.655760282279303, + 12.883411680910299 + ], + [ + 77.655751877446804, + 12.8833884079 + ], + [ + 77.655731351506304, + 12.8832102435987 + ], + [ + 77.655711083060694, + 12.883131448788999 + ], + [ + 77.6555225137473, + 12.8824195689395 + ], + [ + 77.655206082535599, + 12.8812249784611 + ], + [ + 77.655178391172896, + 12.881120436052001 + ], + [ + 77.655012787050794, + 12.8805696604581 + ], + [ + 77.654985121898306, + 12.8805735067459 + ], + [ + 77.654930666016696, + 12.880380156859101 + ], + [ + 77.654935755236295, + 12.880316867253001 + ], + [ + 77.6549222030594, + 12.8802323109424 + ], + [ + 77.6549116114182, + 12.8801556284527 + ], + [ + 77.654905828246001, + 12.8800951087114 + ], + [ + 77.653903539781098, + 12.880390488911599 + ], + [ + 77.653569283847006, + 12.8810392459051 + ], + [ + 77.653323283559899, + 12.880814665010501 + ], + [ + 77.652953843596606, + 12.8804359686977 + ], + [ + 77.652819937501107, + 12.880690831778301 + ], + [ + 77.652615474201298, + 12.8810799858165 + ], + [ + 77.652506621409103, + 12.881378151585199 + ], + [ + 77.652455629570696, + 12.8815178264251 + ], + [ + 77.652388685420902, + 12.8817078983499 + ], + [ + 77.652375663380596, + 12.8817102887984 + ], + [ + 77.6523410305808, + 12.8818432012424 + ], + [ + 77.652337346881794, + 12.881853661110901 + ], + [ + 77.6522891043942, + 12.8819508147908 + ], + [ + 77.6522419150849, + 12.8820458483543 + ], + [ + 77.652135216463407, + 12.8821705581306 + ], + [ + 77.651977998645506, + 12.8823345844317 + ], + [ + 77.651876375161905, + 12.8824109811948 + ], + [ + 77.651759411321805, + 12.882498909877199 + ], + [ + 77.651109323413607, + 12.882654885982801 + ], + [ + 77.650386402497602, + 12.882835500333901 + ], + [ + 77.650340615866298, + 12.8828565904406 + ], + [ + 77.650239430539699, + 12.8829031988707 + ], + [ + 77.6502206802232, + 12.882911835535801 + ], + [ + 77.650155620547494, + 12.882929952520399 + ], + [ + 77.650127630928395, + 12.882937746800099 + ], + [ + 77.650086082438804, + 12.8829575725587 + ], + [ + 77.650091986534406, + 12.8829711135145 + ], + [ + 77.649902618331097, + 12.883058339978 + ], + [ + 77.649782628550298, + 12.883167553858099 + ], + [ + 77.649645714568805, + 12.8832921704065 + ], + [ + 77.649632481770794, + 12.883304214832 + ], + [ + 77.649488811689395, + 12.883434981428801 + ], + [ + 77.6493467533477, + 12.883681541658 + ], + [ + 77.649330892298906, + 12.883709069911401 + ], + [ + 77.649316294941002, + 12.8841411448002 + ], + [ + 77.649308596243799, + 12.884369006875099 + ], + [ + 77.649309681414806, + 12.884410810822001 + ], + [ + 77.649311130113105, + 12.884466603904601 + ], + [ + 77.649313310644104, + 12.884550566731701 + ], + [ + 77.649315604483505, + 12.884638910821099 + ], + [ + 77.6493299167293, + 12.8851900958695 + ], + [ + 77.649330030004407, + 12.8851944744224 + ], + [ + 77.649333167413602, + 12.885315300868699 + ], + [ + 77.649338522482196, + 12.885402358230399 + ], + [ + 77.649348494991003, + 12.885564473283701 + ], + [ + 77.6493711447946, + 12.885932665411801 + ], + [ + 77.649386068177407, + 12.8861752587939 + ], + [ + 77.649333192814197, + 12.8861683934299 + ], + [ + 77.648933563484903, + 12.8861165074516 + ], + [ + 77.648668784683693, + 12.886082128999 + ], + [ + 77.647935646379807, + 12.8858662123711 + ], + [ + 77.647774288864099, + 12.885818690775199 + ], + [ + 77.647051916166802, + 12.885699666455301 + ], + [ + 77.646954234978196, + 12.8856835710887 + ], + [ + 77.646262145790899, + 12.885527141598899 + ], + [ + 77.646184939240101, + 12.885509690658401 + ], + [ + 77.646163687675795, + 12.8855070336163 + ], + [ + 77.645034368632594, + 12.8864605420089 + ], + [ + 77.644894714594898, + 12.886695301587 + ], + [ + 77.644758150059701, + 12.886528025840899 + ], + [ + 77.6438306655958, + 12.885210799118401 + ], + [ + 77.643390277001402, + 12.885035977324399 + ], + [ + 77.642631434169502, + 12.8846970511684 + ], + [ + 77.642603419881098, + 12.8847417844117 + ], + [ + 77.642567212185199, + 12.884807523309901 + ], + [ + 77.642557093300994, + 12.8848258960022 + ], + [ + 77.642524395217606, + 12.8848814803896 + ], + [ + 77.642524246858798, + 12.8848817339384 + ], + [ + 77.642403719304497, + 12.8850866251088 + ], + [ + 77.642399988268807, + 12.8850929676641 + ], + [ + 77.642331156800907, + 12.885209979116199 + ], + [ + 77.6422924639933, + 12.885275753931801 + ], + [ + 77.641796419841, + 12.8860972495302 + ], + [ + 77.641782184100904, + 12.8861208366871 + ], + [ + 77.641664918294694, + 12.886315126721501 + ], + [ + 77.641296652987293, + 12.886925284147599 + ], + [ + 77.641217133955294, + 12.8870570331576 + ], + [ + 77.641414640549002, + 12.887105748754101 + ], + [ + 77.641453787507999, + 12.8871153669661 + ], + [ + 77.643455821754401, + 12.8876263901281 + ], + [ + 77.643607780498598, + 12.8876354392255 + ], + [ + 77.643609503957904, + 12.887654263270001 + ], + [ + 77.643773586478503, + 12.8896127490237 + ], + [ + 77.643775840434799, + 12.889639644156301 + ], + [ + 77.643820692096597, + 12.8901749815927 + ], + [ + 77.643867739818603, + 12.890607131344 + ], + [ + 77.643869447037105, + 12.890645622704101 + ], + [ + 77.643900215701507, + 12.891339321383599 + ], + [ + 77.643901815000206, + 12.891375600484499 + ], + [ + 77.644157529009206, + 12.8914893935761 + ], + [ + 77.6446751249578, + 12.891719724304 + ], + [ + 77.644797618654295, + 12.891697952319801 + ], + [ + 77.6447938882106, + 12.8916461471788 + ], + [ + 77.644793500051193, + 12.8916407550591 + ], + [ + 77.646443119990295, + 12.891361744047799 + ], + [ + 77.646524611786802, + 12.891347960260401 + ], + [ + 77.648977020137593, + 12.8909331474814 + ], + [ + 77.648997983125199, + 12.8909296016485 + ], + [ + 77.649031604988593, + 12.8909225326369 + ], + [ + 77.649076115422403, + 12.890995045268401 + ], + [ + 77.649633514712903, + 12.8919655260091 + ], + [ + 77.650390210975402, + 12.893282982247101 + ], + [ + 77.651515006559094, + 12.8940440254847 + ], + [ + 77.651530105076006, + 12.8940542416555 + ], + [ + 77.651681421365893, + 12.894156622182299 + ], + [ + 77.652047214101202, + 12.8943850502543 + ], + [ + 77.652288840330399, + 12.894532553666799 + ], + [ + 77.652614503216697, + 12.8947313577708 + ], + [ + 77.652847726243607, + 12.894713918886501 + ], + [ + 77.653160965412795, + 12.8946317064088 + ], + [ + 77.653186910177695, + 12.894624897163 + ], + [ + 77.653901673325507, + 12.8944373001431 + ], + [ + 77.653903089125194, + 12.8944472087202 + ], + [ + 77.653910283225002, + 12.894498671968799 + ], + [ + 77.654060032887102, + 12.894481031153999 + ], + [ + 77.654269365200506, + 12.894456263919301 + ], + [ + 77.655259687064401, + 12.894339093478401 + ], + [ + 77.6560105036572, + 12.8942496009252 + ], + [ + 77.656856429583399, + 12.8942883549516 + ], + [ + 77.657204856583107, + 12.8943043158786 + ], + [ + 77.657366909618702, + 12.894311739465399 + ], + [ + 77.657501058354498, + 12.8943180218357 + ], + [ + 77.657633851640796, + 12.8943243115857 + ], + [ + 77.657990475331403, + 12.8943746419117 + ], + [ + 77.658763972701905, + 12.8945663200345 + ], + [ + 77.659218853121104, + 12.894684159612099 + ], + [ + 77.659754745614805, + 12.894697520572199 + ], + [ + 77.659770952598194, + 12.894697924883699 + ], + [ + 77.660178197734794, + 12.8947080781307 + ], + [ + 77.660487889984495, + 12.894723675992701 + ], + [ + 77.6607448795137, + 12.8947229469041 + ], + [ + 77.6609499335094, + 12.8947223647657 + ], + [ + 77.661134230784299, + 12.894721841905501 + ], + [ + 77.661596565235797, + 12.8947218518533 + ], + [ + 77.661670182217705, + 12.894722021379099 + ], + [ + 77.662783373869701, + 12.894572448544601 + ], + [ + 77.662827410310399, + 12.8945665816203 + ], + [ + 77.662933491244104, + 12.894551587429699 + ], + [ + 77.6633175344584, + 12.8944977262985 + ], + [ + 77.663372656376296, + 12.894490043499101 + ], + [ + 77.663418029993196, + 12.8944875822072 + ], + [ + 77.663546088670898, + 12.8944806363313 + ], + [ + 77.664029906989896, + 12.894413952477899 + ], + [ + 77.664223854044096, + 12.894387220218899 + ], + [ + 77.664264569541601, + 12.8943807265142 + ], + [ + 77.664667346556897, + 12.8943164868972 + ], + [ + 77.664777823512694, + 12.894299073090099 + ], + [ + 77.665149640858999, + 12.8942409416789 + ], + [ + 77.665497263581997, + 12.894194243061101 + ], + [ + 77.665764651970093, + 12.894158746316 + ], + [ + 77.665984088282997, + 12.8941296146822 + ], + [ + 77.666403647923104, + 12.8940554945196 + ], + [ + 77.666478613012103, + 12.8940509224343 + ], + [ + 77.666748803478896, + 12.894035712532901 + ], + [ + 77.666797882903396, + 12.8940329490975 + ], + [ + 77.666897493846193, + 12.8940281951496 + ], + [ + 77.667238861951105, + 12.8939963583564 + ], + [ + 77.667276543909196, + 12.8939928203242 + ], + [ + 77.667765152597994, + 12.893912544632601 + ], + [ + 77.667947853760097, + 12.893886339113701 + ], + [ + 77.668717573217293, + 12.893767606746801 + ], + [ + 77.668902463892607, + 12.893732893617001 + ], + [ + 77.669326855726396, + 12.893650011043601 + ], + [ + 77.6695383838683, + 12.8936087000973 + ], + [ + 77.6696293714826, + 12.893592400216599 + ], + [ + 77.669640420276906, + 12.8935904336845 + ], + [ + 77.669987500704195, + 12.893528647429701 + ], + [ + 77.670227606923504, + 12.8934859041468 + ], + [ + 77.671084970159399, + 12.8933681368206 + ], + [ + 77.671119004255004, + 12.8933634620125 + ], + [ + 77.671308796583304, + 12.893317984853701 + ], + [ + 77.671400841348301, + 12.8932959036571 + ], + [ + 77.671591370276403, + 12.8932501712594 + ], + [ + 77.672239538530505, + 12.893221140366601 + ], + [ + 77.672435054764094, + 12.893212383584199 + ], + [ + 77.672452723118099, + 12.8932115923652 + ], + [ + 77.673243065818397, + 12.893176190957499 + ], + [ + 77.673583275119299, + 12.8931609523741 + ], + [ + 77.673654003667494, + 12.893157784814999 + ], + [ + 77.673760352343393, + 12.893153020888199 + ], + [ + 77.673774281936005, + 12.893152396985499 + ], + [ + 77.673773464008605, + 12.8931450951416 + ], + [ + 77.673772889168902, + 12.8931399589408 + ], + [ + 77.673774363269899, + 12.892969587721 + ], + [ + 77.673776281440595, + 12.892750078562599 + ], + [ + 77.673643941497801, + 12.892189426279099 + ], + [ + 77.673625609438602, + 12.8920893928236 + ], + [ + 77.673622078704, + 12.8920701262451 + ], + [ + 77.673589691156295, + 12.891893389840201 + ], + [ + 77.673551259259696, + 12.8916092229935 + ], + [ + 77.673518994579197, + 12.891369900455899 + ], + [ + 77.673474767341403, + 12.8911473206722 + ], + [ + 77.673446504932201, + 12.8909387012599 + ], + [ + 77.6733530948256, + 12.8905328967891 + ], + [ + 77.673323431793406, + 12.890382790473099 + ], + [ + 77.673233624256795, + 12.889927862608101 + ], + [ + 77.673232689993895, + 12.889923129371599 + ], + [ + 77.673210518206602, + 12.889810749607699 + ], + [ + 77.6731998710124, + 12.8897567626676 + ], + [ + 77.673176940678104, + 12.8896404970458 + ], + [ + 77.673171214206604, + 12.889611463776401 + ], + [ + 77.673104483719698, + 12.8892731115552 + ], + [ + 77.672966728783095, + 12.8885746349047 + ], + [ + 77.672966626582607, + 12.888574115597599 + ], + [ + 77.672930004190405, + 12.8883884939894 + ], + [ + 77.672914027289394, + 12.8883075194555 + ], + [ + 77.672871988181697, + 12.8880812519328 + ], + [ + 77.672868400027696, + 12.888061938025301 + ], + [ + 77.672868340430398, + 12.8880616152214 + ], + [ + 77.672867264197293, + 12.888055823757099 + ], + [ + 77.672866932163302, + 12.888054038441499 + ], + [ + 77.672844288012001, + 12.8879321579539 + ], + [ + 77.672834266839203, + 12.8878782214819 + ], + [ + 77.672831470749401, + 12.8878631716016 + ], + [ + 77.672814825528505, + 12.8877737048031 + ], + [ + 77.672799725207, + 12.887692540613299 + ], + [ + 77.672719371368601, + 12.887260635076901 + ], + [ + 77.672713200076601, + 12.8872275031298 + ], + [ + 77.672593621285301, + 12.886836314518501 + ], + [ + 77.672538648432607, + 12.8865902113369 + ], + [ + 77.672521341609496, + 12.886487052260501 + ], + [ + 77.6724372762217, + 12.8859859767001 + ], + [ + 77.672328142318904, + 12.8846500767949 + ], + [ + 77.672239355034094, + 12.884666874878199 + ], + [ + 77.672236783147497, + 12.8846377948742 + ], + [ + 77.672235830007594, + 12.8846270235715 + ], + [ + 77.672235404196996, + 12.884622212860201 + ], + [ + 77.672235379033197, + 12.884621924032899 + ], + [ + 77.672053481123797, + 12.8846665404155 + ], + [ + 77.670359451567094, + 12.884991348995401 + ], + [ + 77.6679685098227, + 12.885523710157001 + ], + [ + 77.667977371588705, + 12.8854765630792 + ], + [ + 77.667834010021593, + 12.8855026275416 + ], + [ + 77.667970329913601, + 12.884752814497499 + ], + [ + 77.667942936885495, + 12.884759573772399 + ], + [ + 77.668014067123295, + 12.8843861700419 + ], + [ + 77.668063020232793, + 12.884129191068199 + ], + [ + 77.668156902247205, + 12.8836363538855 + ], + [ + 77.668159765622804, + 12.883622407054499 + ], + [ + 77.667565849225696, + 12.8838500998088 + ], + [ + 77.667490616269305, + 12.883875520128999 + ], + [ + 77.666670684622503, + 12.884152563160701 + ], + [ + 77.666579593088002, + 12.8841816490896 + ], + [ + 77.666377733606794, + 12.8842007517715 + ], + [ + 77.666216216545195, + 12.884213601093 + ], + [ + 77.666193646733603, + 12.884215396593399 + ], + [ + 77.666198153104801, + 12.8841811907156 + ], + [ + 77.665928419380506, + 12.884217350345001 + ], + [ + 77.664651431569794, + 12.8843342449528 + ], + [ + 77.664532095850703, + 12.884344258063299 + ], + [ + 77.663771197324095, + 12.8844081006786 + ], + [ + 77.663438697366203, + 12.8844345491936 + ], + [ + 77.663438637556894, + 12.884434553415799 + ], + [ + 77.663191446923506, + 12.884452995726701 + ], + [ + 77.663116684348296, + 12.884458274358201 + ], + [ + 77.662492313268203, + 12.8844646259952 + ], + [ + 77.661930251853306, + 12.8843766160663 + ], + [ + 77.661410941459195, + 12.884303979547999 + ], + [ + 77.661150900078397, + 12.884203862492701 + ], + [ + 77.660782908432296, + 12.884181631263999 + ], + [ + 77.660534310757797, + 12.88418415848 + ], + [ + 77.660374233173599, + 12.8841967727893 + ], + [ + 77.660238164669707, + 12.884207495174399 + ], + [ + 77.6601811901389, + 12.8842306962196 + ], + [ + 77.660161375261097, + 12.8842387652972 + ], + [ + 77.660123979987503, + 12.884254170667999 + ], + [ + 77.660043331699796, + 12.884287393375899 + ], + [ + 77.659717329829505, + 12.884372012218 + ], + [ + 77.659526597552698, + 12.884321400769901 + ], + [ + 77.659475509380499, + 12.884307844081301 + ], + [ + 77.659311127611602, + 12.884382915378501 + ], + [ + 77.659140439519007, + 12.8844603091562 + ], + [ + 77.658669671425898, + 12.884570111797901 + ], + [ + 77.658141455622996, + 12.8846353272674 + ], + [ + 77.658058684728303, + 12.884645201900501 + ], + [ + 77.657710410243993, + 12.8847240876435 + ], + [ + 77.657656780066006, + 12.8847362354952 + ], + [ + 77.657600527904805, + 12.8847503567846 + ], + [ + 77.657486599106505, + 12.8847853278488 + ], + [ + 77.657341805284403, + 12.884829773624 + ], + [ + 77.657048234456695, + 12.8848688712413 + ], + [ + 77.657020539620305, + 12.8848725591288 + ], + [ + 77.656905014899905, + 12.884887282940699 + ], + [ + 77.656521588861594, + 12.8849376668212 + ], + [ + 77.656212655855299, + 12.884288259436101 + ], + [ + 77.656172613976196, + 12.884293207202401 + ], + [ + 77.656091084349896, + 12.8841189053093 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "150", + "group": "Sane Guruvana Halli", + "Corporatio": "West", + "ac_no": "165", + "ac": "Rajajinagar", + "corporat_1": "5", + "ward_id": "53", + "ward_name": "53 - Sane Guruvana Halli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜಾಜಿನಗರ", + "ward_name_": "ಸಾನೆ ಗುರುವನ ಹಳ್ಳಿ", + "dig_ward_n": "Sane Guruvana Halli", + "Assembly": "165 - Rajajinagar", + "Slno": "53" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.540862310329999, + 12.9881196921924 + ], + [ + 77.540518682841295, + 12.988285886003201 + ], + [ + 77.540555967879996, + 12.9889795787313 + ], + [ + 77.540543125895397, + 12.989290547843 + ], + [ + 77.540885803715099, + 12.989194771497701 + ], + [ + 77.540974664882299, + 12.989167744368601 + ], + [ + 77.541217004238405, + 12.989161668065201 + ], + [ + 77.541101860379001, + 12.9897297675593 + ], + [ + 77.541085458577001, + 12.9900403354308 + ], + [ + 77.541073627291993, + 12.990421380161299 + ], + [ + 77.5410773910681, + 12.9905583413304 + ], + [ + 77.541040790858105, + 12.9912316981078 + ], + [ + 77.541408981199694, + 12.991181833691501 + ], + [ + 77.5414926200298, + 12.991735595183201 + ], + [ + 77.541560743150896, + 12.9921849943536 + ], + [ + 77.542137708876396, + 12.9920886667609 + ], + [ + 77.542166141376796, + 12.9925263214081 + ], + [ + 77.542176380516096, + 12.9926610145121 + ], + [ + 77.542251859447902, + 12.9932516270008 + ], + [ + 77.542297626655397, + 12.9933917698363 + ], + [ + 77.542482678027199, + 12.993856661829399 + ], + [ + 77.542536610731005, + 12.9940003481034 + ], + [ + 77.542553596706, + 12.9941408367197 + ], + [ + 77.542542429146593, + 12.9942814728235 + ], + [ + 77.542508711357399, + 12.9950900271809 + ], + [ + 77.542871742714894, + 12.9950617364516 + ], + [ + 77.542876657454798, + 12.995195093546499 + ], + [ + 77.542933549019196, + 12.9951936644588 + ], + [ + 77.543171588719005, + 12.995168662956599 + ], + [ + 77.543576462425804, + 12.9951115094897 + ], + [ + 77.543778832550302, + 12.9950763937169 + ], + [ + 77.543897763415899, + 12.9950551742028 + ], + [ + 77.544145173840406, + 12.9949899713143 + ], + [ + 77.544399483416598, + 12.994903774319701 + ], + [ + 77.544558973573402, + 12.994849023801001 + ], + [ + 77.544684830150601, + 12.994809425589001 + ], + [ + 77.544932071164396, + 12.994727657047701 + ], + [ + 77.545087240113304, + 12.994685155589799 + ], + [ + 77.545219462127804, + 12.994659445607301 + ], + [ + 77.545389662935804, + 12.994631110939901 + ], + [ + 77.545787113009695, + 12.994564944299601 + ], + [ + 77.545744028989205, + 12.9943981348744 + ], + [ + 77.545727769786097, + 12.9942718092419 + ], + [ + 77.545712708184396, + 12.994149989186599 + ], + [ + 77.545705810714907, + 12.994094719602 + ], + [ + 77.545705141069206, + 12.994029032549699 + ], + [ + 77.545704901063004, + 12.994005489713199 + ], + [ + 77.545704601979196, + 12.993976151730701 + ], + [ + 77.545704475350405, + 12.993963730334601 + ], + [ + 77.545708356211705, + 12.993892544456999 + ], + [ + 77.5457772633075, + 12.993380744840801 + ], + [ + 77.547241312627307, + 12.9934197939639 + ], + [ + 77.547300169781195, + 12.9927998752483 + ], + [ + 77.54736955397, + 12.9921431248824 + ], + [ + 77.547137523704293, + 12.9920595158043 + ], + [ + 77.547140528556497, + 12.9919182341379 + ], + [ + 77.546941794593906, + 12.9918475940355 + ], + [ + 77.546416277960304, + 12.9917396155455 + ], + [ + 77.546062990059895, + 12.991666785416101 + ], + [ + 77.546019298532002, + 12.9912378279839 + ], + [ + 77.546019451155601, + 12.9912222516633 + ], + [ + 77.546019863002996, + 12.991180226589 + ], + [ + 77.546020231568406, + 12.9911598950249 + ], + [ + 77.546003627207398, + 12.9910561593683 + ], + [ + 77.546001186061602, + 12.9910426313293 + ], + [ + 77.545985088174902, + 12.990988581252701 + ], + [ + 77.545910264075303, + 12.9907657071952 + ], + [ + 77.545897632273906, + 12.990712752462899 + ], + [ + 77.545863341060695, + 12.9905685342301 + ], + [ + 77.545833598388995, + 12.9904186247492 + ], + [ + 77.545824524738507, + 12.9903757991099 + ], + [ + 77.545778097441797, + 12.990114249380801 + ], + [ + 77.545777487163093, + 12.9901108673693 + ], + [ + 77.545728594645198, + 12.989835759081201 + ], + [ + 77.545727398356206, + 12.9898290255374 + ], + [ + 77.545726177802806, + 12.989822261513501 + ], + [ + 77.545721917374905, + 12.989799716648101 + ], + [ + 77.545672853303302, + 12.9895619086452 + ], + [ + 77.545667994121999, + 12.989537110982599 + ], + [ + 77.545660129600904, + 12.989499920130299 + ], + [ + 77.545630478276806, + 12.9891422153744 + ], + [ + 77.545619821818505, + 12.988707227614301 + ], + [ + 77.544601462631604, + 12.9887649428856 + ], + [ + 77.543816096677105, + 12.9888266942682 + ], + [ + 77.5425154197453, + 12.988926620757301 + ], + [ + 77.542294302124205, + 12.9873811085385 + ], + [ + 77.541705875825997, + 12.987690559835601 + ], + [ + 77.540862310329999, + 12.9881196921924 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "134", + "group": "MADIWALA", + "Corporatio": "South", + "ac_no": "172", + "ac": "B.T.M Layout", + "corporat_1": "4", + "ward_id": "21", + "ward_name": "21 - Madiwala", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬಿ.ಟಿ.ಎಂ. ಲೇಔಟ್", + "ward_name_": "ಮಡಿವಾಳ", + "dig_ward_n": "MADIWALA", + "Assembly": "172 - B.T.M Layout", + "Slno": "21" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6083954924691, + 12.9208935334104 + ], + [ + 77.608453096904896, + 12.9209853032905 + ], + [ + 77.608475093615496, + 12.9210203463219 + ], + [ + 77.608478605646297, + 12.9210259576531 + ], + [ + 77.608519507571899, + 12.921143866652899 + ], + [ + 77.608523109995403, + 12.921154251441299 + ], + [ + 77.608537944791095, + 12.921197016033499 + ], + [ + 77.608620061473403, + 12.921433173641301 + ], + [ + 77.608647121116604, + 12.9215109964418 + ], + [ + 77.608660344708497, + 12.92153953277 + ], + [ + 77.608660664083104, + 12.9215402216042 + ], + [ + 77.608671129095498, + 12.921564168223901 + ], + [ + 77.608670369473003, + 12.921554761639801 + ], + [ + 77.608689887008296, + 12.921560490360999 + ], + [ + 77.608717827263007, + 12.9215759867862 + ], + [ + 77.608849480272696, + 12.921554018639 + ], + [ + 77.608916669948201, + 12.9215476103311 + ], + [ + 77.608912483760193, + 12.921519925064899 + ], + [ + 77.609090780864307, + 12.9215124061958 + ], + [ + 77.609195591435693, + 12.9215099690724 + ], + [ + 77.609307119083297, + 12.921507375321999 + ], + [ + 77.609367665307403, + 12.921504669608 + ], + [ + 77.609467865847193, + 12.921444575638199 + ], + [ + 77.609647397152699, + 12.921368202890299 + ], + [ + 77.609790975858402, + 12.9213027071957 + ], + [ + 77.609911293533898, + 12.9212498724588 + ], + [ + 77.610004609163497, + 12.921225036555199 + ], + [ + 77.610139665339901, + 12.9211835287889 + ], + [ + 77.610226109162895, + 12.921153980590899 + ], + [ + 77.610375794225803, + 12.9210898573001 + ], + [ + 77.610506802078106, + 12.9210340479483 + ], + [ + 77.610627688564307, + 12.9209890959646 + ], + [ + 77.610725243665499, + 12.9209501140383 + ], + [ + 77.610811922969106, + 12.9209198459964 + ], + [ + 77.610897244524395, + 12.9210401818929 + ], + [ + 77.610942540954994, + 12.921107853523299 + ], + [ + 77.610974450297405, + 12.921153428426599 + ], + [ + 77.611026072482105, + 12.921266929927199 + ], + [ + 77.611104612473298, + 12.9214382479552 + ], + [ + 77.611171421377094, + 12.9215358218545 + ], + [ + 77.611196632600098, + 12.921569990200901 + ], + [ + 77.611276030493102, + 12.921485677769599 + ], + [ + 77.611378799687003, + 12.921385690151199 + ], + [ + 77.611418622500295, + 12.921348720154599 + ], + [ + 77.611569121876997, + 12.921198813167599 + ], + [ + 77.6116064967337, + 12.9211607916627 + ], + [ + 77.611698039810307, + 12.921052409618399 + ], + [ + 77.611773450154104, + 12.9209616991742 + ], + [ + 77.611876432704094, + 12.9208354159849 + ], + [ + 77.611986127833504, + 12.920698547921599 + ], + [ + 77.612072054162496, + 12.920525585492699 + ], + [ + 77.612099533040194, + 12.920449776899201 + ], + [ + 77.612149447807994, + 12.9200606157699 + ], + [ + 77.612378956631801, + 12.919937756027799 + ], + [ + 77.612515467456305, + 12.9201681180443 + ], + [ + 77.612626382501304, + 12.9203797098224 + ], + [ + 77.612725352849196, + 12.9205571738943 + ], + [ + 77.612807259343896, + 12.920710748572001 + ], + [ + 77.6128570925856, + 12.920800672869801 + ], + [ + 77.612879812517804, + 12.920803313831399 + ], + [ + 77.6131162874659, + 12.920696250587801 + ], + [ + 77.613274944564395, + 12.920627973295 + ], + [ + 77.613321734514102, + 12.9207337847737 + ], + [ + 77.613372926073296, + 12.920711601764699 + ], + [ + 77.613727854217203, + 12.9205512015458 + ], + [ + 77.614174927167795, + 12.920343022538299 + ], + [ + 77.614552038320696, + 12.920175796778199 + ], + [ + 77.614912085620503, + 12.920023928485801 + ], + [ + 77.615005936812395, + 12.920260262850899 + ], + [ + 77.615030679399396, + 12.9203063352542 + ], + [ + 77.615251462051205, + 12.9202013709893 + ], + [ + 77.615489384843997, + 12.920116521913799 + ], + [ + 77.615576257339896, + 12.9202686309611 + ], + [ + 77.615621111595601, + 12.920340449107901 + ], + [ + 77.615494978195599, + 12.920396211927301 + ], + [ + 77.615274665473095, + 12.920487338689099 + ], + [ + 77.615084505710399, + 12.9205724273901 + ], + [ + 77.614889759857803, + 12.920652975230301 + ], + [ + 77.614976393963005, + 12.920828990588999 + ], + [ + 77.6151435741277, + 12.9211581351744 + ], + [ + 77.615202221816801, + 12.9212675024225 + ], + [ + 77.615538693799905, + 12.921696587002 + ], + [ + 77.615615481138704, + 12.9217921445792 + ], + [ + 77.6157721341947, + 12.9219941341499 + ], + [ + 77.615966569915699, + 12.9221931451264 + ], + [ + 77.616218688344901, + 12.9224525156931 + ], + [ + 77.616117158419101, + 12.922565563719701 + ], + [ + 77.616124410556694, + 12.9225753754352 + ], + [ + 77.616151276837698, + 12.9225998630854 + ], + [ + 77.616172615941593, + 12.922654722352 + ], + [ + 77.616322777848595, + 12.922913239726 + ], + [ + 77.616382814592299, + 12.923001266576 + ], + [ + 77.616230978889902, + 12.9230664203118 + ], + [ + 77.616183671005601, + 12.9230866144402 + ], + [ + 77.616070302714604, + 12.923139740091299 + ], + [ + 77.615919472688404, + 12.923240209647799 + ], + [ + 77.615797246571404, + 12.923302261376699 + ], + [ + 77.6151453719866, + 12.9235983534269 + ], + [ + 77.614751196980606, + 12.923770698342899 + ], + [ + 77.614953643265906, + 12.9243689635419 + ], + [ + 77.615002774767206, + 12.9245238420633 + ], + [ + 77.615122327344295, + 12.924881191267099 + ], + [ + 77.615142430230406, + 12.9249395524477 + ], + [ + 77.615223874220703, + 12.925190316260901 + ], + [ + 77.6148335373761, + 12.9252884061116 + ], + [ + 77.615054215904493, + 12.926053667871701 + ], + [ + 77.615499576691207, + 12.9259241715733 + ], + [ + 77.615651157067902, + 12.9265006519725 + ], + [ + 77.615701495434493, + 12.9267276012183 + ], + [ + 77.615257332105003, + 12.9268465878054 + ], + [ + 77.615440573879894, + 12.927406952377099 + ], + [ + 77.615899411188593, + 12.927287617824801 + ], + [ + 77.616041198507205, + 12.9276112785571 + ], + [ + 77.6161393413159, + 12.9277600847301 + ], + [ + 77.616602055433901, + 12.9269944764704 + ], + [ + 77.617340585421402, + 12.925772493154 + ], + [ + 77.617765829650907, + 12.9251264627813 + ], + [ + 77.618232044077999, + 12.9244181854469 + ], + [ + 77.618391527349104, + 12.924175896683799 + ], + [ + 77.618438988419697, + 12.9240594654372 + ], + [ + 77.618462270810596, + 12.9240023479014 + ], + [ + 77.619181953364603, + 12.9228410571881 + ], + [ + 77.619195380312703, + 12.922819391210201 + ], + [ + 77.619364675245293, + 12.9225462124204 + ], + [ + 77.619558779421695, + 12.922229569548399 + ], + [ + 77.619505028284493, + 12.922210799309999 + ], + [ + 77.619364251496705, + 12.922202267383501 + ], + [ + 77.619274666267998, + 12.922214212080601 + ], + [ + 77.619223474708804, + 12.922086233182601 + ], + [ + 77.619163751223098, + 12.9219736117523 + ], + [ + 77.6190631386185, + 12.921807686688499 + ], + [ + 77.618949268562503, + 12.9216840549932 + ], + [ + 77.618855372266196, + 12.9215823277474 + ], + [ + 77.618957412524495, + 12.921520177566499 + ], + [ + 77.619198448514297, + 12.921359999132701 + ], + [ + 77.619438111511798, + 12.921208438490099 + ], + [ + 77.619643050672394, + 12.9210878521257 + ], + [ + 77.619791975824896, + 12.920997916235899 + ], + [ + 77.619837609607401, + 12.9209341148931 + ], + [ + 77.619853130887194, + 12.920648603561199 + ], + [ + 77.619742215842194, + 12.9203209775822 + ], + [ + 77.619302159410907, + 12.9206454806852 + ], + [ + 77.619060349172898, + 12.920824789573199 + ], + [ + 77.6189270619914, + 12.920895445461101 + ], + [ + 77.618517552824301, + 12.921117071388601 + ], + [ + 77.618450806654593, + 12.9211534857179 + ], + [ + 77.618425888867407, + 12.9211290776769 + ], + [ + 77.618381006363407, + 12.9211088801848 + ], + [ + 77.618258889817596, + 12.9209654916377 + ], + [ + 77.618617405678904, + 12.9207611090296 + ], + [ + 77.618897169128502, + 12.9205993472422 + ], + [ + 77.619169560719399, + 12.9204316830506 + ], + [ + 77.619349911628603, + 12.9203175294271 + ], + [ + 77.619680368053494, + 12.920109842442701 + ], + [ + 77.620042349333701, + 12.9198874960359 + ], + [ + 77.620294040843504, + 12.9197212339134 + ], + [ + 77.620588209965405, + 12.9195390090921 + ], + [ + 77.620539593630795, + 12.9192000730053 + ], + [ + 77.620477858637599, + 12.9187345827967 + ], + [ + 77.620407889433395, + 12.918194119881401 + ], + [ + 77.620150813069699, + 12.9182177351466 + ], + [ + 77.6198431362576, + 12.918249506276 + ], + [ + 77.619467435624799, + 12.918301081357001 + ], + [ + 77.619032539541195, + 12.9183867951135 + ], + [ + 77.618735438534998, + 12.918416809333699 + ], + [ + 77.618332092862602, + 12.9183893150059 + ], + [ + 77.618223043049298, + 12.9181640280064 + ], + [ + 77.618190718385407, + 12.9179850788913 + ], + [ + 77.618147598772595, + 12.9177759038965 + ], + [ + 77.618048225406, + 12.917485394747199 + ], + [ + 77.618312320782593, + 12.917377916247901 + ], + [ + 77.618545292361304, + 12.917285943324 + ], + [ + 77.618716156596406, + 12.917196983574801 + ], + [ + 77.618798637177505, + 12.917161496567401 + ], + [ + 77.618780891696005, + 12.9168616906487 + ], + [ + 77.618770343270199, + 12.9165510563968 + ], + [ + 77.618761291650699, + 12.916248386144 + ], + [ + 77.618695515074904, + 12.916247817139601 + ], + [ + 77.618424471957994, + 12.916245471476699 + ], + [ + 77.617706131482606, + 12.916229800774399 + ], + [ + 77.617591862170201, + 12.916228126683301 + ], + [ + 77.617038538093993, + 12.916220020235601 + ], + [ + 77.616964523451799, + 12.916218935288599 + ], + [ + 77.616465771797195, + 12.9162422320652 + ], + [ + 77.615659927441101, + 12.9163326488123 + ], + [ + 77.615255892954906, + 12.916373891460299 + ], + [ + 77.615212707131803, + 12.916378299949899 + ], + [ + 77.615026519939406, + 12.916412184658901 + ], + [ + 77.614705009323103, + 12.916438278050499 + ], + [ + 77.614477809987505, + 12.916443684246101 + ], + [ + 77.614269253076699, + 12.916448646127799 + ], + [ + 77.614273171441397, + 12.916598374839101 + ], + [ + 77.614295847279294, + 12.917021234235101 + ], + [ + 77.614329564223596, + 12.9178312949506 + ], + [ + 77.613843700686303, + 12.917828907397899 + ], + [ + 77.613456391751598, + 12.9178423454256 + ], + [ + 77.613008195202497, + 12.917858782709899 + ], + [ + 77.612695151216201, + 12.9178666963513 + ], + [ + 77.612651711398797, + 12.9178654922212 + ], + [ + 77.612664631098099, + 12.917935287183999 + ], + [ + 77.612722691231397, + 12.9182344519763 + ], + [ + 77.612736926174904, + 12.918316026179699 + ], + [ + 77.6127717330873, + 12.918476307831201 + ], + [ + 77.612821318486695, + 12.9187454389574 + ], + [ + 77.612835248669498, + 12.918833210980599 + ], + [ + 77.612843084084204, + 12.918882585173399 + ], + [ + 77.612746835981199, + 12.9189064954128 + ], + [ + 77.612577571356695, + 12.9189387856102 + ], + [ + 77.612406536080101, + 12.9189883027811 + ], + [ + 77.612311381473404, + 12.9190236754404 + ], + [ + 77.612204412170499, + 12.919047693677999 + ], + [ + 77.612064326107202, + 12.9190739539603 + ], + [ + 77.612096010137705, + 12.9192151441811 + ], + [ + 77.612121657632798, + 12.9193382277968 + ], + [ + 77.612166936928105, + 12.919661902285901 + ], + [ + 77.612171847402493, + 12.9196801213272 + ], + [ + 77.612005619932006, + 12.919688443693699 + ], + [ + 77.611888724195694, + 12.9196938078556 + ], + [ + 77.611837984125202, + 12.9196961359031 + ], + [ + 77.611280349848798, + 12.9197339837598 + ], + [ + 77.610835928316703, + 12.919762331610899 + ], + [ + 77.610338717733399, + 12.9197986453837 + ], + [ + 77.610316464488093, + 12.919799783065001 + ], + [ + 77.610059608095497, + 12.9198129095835 + ], + [ + 77.609745169289795, + 12.919834617024501 + ], + [ + 77.609735429493696, + 12.9198351236434 + ], + [ + 77.608847178656106, + 12.919836619571001 + ], + [ + 77.608835888298401, + 12.919606068239901 + ], + [ + 77.608837084816102, + 12.919495582261799 + ], + [ + 77.608715931459301, + 12.919516058885501 + ], + [ + 77.608521403534198, + 12.919534829123901 + ], + [ + 77.608425845957001, + 12.9195484802063 + ], + [ + 77.608366122471296, + 12.919553599362301 + ], + [ + 77.608097793381702, + 12.919647023957801 + ], + [ + 77.6080389230886, + 12.9196862708199 + ], + [ + 77.608051796668803, + 12.9197247690088 + ], + [ + 77.608069544245197, + 12.919770892418599 + ], + [ + 77.607998887493906, + 12.919895819732901 + ], + [ + 77.6080132876683, + 12.9199702801016 + ], + [ + 77.608022218254405, + 12.9200164635907 + ], + [ + 77.608025043585101, + 12.920031071811 + ], + [ + 77.608041699769501, + 12.920027517550899 + ], + [ + 77.608045987735807, + 12.920040360313701 + ], + [ + 77.608049305194399, + 12.920050297408199 + ], + [ + 77.6080604207812, + 12.920083593190601 + ], + [ + 77.608085663240203, + 12.9201592047548 + ], + [ + 77.608112054994507, + 12.9202617060738 + ], + [ + 77.608202460221406, + 12.9205711648281 + ], + [ + 77.608211726972499, + 12.9206028837612 + ], + [ + 77.608370907355294, + 12.9208542531831 + ], + [ + 77.608383205309195, + 12.9208744574343 + ], + [ + 77.6083954924691, + 12.9208935334104 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "135", + "group": "CHIKKA ADUGODI", + "Corporatio": "South", + "ac_no": "172", + "ac": "B.T.M Layout", + "corporat_1": "4", + "ward_id": "20", + "ward_name": "20 - Chikka Adugodi", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬಿ.ಟಿ.ಎಂ. ಲೇಔಟ್", + "ward_name_": "ಚಿಕ್ಕ ಆಡುಗೋಡಿ", + "dig_ward_n": "CHIKKA ADUGODI", + "Assembly": "172 - B.T.M Layout", + "Slno": "20" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.609629514360506, + 12.9238528594167 + ], + [ + 77.609526442289805, + 12.924017627217101 + ], + [ + 77.609477410330499, + 12.924094727221799 + ], + [ + 77.609351192906999, + 12.924310799880301 + ], + [ + 77.609187720922094, + 12.9245730234703 + ], + [ + 77.608958309679295, + 12.9249345424788 + ], + [ + 77.6088117581468, + 12.925094452426301 + ], + [ + 77.608741952762799, + 12.925408414886601 + ], + [ + 77.608752959558004, + 12.9256234345028 + ], + [ + 77.608765666312706, + 12.925861383279599 + ], + [ + 77.608774602938794, + 12.925877070496099 + ], + [ + 77.608893876018598, + 12.9262218773023 + ], + [ + 77.608945707317105, + 12.926519671792001 + ], + [ + 77.609027016278802, + 12.927027519245 + ], + [ + 77.609055934337206, + 12.9271073460393 + ], + [ + 77.609088192566702, + 12.927322138445 + ], + [ + 77.608045591143906, + 12.9273409086834 + ], + [ + 77.608018288978997, + 12.9271839212351 + ], + [ + 77.607411669002303, + 12.9272376723723 + ], + [ + 77.607410815809601, + 12.927289717124101 + ], + [ + 77.607409109424296, + 12.9274492641504 + ], + [ + 77.607375834910798, + 12.927489364205099 + ], + [ + 77.607364001393606, + 12.9276679502712 + ], + [ + 77.607403141813904, + 12.9280032686636 + ], + [ + 77.607403818301506, + 12.9280093419772 + ], + [ + 77.607984378328695, + 12.9279694928133 + ], + [ + 77.608008294870999, + 12.928148766726901 + ], + [ + 77.608042705400607, + 12.928423310635001 + ], + [ + 77.608079368368905, + 12.928705958338799 + ], + [ + 77.608097939846303, + 12.9288515823583 + ], + [ + 77.608101394829902, + 12.9289495507903 + ], + [ + 77.608157359381593, + 12.9297179034164 + ], + [ + 77.6081693040787, + 12.9299559441667 + ], + [ + 77.608208153295905, + 12.9299600689413 + ], + [ + 77.608217592291098, + 12.9300061794857 + ], + [ + 77.608208618555295, + 12.930268248846501 + ], + [ + 77.608233337182995, + 12.9307709264452 + ], + [ + 77.6081436678556, + 12.930771823018899 + ], + [ + 77.607872134931199, + 12.930719081768 + ], + [ + 77.607270846781006, + 12.930639040838599 + ], + [ + 77.607104617390902, + 12.9305890713119 + ], + [ + 77.606768191593204, + 12.930559694103501 + ], + [ + 77.6067355644618, + 12.9309376913438 + ], + [ + 77.6069901085922, + 12.930951641404 + ], + [ + 77.607084127895604, + 12.9312052707515 + ], + [ + 77.607354722252694, + 12.931214518449 + ], + [ + 77.607349038265198, + 12.9313711412146 + ], + [ + 77.607339696271794, + 12.9317627190305 + ], + [ + 77.607331213600901, + 12.932118296569 + ], + [ + 77.607327160122296, + 12.9322422269319 + ], + [ + 77.607826271588806, + 12.932244886452899 + ], + [ + 77.608379725224196, + 12.932224054509399 + ], + [ + 77.608451089675597, + 12.9327596100406 + ], + [ + 77.608459324405104, + 12.932848447545901 + ], + [ + 77.608766092311797, + 12.9328209976193 + ], + [ + 77.609358862326204, + 12.9327376215663 + ], + [ + 77.610059567386799, + 12.9326756332489 + ], + [ + 77.610072397047702, + 12.9327845032734 + ], + [ + 77.609828389669602, + 12.9333166403606 + ], + [ + 77.609769729215202, + 12.933862220421201 + ], + [ + 77.609678229991601, + 12.934775051358001 + ], + [ + 77.610052363247107, + 12.9345292330134 + ], + [ + 77.610444240039001, + 12.934209791710799 + ], + [ + 77.610857175575504, + 12.933873181864399 + ], + [ + 77.611531602936296, + 12.9333850587696 + ], + [ + 77.612486235464004, + 12.932616419483599 + ], + [ + 77.612881647091598, + 12.9323011998125 + ], + [ + 77.612728184121707, + 12.9318815107678 + ], + [ + 77.612534077362099, + 12.931354238607 + ], + [ + 77.612514907702106, + 12.9313386549971 + ], + [ + 77.612500332551093, + 12.931343103086901 + ], + [ + 77.612393604753294, + 12.931063071282701 + ], + [ + 77.612288474032198, + 12.9307959306292 + ], + [ + 77.611627012266496, + 12.9311156857936 + ], + [ + 77.6115868571313, + 12.9310037423302 + ], + [ + 77.611732011700994, + 12.9309018958529 + ], + [ + 77.611653872926198, + 12.930301274068601 + ], + [ + 77.611530236550706, + 12.9295094358655 + ], + [ + 77.6114944024593, + 12.9290981970065 + ], + [ + 77.611609616284596, + 12.9285109701389 + ], + [ + 77.6115960670909, + 12.9282177733478 + ], + [ + 77.611338774201599, + 12.9282217833396 + ], + [ + 77.6113243181737, + 12.9278160512506 + ], + [ + 77.611292349397701, + 12.9269917112612 + ], + [ + 77.611267250168794, + 12.926400070186601 + ], + [ + 77.611253608777005, + 12.9260785192367 + ], + [ + 77.611795579466005, + 12.926044193902801 + ], + [ + 77.611848736019297, + 12.9263873681171 + ], + [ + 77.611860422107696, + 12.926437515716099 + ], + [ + 77.612650954916006, + 12.9263992954972 + ], + [ + 77.613009091787006, + 12.926391407243999 + ], + [ + 77.613024755935697, + 12.926351093142101 + ], + [ + 77.613179410600694, + 12.926319425998701 + ], + [ + 77.613182021079794, + 12.926289282380401 + ], + [ + 77.613202369150201, + 12.9262776051059 + ], + [ + 77.614599556396698, + 12.925939482153799 + ], + [ + 77.614826707352506, + 12.9266915884191 + ], + [ + 77.615651157067902, + 12.9265006519725 + ], + [ + 77.615499576691207, + 12.9259241715733 + ], + [ + 77.615054215904493, + 12.926053667871701 + ], + [ + 77.6148335373761, + 12.9252884061116 + ], + [ + 77.615223874220703, + 12.925190316260901 + ], + [ + 77.615142430230406, + 12.9249395524477 + ], + [ + 77.615122327344295, + 12.924881191267099 + ], + [ + 77.615002774767206, + 12.9245238420633 + ], + [ + 77.614953643265906, + 12.9243689635419 + ], + [ + 77.614751196980606, + 12.923770698342899 + ], + [ + 77.6151453719866, + 12.9235983534269 + ], + [ + 77.615797246571404, + 12.923302261376699 + ], + [ + 77.615919472688404, + 12.923240209647799 + ], + [ + 77.616070302714604, + 12.923139740091299 + ], + [ + 77.616183671005601, + 12.9230866144402 + ], + [ + 77.616230978889902, + 12.9230664203118 + ], + [ + 77.616382814592299, + 12.923001266576 + ], + [ + 77.616322777848595, + 12.922913239726 + ], + [ + 77.616172615941593, + 12.922654722352 + ], + [ + 77.616151276837698, + 12.9225998630854 + ], + [ + 77.616124410556694, + 12.9225753754352 + ], + [ + 77.616117158419101, + 12.922565563719701 + ], + [ + 77.616218688344901, + 12.9224525156931 + ], + [ + 77.615966569915699, + 12.9221931451264 + ], + [ + 77.6157721341947, + 12.9219941341499 + ], + [ + 77.615615481138704, + 12.9217921445792 + ], + [ + 77.615538693799905, + 12.921696587002 + ], + [ + 77.615202221816801, + 12.9212675024225 + ], + [ + 77.6151435741277, + 12.9211581351744 + ], + [ + 77.614976393963005, + 12.920828990588999 + ], + [ + 77.614889759857803, + 12.920652975230301 + ], + [ + 77.615084505710399, + 12.9205724273901 + ], + [ + 77.615274665473095, + 12.920487338689099 + ], + [ + 77.615494978195599, + 12.920396211927301 + ], + [ + 77.615621111595601, + 12.920340449107901 + ], + [ + 77.615576257339896, + 12.9202686309611 + ], + [ + 77.615489384843997, + 12.920116521913799 + ], + [ + 77.615251462051205, + 12.9202013709893 + ], + [ + 77.615030679399396, + 12.9203063352542 + ], + [ + 77.615005936812395, + 12.920260262850899 + ], + [ + 77.614912085620503, + 12.920023928485801 + ], + [ + 77.614552038320696, + 12.920175796778199 + ], + [ + 77.614174927167795, + 12.920343022538299 + ], + [ + 77.613727854217203, + 12.9205512015458 + ], + [ + 77.613372926073296, + 12.920711601764699 + ], + [ + 77.613321734514102, + 12.9207337847737 + ], + [ + 77.613274944564395, + 12.920627973295 + ], + [ + 77.6131162874659, + 12.920696250587801 + ], + [ + 77.612879812517804, + 12.920803313831399 + ], + [ + 77.6128570925856, + 12.920800672869801 + ], + [ + 77.612807259343896, + 12.920710748572001 + ], + [ + 77.612725352849196, + 12.9205571738943 + ], + [ + 77.612626382501304, + 12.9203797098224 + ], + [ + 77.612515467456305, + 12.9201681180443 + ], + [ + 77.612378956631801, + 12.919937756027799 + ], + [ + 77.612149447807994, + 12.9200606157699 + ], + [ + 77.612099533040194, + 12.920449776899201 + ], + [ + 77.612072054162496, + 12.920525585492699 + ], + [ + 77.611986127833504, + 12.920698547921599 + ], + [ + 77.611876432704094, + 12.9208354159849 + ], + [ + 77.611773450154104, + 12.9209616991742 + ], + [ + 77.611698039810307, + 12.921052409618399 + ], + [ + 77.6116064967337, + 12.9211607916627 + ], + [ + 77.611569121876997, + 12.921198813167599 + ], + [ + 77.611418622500295, + 12.921348720154599 + ], + [ + 77.611378799687003, + 12.921385690151199 + ], + [ + 77.611276030493102, + 12.921485677769599 + ], + [ + 77.611196632600098, + 12.921569990200901 + ], + [ + 77.611096547699603, + 12.921659408837501 + ], + [ + 77.611078178285595, + 12.921673934486799 + ], + [ + 77.610873087834406, + 12.9218232300551 + ], + [ + 77.610752461384294, + 12.9219116552178 + ], + [ + 77.610591338072297, + 12.92207102765 + ], + [ + 77.610455247149702, + 12.922200510035699 + ], + [ + 77.610400757092805, + 12.922209660137099 + ], + [ + 77.610370633353398, + 12.9222185665443 + ], + [ + 77.610343728856904, + 12.9222346826239 + ], + [ + 77.610346397739207, + 12.922237411385099 + ], + [ + 77.610353126297596, + 12.922259534970101 + ], + [ + 77.610321434883801, + 12.922361205573401 + ], + [ + 77.6103189321488, + 12.922369234062201 + ], + [ + 77.610290873268198, + 12.922483054664101 + ], + [ + 77.610248437227796, + 12.9225617619066 + ], + [ + 77.610207729808394, + 12.9226308908914 + ], + [ + 77.610129496987298, + 12.9227822637024 + ], + [ + 77.610076500154094, + 12.922899919393799 + ], + [ + 77.610043848188099, + 12.922982114484199 + ], + [ + 77.610019649324499, + 12.9230570536374 + ], + [ + 77.610011393909701, + 12.923073318379201 + ], + [ + 77.6099560843126, + 12.9232615114894 + ], + [ + 77.609927907106695, + 12.9233332155026 + ], + [ + 77.609908165141505, + 12.923403209898 + ], + [ + 77.609904841107095, + 12.923408870586099 + ], + [ + 77.609832699608603, + 12.923531719086199 + ], + [ + 77.609818956774106, + 12.923557552691401 + ], + [ + 77.609629514360506, + 12.9238528594167 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "136", + "group": "LAKSHMIDEVI WARD", + "Corporatio": "South", + "ac_no": "172", + "ac": "B.T.M Layout", + "corporat_1": "4", + "ward_id": "18", + "ward_name": "18 - Annie Besant Ward", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬಿ.ಟಿ.ಎಂ. ಲೇಔಟ್", + "ward_name_": "ಆನಿ ಬೆಸೆಂಟ್ ವಾರ್ಡ್", + "dig_ward_n": "LAKSHMIDEVI WARD", + "Assembly": "172 - B.T.M Layout", + "Slno": "18" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6187152715775, + 12.9421280933869 + ], + [ + 77.618531790530596, + 12.942107731686599 + ], + [ + 77.617881657728503, + 12.942079576329 + ], + [ + 77.617870566223999, + 12.9421964637225 + ], + [ + 77.617423493273506, + 12.942220353116801 + ], + [ + 77.617458652389899, + 12.942623878391201 + ], + [ + 77.617461883047099, + 12.942657096363501 + ], + [ + 77.617531646622595, + 12.943374509828301 + ], + [ + 77.617547806977797, + 12.9435647236399 + ], + [ + 77.617478651021898, + 12.9435987327793 + ], + [ + 77.617472976300206, + 12.943602442305499 + ], + [ + 77.617592140799502, + 12.9438909543059 + ], + [ + 77.617677720201499, + 12.9441679442519 + ], + [ + 77.617754317171503, + 12.9444645489242 + ], + [ + 77.617770072805499, + 12.9446536287053 + ], + [ + 77.616965153144093, + 12.9449966348601 + ], + [ + 77.617110051622404, + 12.945318082344 + ], + [ + 77.617262773107399, + 12.9452557992803 + ], + [ + 77.617333588097694, + 12.945446061242 + ], + [ + 77.617425626255098, + 12.9457662217853 + ], + [ + 77.617800619922804, + 12.9456015299571 + ], + [ + 77.618092411810395, + 12.9454462488941 + ], + [ + 77.618156065815796, + 12.9456448551303 + ], + [ + 77.6182682606497, + 12.945986985384399 + ], + [ + 77.618480598971303, + 12.945913824114401 + ], + [ + 77.6185654558236, + 12.9458799461319 + ], + [ + 77.618647824731397, + 12.945764515400001 + ], + [ + 77.618744158926702, + 12.945699597339701 + ], + [ + 77.619110697897099, + 12.9454545683472 + ], + [ + 77.619289662506205, + 12.9453323716157 + ], + [ + 77.619754822967394, + 12.9450147645149 + ], + [ + 77.620032532546404, + 12.944808772651999 + ], + [ + 77.620182125218093, + 12.944697811183101 + ], + [ + 77.620481849520004, + 12.9444808749309 + ], + [ + 77.620687198452302, + 12.9443307106262 + ], + [ + 77.620864646229506, + 12.9441863123659 + ], + [ + 77.620945350124998, + 12.9441055147184 + ], + [ + 77.620969799379907, + 12.9440810373245 + ], + [ + 77.621119459710897, + 12.9439533741856 + ], + [ + 77.621577158364104, + 12.9435643657757 + ], + [ + 77.6217790925987, + 12.9433927356542 + ], + [ + 77.622007441446002, + 12.9431827371096 + ], + [ + 77.622526867483302, + 12.9427050503626 + ], + [ + 77.622792965571193, + 12.942465417934001 + ], + [ + 77.622824667683403, + 12.9424368680078 + ], + [ + 77.623463154110198, + 12.9418618816917 + ], + [ + 77.623911550877196, + 12.9414240404497 + ], + [ + 77.623984101695399, + 12.941348898341399 + ], + [ + 77.624071987795801, + 12.9412578733477 + ], + [ + 77.624184516004505, + 12.9411481009822 + ], + [ + 77.624719675293505, + 12.940626043326899 + ], + [ + 77.625101544946702, + 12.9402437215704 + ], + [ + 77.625239785083394, + 12.9400942278504 + ], + [ + 77.625333523598997, + 12.9399671262503 + ], + [ + 77.625422911711496, + 12.939876159028801 + ], + [ + 77.625487754353202, + 12.939929910166001 + ], + [ + 77.625615733251195, + 12.940027174128501 + ], + [ + 77.625696786553306, + 12.9401261444763 + ], + [ + 77.625800022864397, + 12.940236206328599 + ], + [ + 77.625863159120797, + 12.9403053149336 + ], + [ + 77.625917763450602, + 12.9403445617956 + ], + [ + 77.625987725248194, + 12.940388927813601 + ], + [ + 77.626177987209999, + 12.940464008767099 + ], + [ + 77.626241976659003, + 12.940478513042301 + ], + [ + 77.626340093814207, + 12.9405083747851 + ], + [ + 77.626558937729797, + 12.9405808961607 + ], + [ + 77.626889123286801, + 12.940725512315501 + ], + [ + 77.627004811883296, + 12.9407616927109 + ], + [ + 77.626993212790495, + 12.940982749900501 + ], + [ + 77.626991506405204, + 12.941036501037701 + ], + [ + 77.626985534056601, + 12.941120113917799 + ], + [ + 77.626971882974203, + 12.941200314027199 + ], + [ + 77.626926988356502, + 12.941305618764799 + ], + [ + 77.626745974818206, + 12.9414867054236 + ], + [ + 77.626551535522594, + 12.941562256991 + ], + [ + 77.626165812996504, + 12.9417223392353 + ], + [ + 77.626155992059793, + 12.941808045373801 + ], + [ + 77.626147576359998, + 12.9418817223102 + ], + [ + 77.626125002318304, + 12.9419829820215 + ], + [ + 77.626107303598801, + 12.9422791977639 + ], + [ + 77.626612393649793, + 12.942289436075701 + ], + [ + 77.626863232289907, + 12.942318444625901 + ], + [ + 77.627343137111197, + 12.942335705123 + ], + [ + 77.627396770894904, + 12.9423375548932 + ], + [ + 77.627450528979494, + 12.942351354671899 + ], + [ + 77.627570141925204, + 12.9423704657169 + ], + [ + 77.627621388918897, + 12.942377120371299 + ], + [ + 77.627749179391401, + 12.94236268551 + ], + [ + 77.627915920585906, + 12.9423442722078 + ], + [ + 77.628075251800794, + 12.9423163726875 + ], + [ + 77.628144075075795, + 12.942465430455901 + ], + [ + 77.628154539371295, + 12.942483537404399 + ], + [ + 77.628180135150899, + 12.942472445899901 + ], + [ + 77.628410070570993, + 12.942404190487601 + ], + [ + 77.629064719885307, + 12.942239772607 + ], + [ + 77.629313626575893, + 12.942249495524599 + ], + [ + 77.629305848241799, + 12.9424770117965 + ], + [ + 77.629484749925695, + 12.942817313912499 + ], + [ + 77.629508084927906, + 12.943013716848 + ], + [ + 77.629862971420394, + 12.9430370518503 + ], + [ + 77.629867832879199, + 12.943082749563001 + ], + [ + 77.629935893302402, + 12.9430759435207 + ], + [ + 77.630566939119902, + 12.943098198841099 + ], + [ + 77.630759844770907, + 12.942669468113699 + ], + [ + 77.630805196952096, + 12.942559633270999 + ], + [ + 77.630867074081294, + 12.9424097839035 + ], + [ + 77.630938965619194, + 12.9422356816166 + ], + [ + 77.630964913962998, + 12.9421728421122 + ], + [ + 77.631171912036507, + 12.941671554877599 + ], + [ + 77.631263423889806, + 12.9414504243266 + ], + [ + 77.631276918433201, + 12.941419797934801 + ], + [ + 77.631437802587001, + 12.9410682415657 + ], + [ + 77.631437867426996, + 12.941068100882299 + ], + [ + 77.631438460254998, + 12.941066752426901 + ], + [ + 77.631438908248995, + 12.941065733372399 + ], + [ + 77.631530574131901, + 12.9408571216354 + ], + [ + 77.631689238346297, + 12.9404960367689 + ], + [ + 77.631692560457196, + 12.940488475096499 + ], + [ + 77.631950985460804, + 12.939880579954099 + ], + [ + 77.631975679980698, + 12.9398317071892 + ], + [ + 77.632018640053502, + 12.939746688789301 + ], + [ + 77.632051930036496, + 12.9396808101388 + ], + [ + 77.632130878332205, + 12.9395241735646 + ], + [ + 77.632394243390195, + 12.939003182714901 + ], + [ + 77.632638956570204, + 12.9385206549678 + ], + [ + 77.632644652350606, + 12.9385094240569 + ], + [ + 77.632653861869997, + 12.9385093310564 + ], + [ + 77.632656920029106, + 12.9385025128437 + ], + [ + 77.632856357709102, + 12.9380578380557 + ], + [ + 77.632890298205595, + 12.937981456097701 + ], + [ + 77.632885452535405, + 12.937973075078601 + ], + [ + 77.632429476763207, + 12.938150824999299 + ], + [ + 77.632104410362203, + 12.938248088961799 + ], + [ + 77.631682079998598, + 12.9383666827407 + ], + [ + 77.631668884792305, + 12.9382837550323 + ], + [ + 77.631655541154501, + 12.9381268477854 + ], + [ + 77.631649216480596, + 12.938077223944701 + ], + [ + 77.631626606875301, + 12.9379859323308 + ], + [ + 77.631612971393693, + 12.9378786565428 + ], + [ + 77.631593478393398, + 12.937855698945899 + ], + [ + 77.631558351462999, + 12.9377419192319 + ], + [ + 77.631429519372304, + 12.9376028488293 + ], + [ + 77.631240110603102, + 12.937491933784401 + ], + [ + 77.631107012549194, + 12.9373724868128 + ], + [ + 77.631009748586706, + 12.937268397309101 + ], + [ + 77.630890831187202, + 12.937151442225501 + ], + [ + 77.630861448189805, + 12.9371381134407 + ], + [ + 77.630797980825903, + 12.9370813871283 + ], + [ + 77.630697922272603, + 12.9369815244675 + ], + [ + 77.630836992675199, + 12.9368740221931 + ], + [ + 77.630915486399303, + 12.936825390211901 + ], + [ + 77.630759458947196, + 12.936614953504099 + ], + [ + 77.630626933191806, + 12.936456380186399 + ], + [ + 77.630449409442093, + 12.9362595386288 + ], + [ + 77.6303339449493, + 12.936124456977399 + ], + [ + 77.630267444792594, + 12.9360764151397 + ], + [ + 77.630125490195596, + 12.9362572614071 + ], + [ + 77.6297921750634, + 12.9361412223017 + ], + [ + 77.629735762788002, + 12.936364489951201 + ], + [ + 77.629679539847103, + 12.936487439700601 + ], + [ + 77.629572792443895, + 12.93671894003 + ], + [ + 77.629447916352504, + 12.9369879115714 + ], + [ + 77.629348845092494, + 12.937207860208201 + ], + [ + 77.629255431340198, + 12.937409586843099 + ], + [ + 77.6291762768073, + 12.937576748707301 + ], + [ + 77.629156327905307, + 12.937627458838 + ], + [ + 77.629143045680607, + 12.9376612223572 + ], + [ + 77.628887019253696, + 12.937600700561299 + ], + [ + 77.628872559460603, + 12.9376161438695 + ], + [ + 77.628863359243994, + 12.9376869893105 + ], + [ + 77.628772806781001, + 12.938115285848101 + ], + [ + 77.628685389946298, + 12.9383578905547 + ], + [ + 77.628440680203099, + 12.938238705701 + ], + [ + 77.627858596719307, + 12.937924673373301 + ], + [ + 77.627526028724006, + 12.9377500525756 + ], + [ + 77.626303936917097, + 12.936768799943801 + ], + [ + 77.625695791198794, + 12.936290890705401 + ], + [ + 77.625457605007696, + 12.936089158133701 + ], + [ + 77.624883954760307, + 12.936702530421201 + ], + [ + 77.624521745980502, + 12.9371530652628 + ], + [ + 77.624376364776296, + 12.9373338975505 + ], + [ + 77.624364536860995, + 12.937346683414299 + ], + [ + 77.624104068398097, + 12.9376282540488 + ], + [ + 77.623537768915298, + 12.9382386980374 + ], + [ + 77.622549566165702, + 12.9392860300102 + ], + [ + 77.622248374863304, + 12.9396141404081 + ], + [ + 77.622853211321299, + 12.9401965801424 + ], + [ + 77.621935191522397, + 12.9411811388186 + ], + [ + 77.622863465129598, + 12.941803969455799 + ], + [ + 77.622410534520299, + 12.942312842862499 + ], + [ + 77.621223496305703, + 12.9413675592793 + ], + [ + 77.6207504565389, + 12.9417055070726 + ], + [ + 77.620260654900704, + 12.9418703824749 + ], + [ + 77.619753585749194, + 12.9421413136912 + ], + [ + 77.619700980484495, + 12.942272506648401 + ], + [ + 77.618730933323207, + 12.942308162644199 + ], + [ + 77.6187152715775, + 12.9421280933869 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "137", + "group": "JAKKASANDRA", + "Corporatio": "South", + "ac_no": "172", + "ac": "B.T.M Layout", + "corporat_1": "4", + "ward_id": "28", + "ward_name": "28 - Jakkasandra", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬಿ.ಟಿ.ಎಂ. ಲೇಔಟ್", + "ward_name_": "ಜಕ್ಕಸಂದ್ರ", + "dig_ward_n": "JAKKASANDRA", + "Assembly": "172 - B.T.M Layout", + "Slno": "28" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.630314608966899, + 12.916681385221001 + ], + [ + 77.630316327734107, + 12.9166980146877 + ], + [ + 77.630544157362706, + 12.9179151180417 + ], + [ + 77.630771960092204, + 12.9188342246358 + ], + [ + 77.631211691904696, + 12.918689260722299 + ], + [ + 77.632113772930794, + 12.918415011355 + ], + [ + 77.632285171278298, + 12.9190552012093 + ], + [ + 77.632701091068199, + 12.9190370020439 + ], + [ + 77.632808043161802, + 12.919649545852799 + ], + [ + 77.6321832825831, + 12.9197862723484 + ], + [ + 77.632541080762195, + 12.921108628963999 + ], + [ + 77.632504795778303, + 12.921262186194699 + ], + [ + 77.632269993849306, + 12.9213197480495 + ], + [ + 77.631889520748899, + 12.921502683321 + ], + [ + 77.631516361025106, + 12.9219051696394 + ], + [ + 77.631439105573406, + 12.921974072177999 + ], + [ + 77.631399378897896, + 12.922019888165901 + ], + [ + 77.6312959477346, + 12.922148810832301 + ], + [ + 77.630877261071205, + 12.922656186581399 + ], + [ + 77.630511575518, + 12.923105660994199 + ], + [ + 77.630304861578395, + 12.923377847013599 + ], + [ + 77.629955413111304, + 12.9238654015839 + ], + [ + 77.629779972845895, + 12.9240990271035 + ], + [ + 77.629735226623595, + 12.924210672018001 + ], + [ + 77.629749475219697, + 12.9242118862713 + ], + [ + 77.630140074416204, + 12.924272376096299 + ], + [ + 77.630411348195906, + 12.924305877922899 + ], + [ + 77.631320288562094, + 12.9244738823155 + ], + [ + 77.631607925244396, + 12.924521384257201 + ], + [ + 77.632101570225402, + 12.924602905807699 + ], + [ + 77.632218973064894, + 12.924621918348199 + ], + [ + 77.632710126384794, + 12.9247014555178 + ], + [ + 77.633442153323301, + 12.924830969815901 + ], + [ + 77.633538972201507, + 12.924845880167 + ], + [ + 77.634130588253697, + 12.9249369869602 + ], + [ + 77.634988090776503, + 12.925069036121799 + ], + [ + 77.6355186191401, + 12.9251643402167 + ], + [ + 77.635975061700293, + 12.9252402599421 + ], + [ + 77.636373784673694, + 12.925292602070201 + ], + [ + 77.636546465848497, + 12.9253190429129 + ], + [ + 77.636694269414207, + 12.925321577831401 + ], + [ + 77.636702036289705, + 12.925321499353799 + ], + [ + 77.636833819916404, + 12.9253201677574 + ], + [ + 77.636919970210897, + 12.925315268920601 + ], + [ + 77.637059099698007, + 12.9252736007385 + ], + [ + 77.637255353078601, + 12.9251991387153 + ], + [ + 77.637389563863394, + 12.9251262160588 + ], + [ + 77.637406372834405, + 12.9251170834542 + ], + [ + 77.637586633584405, + 12.925030505525299 + ], + [ + 77.637671848018996, + 12.9249895771309 + ], + [ + 77.638136583006201, + 12.924682893330001 + ], + [ + 77.638158249975902, + 12.9246684835508 + ], + [ + 77.638186938369401, + 12.9246494053418 + ], + [ + 77.638511609687498, + 12.9244334858782 + ], + [ + 77.638756648688599, + 12.924314240985 + ], + [ + 77.639192333009305, + 12.924147077303401 + ], + [ + 77.639276357238302, + 12.9241441012956 + ], + [ + 77.639277581881601, + 12.9241368995662 + ], + [ + 77.639281520134404, + 12.924112882649901 + ], + [ + 77.639290565450807, + 12.924057720971399 + ], + [ + 77.6398857754548, + 12.923840529251301 + ], + [ + 77.639924770016506, + 12.9238265827861 + ], + [ + 77.639645962446295, + 12.9232591268257 + ], + [ + 77.639243522905304, + 12.9224298029437 + ], + [ + 77.639118799837107, + 12.922173592794 + ], + [ + 77.638977006327195, + 12.9218814187969 + ], + [ + 77.638872277066696, + 12.921665661457 + ], + [ + 77.638864632440203, + 12.9216499272914 + ], + [ + 77.638794841764096, + 12.921472209708 + ], + [ + 77.638720916503004, + 12.9212843714414 + ], + [ + 77.638636922270805, + 12.9210695308536 + ], + [ + 77.638628010188199, + 12.9210375571678 + ], + [ + 77.6386052199191, + 12.920955795993301 + ], + [ + 77.638581553777996, + 12.920869647681201 + ], + [ + 77.638513649431104, + 12.920622460431201 + ], + [ + 77.638465441276495, + 12.920448477816601 + ], + [ + 77.638448435396796, + 12.920387104988601 + ], + [ + 77.638403674808501, + 12.9201452803518 + ], + [ + 77.638399615951897, + 12.920123350475199 + ], + [ + 77.638327621218494, + 12.919735613254399 + ], + [ + 77.6383245833687, + 12.919683133321399 + ], + [ + 77.6382622243122, + 12.918605882959501 + ], + [ + 77.638231295400701, + 12.9179806137447 + ], + [ + 77.638229340381301, + 12.917941080449999 + ], + [ + 77.638208641612295, + 12.9175248524064 + ], + [ + 77.638195045039595, + 12.9172514483918 + ], + [ + 77.638170458908803, + 12.915950179796701 + ], + [ + 77.6381704339544, + 12.9159488556511 + ], + [ + 77.638170427767903, + 12.9159485295829 + ], + [ + 77.638143929184395, + 12.915946538776501 + ], + [ + 77.638081500177293, + 12.9159523568641 + ], + [ + 77.637478033622003, + 12.9160086002029 + ], + [ + 77.637476889060494, + 12.916008706621501 + ], + [ + 77.637095272183103, + 12.916044180273101 + ], + [ + 77.636292297835197, + 12.916118819887901 + ], + [ + 77.635349488603296, + 12.9162311404499 + ], + [ + 77.634806339807596, + 12.9162958470422 + ], + [ + 77.634179595023397, + 12.916370511207401 + ], + [ + 77.633752789418395, + 12.9164077693697 + ], + [ + 77.633638445429398, + 12.916417752623 + ], + [ + 77.632419261819194, + 12.9165226463472 + ], + [ + 77.632353200343502, + 12.9165276285873 + ], + [ + 77.632281489669495, + 12.9165330368611 + ], + [ + 77.632217400354506, + 12.916537871156001 + ], + [ + 77.631725326651704, + 12.916574986325401 + ], + [ + 77.630314608966899, + 12.916681385221001 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "138", + "group": "MANJUNATHA NAGARA", + "Corporatio": "West", + "ac_no": "165", + "ac": "Rajajinagar", + "corporat_1": "5", + "ward_id": "54", + "ward_name": "54 - Manjunatha Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜಾಜಿನಗರ", + "ward_name_": "ಮಂಜುನಾಥ ನಗರ", + "dig_ward_n": "MANJUNATHA NAGARA", + "Assembly": "165 - Rajajinagar", + "Slno": "54" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.545705810714907, + 12.994094719602 + ], + [ + 77.545712708184396, + 12.994149989186599 + ], + [ + 77.545727769786097, + 12.9942718092419 + ], + [ + 77.545744028989205, + 12.9943981348744 + ], + [ + 77.545787113009695, + 12.994564944299601 + ], + [ + 77.545389662935804, + 12.994631110939901 + ], + [ + 77.545462857009596, + 12.9949042821269 + ], + [ + 77.545291688668897, + 12.994941242351601 + ], + [ + 77.545290083399493, + 12.995067251698901 + ], + [ + 77.5452696988486, + 12.995182764009799 + ], + [ + 77.545254169046302, + 12.995185750005801 + ], + [ + 77.544863707805305, + 12.9952610752908 + ], + [ + 77.544646356962801, + 12.9953094176515 + ], + [ + 77.544661405775202, + 12.9959778865895 + ], + [ + 77.544374194310507, + 12.9960649951137 + ], + [ + 77.544362889595007, + 12.996089955860899 + ], + [ + 77.544072553333706, + 12.996218358619901 + ], + [ + 77.544120760598801, + 12.9964122292567 + ], + [ + 77.544141887821397, + 12.9965553010048 + ], + [ + 77.544144451909403, + 12.9965726648777 + ], + [ + 77.544162394664994, + 12.9966941777109 + ], + [ + 77.544175746557897, + 12.9967845957857 + ], + [ + 77.544154466931104, + 12.9968493460681 + ], + [ + 77.544007669785699, + 12.9969407334493 + ], + [ + 77.543940178004306, + 12.997210820786499 + ], + [ + 77.543918315011695, + 12.9972903805388 + ], + [ + 77.543914544481694, + 12.9974002805171 + ], + [ + 77.543704161261601, + 12.997521796195601 + ], + [ + 77.543266533672906, + 12.9976917485765 + ], + [ + 77.543275026650207, + 12.997713652121501 + ], + [ + 77.543275127891306, + 12.997713913134801 + ], + [ + 77.543383456908103, + 12.997993283141399 + ], + [ + 77.543434947585098, + 12.9981260715 + ], + [ + 77.543443533228697, + 12.9981223428027 + ], + [ + 77.543457538111895, + 12.9981162616902 + ], + [ + 77.543458660854597, + 12.9981157745638 + ], + [ + 77.543505252688306, + 12.9980955448295 + ], + [ + 77.543588239940505, + 12.998059511036599 + ], + [ + 77.5436565912172, + 12.998029832856099 + ], + [ + 77.543875650704393, + 12.9979347161807 + ], + [ + 77.543957042707603, + 12.9978993755186 + ], + [ + 77.544020291117604, + 12.997871912867399 + ], + [ + 77.544806071020702, + 12.9975671974095 + ], + [ + 77.545058026979504, + 12.997495368567799 + ], + [ + 77.545060423753299, + 12.9974946855426 + ], + [ + 77.545080928231997, + 12.997492193346501 + ], + [ + 77.545172482938, + 12.9974810658672 + ], + [ + 77.545193849475496, + 12.997478273392099 + ], + [ + 77.545386494189799, + 12.9974530915737 + ], + [ + 77.545468806322603, + 12.997450025879299 + ], + [ + 77.545798619038194, + 12.9974366279805 + ], + [ + 77.545888991916797, + 12.9974334831108 + ], + [ + 77.546292763862098, + 12.9974246102457 + ], + [ + 77.546293696775095, + 12.997424572185 + ], + [ + 77.546317032580902, + 12.997424080401499 + ], + [ + 77.546393921780606, + 12.997422374916599 + ], + [ + 77.546407822273693, + 12.9974220605943 + ], + [ + 77.546410787331695, + 12.997421993566601 + ], + [ + 77.546587090773102, + 12.997418002896699 + ], + [ + 77.546618400264606, + 12.9974172946423 + ], + [ + 77.546641017360201, + 12.9974182409662 + ], + [ + 77.546732484871498, + 12.997422067035 + ], + [ + 77.547028500730903, + 12.9974344496841 + ], + [ + 77.547029333045202, + 12.9974344848847 + ], + [ + 77.547186984422297, + 12.9974410792735 + ], + [ + 77.547365124130394, + 12.997448029970499 + ], + [ + 77.548412832315407, + 12.997488903588501 + ], + [ + 77.548427435052702, + 12.9974895128307 + ], + [ + 77.548434093526396, + 12.997489790785901 + ], + [ + 77.548434145143005, + 12.997489792989599 + ], + [ + 77.548924308730093, + 12.9975102418046 + ], + [ + 77.548928762457507, + 12.9975104275569 + ], + [ + 77.548960676841901, + 12.997511758518 + ], + [ + 77.549257923461298, + 12.997523521175699 + ], + [ + 77.549269224429906, + 12.997524065217 + ], + [ + 77.549355286040694, + 12.997528211755901 + ], + [ + 77.549595554578502, + 12.997542792178301 + ], + [ + 77.550094539272905, + 12.997574029789501 + ], + [ + 77.5502679840166, + 12.997585877969399 + ], + [ + 77.550282135329596, + 12.997586851117299 + ], + [ + 77.550510086676994, + 12.996603387726999 + ], + [ + 77.550603793131501, + 12.996199105138601 + ], + [ + 77.550823389956605, + 12.9952516798489 + ], + [ + 77.551021297738203, + 12.994397824129599 + ], + [ + 77.551059544292002, + 12.9937578951302 + ], + [ + 77.551076339581499, + 12.9934615415933 + ], + [ + 77.550782037754402, + 12.993487708675101 + ], + [ + 77.550406890884403, + 12.9934948809896 + ], + [ + 77.5499880553879, + 12.9934902748124 + ], + [ + 77.5499346851729, + 12.9934881830973 + ], + [ + 77.549802197648901, + 12.993487740140299 + ], + [ + 77.549739954645901, + 12.993487479354901 + ], + [ + 77.549007133936101, + 12.993478198659499 + ], + [ + 77.547633152555605, + 12.9934364404627 + ], + [ + 77.547241312627307, + 12.9934197939639 + ], + [ + 77.5457772633075, + 12.993380744840801 + ], + [ + 77.545708356211705, + 12.993892544456999 + ], + [ + 77.545704475350405, + 12.993963730334601 + ], + [ + 77.545704601979196, + 12.993976151730701 + ], + [ + 77.545704901063004, + 12.994005489713199 + ], + [ + 77.545705141069206, + 12.994029032549699 + ], + [ + 77.545705810714907, + 12.994094719602 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "139", + "group": "SG PALYA", + "Corporatio": "South", + "ac_no": "172", + "ac": "B.T.M Layout", + "corporat_1": "4", + "ward_id": "13", + "ward_name": "13 - SG Palya", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬಿ.ಟಿ.ಎಂ. ಲೇಔಟ್", + "ward_name_": "ಎಸ್.ಜಿ. ಪಾಳ್ಯ", + "dig_ward_n": "SG PALYA", + "Assembly": "172 - B.T.M Layout", + "Slno": "13" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.604368719409393, + 12.927336365862599 + ], + [ + 77.604435342841697, + 12.9275134383234 + ], + [ + 77.604736163212806, + 12.9274347730627 + ], + [ + 77.6047363500834, + 12.927435404407801 + ], + [ + 77.604914458236905, + 12.928037143262401 + ], + [ + 77.604915130044901, + 12.9280394129598 + ], + [ + 77.604883789786101, + 12.9280402372979 + ], + [ + 77.604638321075697, + 12.928046693695 + ], + [ + 77.604586530236702, + 12.928048340015801 + ], + [ + 77.604342907147199, + 12.9280567183703 + ], + [ + 77.604123877782897, + 12.9280642511471 + ], + [ + 77.603975987771904, + 12.9280691150951 + ], + [ + 77.603859682859294, + 12.9280613924343 + ], + [ + 77.603798567248802, + 12.9280573343467 + ], + [ + 77.603509392445801, + 12.928036283214601 + ], + [ + 77.603498430125001, + 12.928035485181301 + ], + [ + 77.603487494020797, + 12.9280355943104 + ], + [ + 77.603418836442003, + 12.9280204693745 + ], + [ + 77.603399380449403, + 12.928015099872701 + ], + [ + 77.603395672541893, + 12.928014076557099 + ], + [ + 77.603320117823003, + 12.9279932221939 + ], + [ + 77.603291256631195, + 12.9279856051488 + ], + [ + 77.603192236590502, + 12.9279340857234 + ], + [ + 77.603071904086207, + 12.927871476962901 + ], + [ + 77.602856016927305, + 12.9277584432735 + ], + [ + 77.602754152165701, + 12.9277052535761 + ], + [ + 77.602560285165893, + 12.927603674067001 + ], + [ + 77.602301540450597, + 12.927468100279601 + ], + [ + 77.602181283683393, + 12.9274016533939 + ], + [ + 77.601837794448699, + 12.9272118591331 + ], + [ + 77.601534892117996, + 12.927034192970099 + ], + [ + 77.601526787150405, + 12.9270297566189 + ], + [ + 77.601459936947094, + 12.926999748854101 + ], + [ + 77.601305285808195, + 12.926930328844801 + ], + [ + 77.601271644598796, + 12.926905819835699 + ], + [ + 77.601229734639901, + 12.9268610660205 + ], + [ + 77.601153434755204, + 12.9267195360159 + ], + [ + 77.601122039749399, + 12.9266340228797 + ], + [ + 77.601121569636007, + 12.9266328296143 + ], + [ + 77.601118134896694, + 12.9266241158697 + ], + [ + 77.601111398491298, + 12.926607025977299 + ], + [ + 77.600434513569397, + 12.926613772710899 + ], + [ + 77.600441474088797, + 12.926730020359701 + ], + [ + 77.600496250254196, + 12.9282946722321 + ], + [ + 77.600503261491696, + 12.9285006085637 + ], + [ + 77.600510316725604, + 12.9287078535263 + ], + [ + 77.600512617625597, + 12.928763165861801 + ], + [ + 77.600520550130696, + 12.928763086791401 + ], + [ + 77.600521827025105, + 12.9287630740635 + ], + [ + 77.600539339313698, + 12.9290644202525 + ], + [ + 77.600544551530604, + 12.9291547486315 + ], + [ + 77.600581730512999, + 12.9297991197373 + ], + [ + 77.600589156990395, + 12.9299278313625 + ], + [ + 77.600599169134696, + 12.930116323160901 + ], + [ + 77.600606225770903, + 12.9301720953912 + ], + [ + 77.6006565209276, + 12.930569602619199 + ], + [ + 77.600658106933906, + 12.9305821327783 + ], + [ + 77.600675674400904, + 12.930721989715099 + ], + [ + 77.600676496142299, + 12.9307411162285 + ], + [ + 77.600698155750607, + 12.9312444854388 + ], + [ + 77.600699279957496, + 12.9312706101679 + ], + [ + 77.600702229692104, + 12.9313391570932 + ], + [ + 77.600702971842196, + 12.931356379059 + ], + [ + 77.600704632562099, + 12.9315167218077 + ], + [ + 77.600712125410098, + 12.931561124604601 + ], + [ + 77.600786818454907, + 12.932003755981 + ], + [ + 77.600979404266297, + 12.9331495688518 + ], + [ + 77.600996016653596, + 12.9332484067252 + ], + [ + 77.601064720855902, + 12.9336565246806 + ], + [ + 77.601084477972194, + 12.933761072769499 + ], + [ + 77.601142681823504, + 12.9340690674012 + ], + [ + 77.601280977141997, + 12.934801736045999 + ], + [ + 77.601458205646694, + 12.935740657281199 + ], + [ + 77.601693515305001, + 12.937059578615401 + ], + [ + 77.601698424650195, + 12.9370888911603 + ], + [ + 77.601600928053998, + 12.9371070942538 + ], + [ + 77.601590912187007, + 12.937108964382499 + ], + [ + 77.601594422504604, + 12.9371275250232 + ], + [ + 77.601664623030899, + 12.937117994416701 + ], + [ + 77.601859351909397, + 12.9382459768497 + ], + [ + 77.601972562464297, + 12.938710349583999 + ], + [ + 77.601572563502501, + 12.9387875594973 + ], + [ + 77.601045370367203, + 12.938863497280799 + ], + [ + 77.600559399852699, + 12.9389846556275 + ], + [ + 77.600670924660804, + 12.9391983983475 + ], + [ + 77.600746005614297, + 12.9393033410439 + ], + [ + 77.600792931210293, + 12.939393779465201 + ], + [ + 77.600826205723806, + 12.9394449710244 + ], + [ + 77.600948212273295, + 12.9396446181053 + ], + [ + 77.601003669795702, + 12.9396975160499 + ], + [ + 77.601227076615899, + 12.939641531299101 + ], + [ + 77.601354758572697, + 12.939619448922 + ], + [ + 77.601425573563006, + 12.9398429853973 + ], + [ + 77.601545020534502, + 12.9398173896177 + ], + [ + 77.601695182441503, + 12.9403105349715 + ], + [ + 77.602567251085901, + 12.9401703053449 + ], + [ + 77.602655766933594, + 12.9405812880066 + ], + [ + 77.603016982589295, + 12.9405292447117 + ], + [ + 77.603389944194305, + 12.940502428282 + ], + [ + 77.603882458590107, + 12.940486807833601 + ], + [ + 77.603929018183294, + 12.9407679498569 + ], + [ + 77.604203737081704, + 12.9407418405463 + ], + [ + 77.604240475140003, + 12.940759401174001 + ], + [ + 77.604441166505396, + 12.9407245283736 + ], + [ + 77.604534589706702, + 12.9407210056957 + ], + [ + 77.605185518502793, + 12.940627254062701 + ], + [ + 77.605614340645303, + 12.9405609240749 + ], + [ + 77.605597703730098, + 12.9404996237724 + ], + [ + 77.605573720727193, + 12.940215986795399 + ], + [ + 77.605525941938495, + 12.939809867092301 + ], + [ + 77.606252862079501, + 12.939642641332201 + ], + [ + 77.606826207542696, + 12.939526607131301 + ], + [ + 77.607130874655198, + 12.939472589297401 + ], + [ + 77.607551190257496, + 12.9393489233704 + ], + [ + 77.607696879851801, + 12.939323269580401 + ], + [ + 77.607818368901306, + 12.9394060811595 + ], + [ + 77.608405805871001, + 12.939241480104201 + ], + [ + 77.6086246152543, + 12.9391914840401 + ], + [ + 77.608595611649903, + 12.9390037358326 + ], + [ + 77.608597482574694, + 12.9388086662807 + ], + [ + 77.608600048637797, + 12.9386805192715 + ], + [ + 77.608664259872597, + 12.938481001737101 + ], + [ + 77.608658051606199, + 12.938425005298299 + ], + [ + 77.608651413170605, + 12.9383139212703 + ], + [ + 77.608628911083102, + 12.938200606403001 + ], + [ + 77.608588164400999, + 12.9380904617094 + ], + [ + 77.6085094381001, + 12.9378432531801 + ], + [ + 77.608473722556994, + 12.9375224575879 + ], + [ + 77.608433550702998, + 12.9371617199496 + ], + [ + 77.608351836289103, + 12.9368133456368 + ], + [ + 77.607940473725705, + 12.9359073086562 + ], + [ + 77.6086959033711, + 12.9354253674248 + ], + [ + 77.608965021850494, + 12.935243651913501 + ], + [ + 77.609585859954606, + 12.9348357419106 + ], + [ + 77.609678229991601, + 12.934775051358001 + ], + [ + 77.609769729215202, + 12.933862220421201 + ], + [ + 77.609828389669602, + 12.9333166403606 + ], + [ + 77.610072397047702, + 12.9327845032734 + ], + [ + 77.610059567386799, + 12.9326756332489 + ], + [ + 77.609358862326204, + 12.9327376215663 + ], + [ + 77.608766092311797, + 12.9328209976193 + ], + [ + 77.608459324405104, + 12.932848447545901 + ], + [ + 77.608451089675597, + 12.9327596100406 + ], + [ + 77.608379725224196, + 12.932224054509399 + ], + [ + 77.607826271588806, + 12.932244886452899 + ], + [ + 77.607327160122296, + 12.9322422269319 + ], + [ + 77.607331213600901, + 12.932118296569 + ], + [ + 77.607339696271794, + 12.9317627190305 + ], + [ + 77.607349038265198, + 12.9313711412146 + ], + [ + 77.607354722252694, + 12.931214518449 + ], + [ + 77.607084127895604, + 12.9312052707515 + ], + [ + 77.6069901085922, + 12.930951641404 + ], + [ + 77.6067355644618, + 12.9309376913438 + ], + [ + 77.606768191593204, + 12.930559694103501 + ], + [ + 77.607104617390902, + 12.9305890713119 + ], + [ + 77.607270846781006, + 12.930639040838599 + ], + [ + 77.607872134931199, + 12.930719081768 + ], + [ + 77.6081436678556, + 12.930771823018899 + ], + [ + 77.608233337182995, + 12.9307709264452 + ], + [ + 77.608208618555295, + 12.930268248846501 + ], + [ + 77.608217592291098, + 12.9300061794857 + ], + [ + 77.608208153295905, + 12.9299600689413 + ], + [ + 77.6081693040787, + 12.9299559441667 + ], + [ + 77.608157359381593, + 12.9297179034164 + ], + [ + 77.608101394829902, + 12.9289495507903 + ], + [ + 77.608097939846303, + 12.9288515823583 + ], + [ + 77.608079368368905, + 12.928705958338799 + ], + [ + 77.608042705400607, + 12.928423310635001 + ], + [ + 77.608008294870999, + 12.928148766726901 + ], + [ + 77.607984378328695, + 12.9279694928133 + ], + [ + 77.607403818301506, + 12.9280093419772 + ], + [ + 77.607403141813904, + 12.9280032686636 + ], + [ + 77.607364001393606, + 12.9276679502712 + ], + [ + 77.607375834910798, + 12.927489364205099 + ], + [ + 77.607409109424296, + 12.9274492641504 + ], + [ + 77.607410815809601, + 12.927289717124101 + ], + [ + 77.607411669002303, + 12.9272376723723 + ], + [ + 77.608018288978997, + 12.9271839212351 + ], + [ + 77.608045591143906, + 12.9273409086834 + ], + [ + 77.609088192566702, + 12.927322138445 + ], + [ + 77.609055934337206, + 12.9271073460393 + ], + [ + 77.609027016278802, + 12.927027519245 + ], + [ + 77.608945707317105, + 12.926519671792001 + ], + [ + 77.608893876018598, + 12.9262218773023 + ], + [ + 77.608774602938794, + 12.925877070496099 + ], + [ + 77.608765666312706, + 12.925861383279599 + ], + [ + 77.608752959558004, + 12.9256234345028 + ], + [ + 77.608741952762799, + 12.925408414886601 + ], + [ + 77.6088117581468, + 12.925094452426301 + ], + [ + 77.608958309679295, + 12.9249345424788 + ], + [ + 77.609187720922094, + 12.9245730234703 + ], + [ + 77.609351192906999, + 12.924310799880301 + ], + [ + 77.609477410330499, + 12.924094727221799 + ], + [ + 77.609526442289805, + 12.924017627217101 + ], + [ + 77.609629514360506, + 12.9238528594167 + ], + [ + 77.609818956774106, + 12.923557552691401 + ], + [ + 77.609832699608603, + 12.923531719086199 + ], + [ + 77.609904841107095, + 12.923408870586099 + ], + [ + 77.609908165141505, + 12.923403209898 + ], + [ + 77.609927907106695, + 12.9233332155026 + ], + [ + 77.6099560843126, + 12.9232615114894 + ], + [ + 77.610011393909701, + 12.923073318379201 + ], + [ + 77.610019649324499, + 12.9230570536374 + ], + [ + 77.610043848188099, + 12.922982114484199 + ], + [ + 77.610076500154094, + 12.922899919393799 + ], + [ + 77.610129496987298, + 12.9227822637024 + ], + [ + 77.610207729808394, + 12.9226308908914 + ], + [ + 77.610248437227796, + 12.9225617619066 + ], + [ + 77.610290873268198, + 12.922483054664101 + ], + [ + 77.6103189321488, + 12.922369234062201 + ], + [ + 77.610321434883801, + 12.922361205573401 + ], + [ + 77.610353126297596, + 12.922259534970101 + ], + [ + 77.610346397739207, + 12.922237411385099 + ], + [ + 77.610343728856904, + 12.9222346826239 + ], + [ + 77.610370633353398, + 12.9222185665443 + ], + [ + 77.610400757092805, + 12.922209660137099 + ], + [ + 77.610455247149702, + 12.922200510035699 + ], + [ + 77.610591338072297, + 12.92207102765 + ], + [ + 77.610752461384294, + 12.9219116552178 + ], + [ + 77.610873087834406, + 12.9218232300551 + ], + [ + 77.611078178285595, + 12.921673934486799 + ], + [ + 77.611096547699603, + 12.921659408837501 + ], + [ + 77.611196632600098, + 12.921569990200901 + ], + [ + 77.611171421377094, + 12.9215358218545 + ], + [ + 77.611104612473298, + 12.9214382479552 + ], + [ + 77.611026072482105, + 12.921266929927199 + ], + [ + 77.610974450297405, + 12.921153428426599 + ], + [ + 77.610942540954994, + 12.921107853523299 + ], + [ + 77.610897244524395, + 12.9210401818929 + ], + [ + 77.610811922969106, + 12.9209198459964 + ], + [ + 77.610725243665499, + 12.9209501140383 + ], + [ + 77.610627688564307, + 12.9209890959646 + ], + [ + 77.610506802078106, + 12.9210340479483 + ], + [ + 77.610375794225803, + 12.9210898573001 + ], + [ + 77.610226109162895, + 12.921153980590899 + ], + [ + 77.610139665339901, + 12.9211835287889 + ], + [ + 77.610004609163497, + 12.921225036555199 + ], + [ + 77.609911293533898, + 12.9212498724588 + ], + [ + 77.609790975858402, + 12.9213027071957 + ], + [ + 77.609647397152699, + 12.921368202890299 + ], + [ + 77.609467865847193, + 12.921444575638199 + ], + [ + 77.609367665307403, + 12.921504669608 + ], + [ + 77.609307119083297, + 12.921507375321999 + ], + [ + 77.609195591435693, + 12.9215099690724 + ], + [ + 77.609090780864307, + 12.9215124061958 + ], + [ + 77.608912483760193, + 12.921519925064899 + ], + [ + 77.608916669948201, + 12.9215476103311 + ], + [ + 77.608849480272696, + 12.921554018639 + ], + [ + 77.608717827263007, + 12.9215759867862 + ], + [ + 77.608689887008296, + 12.921560490360999 + ], + [ + 77.608670369473003, + 12.921554761639801 + ], + [ + 77.608671129095498, + 12.921564168223901 + ], + [ + 77.6086724569045, + 12.921567206589399 + ], + [ + 77.608672616679499, + 12.921582589319501 + ], + [ + 77.608672668013398, + 12.9215875316113 + ], + [ + 77.608674310859001, + 12.9216902801359 + ], + [ + 77.608674615797298, + 12.921719638500599 + ], + [ + 77.608675636173402, + 12.9218178761049 + ], + [ + 77.608700135841403, + 12.922015256132999 + ], + [ + 77.6087133018342, + 12.922119018768599 + ], + [ + 77.6087461670419, + 12.922179671682899 + ], + [ + 77.608807245278996, + 12.9222248613513 + ], + [ + 77.608824478736807, + 12.922237611782601 + ], + [ + 77.608836942316401, + 12.922278076792701 + ], + [ + 77.608847711806305, + 12.922313041653901 + ], + [ + 77.608852927789897, + 12.9223531477934 + ], + [ + 77.608899636496901, + 12.9227122894861 + ], + [ + 77.608896616415294, + 12.922727528882101 + ], + [ + 77.608882548608193, + 12.9227985099895 + ], + [ + 77.608877211167396, + 12.922825442127101 + ], + [ + 77.608865158604303, + 12.922884285413099 + ], + [ + 77.608846304297302, + 12.922917586313501 + ], + [ + 77.608743627966803, + 12.9230989350229 + ], + [ + 77.608732009392497, + 12.9231312023489 + ], + [ + 77.608728015090605, + 12.923142295714401 + ], + [ + 77.608674251261604, + 12.9232916069084 + ], + [ + 77.608609785121601, + 12.9234075693262 + ], + [ + 77.608421098655, + 12.923746980464999 + ], + [ + 77.608731588637397, + 12.9238793912389 + ], + [ + 77.608702886602003, + 12.9240121432601 + ], + [ + 77.608570385551701, + 12.924624974612501 + ], + [ + 77.6085272703654, + 12.9248243865012 + ], + [ + 77.6084005274124, + 12.924759025547001 + ], + [ + 77.608324516364604, + 12.924756397431301 + ], + [ + 77.608271269423696, + 12.9247840324726 + ], + [ + 77.608140742958199, + 12.9247977591631 + ], + [ + 77.608086086800995, + 12.924800563978099 + ], + [ + 77.607982814891699, + 12.92481436964 + ], + [ + 77.607930880941097, + 12.9248213129266 + ], + [ + 77.607892962456802, + 12.924829977204601 + ], + [ + 77.607755153694995, + 12.9248614647107 + ], + [ + 77.607714346490297, + 12.924867518916701 + ], + [ + 77.607632720344697, + 12.9248784981421 + ], + [ + 77.607517240776005, + 12.9248999791801 + ], + [ + 77.607458480657499, + 12.9249106910287 + ], + [ + 77.607374084673907, + 12.924926075868701 + ], + [ + 77.607371566774404, + 12.924926534671901 + ], + [ + 77.607340280126607, + 12.9249322380281 + ], + [ + 77.607288043452499, + 12.9249463113684 + ], + [ + 77.607237352749806, + 12.924957063607399 + ], + [ + 77.607226585844401, + 12.924959348442201 + ], + [ + 77.607095596254297, + 12.9249845555194 + ], + [ + 77.607034706993701, + 12.9249962723843 + ], + [ + 77.606986475861206, + 12.9250080470807 + ], + [ + 77.606881932066798, + 12.925029418608201 + ], + [ + 77.606896326437393, + 12.9250438547824 + ], + [ + 77.606935447795394, + 12.925083089741101 + ], + [ + 77.606959461887499, + 12.9254555143005 + ], + [ + 77.606959459216895, + 12.9254555159637 + ], + [ + 77.606926742436102, + 12.9254758909734 + ], + [ + 77.606926289458599, + 12.9254761728514 + ], + [ + 77.606555944871701, + 12.925566827442401 + ], + [ + 77.606192108340593, + 12.925619020802699 + ], + [ + 77.606096472163799, + 12.9256118641055 + ], + [ + 77.606072282699003, + 12.9256100539409 + ], + [ + 77.606033437708703, + 12.925583338993601 + ], + [ + 77.605967301104698, + 12.9254705377604 + ], + [ + 77.605937331899895, + 12.925419422853601 + ], + [ + 77.6058844504321, + 12.9253713915926 + ], + [ + 77.605806866042499, + 12.9253281241434 + ], + [ + 77.605708149381698, + 12.925300877700799 + ], + [ + 77.605612897916302, + 12.925274725904501 + ], + [ + 77.605493319898699, + 12.9252341362218 + ], + [ + 77.605439028175994, + 12.9252166096897 + ], + [ + 77.605339685001098, + 12.9251842767121 + ], + [ + 77.605321200364699, + 12.925178261018401 + ], + [ + 77.605275060469197, + 12.9251696873627 + ], + [ + 77.605166617661794, + 12.9251481842325 + ], + [ + 77.605098263452106, + 12.9251479288525 + ], + [ + 77.605084298425595, + 12.9251478767361 + ], + [ + 77.605015774618195, + 12.925146366356 + ], + [ + 77.604943235172001, + 12.9251447677558 + ], + [ + 77.604950388962493, + 12.92518041974 + ], + [ + 77.605104703865095, + 12.925949467316601 + ], + [ + 77.605030190377207, + 12.9259819362202 + ], + [ + 77.605011870135598, + 12.9259899191755 + ], + [ + 77.6049398509561, + 12.926039198423799 + ], + [ + 77.604778345937703, + 12.926118730629099 + ], + [ + 77.604699983567897, + 12.9261669429542 + ], + [ + 77.604614543626894, + 12.9262169812732 + ], + [ + 77.604590128278801, + 12.926231279648899 + ], + [ + 77.604423477924598, + 12.9263142518028 + ], + [ + 77.604427373757602, + 12.926416078329099 + ], + [ + 77.604429006349093, + 12.926458746418 + ], + [ + 77.604457807189107, + 12.926516051742199 + ], + [ + 77.604465465455206, + 12.926532915527901 + ], + [ + 77.604497873004405, + 12.9266048655899 + ], + [ + 77.604508385751799, + 12.9266194423047 + ], + [ + 77.604512811198404, + 12.9266154337357 + ], + [ + 77.6045323375685, + 12.9265977467502 + ], + [ + 77.604542004374693, + 12.9265863573773 + ], + [ + 77.604563604224694, + 12.9266539162222 + ], + [ + 77.604571157627007, + 12.926677538709299 + ], + [ + 77.604577213912293, + 12.9266967673995 + ], + [ + 77.604585226835695, + 12.9267222053019 + ], + [ + 77.604587823561005, + 12.926730448889399 + ], + [ + 77.604618197377903, + 12.926828392850201 + ], + [ + 77.604665848868905, + 12.9269826305352 + ], + [ + 77.604672414572704, + 12.927005150752301 + ], + [ + 77.604546256144005, + 12.927051581631 + ], + [ + 77.604593941188995, + 12.927196800046501 + ], + [ + 77.604603914217194, + 12.9272271750062 + ], + [ + 77.604359571368903, + 12.927312052077299 + ], + [ + 77.604368719409393, + 12.927336365862599 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "140", + "group": "LAKKASANDRA", + "Corporatio": "South", + "ac_no": "172", + "ac": "B.T.M Layout", + "corporat_1": "4", + "ward_id": "14", + "ward_name": "14 - Lakkasandra", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬಿ.ಟಿ.ಎಂ. ಲೇಔಟ್", + "ward_name_": "ಲಕ್ಕಸಂದ್ರ", + "dig_ward_n": "LAKKASANDRA", + "Assembly": "172 - B.T.M Layout", + "Slno": "14" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.602830026583305, + 12.9444505267367 + ], + [ + 77.603402455949194, + 12.9443682836714 + ], + [ + 77.603660409764302, + 12.9443322417128 + ], + [ + 77.6041488658106, + 12.9442619328882 + ], + [ + 77.604409901901505, + 12.944224358827 + ], + [ + 77.605183860868195, + 12.9441257902975 + ], + [ + 77.605682799037794, + 12.9440625381409 + ], + [ + 77.606058279936207, + 12.9440208368777 + ], + [ + 77.6060629039209, + 12.944020317241201 + ], + [ + 77.606179523928304, + 12.9440072221419 + ], + [ + 77.6062598898679, + 12.9439981981371 + ], + [ + 77.606291964299899, + 12.9439945970176 + ], + [ + 77.606462399039401, + 12.9440040299262 + ], + [ + 77.606584578802, + 12.9440107924086 + ], + [ + 77.606921054574002, + 12.944026549611401 + ], + [ + 77.6069710608148, + 12.9440301337753 + ], + [ + 77.607638956508097, + 12.944129851153701 + ], + [ + 77.608022032564705, + 12.9425557114395 + ], + [ + 77.6081412952297, + 12.9422366023515 + ], + [ + 77.608280680796994, + 12.9419797527885 + ], + [ + 77.608503140762707, + 12.9415376974064 + ], + [ + 77.608577134400505, + 12.9413947782565 + ], + [ + 77.609071013677195, + 12.9404339084463 + ], + [ + 77.6093298301613, + 12.939930362333399 + ], + [ + 77.609396957739193, + 12.939809082046599 + ], + [ + 77.609820764283697, + 12.9390433865765 + ], + [ + 77.610193829042402, + 12.9383400916909 + ], + [ + 77.610292645527096, + 12.9381538042239 + ], + [ + 77.610811747496996, + 12.9371751949353 + ], + [ + 77.611252800741099, + 12.936354126601 + ], + [ + 77.611748440728803, + 12.935431431536101 + ], + [ + 77.611768393767207, + 12.9353925307586 + ], + [ + 77.612228741002696, + 12.9344950077608 + ], + [ + 77.612231798527404, + 12.9344894888268 + ], + [ + 77.612302020880094, + 12.934362702511301 + ], + [ + 77.6124538908484, + 12.9340885058546 + ], + [ + 77.613131242246695, + 12.9328655557603 + ], + [ + 77.613825166880503, + 12.9316344456926 + ], + [ + 77.613737359409399, + 12.931583510227499 + ], + [ + 77.6134035017607, + 12.931885179861 + ], + [ + 77.612881647091598, + 12.9323011998125 + ], + [ + 77.612486235464004, + 12.932616419483599 + ], + [ + 77.611531602936296, + 12.9333850587696 + ], + [ + 77.610857175575504, + 12.933873181864399 + ], + [ + 77.610444240039001, + 12.934209791710799 + ], + [ + 77.610052363247107, + 12.9345292330134 + ], + [ + 77.609678229991601, + 12.934775051358001 + ], + [ + 77.609585859954606, + 12.9348357419106 + ], + [ + 77.608965021850494, + 12.935243651913501 + ], + [ + 77.6086959033711, + 12.9354253674248 + ], + [ + 77.607940473725705, + 12.9359073086562 + ], + [ + 77.608351836289103, + 12.9368133456368 + ], + [ + 77.608433550702998, + 12.9371617199496 + ], + [ + 77.608473722556994, + 12.9375224575879 + ], + [ + 77.6085094381001, + 12.9378432531801 + ], + [ + 77.608588164400999, + 12.9380904617094 + ], + [ + 77.608628911083102, + 12.938200606403001 + ], + [ + 77.608651413170605, + 12.9383139212703 + ], + [ + 77.608658051606199, + 12.938425005298299 + ], + [ + 77.608664259872597, + 12.938481001737101 + ], + [ + 77.608600048637797, + 12.9386805192715 + ], + [ + 77.608597482574694, + 12.9388086662807 + ], + [ + 77.608595611649903, + 12.9390037358326 + ], + [ + 77.6086246152543, + 12.9391914840401 + ], + [ + 77.608405805871001, + 12.939241480104201 + ], + [ + 77.607818368901306, + 12.9394060811595 + ], + [ + 77.607696879851801, + 12.939323269580401 + ], + [ + 77.607551190257496, + 12.9393489233704 + ], + [ + 77.607130874655198, + 12.939472589297401 + ], + [ + 77.606826207542696, + 12.939526607131301 + ], + [ + 77.606252862079501, + 12.939642641332201 + ], + [ + 77.605525941938495, + 12.939809867092301 + ], + [ + 77.605573720727193, + 12.940215986795399 + ], + [ + 77.605597703730098, + 12.9404996237724 + ], + [ + 77.605614340645303, + 12.9405609240749 + ], + [ + 77.605185518502793, + 12.940627254062701 + ], + [ + 77.604534589706702, + 12.9407210056957 + ], + [ + 77.604441166505396, + 12.9407245283736 + ], + [ + 77.604240475140003, + 12.940759401174001 + ], + [ + 77.604203737081704, + 12.9407418405463 + ], + [ + 77.603929018183294, + 12.9407679498569 + ], + [ + 77.603882458590107, + 12.940486807833601 + ], + [ + 77.603389944194305, + 12.940502428282 + ], + [ + 77.603016982589295, + 12.9405292447117 + ], + [ + 77.602655766933594, + 12.9405812880066 + ], + [ + 77.602567251085901, + 12.9401703053449 + ], + [ + 77.601695182441503, + 12.9403105349715 + ], + [ + 77.601545020534502, + 12.9398173896177 + ], + [ + 77.601425573563006, + 12.9398429853973 + ], + [ + 77.601354758572697, + 12.939619448922 + ], + [ + 77.601227076615899, + 12.939641531299101 + ], + [ + 77.601003669795702, + 12.9396975160499 + ], + [ + 77.600948212273295, + 12.9396446181053 + ], + [ + 77.600826205723806, + 12.9394449710244 + ], + [ + 77.600792931210293, + 12.939393779465201 + ], + [ + 77.600746005614297, + 12.9393033410439 + ], + [ + 77.600670924660804, + 12.9391983983475 + ], + [ + 77.600559399852699, + 12.9389846556275 + ], + [ + 77.601045370367203, + 12.938863497280799 + ], + [ + 77.601572563502501, + 12.9387875594973 + ], + [ + 77.601972562464297, + 12.938710349583999 + ], + [ + 77.601859351909397, + 12.9382459768497 + ], + [ + 77.601664623030899, + 12.937117994416701 + ], + [ + 77.601594422504604, + 12.9371275250232 + ], + [ + 77.601590912187007, + 12.937108964382499 + ], + [ + 77.601268039240196, + 12.9371692499112 + ], + [ + 77.600484391772099, + 12.937315567668801 + ], + [ + 77.600378690766902, + 12.937336949132099 + ], + [ + 77.599933497229202, + 12.9374283443093 + ], + [ + 77.599671286191807, + 12.9375122669818 + ], + [ + 77.599605590283005, + 12.937533338802201 + ], + [ + 77.599376948045403, + 12.937606675156101 + ], + [ + 77.599093189658404, + 12.9377777685055 + ], + [ + 77.598753789995897, + 12.938079284817499 + ], + [ + 77.598586221056607, + 12.9382726131001 + ], + [ + 77.598581991405993, + 12.938277494049199 + ], + [ + 77.598473900564997, + 12.9384016642516 + ], + [ + 77.598068371981398, + 12.939043756101499 + ], + [ + 77.597909700332295, + 12.939347916051799 + ], + [ + 77.597873537138298, + 12.9394172377018 + ], + [ + 77.597863471630106, + 12.9394365323861 + ], + [ + 77.597843216657495, + 12.939487968886199 + ], + [ + 77.597812384127295, + 12.939566268706599 + ], + [ + 77.597771448750507, + 12.9396702228383 + ], + [ + 77.597667120728602, + 12.9399351626725 + ], + [ + 77.597666589218704, + 12.9399365124347 + ], + [ + 77.597659282601398, + 12.939953525539799 + ], + [ + 77.597653191268506, + 12.939990583677901 + ], + [ + 77.597628040866198, + 12.9401435887665 + ], + [ + 77.597603502153405, + 12.9402928692259 + ], + [ + 77.597593945064901, + 12.9403888215453 + ], + [ + 77.597589381372103, + 12.940434642228601 + ], + [ + 77.597536822343599, + 12.9409623169366 + ], + [ + 77.597463210080093, + 12.941701358884799 + ], + [ + 77.597456453662502, + 12.941769191003001 + ], + [ + 77.597443398713196, + 12.9418671404457 + ], + [ + 77.597420130498705, + 12.9420417125512 + ], + [ + 77.597381855741702, + 12.942348132337999 + ], + [ + 77.597301575087499, + 12.9428785707324 + ], + [ + 77.597255264011395, + 12.9431873283052 + ], + [ + 77.597770838752893, + 12.943053450389 + ], + [ + 77.597965224842895, + 12.942992409209699 + ], + [ + 77.597975116472398, + 12.942989303075599 + ], + [ + 77.598142683023895, + 12.9429379438076 + ], + [ + 77.598221286972802, + 12.942925951296299 + ], + [ + 77.598414618158898, + 12.942896453824501 + ], + [ + 77.598499041413007, + 12.9428835729155 + ], + [ + 77.598537439002399, + 12.942874453544601 + ], + [ + 77.598568527684904, + 12.942867070023899 + ], + [ + 77.598677626447, + 12.942840009422801 + ], + [ + 77.598967388042297, + 12.942803240423199 + ], + [ + 77.599080069178498, + 12.942788566148 + ], + [ + 77.5992868944615, + 12.9427481076125 + ], + [ + 77.599307060947098, + 12.9427445728197 + ], + [ + 77.599730535066399, + 12.9426703637345 + ], + [ + 77.599883295125295, + 12.9426435935071 + ], + [ + 77.600100615577404, + 12.9426055095969 + ], + [ + 77.600229871597804, + 12.9425828593226 + ], + [ + 77.600240317222401, + 12.9425810431051 + ], + [ + 77.600498803726197, + 12.9425361329038 + ], + [ + 77.600738442718395, + 12.942494496658201 + ], + [ + 77.600739663722607, + 12.942494284815799 + ], + [ + 77.600746493237594, + 12.942493098217801 + ], + [ + 77.600898755170704, + 12.942466643183201 + ], + [ + 77.600935311975903, + 12.9424945106222 + ], + [ + 77.600947952162201, + 12.9424921259012 + ], + [ + 77.600955278118207, + 12.9424905820053 + ], + [ + 77.601147168431993, + 12.9424501545854 + ], + [ + 77.601443104470704, + 12.942387806631899 + ], + [ + 77.601734333642199, + 12.9423261766024 + ], + [ + 77.601985891875003, + 12.942273721864 + ], + [ + 77.601986264106699, + 12.9422736440665 + ], + [ + 77.602024423091507, + 12.9422656869394 + ], + [ + 77.602613757247298, + 12.9421420730419 + ], + [ + 77.602629294323705, + 12.9421388137068 + ], + [ + 77.602632358173295, + 12.9421523336721 + ], + [ + 77.6026355525931, + 12.9421664309998 + ], + [ + 77.602717379084396, + 12.9425275395536 + ], + [ + 77.602729207988403, + 12.942579658699101 + ], + [ + 77.602787960629897, + 12.9428385183089 + ], + [ + 77.602861538664797, + 12.9431607599644 + ], + [ + 77.6028615855449, + 12.9431652757462 + ], + [ + 77.602863241641899, + 12.943390632633699 + ], + [ + 77.6028634364813, + 12.943417119274701 + ], + [ + 77.602863477567496, + 12.9434227625957 + ], + [ + 77.602864373098498, + 12.943544689686799 + ], + [ + 77.602853989451503, + 12.9437897170562 + ], + [ + 77.602848189633406, + 12.9439265507683 + ], + [ + 77.602844191886405, + 12.9440959839411 + ], + [ + 77.602787754259893, + 12.944375482744601 + ], + [ + 77.602785138364794, + 12.944388436060899 + ], + [ + 77.602783654333294, + 12.944395784933199 + ], + [ + 77.6027710168417, + 12.9444583715132 + ], + [ + 77.602830026583305, + 12.9444505267367 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "141", + "group": "NS PALYA", + "Corporatio": "South", + "ac_no": "172", + "ac": "B.T.M Layout", + "corporat_1": "4", + "ward_id": "50", + "ward_name": "50 - NS Palya", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬಿ.ಟಿ.ಎಂ. ಲೇಔಟ್", + "ward_name_": "ಎನ್.ಎಸ್. ಪಾಳ್ಯ", + "dig_ward_n": "NS PALYA", + "Assembly": "172 - B.T.M Layout", + "Slno": "50" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.599927511397794, + 12.911728089962899 + ], + [ + 77.600093167137004, + 12.911745497517 + ], + [ + 77.6004930420101, + 12.911780890337299 + ], + [ + 77.601207577862496, + 12.911835923889999 + ], + [ + 77.601300251296095, + 12.911843367702399 + ], + [ + 77.601860434348694, + 12.911817470231901 + ], + [ + 77.602128312079003, + 12.9118016550715 + ], + [ + 77.602309486624094, + 12.911798018025401 + ], + [ + 77.602702880838095, + 12.9117845366194 + ], + [ + 77.602768319902495, + 12.911750420536601 + ], + [ + 77.602862030958406, + 12.9117110619774 + ], + [ + 77.602932416575996, + 12.9116840671132 + ], + [ + 77.6030565539143, + 12.911670877673201 + ], + [ + 77.603393908740799, + 12.911657954609399 + ], + [ + 77.603434122844803, + 12.9116587490517 + ], + [ + 77.6035178460167, + 12.911695078173199 + ], + [ + 77.603528361021105, + 12.911699640499 + ], + [ + 77.603606502061695, + 12.9117155941119 + ], + [ + 77.603727231951794, + 12.911726342222 + ], + [ + 77.603737154017693, + 12.9113904015698 + ], + [ + 77.603743440741596, + 12.911174013053801 + ], + [ + 77.603755571504607, + 12.910933664190299 + ], + [ + 77.604092689906494, + 12.910898034104701 + ], + [ + 77.604312545608906, + 12.910880584289799 + ], + [ + 77.604587694426002, + 12.910861108598599 + ], + [ + 77.604909037175801, + 12.9108316100791 + ], + [ + 77.605218712376995, + 12.9108532056615 + ], + [ + 77.605376390125201, + 12.910893231344099 + ], + [ + 77.605854186721999, + 12.910912369430999 + ], + [ + 77.605993189864805, + 12.9109229342591 + ], + [ + 77.605976497753502, + 12.9111932084015 + ], + [ + 77.605964811747498, + 12.9116875896921 + ], + [ + 77.606388520386204, + 12.9116838955327 + ], + [ + 77.606442468324204, + 12.9110116750313 + ], + [ + 77.606488677192701, + 12.9105331476731 + ], + [ + 77.606488672036804, + 12.910378792161501 + ], + [ + 77.606957927996305, + 12.910358315537801 + ], + [ + 77.606969872693497, + 12.910513596600801 + ], + [ + 77.607673038914896, + 12.910495920774199 + ], + [ + 77.608237930638893, + 12.910454713359499 + ], + [ + 77.608279091772701, + 12.9108520523389 + ], + [ + 77.608311091545005, + 12.9111517847057 + ], + [ + 77.608442483213693, + 12.911153491091 + ], + [ + 77.608956105191197, + 12.911136427237899 + ], + [ + 77.608933513191104, + 12.9104163710228 + ], + [ + 77.608919862108607, + 12.9100034257785 + ], + [ + 77.608992917947802, + 12.909911268498 + ], + [ + 77.609172335338997, + 12.9098972267349 + ], + [ + 77.609404884527095, + 12.909928306440399 + ], + [ + 77.609498735718901, + 12.909901004275399 + ], + [ + 77.610004063094195, + 12.909877513445499 + ], + [ + 77.610109892021697, + 12.9094900692515 + ], + [ + 77.610555734417204, + 12.9094626536713 + ], + [ + 77.610679251453305, + 12.910077678870399 + ], + [ + 77.6108583812739, + 12.9100734639081 + ], + [ + 77.611360072370601, + 12.910048054659301 + ], + [ + 77.611516921250896, + 12.9100401103781 + ], + [ + 77.611803680466593, + 12.910027726934 + ], + [ + 77.612257818649894, + 12.910008114387001 + ], + [ + 77.612323596205698, + 12.9100052739697 + ], + [ + 77.612471511697706, + 12.909997956895699 + ], + [ + 77.612825461991704, + 12.9099804465256 + ], + [ + 77.613266434477495, + 12.909940251137501 + ], + [ + 77.613281704321295, + 12.9101766702954 + ], + [ + 77.613368386076502, + 12.910675085861801 + ], + [ + 77.613983116306599, + 12.9105801456277 + ], + [ + 77.613950694985704, + 12.910436809261901 + ], + [ + 77.614509906295197, + 12.9102290673779 + ], + [ + 77.614491258217996, + 12.9100804283068 + ], + [ + 77.614472403363393, + 12.9099544085416 + ], + [ + 77.614298710873399, + 12.9095603101665 + ], + [ + 77.614164192827701, + 12.909237607561201 + ], + [ + 77.614136773572, + 12.909171830696099 + ], + [ + 77.614552619224895, + 12.9090452851816 + ], + [ + 77.615020714917193, + 12.908917709284699 + ], + [ + 77.615039039404806, + 12.908908583057499 + ], + [ + 77.614948973910899, + 12.908669002217099 + ], + [ + 77.614898348636004, + 12.9084914839192 + ], + [ + 77.614893417462497, + 12.9084741926651 + ], + [ + 77.614866848929793, + 12.9084654243256 + ], + [ + 77.614690712037998, + 12.908409593765899 + ], + [ + 77.614686647958806, + 12.9084011883184 + ], + [ + 77.614513512230204, + 12.9080430641687 + ], + [ + 77.614405077230103, + 12.9078187714313 + ], + [ + 77.614391882840195, + 12.907791479414 + ], + [ + 77.614367584455096, + 12.90775763812 + ], + [ + 77.614367561086198, + 12.907757604927101 + ], + [ + 77.614362096242303, + 12.9077499940456 + ], + [ + 77.614138024771506, + 12.9074345122471 + ], + [ + 77.614070608652497, + 12.9073395933844 + ], + [ + 77.614047126021106, + 12.9072249333878 + ], + [ + 77.614041665738696, + 12.9071982701123 + ], + [ + 77.614034719125002, + 12.9071643511302 + ], + [ + 77.613968131840394, + 12.9068392174823 + ], + [ + 77.613832045038293, + 12.906693998703201 + ], + [ + 77.613482705148996, + 12.906321215438201 + ], + [ + 77.613429533603295, + 12.906230039568801 + ], + [ + 77.613285519195003, + 12.9059830880433 + ], + [ + 77.613201247832805, + 12.9058385817605 + ], + [ + 77.613142665614902, + 12.905738126399701 + ], + [ + 77.613129185021606, + 12.905715009725901 + ], + [ + 77.613121034978903, + 12.905701034817801 + ], + [ + 77.612996884708807, + 12.905488146184201 + ], + [ + 77.612685987250003, + 12.9047303420058 + ], + [ + 77.612657870937198, + 12.904661810005001 + ], + [ + 77.612636063491806, + 12.904608655389501 + ], + [ + 77.612237743654703, + 12.9046593523776 + ], + [ + 77.611437120746302, + 12.904761252391401 + ], + [ + 77.611022559575105, + 12.904814015228901 + ], + [ + 77.610579283356401, + 12.904870432261401 + ], + [ + 77.610276807639707, + 12.9049089276094 + ], + [ + 77.609466570884805, + 12.905012046692301 + ], + [ + 77.609314133381005, + 12.905031447177199 + ], + [ + 77.609322008947004, + 12.9050563573769 + ], + [ + 77.609424824616696, + 12.905381548868499 + ], + [ + 77.609442499605507, + 12.905394608120201 + ], + [ + 77.609462526980906, + 12.9054094054408 + ], + [ + 77.609447930236101, + 12.9054165825822 + ], + [ + 77.609387508405803, + 12.9054462916611 + ], + [ + 77.609394366125898, + 12.9054653216639 + ], + [ + 77.609395211976803, + 12.905467670262899 + ], + [ + 77.609314841987697, + 12.905485405721601 + ], + [ + 77.609314814437198, + 12.905485413224101 + ], + [ + 77.609304512553905, + 12.905491162515601 + ], + [ + 77.609063984784598, + 12.9056087502978 + ], + [ + 77.608879589365102, + 12.9056998048369 + ], + [ + 77.608797076055794, + 12.905735636454599 + ], + [ + 77.608547726287, + 12.9058455414585 + ], + [ + 77.608500850054497, + 12.905866202892801 + ], + [ + 77.608420509906793, + 12.9058895905677 + ], + [ + 77.608394117445101, + 12.905897759014501 + ], + [ + 77.608296852617698, + 12.905898729861599 + ], + [ + 77.608122503369202, + 12.905848522850601 + ], + [ + 77.607994912752403, + 12.9058114014042 + ], + [ + 77.607701193802896, + 12.9057606137509 + ], + [ + 77.607698527496296, + 12.905760153409201 + ], + [ + 77.607535923175405, + 12.905732413603401 + ], + [ + 77.607394201922105, + 12.905720276249999 + ], + [ + 77.607344205884701, + 12.9057157718968 + ], + [ + 77.607066960475905, + 12.905690791827899 + ], + [ + 77.606901031771898, + 12.9056755078376 + ], + [ + 77.606765676476698, + 12.9056666944886 + ], + [ + 77.606448312686197, + 12.9056461450349 + ], + [ + 77.606249602060302, + 12.9056334461593 + ], + [ + 77.6061368797196, + 12.905642475362001 + ], + [ + 77.6059143243465, + 12.9056616341016 + ], + [ + 77.605846251491599, + 12.9056690832253 + ], + [ + 77.605823483875596, + 12.905671574254599 + ], + [ + 77.605556153872897, + 12.9057024720583 + ], + [ + 77.605191664025696, + 12.905744501832199 + ], + [ + 77.605090487253193, + 12.905756803363699 + ], + [ + 77.605040834724093, + 12.905758882055601 + ], + [ + 77.604853005119395, + 12.9057667450623 + ], + [ + 77.604793684974297, + 12.9057692281445 + ], + [ + 77.6046348038128, + 12.905775879136099 + ], + [ + 77.604365176905802, + 12.9057871652789 + ], + [ + 77.603851198392604, + 12.905808679935401 + ], + [ + 77.603853947336106, + 12.905865178988799 + ], + [ + 77.603876790617093, + 12.906334674093801 + ], + [ + 77.603879926445103, + 12.906359487227 + ], + [ + 77.603933768690297, + 12.906834381777999 + ], + [ + 77.603946413651101, + 12.906943796892 + ], + [ + 77.603955169334299, + 12.9071978025811 + ], + [ + 77.603955179788301, + 12.9071981006095 + ], + [ + 77.603955548351905, + 12.907208611980799 + ], + [ + 77.603957268109497, + 12.9072572003835 + ], + [ + 77.603957359137695, + 12.907259765222999 + ], + [ + 77.603959277146004, + 12.907314068567 + ], + [ + 77.603959391859505, + 12.9073173197787 + ], + [ + 77.603960904600399, + 12.9073601463482 + ], + [ + 77.603960956599195, + 12.907361610293201 + ], + [ + 77.603961847678093, + 12.9073868270389 + ], + [ + 77.603961880391395, + 12.907387762668399 + ], + [ + 77.603962427684905, + 12.9074032601058 + ], + [ + 77.603962490212794, + 12.907405029305799 + ], + [ + 77.6039627470238, + 12.9074123084077 + ], + [ + 77.6039627574592, + 12.9074126046294 + ], + [ + 77.603963070107696, + 12.9074214515327 + ], + [ + 77.603963077737703, + 12.9074216547288 + ], + [ + 77.603963382634603, + 12.907430286692501 + ], + [ + 77.603963383948397, + 12.907430324623499 + ], + [ + 77.603963602594803, + 12.907436497401701 + ], + [ + 77.603963610262298, + 12.9074367042112 + ], + [ + 77.603963650830195, + 12.907437864716901 + ], + [ + 77.603963700370002, + 12.9074392690598 + ], + [ + 77.603963731825701, + 12.907440172178299 + ], + [ + 77.603963738422607, + 12.907440364543501 + ], + [ + 77.603963819062699, + 12.907442637678001 + ], + [ + 77.603963825612894, + 12.9074428255266 + ], + [ + 77.603964065513594, + 12.907449627784899 + ], + [ + 77.603964082489696, + 12.9074501109518 + ], + [ + 77.603964397144594, + 12.9074590626331 + ], + [ + 77.603964417369795, + 12.9074595927461 + ], + [ + 77.603964754153196, + 12.907469169381701 + ], + [ + 77.603964775182902, + 12.907469777181801 + ], + [ + 77.603965160823293, + 12.9074806922167 + ], + [ + 77.603965199609803, + 12.9074817696244 + ], + [ + 77.6039658641063, + 12.907500580585401 + ], + [ + 77.603966679392101, + 12.907523636173501 + ], + [ + 77.603966935180395, + 12.9075309053477 + ], + [ + 77.603968489901106, + 12.907574849946601 + ], + [ + 77.603971025851806, + 12.9076250591008 + ], + [ + 77.603971203023093, + 12.907628560844 + ], + [ + 77.603976722021699, + 12.9077378238109 + ], + [ + 77.603976729062495, + 12.907737970096701 + ], + [ + 77.603977611878094, + 12.9077554517399 + ], + [ + 77.603977923514904, + 12.9077616217841 + ], + [ + 77.603983772794095, + 12.907877430435001 + ], + [ + 77.603990211551107, + 12.9080048929006 + ], + [ + 77.603995961927595, + 12.9081155059931 + ], + [ + 77.6040007015783, + 12.9082396806349 + ], + [ + 77.604009605390701, + 12.9084880356487 + ], + [ + 77.604016292377196, + 12.9086889834836 + ], + [ + 77.604016937167899, + 12.9086957527956 + ], + [ + 77.604016507605607, + 12.9086957146157 + ], + [ + 77.604016438475298, + 12.9086957089807 + ], + [ + 77.603739246240906, + 12.908671417407501 + ], + [ + 77.603473949612507, + 12.9086485970333 + ], + [ + 77.603433330452006, + 12.9086451034816 + ], + [ + 77.603378619067399, + 12.9086422607839 + ], + [ + 77.603372242389995, + 12.908641998184599 + ], + [ + 77.602695090424007, + 12.908614062840799 + ], + [ + 77.602563221548294, + 12.908608600710499 + ], + [ + 77.602297400979893, + 12.908598161356601 + ], + [ + 77.602287972964803, + 12.9085977908972 + ], + [ + 77.602046453218406, + 12.908589259411499 + ], + [ + 77.601639610407204, + 12.908574886334801 + ], + [ + 77.601501572250996, + 12.908570075032999 + ], + [ + 77.601227250616006, + 12.9085605141202 + ], + [ + 77.600290431593095, + 12.908527861037699 + ], + [ + 77.600228305271401, + 12.9085256954877 + ], + [ + 77.600226143252996, + 12.908539269422301 + ], + [ + 77.600221348749798, + 12.9085765828991 + ], + [ + 77.600170132726504, + 12.9092271280406 + ], + [ + 77.600141981268493, + 12.909584702023 + ], + [ + 77.600137756777698, + 12.9096219203886 + ], + [ + 77.600081433346304, + 12.910118170960599 + ], + [ + 77.600070765451505, + 12.9102121683518 + ], + [ + 77.600026047616794, + 12.910619158856599 + ], + [ + 77.600024516054603, + 12.9106333173641 + ], + [ + 77.599983492723197, + 12.9110125763273 + ], + [ + 77.599929609173003, + 12.911701981297499 + ], + [ + 77.599927511397794, + 12.911728089962899 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "142", + "group": "NATIONAL GAMES VILLAGE", + "Corporatio": "South", + "ac_no": "172", + "ac": "B.T.M Layout", + "corporat_1": "4", + "ward_id": "16", + "ward_name": "16 - National Games Village", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬಿ.ಟಿ.ಎಂ. ಲೇಔಟ್", + "ward_name_": "ನ್ಯಾಷನಲ್ ಗೇಮ್ಸ್ ವಿಲೇಜ್", + "dig_ward_n": "NATIONAL GAMES VILLAGE", + "Assembly": "172 - B.T.M Layout", + "Slno": "16" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6203077109585, + 12.9492579430809 + ], + [ + 77.621064530760407, + 12.948160452604901 + ], + [ + 77.621289282287805, + 12.948305434100799 + ], + [ + 77.6217379007239, + 12.94860400942 + ], + [ + 77.621909453835002, + 12.9487008942138 + ], + [ + 77.622147278544404, + 12.9487465608306 + ], + [ + 77.6230527347807, + 12.947520065990901 + ], + [ + 77.623276599074799, + 12.947695034237301 + ], + [ + 77.623333877540404, + 12.947672466525001 + ], + [ + 77.623709815110104, + 12.947392354620501 + ], + [ + 77.623874961176995, + 12.946985734036099 + ], + [ + 77.623969965027996, + 12.9465421365054 + ], + [ + 77.623938411831901, + 12.9463215905499 + ], + [ + 77.624191901594003, + 12.946232031441699 + ], + [ + 77.624506046211494, + 12.9460701516031 + ], + [ + 77.624608685380807, + 12.9460041015982 + ], + [ + 77.624680373735799, + 12.9459613101043 + ], + [ + 77.624818906368404, + 12.945886983648199 + ], + [ + 77.624930764892497, + 12.945817015609499 + ], + [ + 77.625137251469994, + 12.9457073728998 + ], + [ + 77.625182440684895, + 12.9456940096275 + ], + [ + 77.625330145107498, + 12.9456028854854 + ], + [ + 77.625618817346094, + 12.9454522566793 + ], + [ + 77.6258795790677, + 12.945295944199099 + ], + [ + 77.626204362544101, + 12.9451650112759 + ], + [ + 77.626264768560603, + 12.9451397901897 + ], + [ + 77.626279943732001, + 12.945026029886099 + ], + [ + 77.626304686319003, + 12.944859657318601 + ], + [ + 77.626379767272496, + 12.9445405632662 + ], + [ + 77.625993058239501, + 12.9444203019822 + ], + [ + 77.626011991178601, + 12.944049551016599 + ], + [ + 77.626032393900701, + 12.942927440742499 + ], + [ + 77.626107303598801, + 12.9422791977639 + ], + [ + 77.626125002318304, + 12.9419829820215 + ], + [ + 77.626147576359998, + 12.9418817223102 + ], + [ + 77.626155992059793, + 12.941808045373801 + ], + [ + 77.626165812996504, + 12.9417223392353 + ], + [ + 77.626551535522594, + 12.941562256991 + ], + [ + 77.626745974818206, + 12.9414867054236 + ], + [ + 77.626926988356502, + 12.941305618764799 + ], + [ + 77.626971882974203, + 12.941200314027199 + ], + [ + 77.626985534056601, + 12.941120113917799 + ], + [ + 77.626991506405204, + 12.941036501037701 + ], + [ + 77.626993212790495, + 12.940982749900501 + ], + [ + 77.627004811883296, + 12.9407616927109 + ], + [ + 77.626889123286801, + 12.940725512315501 + ], + [ + 77.626558937729797, + 12.9405808961607 + ], + [ + 77.626340093814207, + 12.9405083747851 + ], + [ + 77.626241976659003, + 12.940478513042301 + ], + [ + 77.626177987209999, + 12.940464008767099 + ], + [ + 77.625987725248194, + 12.940388927813601 + ], + [ + 77.625917763450602, + 12.9403445617956 + ], + [ + 77.625863159120797, + 12.9403053149336 + ], + [ + 77.625800022864397, + 12.940236206328599 + ], + [ + 77.625696786553306, + 12.9401261444763 + ], + [ + 77.625615733251195, + 12.940027174128501 + ], + [ + 77.625487754353202, + 12.939929910166001 + ], + [ + 77.625422911711496, + 12.939876159028801 + ], + [ + 77.625333523598997, + 12.9399671262503 + ], + [ + 77.625239785083394, + 12.9400942278504 + ], + [ + 77.625101544946702, + 12.9402437215704 + ], + [ + 77.624719675293505, + 12.940626043326899 + ], + [ + 77.624184516004505, + 12.9411481009822 + ], + [ + 77.624071987795801, + 12.9412578733477 + ], + [ + 77.623984101695399, + 12.941348898341399 + ], + [ + 77.623911550877196, + 12.9414240404497 + ], + [ + 77.623463154110198, + 12.9418618816917 + ], + [ + 77.622824667683403, + 12.9424368680078 + ], + [ + 77.622792965571193, + 12.942465417934001 + ], + [ + 77.622526867483302, + 12.9427050503626 + ], + [ + 77.622007441446002, + 12.9431827371096 + ], + [ + 77.6217790925987, + 12.9433927356542 + ], + [ + 77.621577158364104, + 12.9435643657757 + ], + [ + 77.621119459710897, + 12.9439533741856 + ], + [ + 77.620969799379907, + 12.9440810373245 + ], + [ + 77.620945350124998, + 12.9441055147184 + ], + [ + 77.620864646229506, + 12.9441863123659 + ], + [ + 77.620687198452302, + 12.9443307106262 + ], + [ + 77.620481849520004, + 12.9444808749309 + ], + [ + 77.620182125218093, + 12.944697811183101 + ], + [ + 77.620032532546404, + 12.944808772651999 + ], + [ + 77.619754822967394, + 12.9450147645149 + ], + [ + 77.619289662506205, + 12.9453323716157 + ], + [ + 77.619110697897099, + 12.9454545683472 + ], + [ + 77.618744158926702, + 12.945699597339701 + ], + [ + 77.618647824731397, + 12.945764515400001 + ], + [ + 77.6185654558236, + 12.9458799461319 + ], + [ + 77.618480598971303, + 12.945913824114401 + ], + [ + 77.6182682606497, + 12.945986985384399 + ], + [ + 77.618156065815796, + 12.9456448551303 + ], + [ + 77.618092411810395, + 12.9454462488941 + ], + [ + 77.617800619922804, + 12.9456015299571 + ], + [ + 77.617425626255098, + 12.9457662217853 + ], + [ + 77.617333588097694, + 12.945446061242 + ], + [ + 77.617262773107399, + 12.9452557992803 + ], + [ + 77.617110051622404, + 12.945318082344 + ], + [ + 77.616965153144093, + 12.9449966348601 + ], + [ + 77.616618133067107, + 12.9451983692101 + ], + [ + 77.616284535790896, + 12.945952664246899 + ], + [ + 77.616202096454302, + 12.9461232056613 + ], + [ + 77.616166384504695, + 12.9462226890287 + ], + [ + 77.616132385918704, + 12.9466330466116 + ], + [ + 77.616089755061594, + 12.9468031883286 + ], + [ + 77.616074498700101, + 12.9470023543712 + ], + [ + 77.616141639538696, + 12.9472262005887 + ], + [ + 77.616246772770893, + 12.9475309620397 + ], + [ + 77.616327295708402, + 12.9477739652653 + ], + [ + 77.616372498314902, + 12.9479953320531 + ], + [ + 77.616435380297901, + 12.948448612216101 + ], + [ + 77.616516433599998, + 12.948539903830101 + ], + [ + 77.616675980626198, + 12.9487233402506 + ], + [ + 77.616801399946297, + 12.948876914928301 + ], + [ + 77.616975971504502, + 12.9491163776937 + ], + [ + 77.617133921018905, + 12.949013426191 + ], + [ + 77.6171554981388, + 12.949003201307599 + ], + [ + 77.617159279863003, + 12.9490014079679 + ], + [ + 77.617161282554306, + 12.9490004591312 + ], + [ + 77.617170464573803, + 12.948994598541599 + ], + [ + 77.617173864705904, + 12.948992427791699 + ], + [ + 77.617186445935602, + 12.948984396460901 + ], + [ + 77.617197938151094, + 12.948976515197399 + ], + [ + 77.617239381823197, + 12.948948093682301 + ], + [ + 77.617383645352703, + 12.9488491606444 + ], + [ + 77.617492176900797, + 12.9487678915914 + ], + [ + 77.617630405008398, + 12.948663738598301 + ], + [ + 77.617729209844398, + 12.948589723202399 + ], + [ + 77.617752645236493, + 12.948572168238201 + ], + [ + 77.617781553542002, + 12.948550445907401 + ], + [ + 77.6177923862694, + 12.9485423056454 + ], + [ + 77.617880594437395, + 12.9484760233651 + ], + [ + 77.617988911047405, + 12.948402603431701 + ], + [ + 77.618002353211807, + 12.9483934919629 + ], + [ + 77.618146971722993, + 12.948294920927999 + ], + [ + 77.618156587066693, + 12.9482883991707 + ], + [ + 77.618156723342295, + 12.9482883065557 + ], + [ + 77.6182635850829, + 12.9482158289699 + ], + [ + 77.618352327120405, + 12.948156236453899 + ], + [ + 77.618388209907295, + 12.948132139351999 + ], + [ + 77.618513938699095, + 12.948043921491999 + ], + [ + 77.618598780384204, + 12.9479755715127 + ], + [ + 77.618762458007694, + 12.9478437127623 + ], + [ + 77.618776542705206, + 12.9478323660678 + ], + [ + 77.618833895155902, + 12.9477879059414 + ], + [ + 77.618890183120101, + 12.9477442695843 + ], + [ + 77.6189348060783, + 12.9477139178243 + ], + [ + 77.619019940875006, + 12.947656011045099 + ], + [ + 77.619031798832495, + 12.947647883927999 + ], + [ + 77.619231544059303, + 12.947510975656201 + ], + [ + 77.619244003545603, + 12.947502435734799 + ], + [ + 77.619291449743798, + 12.9474703390483 + ], + [ + 77.619318878977396, + 12.9474508656188 + ], + [ + 77.619326521548004, + 12.9474649056201 + ], + [ + 77.619333553662997, + 12.9474778215803 + ], + [ + 77.619443919160304, + 12.9476833746438 + ], + [ + 77.619490719119597, + 12.947770552065199 + ], + [ + 77.619623951802794, + 12.9480187405285 + ], + [ + 77.619801222230805, + 12.9483489573784 + ], + [ + 77.619879893998998, + 12.948495503085301 + ], + [ + 77.619900229866104, + 12.948533384024101 + ], + [ + 77.619980405730104, + 12.9486827314129 + ], + [ + 77.619980561666196, + 12.948683021649099 + ], + [ + 77.620046896583204, + 12.948806579164399 + ], + [ + 77.620047681001793, + 12.9488080429451 + ], + [ + 77.620126632077998, + 12.948955546949801 + ], + [ + 77.620126669654596, + 12.9489556170385 + ], + [ + 77.620127494489495, + 12.9489571581063 + ], + [ + 77.620128085405398, + 12.9489582624651 + ], + [ + 77.620128118292101, + 12.948958324470199 + ], + [ + 77.620130143728403, + 12.948962107493299 + ], + [ + 77.620130541112303, + 12.948962849720701 + ], + [ + 77.620134757358301, + 12.9489707275899 + ], + [ + 77.620135867777805, + 12.9489728015129 + ], + [ + 77.620144030645505, + 12.9489880531446 + ], + [ + 77.620153932398694, + 12.949006550436099 + ], + [ + 77.620157488216094, + 12.9490131945528 + ], + [ + 77.620171336613595, + 12.949039067412 + ], + [ + 77.620172551267004, + 12.949041331811101 + ], + [ + 77.620218048613594, + 12.949126146112 + ], + [ + 77.620218345448805, + 12.949126697825699 + ], + [ + 77.620254669029194, + 12.949187317772999 + ], + [ + 77.620277992899602, + 12.949226240060501 + ], + [ + 77.620301972945498, + 12.9492662588258 + ], + [ + 77.6203077109585, + 12.9492579430809 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "143", + "group": "SRINIVAGLU", + "Corporatio": "South", + "ac_no": "172", + "ac": "B.T.M Layout", + "corporat_1": "4", + "ward_id": "27", + "ward_name": "27 - Srinivagilu", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬಿ.ಟಿ.ಎಂ. ಲೇಔಟ್", + "ward_name_": "ಶ್ರೀನಿವಾಗಿಲು", + "dig_ward_n": "SRINIVAGLU", + "Assembly": "172 - B.T.M Layout", + "Slno": "27" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.639192333009305, + 12.924147077303401 + ], + [ + 77.638756648688599, + 12.924314240985 + ], + [ + 77.638511609687498, + 12.9244334858782 + ], + [ + 77.638186938369401, + 12.9246494053418 + ], + [ + 77.638158249975902, + 12.9246684835508 + ], + [ + 77.638136583006201, + 12.924682893330001 + ], + [ + 77.637671848018996, + 12.9249895771309 + ], + [ + 77.637586633584405, + 12.925030505525299 + ], + [ + 77.637406372834405, + 12.9251170834542 + ], + [ + 77.637389563863394, + 12.9251262160588 + ], + [ + 77.637255353078601, + 12.9251991387153 + ], + [ + 77.637059099698007, + 12.9252736007385 + ], + [ + 77.636919970210897, + 12.925315268920601 + ], + [ + 77.636833819916404, + 12.9253201677574 + ], + [ + 77.636702036289705, + 12.925321499353799 + ], + [ + 77.636694269414207, + 12.925321577831401 + ], + [ + 77.636546465848497, + 12.9253190429129 + ], + [ + 77.636373784673694, + 12.925292602070201 + ], + [ + 77.635975061700293, + 12.9252402599421 + ], + [ + 77.6355186191401, + 12.9251643402167 + ], + [ + 77.634988090776503, + 12.925069036121799 + ], + [ + 77.634130588253697, + 12.9249369869602 + ], + [ + 77.633538972201507, + 12.924845880167 + ], + [ + 77.633442153323301, + 12.924830969815901 + ], + [ + 77.632710126384794, + 12.9247014555178 + ], + [ + 77.632218973064894, + 12.924621918348199 + ], + [ + 77.632101570225402, + 12.924602905807699 + ], + [ + 77.631607925244396, + 12.924521384257201 + ], + [ + 77.631320288562094, + 12.9244738823155 + ], + [ + 77.630411348195906, + 12.924305877922899 + ], + [ + 77.630140074416204, + 12.924272376096299 + ], + [ + 77.629749475219697, + 12.9242118862713 + ], + [ + 77.629735226623595, + 12.924210672018001 + ], + [ + 77.629453659031796, + 12.924186681323601 + ], + [ + 77.629285375266605, + 12.924188376816501 + ], + [ + 77.629121283010093, + 12.9241980830122 + ], + [ + 77.629022816262804, + 12.924203101491999 + ], + [ + 77.628889353352506, + 12.924170819044599 + ], + [ + 77.628480457130195, + 12.9240719140384 + ], + [ + 77.628242880696007, + 12.9240144482488 + ], + [ + 77.627223677487706, + 12.923785896944899 + ], + [ + 77.626003706764195, + 12.923531265214701 + ], + [ + 77.625563638796294, + 12.923454902857699 + ], + [ + 77.6248559211772, + 12.9233320948036 + ], + [ + 77.624789499857201, + 12.923311847794199 + ], + [ + 77.6240082643601, + 12.923073706403899 + ], + [ + 77.623772986622598, + 12.922982965465099 + ], + [ + 77.623053388788804, + 12.922705431902299 + ], + [ + 77.622872309575001, + 12.922635592491 + ], + [ + 77.621910577445703, + 12.9220959419855 + ], + [ + 77.621418115321006, + 12.922933999409199 + ], + [ + 77.621273835197002, + 12.9231794684934 + ], + [ + 77.621156785336794, + 12.9233856896343 + ], + [ + 77.620903826423202, + 12.923811876161601 + ], + [ + 77.620827264032599, + 12.923976647713999 + ], + [ + 77.621152543334205, + 12.9241153092988 + ], + [ + 77.621200184701394, + 12.924168898744799 + ], + [ + 77.621165342320296, + 12.924241339296501 + ], + [ + 77.621122427103899, + 12.9243104816818 + ], + [ + 77.621053745457701, + 12.9243314469773 + ], + [ + 77.6208263808429, + 12.924457695780401 + ], + [ + 77.620694614304796, + 12.9245899652507 + ], + [ + 77.620551686475807, + 12.924717608319 + ], + [ + 77.620396343656793, + 12.924776535372899 + ], + [ + 77.6203401634573, + 12.9248892249876 + ], + [ + 77.620239486724103, + 12.925032561353399 + ], + [ + 77.619941290972207, + 12.925349633962099 + ], + [ + 77.620126641001903, + 12.9255043448603 + ], + [ + 77.620310823240601, + 12.925767203265 + ], + [ + 77.621013628224802, + 12.9275286173913 + ], + [ + 77.621979054647994, + 12.9303120282982 + ], + [ + 77.622563278818504, + 12.9317758673747 + ], + [ + 77.622877543111898, + 12.932486382682301 + ], + [ + 77.622989382415696, + 12.9327488387251 + ], + [ + 77.623427344541597, + 12.933558830465 + ], + [ + 77.623796037364301, + 12.9345531231421 + ], + [ + 77.623800899535098, + 12.9346282734406 + ], + [ + 77.624048252843295, + 12.9349783531516 + ], + [ + 77.624245249072104, + 12.9351735704921 + ], + [ + 77.624341474075806, + 12.9352438311331 + ], + [ + 77.624826499326304, + 12.9356004814664 + ], + [ + 77.625457605007696, + 12.936089158133701 + ], + [ + 77.625695791198794, + 12.936290890705401 + ], + [ + 77.626303936917097, + 12.936768799943801 + ], + [ + 77.627526028724006, + 12.9377500525756 + ], + [ + 77.627858596719307, + 12.937924673373301 + ], + [ + 77.628440680203099, + 12.938238705701 + ], + [ + 77.628685389946298, + 12.9383578905547 + ], + [ + 77.628772806781001, + 12.938115285848101 + ], + [ + 77.628863359243994, + 12.9376869893105 + ], + [ + 77.628872559460603, + 12.9376161438695 + ], + [ + 77.628887019253696, + 12.937600700561299 + ], + [ + 77.629143045680607, + 12.9376612223572 + ], + [ + 77.629156327905307, + 12.937627458838 + ], + [ + 77.6291762768073, + 12.937576748707301 + ], + [ + 77.629255431340198, + 12.937409586843099 + ], + [ + 77.629348845092494, + 12.937207860208201 + ], + [ + 77.629447916352504, + 12.9369879115714 + ], + [ + 77.629572792443895, + 12.93671894003 + ], + [ + 77.629679539847103, + 12.936487439700601 + ], + [ + 77.629735762788002, + 12.936364489951201 + ], + [ + 77.6297921750634, + 12.9361412223017 + ], + [ + 77.630125490195596, + 12.9362572614071 + ], + [ + 77.630267444792594, + 12.9360764151397 + ], + [ + 77.6303339449493, + 12.936124456977399 + ], + [ + 77.630449409442093, + 12.9362595386288 + ], + [ + 77.630626933191806, + 12.936456380186399 + ], + [ + 77.630759458947196, + 12.936614953504099 + ], + [ + 77.630915486399303, + 12.936825390211901 + ], + [ + 77.630836992675199, + 12.9368740221931 + ], + [ + 77.630697922272603, + 12.9369815244675 + ], + [ + 77.630797980825903, + 12.9370813871283 + ], + [ + 77.630861448189805, + 12.9371381134407 + ], + [ + 77.630890831187202, + 12.937151442225501 + ], + [ + 77.631009748586706, + 12.937268397309101 + ], + [ + 77.631107012549194, + 12.9373724868128 + ], + [ + 77.631240110603102, + 12.937491933784401 + ], + [ + 77.631429519372304, + 12.9376028488293 + ], + [ + 77.631558351462999, + 12.9377419192319 + ], + [ + 77.631593478393398, + 12.937855698945899 + ], + [ + 77.631612971393693, + 12.9378786565428 + ], + [ + 77.631626606875301, + 12.9379859323308 + ], + [ + 77.631649216480596, + 12.938077223944701 + ], + [ + 77.631655541154501, + 12.9381268477854 + ], + [ + 77.631668884792305, + 12.9382837550323 + ], + [ + 77.631682079998598, + 12.9383666827407 + ], + [ + 77.632104410362203, + 12.938248088961799 + ], + [ + 77.632429476763207, + 12.938150824999299 + ], + [ + 77.632885452535405, + 12.937973075078601 + ], + [ + 77.632890298205595, + 12.937981456097701 + ], + [ + 77.632924404445802, + 12.937904701100001 + ], + [ + 77.632974678530502, + 12.937821224990399 + ], + [ + 77.633113945762901, + 12.937589980733801 + ], + [ + 77.633302445560204, + 12.9373407681354 + ], + [ + 77.633484352324899, + 12.937176316839601 + ], + [ + 77.633533669491797, + 12.937131562407799 + ], + [ + 77.633639022339295, + 12.937035958104 + ], + [ + 77.633661462520394, + 12.937015594405 + ], + [ + 77.633849292595897, + 12.936845144082501 + ], + [ + 77.634269310632305, + 12.9364964755855 + ], + [ + 77.634491881372298, + 12.9363124164068 + ], + [ + 77.634531758464504, + 12.9362724874838 + ], + [ + 77.634567076453905, + 12.9362371243841 + ], + [ + 77.634598550487894, + 12.9361645344453 + ], + [ + 77.634587683165506, + 12.936143751982 + ], + [ + 77.634587640586403, + 12.936143670561499 + ], + [ + 77.634586214077601, + 12.936140942765 + ], + [ + 77.634585958315498, + 12.9361404536678 + ], + [ + 77.634576815854601, + 12.9361229704213 + ], + [ + 77.634593491885994, + 12.9361095439418 + ], + [ + 77.634637892988195, + 12.9360737949883 + ], + [ + 77.634693337056007, + 12.936028744520099 + ], + [ + 77.634719515233201, + 12.9360074730065 + ], + [ + 77.634756417606894, + 12.935958541825901 + ], + [ + 77.634809224806006, + 12.9358891231998 + ], + [ + 77.634899497096697, + 12.935769637524499 + ], + [ + 77.634916787938806, + 12.9357545690923 + ], + [ + 77.634974223992998, + 12.935704515335001 + ], + [ + 77.635029932120801, + 12.935655593749599 + ], + [ + 77.635048374331802, + 12.9356393980538 + ], + [ + 77.635075679250207, + 12.935609569774901 + ], + [ + 77.635154798451296, + 12.9355231377957 + ], + [ + 77.635237885279096, + 12.9354319571323 + ], + [ + 77.635319269931401, + 12.935343052180301 + ], + [ + 77.635535524560396, + 12.935105979123 + ], + [ + 77.635617740095199, + 12.9350159644603 + ], + [ + 77.635663572309198, + 12.934965786586901 + ], + [ + 77.635679319707293, + 12.9349483849454 + ], + [ + 77.635784222582998, + 12.9348290520531 + ], + [ + 77.636178224132394, + 12.934380852086299 + ], + [ + 77.636721717054797, + 12.933762569649501 + ], + [ + 77.637095042129701, + 12.933337870507801 + ], + [ + 77.637130467724603, + 12.933297569881001 + ], + [ + 77.637168729325197, + 12.9332540434105 + ], + [ + 77.637260997095197, + 12.9331324312506 + ], + [ + 77.637332587763495, + 12.9330380735136 + ], + [ + 77.637762233339203, + 12.9324717894306 + ], + [ + 77.637873095384094, + 12.9323256711528 + ], + [ + 77.6379508739752, + 12.932164727365 + ], + [ + 77.638005524002395, + 12.93205164157 + ], + [ + 77.638047248807595, + 12.931953403925601 + ], + [ + 77.638093550171405, + 12.9318443929211 + ], + [ + 77.638521720884498, + 12.931283315031999 + ], + [ + 77.638812399473096, + 12.9309044303448 + ], + [ + 77.639050639443894, + 12.9307884183841 + ], + [ + 77.639469634600601, + 12.930598628107701 + ], + [ + 77.639523261802907, + 12.9305564311541 + ], + [ + 77.6395457949383, + 12.9304956152227 + ], + [ + 77.639490256364297, + 12.9303560695593 + ], + [ + 77.639474251406796, + 12.930303215945299 + ], + [ + 77.639465971125205, + 12.9302502859738 + ], + [ + 77.6394772358437, + 12.9302198771266 + ], + [ + 77.639515098814698, + 12.930147546640599 + ], + [ + 77.6395889911106, + 12.9298287146256 + ], + [ + 77.639588413176398, + 12.929820438938 + ], + [ + 77.639580862013503, + 12.929712304303701 + ], + [ + 77.639579051126404, + 12.929686365022301 + ], + [ + 77.639609420548794, + 12.9296766536878 + ], + [ + 77.639702130220996, + 12.929647007572401 + ], + [ + 77.639847210077207, + 12.9296006139386 + ], + [ + 77.639936260693901, + 12.9295721380812 + ], + [ + 77.640304612037497, + 12.9295126997874 + ], + [ + 77.641003972299998, + 12.9293998469717 + ], + [ + 77.641245107201698, + 12.9294493524343 + ], + [ + 77.641500617053794, + 12.9293880430388 + ], + [ + 77.641768767349006, + 12.9293243477982 + ], + [ + 77.641901009919906, + 12.9292552531489 + ], + [ + 77.641893566300595, + 12.9291584734806 + ], + [ + 77.641892456164996, + 12.9291440399685 + ], + [ + 77.641875667978894, + 12.928925766626 + ], + [ + 77.641852574937602, + 12.928375835542701 + ], + [ + 77.641845711048703, + 12.928212379273299 + ], + [ + 77.641869872982198, + 12.928211005347899 + ], + [ + 77.641823670017899, + 12.9279777168996 + ], + [ + 77.641706700060496, + 12.927583661125 + ], + [ + 77.641593432111407, + 12.9271037441501 + ], + [ + 77.641453492590202, + 12.9266218650263 + ], + [ + 77.641400514435304, + 12.926439435053 + ], + [ + 77.641333604169702, + 12.9262074852297 + ], + [ + 77.6413204784957, + 12.9261635770323 + ], + [ + 77.641256170952403, + 12.926107380925499 + ], + [ + 77.641098383598205, + 12.925969495894501 + ], + [ + 77.6410956460915, + 12.9259671033762 + ], + [ + 77.640816324716695, + 12.925953158663001 + ], + [ + 77.640550243164199, + 12.925939874662101 + ], + [ + 77.640380066655993, + 12.925959664849699 + ], + [ + 77.640145427071602, + 12.9259801071747 + ], + [ + 77.639871898453805, + 12.9260246571805 + ], + [ + 77.639851631956702, + 12.926025715935101 + ], + [ + 77.639737852550795, + 12.92603165958 + ], + [ + 77.639688944961193, + 12.9260219566824 + ], + [ + 77.6396403677781, + 12.9260123190915 + ], + [ + 77.639567836232104, + 12.9259883924975 + ], + [ + 77.639560655161901, + 12.925986023228599 + ], + [ + 77.639478196243203, + 12.925972176973699 + ], + [ + 77.639399398997298, + 12.9259532432001 + ], + [ + 77.639356431014093, + 12.925942918638899 + ], + [ + 77.639313015434595, + 12.9259196433262 + ], + [ + 77.639236731581803, + 12.925891054151601 + ], + [ + 77.639166003435193, + 12.9258432113428 + ], + [ + 77.639115828321593, + 12.92566981279 + ], + [ + 77.639195730163195, + 12.925385560443299 + ], + [ + 77.639213238991601, + 12.925134687671999 + ], + [ + 77.639283404857196, + 12.9249228691562 + ], + [ + 77.639316454714901, + 12.924823097307501 + ], + [ + 77.639298700427901, + 12.9246092821364 + ], + [ + 77.639297341296299, + 12.9245929216147 + ], + [ + 77.639265655421497, + 12.9242070351983 + ], + [ + 77.639276357238302, + 12.9241441012956 + ], + [ + 77.639192333009305, + 12.924147077303401 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "144", + "group": "EJIPURA", + "Corporatio": "South", + "ac_no": "172", + "ac": "B.T.M Layout", + "corporat_1": "4", + "ward_id": "17", + "ward_name": "17 - Ejipura", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬಿ.ಟಿ.ಎಂ. ಲೇಔಟ್", + "ward_name_": "ಈಜಿಪುರ", + "dig_ward_n": "EJIPURA", + "Assembly": "172 - B.T.M Layout", + "Slno": "17" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6203077109585, + 12.9492579430809 + ], + [ + 77.620301972945498, + 12.9492662588258 + ], + [ + 77.620390950724598, + 12.949414747995601 + ], + [ + 77.620424923253495, + 12.9494714424518 + ], + [ + 77.620504070005097, + 12.9496035238333 + ], + [ + 77.620515911983901, + 12.9496232862446 + ], + [ + 77.620590983705497, + 12.949748566984701 + ], + [ + 77.620607393710898, + 12.9497766355406 + ], + [ + 77.620621465594596, + 12.9498007046932 + ], + [ + 77.620739489789301, + 12.9500025733033 + ], + [ + 77.620748051675903, + 12.9500172183076 + ], + [ + 77.620760996260202, + 12.950039359149301 + ], + [ + 77.620789264838606, + 12.950087711183 + ], + [ + 77.620888984813405, + 12.950258277892599 + ], + [ + 77.620903414084793, + 12.950282957748099 + ], + [ + 77.620912421764004, + 12.950301913888101 + ], + [ + 77.621008813660495, + 12.950504766947599 + ], + [ + 77.621035859382403, + 12.9505616848054 + ], + [ + 77.621074534625393, + 12.950655114733999 + ], + [ + 77.621082646355305, + 12.950674711368 + ], + [ + 77.621169928762399, + 12.9508855663099 + ], + [ + 77.621197187288701, + 12.950959824011701 + ], + [ + 77.621296116942105, + 12.9512264660833 + ], + [ + 77.621325823902396, + 12.951290251084201 + ], + [ + 77.621343230483703, + 12.9513276264799 + ], + [ + 77.621362926953196, + 12.9513701978741 + ], + [ + 77.621404182139003, + 12.951459366514699 + ], + [ + 77.621405820049503, + 12.951462905883799 + ], + [ + 77.621407627597506, + 12.9514668121402 + ], + [ + 77.621498729115601, + 12.9516637139787 + ], + [ + 77.621521218243899, + 12.951653622299901 + ], + [ + 77.621963755856797, + 12.951455043150901 + ], + [ + 77.621970223872196, + 12.9514521404045 + ], + [ + 77.622031619163806, + 12.951424590566701 + ], + [ + 77.622310674403295, + 12.9512998198371 + ], + [ + 77.622425232951798, + 12.951244461405301 + ], + [ + 77.622894112434295, + 12.9510182539162 + ], + [ + 77.623041139546004, + 12.9509473231395 + ], + [ + 77.623057443594107, + 12.9509394564166 + ], + [ + 77.623113734274298, + 12.950912298360301 + ], + [ + 77.623149821513294, + 12.9508949958665 + ], + [ + 77.623298199804594, + 12.9508257452694 + ], + [ + 77.623326263694395, + 12.9508119113743 + ], + [ + 77.623337651065199, + 12.9508081089395 + ], + [ + 77.623375257101898, + 12.9507955512269 + ], + [ + 77.623381052667895, + 12.950793615556099 + ], + [ + 77.623488865481704, + 12.9507576135305 + ], + [ + 77.623549426127298, + 12.9507373903795 + ], + [ + 77.623582748367397, + 12.950730312549799 + ], + [ + 77.623615696598094, + 12.9507233188875 + ], + [ + 77.623615839050998, + 12.950723288543299 + ], + [ + 77.623616052269796, + 12.9507232430317 + ], + [ + 77.623620574965599, + 12.950722284122699 + ], + [ + 77.623621028976601, + 12.950722187401199 + ], + [ + 77.623628772049003, + 12.950720544691499 + ], + [ + 77.623629216868807, + 12.950720449869401 + ], + [ + 77.623638336681594, + 12.950718514136399 + ], + [ + 77.623638759444603, + 12.9507184240536 + ], + [ + 77.623651018755695, + 12.9507158215955 + ], + [ + 77.623651205322105, + 12.9507157817728 + ], + [ + 77.623660219446094, + 12.9507138687857 + ], + [ + 77.623671497205706, + 12.950711474965299 + ], + [ + 77.623672119410202, + 12.9507113431231 + ], + [ + 77.623694723637698, + 12.950706545052601 + ], + [ + 77.623696063623001, + 12.9507062605303 + ], + [ + 77.623719575833107, + 12.9507012654012 + ], + [ + 77.623723734595501, + 12.950700385139999 + ], + [ + 77.623762113521394, + 12.950692238203301 + ], + [ + 77.623813278377995, + 12.9506813777919 + ], + [ + 77.623836056317302, + 12.950676544533801 + ], + [ + 77.623938856528397, + 12.950654720462801 + ], + [ + 77.6239588579474, + 12.9506504725724 + ], + [ + 77.624174959588203, + 12.9506046108385 + ], + [ + 77.624216897554405, + 12.9505962834376 + ], + [ + 77.624255969209401, + 12.9505891141785 + ], + [ + 77.624711580017404, + 12.9504913280943 + ], + [ + 77.624763498943295, + 12.9504801852735 + ], + [ + 77.625420843033893, + 12.9503390998375 + ], + [ + 77.625428421463994, + 12.9503367793693 + ], + [ + 77.625485687582994, + 12.950319248674299 + ], + [ + 77.625545850729097, + 12.950301208150201 + ], + [ + 77.625653261421704, + 12.950269001007401 + ], + [ + 77.625918580743203, + 12.950152270290999 + ], + [ + 77.626130235123895, + 12.950018250581399 + ], + [ + 77.626186797339798, + 12.9499824354046 + ], + [ + 77.626194221276904, + 12.9499767133102 + ], + [ + 77.626307236299297, + 12.949884103118499 + ], + [ + 77.626377362254303, + 12.949827611114999 + ], + [ + 77.626467649288898, + 12.9497548783987 + ], + [ + 77.6264921999108, + 12.949735433294 + ], + [ + 77.626619463263694, + 12.949629128120099 + ], + [ + 77.626773544064505, + 12.949499967116299 + ], + [ + 77.626803227906507, + 12.9494759540588 + ], + [ + 77.626839109198897, + 12.9494487219735 + ], + [ + 77.627012837052305, + 12.949316872034901 + ], + [ + 77.627047608792296, + 12.9492848467593 + ], + [ + 77.627140262279696, + 12.9491995162899 + ], + [ + 77.627169589487195, + 12.94917250656 + ], + [ + 77.627283100414303, + 12.9490679650954 + ], + [ + 77.627508265398106, + 12.9488003170892 + ], + [ + 77.627615784592606, + 12.9486402805074 + ], + [ + 77.627651107944303, + 12.948587703267799 + ], + [ + 77.627671057286506, + 12.9485518090582 + ], + [ + 77.628051140220506, + 12.9478677134055 + ], + [ + 77.628200860111804, + 12.9475974374401 + ], + [ + 77.628312739347095, + 12.947396428488901 + ], + [ + 77.628358934613502, + 12.947313433804201 + ], + [ + 77.628413878400593, + 12.947214725413501 + ], + [ + 77.628437604331296, + 12.947171572999499 + ], + [ + 77.628652786063896, + 12.946830621954801 + ], + [ + 77.628699785756297, + 12.946761903906401 + ], + [ + 77.628749682921793, + 12.94668894852 + ], + [ + 77.6288285505549, + 12.946573634284499 + ], + [ + 77.6288302527947, + 12.9465713585759 + ], + [ + 77.6289231240102, + 12.946433868781201 + ], + [ + 77.628925487637105, + 12.946430368597699 + ], + [ + 77.628931160876704, + 12.946422405584601 + ], + [ + 77.628981099507101, + 12.946348497560701 + ], + [ + 77.629106326470904, + 12.9461631662365 + ], + [ + 77.629425127794505, + 12.945547886817501 + ], + [ + 77.629546445426001, + 12.9453140336866 + ], + [ + 77.629552145408994, + 12.945302967317399 + ], + [ + 77.629642919752996, + 12.9451267311659 + ], + [ + 77.629670004242598, + 12.945074511587899 + ], + [ + 77.629905089697999, + 12.944545900148301 + ], + [ + 77.629997540879401, + 12.944338283395201 + ], + [ + 77.630009138262096, + 12.944312222138601 + ], + [ + 77.630014752209107, + 12.944298614287099 + ], + [ + 77.6300178216663, + 12.944291983877701 + ], + [ + 77.630435897133395, + 12.9433891576733 + ], + [ + 77.630440316686006, + 12.943379613681101 + ], + [ + 77.630520667801804, + 12.943201036348899 + ], + [ + 77.630521178145401, + 12.943199901931999 + ], + [ + 77.630566939119902, + 12.943098198841099 + ], + [ + 77.629935893302402, + 12.9430759435207 + ], + [ + 77.629867832879199, + 12.943082749563001 + ], + [ + 77.629862971420394, + 12.9430370518503 + ], + [ + 77.629508084927906, + 12.943013716848 + ], + [ + 77.629484749925695, + 12.942817313912499 + ], + [ + 77.629305848241799, + 12.9424770117965 + ], + [ + 77.629313626575893, + 12.942249495524599 + ], + [ + 77.629064719885307, + 12.942239772607 + ], + [ + 77.628410070570993, + 12.942404190487601 + ], + [ + 77.628180135150899, + 12.942472445899901 + ], + [ + 77.628154539371295, + 12.942483537404399 + ], + [ + 77.628144075075795, + 12.942465430455901 + ], + [ + 77.628075251800794, + 12.9423163726875 + ], + [ + 77.627915920585906, + 12.9423442722078 + ], + [ + 77.627749179391401, + 12.94236268551 + ], + [ + 77.627621388918897, + 12.942377120371299 + ], + [ + 77.627570141925204, + 12.9423704657169 + ], + [ + 77.627450528979494, + 12.942351354671899 + ], + [ + 77.627396770894904, + 12.9423375548932 + ], + [ + 77.627343137111197, + 12.942335705123 + ], + [ + 77.626863232289907, + 12.942318444625901 + ], + [ + 77.626612393649793, + 12.942289436075701 + ], + [ + 77.626107303598801, + 12.9422791977639 + ], + [ + 77.626032393900701, + 12.942927440742499 + ], + [ + 77.626011991178601, + 12.944049551016599 + ], + [ + 77.625993058239501, + 12.9444203019822 + ], + [ + 77.626379767272496, + 12.9445405632662 + ], + [ + 77.626304686319003, + 12.944859657318601 + ], + [ + 77.626279943732001, + 12.945026029886099 + ], + [ + 77.626264768560603, + 12.9451397901897 + ], + [ + 77.626204362544101, + 12.9451650112759 + ], + [ + 77.6258795790677, + 12.945295944199099 + ], + [ + 77.625618817346094, + 12.9454522566793 + ], + [ + 77.625330145107498, + 12.9456028854854 + ], + [ + 77.625182440684895, + 12.9456940096275 + ], + [ + 77.625137251469994, + 12.9457073728998 + ], + [ + 77.624930764892497, + 12.945817015609499 + ], + [ + 77.624818906368404, + 12.945886983648199 + ], + [ + 77.624680373735799, + 12.9459613101043 + ], + [ + 77.624608685380807, + 12.9460041015982 + ], + [ + 77.624506046211494, + 12.9460701516031 + ], + [ + 77.624191901594003, + 12.946232031441699 + ], + [ + 77.623938411831901, + 12.9463215905499 + ], + [ + 77.623969965027996, + 12.9465421365054 + ], + [ + 77.623874961176995, + 12.946985734036099 + ], + [ + 77.623709815110104, + 12.947392354620501 + ], + [ + 77.623333877540404, + 12.947672466525001 + ], + [ + 77.623276599074799, + 12.947695034237301 + ], + [ + 77.6230527347807, + 12.947520065990901 + ], + [ + 77.622147278544404, + 12.9487465608306 + ], + [ + 77.621909453835002, + 12.9487008942138 + ], + [ + 77.6217379007239, + 12.94860400942 + ], + [ + 77.621289282287805, + 12.948305434100799 + ], + [ + 77.621064530760407, + 12.948160452604901 + ], + [ + 77.6203077109585, + 12.9492579430809 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "145", + "group": "ADUGODI A", + "Corporatio": "South", + "ac_no": "172", + "ac": "B.T.M Layout", + "corporat_1": "4", + "ward_id": "15", + "ward_name": "15 - A Adugodi", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬಿ.ಟಿ.ಎಂ. ಲೇಔಟ್", + "ward_name_": "ಎ. ಅಡುಗೋಡಿ", + "dig_ward_n": "ADUGODI A", + "Assembly": "172 - B.T.M Layout", + "Slno": "15" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.602830026583305, + 12.9444505267367 + ], + [ + 77.6027710168417, + 12.9444583715132 + ], + [ + 77.602725376993604, + 12.9446844005677 + ], + [ + 77.602680234905606, + 12.9449028908197 + ], + [ + 77.602676044496206, + 12.9449231731338 + ], + [ + 77.602650808466194, + 12.9450431297535 + ], + [ + 77.6026071169956, + 12.945254075427499 + ], + [ + 77.602552132454704, + 12.945519544820201 + ], + [ + 77.602518687729599, + 12.9460133779033 + ], + [ + 77.602517970247902, + 12.946055168741101 + ], + [ + 77.602517932001007, + 12.946058582284399 + ], + [ + 77.602517541601699, + 12.946093107175599 + ], + [ + 77.602516769760499, + 12.946161333842801 + ], + [ + 77.602486277442296, + 12.9464598355923 + ], + [ + 77.602485938020394, + 12.9464631627041 + ], + [ + 77.602483932703294, + 12.9464829380534 + ], + [ + 77.602467850000707, + 12.9466415306284 + ], + [ + 77.602443639216403, + 12.9468802926216 + ], + [ + 77.602442570028003, + 12.9468882083199 + ], + [ + 77.602434321586799, + 12.9469142029082 + ], + [ + 77.602415254344095, + 12.9469743070772 + ], + [ + 77.602422546252896, + 12.9471775061608 + ], + [ + 77.602423438987998, + 12.9471971296971 + ], + [ + 77.602424036591103, + 12.9472102406388 + ], + [ + 77.602425549944002, + 12.9473559037279 + ], + [ + 77.602449757041796, + 12.9475803903202 + ], + [ + 77.6025021691825, + 12.9478045951557 + ], + [ + 77.602506968294307, + 12.9478253676791 + ], + [ + 77.602582340414997, + 12.9481516150756 + ], + [ + 77.602620410057099, + 12.9483251451481 + ], + [ + 77.602629948492293, + 12.9483566699277 + ], + [ + 77.602630453303703, + 12.948358448256499 + ], + [ + 77.602653255062407, + 12.948438875127501 + ], + [ + 77.602700505422305, + 12.9485484490459 + ], + [ + 77.602745868139095, + 12.9486536439071 + ], + [ + 77.602791869801607, + 12.948759337386701 + ], + [ + 77.602832574462795, + 12.948853790894301 + ], + [ + 77.602840244405996, + 12.9488717828697 + ], + [ + 77.602899226740007, + 12.949007837393699 + ], + [ + 77.602915743214496, + 12.9490460681561 + ], + [ + 77.602919279108903, + 12.949053937841899 + ], + [ + 77.602996034872504, + 12.9492383741143 + ], + [ + 77.603005909548898, + 12.9492621774993 + ], + [ + 77.603080474318105, + 12.949441930550201 + ], + [ + 77.603146610908297, + 12.949601629419901 + ], + [ + 77.603151954910004, + 12.9496173860448 + ], + [ + 77.603328795053301, + 12.950126475902399 + ], + [ + 77.603348977774104, + 12.9501845780169 + ], + [ + 77.603369159400401, + 12.950243099265199 + ], + [ + 77.603423323737005, + 12.950437242812299 + ], + [ + 77.603443306875704, + 12.950508869122199 + ], + [ + 77.603909561555696, + 12.9503924092001 + ], + [ + 77.6041937538089, + 12.9503414081176 + ], + [ + 77.604802525945303, + 12.950232156839199 + ], + [ + 77.604989762508794, + 12.9502076553634 + ], + [ + 77.605683213979702, + 12.9501169094486 + ], + [ + 77.605689262050902, + 12.9501161180756 + ], + [ + 77.605690190189804, + 12.950115996766201 + ], + [ + 77.605693704826805, + 12.950104975486701 + ], + [ + 77.605712769972996, + 12.9500451905506 + ], + [ + 77.605716820660206, + 12.950032489384901 + ], + [ + 77.605727858528496, + 12.9499978743291 + ], + [ + 77.605735348825903, + 12.9499743843443 + ], + [ + 77.605751600108604, + 12.9499233759245 + ], + [ + 77.6057916560964, + 12.949797652549201 + ], + [ + 77.605858387539698, + 12.949787365340899 + ], + [ + 77.605862158264898, + 12.949774148647499 + ], + [ + 77.605858387539698, + 12.9497873653408 + ], + [ + 77.605858531938694, + 12.9497873430805 + ], + [ + 77.605960088100204, + 12.949771686184301 + ], + [ + 77.606467459400307, + 12.9496934675755 + ], + [ + 77.606510038436596, + 12.949686903646199 + ], + [ + 77.607801357653301, + 12.949487823012801 + ], + [ + 77.608307736668095, + 12.9494097536887 + ], + [ + 77.608338536000602, + 12.9494050049615 + ], + [ + 77.608979904997597, + 12.9493061220298 + ], + [ + 77.608986838347107, + 12.949305078697501 + ], + [ + 77.609407478608205, + 12.9492418211188 + ], + [ + 77.609443178808206, + 12.9492364523469 + ], + [ + 77.609443966983804, + 12.9492363360407 + ], + [ + 77.609444254845599, + 12.9492362934065 + ], + [ + 77.609929482369907, + 12.949165613400501 + ], + [ + 77.610296556464206, + 12.9490994157788 + ], + [ + 77.610353240464804, + 12.949089193180299 + ], + [ + 77.610398831570194, + 12.9490809711056 + ], + [ + 77.610466456290496, + 12.949068775696199 + ], + [ + 77.611036756019402, + 12.948965927623201 + ], + [ + 77.611129669414794, + 12.948978652524501 + ], + [ + 77.611211665987199, + 12.948989882333301 + ], + [ + 77.611255475351896, + 12.948995882818799 + ], + [ + 77.611436278678596, + 12.949020645584399 + ], + [ + 77.611501854299405, + 12.9491028964114 + ], + [ + 77.611531733961399, + 12.9491403744825 + ], + [ + 77.611614921995098, + 12.949244715412901 + ], + [ + 77.611623320789107, + 12.9492552500661 + ], + [ + 77.611655012028905, + 12.9492950001359 + ], + [ + 77.611664937702798, + 12.9493074491944 + ], + [ + 77.611684616654799, + 12.9493072320273 + ], + [ + 77.611700143620496, + 12.949307060406699 + ], + [ + 77.612464517791494, + 12.9492986105816 + ], + [ + 77.612517161241698, + 12.9492980284548 + ], + [ + 77.612662885712098, + 12.9492964169903 + ], + [ + 77.612663779999806, + 12.949296407117799 + ], + [ + 77.612763802053806, + 12.949295300956001 + ], + [ + 77.612804096077696, + 12.949294896816101 + ], + [ + 77.613063704684095, + 12.949292292851601 + ], + [ + 77.613123837166995, + 12.949291689664999 + ], + [ + 77.613127880383303, + 12.949291649107201 + ], + [ + 77.613461464101803, + 12.949288302684799 + ], + [ + 77.613610232306598, + 12.9492868101444 + ], + [ + 77.6137982067754, + 12.9492849241395 + ], + [ + 77.614167974005994, + 12.9492825544369 + ], + [ + 77.614335296558195, + 12.9492814805807 + ], + [ + 77.614386907026599, + 12.949281149635601 + ], + [ + 77.614394513889806, + 12.9492811003963 + ], + [ + 77.614421635751498, + 12.9492809266742 + ], + [ + 77.614521219412694, + 12.949279927227799 + ], + [ + 77.614651690139496, + 12.9492783774232 + ], + [ + 77.615042532130701, + 12.9492737333414 + ], + [ + 77.615133675743493, + 12.9492726503493 + ], + [ + 77.6151388106166, + 12.949272625000599 + ], + [ + 77.615148894301001, + 12.949272574363899 + ], + [ + 77.615173467990402, + 12.9492724514401 + ], + [ + 77.615586142659893, + 12.9492703662919 + ], + [ + 77.615665798053399, + 12.9492700570558 + ], + [ + 77.6156662871348, + 12.949270054855299 + ], + [ + 77.615769779624102, + 12.9492696516928 + ], + [ + 77.615926373860901, + 12.9492703378014 + ], + [ + 77.616224709369703, + 12.9492718374805 + ], + [ + 77.616376009512393, + 12.949272597908401 + ], + [ + 77.616693696733407, + 12.949263760619299 + ], + [ + 77.616743297312297, + 12.949258494130101 + ], + [ + 77.616818257628793, + 12.9492505354927 + ], + [ + 77.616829338566205, + 12.949249359012899 + ], + [ + 77.616858160978396, + 12.9492462986889 + ], + [ + 77.616888386215194, + 12.949218892426201 + ], + [ + 77.616901507719703, + 12.949207467848799 + ], + [ + 77.616917390882193, + 12.9492004730087 + ], + [ + 77.616951363213005, + 12.949185510766 + ], + [ + 77.616964056511193, + 12.9491764782301 + ], + [ + 77.6170045073724, + 12.949147710767599 + ], + [ + 77.616975971504502, + 12.9491163776937 + ], + [ + 77.617041696886204, + 12.949070546368199 + ], + [ + 77.617102852607701, + 12.949028148767001 + ], + [ + 77.617133921018905, + 12.949013426191 + ], + [ + 77.616975971504502, + 12.9491163776937 + ], + [ + 77.616801399946297, + 12.948876914928301 + ], + [ + 77.616675980626198, + 12.9487233402506 + ], + [ + 77.616516433599998, + 12.948539903830101 + ], + [ + 77.616435380297901, + 12.948448612216101 + ], + [ + 77.616372498314902, + 12.9479953320531 + ], + [ + 77.616327295708402, + 12.9477739652653 + ], + [ + 77.616246772770893, + 12.9475309620397 + ], + [ + 77.616141639538696, + 12.9472262005887 + ], + [ + 77.616074498700101, + 12.9470023543712 + ], + [ + 77.616089755061594, + 12.9468031883286 + ], + [ + 77.616132385918704, + 12.9466330466116 + ], + [ + 77.616166384504695, + 12.9462226890287 + ], + [ + 77.616202096454302, + 12.9461232056613 + ], + [ + 77.616284535790896, + 12.945952664246899 + ], + [ + 77.616618133067107, + 12.9451983692101 + ], + [ + 77.616965153144093, + 12.9449966348601 + ], + [ + 77.617770072805499, + 12.9446536287053 + ], + [ + 77.617754317171503, + 12.9444645489242 + ], + [ + 77.617677720201499, + 12.9441679442519 + ], + [ + 77.617592140799502, + 12.9438909543059 + ], + [ + 77.617472976300206, + 12.943602442305499 + ], + [ + 77.617478651021898, + 12.9435987327793 + ], + [ + 77.617547806977797, + 12.9435647236399 + ], + [ + 77.617531646622595, + 12.943374509828301 + ], + [ + 77.617461883047099, + 12.942657096363501 + ], + [ + 77.617458652389899, + 12.942623878391201 + ], + [ + 77.617423493273506, + 12.942220353116801 + ], + [ + 77.617870566223999, + 12.9421964637225 + ], + [ + 77.617881657728503, + 12.942079576329 + ], + [ + 77.618531790530596, + 12.942107731686599 + ], + [ + 77.6187152715775, + 12.9421280933869 + ], + [ + 77.618730933323207, + 12.942308162644199 + ], + [ + 77.619700980484495, + 12.942272506648401 + ], + [ + 77.619753585749194, + 12.9421413136912 + ], + [ + 77.620260654900704, + 12.9418703824749 + ], + [ + 77.6207504565389, + 12.9417055070726 + ], + [ + 77.621223496305703, + 12.9413675592793 + ], + [ + 77.622410534520299, + 12.942312842862499 + ], + [ + 77.622863465129598, + 12.941803969455799 + ], + [ + 77.621935191522397, + 12.9411811388186 + ], + [ + 77.622853211321299, + 12.9401965801424 + ], + [ + 77.622248374863304, + 12.9396141404081 + ], + [ + 77.622549566165702, + 12.9392860300102 + ], + [ + 77.623537768915298, + 12.9382386980374 + ], + [ + 77.624104068398097, + 12.9376282540488 + ], + [ + 77.624364536860995, + 12.937346683414299 + ], + [ + 77.624376364776296, + 12.9373338975505 + ], + [ + 77.624521745980502, + 12.9371530652628 + ], + [ + 77.624883954760307, + 12.936702530421201 + ], + [ + 77.625457605007696, + 12.936089158133701 + ], + [ + 77.624826499326304, + 12.9356004814664 + ], + [ + 77.624341474075806, + 12.9352438311331 + ], + [ + 77.624245249072104, + 12.9351735704921 + ], + [ + 77.624048252843295, + 12.9349783531516 + ], + [ + 77.623800899535098, + 12.9346282734406 + ], + [ + 77.623796037364301, + 12.9345531231421 + ], + [ + 77.623427344541597, + 12.933558830465 + ], + [ + 77.622520843401901, + 12.9335059229705 + ], + [ + 77.620168323353496, + 12.9336561909516 + ], + [ + 77.619556572258006, + 12.9336948450158 + ], + [ + 77.619180847888302, + 12.933719144393599 + ], + [ + 77.6188605674472, + 12.933677542970599 + ], + [ + 77.618158371921297, + 12.933526235288699 + ], + [ + 77.617272165691901, + 12.9338398942725 + ], + [ + 77.6167957751518, + 12.9340179728179 + ], + [ + 77.616602024943802, + 12.934133456240801 + ], + [ + 77.616224814258501, + 12.9344748722296 + ], + [ + 77.615723787584301, + 12.9352119307627 + ], + [ + 77.615288954128403, + 12.9358490586327 + ], + [ + 77.615335011453794, + 12.9358720441321 + ], + [ + 77.615676202689301, + 12.9360587652171 + ], + [ + 77.615968191107797, + 12.9361746749617 + ], + [ + 77.6162557071506, + 12.936245812227501 + ], + [ + 77.616928761030294, + 12.936279783570701 + ], + [ + 77.617017129984106, + 12.9362842440215 + ], + [ + 77.617311749027905, + 12.936319226947299 + ], + [ + 77.617480763830301, + 12.937228536198599 + ], + [ + 77.618031926284601, + 12.9394331860156 + ], + [ + 77.618118951935301, + 12.9398324801775 + ], + [ + 77.616801622477993, + 12.9401498678446 + ], + [ + 77.616633410568696, + 12.9395862501548 + ], + [ + 77.616398112602198, + 12.9396440674992 + ], + [ + 77.616167939352806, + 12.9397102784105 + ], + [ + 77.615989055086104, + 12.939756054895399 + ], + [ + 77.615810149873397, + 12.9397999198373 + ], + [ + 77.615730628662106, + 12.939827728301299 + ], + [ + 77.615105876120197, + 12.9401170089918 + ], + [ + 77.614737709212903, + 12.940782890242501 + ], + [ + 77.614640606457499, + 12.9409305578722 + ], + [ + 77.614628340196703, + 12.9409541093841 + ], + [ + 77.614897250027894, + 12.9413410392304 + ], + [ + 77.615040538799605, + 12.941620702631999 + ], + [ + 77.615261269607103, + 12.9420353579312 + ], + [ + 77.615178585840795, + 12.9420836786878 + ], + [ + 77.614912927822402, + 12.9422248279624 + ], + [ + 77.614261499982604, + 12.942570941505499 + ], + [ + 77.6140810023455, + 12.942649242071999 + ], + [ + 77.613878801312097, + 12.942702900694799 + ], + [ + 77.613642848171807, + 12.9427883675129 + ], + [ + 77.613639899877001, + 12.942789435112999 + ], + [ + 77.613297451763898, + 12.9429196487696 + ], + [ + 77.613245475261706, + 12.9429832740962 + ], + [ + 77.613124006129794, + 12.943048938239 + ], + [ + 77.6128034078788, + 12.9431535013466 + ], + [ + 77.612536083760602, + 12.943233322816701 + ], + [ + 77.612273857407004, + 12.94331162217 + ], + [ + 77.612107607365402, + 12.943361263064601 + ], + [ + 77.611539053041994, + 12.943431976826 + ], + [ + 77.6111369957964, + 12.9435775125049 + ], + [ + 77.6108280134154, + 12.9436743086601 + ], + [ + 77.610821975784305, + 12.9436783839684 + ], + [ + 77.610773091316204, + 12.943284344157201 + ], + [ + 77.610793336233797, + 12.9432626289827 + ], + [ + 77.610888206617602, + 12.9432459020674 + ], + [ + 77.610841940465406, + 12.9430154608451 + ], + [ + 77.610797599125206, + 12.9429668966888 + ], + [ + 77.610706307511293, + 12.9429583647622 + ], + [ + 77.610428258592506, + 12.942828801956001 + ], + [ + 77.609799091511903, + 12.9425081077915 + ], + [ + 77.609625312419098, + 12.9424037895374 + ], + [ + 77.609570708089294, + 12.9422263254654 + ], + [ + 77.609403482329199, + 12.9421956105299 + ], + [ + 77.608347229823906, + 12.941988284715 + ], + [ + 77.608280680796994, + 12.9419797527885 + ], + [ + 77.6081412952297, + 12.9422366023515 + ], + [ + 77.608022032564705, + 12.9425557114395 + ], + [ + 77.607638956508097, + 12.944129851153701 + ], + [ + 77.6069710608148, + 12.9440301337753 + ], + [ + 77.606921054574002, + 12.944026549611401 + ], + [ + 77.606584578802, + 12.9440107924086 + ], + [ + 77.606462399039401, + 12.9440040299262 + ], + [ + 77.606291964299899, + 12.9439945970176 + ], + [ + 77.6062598898679, + 12.9439981981371 + ], + [ + 77.606179523928304, + 12.9440072221419 + ], + [ + 77.6060629039209, + 12.944020317241201 + ], + [ + 77.606058279936207, + 12.9440208368777 + ], + [ + 77.605682799037794, + 12.9440625381409 + ], + [ + 77.605183860868195, + 12.9441257902975 + ], + [ + 77.604409901901505, + 12.944224358827 + ], + [ + 77.6041488658106, + 12.9442619328882 + ], + [ + 77.603660409764302, + 12.9443322417128 + ], + [ + 77.603402455949194, + 12.9443682836714 + ], + [ + 77.602830026583305, + 12.9444505267367 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "146", + "group": "KORAMANGALA", + "Corporatio": "South", + "ac_no": "172", + "ac": "B.T.M Layout", + "corporat_1": "4", + "ward_id": "19", + "ward_name": "19 - Koramangala", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬಿ.ಟಿ.ಎಂ. ಲೇಔಟ್", + "ward_name_": "ಕೋರಮಂಗಲ", + "dig_ward_n": "KORAMANGALA", + "Assembly": "172 - B.T.M Layout", + "Slno": "19" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.630314608966899, + 12.916681385221001 + ], + [ + 77.630207227836394, + 12.916689483789799 + ], + [ + 77.630193426550093, + 12.9166907520789 + ], + [ + 77.629902377464703, + 12.916710622687599 + ], + [ + 77.629205772932394, + 12.916756610775799 + ], + [ + 77.628877012960103, + 12.916778314042901 + ], + [ + 77.628654630240305, + 12.916792994581501 + ], + [ + 77.6285701911535, + 12.9167985687568 + ], + [ + 77.628506353584697, + 12.916803727568601 + ], + [ + 77.628324720067695, + 12.9168545906301 + ], + [ + 77.628288834499699, + 12.916864640079501 + ], + [ + 77.627091091339196, + 12.917204182059701 + ], + [ + 77.626409384622306, + 12.9174116528915 + ], + [ + 77.625655541157201, + 12.917641078985699 + ], + [ + 77.625640563869197, + 12.917645637175999 + ], + [ + 77.625620040001493, + 12.9176468028302 + ], + [ + 77.625298903159404, + 12.9176650416059 + ], + [ + 77.624964046725694, + 12.917684059158301 + ], + [ + 77.624063616244797, + 12.917574006317601 + ], + [ + 77.623777346938397, + 12.9175390182395 + ], + [ + 77.623003647451299, + 12.9173625590099 + ], + [ + 77.622949950231103, + 12.9173503120762 + ], + [ + 77.622742617699103, + 12.9173030248195 + ], + [ + 77.622671178004296, + 12.917286731205101 + ], + [ + 77.622653379427405, + 12.9172826717896 + ], + [ + 77.622643724717804, + 12.9172951907806 + ], + [ + 77.622633904989897, + 12.9172919015929 + ], + [ + 77.622622886297705, + 12.917269317031201 + ], + [ + 77.622614528278405, + 12.9172663030963 + ], + [ + 77.622137740290697, + 12.917094371949 + ], + [ + 77.621985945412902, + 12.917039634013101 + ], + [ + 77.621724181257804, + 12.916944296497901 + ], + [ + 77.620207884367701, + 12.916433438463301 + ], + [ + 77.619956873699607, + 12.916375026768799 + ], + [ + 77.619604829985406, + 12.9162931032222 + ], + [ + 77.619357357707997, + 12.9162635630789 + ], + [ + 77.618914182073496, + 12.9162497094171 + ], + [ + 77.618761291650699, + 12.916248386144 + ], + [ + 77.618770343270199, + 12.9165510563968 + ], + [ + 77.618780891696005, + 12.9168616906487 + ], + [ + 77.618798637177505, + 12.917161496567401 + ], + [ + 77.618716156596406, + 12.917196983574801 + ], + [ + 77.618545292361304, + 12.917285943324 + ], + [ + 77.618312320782593, + 12.917377916247901 + ], + [ + 77.618048225406, + 12.917485394747199 + ], + [ + 77.618147598772595, + 12.9177759038965 + ], + [ + 77.618190718385407, + 12.9179850788913 + ], + [ + 77.618223043049298, + 12.9181640280064 + ], + [ + 77.618332092862602, + 12.9183893150059 + ], + [ + 77.618735438534998, + 12.918416809333699 + ], + [ + 77.619032539541195, + 12.9183867951135 + ], + [ + 77.619467435624799, + 12.918301081357001 + ], + [ + 77.6198431362576, + 12.918249506276 + ], + [ + 77.620150813069699, + 12.9182177351466 + ], + [ + 77.620407889433395, + 12.918194119881401 + ], + [ + 77.620477858637599, + 12.9187345827967 + ], + [ + 77.620539593630795, + 12.9192000730053 + ], + [ + 77.620588209965405, + 12.9195390090921 + ], + [ + 77.620294040843504, + 12.9197212339134 + ], + [ + 77.620042349333701, + 12.9198874960359 + ], + [ + 77.619680368053494, + 12.920109842442701 + ], + [ + 77.619349911628603, + 12.9203175294271 + ], + [ + 77.619169560719399, + 12.9204316830506 + ], + [ + 77.618897169128502, + 12.9205993472422 + ], + [ + 77.618617405678904, + 12.9207611090296 + ], + [ + 77.618258889817596, + 12.9209654916377 + ], + [ + 77.618381006363407, + 12.9211088801848 + ], + [ + 77.618425888867407, + 12.9211290776769 + ], + [ + 77.618450806654593, + 12.9211534857179 + ], + [ + 77.618517552824301, + 12.921117071388601 + ], + [ + 77.6189270619914, + 12.920895445461101 + ], + [ + 77.619060349172898, + 12.920824789573199 + ], + [ + 77.619302159410907, + 12.9206454806852 + ], + [ + 77.619742215842194, + 12.9203209775822 + ], + [ + 77.619853130887194, + 12.920648603561199 + ], + [ + 77.619837609607401, + 12.9209341148931 + ], + [ + 77.619791975824896, + 12.920997916235899 + ], + [ + 77.619643050672394, + 12.9210878521257 + ], + [ + 77.619438111511798, + 12.921208438490099 + ], + [ + 77.619198448514297, + 12.921359999132701 + ], + [ + 77.618957412524495, + 12.921520177566499 + ], + [ + 77.618855372266196, + 12.9215823277474 + ], + [ + 77.618949268562503, + 12.9216840549932 + ], + [ + 77.6190631386185, + 12.921807686688499 + ], + [ + 77.619163751223098, + 12.9219736117523 + ], + [ + 77.619223474708804, + 12.922086233182601 + ], + [ + 77.619274666267998, + 12.922214212080601 + ], + [ + 77.619364251496705, + 12.922202267383501 + ], + [ + 77.619505028284493, + 12.922210799309999 + ], + [ + 77.619558779421695, + 12.922229569548399 + ], + [ + 77.619364675245293, + 12.9225462124204 + ], + [ + 77.619195380312703, + 12.922819391210201 + ], + [ + 77.619181953364603, + 12.9228410571881 + ], + [ + 77.618462270810596, + 12.9240023479014 + ], + [ + 77.618438988419697, + 12.9240594654372 + ], + [ + 77.618391527349104, + 12.924175896683799 + ], + [ + 77.618232044077999, + 12.9244181854469 + ], + [ + 77.617765829650907, + 12.9251264627813 + ], + [ + 77.617340585421402, + 12.925772493154 + ], + [ + 77.616602055433901, + 12.9269944764704 + ], + [ + 77.6161393413159, + 12.9277600847301 + ], + [ + 77.616041198507205, + 12.9276112785571 + ], + [ + 77.615899411188593, + 12.927287617824801 + ], + [ + 77.615440573879894, + 12.927406952377099 + ], + [ + 77.615257332105003, + 12.9268465878054 + ], + [ + 77.615701495434493, + 12.9267276012183 + ], + [ + 77.615651157067902, + 12.9265006519725 + ], + [ + 77.614826707352506, + 12.9266915884191 + ], + [ + 77.614599556396698, + 12.925939482153799 + ], + [ + 77.613202369150201, + 12.9262776051059 + ], + [ + 77.613182021079794, + 12.926289282380401 + ], + [ + 77.613179410600694, + 12.926319425998701 + ], + [ + 77.613024755935697, + 12.926351093142101 + ], + [ + 77.613009091787006, + 12.926391407243999 + ], + [ + 77.612650954916006, + 12.9263992954972 + ], + [ + 77.611860422107696, + 12.926437515716099 + ], + [ + 77.611848736019297, + 12.9263873681171 + ], + [ + 77.611795579466005, + 12.926044193902801 + ], + [ + 77.611253608777005, + 12.9260785192367 + ], + [ + 77.611267250168794, + 12.926400070186601 + ], + [ + 77.611292349397701, + 12.9269917112612 + ], + [ + 77.6113243181737, + 12.9278160512506 + ], + [ + 77.611338774201599, + 12.9282217833396 + ], + [ + 77.6115960670909, + 12.9282177733478 + ], + [ + 77.611609616284596, + 12.9285109701389 + ], + [ + 77.6114944024593, + 12.9290981970065 + ], + [ + 77.611530236550706, + 12.9295094358655 + ], + [ + 77.611653872926198, + 12.930301274068601 + ], + [ + 77.611732011700994, + 12.9309018958529 + ], + [ + 77.6115868571313, + 12.9310037423302 + ], + [ + 77.611627012266496, + 12.9311156857936 + ], + [ + 77.612288474032198, + 12.9307959306292 + ], + [ + 77.612393604753294, + 12.931063071282701 + ], + [ + 77.612500332551093, + 12.931343103086901 + ], + [ + 77.612514907702106, + 12.9313386549971 + ], + [ + 77.612534077362099, + 12.931354238607 + ], + [ + 77.612728184121707, + 12.9318815107678 + ], + [ + 77.612881647091598, + 12.9323011998125 + ], + [ + 77.6134035017607, + 12.931885179861 + ], + [ + 77.613737359409399, + 12.931583510227499 + ], + [ + 77.613825166880503, + 12.9316344456926 + ], + [ + 77.613131242246695, + 12.9328655557603 + ], + [ + 77.6124538908484, + 12.9340885058546 + ], + [ + 77.612302020880094, + 12.934362702511301 + ], + [ + 77.612231798527404, + 12.9344894888268 + ], + [ + 77.612228741002696, + 12.9344950077608 + ], + [ + 77.611768393767207, + 12.9353925307586 + ], + [ + 77.611748440728803, + 12.935431431536101 + ], + [ + 77.611252800741099, + 12.936354126601 + ], + [ + 77.610811747496996, + 12.9371751949353 + ], + [ + 77.610292645527096, + 12.9381538042239 + ], + [ + 77.610193829042402, + 12.9383400916909 + ], + [ + 77.609820764283697, + 12.9390433865765 + ], + [ + 77.609396957739193, + 12.939809082046599 + ], + [ + 77.6093298301613, + 12.939930362333399 + ], + [ + 77.609071013677195, + 12.9404339084463 + ], + [ + 77.608577134400505, + 12.9413947782565 + ], + [ + 77.608503140762707, + 12.9415376974064 + ], + [ + 77.608280680796994, + 12.9419797527885 + ], + [ + 77.608347229823906, + 12.941988284715 + ], + [ + 77.609403482329199, + 12.9421956105299 + ], + [ + 77.609570708089294, + 12.9422263254654 + ], + [ + 77.609625312419098, + 12.9424037895374 + ], + [ + 77.609799091511903, + 12.9425081077915 + ], + [ + 77.610428258592506, + 12.942828801956001 + ], + [ + 77.610706307511293, + 12.9429583647622 + ], + [ + 77.610797599125206, + 12.9429668966888 + ], + [ + 77.610841940465406, + 12.9430154608451 + ], + [ + 77.610888206617602, + 12.9432459020674 + ], + [ + 77.610793336233797, + 12.9432626289827 + ], + [ + 77.610773091316204, + 12.943284344157201 + ], + [ + 77.610821975784305, + 12.9436783839684 + ], + [ + 77.6108280134154, + 12.9436743086601 + ], + [ + 77.6111369957964, + 12.9435775125049 + ], + [ + 77.611539053041994, + 12.943431976826 + ], + [ + 77.612107607365402, + 12.943361263064601 + ], + [ + 77.612273857407004, + 12.94331162217 + ], + [ + 77.612536083760602, + 12.943233322816701 + ], + [ + 77.6128034078788, + 12.9431535013466 + ], + [ + 77.613124006129794, + 12.943048938239 + ], + [ + 77.613245475261706, + 12.9429832740962 + ], + [ + 77.613297451763898, + 12.9429196487696 + ], + [ + 77.613639899877001, + 12.942789435112999 + ], + [ + 77.613642848171807, + 12.9427883675129 + ], + [ + 77.613878801312097, + 12.942702900694799 + ], + [ + 77.6140810023455, + 12.942649242071999 + ], + [ + 77.614261499982604, + 12.942570941505499 + ], + [ + 77.614912927822402, + 12.9422248279624 + ], + [ + 77.615178585840795, + 12.9420836786878 + ], + [ + 77.615261269607103, + 12.9420353579312 + ], + [ + 77.615040538799605, + 12.941620702631999 + ], + [ + 77.614897250027894, + 12.9413410392304 + ], + [ + 77.614628340196703, + 12.9409541093841 + ], + [ + 77.614640606457499, + 12.9409305578722 + ], + [ + 77.614737709212903, + 12.940782890242501 + ], + [ + 77.615105876120197, + 12.9401170089918 + ], + [ + 77.615730628662106, + 12.939827728301299 + ], + [ + 77.615810149873397, + 12.9397999198373 + ], + [ + 77.615989055086104, + 12.939756054895399 + ], + [ + 77.616167939352806, + 12.9397102784105 + ], + [ + 77.616398112602198, + 12.9396440674992 + ], + [ + 77.616633410568696, + 12.9395862501548 + ], + [ + 77.616801622477993, + 12.9401498678446 + ], + [ + 77.618118951935301, + 12.9398324801775 + ], + [ + 77.618031926284601, + 12.9394331860156 + ], + [ + 77.617480763830301, + 12.937228536198599 + ], + [ + 77.617311749027905, + 12.936319226947299 + ], + [ + 77.617017129984106, + 12.9362842440215 + ], + [ + 77.616928761030294, + 12.936279783570701 + ], + [ + 77.6162557071506, + 12.936245812227501 + ], + [ + 77.615968191107797, + 12.9361746749617 + ], + [ + 77.615676202689301, + 12.9360587652171 + ], + [ + 77.615335011453794, + 12.9358720441321 + ], + [ + 77.615288954128403, + 12.9358490586327 + ], + [ + 77.615723787584301, + 12.9352119307627 + ], + [ + 77.616224814258501, + 12.9344748722296 + ], + [ + 77.616602024943802, + 12.934133456240801 + ], + [ + 77.6167957751518, + 12.9340179728179 + ], + [ + 77.617272165691901, + 12.9338398942725 + ], + [ + 77.618158371921297, + 12.933526235288699 + ], + [ + 77.6188605674472, + 12.933677542970599 + ], + [ + 77.619180847888302, + 12.933719144393599 + ], + [ + 77.619556572258006, + 12.9336948450158 + ], + [ + 77.620168323353496, + 12.9336561909516 + ], + [ + 77.622520843401901, + 12.9335059229705 + ], + [ + 77.623427344541597, + 12.933558830465 + ], + [ + 77.622989382415696, + 12.9327488387251 + ], + [ + 77.622877543111898, + 12.932486382682301 + ], + [ + 77.622563278818504, + 12.9317758673747 + ], + [ + 77.621979054647994, + 12.9303120282982 + ], + [ + 77.621013628224802, + 12.9275286173913 + ], + [ + 77.620310823240601, + 12.925767203265 + ], + [ + 77.620126641001903, + 12.9255043448603 + ], + [ + 77.619941290972207, + 12.925349633962099 + ], + [ + 77.620239486724103, + 12.925032561353399 + ], + [ + 77.6203401634573, + 12.9248892249876 + ], + [ + 77.620396343656793, + 12.924776535372899 + ], + [ + 77.620551686475807, + 12.924717608319 + ], + [ + 77.620694614304796, + 12.9245899652507 + ], + [ + 77.6208263808429, + 12.924457695780401 + ], + [ + 77.621053745457701, + 12.9243314469773 + ], + [ + 77.621122427103899, + 12.9243104816818 + ], + [ + 77.621165342320296, + 12.924241339296501 + ], + [ + 77.621200184701394, + 12.924168898744799 + ], + [ + 77.621152543334205, + 12.9241153092988 + ], + [ + 77.620827264032599, + 12.923976647713999 + ], + [ + 77.620903826423202, + 12.923811876161601 + ], + [ + 77.621156785336794, + 12.9233856896343 + ], + [ + 77.621273835197002, + 12.9231794684934 + ], + [ + 77.621418115321006, + 12.922933999409199 + ], + [ + 77.621910577445703, + 12.9220959419855 + ], + [ + 77.622872309575001, + 12.922635592491 + ], + [ + 77.623053388788804, + 12.922705431902299 + ], + [ + 77.623772986622598, + 12.922982965465099 + ], + [ + 77.6240082643601, + 12.923073706403899 + ], + [ + 77.624789499857201, + 12.923311847794199 + ], + [ + 77.6248559211772, + 12.9233320948036 + ], + [ + 77.625563638796294, + 12.923454902857699 + ], + [ + 77.626003706764195, + 12.923531265214701 + ], + [ + 77.627223677487706, + 12.923785896944899 + ], + [ + 77.628242880696007, + 12.9240144482488 + ], + [ + 77.628480457130195, + 12.9240719140384 + ], + [ + 77.628889353352506, + 12.924170819044599 + ], + [ + 77.629022816262804, + 12.924203101491999 + ], + [ + 77.629121283010093, + 12.9241980830122 + ], + [ + 77.629285375266605, + 12.924188376816501 + ], + [ + 77.629453659031796, + 12.924186681323601 + ], + [ + 77.629735226623595, + 12.924210672018001 + ], + [ + 77.629779972845895, + 12.9240990271035 + ], + [ + 77.629955413111304, + 12.9238654015839 + ], + [ + 77.630304861578395, + 12.923377847013599 + ], + [ + 77.630511575518, + 12.923105660994199 + ], + [ + 77.630877261071205, + 12.922656186581399 + ], + [ + 77.6312959477346, + 12.922148810832301 + ], + [ + 77.631399378897896, + 12.922019888165901 + ], + [ + 77.631439105573406, + 12.921974072177999 + ], + [ + 77.631516361025106, + 12.9219051696394 + ], + [ + 77.631889520748899, + 12.921502683321 + ], + [ + 77.632269993849306, + 12.9213197480495 + ], + [ + 77.632504795778303, + 12.921262186194699 + ], + [ + 77.632541080762195, + 12.921108628963999 + ], + [ + 77.6321832825831, + 12.9197862723484 + ], + [ + 77.632808043161802, + 12.919649545852799 + ], + [ + 77.632701091068199, + 12.9190370020439 + ], + [ + 77.632285171278298, + 12.9190552012093 + ], + [ + 77.632113772930794, + 12.918415011355 + ], + [ + 77.631211691904696, + 12.918689260722299 + ], + [ + 77.630771960092204, + 12.9188342246358 + ], + [ + 77.630544157362706, + 12.9179151180417 + ], + [ + 77.630316327734107, + 12.9166980146877 + ], + [ + 77.630314608966899, + 12.916681385221001 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "151", + "group": "abdul kalam nagar", + "Corporatio": "South", + "ac_no": "173", + "ac": "Jayanagar", + "corporat_1": "4", + "ward_id": "22", + "ward_name": "22 - Abdul Kalam Nagar", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಜಯನಗರ", + "ward_name_": "ಅಬ್ದುಲ್ ಕಲಾಂ ನಗರ", + "dig_ward_n": "abdul kalam nagar", + "Assembly": "173 - Jayanagar", + "Slno": "22" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.600144121068496, + 12.9205713255602 + ], + [ + 77.600052741851599, + 12.920571518397701 + ], + [ + 77.599535817319904, + 12.9205644755767 + ], + [ + 77.598999923952604, + 12.9205612063106 + ], + [ + 77.598502757371193, + 12.9205561166974 + ], + [ + 77.5980951761413, + 12.920547211023701 + ], + [ + 77.597563741114499, + 12.920527400398599 + ], + [ + 77.597379314406496, + 12.9205187890544 + ], + [ + 77.597139789868706, + 12.920508622547899 + ], + [ + 77.596967352127507, + 12.9205055579783 + ], + [ + 77.596966722921906, + 12.9205806370371 + ], + [ + 77.596975050467094, + 12.921008903782001 + ], + [ + 77.596987842277898, + 12.921601861265399 + ], + [ + 77.596281805557297, + 12.921617489970499 + ], + [ + 77.595201402868796, + 12.9216349156754 + ], + [ + 77.594385068492599, + 12.921635859131699 + ], + [ + 77.593448592731093, + 12.921645165216599 + ], + [ + 77.593451371968797, + 12.9222619761145 + ], + [ + 77.593453989920405, + 12.9228428046586 + ], + [ + 77.593455547593805, + 12.923188217515699 + ], + [ + 77.593455772636304, + 12.923238120516 + ], + [ + 77.593471231998194, + 12.923237679607 + ], + [ + 77.597045594983896, + 12.923135714191201 + ], + [ + 77.597045772684496, + 12.9231357088093 + ], + [ + 77.597046963270401, + 12.9231756685645 + ], + [ + 77.597047199087399, + 12.923183598382 + ], + [ + 77.597084109093103, + 12.9244227165805 + ], + [ + 77.597084696836404, + 12.9245384922329 + ], + [ + 77.597269431254603, + 12.924529483754201 + ], + [ + 77.597691030491902, + 12.9244917813683 + ], + [ + 77.597913953334199, + 12.9244681726035 + ], + [ + 77.598159372237006, + 12.924442180484499 + ], + [ + 77.599044397243702, + 12.924343490756501 + ], + [ + 77.599553662239302, + 12.9242925240726 + ], + [ + 77.5998730196672, + 12.924257790378199 + ], + [ + 77.600314591996195, + 12.924199447926 + ], + [ + 77.600345876579595, + 12.9241925871441 + ], + [ + 77.601041641448205, + 12.9241221481573 + ], + [ + 77.601264837222601, + 12.924096365080199 + ], + [ + 77.601930621089494, + 12.9240047127286 + ], + [ + 77.602028801952301, + 12.923978983516999 + ], + [ + 77.602179710654696, + 12.923933346295399 + ], + [ + 77.602161121715298, + 12.923802167564199 + ], + [ + 77.602126074144707, + 12.923420094598599 + ], + [ + 77.602125258718303, + 12.9234138410397 + ], + [ + 77.602095450335995, + 12.9231853413011 + ], + [ + 77.602035521820596, + 12.922677514166301 + ], + [ + 77.602140001273099, + 12.9226784817983 + ], + [ + 77.602284104589103, + 12.922679815927101 + ], + [ + 77.602862931634903, + 12.922687191008199 + ], + [ + 77.603391660269196, + 12.922680723433499 + ], + [ + 77.603546068593104, + 12.9226721906923 + ], + [ + 77.604260318164194, + 12.922649767260699 + ], + [ + 77.604888419611598, + 12.9226006241572 + ], + [ + 77.604904920374494, + 12.9226813775445 + ], + [ + 77.604925693173499, + 12.922771306805499 + ], + [ + 77.604971815986303, + 12.9230904216118 + ], + [ + 77.605031318211402, + 12.9234913451753 + ], + [ + 77.605037202303393, + 12.9237565747568 + ], + [ + 77.605087074270202, + 12.924135060231499 + ], + [ + 77.605100142638904, + 12.924287547370101 + ], + [ + 77.605117063128304, + 12.924610026378501 + ], + [ + 77.605131714876606, + 12.9249151152764 + ], + [ + 77.605112793308507, + 12.9251479831394 + ], + [ + 77.605166617661794, + 12.9251481842325 + ], + [ + 77.605275060469197, + 12.9251696873627 + ], + [ + 77.605321200364699, + 12.925178261018401 + ], + [ + 77.605339685001098, + 12.9251842767121 + ], + [ + 77.605439028175994, + 12.9252166096897 + ], + [ + 77.605493319898699, + 12.9252341362218 + ], + [ + 77.605612897916302, + 12.925274725904501 + ], + [ + 77.605708149381698, + 12.925300877700799 + ], + [ + 77.605806866042499, + 12.9253281241434 + ], + [ + 77.6058844504321, + 12.9253713915926 + ], + [ + 77.605937331899895, + 12.925419422853601 + ], + [ + 77.606033437708703, + 12.925583338993601 + ], + [ + 77.606072282699003, + 12.9256100539409 + ], + [ + 77.606096472156594, + 12.925611864105001 + ], + [ + 77.606192108340593, + 12.925619020802699 + ], + [ + 77.606555944871701, + 12.925566827442401 + ], + [ + 77.606926289458599, + 12.9254761728514 + ], + [ + 77.606926742436102, + 12.9254758909734 + ], + [ + 77.606959461887499, + 12.9254555143005 + ], + [ + 77.606935447795394, + 12.925083089741101 + ], + [ + 77.606881932066798, + 12.925029418608201 + ], + [ + 77.606986475861206, + 12.9250080470807 + ], + [ + 77.607034706993701, + 12.9249962723843 + ], + [ + 77.607095596254297, + 12.9249845555194 + ], + [ + 77.607226585844401, + 12.924959348442201 + ], + [ + 77.607237352749806, + 12.924957063607399 + ], + [ + 77.607288043452499, + 12.9249463113684 + ], + [ + 77.607340280126607, + 12.9249322380281 + ], + [ + 77.607371566774404, + 12.924926534671901 + ], + [ + 77.607374084673907, + 12.924926075868701 + ], + [ + 77.607458480657499, + 12.9249106910287 + ], + [ + 77.607517240776005, + 12.9248999791801 + ], + [ + 77.607632720344697, + 12.9248784981421 + ], + [ + 77.607714346490297, + 12.924867518916701 + ], + [ + 77.607755153694995, + 12.9248614647107 + ], + [ + 77.607892962456802, + 12.924829977204601 + ], + [ + 77.607930880941097, + 12.9248213129266 + ], + [ + 77.607982814891699, + 12.92481436964 + ], + [ + 77.6079164725693, + 12.9245493857792 + ], + [ + 77.607773145723598, + 12.9240890821932 + ], + [ + 77.607607866828502, + 12.9236044373318 + ], + [ + 77.607550011673894, + 12.9236221390961 + ], + [ + 77.607365709504194, + 12.923043983292301 + ], + [ + 77.607131382064495, + 12.923103683683999 + ], + [ + 77.606577397320194, + 12.9232515916199 + ], + [ + 77.606499734437307, + 12.923012686154101 + ], + [ + 77.606366635400306, + 12.922664597764999 + ], + [ + 77.606089598320096, + 12.922738053496399 + ], + [ + 77.605984922173604, + 12.9223388648022 + ], + [ + 77.605732989753307, + 12.922404509165199 + ], + [ + 77.605717909291499, + 12.922357493607899 + ], + [ + 77.6057010546578, + 12.9223601548658 + ], + [ + 77.605617802652802, + 12.9218796125285 + ], + [ + 77.605567145858103, + 12.9215018871158 + ], + [ + 77.604805620052005, + 12.921539275737601 + ], + [ + 77.604805724443295, + 12.921527317791901 + ], + [ + 77.604389054847701, + 12.921505186486501 + ], + [ + 77.604001576843601, + 12.921503076938 + ], + [ + 77.604003732738406, + 12.921358440501001 + ], + [ + 77.603931199977495, + 12.9214230350299 + ], + [ + 77.603776960187602, + 12.9214522292047 + ], + [ + 77.603461177853404, + 12.921454699640501 + ], + [ + 77.603367977434502, + 12.9214582428163 + ], + [ + 77.602782866068395, + 12.921441125162101 + ], + [ + 77.602513705617199, + 12.921432332582601 + ], + [ + 77.602436163625299, + 12.9214236048791 + ], + [ + 77.602419474989404, + 12.9214002127949 + ], + [ + 77.6024191300978, + 12.921366927092199 + ], + [ + 77.602415138230896, + 12.921284000107301 + ], + [ + 77.602398524797707, + 12.921116695747701 + ], + [ + 77.602398109365197, + 12.9211159789505 + ], + [ + 77.602376632660096, + 12.921069797062501 + ], + [ + 77.6022993449822, + 12.921067255220199 + ], + [ + 77.602092123120698, + 12.9210354982503 + ], + [ + 77.602018130867407, + 12.9210241587302 + ], + [ + 77.601561453834407, + 12.9209828088698 + ], + [ + 77.601536565564899, + 12.920980770321799 + ], + [ + 77.601474739410094, + 12.920975705695099 + ], + [ + 77.601186777489701, + 12.9209521164841 + ], + [ + 77.600847433747205, + 12.920944021424599 + ], + [ + 77.600153660798497, + 12.9209146527763 + ], + [ + 77.600120333688693, + 12.920893252640299 + ], + [ + 77.600103097769605, + 12.9206406453805 + ], + [ + 77.600144121068496, + 12.9205713255602 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "147", + "group": "VISWAMANAVA KUVEMPU", + "Corporatio": "South", + "ac_no": "172", + "ac": "B.T.M Layout", + "corporat_1": "4", + "ward_id": "26", + "ward_name": "26 - Viswamanava Kuvempu Ward", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬಿ.ಟಿ.ಎಂ. ಲೇಔಟ್", + "ward_name_": "ವಿಶ್ವಮಾನವ ಕುವೆಂಪು ವಾರ್ಡ್", + "dig_ward_n": "VISWAMANAVA KUVEMPU", + "Assembly": "172 - B.T.M Layout", + "Slno": "26" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.622181583973301, + 12.9163647931505 + ], + [ + 77.622172145467005, + 12.915791217409501 + ], + [ + 77.622145732015198, + 12.9144736183418 + ], + [ + 77.620905776678796, + 12.9136323592839 + ], + [ + 77.620905738331203, + 12.913632333266399 + ], + [ + 77.621065013395295, + 12.9135283594351 + ], + [ + 77.6214345707116, + 12.913287113939401 + ], + [ + 77.621455053108505, + 12.913208988365399 + ], + [ + 77.621352975752302, + 12.912969477250501 + ], + [ + 77.621040543461802, + 12.912704974454201 + ], + [ + 77.621040095994005, + 12.9127045443993 + ], + [ + 77.621038217745905, + 12.912702739241601 + ], + [ + 77.620937133001505, + 12.9126687460653 + ], + [ + 77.620850483904803, + 12.912639125096799 + ], + [ + 77.620487245400895, + 12.9125806594968 + ], + [ + 77.620170426960897, + 12.9125578654425 + ], + [ + 77.620054384788205, + 12.9125493607281 + ], + [ + 77.619940010311893, + 12.9125409781872 + ], + [ + 77.619569878309804, + 12.9125390442304 + ], + [ + 77.619507081689093, + 12.912563367049399 + ], + [ + 77.619357779311997, + 12.912621195798399 + ], + [ + 77.619312472154604, + 12.912638744434901 + ], + [ + 77.618948451229798, + 12.912836630421999 + ], + [ + 77.6189387258285, + 12.912842373422899 + ], + [ + 77.618687487162205, + 12.913036869675301 + ], + [ + 77.6183646707061, + 12.9133224255646 + ], + [ + 77.618052649373695, + 12.9137049908765 + ], + [ + 77.617937612600301, + 12.913823588937101 + ], + [ + 77.617848769440499, + 12.913914821734499 + ], + [ + 77.617780786458596, + 12.9139661192216 + ], + [ + 77.617756247623603, + 12.9139846350994 + ], + [ + 77.6176665808797, + 12.9140521612672 + ], + [ + 77.617377894876498, + 12.914298978792001 + ], + [ + 77.617351887566102, + 12.9143210833005 + ], + [ + 77.617237040514894, + 12.9144186945502 + ], + [ + 77.617223274131206, + 12.914430395422199 + ], + [ + 77.6171836381872, + 12.914461778236699 + ], + [ + 77.617138329769602, + 12.914497651892701 + ], + [ + 77.617129070239102, + 12.914504983814 + ], + [ + 77.617127934848099, + 12.9145058841604 + ], + [ + 77.616727755752393, + 12.9148249621297 + ], + [ + 77.616710617222907, + 12.914849182080401 + ], + [ + 77.616628635789596, + 12.914965038211699 + ], + [ + 77.616624829238802, + 12.9149704173908 + ], + [ + 77.616598988468397, + 12.9150069370076 + ], + [ + 77.6165573398698, + 12.915319035344799 + ], + [ + 77.616539133352802, + 12.9152842101164 + ], + [ + 77.616442099566697, + 12.915197098566299 + ], + [ + 77.616400882332798, + 12.915108298467899 + ], + [ + 77.616387715897204, + 12.9150276110277 + ], + [ + 77.616354154450207, + 12.914821929690801 + ], + [ + 77.616328489394604, + 12.9147894377175 + ], + [ + 77.616265116429602, + 12.914341748693699 + ], + [ + 77.616227796239599, + 12.9139084792531 + ], + [ + 77.616198167033403, + 12.913634161486399 + ], + [ + 77.616191487210301, + 12.9135723176824 + ], + [ + 77.616083458800702, + 12.9130313193715 + ], + [ + 77.616006272891696, + 12.9126447757319 + ], + [ + 77.61596702944, + 12.9123583317174 + ], + [ + 77.6156760922659, + 12.911116778764301 + ], + [ + 77.615648465949803, + 12.9110063859417 + ], + [ + 77.615346603107298, + 12.9097833169913 + ], + [ + 77.615305935270499, + 12.909618542000601 + ], + [ + 77.615039039404806, + 12.908908583057499 + ], + [ + 77.615020714917193, + 12.908917709284699 + ], + [ + 77.614552619224895, + 12.9090452851816 + ], + [ + 77.614136773572, + 12.909171830696099 + ], + [ + 77.614164192827701, + 12.909237607561201 + ], + [ + 77.614298710873399, + 12.9095603101665 + ], + [ + 77.614472403363393, + 12.9099544085416 + ], + [ + 77.614491258217996, + 12.9100804283068 + ], + [ + 77.614509906295197, + 12.9102290673779 + ], + [ + 77.613950694985704, + 12.910436809261901 + ], + [ + 77.613983116306599, + 12.9105801456277 + ], + [ + 77.613368386076502, + 12.910675085861801 + ], + [ + 77.613281704321295, + 12.9101766702954 + ], + [ + 77.613266434477495, + 12.909940251137501 + ], + [ + 77.612825461991704, + 12.9099804465256 + ], + [ + 77.612471511697706, + 12.909997956895699 + ], + [ + 77.612323596205698, + 12.9100052739697 + ], + [ + 77.612257818649894, + 12.910008114387001 + ], + [ + 77.611803680466593, + 12.910027726934 + ], + [ + 77.611516921250896, + 12.9100401103781 + ], + [ + 77.611360072370601, + 12.910048054659301 + ], + [ + 77.6108583812739, + 12.9100734639081 + ], + [ + 77.610679251453305, + 12.910077678870399 + ], + [ + 77.610555734417204, + 12.9094626536713 + ], + [ + 77.610109892021697, + 12.9094900692515 + ], + [ + 77.610004063094195, + 12.909877513445499 + ], + [ + 77.609498735718901, + 12.909901004275399 + ], + [ + 77.609404884527095, + 12.909928306440399 + ], + [ + 77.609172335338997, + 12.9098972267349 + ], + [ + 77.608992917947802, + 12.909911268498 + ], + [ + 77.608919862108607, + 12.9100034257785 + ], + [ + 77.608933513191104, + 12.9104163710228 + ], + [ + 77.608956105191197, + 12.911136427237899 + ], + [ + 77.608442483213693, + 12.911153491091 + ], + [ + 77.608311091545005, + 12.9111517847057 + ], + [ + 77.608279091772701, + 12.9108520523389 + ], + [ + 77.608237930638893, + 12.910454713359499 + ], + [ + 77.607673038914896, + 12.910495920774199 + ], + [ + 77.606969872693497, + 12.910513596600801 + ], + [ + 77.606957927996305, + 12.910358315537801 + ], + [ + 77.606488672036804, + 12.910378792161501 + ], + [ + 77.606488677192701, + 12.9105331476731 + ], + [ + 77.606442468324204, + 12.9110116750313 + ], + [ + 77.606388520386204, + 12.9116838955327 + ], + [ + 77.605964811747498, + 12.9116875896921 + ], + [ + 77.605976497753502, + 12.9111932084015 + ], + [ + 77.605993189864805, + 12.9109229342591 + ], + [ + 77.605854186721999, + 12.910912369430999 + ], + [ + 77.605376390125201, + 12.910893231344099 + ], + [ + 77.605218712376995, + 12.9108532056615 + ], + [ + 77.604909037175801, + 12.9108316100791 + ], + [ + 77.604587694426002, + 12.910861108598599 + ], + [ + 77.604312545608906, + 12.910880584289799 + ], + [ + 77.604092689906494, + 12.910898034104701 + ], + [ + 77.603755571504607, + 12.910933664190299 + ], + [ + 77.603743440741596, + 12.911174013053801 + ], + [ + 77.603737154017693, + 12.9113904015698 + ], + [ + 77.603727231951794, + 12.911726342222 + ], + [ + 77.603606502061695, + 12.9117155941119 + ], + [ + 77.603528361021105, + 12.911699640499 + ], + [ + 77.6035178460167, + 12.911695078173199 + ], + [ + 77.603434122844803, + 12.9116587490517 + ], + [ + 77.603393908740799, + 12.911657954609399 + ], + [ + 77.6030565539143, + 12.911670877673201 + ], + [ + 77.602932416575996, + 12.9116840671132 + ], + [ + 77.602862030958406, + 12.9117110619774 + ], + [ + 77.602768319902495, + 12.911750420536601 + ], + [ + 77.602702880838095, + 12.9117845366194 + ], + [ + 77.602309486624094, + 12.911798018025401 + ], + [ + 77.602128312079003, + 12.9118016550715 + ], + [ + 77.601860434348694, + 12.911817470231901 + ], + [ + 77.601300251296095, + 12.911843367702399 + ], + [ + 77.601207577862496, + 12.911835923889999 + ], + [ + 77.6004930420101, + 12.911780890337299 + ], + [ + 77.600093167137004, + 12.911745497517 + ], + [ + 77.599927511397794, + 12.911728089962899 + ], + [ + 77.599923644700795, + 12.9117762144271 + ], + [ + 77.599916350152895, + 12.911866990029701 + ], + [ + 77.599883828939696, + 12.9126182934871 + ], + [ + 77.599883557306399, + 12.912787728061399 + ], + [ + 77.599883085335705, + 12.9130825576893 + ], + [ + 77.599882671336601, + 12.9133410524169 + ], + [ + 77.599898572369298, + 12.9135983728846 + ], + [ + 77.599904768633095, + 12.913696559673101 + ], + [ + 77.599957309772407, + 12.9138789820535 + ], + [ + 77.599971695477606, + 12.9139341741843 + ], + [ + 77.599986139602095, + 12.913995012194601 + ], + [ + 77.599994711373697, + 12.914044615737399 + ], + [ + 77.600004139080696, + 12.9141213137815 + ], + [ + 77.600013543433107, + 12.9141957534711 + ], + [ + 77.600023087986301, + 12.9142837432747 + ], + [ + 77.600003978705601, + 12.9148926285622 + ], + [ + 77.599998412622298, + 12.915069976591001 + ], + [ + 77.599978923112403, + 12.9157812997174 + ], + [ + 77.599977521136395, + 12.9158324570773 + ], + [ + 77.599977225990401, + 12.9158595630372 + ], + [ + 77.599973634507606, + 12.9162356532118 + ], + [ + 77.599971884028704, + 12.9164558826826 + ], + [ + 77.599975579737006, + 12.916534896360099 + ], + [ + 77.599993117922807, + 12.9167278307459 + ], + [ + 77.600102333805694, + 12.9167247787087 + ], + [ + 77.600620936997203, + 12.916710285723401 + ], + [ + 77.601039299728001, + 12.9166984566282 + ], + [ + 77.601665956852997, + 12.9166807372888 + ], + [ + 77.601792554040102, + 12.9166771576824 + ], + [ + 77.601990512009195, + 12.916671865017401 + ], + [ + 77.601991092069795, + 12.9166718492994 + ], + [ + 77.601991714482295, + 12.916671832255901 + ], + [ + 77.602020167016605, + 12.916671070812701 + ], + [ + 77.602263855067605, + 12.916664556127699 + ], + [ + 77.602323270688203, + 12.9166629394979 + ], + [ + 77.602591289586201, + 12.9166556462882 + ], + [ + 77.603022893379503, + 12.916644959514599 + ], + [ + 77.603049364099803, + 12.9166443044458 + ], + [ + 77.604061630710703, + 12.9166206589202 + ], + [ + 77.604080049601507, + 12.916620219561 + ], + [ + 77.6041355834044, + 12.9166188932916 + ], + [ + 77.604305056629102, + 12.9166148442122 + ], + [ + 77.605135156620506, + 12.916608456411801 + ], + [ + 77.605295614785405, + 12.916607221380101 + ], + [ + 77.605392320138506, + 12.916607385773199 + ], + [ + 77.6055338721185, + 12.9166025854844 + ], + [ + 77.605605494554595, + 12.916600635807599 + ], + [ + 77.605927482985805, + 12.9165918818534 + ], + [ + 77.605951149757402, + 12.9165911885245 + ], + [ + 77.606002247134299, + 12.9165896902154 + ], + [ + 77.606045907968905, + 12.9165884106646 + ], + [ + 77.606555554869203, + 12.9165734690975 + ], + [ + 77.606590455156294, + 12.916572445848001 + ], + [ + 77.606946427715201, + 12.9165620098068 + ], + [ + 77.606975596598403, + 12.9165611548491 + ], + [ + 77.607212444462505, + 12.9165542114958 + ], + [ + 77.607232588937293, + 12.9165540103563 + ], + [ + 77.607237123244502, + 12.9165921651642 + ], + [ + 77.607271059842802, + 12.9168777305678 + ], + [ + 77.607274208063302, + 12.9169036736262 + ], + [ + 77.607280197988004, + 12.9169261995459 + ], + [ + 77.607412412976203, + 12.9173528788567 + ], + [ + 77.607520348735903, + 12.9177323740719 + ], + [ + 77.607527713729297, + 12.9177582695864 + ], + [ + 77.607695442722999, + 12.918556129922999 + ], + [ + 77.607828658520603, + 12.9189681179835 + ], + [ + 77.607990972565204, + 12.919542065564199 + ], + [ + 77.607992986129602, + 12.9195491879555 + ], + [ + 77.608014939391097, + 12.9196122086455 + ], + [ + 77.608051796668803, + 12.9197247690088 + ], + [ + 77.608069544245197, + 12.919770892418599 + ], + [ + 77.608069533189393, + 12.9197709119663 + ], + [ + 77.607998887493906, + 12.919895819732901 + ], + [ + 77.607998894698895, + 12.919895856988299 + ], + [ + 77.6080132876683, + 12.9199702801016 + ], + [ + 77.608022218254405, + 12.9200164635907 + ], + [ + 77.608025043585101, + 12.920031071811 + ], + [ + 77.608041699769501, + 12.920027517550899 + ], + [ + 77.608045987735807, + 12.920040360313701 + ], + [ + 77.608049305194399, + 12.920050297408199 + ], + [ + 77.6080604207812, + 12.920083593190601 + ], + [ + 77.608049305194399, + 12.920050297408199 + ], + [ + 77.608045987735807, + 12.920040360313701 + ], + [ + 77.608041699769501, + 12.920027517550899 + ], + [ + 77.608025043585101, + 12.920031071811 + ], + [ + 77.608022218254405, + 12.9200164635907 + ], + [ + 77.6080132876683, + 12.9199702801016 + ], + [ + 77.607998887493906, + 12.919895819732901 + ], + [ + 77.608069544245197, + 12.919770892418599 + ], + [ + 77.608051796668803, + 12.9197247690088 + ], + [ + 77.6080389230886, + 12.9196862708199 + ], + [ + 77.608097793381702, + 12.919647023957801 + ], + [ + 77.608366122471296, + 12.919553599362301 + ], + [ + 77.608425845957001, + 12.9195484802063 + ], + [ + 77.608521403534198, + 12.919534829123901 + ], + [ + 77.608715931459301, + 12.919516058885501 + ], + [ + 77.608837084816102, + 12.919495582261799 + ], + [ + 77.608835888298401, + 12.919606068239901 + ], + [ + 77.608847178656106, + 12.919836619571001 + ], + [ + 77.609735429493696, + 12.9198351236434 + ], + [ + 77.609745169289795, + 12.919834617024501 + ], + [ + 77.610059608095497, + 12.9198129095835 + ], + [ + 77.610316464488093, + 12.919799783065001 + ], + [ + 77.610338717733399, + 12.9197986453837 + ], + [ + 77.610835928316703, + 12.919762331610899 + ], + [ + 77.611280349848798, + 12.9197339837598 + ], + [ + 77.611837984125202, + 12.9196961359031 + ], + [ + 77.611888724195694, + 12.9196938078556 + ], + [ + 77.612005619932006, + 12.919688443693699 + ], + [ + 77.612171847402493, + 12.9196801213272 + ], + [ + 77.612166936928105, + 12.919661902285901 + ], + [ + 77.612121657632798, + 12.9193382277968 + ], + [ + 77.612096010137705, + 12.9192151441811 + ], + [ + 77.612064326107202, + 12.9190739539603 + ], + [ + 77.612204412170499, + 12.919047693677999 + ], + [ + 77.612311381473404, + 12.9190236754404 + ], + [ + 77.612406536080101, + 12.9189883027811 + ], + [ + 77.612577571356695, + 12.9189387856102 + ], + [ + 77.612746835981199, + 12.9189064954128 + ], + [ + 77.612843084084204, + 12.918882585173399 + ], + [ + 77.612835248669498, + 12.918833210980599 + ], + [ + 77.612821318486695, + 12.9187454389574 + ], + [ + 77.6127717330873, + 12.918476307831201 + ], + [ + 77.612736926174904, + 12.918316026179699 + ], + [ + 77.612722691231397, + 12.9182344519763 + ], + [ + 77.612664631098099, + 12.917935287183999 + ], + [ + 77.612651711398797, + 12.9178654922212 + ], + [ + 77.612695151216201, + 12.9178666963513 + ], + [ + 77.613008195202497, + 12.917858782709899 + ], + [ + 77.613456391751598, + 12.9178423454256 + ], + [ + 77.613843700686303, + 12.917828907397899 + ], + [ + 77.614329564223596, + 12.9178312949506 + ], + [ + 77.614295847279294, + 12.917021234235101 + ], + [ + 77.614273171441397, + 12.916598374839101 + ], + [ + 77.614269253076699, + 12.916448646127799 + ], + [ + 77.614477809987505, + 12.916443684246101 + ], + [ + 77.614705009323103, + 12.916438278050499 + ], + [ + 77.615026519939406, + 12.916412184658901 + ], + [ + 77.615212707131803, + 12.916378299949899 + ], + [ + 77.615255892954906, + 12.916373891460299 + ], + [ + 77.615659927441101, + 12.9163326488123 + ], + [ + 77.616465771797195, + 12.9162422320652 + ], + [ + 77.616964523451799, + 12.916218935288599 + ], + [ + 77.617038538093993, + 12.916220020235601 + ], + [ + 77.617591862170201, + 12.916228126683301 + ], + [ + 77.617706131482606, + 12.916229800774399 + ], + [ + 77.618424471957994, + 12.916245471476699 + ], + [ + 77.618695515074904, + 12.916247817139601 + ], + [ + 77.618761291650699, + 12.916248386144 + ], + [ + 77.618914182073496, + 12.9162497094171 + ], + [ + 77.619357357707997, + 12.9162635630789 + ], + [ + 77.619604829985406, + 12.9162931032222 + ], + [ + 77.619956873699607, + 12.916375026768799 + ], + [ + 77.620207884367701, + 12.916433438463301 + ], + [ + 77.621724181257804, + 12.916944296497901 + ], + [ + 77.621985945412902, + 12.917039634013101 + ], + [ + 77.622137740290697, + 12.917094371949 + ], + [ + 77.622614528278405, + 12.9172663030963 + ], + [ + 77.622622856609695, + 12.917269306325601 + ], + [ + 77.622622871081703, + 12.917269311544199 + ], + [ + 77.622622886297705, + 12.917269317031201 + ], + [ + 77.622622878666803, + 12.9172693013904 + ], + [ + 77.622181583973301, + 12.9163647931505 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "148", + "group": "Nagashettyhally", + "Corporatio": "North", + "ac_no": "158", + "ac": "Hebbal", + "corporat_1": "2", + "ward_id": "36", + "ward_name": "36 - Nagashettyhalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಹೆಬ್ಬಾಳ", + "ward_name_": "ನಾಗಶೆಟ್ಟಿಹಳ್ಳಿ", + "dig_ward_n": "Nagashettyhalli", + "Assembly": "158 - Hebbal", + "Slno": "36" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.571879358980993, + 13.033438972988399 + ], + [ + 77.570141610547296, + 13.0343811189157 + ], + [ + 77.568934882243894, + 13.035939053051999 + ], + [ + 77.568971376840096, + 13.0365341283928 + ], + [ + 77.5689151253777, + 13.0371468605628 + ], + [ + 77.568834628032505, + 13.037878642691901 + ], + [ + 77.569314969718505, + 13.037883436789601 + ], + [ + 77.570092418971598, + 13.037887511900299 + ], + [ + 77.570045687778602, + 13.0390281841419 + ], + [ + 77.570012246543598, + 13.0397088168348 + ], + [ + 77.570048660055903, + 13.040401663425101 + ], + [ + 77.570098019265103, + 13.0405166283192 + ], + [ + 77.5700489471932, + 13.041110522481199 + ], + [ + 77.570032387308899, + 13.0419515039433 + ], + [ + 77.570053495592305, + 13.0420507818303 + ], + [ + 77.570131794117401, + 13.0424190295162 + ], + [ + 77.570464747666605, + 13.043377848291099 + ], + [ + 77.570520833974697, + 13.043555476213101 + ], + [ + 77.570746904814996, + 13.0442694878203 + ], + [ + 77.570881110240805, + 13.0446814395846 + ], + [ + 77.571103543764295, + 13.045656508778301 + ], + [ + 77.571388736140804, + 13.046570359207699 + ], + [ + 77.571577097355501, + 13.046702105346601 + ], + [ + 77.572068636336795, + 13.046728292833899 + ], + [ + 77.572353923687402, + 13.0467316710681 + ], + [ + 77.572525475368494, + 13.046770361445001 + ], + [ + 77.572713432607102, + 13.046803900645299 + ], + [ + 77.572761169986407, + 13.0472391128441 + ], + [ + 77.573387806789995, + 13.0472724662293 + ], + [ + 77.573925887309898, + 13.0473011050723 + ], + [ + 77.5740491143154, + 13.047307663028 + ], + [ + 77.574479781854706, + 13.047330583695301 + ], + [ + 77.574676026537105, + 13.0473410276467 + ], + [ + 77.574860202242803, + 13.047350829068201 + ], + [ + 77.575024442490999, + 13.047359570299999 + ], + [ + 77.575838816952995, + 13.047431626905 + ], + [ + 77.575837718989803, + 13.0471558223058 + ], + [ + 77.575837646952493, + 13.0471377487551 + ], + [ + 77.575837490729796, + 13.0470985607875 + ], + [ + 77.575795559790706, + 13.047048259036499 + ], + [ + 77.575769070468994, + 13.0470164812967 + ], + [ + 77.575602893040895, + 13.046817127995499 + ], + [ + 77.575473147785402, + 13.046538319058 + ], + [ + 77.575465536474297, + 13.046521964822499 + ], + [ + 77.575436506719996, + 13.046459580193799 + ], + [ + 77.575412209962295, + 13.046391700683101 + ], + [ + 77.575269929404698, + 13.045994196451399 + ], + [ + 77.575240293941107, + 13.045910770301001 + ], + [ + 77.575226310061097, + 13.0458714055536 + ], + [ + 77.575122362615303, + 13.045578781511001 + ], + [ + 77.575101333506893, + 13.0455374965871 + ], + [ + 77.574989095832294, + 13.0453171382359 + ], + [ + 77.574954356915995, + 13.045238381210901 + ], + [ + 77.574821535103098, + 13.0449372583073 + ], + [ + 77.574814543731094, + 13.044921406503899 + ], + [ + 77.574723526968299, + 13.0447074987467 + ], + [ + 77.574672676299301, + 13.044587986840099 + ], + [ + 77.574543135234705, + 13.044377466079499 + ], + [ + 77.574488230739306, + 13.044312800785001 + ], + [ + 77.574454486471694, + 13.044246210463699 + ], + [ + 77.575139090983498, + 13.043976637694801 + ], + [ + 77.5755379434041, + 13.0438522562643 + ], + [ + 77.575472261094703, + 13.043477691791001 + ], + [ + 77.575415028541997, + 13.0432304464659 + ], + [ + 77.575176550137996, + 13.043308951137 + ], + [ + 77.575053309288094, + 13.043344358973901 + ], + [ + 77.574981956794701, + 13.043187368544601 + ], + [ + 77.574842810259995, + 13.0428027469758 + ], + [ + 77.574839000480907, + 13.0427879304698 + ], + [ + 77.574778587928805, + 13.0425530183637 + ], + [ + 77.574771093267103, + 13.042523876480301 + ], + [ + 77.574782371436001, + 13.0424339882012 + ], + [ + 77.575886265561607, + 13.0425211537073 + ], + [ + 77.576411392222695, + 13.0425780739207 + ], + [ + 77.577000153899306, + 13.0426698803979 + ], + [ + 77.576892488711806, + 13.0423916046859 + ], + [ + 77.576623863066203, + 13.0418247456385 + ], + [ + 77.576262275407103, + 13.040981588946 + ], + [ + 77.576157992685296, + 13.0407565550241 + ], + [ + 77.576125163988294, + 13.040417398712901 + ], + [ + 77.576133718063005, + 13.0402487373002 + ], + [ + 77.576173029724103, + 13.039836615955901 + ], + [ + 77.576353761942798, + 13.0398441391975 + ], + [ + 77.576384576728302, + 13.0396200543295 + ], + [ + 77.5764157486268, + 13.0393933724162 + ], + [ + 77.576408439966897, + 13.0388500049743 + ], + [ + 77.576410213517605, + 13.038791723639701 + ], + [ + 77.576755831194404, + 13.038806927681099 + ], + [ + 77.577129841390601, + 13.0388094189902 + ], + [ + 77.577132086465099, + 13.039179176609499 + ], + [ + 77.577448925729897, + 13.0391698069998 + ], + [ + 77.5779093152766, + 13.0391615625167 + ], + [ + 77.578356076324098, + 13.039162875588501 + ], + [ + 77.578527193079495, + 13.039082936516399 + ], + [ + 77.578446851809701, + 13.038899623889099 + ], + [ + 77.578402830323199, + 13.038780427813 + ], + [ + 77.578794353507703, + 13.038714379658501 + ], + [ + 77.579012847258298, + 13.0386958889873 + ], + [ + 77.578658205024595, + 13.037621404335001 + ], + [ + 77.578501227959705, + 13.0369977468001 + ], + [ + 77.578516353791301, + 13.036947295232901 + ], + [ + 77.579007638841105, + 13.0369319139628 + ], + [ + 77.578998490177796, + 13.0365078462273 + ], + [ + 77.578958221011803, + 13.036265657382 + ], + [ + 77.578938311722993, + 13.035896135128199 + ], + [ + 77.578932191089194, + 13.0357362912358 + ], + [ + 77.578932187923996, + 13.035736276560799 + ], + [ + 77.578599939430902, + 13.035742348284099 + ], + [ + 77.577386796475693, + 13.035692614435201 + ], + [ + 77.575949336708803, + 13.0356790080646 + ], + [ + 77.575924927578299, + 13.035311024252699 + ], + [ + 77.575545574024801, + 13.0352510965393 + ], + [ + 77.575266429542097, + 13.035227460319501 + ], + [ + 77.575468737786096, + 13.034713520491801 + ], + [ + 77.575495850082703, + 13.0346560583317 + ], + [ + 77.575392656374106, + 13.034676971937101 + ], + [ + 77.574920138007599, + 13.034555099468999 + ], + [ + 77.574584234455202, + 13.0345786716481 + ], + [ + 77.574381513714798, + 13.0345975293914 + ], + [ + 77.574380142455695, + 13.0346667508378 + ], + [ + 77.574375099471595, + 13.0347717678987 + ], + [ + 77.574320202761101, + 13.034979732782199 + ], + [ + 77.574247878347705, + 13.035034831404399 + ], + [ + 77.573967599313903, + 13.035054708629399 + ], + [ + 77.573833557022994, + 13.035082922158701 + ], + [ + 77.573813778487903, + 13.0351496917782 + ], + [ + 77.573776379208894, + 13.035258590738099 + ], + [ + 77.573462351670699, + 13.035242378336999 + ], + [ + 77.572705943559697, + 13.0351822221623 + ], + [ + 77.571695863155, + 13.035119232884099 + ], + [ + 77.571695611411101, + 13.035119214605301 + ], + [ + 77.571691008723505, + 13.034956142209101 + ], + [ + 77.571698934315904, + 13.034692791878401 + ], + [ + 77.571879358980993, + 13.033438972988399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "153", + "group": "jayanagar east", + "Corporatio": "South", + "ac_no": "173", + "ac": "Jayanagar", + "corporat_1": "4", + "ward_id": "23", + "ward_name": "23 - Jayanagar East", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಜಯನಗರ", + "ward_name_": "ಜಯನಗರ ಪೂರ್ವ", + "dig_ward_n": "jayanagar east", + "Assembly": "173 - Jayanagar", + "Slno": "23" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6083954924691, + 12.9208935334104 + ], + [ + 77.608383205309195, + 12.9208744574343 + ], + [ + 77.608370907355294, + 12.9208542531831 + ], + [ + 77.608211726972499, + 12.9206028837612 + ], + [ + 77.608202460221406, + 12.9205711648281 + ], + [ + 77.608112054994507, + 12.9202617060738 + ], + [ + 77.608085663240203, + 12.9201592047548 + ], + [ + 77.6080604207812, + 12.920083593190601 + ], + [ + 77.608029509513301, + 12.9200924671813 + ], + [ + 77.607851847907995, + 12.9201400034 + ], + [ + 77.607558076965105, + 12.9202186055151 + ], + [ + 77.607458384323806, + 12.920241493181599 + ], + [ + 77.607266354956707, + 12.9202855796109 + ], + [ + 77.606988531450298, + 12.920352101119599 + ], + [ + 77.606682967985293, + 12.9204252640156 + ], + [ + 77.606388351215998, + 12.920495135409899 + ], + [ + 77.605927498862101, + 12.9206077793134 + ], + [ + 77.605834283483802, + 12.920631936117299 + ], + [ + 77.605781681907203, + 12.920645568161399 + ], + [ + 77.605317580325305, + 12.9207626249909 + ], + [ + 77.605270899812794, + 12.920549315934901 + ], + [ + 77.604740877458795, + 12.9205244865112 + ], + [ + 77.604728808415899, + 12.920372195168699 + ], + [ + 77.604467118049698, + 12.920350018019001 + ], + [ + 77.604476109555407, + 12.920181975194501 + ], + [ + 77.604099080338003, + 12.9201063772728 + ], + [ + 77.604132397644904, + 12.919935375038101 + ], + [ + 77.603982043149003, + 12.9199115371958 + ], + [ + 77.603593343643396, + 12.919838445326601 + ], + [ + 77.603415624788695, + 12.9198077095082 + ], + [ + 77.603442336544504, + 12.919567561752 + ], + [ + 77.603451938888298, + 12.9194865478231 + ], + [ + 77.603453294659403, + 12.9194158589394 + ], + [ + 77.603406427327101, + 12.9193779231734 + ], + [ + 77.6033788004043, + 12.919345690490401 + ], + [ + 77.603386466559797, + 12.9191448254576 + ], + [ + 77.6034068465909, + 12.918571898059099 + ], + [ + 77.603423195329, + 12.918240150319599 + ], + [ + 77.6034230178428, + 12.918174883178599 + ], + [ + 77.603075280135798, + 12.9181589156308 + ], + [ + 77.603038022524302, + 12.918364719579801 + ], + [ + 77.602415288161396, + 12.9182511725735 + ], + [ + 77.602255219980194, + 12.919153960724 + ], + [ + 77.601719067076303, + 12.919033459020801 + ], + [ + 77.601491332635007, + 12.9189874857897 + ], + [ + 77.601509420588698, + 12.918825758201301 + ], + [ + 77.601387712915397, + 12.918829705615 + ], + [ + 77.601215343385206, + 12.9187977593232 + ], + [ + 77.600938545991298, + 12.918776613956499 + ], + [ + 77.600747662273903, + 12.9187570020549 + ], + [ + 77.600637086407204, + 12.918727029034001 + ], + [ + 77.600425952799199, + 12.9186932774894 + ], + [ + 77.600370514686901, + 12.9186932315853 + ], + [ + 77.600086467854993, + 12.9186978646919 + ], + [ + 77.600100855150203, + 12.918857233807699 + ], + [ + 77.598360905198106, + 12.918931836467801 + ], + [ + 77.598052766606997, + 12.918930550270799 + ], + [ + 77.597872559494306, + 12.918941905457 + ], + [ + 77.597724224569205, + 12.9189548968835 + ], + [ + 77.597343215427102, + 12.918966881981101 + ], + [ + 77.596993539526096, + 12.9189795791319 + ], + [ + 77.5966434785487, + 12.918947567373801 + ], + [ + 77.596643204345895, + 12.9189512452788 + ], + [ + 77.596478706255695, + 12.9189500128955 + ], + [ + 77.596330217933797, + 12.918951187858699 + ], + [ + 77.596174524257407, + 12.9189524190298 + ], + [ + 77.596126369923397, + 12.918952799401501 + ], + [ + 77.595846415062496, + 12.918956300422799 + ], + [ + 77.595685616404097, + 12.918959332920499 + ], + [ + 77.595537244460004, + 12.9189622426813 + ], + [ + 77.595386318381998, + 12.918961926279801 + ], + [ + 77.595136693872604, + 12.918968375589699 + ], + [ + 77.595136693872604, + 12.918968375589699 + ], + [ + 77.594986033070995, + 12.9189767504136 + ], + [ + 77.594926013478599, + 12.918978883411 + ], + [ + 77.594874309615605, + 12.918977348738601 + ], + [ + 77.594706236746603, + 12.9189815799163 + ], + [ + 77.594644412358605, + 12.9189748819991 + ], + [ + 77.594309693757594, + 12.9189846615495 + ], + [ + 77.594064193296305, + 12.9189871009608 + ], + [ + 77.593791433876703, + 12.918989810959699 + ], + [ + 77.593343324866296, + 12.9189921114383 + ], + [ + 77.593317864556298, + 12.918979345796499 + ], + [ + 77.593118556900805, + 12.918977416294799 + ], + [ + 77.592629445020506, + 12.918978420716099 + ], + [ + 77.592654106178898, + 12.9190522550729 + ], + [ + 77.592739986723004, + 12.919293154233101 + ], + [ + 77.592765084055898, + 12.919363552975399 + ], + [ + 77.5928332123963, + 12.919554655571799 + ], + [ + 77.592842739671596, + 12.919595113591599 + ], + [ + 77.592864220600006, + 12.919686332734599 + ], + [ + 77.592241350416103, + 12.919704393987001 + ], + [ + 77.591721998068707, + 12.9197219808177 + ], + [ + 77.591479357633602, + 12.919726886637701 + ], + [ + 77.591505959129407, + 12.9201718221028 + ], + [ + 77.591493742098507, + 12.920688260738901 + ], + [ + 77.591492957909793, + 12.921320756406701 + ], + [ + 77.591488103145906, + 12.9216633354566 + ], + [ + 77.591629461231804, + 12.9216641201382 + ], + [ + 77.592529872933497, + 12.9216398799395 + ], + [ + 77.5934484643562, + 12.921616588942699 + ], + [ + 77.593448592731093, + 12.921645165216599 + ], + [ + 77.594385068492599, + 12.921635859131699 + ], + [ + 77.595201402868796, + 12.9216349156754 + ], + [ + 77.596281805557297, + 12.921617489970499 + ], + [ + 77.596987842277898, + 12.921601861265399 + ], + [ + 77.596975050467094, + 12.921008903782001 + ], + [ + 77.596966722921906, + 12.9205806370371 + ], + [ + 77.596967352127507, + 12.9205055579783 + ], + [ + 77.597139789868706, + 12.920508622547899 + ], + [ + 77.597379314406496, + 12.9205187890544 + ], + [ + 77.597563741114499, + 12.920527400398599 + ], + [ + 77.5980951761413, + 12.920547211023701 + ], + [ + 77.598502757371193, + 12.9205561166974 + ], + [ + 77.598999923952604, + 12.9205612063106 + ], + [ + 77.599535817319904, + 12.9205644755767 + ], + [ + 77.600052741851599, + 12.920571518397701 + ], + [ + 77.600144121068496, + 12.9205713255602 + ], + [ + 77.600103097769605, + 12.9206406453805 + ], + [ + 77.600120333688693, + 12.920893252640299 + ], + [ + 77.600153660798497, + 12.9209146527763 + ], + [ + 77.600847433747205, + 12.920944021424599 + ], + [ + 77.601186777489701, + 12.9209521164841 + ], + [ + 77.601474739410094, + 12.920975705695099 + ], + [ + 77.601536565564899, + 12.920980770321799 + ], + [ + 77.601561453834407, + 12.9209828088698 + ], + [ + 77.602018130867407, + 12.9210241587302 + ], + [ + 77.602092123120698, + 12.9210354982503 + ], + [ + 77.6022993449822, + 12.921067255220199 + ], + [ + 77.602376632660096, + 12.921069797062501 + ], + [ + 77.602398109365197, + 12.9211159789505 + ], + [ + 77.602398524797707, + 12.921116695747701 + ], + [ + 77.602415138230896, + 12.921284000107301 + ], + [ + 77.6024191300978, + 12.921366927092199 + ], + [ + 77.602419474989404, + 12.9214002127949 + ], + [ + 77.602436163625299, + 12.9214236048791 + ], + [ + 77.602513705617199, + 12.921432332582601 + ], + [ + 77.602782866068395, + 12.921441125162101 + ], + [ + 77.603367977434502, + 12.9214582428163 + ], + [ + 77.603461177853404, + 12.921454699640501 + ], + [ + 77.603776960187602, + 12.9214522292047 + ], + [ + 77.603931199977495, + 12.9214230350299 + ], + [ + 77.604003732738406, + 12.921358440501001 + ], + [ + 77.604001576843601, + 12.921503076938 + ], + [ + 77.604389054847701, + 12.921505186486501 + ], + [ + 77.604805724443295, + 12.921527317791901 + ], + [ + 77.604805620052005, + 12.921539275737601 + ], + [ + 77.605567145858103, + 12.9215018871158 + ], + [ + 77.605617802652802, + 12.9218796125285 + ], + [ + 77.6057010546578, + 12.9223601548658 + ], + [ + 77.605717909291499, + 12.922357493607899 + ], + [ + 77.605732989753307, + 12.922404509165199 + ], + [ + 77.605984922173604, + 12.9223388648022 + ], + [ + 77.606089598320096, + 12.922738053496399 + ], + [ + 77.606366635400306, + 12.922664597764999 + ], + [ + 77.606499734437307, + 12.923012686154101 + ], + [ + 77.606577397320194, + 12.9232515916199 + ], + [ + 77.607131382064495, + 12.923103683683999 + ], + [ + 77.607365709504194, + 12.923043983292301 + ], + [ + 77.607550011673894, + 12.9236221390961 + ], + [ + 77.607607866828502, + 12.9236044373318 + ], + [ + 77.607773145723598, + 12.9240890821932 + ], + [ + 77.6079164725693, + 12.9245493857792 + ], + [ + 77.607982814891699, + 12.92481436964 + ], + [ + 77.608086086800995, + 12.924800563978099 + ], + [ + 77.608140742958199, + 12.9247977591631 + ], + [ + 77.608271269423696, + 12.9247840324726 + ], + [ + 77.608324516364604, + 12.924756397431301 + ], + [ + 77.6084005274124, + 12.924759025547001 + ], + [ + 77.6085272703654, + 12.9248243865012 + ], + [ + 77.608570385551701, + 12.924624974612501 + ], + [ + 77.608702886602003, + 12.9240121432601 + ], + [ + 77.608731588637397, + 12.9238793912389 + ], + [ + 77.608421098655, + 12.923746980464999 + ], + [ + 77.608609785121601, + 12.9234075693262 + ], + [ + 77.608674251261604, + 12.9232916069084 + ], + [ + 77.608728015090605, + 12.923142295714401 + ], + [ + 77.608732009392497, + 12.9231312023489 + ], + [ + 77.608743627966803, + 12.9230989350229 + ], + [ + 77.608846304297302, + 12.922917586313501 + ], + [ + 77.608865158604303, + 12.922884285413099 + ], + [ + 77.608877211167396, + 12.922825442127101 + ], + [ + 77.608882548608193, + 12.9227985099895 + ], + [ + 77.608896616415294, + 12.922727528882101 + ], + [ + 77.608899636496901, + 12.9227122894861 + ], + [ + 77.608852927789897, + 12.9223531477934 + ], + [ + 77.608847711806305, + 12.922313041653901 + ], + [ + 77.608824478736807, + 12.922237611782601 + ], + [ + 77.608807245278996, + 12.9222248613513 + ], + [ + 77.608807245278996, + 12.9222248613513 + ], + [ + 77.6087461670419, + 12.922179671682899 + ], + [ + 77.6087133018342, + 12.922119018768599 + ], + [ + 77.608700135841403, + 12.922015256132999 + ], + [ + 77.608675636173402, + 12.9218178761049 + ], + [ + 77.608674615797298, + 12.921719638500599 + ], + [ + 77.608674310859001, + 12.9216902801359 + ], + [ + 77.608672668013398, + 12.9215875316113 + ], + [ + 77.608672616679499, + 12.921582589319501 + ], + [ + 77.6086724569045, + 12.921567206589399 + ], + [ + 77.608671129095498, + 12.921564168223901 + ], + [ + 77.608660664083104, + 12.9215402216042 + ], + [ + 77.608660344708497, + 12.92153953277 + ], + [ + 77.608647121116604, + 12.9215109964418 + ], + [ + 77.608620061473403, + 12.921433173641301 + ], + [ + 77.608537944791095, + 12.921197016033499 + ], + [ + 77.608523109995403, + 12.921154251441299 + ], + [ + 77.608519507571899, + 12.921143866652899 + ], + [ + 77.608478605646297, + 12.9210259576531 + ], + [ + 77.608475093615496, + 12.9210203463219 + ], + [ + 77.6083954924691, + 12.9208935334104 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "154", + "group": "bismillah nagar", + "Corporatio": "South", + "ac_no": "173", + "ac": "Jayanagar", + "corporat_1": "4", + "ward_id": "12", + "ward_name": "12 - NAL Layout", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಜಯನಗರ", + "ward_name_": "ಎನ್‌.ಎ.ಎಲ್ ಲೇಔಟ್", + "dig_ward_n": "bismillah nagar", + "Assembly": "173 - Jayanagar", + "Slno": "12" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.602179710654696, + 12.923933346295399 + ], + [ + 77.602028801952301, + 12.923978983516999 + ], + [ + 77.601930621089494, + 12.9240047127286 + ], + [ + 77.601264837222601, + 12.924096365080199 + ], + [ + 77.601041641448205, + 12.9241221481573 + ], + [ + 77.600345876579595, + 12.9241925871441 + ], + [ + 77.600314591996195, + 12.924199447926 + ], + [ + 77.5998730196672, + 12.924257790378199 + ], + [ + 77.599553662239302, + 12.9242925240726 + ], + [ + 77.599044397243702, + 12.924343490756501 + ], + [ + 77.598159372237006, + 12.924442180484499 + ], + [ + 77.597913953334199, + 12.9244681726035 + ], + [ + 77.597691030491902, + 12.9244917813683 + ], + [ + 77.597269431254603, + 12.924529483754201 + ], + [ + 77.597084696836404, + 12.9245384922329 + ], + [ + 77.597084109093103, + 12.9244227165805 + ], + [ + 77.597047199087399, + 12.923183598382 + ], + [ + 77.597046963270401, + 12.9231756685645 + ], + [ + 77.597045772684496, + 12.9231357088093 + ], + [ + 77.597045594983896, + 12.923135714191201 + ], + [ + 77.593471231998194, + 12.923237679607 + ], + [ + 77.593484961657296, + 12.923741012817599 + ], + [ + 77.593496663244096, + 12.924196347534901 + ], + [ + 77.593508593294302, + 12.924660584243499 + ], + [ + 77.593527157174094, + 12.925183886806201 + ], + [ + 77.593538397076102, + 12.9257058274698 + ], + [ + 77.5935540821567, + 12.9262388262713 + ], + [ + 77.593560927596897, + 12.926471472019299 + ], + [ + 77.593574810641599, + 12.9269661359574 + ], + [ + 77.593572097159296, + 12.9270337915559 + ], + [ + 77.594372265261896, + 12.927019126020999 + ], + [ + 77.595350027552598, + 12.926994077361799 + ], + [ + 77.596216623195502, + 12.926971873016701 + ], + [ + 77.596476412941897, + 12.9269629675463 + ], + [ + 77.597061993836306, + 12.926942894418101 + ], + [ + 77.597068091503701, + 12.9273557768404 + ], + [ + 77.597070282111503, + 12.9276617187542 + ], + [ + 77.597079140628793, + 12.9282353137732 + ], + [ + 77.597082557498894, + 12.9283782956742 + ], + [ + 77.597158922406706, + 12.9283764752655 + ], + [ + 77.597471031, + 12.928368906962399 + ], + [ + 77.598027931599106, + 12.9283554008473 + ], + [ + 77.598545878570107, + 12.9283423375452 + ], + [ + 77.599084546420997, + 12.9283290667989 + ], + [ + 77.600496250254196, + 12.9282946722321 + ], + [ + 77.600441474088797, + 12.926730020359701 + ], + [ + 77.600434513569397, + 12.926613772710899 + ], + [ + 77.601111398491298, + 12.926607025977299 + ], + [ + 77.601118134896694, + 12.9266241158697 + ], + [ + 77.601121569636007, + 12.9266328296143 + ], + [ + 77.601122039749399, + 12.9266340228797 + ], + [ + 77.601153434755204, + 12.9267195360159 + ], + [ + 77.601229734639901, + 12.9268610660205 + ], + [ + 77.601271644598796, + 12.926905819835699 + ], + [ + 77.601305285808195, + 12.926930328844801 + ], + [ + 77.601526787150405, + 12.9270297566189 + ], + [ + 77.601534892117996, + 12.927034192970099 + ], + [ + 77.601837794448699, + 12.9272118591331 + ], + [ + 77.602181283683393, + 12.9274016533939 + ], + [ + 77.602301540450597, + 12.927468100279601 + ], + [ + 77.602560285165893, + 12.927603674067001 + ], + [ + 77.602754152165701, + 12.9277052535761 + ], + [ + 77.602856016927305, + 12.9277584432735 + ], + [ + 77.603071904086207, + 12.927871476962901 + ], + [ + 77.603192236590502, + 12.9279340857234 + ], + [ + 77.603291256631195, + 12.9279856051488 + ], + [ + 77.603320117823003, + 12.9279932221939 + ], + [ + 77.603395672541893, + 12.928014076557099 + ], + [ + 77.603399380449403, + 12.928015099872701 + ], + [ + 77.603418836442003, + 12.9280204693745 + ], + [ + 77.603487494020797, + 12.9280355943104 + ], + [ + 77.603498430125001, + 12.928035485181301 + ], + [ + 77.603509392445801, + 12.928036283214601 + ], + [ + 77.603798567248802, + 12.9280573343467 + ], + [ + 77.603859682859294, + 12.9280613924343 + ], + [ + 77.603975987771904, + 12.9280691150951 + ], + [ + 77.604123877782897, + 12.9280642511471 + ], + [ + 77.604342907147199, + 12.9280567183703 + ], + [ + 77.604586530236702, + 12.928048340015801 + ], + [ + 77.604638321075697, + 12.928046693695 + ], + [ + 77.604883789786101, + 12.9280402372979 + ], + [ + 77.604915130044901, + 12.9280394129598 + ], + [ + 77.604914458236905, + 12.928037143262401 + ], + [ + 77.6047363500834, + 12.927435404407801 + ], + [ + 77.604736163212806, + 12.9274347730627 + ], + [ + 77.604435342841697, + 12.9275134383234 + ], + [ + 77.604368719409393, + 12.927336365862599 + ], + [ + 77.604359571368903, + 12.927312052077299 + ], + [ + 77.604603914217194, + 12.9272271750062 + ], + [ + 77.604593941188995, + 12.927196800046501 + ], + [ + 77.604546256144005, + 12.927051581631 + ], + [ + 77.604672414572704, + 12.927005150752301 + ], + [ + 77.604665848868905, + 12.9269826305352 + ], + [ + 77.604618197377903, + 12.926828392850201 + ], + [ + 77.604587823561005, + 12.926730448889399 + ], + [ + 77.604585226835695, + 12.9267222053019 + ], + [ + 77.604577213912293, + 12.9266967673995 + ], + [ + 77.604571157627007, + 12.926677538709299 + ], + [ + 77.604563604224694, + 12.9266539162222 + ], + [ + 77.604542004374693, + 12.9265863573773 + ], + [ + 77.6045323375685, + 12.9265977467502 + ], + [ + 77.604508385751799, + 12.9266194423047 + ], + [ + 77.604497873004405, + 12.9266048655899 + ], + [ + 77.604465465455206, + 12.926532915527901 + ], + [ + 77.604457807189107, + 12.926516051742199 + ], + [ + 77.604429006349093, + 12.926458746418 + ], + [ + 77.604427373757602, + 12.926416078329099 + ], + [ + 77.604423477924598, + 12.9263142518028 + ], + [ + 77.604590128278801, + 12.926231279648899 + ], + [ + 77.604614543626894, + 12.9262169812732 + ], + [ + 77.604699983567897, + 12.9261669429542 + ], + [ + 77.604778345937703, + 12.926118730629099 + ], + [ + 77.6049398509561, + 12.926039198423799 + ], + [ + 77.605011870135598, + 12.9259899191755 + ], + [ + 77.605030190377207, + 12.9259819362202 + ], + [ + 77.605104703865095, + 12.925949467316601 + ], + [ + 77.604950388962493, + 12.92518041974 + ], + [ + 77.604943235172001, + 12.9251447677558 + ], + [ + 77.605015774618195, + 12.925146366356 + ], + [ + 77.605084298425595, + 12.9251478767361 + ], + [ + 77.605098263452106, + 12.9251479288525 + ], + [ + 77.605112793308507, + 12.9251479831394 + ], + [ + 77.605131714876606, + 12.9249151152764 + ], + [ + 77.605117063128304, + 12.924610026378501 + ], + [ + 77.605100142638904, + 12.924287547370101 + ], + [ + 77.605087074270202, + 12.924135060231499 + ], + [ + 77.605037202303393, + 12.9237565747568 + ], + [ + 77.605031318211402, + 12.9234913451753 + ], + [ + 77.604971815986303, + 12.9230904216118 + ], + [ + 77.604925693173499, + 12.922771306805499 + ], + [ + 77.604904920374494, + 12.9226813775445 + ], + [ + 77.604888419611598, + 12.9226006241572 + ], + [ + 77.604260318164194, + 12.922649767260699 + ], + [ + 77.603546068593104, + 12.9226721906923 + ], + [ + 77.603391660269196, + 12.922680723433499 + ], + [ + 77.602862931634903, + 12.922687191008199 + ], + [ + 77.602284104589103, + 12.922679815927101 + ], + [ + 77.602140001273099, + 12.9226784817983 + ], + [ + 77.602035521820596, + 12.922677514166301 + ], + [ + 77.602095450335995, + 12.9231853413011 + ], + [ + 77.602125258718303, + 12.9234138410397 + ], + [ + 77.602126074144707, + 12.923420094598599 + ], + [ + 77.602161121715298, + 12.923802167564199 + ], + [ + 77.602179710654696, + 12.923933346295399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "155", + "group": "j p nagar", + "Corporatio": "South", + "ac_no": "173", + "ac": "Jayanagar", + "corporat_1": "4", + "ward_id": "25", + "ward_name": "25 - JP Nagar", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಜಯನಗರ", + "ward_name_": "ಜೆ.ಪಿ. ನಗರ", + "dig_ward_n": "j p nagar", + "Assembly": "173 - Jayanagar", + "Slno": "25" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.593851320036904, + 12.903933317731701 + ], + [ + 77.593894401468503, + 12.9039341599357 + ], + [ + 77.594949731779906, + 12.9039047224858 + ], + [ + 77.594973791284602, + 12.904769475967299 + ], + [ + 77.594991492606795, + 12.9050680942116 + ], + [ + 77.595000695406995, + 12.905457829034299 + ], + [ + 77.595043487648795, + 12.906298807336301 + ], + [ + 77.595063928894902, + 12.9069036483335 + ], + [ + 77.595103247959599, + 12.907854220847 + ], + [ + 77.5951271289441, + 12.908431565776 + ], + [ + 77.595149150198495, + 12.909004652262301 + ], + [ + 77.595059972078005, + 12.9090055380558 + ], + [ + 77.594197532581703, + 12.9090212744652 + ], + [ + 77.593298470842598, + 12.9090302000546 + ], + [ + 77.5932892431684, + 12.909028901255599 + ], + [ + 77.593303964104607, + 12.909885664950201 + ], + [ + 77.593317660139107, + 12.910139150430799 + ], + [ + 77.593333491385394, + 12.910140643858799 + ], + [ + 77.593654861310299, + 12.910127323205 + ], + [ + 77.593902226852805, + 12.910117069641601 + ], + [ + 77.593981363691398, + 12.9101115028813 + ], + [ + 77.594390497659305, + 12.910161846971301 + ], + [ + 77.594421754576302, + 12.910165693276699 + ], + [ + 77.594855794868295, + 12.9101948475701 + ], + [ + 77.595200829343796, + 12.9102177138431 + ], + [ + 77.595186849779594, + 12.910633773633 + ], + [ + 77.595185950923096, + 12.9107965792766 + ], + [ + 77.595181517654396, + 12.910883964359201 + ], + [ + 77.595495928082002, + 12.910895180643999 + ], + [ + 77.595653597142899, + 12.9108951504553 + ], + [ + 77.595638387908707, + 12.911125882505701 + ], + [ + 77.595633292340594, + 12.911583256612399 + ], + [ + 77.595602147556605, + 12.9123427405358 + ], + [ + 77.595599818077602, + 12.912714818314599 + ], + [ + 77.596169166625103, + 12.9127565204279 + ], + [ + 77.596104509846796, + 12.9134326753541 + ], + [ + 77.596054146531202, + 12.914191421213999 + ], + [ + 77.595985583410098, + 12.914604634105199 + ], + [ + 77.5963180756887, + 12.914647421680201 + ], + [ + 77.596619044652897, + 12.914671060810299 + ], + [ + 77.596840494521501, + 12.9146791017355 + ], + [ + 77.596818416858198, + 12.915168968840501 + ], + [ + 77.596818700901196, + 12.915196454867001 + ], + [ + 77.5968366849077, + 12.915455068922 + ], + [ + 77.596837304814599, + 12.9154639887062 + ], + [ + 77.596847751854696, + 12.9157674592186 + ], + [ + 77.596856803250205, + 12.916289660045599 + ], + [ + 77.596866673948398, + 12.916815720310399 + ], + [ + 77.596607032752004, + 12.9168238097136 + ], + [ + 77.596428583186594, + 12.916829368688299 + ], + [ + 77.596328123126796, + 12.916832498803601 + ], + [ + 77.596274875599605, + 12.916833721182201 + ], + [ + 77.596110206852302, + 12.9168375013748 + ], + [ + 77.595796768329294, + 12.916844697413399 + ], + [ + 77.595631275414604, + 12.916848496339901 + ], + [ + 77.595482545209805, + 12.9168519108143 + ], + [ + 77.595058508807398, + 12.916852041084301 + ], + [ + 77.595136693872604, + 12.918968375589699 + ], + [ + 77.595386318381998, + 12.918961926279801 + ], + [ + 77.595537244460004, + 12.9189622426813 + ], + [ + 77.595685616404097, + 12.918959332920499 + ], + [ + 77.595846415062496, + 12.918956300422799 + ], + [ + 77.596126369923397, + 12.918952799401501 + ], + [ + 77.596174524257407, + 12.9189524190298 + ], + [ + 77.596330217933797, + 12.918951187858699 + ], + [ + 77.596478706255695, + 12.9189500128955 + ], + [ + 77.596643204345895, + 12.9189512452788 + ], + [ + 77.5966434785487, + 12.918947567373801 + ], + [ + 77.596993539526096, + 12.9189795791319 + ], + [ + 77.597343215427102, + 12.918966881981101 + ], + [ + 77.597724224569205, + 12.9189548968835 + ], + [ + 77.597872559494306, + 12.918941905457 + ], + [ + 77.598052766606997, + 12.918930550270799 + ], + [ + 77.598360905198106, + 12.918931836467801 + ], + [ + 77.600100855150203, + 12.918857233807699 + ], + [ + 77.600086467854993, + 12.9186978646919 + ], + [ + 77.600370514686901, + 12.9186932315853 + ], + [ + 77.600425952799199, + 12.9186932774894 + ], + [ + 77.600637086407204, + 12.918727029034001 + ], + [ + 77.600747662273903, + 12.9187570020549 + ], + [ + 77.600938545991298, + 12.918776613956499 + ], + [ + 77.601215343385206, + 12.9187977593232 + ], + [ + 77.601387712915397, + 12.918829705615 + ], + [ + 77.601509420588698, + 12.918825758201301 + ], + [ + 77.601491332635007, + 12.9189874857897 + ], + [ + 77.601719067076303, + 12.919033459020801 + ], + [ + 77.602255219980194, + 12.919153960724 + ], + [ + 77.602415288161396, + 12.9182511725735 + ], + [ + 77.603038022524302, + 12.918364719579801 + ], + [ + 77.603075280135798, + 12.9181589156308 + ], + [ + 77.6034230178428, + 12.918174883178599 + ], + [ + 77.603423195329, + 12.918240150319599 + ], + [ + 77.6034068465909, + 12.918571898059099 + ], + [ + 77.603386466559797, + 12.9191448254576 + ], + [ + 77.6033788004043, + 12.919345690490401 + ], + [ + 77.603406427327101, + 12.9193779231734 + ], + [ + 77.603453294659403, + 12.9194158589394 + ], + [ + 77.603451938888298, + 12.9194865478231 + ], + [ + 77.603442336544504, + 12.919567561752 + ], + [ + 77.603415624788695, + 12.9198077095082 + ], + [ + 77.603593343643396, + 12.919838445326601 + ], + [ + 77.603982043149003, + 12.9199115371958 + ], + [ + 77.604132397644904, + 12.919935375038101 + ], + [ + 77.604099080338003, + 12.9201063772728 + ], + [ + 77.604476109555407, + 12.920181975194501 + ], + [ + 77.604467118049698, + 12.920350018019001 + ], + [ + 77.604728808415899, + 12.920372195168699 + ], + [ + 77.604740877458795, + 12.9205244865112 + ], + [ + 77.605270899812794, + 12.920549315934901 + ], + [ + 77.605317580325305, + 12.9207626249909 + ], + [ + 77.605781681907203, + 12.920645568161399 + ], + [ + 77.605834283483802, + 12.920631936117299 + ], + [ + 77.605927498862101, + 12.9206077793134 + ], + [ + 77.606388351215998, + 12.920495135409899 + ], + [ + 77.606682967985293, + 12.9204252640156 + ], + [ + 77.606988531450298, + 12.920352101119599 + ], + [ + 77.607266354956707, + 12.9202855796109 + ], + [ + 77.607458384323806, + 12.920241493181599 + ], + [ + 77.607558076965105, + 12.9202186055151 + ], + [ + 77.607851847907995, + 12.9201400034 + ], + [ + 77.608029509513301, + 12.9200924671813 + ], + [ + 77.6080604207812, + 12.920083593190601 + ], + [ + 77.608049305194399, + 12.920050297408199 + ], + [ + 77.608045987735807, + 12.920040360313701 + ], + [ + 77.608041699769501, + 12.920027517550899 + ], + [ + 77.608025043585101, + 12.920031071811 + ], + [ + 77.608022218254405, + 12.9200164635907 + ], + [ + 77.6080132876683, + 12.9199702801016 + ], + [ + 77.607998887493906, + 12.919895819732901 + ], + [ + 77.608069544245197, + 12.919770892418599 + ], + [ + 77.608051796668803, + 12.9197247690088 + ], + [ + 77.608014939391097, + 12.9196122086455 + ], + [ + 77.607992986129602, + 12.9195491879555 + ], + [ + 77.607990972565204, + 12.919542065564199 + ], + [ + 77.607828658520603, + 12.9189681179835 + ], + [ + 77.607695442722999, + 12.918556129922999 + ], + [ + 77.607527713729297, + 12.9177582695864 + ], + [ + 77.607520348735903, + 12.9177323740719 + ], + [ + 77.607412412976203, + 12.9173528788567 + ], + [ + 77.607280197988004, + 12.9169261995459 + ], + [ + 77.607274208063302, + 12.9169036736262 + ], + [ + 77.607271059842802, + 12.9168777305678 + ], + [ + 77.607237123244502, + 12.9165921651642 + ], + [ + 77.607232588937293, + 12.9165540103563 + ], + [ + 77.607212444462505, + 12.9165542114958 + ], + [ + 77.606975596598403, + 12.9165611548491 + ], + [ + 77.606946427715201, + 12.9165620098068 + ], + [ + 77.606590455156294, + 12.916572445848001 + ], + [ + 77.606555554869203, + 12.9165734690975 + ], + [ + 77.606045907968905, + 12.9165884106646 + ], + [ + 77.606002247134299, + 12.9165896902154 + ], + [ + 77.605951149757402, + 12.9165911885245 + ], + [ + 77.605927482985805, + 12.9165918818534 + ], + [ + 77.605605494554595, + 12.916600635807599 + ], + [ + 77.6055338721185, + 12.9166025854844 + ], + [ + 77.605392320138506, + 12.916607385773199 + ], + [ + 77.605295614785405, + 12.916607221380101 + ], + [ + 77.605135156620506, + 12.916608456411801 + ], + [ + 77.604305056629102, + 12.9166148442122 + ], + [ + 77.6041355834044, + 12.9166188932916 + ], + [ + 77.604080049601507, + 12.916620219561 + ], + [ + 77.604061630710703, + 12.9166206589202 + ], + [ + 77.603049364099803, + 12.9166443044458 + ], + [ + 77.603022893379503, + 12.916644959514599 + ], + [ + 77.602591289586201, + 12.9166556462882 + ], + [ + 77.602323270688203, + 12.9166629394979 + ], + [ + 77.602263855067605, + 12.916664556127699 + ], + [ + 77.602020167016605, + 12.916671070812701 + ], + [ + 77.601991714482295, + 12.916671832255901 + ], + [ + 77.601991092069795, + 12.9166718492994 + ], + [ + 77.601990512009195, + 12.916671865017401 + ], + [ + 77.601792554040102, + 12.9166771576824 + ], + [ + 77.601665956852997, + 12.9166807372888 + ], + [ + 77.601039299728001, + 12.9166984566282 + ], + [ + 77.600620936997203, + 12.916710285723401 + ], + [ + 77.600102333805694, + 12.9167247787087 + ], + [ + 77.599993117922807, + 12.9167278307459 + ], + [ + 77.599975579737006, + 12.916534896360099 + ], + [ + 77.599971884028704, + 12.9164558826826 + ], + [ + 77.599973634507606, + 12.9162356532118 + ], + [ + 77.599977225990401, + 12.9158595630372 + ], + [ + 77.599977521136395, + 12.9158324570773 + ], + [ + 77.599978923112403, + 12.9157812997174 + ], + [ + 77.599998412622298, + 12.915069976591001 + ], + [ + 77.600003978705601, + 12.9148926285622 + ], + [ + 77.600023087986301, + 12.9142837432747 + ], + [ + 77.600013543433107, + 12.9141957534711 + ], + [ + 77.600004139080696, + 12.9141213137815 + ], + [ + 77.599994711373697, + 12.914044615737399 + ], + [ + 77.599986139602095, + 12.913995012194601 + ], + [ + 77.599971695477606, + 12.9139341741843 + ], + [ + 77.599957309772407, + 12.9138789820535 + ], + [ + 77.599904768633095, + 12.913696559673101 + ], + [ + 77.599898572369298, + 12.9135983728846 + ], + [ + 77.599882671336601, + 12.9133410524169 + ], + [ + 77.599883085335705, + 12.9130825576893 + ], + [ + 77.599883557306399, + 12.912787728061399 + ], + [ + 77.599883828939696, + 12.9126182934871 + ], + [ + 77.599916350152895, + 12.911866990029701 + ], + [ + 77.599923644700795, + 12.9117762144271 + ], + [ + 77.599929609173003, + 12.911701981297499 + ], + [ + 77.599983492723197, + 12.9110125763273 + ], + [ + 77.600024516054603, + 12.9106333173641 + ], + [ + 77.600026047616794, + 12.910619158856599 + ], + [ + 77.600070765451505, + 12.9102121683518 + ], + [ + 77.600081433346304, + 12.910118170960599 + ], + [ + 77.600137756777698, + 12.9096219203886 + ], + [ + 77.600141981268493, + 12.909584702023 + ], + [ + 77.600170132726504, + 12.9092271280406 + ], + [ + 77.600221348749798, + 12.9085765828991 + ], + [ + 77.600226143252996, + 12.908539269422301 + ], + [ + 77.600228305271401, + 12.9085256954877 + ], + [ + 77.600279610007505, + 12.9081434839115 + ], + [ + 77.600361444966495, + 12.9077078917412 + ], + [ + 77.600495067887493, + 12.9072584061232 + ], + [ + 77.600500506626105, + 12.907240109851999 + ], + [ + 77.600555357929593, + 12.9072565033351 + ], + [ + 77.600559020819503, + 12.907251807870001 + ], + [ + 77.600564500621203, + 12.907244784240699 + ], + [ + 77.601075706080394, + 12.906589558727299 + ], + [ + 77.601732354379394, + 12.9058004223378 + ], + [ + 77.601822652425795, + 12.9056267416713 + ], + [ + 77.601851823902095, + 12.9054977119723 + ], + [ + 77.601858958450094, + 12.905408426891301 + ], + [ + 77.601860679551905, + 12.905296609873201 + ], + [ + 77.601853195238405, + 12.9051295492085 + ], + [ + 77.601750460093299, + 12.904657398734599 + ], + [ + 77.601727655393006, + 12.904567282409699 + ], + [ + 77.601520982730904, + 12.903729146467199 + ], + [ + 77.601458873583198, + 12.9035118112884 + ], + [ + 77.601433079876998, + 12.9035222316516 + ], + [ + 77.601428384445995, + 12.9035236687 + ], + [ + 77.601303407316905, + 12.903561918226499 + ], + [ + 77.601248603562397, + 12.903550041456599 + ], + [ + 77.601120500715496, + 12.9034632315692 + ], + [ + 77.601084172307196, + 12.9034568173537 + ], + [ + 77.600991093028895, + 12.903457743653201 + ], + [ + 77.600984605738006, + 12.9034578082117 + ], + [ + 77.6009004349512, + 12.903500429653599 + ], + [ + 77.600585865469498, + 12.9035272749688 + ], + [ + 77.600311135819098, + 12.9035661457768 + ], + [ + 77.600150866472703, + 12.9035971018751 + ], + [ + 77.600058462935294, + 12.9036228655818 + ], + [ + 77.600026913556803, + 12.903651579808599 + ], + [ + 77.600008459134997, + 12.9036683761963 + ], + [ + 77.599989465774499, + 12.9036856630985 + ], + [ + 77.599884081764799, + 12.9037364003362 + ], + [ + 77.599763049865004, + 12.903777595720401 + ], + [ + 77.599552557161402, + 12.9038492394599 + ], + [ + 77.5994198312534, + 12.903872016142699 + ], + [ + 77.599367940103903, + 12.903863497887 + ], + [ + 77.599273790133594, + 12.9038316847255 + ], + [ + 77.5991979789151, + 12.903770755009001 + ], + [ + 77.599146099782402, + 12.903729059552401 + ], + [ + 77.598987550957006, + 12.9035755339758 + ], + [ + 77.598986794152694, + 12.9035748011483 + ], + [ + 77.598943469829706, + 12.903504086423199 + ], + [ + 77.598926977595596, + 12.903356312870001 + ], + [ + 77.598928291816804, + 12.903204974371 + ], + [ + 77.5989731816329, + 12.9029801971931 + ], + [ + 77.599043766448801, + 12.902626756795399 + ], + [ + 77.599072375509706, + 12.902498862076101 + ], + [ + 77.599182732400394, + 12.9020381420096 + ], + [ + 77.599348510727097, + 12.901649145675099 + ], + [ + 77.599382941210393, + 12.901556722840199 + ], + [ + 77.599389481350201, + 12.901539166930201 + ], + [ + 77.599402783169495, + 12.9015034601137 + ], + [ + 77.599454920293297, + 12.9013635054445 + ], + [ + 77.599455565580399, + 12.9013596815717 + ], + [ + 77.599489089809097, + 12.9011610220391 + ], + [ + 77.599482245651004, + 12.901111401164201 + ], + [ + 77.599470089626607, + 12.9011047462806 + ], + [ + 77.599436136272999, + 12.9011080258035 + ], + [ + 77.599430988953102, + 12.901108522977999 + ], + [ + 77.599112747132807, + 12.9012810814825 + ], + [ + 77.598950704453102, + 12.901359301208799 + ], + [ + 77.598916874066205, + 12.901375631074901 + ], + [ + 77.598075411092694, + 12.901825550007301 + ], + [ + 77.597427674067006, + 12.902137018835599 + ], + [ + 77.597190523611999, + 12.902251053722599 + ], + [ + 77.596825850025397, + 12.9023929385254 + ], + [ + 77.596751608929296, + 12.9024218236866 + ], + [ + 77.596642463175002, + 12.9024642892396 + ], + [ + 77.596391010810294, + 12.9025277690944 + ], + [ + 77.5962142116894, + 12.902543872711901 + ], + [ + 77.595903945247798, + 12.902572132174599 + ], + [ + 77.595384968868601, + 12.9025919666964 + ], + [ + 77.594860598006207, + 12.9026468619785 + ], + [ + 77.594406963594693, + 12.9026400720512 + ], + [ + 77.594039432463603, + 12.902666305775099 + ], + [ + 77.594029277882598, + 12.902665435551 + ], + [ + 77.593992192366599, + 12.9026622574047 + ], + [ + 77.593974010033605, + 12.902796824347501 + ], + [ + 77.593944687935902, + 12.9031304462634 + ], + [ + 77.593935645225997, + 12.9032333274485 + ], + [ + 77.593924040820497, + 12.903365357305599 + ], + [ + 77.593910080247596, + 12.903469844826899 + ], + [ + 77.593899583056199, + 12.903548406328399 + ], + [ + 77.593858315883494, + 12.903857254358201 + ], + [ + 77.593851320036904, + 12.903933317731701 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "164", + "group": "Agrahara Dasarahalli", + "Corporatio": "West", + "ac_no": "166", + "ac": "Govindraj Nagar", + "corporat_1": "5", + "ward_id": "59", + "ward_name": "59 - Agrahara Dasarahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಗೋವಿಂದರಾಜ ನಗರ", + "ward_name_": "ಅಗ್ರಹಾರ ದಾಸರಹಳ್ಳಿ", + "dig_ward_n": "Agrahara Dasarahalli", + "Assembly": "166 - Govindraj Nagar", + "Slno": "59" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.542422941170003, + 12.9855953312798 + ], + [ + 77.542382937593004, + 12.9851187932424 + ], + [ + 77.542357216122795, + 12.985125924806599 + ], + [ + 77.542383617143102, + 12.9845768761515 + ], + [ + 77.542453674057597, + 12.9840365087148 + ], + [ + 77.542541321442201, + 12.983623904916399 + ], + [ + 77.542565179716604, + 12.983294406204701 + ], + [ + 77.5426738191168, + 12.9828214442228 + ], + [ + 77.542724701163806, + 12.982533107374699 + ], + [ + 77.542731564795901, + 12.9825015182572 + ], + [ + 77.542772127826495, + 12.982314825590301 + ], + [ + 77.542788467105296, + 12.982239625565599 + ], + [ + 77.542800479929099, + 12.982140863890001 + ], + [ + 77.542802900365999, + 12.9821209666447 + ], + [ + 77.542838814670205, + 12.9818256992366 + ], + [ + 77.542846356475195, + 12.981763695495699 + ], + [ + 77.542859163305906, + 12.981658402118899 + ], + [ + 77.542876584962002, + 12.9812447581418 + ], + [ + 77.542861167780401, + 12.981170734101299 + ], + [ + 77.542800626913603, + 12.9808337550056 + ], + [ + 77.542780812327194, + 12.980706791912199 + ], + [ + 77.542771005122106, + 12.9806531489091 + ], + [ + 77.542757096843999, + 12.9801204368333 + ], + [ + 77.5433960943746, + 12.9801156990175 + ], + [ + 77.543396432471695, + 12.9798454873235 + ], + [ + 77.543713459957999, + 12.9798337107954 + ], + [ + 77.5441171307682, + 12.9798301089277 + ], + [ + 77.544115866142903, + 12.979781680609801 + ], + [ + 77.544342972775496, + 12.979763373950799 + ], + [ + 77.544303270008299, + 12.9792748143505 + ], + [ + 77.544298231521196, + 12.979234748718101 + ], + [ + 77.544233034807803, + 12.978971233668901 + ], + [ + 77.544214766463895, + 12.978831420611201 + ], + [ + 77.544213814424495, + 12.978826856582099 + ], + [ + 77.544591847304702, + 12.97873687157 + ], + [ + 77.544648177988194, + 12.978963385868999 + ], + [ + 77.544835585530393, + 12.9789119753283 + ], + [ + 77.544895418347807, + 12.9788971817292 + ], + [ + 77.545029633418494, + 12.978868446952999 + ], + [ + 77.544987644592993, + 12.978648225915901 + ], + [ + 77.544962043528201, + 12.978407786963301 + ], + [ + 77.544921718433599, + 12.9781614370483 + ], + [ + 77.5448917106972, + 12.9779429908791 + ], + [ + 77.544802371021007, + 12.977978977683801 + ], + [ + 77.544418492687498, + 12.978121065605499 + ], + [ + 77.544259561399002, + 12.978168480081299 + ], + [ + 77.544030396756597, + 12.978236848320201 + ], + [ + 77.543845478634907, + 12.978271868333801 + ], + [ + 77.543417301395394, + 12.9783525515241 + ], + [ + 77.542952685209102, + 12.978445542458401 + ], + [ + 77.542858539274405, + 12.978462479110201 + ], + [ + 77.542264133851901, + 12.9785694076956 + ], + [ + 77.541920967142204, + 12.978620572141899 + ], + [ + 77.541881799896302, + 12.978628818893499 + ], + [ + 77.541468560733193, + 12.9787158317893 + ], + [ + 77.541135870971999, + 12.978838605629401 + ], + [ + 77.540863918042007, + 12.9789416617476 + ], + [ + 77.540797182360294, + 12.978939246736999 + ], + [ + 77.540507317371507, + 12.9790599208618 + ], + [ + 77.540260289095301, + 12.979162759952899 + ], + [ + 77.540207922278697, + 12.9791845591994 + ], + [ + 77.540120943961099, + 12.9792236131906 + ], + [ + 77.539674383016603, + 12.979424124876701 + ], + [ + 77.539670228652696, + 12.9794259904714 + ], + [ + 77.539289956724403, + 12.979584908742201 + ], + [ + 77.539246755271193, + 12.9796023466899 + ], + [ + 77.539180980483295, + 12.9796313409596 + ], + [ + 77.538854193708502, + 12.979775390049401 + ], + [ + 77.538604027793596, + 12.9798856650907 + ], + [ + 77.538550394177705, + 12.9799093068546 + ], + [ + 77.537913724531805, + 12.980189951817801 + ], + [ + 77.537887097510804, + 12.980201599128399 + ], + [ + 77.537837059130695, + 12.9802234863621 + ], + [ + 77.536975012692906, + 12.9806005598446 + ], + [ + 77.536797450214806, + 12.9806782279889 + ], + [ + 77.536824419982494, + 12.980746759148101 + ], + [ + 77.536871181633103, + 12.9808655816949 + ], + [ + 77.536920378401504, + 12.980990591818999 + ], + [ + 77.537136695849398, + 12.9815402570466 + ], + [ + 77.537152138501398, + 12.981579497622301 + ], + [ + 77.537180399026894, + 12.981754269185901 + ], + [ + 77.537188917320194, + 12.9818065692576 + ], + [ + 77.537239349308607, + 12.982116211282699 + ], + [ + 77.537257292887304, + 12.982314236769 + ], + [ + 77.537263989925705, + 12.982388141232001 + ], + [ + 77.537265247100194, + 12.982511985733501 + ], + [ + 77.537265250860102, + 12.982512356119701 + ], + [ + 77.537265354486493, + 12.982522564325 + ], + [ + 77.537265377211, + 12.9825248029031 + ], + [ + 77.537265505451202, + 12.9825374357829 + ], + [ + 77.537266872211603, + 12.982672073879 + ], + [ + 77.537267256918994, + 12.9827099707112 + ], + [ + 77.537238313157502, + 12.9828649726115 + ], + [ + 77.537082659018793, + 12.9833001580875 + ], + [ + 77.537053233695403, + 12.9834077324878 + ], + [ + 77.537046390978105, + 12.9834710422328 + ], + [ + 77.537073779275701, + 12.9838434564675 + ], + [ + 77.537094784530098, + 12.984062354748501 + ], + [ + 77.537134951997501, + 12.9844809352886 + ], + [ + 77.537176611200096, + 12.984914025413699 + ], + [ + 77.537228939472598, + 12.9854580243372 + ], + [ + 77.5372501384728, + 12.9856783481276 + ], + [ + 77.537272785031007, + 12.9859138378797 + ], + [ + 77.537273403170303, + 12.9859202753939 + ], + [ + 77.537304259415606, + 12.986241049352801 + ], + [ + 77.537352522842696, + 12.9866844077936 + ], + [ + 77.537355462800505, + 12.986711273584 + ], + [ + 77.537360601448896, + 12.9867582372803 + ], + [ + 77.537398581639494, + 12.9871053292529 + ], + [ + 77.537433131581196, + 12.9874210780821 + ], + [ + 77.5374364934965, + 12.9874529305152 + ], + [ + 77.537444579119395, + 12.9875295281511 + ], + [ + 77.537445873722007, + 12.9875417927624 + ], + [ + 77.537494007360195, + 12.9878021996296 + ], + [ + 77.537506093548899, + 12.987915015339301 + ], + [ + 77.537691144916295, + 12.9878808373729 + ], + [ + 77.537698381005796, + 12.9878795009285 + ], + [ + 77.537893462039705, + 12.987843471220501 + ], + [ + 77.537966974703494, + 12.9878246836789 + ], + [ + 77.538126067821693, + 12.9877847319657 + ], + [ + 77.538893792612896, + 12.987408940182601 + ], + [ + 77.539034779505201, + 12.987339928661701 + ], + [ + 77.5392226602264, + 12.987240659641699 + ], + [ + 77.539574471706501, + 12.987054759099699 + ], + [ + 77.539574572753693, + 12.987054730104401 + ], + [ + 77.5396960309902, + 12.9869905575235 + ], + [ + 77.539751265997495, + 12.986961374011599 + ], + [ + 77.540696267654894, + 12.9864620030575 + ], + [ + 77.541143560373001, + 12.9862249857559 + ], + [ + 77.5415468610354, + 12.9860369035153 + ], + [ + 77.541573947310596, + 12.9860242718999 + ], + [ + 77.541678250612307, + 12.985975819561199 + ], + [ + 77.541876540364996, + 12.9858939319541 + ], + [ + 77.541893367863494, + 12.9858869822923 + ], + [ + 77.541994764045398, + 12.9858451084249 + ], + [ + 77.5420246108919, + 12.98583578175 + ], + [ + 77.542280537242604, + 12.985750587965301 + ], + [ + 77.542381038693605, + 12.985717133096999 + ], + [ + 77.542409096236497, + 12.9857077931728 + ], + [ + 77.542427822012201, + 12.9857016252208 + ], + [ + 77.542427645159904, + 12.9856784466877 + ], + [ + 77.542422941170003, + 12.9855953312798 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "165", + "group": "Nagarbhavi", + "Corporatio": "West", + "ac_no": "166", + "ac": "Govindraj Nagar", + "corporat_1": "5", + "ward_id": "103", + "ward_name": "103 - Nagarbhavi", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಗೋವಿಂದರಾಜ ನಗರ", + "ward_name_": "ನಾಗರಭಾವಿ", + "dig_ward_n": "Nagarbhavi", + "Assembly": "166 - Govindraj Nagar", + "Slno": "103" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.520630880144793, + 12.961712225493001 + ], + [ + 77.520621801207497, + 12.9616802012918 + ], + [ + 77.520620269139698, + 12.961674797216901 + ], + [ + 77.520618625567394, + 12.9616689998309 + ], + [ + 77.520614355734594, + 12.961653938813001 + ], + [ + 77.520601861677406, + 12.9616098684031 + ], + [ + 77.520578585649105, + 12.961527766582799 + ], + [ + 77.520578476596896, + 12.9615273819214 + ], + [ + 77.520577987869402, + 12.961525658026 + ], + [ + 77.520512940292093, + 12.9612962144994 + ], + [ + 77.520512767394607, + 12.9612956027092 + ], + [ + 77.520485242273494, + 12.9611763304072 + ], + [ + 77.520477328798407, + 12.961142040312501 + ], + [ + 77.520468819318594, + 12.9611051676375 + ], + [ + 77.520442406045007, + 12.961044451894599 + ], + [ + 77.520401781383498, + 12.960951070115501 + ], + [ + 77.520387885879103, + 12.9609191283276 + ], + [ + 77.520368034240803, + 12.9608734968212 + ], + [ + 77.520368298933704, + 12.960838477088 + ], + [ + 77.520368700635004, + 12.9607852045886 + ], + [ + 77.520369854576899, + 12.9606321735052 + ], + [ + 77.520370259161894, + 12.9605798435013 + ], + [ + 77.520364893406096, + 12.9605701685631 + ], + [ + 77.520320416530296, + 12.960489977849001 + ], + [ + 77.520302272825703, + 12.9604578874496 + ], + [ + 77.520274693822699, + 12.960409107116501 + ], + [ + 77.520208589571894, + 12.9603638447905 + ], + [ + 77.520196044762301, + 12.960355255769301 + ], + [ + 77.519848578567405, + 12.960117341775501 + ], + [ + 77.519393778888798, + 12.9597784203087 + ], + [ + 77.519321736739698, + 12.959660536274001 + ], + [ + 77.519321775408201, + 12.959660534092899 + ], + [ + 77.519374766439597, + 12.959652035719101 + ], + [ + 77.519368558980105, + 12.9596341164109 + ], + [ + 77.519367448010698, + 12.9596292637132 + ], + [ + 77.519317261156402, + 12.9595890890514 + ], + [ + 77.519292580774703, + 12.9594616774743 + ], + [ + 77.519264845544996, + 12.959355582418601 + ], + [ + 77.519246952598806, + 12.959287136024299 + ], + [ + 77.519155157139295, + 12.959029853983401 + ], + [ + 77.519033785805703, + 12.9587398682571 + ], + [ + 77.519055142198795, + 12.9586822904231 + ], + [ + 77.518883205694195, + 12.9581767926081 + ], + [ + 77.518872798907097, + 12.9581461992485 + ], + [ + 77.519277167987497, + 12.9576388532201 + ], + [ + 77.519457132677701, + 12.9570662676652 + ], + [ + 77.519607543288402, + 12.9566087104449 + ], + [ + 77.519643057361293, + 12.9557123265787 + ], + [ + 77.519643697985103, + 12.9556961570668 + ], + [ + 77.519665228879305, + 12.955219767045 + ], + [ + 77.519700435896297, + 12.954503719567599 + ], + [ + 77.519576797792396, + 12.954490663387601 + ], + [ + 77.519638967572106, + 12.954226660684199 + ], + [ + 77.5199559163365, + 12.9532063205573 + ], + [ + 77.520190266068496, + 12.953206970318099 + ], + [ + 77.520423413401602, + 12.9531896863959 + ], + [ + 77.521431694946202, + 12.952885493090401 + ], + [ + 77.5213856717466, + 12.952714318584 + ], + [ + 77.521693077559803, + 12.9526844494446 + ], + [ + 77.521795832248401, + 12.952687787664001 + ], + [ + 77.522663464333405, + 12.9525503024574 + ], + [ + 77.523161575024801, + 12.9524713703829 + ], + [ + 77.523575915535503, + 12.952408795258799 + ], + [ + 77.523600030272704, + 12.9524058119705 + ], + [ + 77.523541366018193, + 12.9517531773594 + ], + [ + 77.524053820477803, + 12.951647438927999 + ], + [ + 77.524053562080795, + 12.9516432772899 + ], + [ + 77.524916235494103, + 12.951567280792499 + ], + [ + 77.525460302928494, + 12.951568061428301 + ], + [ + 77.525636191097604, + 12.9515618146295 + ], + [ + 77.525712697889702, + 12.9515724262343 + ], + [ + 77.525815967951203, + 12.951558557591801 + ], + [ + 77.525904668389998, + 12.951553912959699 + ], + [ + 77.526357799214296, + 12.9513375873348 + ], + [ + 77.526470015893196, + 12.9512925989241 + ], + [ + 77.526789963529595, + 12.9512614902676 + ], + [ + 77.527037056456905, + 12.951199298400301 + ], + [ + 77.5269843246232, + 12.9509185191081 + ], + [ + 77.526953390843701, + 12.950756366482 + ], + [ + 77.526938734157, + 12.9506795394969 + ], + [ + 77.526935214843505, + 12.950661497736199 + ], + [ + 77.526910807098702, + 12.950536383143399 + ], + [ + 77.526897268888604, + 12.950442762277399 + ], + [ + 77.526875934819699, + 12.9502973374665 + ], + [ + 77.5268699603415, + 12.950256612383599 + ], + [ + 77.526868833682499, + 12.950248931093199 + ], + [ + 77.526863190558899, + 12.9502104632996 + ], + [ + 77.526862113797307, + 12.950203254044499 + ], + [ + 77.526842814740704, + 12.950074008858801 + ], + [ + 77.526792102899606, + 12.9497266622636 + ], + [ + 77.526790849078907, + 12.949716509383199 + ], + [ + 77.526713664603605, + 12.9492933619283 + ], + [ + 77.526707360897007, + 12.949258804461 + ], + [ + 77.526687269971902, + 12.949150581832701 + ], + [ + 77.526674384908006, + 12.9489022536691 + ], + [ + 77.526655699575699, + 12.948549182782701 + ], + [ + 77.526549687103596, + 12.948579298122301 + ], + [ + 77.526163808544197, + 12.9487298779919 + ], + [ + 77.525913248419798, + 12.948830704010501 + ], + [ + 77.525808779440297, + 12.9488786444852 + ], + [ + 77.525644550240202, + 12.9489695505171 + ], + [ + 77.5254796071481, + 12.949027916808101 + ], + [ + 77.525267990923297, + 12.949126094082899 + ], + [ + 77.525123001600306, + 12.9491878620239 + ], + [ + 77.525100137387795, + 12.949178054749799 + ], + [ + 77.524952161711497, + 12.9492402300023 + ], + [ + 77.524758403166004, + 12.9493492088616 + ], + [ + 77.524575685259705, + 12.9494050977789 + ], + [ + 77.524518320506502, + 12.9494177640446 + ], + [ + 77.524465967555301, + 12.9494300032836 + ], + [ + 77.524131287042593, + 12.949492284283201 + ], + [ + 77.524125797071804, + 12.9495218564926 + ], + [ + 77.523853882574301, + 12.9495714186437 + ], + [ + 77.523471823173693, + 12.9496035034863 + ], + [ + 77.523159280362705, + 12.9496035032082 + ], + [ + 77.523069086935394, + 12.949459809163001 + ], + [ + 77.522991221376003, + 12.9495308329015 + ], + [ + 77.522779101483906, + 12.949469778043699 + ], + [ + 77.522534422108293, + 12.949396109080199 + ], + [ + 77.522181456233696, + 12.9499036212351 + ], + [ + 77.522067012560896, + 12.949804061688999 + ], + [ + 77.521978433356296, + 12.949360619544199 + ], + [ + 77.521945670519202, + 12.949325740907801 + ], + [ + 77.521204668415606, + 12.9495168748157 + ], + [ + 77.520975733398203, + 12.949533433091799 + ], + [ + 77.5205810736758, + 12.9495732079468 + ], + [ + 77.519667387639998, + 12.9496227358068 + ], + [ + 77.519646763729895, + 12.9485218290059 + ], + [ + 77.519452297352302, + 12.9485470694332 + ], + [ + 77.519303150524905, + 12.9485604638867 + ], + [ + 77.519272534113298, + 12.948243313691099 + ], + [ + 77.519269144082401, + 12.948208198241501 + ], + [ + 77.518658028867506, + 12.9482740431437 + ], + [ + 77.518593134360998, + 12.947959799741099 + ], + [ + 77.518327662114601, + 12.9479593382659 + ], + [ + 77.5182769037973, + 12.9476948747826 + ], + [ + 77.518215888718203, + 12.9476865001312 + ], + [ + 77.517775582969904, + 12.9476982447007 + ], + [ + 77.517147740059997, + 12.947577151610799 + ], + [ + 77.516834451161003, + 12.947855229545301 + ], + [ + 77.516821006229193, + 12.9477298589828 + ], + [ + 77.516739039840203, + 12.946791910415801 + ], + [ + 77.5177988437229, + 12.946752986231999 + ], + [ + 77.517777901149501, + 12.9464878459495 + ], + [ + 77.517905914601499, + 12.946493780845101 + ], + [ + 77.5180896780344, + 12.9465469902295 + ], + [ + 77.518479639615407, + 12.9465719836357 + ], + [ + 77.518695228254998, + 12.946600175832801 + ], + [ + 77.518675470340398, + 12.9464005020881 + ], + [ + 77.518952840293593, + 12.9462964966201 + ], + [ + 77.518851045443895, + 12.9459023208991 + ], + [ + 77.518804548348498, + 12.945696239327599 + ], + [ + 77.518795941007895, + 12.945567237217301 + ], + [ + 77.518715445955394, + 12.9449257156603 + ], + [ + 77.518830281014303, + 12.944910981521399 + ], + [ + 77.518785906091594, + 12.9444883028292 + ], + [ + 77.518768710601407, + 12.9443852216775 + ], + [ + 77.518930371763503, + 12.9443683604929 + ], + [ + 77.5191219632746, + 12.9443465099757 + ], + [ + 77.519974491003097, + 12.944198273003201 + ], + [ + 77.519963104405505, + 12.9439166173813 + ], + [ + 77.519961259360699, + 12.9437330464523 + ], + [ + 77.519960029349704, + 12.9436106661325 + ], + [ + 77.519978168603799, + 12.9432815621808 + ], + [ + 77.519995506681695, + 12.942834135434101 + ], + [ + 77.520167347995496, + 12.9428261806486 + ], + [ + 77.520317369630007, + 12.9428408629686 + ], + [ + 77.520493389442194, + 12.9428482436238 + ], + [ + 77.520493508912196, + 12.942553051435199 + ], + [ + 77.520512162410498, + 12.942259193814399 + ], + [ + 77.520529980187902, + 12.942035735985201 + ], + [ + 77.520590226920504, + 12.942041208586 + ], + [ + 77.520730124848299, + 12.942063319586399 + ], + [ + 77.521324218595296, + 12.9421294789566 + ], + [ + 77.521349271631493, + 12.941973315280601 + ], + [ + 77.521493552477693, + 12.9417163678501 + ], + [ + 77.521532111354503, + 12.9416729664835 + ], + [ + 77.521668435522699, + 12.9416573049135 + ], + [ + 77.521898227731199, + 12.9417267956958 + ], + [ + 77.522084540850599, + 12.941834954071 + ], + [ + 77.522327350590203, + 12.941647297382801 + ], + [ + 77.5219818944325, + 12.941175702144999 + ], + [ + 77.521749549936303, + 12.941039031390099 + ], + [ + 77.521633795219401, + 12.941040151176599 + ], + [ + 77.521541869592497, + 12.9409872551773 + ], + [ + 77.521462610030895, + 12.940982045318201 + ], + [ + 77.521352707694007, + 12.940959204015799 + ], + [ + 77.521255350288698, + 12.9409720978561 + ], + [ + 77.521157633344998, + 12.9409491386092 + ], + [ + 77.521047791092698, + 12.9409322722264 + ], + [ + 77.520962258634697, + 12.9409091950609 + ], + [ + 77.520797405642895, + 12.9408749318424 + ], + [ + 77.520736482394895, + 12.940875520977601 + ], + [ + 77.520694977505897, + 12.9409894693962 + ], + [ + 77.520664696056997, + 12.9410076909365 + ], + [ + 77.520383667812695, + 12.940932717733 + ], + [ + 77.520053541517697, + 12.940822362292099 + ], + [ + 77.519967949079103, + 12.940793308811401 + ], + [ + 77.519961315980794, + 12.9407395876417 + ], + [ + 77.520003421653897, + 12.940685394411799 + ], + [ + 77.520363296796504, + 12.9404131245411 + ], + [ + 77.5204430932653, + 12.940085312020599 + ], + [ + 77.519986601138598, + 12.940163537649701 + ], + [ + 77.5195998510154, + 12.9402389908805 + ], + [ + 77.519480539471601, + 12.9402747344689 + ], + [ + 77.519450952033196, + 12.9400948780468 + ], + [ + 77.518929800701301, + 12.940145328317399 + ], + [ + 77.518779420566204, + 12.940155107257301 + ], + [ + 77.518453212305005, + 12.9401764245351 + ], + [ + 77.518425484446396, + 12.9399511358216 + ], + [ + 77.518338232947897, + 12.9396386215461 + ], + [ + 77.518255288750296, + 12.939217071786 + ], + [ + 77.518237713789702, + 12.939003795343099 + ], + [ + 77.518202137396699, + 12.9385299402062 + ], + [ + 77.518042720285393, + 12.937569890483999 + ], + [ + 77.517867115667102, + 12.9367677879771 + ], + [ + 77.517788160828005, + 12.9363791895641 + ], + [ + 77.517740628525203, + 12.9363783475389 + ], + [ + 77.517688222407401, + 12.936376594825701 + ], + [ + 77.517625522721502, + 12.9363817176278 + ], + [ + 77.517127365357695, + 12.9363639397318 + ], + [ + 77.516698262352605, + 12.9363432356886 + ], + [ + 77.516381747409994, + 12.9362977279362 + ], + [ + 77.515977412249896, + 12.9362391787415 + ], + [ + 77.515921095312393, + 12.9362310233466 + ], + [ + 77.515759654867395, + 12.936206605694199 + ], + [ + 77.515163353427994, + 12.936114526593601 + ], + [ + 77.514974914227196, + 12.936085428571801 + ], + [ + 77.514807107828304, + 12.9360576836152 + ], + [ + 77.514431368276604, + 12.9359619233456 + ], + [ + 77.514120259334803, + 12.935881350407801 + ], + [ + 77.513832051771203, + 12.9357881333344 + ], + [ + 77.513785178613304, + 12.935878933981099 + ], + [ + 77.513765370554793, + 12.9359130057258 + ], + [ + 77.513658182062898, + 12.936132005463699 + ], + [ + 77.513591592597194, + 12.936323509195001 + ], + [ + 77.513538320691893, + 12.936465192709599 + ], + [ + 77.513446954360703, + 12.936597079182 + ], + [ + 77.513338520883593, + 12.936691861259501 + ], + [ + 77.513320442470103, + 12.9367102001421 + ], + [ + 77.513257593848095, + 12.936773955222399 + ], + [ + 77.513240088243904, + 12.9368080047576 + ], + [ + 77.513201566584598, + 12.9368704908605 + ], + [ + 77.5132011224173, + 12.936871115838001 + ], + [ + 77.513142525298505, + 12.936953503219501 + ], + [ + 77.513037816931302, + 12.937075353961999 + ], + [ + 77.512987492486602, + 12.937142218267301 + ], + [ + 77.512945865556603, + 12.9371975262486 + ], + [ + 77.512916235001896, + 12.9372368949155 + ], + [ + 77.512837788950094, + 12.9373125302443 + ], + [ + 77.512821582636207, + 12.937328155957699 + ], + [ + 77.512757382930104, + 12.9374134767019 + ], + [ + 77.512770517138193, + 12.937591492752199 + ], + [ + 77.512780697899899, + 12.937729472969 + ], + [ + 77.512786368968406, + 12.937950772979301 + ], + [ + 77.512744631999794, + 12.9380946040077 + ], + [ + 77.512715897364401, + 12.9382145931555 + ], + [ + 77.512749963733995, + 12.9382820264724 + ], + [ + 77.512793951910098, + 12.938362916482699 + ], + [ + 77.512890131873405, + 12.9384241043196 + ], + [ + 77.512960204019294, + 12.9384652152697 + ], + [ + 77.512991997077293, + 12.9384827174856 + ], + [ + 77.513077141373302, + 12.9385295910309 + ], + [ + 77.513288055308394, + 12.9385501451368 + ], + [ + 77.513321532061994, + 12.938501259940001 + ], + [ + 77.513433502199604, + 12.938529543886499 + ], + [ + 77.513481507397799, + 12.938551668290501 + ], + [ + 77.513633897491104, + 12.938591985424001 + ], + [ + 77.513740665730595, + 12.9386756580043 + ], + [ + 77.513761276371994, + 12.9386853488589 + ], + [ + 77.513817114845097, + 12.9387116043024 + ], + [ + 77.513877175408297, + 12.9387398446407 + ], + [ + 77.513948255091094, + 12.938881458565399 + ], + [ + 77.513991824970105, + 12.938920566016 + ], + [ + 77.514082680629897, + 12.9390823176526 + ], + [ + 77.514150046300301, + 12.9391979920322 + ], + [ + 77.514197590882205, + 12.939289011630899 + ], + [ + 77.514247950295001, + 12.9393613597012 + ], + [ + 77.514271773921294, + 12.9393955853379 + ], + [ + 77.514415555911796, + 12.939553438269099 + ], + [ + 77.514455044253296, + 12.9395817756517 + ], + [ + 77.514505472365599, + 12.939617963618399 + ], + [ + 77.514598797625595, + 12.9396849352168 + ], + [ + 77.514613695066501, + 12.9397548488192 + ], + [ + 77.514637462188404, + 12.9398663890577 + ], + [ + 77.514657747660095, + 12.939937342996 + ], + [ + 77.5146694794269, + 12.9400738822576 + ], + [ + 77.514667327624807, + 12.9402037792877 + ], + [ + 77.514638593910604, + 12.940323769409 + ], + [ + 77.514619230876903, + 12.9403836784966 + ], + [ + 77.514616258474504, + 12.940392874853099 + ], + [ + 77.514581766388105, + 12.940455322312401 + ], + [ + 77.514562142272794, + 12.940463103611799 + ], + [ + 77.514517542333607, + 12.9404807877183 + ], + [ + 77.514478294075204, + 12.9405373234531 + ], + [ + 77.514448873320006, + 12.940579704323 + ], + [ + 77.514453561359801, + 12.9407027592378 + ], + [ + 77.514498071442603, + 12.9408355942571 + ], + [ + 77.514571521000605, + 12.940926363816899 + ], + [ + 77.514584818598294, + 12.9409497975827 + ], + [ + 77.514622508771694, + 12.9410162206708 + ], + [ + 77.514624144109604, + 12.9410533653194 + ], + [ + 77.514626236294703, + 12.9411008866274 + ], + [ + 77.514631695479196, + 12.9411322644726 + ], + [ + 77.514639647208895, + 12.9411779674538 + ], + [ + 77.514647618469198, + 12.9412237804712 + ], + [ + 77.514677452461498, + 12.9412709257325 + ], + [ + 77.514694926873105, + 12.941293475336099 + ], + [ + 77.514718281452105, + 12.9413236117105 + ], + [ + 77.514718904274105, + 12.9413857204345 + ], + [ + 77.514719594123207, + 12.9414546046642 + ], + [ + 77.514717876760798, + 12.941466693625699 + ], + [ + 77.5147072260079, + 12.941541684609399 + ], + [ + 77.514698391093305, + 12.941636635980201 + ], + [ + 77.514656088864598, + 12.941724004712301 + ], + [ + 77.514637118607894, + 12.94184164104 + ], + [ + 77.514655964253194, + 12.942056037397499 + ], + [ + 77.514692876126702, + 12.9421200547336 + ], + [ + 77.5147891127409, + 12.942129290477199 + ], + [ + 77.514852208492002, + 12.942106095445 + ], + [ + 77.514897909930397, + 12.942070643478001 + ], + [ + 77.514951230807696, + 12.9420486711936 + ], + [ + 77.515010761278106, + 12.9420718133241 + ], + [ + 77.515107709436705, + 12.9420945943862 + ], + [ + 77.515276737257295, + 12.942071506423201 + ], + [ + 77.515378064110607, + 12.942071657058399 + ], + [ + 77.515415574529797, + 12.94208935757 + ], + [ + 77.515420288221605, + 12.942091583445601 + ], + [ + 77.515442100976202, + 12.942101885005901 + ], + [ + 77.515467145663905, + 12.942113712984399 + ], + [ + 77.515494655652404, + 12.942126492029701 + ], + [ + 77.515548122737002, + 12.9421513296592 + ], + [ + 77.515624888972795, + 12.942170917216799 + ], + [ + 77.515601248535006, + 12.942201278457199 + ], + [ + 77.515594764352599, + 12.9422096061317 + ], + [ + 77.5156149172808, + 12.942266372833499 + ], + [ + 77.515629126727305, + 12.942306399276401 + ], + [ + 77.515716132358406, + 12.9423710622888 + ], + [ + 77.515773036078897, + 12.9424766726962 + ], + [ + 77.515783170912002, + 12.9424933345438 + ], + [ + 77.515830402209403, + 12.9425709850406 + ], + [ + 77.515839895982197, + 12.9425991273477 + ], + [ + 77.515857732220695, + 12.942655423072599 + ], + [ + 77.515857364538604, + 12.942671290936399 + ], + [ + 77.5158570067168, + 12.942686672629501 + ], + [ + 77.515856998314504, + 12.9426870286841 + ], + [ + 77.515856944576697, + 12.9426893845914 + ], + [ + 77.5158553206699, + 12.942759347266801 + ], + [ + 77.5158552501305, + 12.942762966409999 + ], + [ + 77.515853416800297, + 12.942856490413501 + ], + [ + 77.515881913936695, + 12.9430572410166 + ], + [ + 77.515899515523699, + 12.943156701240101 + ], + [ + 77.515902664743905, + 12.9431744939121 + ], + [ + 77.515884395410794, + 12.9433045464064 + ], + [ + 77.515888678765904, + 12.943444545415201 + ], + [ + 77.515929824775895, + 12.9435288500444 + ], + [ + 77.515973556750197, + 12.9436413636385 + ], + [ + 77.515994690716397, + 12.9437394137283 + ], + [ + 77.516042137376004, + 12.943877866660401 + ], + [ + 77.516107738838301, + 12.9439473736547 + ], + [ + 77.516139315252204, + 12.9439808293605 + ], + [ + 77.516253255368994, + 12.9440904063134 + ], + [ + 77.516274921613899, + 12.9440878326999 + ], + [ + 77.516305008159904, + 12.944084259842599 + ], + [ + 77.516353298695705, + 12.9440962273504 + ], + [ + 77.516392735254001, + 12.944105999941399 + ], + [ + 77.516427562253696, + 12.9440941005284 + ], + [ + 77.516440356406605, + 12.9440897291223 + ], + [ + 77.516601124389197, + 12.9441039877241 + ], + [ + 77.516708528249595, + 12.944086191806599 + ], + [ + 77.516714860725401, + 12.9440851422415 + ], + [ + 77.516786065698099, + 12.9440733435483 + ], + [ + 77.516793120077907, + 12.944072174977601 + ], + [ + 77.516796542891001, + 12.944071607962901 + ], + [ + 77.516804347658706, + 12.944076277696899 + ], + [ + 77.5168720708905, + 12.9441168018294 + ], + [ + 77.516904273226999, + 12.9441360702673 + ], + [ + 77.516943794754198, + 12.9442305545533 + ], + [ + 77.516977355644201, + 12.944304767973501 + ], + [ + 77.516991446116506, + 12.9443893336454 + ], + [ + 77.517012603259005, + 12.944489642057199 + ], + [ + 77.516981043153095, + 12.944610779012701 + ], + [ + 77.516980909224898, + 12.944611293485901 + ], + [ + 77.516980450651104, + 12.9446130524836 + ], + [ + 77.516979939617997, + 12.944613898564199 + ], + [ + 77.516979789216506, + 12.9446141484754 + ], + [ + 77.516947362426905, + 12.9446678612632 + ], + [ + 77.516905699045196, + 12.944736874338 + ], + [ + 77.516840930646296, + 12.944833890024601 + ], + [ + 77.516795664434099, + 12.944901693787299 + ], + [ + 77.516771285060102, + 12.944939198014399 + ], + [ + 77.516644879857196, + 12.945021732470799 + ], + [ + 77.5165088923345, + 12.9451246878423 + ], + [ + 77.516423651307093, + 12.945178590771899 + ], + [ + 77.516346333506903, + 12.9452188648843 + ], + [ + 77.516295887597494, + 12.945263188226001 + ], + [ + 77.516191678458995, + 12.945354751750401 + ], + [ + 77.516058298296997, + 12.945488174422399 + ], + [ + 77.515937640196597, + 12.9456271210064 + ], + [ + 77.515878745756794, + 12.9457248143739 + ], + [ + 77.515793994005307, + 12.9458848720462 + ], + [ + 77.515712050186494, + 12.9459805292121 + ], + [ + 77.515604518664006, + 12.9461080554043 + ], + [ + 77.5155149432413, + 12.9461791418136 + ], + [ + 77.515474862429699, + 12.946210949281699 + ], + [ + 77.515413718975694, + 12.946295222237399 + ], + [ + 77.515410690645993, + 12.9462993957628 + ], + [ + 77.515386991016797, + 12.9463320606064 + ], + [ + 77.5153692389936, + 12.9463565267195 + ], + [ + 77.515311506854502, + 12.946455338160201 + ], + [ + 77.515227171578701, + 12.946599580713899 + ], + [ + 77.515208469614294, + 12.9466151223177 + ], + [ + 77.515159798093606, + 12.946655569600299 + ], + [ + 77.515127200354797, + 12.946677342057599 + ], + [ + 77.515059534418796, + 12.946761567701399 + ], + [ + 77.515008935441401, + 12.946825300154201 + ], + [ + 77.515007423468205, + 12.9468254484641 + ], + [ + 77.514945092076402, + 12.9468315631681 + ], + [ + 77.514888057820698, + 12.946885193493699 + ], + [ + 77.514864050196806, + 12.946913613991899 + ], + [ + 77.514807264682801, + 12.946980839379099 + ], + [ + 77.514745222277995, + 12.947007867873801 + ], + [ + 77.514701219271302, + 12.9470270371969 + ], + [ + 77.514614962722703, + 12.947056398158599 + ], + [ + 77.514561220715294, + 12.9470746920096 + ], + [ + 77.514521048547394, + 12.947087502639 + ], + [ + 77.514490134682802, + 12.947108735665999 + ], + [ + 77.514420986262905, + 12.947156229790499 + ], + [ + 77.514322098083099, + 12.9472057329329 + ], + [ + 77.514273764393096, + 12.9472299294266 + ], + [ + 77.514137242272895, + 12.9472798092151 + ], + [ + 77.514023905418995, + 12.9473452762569 + ], + [ + 77.513927804601593, + 12.947407188881501 + ], + [ + 77.513876901305395, + 12.947425742531999 + ], + [ + 77.513829140566997, + 12.9474431509508 + ], + [ + 77.513645617142103, + 12.947513812452801 + ], + [ + 77.513473167210194, + 12.9475979193305 + ], + [ + 77.513393636005105, + 12.9476472489979 + ], + [ + 77.513273964566594, + 12.9476551804519 + ], + [ + 77.5131898732146, + 12.9477090705892 + ], + [ + 77.513163749408207, + 12.947710941624001 + ], + [ + 77.513135218499698, + 12.9477129858533 + ], + [ + 77.513094900705696, + 12.947768713361601 + ], + [ + 77.513070398839105, + 12.9477753400623 + ], + [ + 77.5130314058555, + 12.9477858858214 + ], + [ + 77.512990976068295, + 12.9477968203809 + ], + [ + 77.512930140161799, + 12.947812939003301 + ], + [ + 77.512871542255098, + 12.947828465023701 + ], + [ + 77.5127203349914, + 12.947906719802001 + ], + [ + 77.512688563264504, + 12.9480109273235 + ], + [ + 77.5127428609226, + 12.948143668126701 + ], + [ + 77.512789956226101, + 12.9482471150174 + ], + [ + 77.512837298912402, + 12.948317808073 + ], + [ + 77.512831375853693, + 12.948416119499701 + ], + [ + 77.512786538600494, + 12.9484980257718 + ], + [ + 77.512743743018902, + 12.9485762044353 + ], + [ + 77.512679686714705, + 12.9486549143059 + ], + [ + 77.512653884925598, + 12.948686618986001 + ], + [ + 77.512438610930104, + 12.948863745906401 + ], + [ + 77.511984402254399, + 12.949174115595801 + ], + [ + 77.511950587493601, + 12.9491972221978 + ], + [ + 77.511873659792101, + 12.949249788024799 + ], + [ + 77.511837920408595, + 12.9492710284957 + ], + [ + 77.5118273017966, + 12.949277339649599 + ], + [ + 77.511793540723204, + 12.949297993650699 + ], + [ + 77.511783822172106, + 12.9493048644193 + ], + [ + 77.511764362405103, + 12.9493163447427 + ], + [ + 77.511701422992303, + 12.9493553498242 + ], + [ + 77.511541321975997, + 12.9495229093746 + ], + [ + 77.511525663916103, + 12.9495463459406 + ], + [ + 77.511466913269302, + 12.949634282390701 + ], + [ + 77.5114494319145, + 12.9496604479013 + ], + [ + 77.511419949452502, + 12.9497059065567 + ], + [ + 77.511393898402304, + 12.9497490734088 + ], + [ + 77.511308192056802, + 12.9498142732036 + ], + [ + 77.5112262684206, + 12.949822337832 + ], + [ + 77.511193734369698, + 12.9498255408076 + ], + [ + 77.511147232485499, + 12.9498951963057 + ], + [ + 77.511137579792205, + 12.9499096548245 + ], + [ + 77.511093495496496, + 12.949983033781701 + ], + [ + 77.511057733328101, + 12.9500425597328 + ], + [ + 77.511050313116399, + 12.950183931490001 + ], + [ + 77.5110417798615, + 12.950346511631 + ], + [ + 77.511071447790897, + 12.950491913216499 + ], + [ + 77.5110729781983, + 12.950575600376 + ], + [ + 77.511075268282099, + 12.950700808170099 + ], + [ + 77.511080023710093, + 12.950830638839999 + ], + [ + 77.511107772355501, + 12.9509568597692 + ], + [ + 77.511129188571502, + 12.951083141736 + ], + [ + 77.511196659161996, + 12.951208979707999 + ], + [ + 77.511243437810904, + 12.9512808078206 + ], + [ + 77.511273667394704, + 12.9513098797604 + ], + [ + 77.511304179928203, + 12.951367182986299 + ], + [ + 77.511341206041195, + 12.951442493178099 + ], + [ + 77.511370284297698, + 12.951471576201399 + ], + [ + 77.511371178432199, + 12.9515607870749 + ], + [ + 77.511422516430599, + 12.9516004792623 + ], + [ + 77.511424559772394, + 12.951602058735499 + ], + [ + 77.511462986338998, + 12.951702201326899 + ], + [ + 77.511464525982603, + 12.9517615149561 + ], + [ + 77.511464862101505, + 12.951774462319101 + ], + [ + 77.511460621628501, + 12.951808529485399 + ], + [ + 77.511442483210999, + 12.951954246432599 + ], + [ + 77.511429104958495, + 12.9519939509326 + ], + [ + 77.511355821996801, + 12.9522114468817 + ], + [ + 77.511341964954397, + 12.9522415257135 + ], + [ + 77.511254959450099, + 12.9524303859898 + ], + [ + 77.511213864318606, + 12.9525809871913 + ], + [ + 77.511188369180104, + 12.9527370847883 + ], + [ + 77.511176520645293, + 12.952876110399499 + ], + [ + 77.511184572020696, + 12.9529900982046 + ], + [ + 77.511180267131493, + 12.9532498926781 + ], + [ + 77.5111880921731, + 12.9533412954464 + ], + [ + 77.511193540731298, + 12.9533997212079 + ], + [ + 77.511202928904396, + 12.953500392246101 + ], + [ + 77.5112176298409, + 12.9536459380215 + ], + [ + 77.511285690039301, + 12.9538304968885 + ], + [ + 77.511431825178093, + 12.953877650200599 + ], + [ + 77.511535462463499, + 12.9539353784117 + ], + [ + 77.511686330240494, + 12.954110102726901 + ], + [ + 77.5117821015549, + 12.9541601945007 + ], + [ + 77.511845205150195, + 12.954193199514901 + ], + [ + 77.5118877454412, + 12.9542154493087 + ], + [ + 77.511986176456006, + 12.9543223311825 + ], + [ + 77.512058875895406, + 12.9544012723915 + ], + [ + 77.512080998776895, + 12.954462386765 + ], + [ + 77.512109800427098, + 12.954541951149301 + ], + [ + 77.512185207769207, + 12.954655289070001 + ], + [ + 77.512142553369301, + 12.954742950370299 + ], + [ + 77.512137227213401, + 12.9547538969105 + ], + [ + 77.512133309089904, + 12.9547619495485 + ], + [ + 77.512140558202006, + 12.9548175516385 + ], + [ + 77.512142204842704, + 12.9548301836807 + ], + [ + 77.512151396946805, + 12.9549006863211 + ], + [ + 77.512149313121796, + 12.955037358963599 + ], + [ + 77.512076257423402, + 12.955043711419201 + ], + [ + 77.512050780657901, + 12.9550526785524 + ], + [ + 77.511997084293796, + 12.955071578898 + ], + [ + 77.511941346329607, + 12.9551398781601 + ], + [ + 77.511920654384298, + 12.9551847814407 + ], + [ + 77.511897958236204, + 12.9552340335681 + ], + [ + 77.511866952174103, + 12.9552998364393 + ], + [ + 77.511844263000597, + 12.9553403237606 + ], + [ + 77.511837465562493, + 12.9553524527007 + ], + [ + 77.511749868172203, + 12.9555087671663 + ], + [ + 77.511730216811401, + 12.9555413295992 + ], + [ + 77.511723816771706, + 12.9555519341344 + ], + [ + 77.511720916563604, + 12.9556073007551 + ], + [ + 77.511735947459698, + 12.9557855946689 + ], + [ + 77.511754581581201, + 12.955866000641 + ], + [ + 77.511763628583296, + 12.955905039827501 + ], + [ + 77.511790190275406, + 12.9559574036579 + ], + [ + 77.511828329955193, + 12.9560325908413 + ], + [ + 77.511841160659898, + 12.956057884899099 + ], + [ + 77.511902334771193, + 12.956187171173299 + ], + [ + 77.5119266132902, + 12.9563135183333 + ], + [ + 77.5119302774484, + 12.9563325890445 + ], + [ + 77.511939911012007, + 12.9563411948913 + ], + [ + 77.512020324936699, + 12.956413034251 + ], + [ + 77.512033936002297, + 12.9564781058513 + ], + [ + 77.512048143146899, + 12.9565460303343 + ], + [ + 77.512046478572699, + 12.9566116562095 + ], + [ + 77.512046080147599, + 12.956627364143101 + ], + [ + 77.511934874578998, + 12.9567910648128 + ], + [ + 77.511927230672697, + 12.956799257298201 + ], + [ + 77.5119189260122, + 12.9568081590715 + ], + [ + 77.511893022276396, + 12.9568667905532 + ], + [ + 77.511873325574101, + 12.956911370739901 + ], + [ + 77.511866020026403, + 12.9569275546767 + ], + [ + 77.511862060888802, + 12.956936325330201 + ], + [ + 77.511857125686504, + 12.956939137613899 + ], + [ + 77.511855451306602, + 12.956940091587301 + ], + [ + 77.511815690303706, + 12.9569627479485 + ], + [ + 77.511802435552298, + 12.9570291936407 + ], + [ + 77.511788829063704, + 12.9570974009139 + ], + [ + 77.511822917068599, + 12.9571697838728 + ], + [ + 77.511836479437505, + 12.9571985836217 + ], + [ + 77.511860775617706, + 12.957324838442499 + ], + [ + 77.511880264237604, + 12.9573782706274 + ], + [ + 77.511891561087893, + 12.957409243431201 + ], + [ + 77.511892582762101, + 12.9574203636419 + ], + [ + 77.511892599330196, + 12.957420545986601 + ], + [ + 77.511902548411896, + 12.9575288486711 + ], + [ + 77.511910235177993, + 12.9576066714289 + ], + [ + 77.511910242800596, + 12.957606696653 + ], + [ + 77.511917271444503, + 12.957622667558701 + ], + [ + 77.511941211012399, + 12.957677076827499 + ], + [ + 77.511942834189199, + 12.957680766015001 + ], + [ + 77.511947356401805, + 12.9576910441858 + ], + [ + 77.511947284937193, + 12.9576924606407 + ], + [ + 77.511947212669398, + 12.9576938888488 + ], + [ + 77.511946893736507, + 12.9577002064024 + ], + [ + 77.511946568843001, + 12.9577066338408 + ], + [ + 77.511946494025594, + 12.9577081139704 + ], + [ + 77.511945995939101, + 12.9577179695039 + ], + [ + 77.5119458284275, + 12.957721290534399 + ], + [ + 77.511945822236598, + 12.957721408047499 + ], + [ + 77.511945246522004, + 12.957732800259301 + ], + [ + 77.511943896167594, + 12.957759539361399 + ], + [ + 77.511942714886302, + 12.9577829294099 + ], + [ + 77.511941592038596, + 12.9578051651406 + ], + [ + 77.511952169500503, + 12.957879674920701 + ], + [ + 77.511955841062701, + 12.957905540685999 + ], + [ + 77.511971579893597, + 12.957936596207199 + ], + [ + 77.511993433064006, + 12.957979715732799 + ], + [ + 77.5119940474044, + 12.958040963567599 + ], + [ + 77.511994316558201, + 12.958067797268701 + ], + [ + 77.511991435909806, + 12.9581062729854 + ], + [ + 77.511982638694107, + 12.9582237615863 + ], + [ + 77.511967076234299, + 12.9583368477149 + ], + [ + 77.512007558132197, + 12.958412124222299 + ], + [ + 77.512001295440797, + 12.958476558152601 + ], + [ + 77.511995642427095, + 12.958544374279599 + ], + [ + 77.511990208254005, + 12.958569353940099 + ], + [ + 77.511986286036901, + 12.958587380226099 + ], + [ + 77.5119498606077, + 12.958629517994099 + ], + [ + 77.511880767739996, + 12.958686652627099 + ], + [ + 77.511857158422401, + 12.958701876723399 + ], + [ + 77.511814981770399, + 12.9587290736635 + ], + [ + 77.511804625570306, + 12.958732941333301 + ], + [ + 77.511762210263996, + 12.9587487819259 + ], + [ + 77.511761502391906, + 12.9587483758615 + ], + [ + 77.511706039260204, + 12.9587165724204 + ], + [ + 77.511679003408403, + 12.9586921029824 + ], + [ + 77.511656652038795, + 12.958671874493801 + ], + [ + 77.511623037062407, + 12.958707208953401 + ], + [ + 77.511590428149503, + 12.958785449384701 + ], + [ + 77.511561477262205, + 12.958883983005499 + ], + [ + 77.511562609835394, + 12.958996908081 + ], + [ + 77.511607678561404, + 12.959185076396 + ], + [ + 77.511657970058806, + 12.9592625170279 + ], + [ + 77.511747682612096, + 12.9593542725289 + ], + [ + 77.511758607809796, + 12.9593654471643 + ], + [ + 77.511780035470096, + 12.959369989152499 + ], + [ + 77.511781350075793, + 12.959370269198599 + ], + [ + 77.511798325287799, + 12.959373866632401 + ], + [ + 77.511798667783097, + 12.9593739392208 + ], + [ + 77.511814172394693, + 12.959377225587099 + ], + [ + 77.511814337646101, + 12.9593772610356 + ], + [ + 77.511829965968502, + 12.959380574215301 + ], + [ + 77.511830001052402, + 12.959380582008199 + ], + [ + 77.511834874454806, + 12.959381614654101 + ], + [ + 77.511838771813302, + 12.959380210975899 + ], + [ + 77.511918527165506, + 12.959351481189101 + ], + [ + 77.512006958035997, + 12.9593280407094 + ], + [ + 77.512023945005197, + 12.959310771063 + ], + [ + 77.512076490775101, + 12.959257349459699 + ], + [ + 77.512090962009594, + 12.959245047067199 + ], + [ + 77.512135009638797, + 12.9592076034216 + ], + [ + 77.512163836100797, + 12.959183098231 + ], + [ + 77.512174958115807, + 12.9591789053339 + ], + [ + 77.5123605751144, + 12.9591089206537 + ], + [ + 77.512447591730094, + 12.959001921104299 + ], + [ + 77.512499898676694, + 12.9589359134558 + ], + [ + 77.512542386909701, + 12.9589242098069 + ], + [ + 77.512657413924998, + 12.958841767711201 + ], + [ + 77.512742224388404, + 12.958780981986401 + ], + [ + 77.512759610490903, + 12.9587685204273 + ], + [ + 77.512794102037901, + 12.9587360893899 + ], + [ + 77.512810841609905, + 12.9587203498284 + ], + [ + 77.512818615069506, + 12.9587130405764 + ], + [ + 77.512930721489198, + 12.958607629217999 + ], + [ + 77.512967287538402, + 12.9585355511303 + ], + [ + 77.512988873608904, + 12.958493002651901 + ], + [ + 77.513070335462302, + 12.9583487877476 + ], + [ + 77.513074979701102, + 12.958337985863199 + ], + [ + 77.513099590745696, + 12.958280743820101 + ], + [ + 77.5131737624382, + 12.9582133956735 + ], + [ + 77.513257043204703, + 12.958135795350801 + ], + [ + 77.513399772341103, + 12.9581874973557 + ], + [ + 77.5135192924064, + 12.958221353606101 + ], + [ + 77.513589332274904, + 12.958226319678699 + ], + [ + 77.513645471467996, + 12.9582302996183 + ], + [ + 77.513700644655799, + 12.9582177930118 + ], + [ + 77.513733935693097, + 12.958210246398499 + ], + [ + 77.513844792885607, + 12.958126732869699 + ], + [ + 77.513854831972196, + 12.958090651870901 + ], + [ + 77.513868317334598, + 12.9580421887411 + ], + [ + 77.513874568385802, + 12.958019725488001 + ], + [ + 77.513875357443197, + 12.958016889997101 + ], + [ + 77.513907649632202, + 12.957964627714301 + ], + [ + 77.513947386878201, + 12.957932066446601 + ], + [ + 77.513980173255405, + 12.957905200810499 + ], + [ + 77.514040272086604, + 12.9579272076551 + ], + [ + 77.514081274812796, + 12.957974942253699 + ], + [ + 77.514103770863699, + 12.958001132124799 + ], + [ + 77.514152714788807, + 12.9579721057078 + ], + [ + 77.514169590176706, + 12.957962098359101 + ], + [ + 77.514208882226896, + 12.9579188033191 + ], + [ + 77.514226861334507, + 12.957878252889699 + ], + [ + 77.514232253958099, + 12.9578660899178 + ], + [ + 77.514260678309199, + 12.957801979255301 + ], + [ + 77.514316195500797, + 12.957746125362901 + ], + [ + 77.514359286858294, + 12.957702772839401 + ], + [ + 77.514476539068596, + 12.9577084021677 + ], + [ + 77.514476796202999, + 12.9577084141402 + ], + [ + 77.514488531824398, + 12.9577332744384 + ], + [ + 77.514525621804694, + 12.9578118444105 + ], + [ + 77.514596897682907, + 12.957926254736901 + ], + [ + 77.514610514129402, + 12.957948111366999 + ], + [ + 77.514640317147197, + 12.957995950415301 + ], + [ + 77.514645519539798, + 12.9580044290768 + ], + [ + 77.514657150028597, + 12.958023384224701 + ], + [ + 77.514661336504503, + 12.9580302072621 + ], + [ + 77.5147415789598, + 12.9581609879183 + ], + [ + 77.514759288733899, + 12.9582224246685 + ], + [ + 77.514789301386998, + 12.9583265434221 + ], + [ + 77.514769026239406, + 12.9584847427111 + ], + [ + 77.514762788298199, + 12.9585334144868 + ], + [ + 77.514758868152995, + 12.958564001567799 + ], + [ + 77.514763235439503, + 12.9585779419948 + ], + [ + 77.514789203813393, + 12.9586608332878 + ], + [ + 77.514840491330006, + 12.9587800497579 + ], + [ + 77.514863628750405, + 12.9588689885706 + ], + [ + 77.514865410030694, + 12.9588758360496 + ], + [ + 77.514873045857001, + 12.9589051879209 + ], + [ + 77.514881813312797, + 12.9589388899865 + ], + [ + 77.5149263025056, + 12.9590000463277 + ], + [ + 77.514945448705902, + 12.959026365126601 + ], + [ + 77.514958606661196, + 12.9590659407981 + ], + [ + 77.514979882442603, + 12.959129933353699 + ], + [ + 77.514980801091994, + 12.959221402422299 + ], + [ + 77.5149845301803, + 12.9593060681953 + ], + [ + 77.5150619030412, + 12.959385505065701 + ], + [ + 77.515172183814201, + 12.959444643375701 + ], + [ + 77.515188096724799, + 12.9594531766461 + ], + [ + 77.515223799765195, + 12.9594736236087 + ], + [ + 77.515271484752105, + 12.9595009333191 + ], + [ + 77.515331844945294, + 12.959548912462401 + ], + [ + 77.515356770048598, + 12.959565611982599 + ], + [ + 77.515402519946804, + 12.9596039592709 + ], + [ + 77.515402593341094, + 12.9596040209022 + ], + [ + 77.515404488568393, + 12.9596056107937 + ], + [ + 77.515404678091102, + 12.9596057697829 + ], + [ + 77.515410255013506, + 12.9596104420282 + ], + [ + 77.515410587603895, + 12.959610720702001 + ], + [ + 77.515411457190595, + 12.9596114513506 + ], + [ + 77.515411597449599, + 12.959611566545 + ], + [ + 77.515413707314806, + 12.959613339577 + ], + [ + 77.515413797407106, + 12.959613412792301 + ], + [ + 77.515416069792394, + 12.959615316162701 + ], + [ + 77.515416185008803, + 12.9596154144328 + ], + [ + 77.515416629988906, + 12.9596157850797 + ], + [ + 77.515416821372, + 12.9596159458578 + ], + [ + 77.515417811711004, + 12.9596167756266 + ], + [ + 77.515420735369801, + 12.959619227444 + ], + [ + 77.515420840345101, + 12.959619314971301 + ], + [ + 77.515422764363095, + 12.959620928074999 + ], + [ + 77.515422944592999, + 12.9596210790226 + ], + [ + 77.515424520234603, + 12.959622400956199 + ], + [ + 77.515461280257, + 12.9596526919819 + ], + [ + 77.515521663208901, + 12.959702929561701 + ], + [ + 77.515520081235593, + 12.959730688177499 + ], + [ + 77.515519215807103, + 12.959745868772099 + ], + [ + 77.515647709910994, + 12.9599851800713 + ], + [ + 77.515772352999804, + 12.9601850009964 + ], + [ + 77.515776753457303, + 12.960240549015699 + ], + [ + 77.515777627989806, + 12.9602515820576 + ], + [ + 77.515783603490206, + 12.9603305792706 + ], + [ + 77.515772713556402, + 12.9603927991311 + ], + [ + 77.515853805157903, + 12.9605557721025 + ], + [ + 77.515923133266995, + 12.960694012884799 + ], + [ + 77.515974107172198, + 12.9608392071788 + ], + [ + 77.515971435944294, + 12.960917158591601 + ], + [ + 77.515986873061195, + 12.961197079830599 + ], + [ + 77.515991853255301, + 12.961287390141599 + ], + [ + 77.516005571665801, + 12.9613928785603 + ], + [ + 77.516025162484993, + 12.961543526928599 + ], + [ + 77.516031163670405, + 12.961589677662801 + ], + [ + 77.516056923620496, + 12.961804006353599 + ], + [ + 77.516190015895504, + 12.9618704811352 + ], + [ + 77.516411887968303, + 12.9618909232784 + ], + [ + 77.516547719456298, + 12.9618862219468 + ], + [ + 77.516875517290501, + 12.9618480423722 + ], + [ + 77.516958418256195, + 12.961847240721101 + ], + [ + 77.516972639336601, + 12.9618440674931 + ], + [ + 77.517386971505104, + 12.961751618421401 + ], + [ + 77.517450502969695, + 12.9617713323484 + ], + [ + 77.517585409312602, + 12.9618220483078 + ], + [ + 77.517667231060301, + 12.9618528083402 + ], + [ + 77.517676010878702, + 12.961862769252701 + ], + [ + 77.517760997743906, + 12.961959190050599 + ], + [ + 77.517798955558405, + 12.962069499651999 + ], + [ + 77.517795797324496, + 12.9621648233637 + ], + [ + 77.517794538637901, + 12.9622028062587 + ], + [ + 77.517794432612305, + 12.962207469261401 + ], + [ + 77.517793739295101, + 12.9622378239934 + ], + [ + 77.517728907747895, + 12.9623751030907 + ], + [ + 77.517722035946605, + 12.962406566535901 + ], + [ + 77.517687626637795, + 12.962564104699499 + ], + [ + 77.517672409932104, + 12.9626444288724 + ], + [ + 77.517660971714193, + 12.9627048048419 + ], + [ + 77.517649901918503, + 12.9627632361028 + ], + [ + 77.517605378810401, + 12.962916129717 + ], + [ + 77.517562037663794, + 12.9630148028567 + ], + [ + 77.517530765421995, + 12.9630223395566 + ], + [ + 77.517483923676906, + 12.963033628144601 + ], + [ + 77.5174669812628, + 12.9631148481023 + ], + [ + 77.517455361171301, + 12.9631705563962 + ], + [ + 77.517454166682199, + 12.963197704094901 + ], + [ + 77.517451240176399, + 12.9632642288315 + ], + [ + 77.517450335916806, + 12.963284785516899 + ], + [ + 77.517448800329007, + 12.963319694732901 + ], + [ + 77.517448012666307, + 12.963340578255201 + ], + [ + 77.517444709191096, + 12.963428152396199 + ], + [ + 77.517456183508202, + 12.963577154220699 + ], + [ + 77.517462314381604, + 12.963656773174 + ], + [ + 77.5174639144103, + 12.9636775540922 + ], + [ + 77.517467783784895, + 12.9637207239799 + ], + [ + 77.517468150063394, + 12.963724809605599 + ], + [ + 77.517468819281603, + 12.963732270427601 + ], + [ + 77.517470143350707, + 12.9637470458461 + ], + [ + 77.517474311467296, + 12.963793539471499 + ], + [ + 77.517474939280206, + 12.963800547145 + ], + [ + 77.517561639314806, + 12.9638911861919 + ], + [ + 77.517616925487403, + 12.963901552791301 + ], + [ + 77.517641821391905, + 12.9639062214763 + ], + [ + 77.517775086454805, + 12.9639896338191 + ], + [ + 77.517790933620304, + 12.9640016675942 + ], + [ + 77.517822081166997, + 12.964025318504 + ], + [ + 77.517843427752794, + 12.964041997183999 + ], + [ + 77.517844767601304, + 12.964043044007299 + ], + [ + 77.517853153027005, + 12.964049595352 + ], + [ + 77.517854800213797, + 12.964050882238899 + ], + [ + 77.517912031171804, + 12.964095597569299 + ], + [ + 77.517934770825093, + 12.964122367323199 + ], + [ + 77.518015745003297, + 12.964217693729699 + ], + [ + 77.518053070959397, + 12.964322363443999 + ], + [ + 77.518127582964297, + 12.9644605521489 + ], + [ + 77.518218089895001, + 12.9645861640411 + ], + [ + 77.518228777724602, + 12.9646088555051 + ], + [ + 77.518265744649696, + 12.9646873447799 + ], + [ + 77.518280017476997, + 12.9647232728164 + ], + [ + 77.518333677914896, + 12.964858349225301 + ], + [ + 77.518361660215007, + 12.9650071531882 + ], + [ + 77.518367501948404, + 12.9650264068043 + ], + [ + 77.518404786802293, + 12.9651492991702 + ], + [ + 77.518426571189806, + 12.9652211022883 + ], + [ + 77.518458407579402, + 12.9653011969588 + ], + [ + 77.518460654208297, + 12.965306849994001 + ], + [ + 77.518467563251093, + 12.965324232099499 + ], + [ + 77.518471809803899, + 12.965334915346901 + ], + [ + 77.518472593340107, + 12.9653368872955 + ], + [ + 77.518474419357204, + 12.9653414800979 + ], + [ + 77.5184742940109, + 12.9653419411536 + ], + [ + 77.518443436558002, + 12.9654554426816 + ], + [ + 77.518443327303601, + 12.9654558457891 + ], + [ + 77.518356781594406, + 12.965495081439499 + ], + [ + 77.518233697244, + 12.965565163241701 + ], + [ + 77.5181124863783, + 12.9656278074604 + ], + [ + 77.5178453236922, + 12.965765883645 + ], + [ + 77.517777185776296, + 12.965801099403301 + ], + [ + 77.517742969614702, + 12.9658141923569 + ], + [ + 77.517708250516307, + 12.965827477755701 + ], + [ + 77.517662824707102, + 12.965844860314199 + ], + [ + 77.517646988086199, + 12.9658509214236 + ], + [ + 77.517547085219604, + 12.9659347573697 + ], + [ + 77.517523092664206, + 12.965954891445501 + ], + [ + 77.517511972939303, + 12.965986985070799 + ], + [ + 77.517502624005701, + 12.966013969527999 + ], + [ + 77.517452033370802, + 12.966159991281 + ], + [ + 77.517424425552207, + 12.966220114196901 + ], + [ + 77.517421366160903, + 12.9662268919179 + ], + [ + 77.517415964311596, + 12.966238859078 + ], + [ + 77.517407529059597, + 12.966257546382 + ], + [ + 77.5173906212041, + 12.9662938493219 + ], + [ + 77.517401889487203, + 12.966475627881801 + ], + [ + 77.517402305212897, + 12.966482338552201 + ], + [ + 77.517505378179493, + 12.966602351212201 + ], + [ + 77.517526397151599, + 12.9666268246956 + ], + [ + 77.517535665339594, + 12.966632381793699 + ], + [ + 77.517569147108304, + 12.966650668695699 + ], + [ + 77.517589100927395, + 12.9666615667924 + ], + [ + 77.517611152423498, + 12.966617807424599 + ], + [ + 77.517842495496595, + 12.966636959238 + ], + [ + 77.518081658794202, + 12.966628589574199 + ], + [ + 77.518222175073603, + 12.9666340417516 + ], + [ + 77.518228170910902, + 12.9666930219341 + ], + [ + 77.518487337214196, + 12.9666784030915 + ], + [ + 77.518960147463105, + 12.9666503622592 + ], + [ + 77.519344159745998, + 12.9666178821003 + ], + [ + 77.519614281745007, + 12.9666182940651 + ], + [ + 77.519748494835198, + 12.966610939159599 + ], + [ + 77.519962910294495, + 12.9665975091434 + ], + [ + 77.520003488779906, + 12.966603549780899 + ], + [ + 77.520071285189402, + 12.966706869332301 + ], + [ + 77.520242076142296, + 12.966691309906899 + ], + [ + 77.5202105245571, + 12.9665470477869 + ], + [ + 77.520112329755406, + 12.966222532228301 + ], + [ + 77.519847892967107, + 12.9650116532063 + ], + [ + 77.519734782940802, + 12.9645973410558 + ], + [ + 77.519950564818799, + 12.9645664894324 + ], + [ + 77.520049944349495, + 12.964548875282899 + ], + [ + 77.519831842081999, + 12.9639659040186 + ], + [ + 77.520517345081799, + 12.963754145965201 + ], + [ + 77.520495253340997, + 12.963591248169299 + ], + [ + 77.520481713880301, + 12.9634729245861 + ], + [ + 77.520577268809006, + 12.9634587534019 + ], + [ + 77.520747944350205, + 12.9634321226553 + ], + [ + 77.520774097620205, + 12.9634235434493 + ], + [ + 77.520851059786196, + 12.9634023617176 + ], + [ + 77.520832514804894, + 12.9631701733712 + ], + [ + 77.520770691306694, + 12.9627786985063 + ], + [ + 77.520697076055399, + 12.962212494102401 + ], + [ + 77.520680349748901, + 12.9620609065268 + ], + [ + 77.520678180283696, + 12.961830443065001 + ], + [ + 77.520644445184402, + 12.9617935005795 + ], + [ + 77.520643452014994, + 12.961785895649999 + ], + [ + 77.520639035596801, + 12.961752118372001 + ], + [ + 77.520636335796297, + 12.961731465617699 + ], + [ + 77.520630880144793, + 12.961712225493001 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "156", + "group": "pattabiram nagara", + "Corporatio": "South", + "ac_no": "173", + "ac": "Jayanagar", + "corporat_1": "4", + "ward_id": "9", + "ward_name": "9 - Pattabiram Nagara", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಜಯನಗರ", + "ward_name_": "ಪಟ್ಟಾಭಿರಾಮ್ ನಗರ", + "dig_ward_n": "pattabiram nagara", + "Assembly": "173 - Jayanagar", + "Slno": "9" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.573616484221304, + 12.917673950312 + ], + [ + 77.573516799597002, + 12.917672645399101 + ], + [ + 77.573516092894494, + 12.917700814322901 + ], + [ + 77.573512955584704, + 12.9178258503417 + ], + [ + 77.573536695726105, + 12.917895633798601 + ], + [ + 77.5735613585679, + 12.9179651307964 + ], + [ + 77.573649317026707, + 12.918212990155901 + ], + [ + 77.573849173234294, + 12.918685836721201 + ], + [ + 77.573913607362996, + 12.918838283088 + ], + [ + 77.574096814837503, + 12.919302883186701 + ], + [ + 77.574148259817605, + 12.9194701205074 + ], + [ + 77.574232582658695, + 12.919744235236401 + ], + [ + 77.574247762041793, + 12.919877344496699 + ], + [ + 77.574256666653298, + 12.9199521373714 + ], + [ + 77.574270734059894, + 12.9200702937403 + ], + [ + 77.574285749822195, + 12.9201964173168 + ], + [ + 77.574292481765099, + 12.9202529647467 + ], + [ + 77.574402092707999, + 12.920837997205799 + ], + [ + 77.573726612986206, + 12.920988911077901 + ], + [ + 77.573651975729703, + 12.9210109822116 + ], + [ + 77.573726612986206, + 12.920988911077901 + ], + [ + 77.573561281096204, + 12.921025848804099 + ], + [ + 77.573567178999198, + 12.921545274859101 + ], + [ + 77.5735680087557, + 12.921620949652601 + ], + [ + 77.573572359477794, + 12.9220177364415 + ], + [ + 77.573570463741305, + 12.9215679718241 + ], + [ + 77.573572359477794, + 12.9220177364416 + ], + [ + 77.573575909591696, + 12.922341498355401 + ], + [ + 77.573574195121097, + 12.9221851437647 + ], + [ + 77.573575969927006, + 12.9223470007217 + ], + [ + 77.573579557081999, + 12.9226970525028 + ], + [ + 77.5735802521138, + 12.9227551691503 + ], + [ + 77.573583581065506, + 12.923033548207 + ], + [ + 77.573588962149103, + 12.9235586258441 + ], + [ + 77.574366810328499, + 12.9235420467758 + ], + [ + 77.574366810328797, + 12.9235420467758 + ], + [ + 77.575561268439202, + 12.9235165835724 + ], + [ + 77.5756597214218, + 12.923515882114399 + ], + [ + 77.575972824548103, + 12.9235136511702 + ], + [ + 77.576208745547802, + 12.9235045466679 + ], + [ + 77.576457317804099, + 12.9234941877534 + ], + [ + 77.577687607923394, + 12.9234515483123 + ], + [ + 77.577937999282497, + 12.9234502045155 + ], + [ + 77.577953215148696, + 12.9234501581176 + ], + [ + 77.578435915518597, + 12.923448673828799 + ], + [ + 77.579650804492005, + 12.9234366686839 + ], + [ + 77.579702202698599, + 12.9234361606586 + ], + [ + 77.579702247945903, + 12.9234311105046 + ], + [ + 77.579741701954802, + 12.9234268469882 + ], + [ + 77.580461863811294, + 12.9234614624407 + ], + [ + 77.580463778265099, + 12.9234114124668 + ], + [ + 77.580738348776904, + 12.923413827410499 + ], + [ + 77.580902243090904, + 12.923415269444799 + ], + [ + 77.581501206482102, + 12.923411187019401 + ], + [ + 77.581849593978504, + 12.9234088123794 + ], + [ + 77.5823818055391, + 12.923405183171299 + ], + [ + 77.583740514664001, + 12.923381838856301 + ], + [ + 77.583763513233706, + 12.923381444042599 + ], + [ + 77.584255408007394, + 12.923372990940701 + ], + [ + 77.584535349819802, + 12.923369470889901 + ], + [ + 77.585424139410307, + 12.9233582920019 + ], + [ + 77.585934926176293, + 12.923351866550099 + ], + [ + 77.585957496645605, + 12.923351582391399 + ], + [ + 77.585940513529707, + 12.9225064760879 + ], + [ + 77.586501671492101, + 12.9224984133518 + ], + [ + 77.587238610421394, + 12.922501149555501 + ], + [ + 77.588065336965599, + 12.922491599191201 + ], + [ + 77.588069962395195, + 12.9228646466077 + ], + [ + 77.588074402233701, + 12.923295458278799 + ], + [ + 77.588557072601802, + 12.9232944742004 + ], + [ + 77.589574073653793, + 12.9232762284734 + ], + [ + 77.589581563633601, + 12.923275446764899 + ], + [ + 77.590604886933306, + 12.923259554622 + ], + [ + 77.591515445841296, + 12.9232421265772 + ], + [ + 77.592355731484304, + 12.9232207569992 + ], + [ + 77.592902590528496, + 12.923208803796101 + ], + [ + 77.593455547593805, + 12.923188217515699 + ], + [ + 77.593453989920405, + 12.9228428046586 + ], + [ + 77.593451371968797, + 12.9222619761145 + ], + [ + 77.593448592731093, + 12.921645165216599 + ], + [ + 77.5934484643562, + 12.921616588942699 + ], + [ + 77.592529872933497, + 12.9216398799395 + ], + [ + 77.591629461231804, + 12.9216641201382 + ], + [ + 77.591488103145906, + 12.9216633354566 + ], + [ + 77.591492957909793, + 12.921320756406701 + ], + [ + 77.591493742098507, + 12.920688260738901 + ], + [ + 77.591505959129407, + 12.9201718221028 + ], + [ + 77.591479357633602, + 12.919726886637701 + ], + [ + 77.591721998068707, + 12.9197219808177 + ], + [ + 77.592241350416103, + 12.919704393987001 + ], + [ + 77.592864220600006, + 12.919686332734599 + ], + [ + 77.592842739671596, + 12.919595113591599 + ], + [ + 77.5928332123963, + 12.919554655571799 + ], + [ + 77.592765084055898, + 12.919363552975399 + ], + [ + 77.592739986723004, + 12.919293154233101 + ], + [ + 77.592654106178898, + 12.9190522550729 + ], + [ + 77.592629445020506, + 12.918978420716099 + ], + [ + 77.593118556900805, + 12.918977416294799 + ], + [ + 77.593317864556298, + 12.918979345796499 + ], + [ + 77.593343324866296, + 12.9189921114383 + ], + [ + 77.593791433876703, + 12.918989810959699 + ], + [ + 77.594064193296305, + 12.9189871009608 + ], + [ + 77.594309693757594, + 12.9189846615495 + ], + [ + 77.594644412358605, + 12.9189748819991 + ], + [ + 77.594706236746603, + 12.9189815799163 + ], + [ + 77.594874309615605, + 12.918977348738601 + ], + [ + 77.594926013478599, + 12.918978883411 + ], + [ + 77.594986033070995, + 12.9189767504136 + ], + [ + 77.595136693872604, + 12.918968375589699 + ], + [ + 77.595136693872604, + 12.918968375589699 + ], + [ + 77.595058508807398, + 12.916852041084301 + ], + [ + 77.595482545209805, + 12.9168519108143 + ], + [ + 77.595631275414604, + 12.916848496339901 + ], + [ + 77.595796768329294, + 12.916844697413399 + ], + [ + 77.596110206852302, + 12.9168375013748 + ], + [ + 77.596274875599605, + 12.916833721182201 + ], + [ + 77.596328123126796, + 12.916832498803601 + ], + [ + 77.596428583186594, + 12.916829368688299 + ], + [ + 77.596607032752004, + 12.9168238097136 + ], + [ + 77.596866673948398, + 12.916815720310399 + ], + [ + 77.596856803250205, + 12.916289660045599 + ], + [ + 77.596847751854696, + 12.9157674592186 + ], + [ + 77.596837304814599, + 12.9154639887062 + ], + [ + 77.5968366849077, + 12.915455068922 + ], + [ + 77.596818700901196, + 12.915196454867001 + ], + [ + 77.596818416858198, + 12.915168968840501 + ], + [ + 77.596840494521501, + 12.9146791017355 + ], + [ + 77.596619044652897, + 12.914671060810299 + ], + [ + 77.5963180756887, + 12.914647421680201 + ], + [ + 77.595985583410098, + 12.914604634105199 + ], + [ + 77.596054146531202, + 12.914191421213999 + ], + [ + 77.596104509846796, + 12.9134326753541 + ], + [ + 77.596169166625103, + 12.9127565204279 + ], + [ + 77.595599818077602, + 12.912714818314599 + ], + [ + 77.595433494640602, + 12.9127110935981 + ], + [ + 77.595113730087405, + 12.912701338076699 + ], + [ + 77.595095810747495, + 12.9130426188302 + ], + [ + 77.595089907243803, + 12.9134896368759 + ], + [ + 77.594740169259595, + 12.9132933756364 + ], + [ + 77.594619456047099, + 12.9132320933131 + ], + [ + 77.594355977415205, + 12.9130974560598 + ], + [ + 77.594333955142602, + 12.913644644443201 + ], + [ + 77.594235977924995, + 12.913939844322799 + ], + [ + 77.594187106966899, + 12.9140954229307 + ], + [ + 77.594212079751202, + 12.914128294581699 + ], + [ + 77.594638710273003, + 12.9142879424105 + ], + [ + 77.595049701125703, + 12.9144355512693 + ], + [ + 77.595054166092893, + 12.914492187656201 + ], + [ + 77.595050820520697, + 12.914498555802201 + ], + [ + 77.595041007461305, + 12.9147281263864 + ], + [ + 77.595039864648996, + 12.9149128689366 + ], + [ + 77.594309701015604, + 12.914936512117499 + ], + [ + 77.5932581294377, + 12.914979733717299 + ], + [ + 77.593265558780402, + 12.9155302469708 + ], + [ + 77.593266195477497, + 12.915591940973901 + ], + [ + 77.593286592295897, + 12.916387725443901 + ], + [ + 77.593287513790798, + 12.916902292179699 + ], + [ + 77.5916479135537, + 12.9169409128505 + ], + [ + 77.590993169580699, + 12.916956332920501 + ], + [ + 77.591001152764903, + 12.917097960790301 + ], + [ + 77.590546964739502, + 12.9176994050895 + ], + [ + 77.590371587803403, + 12.9182006502935 + ], + [ + 77.590327768963206, + 12.918204910194801 + ], + [ + 77.590329246017802, + 12.9182536587233 + ], + [ + 77.590370467719893, + 12.9186297714296 + ], + [ + 77.590378180543794, + 12.91887142741 + ], + [ + 77.590195473879305, + 12.9188742644344 + ], + [ + 77.5899667127416, + 12.918861879983201 + ], + [ + 77.589824245836695, + 12.918863555243499 + ], + [ + 77.589514194129507, + 12.9188805105164 + ], + [ + 77.589524651591901, + 12.919334563397999 + ], + [ + 77.589524944150796, + 12.919341858489499 + ], + [ + 77.589528681436903, + 12.9197660446025 + ], + [ + 77.589532341044503, + 12.9201814301548 + ], + [ + 77.589536408935004, + 12.9206431039375 + ], + [ + 77.588932722336693, + 12.9206591307442 + ], + [ + 77.588299663206797, + 12.920662539931399 + ], + [ + 77.588037069989497, + 12.920670195482501 + ], + [ + 77.588037029930405, + 12.9206620170237 + ], + [ + 77.588029289101698, + 12.920194539289801 + ], + [ + 77.587321774715903, + 12.9202087230567 + ], + [ + 77.586782428954507, + 12.920225541687101 + ], + [ + 77.585895390320104, + 12.920245762889 + ], + [ + 77.585889846692098, + 12.919962420405801 + ], + [ + 77.585838028827794, + 12.9173136321486 + ], + [ + 77.585838048429395, + 12.917143453085901 + ], + [ + 77.585838053488501, + 12.9170954422616 + ], + [ + 77.5854348621003, + 12.917091705842299 + ], + [ + 77.584896836959004, + 12.917094163241501 + ], + [ + 77.584426755308698, + 12.9170923630925 + ], + [ + 77.5839306606197, + 12.9170965554824 + ], + [ + 77.583655417100601, + 12.917104089934099 + ], + [ + 77.583037020640404, + 12.917110924511899 + ], + [ + 77.582472044066506, + 12.9171229670785 + ], + [ + 77.581960785864396, + 12.917129735969599 + ], + [ + 77.581905987679704, + 12.9171326683402 + ], + [ + 77.581570994307995, + 12.9171395663368 + ], + [ + 77.581298158366295, + 12.917148239959101 + ], + [ + 77.580796356954195, + 12.917166347107401 + ], + [ + 77.580278718351494, + 12.9171846098026 + ], + [ + 77.579661521022004, + 12.917205699027001 + ], + [ + 77.579438653077105, + 12.917212151476299 + ], + [ + 77.579210352761905, + 12.917218761293 + ], + [ + 77.578452262994801, + 12.9172434591224 + ], + [ + 77.578145272918704, + 12.9172484030363 + ], + [ + 77.577934232188994, + 12.9173352335972 + ], + [ + 77.577797335416705, + 12.9174267235152 + ], + [ + 77.577637005922497, + 12.9174733755238 + ], + [ + 77.577327952289906, + 12.917592359481599 + ], + [ + 77.576638530821, + 12.917612310725101 + ], + [ + 77.576198808362193, + 12.917620833498599 + ], + [ + 77.576063362599896, + 12.917625038293799 + ], + [ + 77.575816422533606, + 12.9176307251005 + ], + [ + 77.5753457010684, + 12.9176382368261 + ], + [ + 77.574764844984799, + 12.9176468337707 + ], + [ + 77.5747075875164, + 12.917647637797 + ], + [ + 77.574079030436096, + 12.9176622010832 + ], + [ + 77.573616484221304, + 12.917673950312 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "157", + "group": "byrasandra", + "Corporatio": "South", + "ac_no": "173", + "ac": "Jayanagar", + "corporat_1": "4", + "ward_id": "10", + "ward_name": "10 - Byrasandra", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಜಯನಗರ", + "ward_name_": "ಬೈರಸಂದ್ರ", + "dig_ward_n": "byrasandra", + "Assembly": "173 - Jayanagar", + "Slno": "10" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.579702247945903, + 12.9234311105046 + ], + [ + 77.579702202698599, + 12.9234361606586 + ], + [ + 77.5797022606978, + 12.9234418066274 + ], + [ + 77.579696038620199, + 12.923956832754399 + ], + [ + 77.579691769316099, + 12.924269693372199 + ], + [ + 77.579690476221501, + 12.9243679559809 + ], + [ + 77.579668419280395, + 12.9255268443539 + ], + [ + 77.579688570094106, + 12.926311514381601 + ], + [ + 77.579692698756702, + 12.9264710357804 + ], + [ + 77.579697161589294, + 12.926643446055101 + ], + [ + 77.579698584188293, + 12.926725871488101 + ], + [ + 77.5797033548249, + 12.9270016429363 + ], + [ + 77.579708507745394, + 12.9272994619207 + ], + [ + 77.579709651909596, + 12.9273547867068 + ], + [ + 77.579703139303305, + 12.927393247573599 + ], + [ + 77.579698650317795, + 12.927684653452699 + ], + [ + 77.579697473837101, + 12.9277595535714 + ], + [ + 77.579692385797401, + 12.928083361153201 + ], + [ + 77.579689899982796, + 12.9282335837076 + ], + [ + 77.579666463760802, + 12.928691550202 + ], + [ + 77.579666177056197, + 12.9286971531105 + ], + [ + 77.579663533795198, + 12.928748808892299 + ], + [ + 77.579660411572107, + 12.9288061806075 + ], + [ + 77.579659660109797, + 12.928819993603099 + ], + [ + 77.579653430744798, + 12.929502157260901 + ], + [ + 77.579652894626804, + 12.9295620158875 + ], + [ + 77.579648554666804, + 12.9299799027673 + ], + [ + 77.579647689304807, + 12.9300694699659 + ], + [ + 77.579640188485897, + 12.930846164714501 + ], + [ + 77.579639169674707, + 12.9309150625743 + ], + [ + 77.579630116087699, + 12.931266366876001 + ], + [ + 77.579620271183998, + 12.9316526875454 + ], + [ + 77.579606638819996, + 12.9321745626149 + ], + [ + 77.579606720072704, + 12.932182466966401 + ], + [ + 77.579606919327105, + 12.932199610599699 + ], + [ + 77.579611741442093, + 12.9326149422157 + ], + [ + 77.579617315364899, + 12.9330451533696 + ], + [ + 77.579635620853395, + 12.9330453708305 + ], + [ + 77.580034219805299, + 12.933050105686 + ], + [ + 77.580136053119901, + 12.933051315239901 + ], + [ + 77.580136234758996, + 12.9330479139415 + ], + [ + 77.580137984003798, + 12.9330151583016 + ], + [ + 77.580198411077006, + 12.933013431200701 + ], + [ + 77.580647407288495, + 12.9330112475426 + ], + [ + 77.580652587745107, + 12.9330111962838 + ], + [ + 77.580706683121605, + 12.9330095317155 + ], + [ + 77.581287365153798, + 12.9329936215358 + ], + [ + 77.582593170307106, + 12.9329569791811 + ], + [ + 77.582676034220199, + 12.932953900032199 + ], + [ + 77.583678180743803, + 12.9329291959258 + ], + [ + 77.583901311097407, + 12.932923695109601 + ], + [ + 77.583935260141004, + 12.9329222294672 + ], + [ + 77.584861267982205, + 12.932899502029199 + ], + [ + 77.584876388451804, + 12.9339202425859 + ], + [ + 77.584878836509802, + 12.933990235139801 + ], + [ + 77.584901980020803, + 12.9346721050453 + ], + [ + 77.584901228810494, + 12.935604917111799 + ], + [ + 77.584904583450196, + 12.936052069921301 + ], + [ + 77.584908938616394, + 12.936632506725999 + ], + [ + 77.585024529915799, + 12.936629393981001 + ], + [ + 77.5851080656672, + 12.9366271446764 + ], + [ + 77.585267475420494, + 12.9366221762742 + ], + [ + 77.585296244405995, + 12.936620761726299 + ], + [ + 77.585414440098106, + 12.936616210256201 + ], + [ + 77.585730703692604, + 12.936604031341 + ], + [ + 77.586138543707406, + 12.936462211700899 + ], + [ + 77.586272020945401, + 12.9363987761917 + ], + [ + 77.586362809735604, + 12.9363267296372 + ], + [ + 77.586434818014595, + 12.9362198609829 + ], + [ + 77.586559333501995, + 12.9360130928985 + ], + [ + 77.586648831139101, + 12.9359275074663 + ], + [ + 77.586708688066395, + 12.9358704485972 + ], + [ + 77.587216643978806, + 12.9355006448128 + ], + [ + 77.587553667775893, + 12.9352465958845 + ], + [ + 77.587629158914098, + 12.9351984161424 + ], + [ + 77.587703132837603, + 12.935170578859999 + ], + [ + 77.587748559282801, + 12.9351656108723 + ], + [ + 77.587816457729105, + 12.9351626784745 + ], + [ + 77.587866041544004, + 12.9351700915216 + ], + [ + 77.587937778008595, + 12.9352043879358 + ], + [ + 77.588388175578402, + 12.93544949314 + ], + [ + 77.588729432014304, + 12.9355500011961 + ], + [ + 77.588886883079795, + 12.935634264867501 + ], + [ + 77.589061458063298, + 12.935760142503799 + ], + [ + 77.589108796177896, + 12.9357994294751 + ], + [ + 77.589112554470205, + 12.9358025485658 + ], + [ + 77.589134520835401, + 12.9358113648574 + ], + [ + 77.589148934363806, + 12.935813480341601 + ], + [ + 77.589172534325797, + 12.935813246009699 + ], + [ + 77.589201233188305, + 12.935805055946799 + ], + [ + 77.589244205724995, + 12.9357854311504 + ], + [ + 77.5892922567851, + 12.9357586577693 + ], + [ + 77.589322621244904, + 12.935741739108501 + ], + [ + 77.589383698551899, + 12.93569144342 + ], + [ + 77.589450520261593, + 12.935639961378 + ], + [ + 77.589519010490704, + 12.9355828162559 + ], + [ + 77.5895557561674, + 12.9355734169517 + ], + [ + 77.589596274963498, + 12.9355435794689 + ], + [ + 77.589622601117796, + 12.935524193245399 + ], + [ + 77.589625479157505, + 12.9355241646638 + ], + [ + 77.589936661535404, + 12.935499617465799 + ], + [ + 77.5899398515662, + 12.9355142203359 + ], + [ + 77.590116115883603, + 12.936321094130999 + ], + [ + 77.5901655551218, + 12.936299418196 + ], + [ + 77.590556236632096, + 12.936128128982901 + ], + [ + 77.590584888947703, + 12.936161073624501 + ], + [ + 77.590624399127904, + 12.936206502696001 + ], + [ + 77.591041939196103, + 12.9366698835278 + ], + [ + 77.591087661664403, + 12.9366395214306 + ], + [ + 77.591306086326497, + 12.936494475902 + ], + [ + 77.591556634420499, + 12.936404890840301 + ], + [ + 77.591604423999399, + 12.9363878033404 + ], + [ + 77.591660137970294, + 12.9363678826378 + ], + [ + 77.591741410539001, + 12.936338823354101 + ], + [ + 77.591778833355406, + 12.936333603021399 + ], + [ + 77.592700241998301, + 12.9362050684956 + ], + [ + 77.592701116470806, + 12.9361800556504 + ], + [ + 77.592703796551405, + 12.9361033964176 + ], + [ + 77.592704702695698, + 12.936079672169599 + ], + [ + 77.592714946277098, + 12.935734005417199 + ], + [ + 77.5927229935577, + 12.935466743293601 + ], + [ + 77.592723517653695, + 12.9354493373308 + ], + [ + 77.592727639986407, + 12.935291194752001 + ], + [ + 77.592728052220494, + 12.935275380494099 + ], + [ + 77.592721136249693, + 12.935051614119301 + ], + [ + 77.592715944528706, + 12.9348836347787 + ], + [ + 77.592711510396697, + 12.934736022812301 + ], + [ + 77.592711345386206, + 12.934730530298101 + ], + [ + 77.592708924233904, + 12.934649940069001 + ], + [ + 77.5927066959336, + 12.9346162972336 + ], + [ + 77.592698010942101, + 12.934485171184599 + ], + [ + 77.592686347057096, + 12.9343034703 + ], + [ + 77.592685102263601, + 12.9342757149201 + ], + [ + 77.592628530202404, + 12.934304778782501 + ], + [ + 77.5911578225722, + 12.9343060171046 + ], + [ + 77.591117683277602, + 12.933975626328399 + ], + [ + 77.591061252023195, + 12.933820814485401 + ], + [ + 77.591005346232507, + 12.933716791439499 + ], + [ + 77.590801206957906, + 12.933611057977 + ], + [ + 77.590646137185303, + 12.9334454695449 + ], + [ + 77.590425339207698, + 12.9334697463594 + ], + [ + 77.590387162891403, + 12.9332737946304 + ], + [ + 77.590334728808102, + 12.933070716318699 + ], + [ + 77.5901396791959, + 12.932315272107299 + ], + [ + 77.589482695385001, + 12.932587059146099 + ], + [ + 77.588908668972294, + 12.931808151059901 + ], + [ + 77.588471625941096, + 12.931259646105101 + ], + [ + 77.588470945264206, + 12.931258751225901 + ], + [ + 77.588804427365204, + 12.931017624619299 + ], + [ + 77.589077066919501, + 12.9309886249585 + ], + [ + 77.589824565709804, + 12.930601663800299 + ], + [ + 77.589477422803, + 12.9300266421549 + ], + [ + 77.590251413406705, + 12.929624140656699 + ], + [ + 77.590905262811106, + 12.929301608192899 + ], + [ + 77.590889082676796, + 12.929251578709801 + ], + [ + 77.590833983908894, + 12.9291742799186 + ], + [ + 77.590775617735105, + 12.929185102440901 + ], + [ + 77.590733365832605, + 12.9291384047213 + ], + [ + 77.5906399616279, + 12.929093239239601 + ], + [ + 77.590617643567697, + 12.929055562151399 + ], + [ + 77.590470459760198, + 12.9289597161498 + ], + [ + 77.590345285342906, + 12.9287704411545 + ], + [ + 77.590318262356107, + 12.928681596255601 + ], + [ + 77.590281821007295, + 12.9285907962807 + ], + [ + 77.589433863765606, + 12.9285879466356 + ], + [ + 77.589043912902, + 12.9278358901758 + ], + [ + 77.588909608745496, + 12.927743081666099 + ], + [ + 77.588833706493304, + 12.927756622996601 + ], + [ + 77.588705622637406, + 12.927760685472601 + ], + [ + 77.588475018926303, + 12.9277629733579 + ], + [ + 77.588278520056903, + 12.927759337646499 + ], + [ + 77.588133498399998, + 12.9277775323549 + ], + [ + 77.587983042552196, + 12.927820919137799 + ], + [ + 77.587863929388007, + 12.9278667838931 + ], + [ + 77.587747925609804, + 12.9279377560161 + ], + [ + 77.587643335294004, + 12.928011408343099 + ], + [ + 77.587538975186405, + 12.9281074004617 + ], + [ + 77.587491237781904, + 12.928172109483199 + ], + [ + 77.587429586500605, + 12.928267678014199 + ], + [ + 77.587365227969997, + 12.928399411046801 + ], + [ + 77.587357376857, + 12.9284443438744 + ], + [ + 77.587346361672701, + 12.928480759716599 + ], + [ + 77.587388792884596, + 12.928545754604899 + ], + [ + 77.587577420501006, + 12.929217867794801 + ], + [ + 77.587758855345996, + 12.9297999143364 + ], + [ + 77.587032537413194, + 12.929859357046301 + ], + [ + 77.587078265127005, + 12.9305472277814 + ], + [ + 77.587080186565899, + 12.930733629862299 + ], + [ + 77.587081531354201, + 12.9307532031383 + ], + [ + 77.586594408346301, + 12.930742963838 + ], + [ + 77.586116532140906, + 12.930740232242799 + ], + [ + 77.585224846152499, + 12.9307634129738 + ], + [ + 77.585221585941099, + 12.9307635329181 + ], + [ + 77.583877493616598, + 12.9308129390402 + ], + [ + 77.583876795781194, + 12.9307793324288 + ], + [ + 77.583833766896106, + 12.928706634475899 + ], + [ + 77.583831842838805, + 12.928687362510701 + ], + [ + 77.583596523824397, + 12.9287072772459 + ], + [ + 77.583159286102997, + 12.928694403472001 + ], + [ + 77.582336995163203, + 12.9287115077459 + ], + [ + 77.582317804823603, + 12.928712012992699 + ], + [ + 77.581767302669206, + 12.9287264926924 + ], + [ + 77.581790977852293, + 12.9263729050995 + ], + [ + 77.582358924834907, + 12.9263611392642 + ], + [ + 77.582410066433596, + 12.926358584546101 + ], + [ + 77.583778156274505, + 12.9263459569594 + ], + [ + 77.5837803203368, + 12.9263409982102 + ], + [ + 77.585454445294204, + 12.926309514583901 + ], + [ + 77.585707175549999, + 12.9263047607836 + ], + [ + 77.586030184557501, + 12.926292595872701 + ], + [ + 77.587293701727702, + 12.926266923956099 + ], + [ + 77.588167545899097, + 12.926243067658101 + ], + [ + 77.588159522923903, + 12.925595939169799 + ], + [ + 77.588153407628099, + 12.925469989655401 + ], + [ + 77.588131679780503, + 12.9250225292613 + ], + [ + 77.588105993289105, + 12.9243745179404 + ], + [ + 77.588087042782504, + 12.9239544810022 + ], + [ + 77.588086697644897, + 12.9239406536421 + ], + [ + 77.588077086025905, + 12.923555867600699 + ], + [ + 77.588074402233701, + 12.923295458278799 + ], + [ + 77.588069962395195, + 12.9228646466077 + ], + [ + 77.588065336965599, + 12.922491599191201 + ], + [ + 77.587238610421394, + 12.922501149555501 + ], + [ + 77.586501671492101, + 12.9224984133518 + ], + [ + 77.585940513529707, + 12.9225064760879 + ], + [ + 77.585957496645605, + 12.923351582391399 + ], + [ + 77.585934926176293, + 12.923351866550099 + ], + [ + 77.585424139410307, + 12.9233582920019 + ], + [ + 77.584535349819802, + 12.923369470889901 + ], + [ + 77.584255408007394, + 12.923372990940701 + ], + [ + 77.583763513233706, + 12.923381444042599 + ], + [ + 77.583740514664001, + 12.923381838856301 + ], + [ + 77.5823818055391, + 12.923405183171299 + ], + [ + 77.581849593978504, + 12.9234088123794 + ], + [ + 77.581501206482102, + 12.923411187019401 + ], + [ + 77.580902243090904, + 12.923415269444799 + ], + [ + 77.580738348776904, + 12.923413827410499 + ], + [ + 77.580463778265099, + 12.9234114124668 + ], + [ + 77.580461863811294, + 12.9234614624407 + ], + [ + 77.579741701954802, + 12.9234268469882 + ], + [ + 77.579702247945903, + 12.9234311105046 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "158", + "group": "shakambari", + "Corporatio": "South", + "ac_no": "173", + "ac": "Jayanagar", + "corporat_1": "4", + "ward_id": "8", + "ward_name": "8 - Shakambarinagara", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಜಯನಗರ", + "ward_name_": "ಶಾಕಂಬರಿನಗರ", + "dig_ward_n": "shakambari", + "Assembly": "173 - Jayanagar", + "Slno": "8" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.5747075875164, + 12.917647637797 + ], + [ + 77.574764844984799, + 12.9176468337707 + ], + [ + 77.5753457010684, + 12.9176382368261 + ], + [ + 77.575816422533606, + 12.9176307251005 + ], + [ + 77.576063362599896, + 12.917625038293799 + ], + [ + 77.576198808362193, + 12.917620833498599 + ], + [ + 77.576638530821, + 12.917612310725101 + ], + [ + 77.577327952289906, + 12.917592359481599 + ], + [ + 77.577637005922497, + 12.9174733755238 + ], + [ + 77.577797335416705, + 12.9174267235152 + ], + [ + 77.577934232188994, + 12.9173352335972 + ], + [ + 77.578145272918704, + 12.9172484030363 + ], + [ + 77.578452262994801, + 12.9172434591224 + ], + [ + 77.579210352761905, + 12.917218761293 + ], + [ + 77.579438653077105, + 12.917212151476299 + ], + [ + 77.579661521022004, + 12.917205699027001 + ], + [ + 77.580278718351494, + 12.9171846098026 + ], + [ + 77.580796356954195, + 12.917166347107401 + ], + [ + 77.581298158366295, + 12.917148239959101 + ], + [ + 77.581570994307995, + 12.9171395663368 + ], + [ + 77.581905987679704, + 12.9171326683402 + ], + [ + 77.581960785864396, + 12.917129735969599 + ], + [ + 77.582472044066506, + 12.9171229670785 + ], + [ + 77.583037020640404, + 12.917110924511899 + ], + [ + 77.583655417100601, + 12.917104089934099 + ], + [ + 77.5839306606197, + 12.9170965554824 + ], + [ + 77.584426755308698, + 12.9170923630925 + ], + [ + 77.584896836959004, + 12.917094163241501 + ], + [ + 77.5854348621003, + 12.917091705842299 + ], + [ + 77.585838053488501, + 12.9170954422616 + ], + [ + 77.585838165260796, + 12.916078583368799 + ], + [ + 77.585838193833894, + 12.9158227171354 + ], + [ + 77.585838201331498, + 12.915750505750299 + ], + [ + 77.585794688585594, + 12.914232496938901 + ], + [ + 77.585788075232401, + 12.914001767884301 + ], + [ + 77.585738634321203, + 12.912276719332899 + ], + [ + 77.585736737942497, + 12.9122105536454 + ], + [ + 77.585703582472803, + 12.910568003244901 + ], + [ + 77.585738422433906, + 12.9105665092185 + ], + [ + 77.587730687875606, + 12.910481085523401 + ], + [ + 77.587736445120996, + 12.9104808387712 + ], + [ + 77.587910562604407, + 12.910473371684599 + ], + [ + 77.588863583871003, + 12.9104450362327 + ], + [ + 77.590226589465303, + 12.910404504334799 + ], + [ + 77.5903390500782, + 12.910398112249201 + ], + [ + 77.590720574049897, + 12.910376428169799 + ], + [ + 77.591391996865397, + 12.9103382658353 + ], + [ + 77.591957339205905, + 12.9103061322805 + ], + [ + 77.592313092147904, + 12.910285910411201 + ], + [ + 77.593322488962002, + 12.910228532082201 + ], + [ + 77.593317660139107, + 12.910139150430799 + ], + [ + 77.593303964104607, + 12.909885664950201 + ], + [ + 77.5932892431684, + 12.909028901255599 + ], + [ + 77.593298470842598, + 12.9090302000546 + ], + [ + 77.594197532581703, + 12.9090212744652 + ], + [ + 77.595059972078005, + 12.9090055380558 + ], + [ + 77.595149150198495, + 12.909004652262301 + ], + [ + 77.5951271289441, + 12.908431565776 + ], + [ + 77.595103247959599, + 12.907854220847 + ], + [ + 77.595063928894902, + 12.9069036483335 + ], + [ + 77.595043487648795, + 12.906298807336301 + ], + [ + 77.595000695406995, + 12.905457829034299 + ], + [ + 77.594991492606795, + 12.9050680942116 + ], + [ + 77.594973791284602, + 12.904769475967299 + ], + [ + 77.594949731779906, + 12.9039047224858 + ], + [ + 77.593894401468503, + 12.9039341599357 + ], + [ + 77.593851320036904, + 12.903933317731701 + ], + [ + 77.593841157762995, + 12.904043808557899 + ], + [ + 77.5937625674119, + 12.9048982883953 + ], + [ + 77.593680752312693, + 12.905108269939699 + ], + [ + 77.593635238302497, + 12.9052250825788 + ], + [ + 77.593623095758304, + 12.905256246652501 + ], + [ + 77.593589855579594, + 12.9053415581804 + ], + [ + 77.593582042766101, + 12.9054062650173 + ], + [ + 77.593562280010403, + 12.905569950142301 + ], + [ + 77.5934350512685, + 12.9055678249096 + ], + [ + 77.593426967198297, + 12.905567438877 + ], + [ + 77.593415471344798, + 12.9055668899236 + ], + [ + 77.593414604688107, + 12.905538666060099 + ], + [ + 77.593408403336497, + 12.905272213136 + ], + [ + 77.592936038759305, + 12.9052915812447 + ], + [ + 77.592572096154896, + 12.905331329605801 + ], + [ + 77.591918563165095, + 12.905365389749999 + ], + [ + 77.591903036839199, + 12.9053661987359 + ], + [ + 77.591461123028694, + 12.905436080714001 + ], + [ + 77.591470390705695, + 12.9055534360267 + ], + [ + 77.591470315517796, + 12.9056019966783 + ], + [ + 77.590233907142405, + 12.9057113746239 + ], + [ + 77.590055488669194, + 12.904816498296601 + ], + [ + 77.590051215056405, + 12.9047950634284 + ], + [ + 77.589889227463402, + 12.904827159910401 + ], + [ + 77.589889557546897, + 12.904832920594 + ], + [ + 77.589757131254103, + 12.904851884461801 + ], + [ + 77.5896616866481, + 12.9048655523917 + ], + [ + 77.589009322973993, + 12.9049567136082 + ], + [ + 77.588548192065502, + 12.905021806314 + ], + [ + 77.588441458106502, + 12.9050368726386 + ], + [ + 77.588118435283704, + 12.905081856055499 + ], + [ + 77.588152844670205, + 12.905237359077001 + ], + [ + 77.588061624434005, + 12.905266495045501 + ], + [ + 77.588048379604601, + 12.9055455640333 + ], + [ + 77.587217875061697, + 12.905553787574799 + ], + [ + 77.586479654370095, + 12.905576334361101 + ], + [ + 77.586451993104006, + 12.9055771791529 + ], + [ + 77.586446813236606, + 12.905577230419899 + ], + [ + 77.586436069768595, + 12.904644531450099 + ], + [ + 77.586374055103605, + 12.9046464750477 + ], + [ + 77.585751329443994, + 12.9046659881372 + ], + [ + 77.585746558276099, + 12.904666197059599 + ], + [ + 77.585717959787303, + 12.9046674476 + ], + [ + 77.585298909225997, + 12.90466594678 + ], + [ + 77.584978047372402, + 12.904664718567901 + ], + [ + 77.584969654295193, + 12.904664686435201 + ], + [ + 77.584952936945101, + 12.9051662634055 + ], + [ + 77.584937577091495, + 12.9051664153342 + ], + [ + 77.584420078496294, + 12.905171533535 + ], + [ + 77.584289338484197, + 12.905172826427 + ], + [ + 77.584223982091103, + 12.905198317446199 + ], + [ + 77.583988032354796, + 12.9052805123645 + ], + [ + 77.583876986325905, + 12.905319196354601 + ], + [ + 77.583060812757296, + 12.9053797034175 + ], + [ + 77.582998138620198, + 12.905384349662199 + ], + [ + 77.583005572796694, + 12.905475359183299 + ], + [ + 77.583007356003193, + 12.9054971892557 + ], + [ + 77.582642014201596, + 12.905513222454999 + ], + [ + 77.582571798024503, + 12.905513916371699 + ], + [ + 77.582505633832398, + 12.9055168288419 + ], + [ + 77.582425081072202, + 12.9055198834821 + ], + [ + 77.582358329731704, + 12.905521672410099 + ], + [ + 77.582286386908706, + 12.905522383312601 + ], + [ + 77.582217368172607, + 12.9055275825325 + ], + [ + 77.582145483310796, + 12.905533939362 + ], + [ + 77.582060360958394, + 12.9055404269657 + ], + [ + 77.5820201193401, + 12.905545341801099 + ], + [ + 77.5820063410941, + 12.905548865858 + ], + [ + 77.582001265551, + 12.9055590797759 + ], + [ + 77.581729678865699, + 12.9055685388375 + ], + [ + 77.581712508770494, + 12.905465941435001 + ], + [ + 77.581699323003505, + 12.904742185233699 + ], + [ + 77.581707044426295, + 12.904709359022901 + ], + [ + 77.581747953684399, + 12.904545205227899 + ], + [ + 77.5817750504592, + 12.9045494547806 + ], + [ + 77.581763310382698, + 12.904078649296 + ], + [ + 77.581757744746497, + 12.9038641908486 + ], + [ + 77.581755692420103, + 12.9037851044446 + ], + [ + 77.581754630068502, + 12.9037376839982 + ], + [ + 77.581713871130901, + 12.903748250386901 + ], + [ + 77.581451545234799, + 12.9038185999842 + ], + [ + 77.581232280298494, + 12.903878360293801 + ], + [ + 77.581013003636798, + 12.9039369912444 + ], + [ + 77.580956431079599, + 12.903952334821801 + ], + [ + 77.580783977422797, + 12.903999106227401 + ], + [ + 77.580782056911602, + 12.9039996139563 + ], + [ + 77.580635585916198, + 12.904038375323299 + ], + [ + 77.580635400383699, + 12.9040384241345 + ], + [ + 77.580544602923794, + 12.9040624525136 + ], + [ + 77.580296629913207, + 12.904129271419899 + ], + [ + 77.580302458019901, + 12.9043607222749 + ], + [ + 77.580326519620797, + 12.9043590208291 + ], + [ + 77.580327450302605, + 12.904416769487501 + ], + [ + 77.580364449186504, + 12.904552059464301 + ], + [ + 77.580383620448103, + 12.9047549923033 + ], + [ + 77.580389944669903, + 12.906426273820999 + ], + [ + 77.583050485233699, + 12.906357110973101 + ], + [ + 77.583037405622093, + 12.9070863960343 + ], + [ + 77.582026675336095, + 12.9070881911233 + ], + [ + 77.582037961094599, + 12.9073662016146 + ], + [ + 77.582031920560993, + 12.9084495825931 + ], + [ + 77.580643337060906, + 12.908484815164901 + ], + [ + 77.580614871885302, + 12.9085603931987 + ], + [ + 77.580618497070802, + 12.9089581303312 + ], + [ + 77.580616732205598, + 12.9093965473119 + ], + [ + 77.580697104341994, + 12.909393704810499 + ], + [ + 77.581436129998096, + 12.909378443225799 + ], + [ + 77.581755364725794, + 12.9093803679314 + ], + [ + 77.5817738559482, + 12.9100091897045 + ], + [ + 77.5817827989964, + 12.910313316024601 + ], + [ + 77.5817918129639, + 12.910619854738499 + ], + [ + 77.580599488200704, + 12.910714175551799 + ], + [ + 77.579200311130606, + 12.9108468577304 + ], + [ + 77.579098096928405, + 12.910858109893899 + ], + [ + 77.579100326632897, + 12.9109985089831 + ], + [ + 77.579125639870895, + 12.911185663948 + ], + [ + 77.579167346134199, + 12.911450583930201 + ], + [ + 77.578985737382098, + 12.911467675969501 + ], + [ + 77.579003999757404, + 12.911585101988599 + ], + [ + 77.579037187177306, + 12.911827158530301 + ], + [ + 77.579056902855896, + 12.9118962845155 + ], + [ + 77.579081830128601, + 12.912023276365099 + ], + [ + 77.579084157578706, + 12.912035135529599 + ], + [ + 77.579096183363404, + 12.9121621851915 + ], + [ + 77.578817215998299, + 12.9121902775963 + ], + [ + 77.578666234152493, + 12.9122088984287 + ], + [ + 77.578534906168599, + 12.912225095452399 + ], + [ + 77.577990707970301, + 12.912290226515699 + ], + [ + 77.577733707361006, + 12.912319825685801 + ], + [ + 77.577321065822503, + 12.912358318971499 + ], + [ + 77.577147231734699, + 12.9123692791424 + ], + [ + 77.576849120302697, + 12.9123880748957 + ], + [ + 77.576721613551996, + 12.9123938021197 + ], + [ + 77.576576961625094, + 12.9123972834873 + ], + [ + 77.576305148393999, + 12.912409317309599 + ], + [ + 77.576289518640607, + 12.912412544373501 + ], + [ + 77.575996482875496, + 12.912449748590699 + ], + [ + 77.575907344932602, + 12.912463431435199 + ], + [ + 77.575704637127899, + 12.9124986910458 + ], + [ + 77.575559249137697, + 12.9125192480002 + ], + [ + 77.575496765902699, + 12.9125233441946 + ], + [ + 77.575473409575494, + 12.9125248745564 + ], + [ + 77.575353415221997, + 12.9125266557713 + ], + [ + 77.575270456672897, + 12.912516119139401 + ], + [ + 77.575209469432806, + 12.9125095497415 + ], + [ + 77.574852287744605, + 12.9124909599396 + ], + [ + 77.574637377374401, + 12.9124821863757 + ], + [ + 77.574643418024394, + 12.912644369391399 + ], + [ + 77.574649782671102, + 12.9129636541879 + ], + [ + 77.574626541938699, + 12.913076395049099 + ], + [ + 77.574582465209801, + 12.913017837541499 + ], + [ + 77.574318018298897, + 12.912686009378 + ], + [ + 77.574141474133697, + 12.9124746943977 + ], + [ + 77.573985069359594, + 12.912513500408799 + ], + [ + 77.573988617703506, + 12.912983655982 + ], + [ + 77.573827168053896, + 12.912985430154 + ], + [ + 77.573916590344993, + 12.9132956327822 + ], + [ + 77.5734984802707, + 12.9133127643746 + ], + [ + 77.573485285803301, + 12.913352680296599 + ], + [ + 77.573439022306303, + 12.9133989834049 + ], + [ + 77.573319326138602, + 12.9134143436766 + ], + [ + 77.573274001451196, + 12.913462544686499 + ], + [ + 77.573340455543004, + 12.9136287608997 + ], + [ + 77.573364703758102, + 12.913748229286799 + ], + [ + 77.573446885142999, + 12.9142973954964 + ], + [ + 77.573452759042397, + 12.9143650964598 + ], + [ + 77.573457496760795, + 12.914423026048 + ], + [ + 77.573499426229006, + 12.9149357469559 + ], + [ + 77.573507902798696, + 12.915039406722499 + ], + [ + 77.573523168061101, + 12.91522606921 + ], + [ + 77.573529925433405, + 12.9153078128295 + ], + [ + 77.573538279610602, + 12.9154088691448 + ], + [ + 77.573538835715198, + 12.915657501544 + ], + [ + 77.573539098800396, + 12.9157752737416 + ], + [ + 77.573539243985707, + 12.915840257548799 + ], + [ + 77.573540875191, + 12.9167301407851 + ], + [ + 77.573534210559103, + 12.9169786555094 + ], + [ + 77.573528246734696, + 12.917216368891999 + ], + [ + 77.573516799597002, + 12.917672645399101 + ], + [ + 77.573616484221304, + 12.917673950312 + ], + [ + 77.574079030436096, + 12.9176622010832 + ], + [ + 77.5747075875164, + 12.917647637797 + ] + ], + [ + [ + 77.589930733262705, + 12.9048352430371 + ], + [ + 77.589757131254103, + 12.904851884461801 + ], + [ + 77.589757131254103, + 12.904851884461801 + ], + [ + 77.589930733262705, + 12.9048352430371 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "159", + "group": "Pulakeshi Nagar", + "Corporatio": "North", + "ac_no": "159", + "ac": "Pulakeshinagar", + "corporat_1": "2", + "ward_id": "72", + "ward_name": "72 - Pulakeshi Nagar", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಪುಲಕೇಶಿನಗರ", + "ward_name_": "ಪುಲಕೇಶಿ ನಗರ", + "dig_ward_n": "Pulakeshi Nagar", + "Assembly": "159 - Pulakeshinagar", + "Slno": "72" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.615788248597198, + 12.9894740026468 + ], + [ + 77.615739607993603, + 12.989502723425799 + ], + [ + 77.614995581846401, + 12.9899314343944 + ], + [ + 77.6140407637496, + 12.990520363828599 + ], + [ + 77.613967192664902, + 12.990587731539801 + ], + [ + 77.613957499904203, + 12.990596863295799 + ], + [ + 77.613945483151994, + 12.9906037382056 + ], + [ + 77.613859054496004, + 12.990653188556101 + ], + [ + 77.613406430351404, + 12.990867788616701 + ], + [ + 77.613289691458803, + 12.9909367198129 + ], + [ + 77.613046497017393, + 12.991081455499099 + ], + [ + 77.612592684303806, + 12.9912926785235 + ], + [ + 77.612419863321307, + 12.991339587992501 + ], + [ + 77.612307511476999, + 12.991371051356801 + ], + [ + 77.612214907887704, + 12.9913969840579 + ], + [ + 77.611772026738606, + 12.991497426697499 + ], + [ + 77.611705446240506, + 12.991518994196699 + ], + [ + 77.611451822132594, + 12.991601152272599 + ], + [ + 77.611158608273101, + 12.9917531651025 + ], + [ + 77.611099122202901, + 12.991791029351299 + ], + [ + 77.610783973833506, + 12.9919929506164 + ], + [ + 77.6106101599471, + 12.9921020245042 + ], + [ + 77.610534147728899, + 12.992149725014601 + ], + [ + 77.6102828696784, + 12.992307410015901 + ], + [ + 77.609806006281502, + 12.9926826061452 + ], + [ + 77.609777328438398, + 12.9927051944442 + ], + [ + 77.609602816971702, + 12.9928426468464 + ], + [ + 77.609485053485699, + 12.992935402119899 + ], + [ + 77.609168165525304, + 12.9931915448082 + ], + [ + 77.608951369399506, + 12.993383441973 + ], + [ + 77.608821166394094, + 12.993628486620199 + ], + [ + 77.608765425021303, + 12.993689599510599 + ], + [ + 77.608618731946706, + 12.993850429058 + ], + [ + 77.607848127841905, + 12.9945097817793 + ], + [ + 77.608156087400104, + 12.9950637785973 + ], + [ + 77.608610201331203, + 12.9958336788173 + ], + [ + 77.609777901844794, + 12.9976660905581 + ], + [ + 77.6100526320987, + 12.998340961533501 + ], + [ + 77.610560793036001, + 12.999382807446 + ], + [ + 77.610709887732, + 12.999659439192699 + ], + [ + 77.610899500796506, + 13.0000112462463 + ], + [ + 77.610933666687899, + 13.000074637209099 + ], + [ + 77.611001367059103, + 13.000269234937999 + ], + [ + 77.611512860632203, + 13.0007989306868 + ], + [ + 77.611625310995507, + 13.0008830984846 + ], + [ + 77.611842806595007, + 13.001045890032101 + ], + [ + 77.612105635062903, + 13.0013735180839 + ], + [ + 77.612150117468701, + 13.00160404244 + ], + [ + 77.612266903478002, + 13.0016491673201 + ], + [ + 77.612782316253998, + 13.001820146085601 + ], + [ + 77.613162247332994, + 13.0019202142457 + ], + [ + 77.613464215872298, + 13.001998481393001 + ], + [ + 77.613870336124506, + 13.0020700527958 + ], + [ + 77.613948940667498, + 13.0020796793322 + ], + [ + 77.614100379648406, + 13.0020982261575 + ], + [ + 77.614821916226106, + 13.002157584485399 + ], + [ + 77.615132785461299, + 13.0021510642844 + ], + [ + 77.615446533352994, + 13.0021445147016 + ], + [ + 77.616150315066207, + 13.002048208433999 + ], + [ + 77.616222153435999, + 13.0020350622395 + ], + [ + 77.616421019127102, + 13.0020003084915 + ], + [ + 77.617073340334201, + 13.0018288573758 + ], + [ + 77.617570760678007, + 13.001656708581701 + ], + [ + 77.618012541289801, + 13.0014501127875 + ], + [ + 77.618593020723907, + 13.001136334976101 + ], + [ + 77.618964297824803, + 13.001992696826999 + ], + [ + 77.619115898071897, + 13.0024110994619 + ], + [ + 77.619358167166595, + 13.003130545454599 + ], + [ + 77.619330884110497, + 13.003318116465801 + ], + [ + 77.619393635139701, + 13.0035363809152 + ], + [ + 77.619547853383906, + 13.0037421184739 + ], + [ + 77.6195721000378, + 13.0033959193957 + ], + [ + 77.619614915425799, + 13.003250940543801 + ], + [ + 77.619676053199598, + 13.0031509475505 + ], + [ + 77.619740918077596, + 13.003076889243101 + ], + [ + 77.619874209863397, + 13.002938902782301 + ], + [ + 77.619961599057206, + 13.002871393567199 + ], + [ + 77.6200821098533, + 13.002777576709899 + ], + [ + 77.620356512689398, + 13.002588476547301 + ], + [ + 77.620450330623996, + 13.002529936458499 + ], + [ + 77.620494615071394, + 13.002502621699 + ], + [ + 77.620582486441506, + 13.0024484238114 + ], + [ + 77.6206653760064, + 13.0023911241907 + ], + [ + 77.620716250820493, + 13.0023556021704 + ], + [ + 77.620733120045699, + 13.002317036645101 + ], + [ + 77.620738545485295, + 13.0022853632069 + ], + [ + 77.620743329956298, + 13.002236169071899 + ], + [ + 77.620744262045704, + 13.002226582548399 + ], + [ + 77.620638552424197, + 13.0020300278143 + ], + [ + 77.620506080700196, + 13.0017524357936 + ], + [ + 77.620458425585198, + 13.0016557997533 + ], + [ + 77.620360641311905, + 13.0013914085872 + ], + [ + 77.620345809008697, + 13.0013497753453 + ], + [ + 77.620345217870593, + 13.0013468235293 + ], + [ + 77.620311127642296, + 13.0011767120615 + ], + [ + 77.620304402766095, + 13.0011431566144 + ], + [ + 77.620294767042196, + 13.0010950756171 + ], + [ + 77.620282451541598, + 13.000739374138901 + ], + [ + 77.6202774126983, + 13.000593854849701 + ], + [ + 77.620281334200598, + 13.00030923916 + ], + [ + 77.620290844032297, + 13.000227835697499 + ], + [ + 77.620297004340401, + 13.000173222527099 + ], + [ + 77.620302958997399, + 13.0001204327202 + ], + [ + 77.620265882049495, + 13.000044016640601 + ], + [ + 77.620182709281195, + 12.999964678067601 + ], + [ + 77.620111757534403, + 12.999897638069401 + ], + [ + 77.619954041557804, + 12.999793078633999 + ], + [ + 77.619897192175401, + 12.999752998706199 + ], + [ + 77.6198258164641, + 12.9997024303598 + ], + [ + 77.6198206548234, + 12.999698773932 + ], + [ + 77.619687076753394, + 12.999604136809401 + ], + [ + 77.619427298111702, + 12.999420089101701 + ], + [ + 77.619412798854796, + 12.9994100719797 + ], + [ + 77.619340398819602, + 12.99931481454 + ], + [ + 77.6192277119018, + 12.999111553552501 + ], + [ + 77.6191194108156, + 12.998942126366799 + ], + [ + 77.618976529957294, + 12.9987696601771 + ], + [ + 77.618854077408201, + 12.998678295329199 + ], + [ + 77.618397004338206, + 12.998469473783199 + ], + [ + 77.618386017911405, + 12.9984650675124 + ], + [ + 77.618050682325602, + 12.998324478354901 + ], + [ + 77.617948387411403, + 12.9982880579186 + ], + [ + 77.617936150420803, + 12.9982844041368 + ], + [ + 77.617935563213805, + 12.998283492186101 + ], + [ + 77.6178706198762, + 12.998182688773801 + ], + [ + 77.617816158176595, + 12.9980981549897 + ], + [ + 77.617776175753605, + 12.9980364138637 + ], + [ + 77.617752948200902, + 12.9980005457007 + ], + [ + 77.617750597881994, + 12.997996052311199 + ], + [ + 77.617542927778203, + 12.9975542952198 + ], + [ + 77.617509134249303, + 12.997482409474999 + ], + [ + 77.617394308222501, + 12.9972396442675 + ], + [ + 77.617371215191497, + 12.997178896356701 + ], + [ + 77.617311302652396, + 12.997024934539301 + ], + [ + 77.617211445455595, + 12.996768322442501 + ], + [ + 77.6170096392202, + 12.9962475032771 + ], + [ + 77.616966368388006, + 12.996136013098001 + ], + [ + 77.616953034922204, + 12.9961016585842 + ], + [ + 77.616831514279895, + 12.995788555145801 + ], + [ + 77.616780435478304, + 12.995749545381999 + ], + [ + 77.616785240294305, + 12.9957453629124 + ], + [ + 77.616911670758597, + 12.9956352953589 + ], + [ + 77.616996181036995, + 12.995567816448199 + ], + [ + 77.617345259564701, + 12.9953621588114 + ], + [ + 77.617427817508599, + 12.9952732423878 + ], + [ + 77.617587776731597, + 12.995101370735901 + ], + [ + 77.617598631373795, + 12.9950897074923 + ], + [ + 77.617634827143803, + 12.9950272325905 + ], + [ + 77.617770587774302, + 12.994795492286899 + ], + [ + 77.617828729965495, + 12.994696118244301 + ], + [ + 77.617930180282997, + 12.994522879549599 + ], + [ + 77.617990064619093, + 12.994420619575401 + ], + [ + 77.618035487771493, + 12.9943369839102 + ], + [ + 77.618036831739602, + 12.994334508545901 + ], + [ + 77.618234449258495, + 12.9939706393442 + ], + [ + 77.618272507086601, + 12.993900565052799 + ], + [ + 77.618612874884604, + 12.9932353930355 + ], + [ + 77.618706397233595, + 12.9930526236124 + ], + [ + 77.618750307834503, + 12.9929717667099 + ], + [ + 77.618751404146906, + 12.992969747357201 + ], + [ + 77.618861174200305, + 12.9927676155431 + ], + [ + 77.618876317049796, + 12.9927381089937 + ], + [ + 77.619106401603204, + 12.9922897705476 + ], + [ + 77.619202548775107, + 12.992102419562499 + ], + [ + 77.619353880897506, + 12.9917037284826 + ], + [ + 77.619358313123101, + 12.991692052283801 + ], + [ + 77.619397273736297, + 12.991399178005199 + ], + [ + 77.619443242147995, + 12.991079849657901 + ], + [ + 77.619477753123206, + 12.990840213474399 + ], + [ + 77.619478850532701, + 12.9908325902129 + ], + [ + 77.619507027884495, + 12.990505023264101 + ], + [ + 77.619510156374901, + 12.9904686490437 + ], + [ + 77.619550761330402, + 12.989908903206 + ], + [ + 77.619554425174996, + 12.9898583959483 + ], + [ + 77.6195487891993, + 12.9896480243226 + ], + [ + 77.619547801872599, + 12.9896111522698 + ], + [ + 77.619512686906702, + 12.9887882673706 + ], + [ + 77.619512655303296, + 12.988787537727999 + ], + [ + 77.619495995505005, + 12.9884044833115 + ], + [ + 77.619491484039798, + 12.988376091935301 + ], + [ + 77.619475035917802, + 12.988272569868901 + ], + [ + 77.619430013330302, + 12.9879873180916 + ], + [ + 77.619306630895807, + 12.987202588892499 + ], + [ + 77.619078987480407, + 12.9871822984747 + ], + [ + 77.619066295181696, + 12.987191751505801 + ], + [ + 77.619014428104194, + 12.987230377831599 + ], + [ + 77.618780761311399, + 12.987404383623399 + ], + [ + 77.618621360151806, + 12.9875123136365 + ], + [ + 77.618518343034907, + 12.9875820659731 + ], + [ + 77.618276668794707, + 12.9877464683991 + ], + [ + 77.618255118919507, + 12.9877611285361 + ], + [ + 77.6182302065275, + 12.987778075685499 + ], + [ + 77.618227927335198, + 12.987780357201601 + ], + [ + 77.617951754875094, + 12.988030995065699 + ], + [ + 77.6178587272139, + 12.9881154219495 + ], + [ + 77.617541634331602, + 12.988403175964001 + ], + [ + 77.617458456609498, + 12.988478660839499 + ], + [ + 77.617300533125402, + 12.9886219767386 + ], + [ + 77.617262303140507, + 12.9886551108498 + ], + [ + 77.617204581560998, + 12.988696346252 + ], + [ + 77.616656296667102, + 12.989012420034401 + ], + [ + 77.615797373418701, + 12.9894691497362 + ], + [ + 77.615788248597198, + 12.9894740026468 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "160", + "group": "vishwapriya nagara", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "44", + "ward_name": "44 - Vishwapriya Nagara", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ವಿಶ್ವಪ್ರಿಯ ನಗರ", + "dig_ward_n": "vishwapriya nagara", + "Assembly": "176 - Bangalore South", + "Slno": "44" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6343084984303, + 12.867473836370801 + ], + [ + 77.634226630415796, + 12.866962706693901 + ], + [ + 77.634226864015801, + 12.8669640025521 + ], + [ + 77.633419764128902, + 12.8669799177403 + ], + [ + 77.631859305444905, + 12.866813183038101 + ], + [ + 77.630198016126002, + 12.866485530197201 + ], + [ + 77.630181161151896, + 12.867093218354499 + ], + [ + 77.6301804376006, + 12.867468658690299 + ], + [ + 77.630286803073403, + 12.867660995949899 + ], + [ + 77.630637105097307, + 12.868450439312401 + ], + [ + 77.630916941274194, + 12.8683759561449 + ], + [ + 77.631345790231094, + 12.868357997739199 + ], + [ + 77.631361955825298, + 12.8684940163003 + ], + [ + 77.631631990878205, + 12.869338074371999 + ], + [ + 77.631814180949107, + 12.8697958648495 + ], + [ + 77.631873007775198, + 12.8698771864735 + ], + [ + 77.631897597448699, + 12.8700111850341 + ], + [ + 77.631779231270102, + 12.8704469657165 + ], + [ + 77.631699919137304, + 12.870763789850299 + ], + [ + 77.632034144874098, + 12.8717618315578 + ], + [ + 77.632216770067899, + 12.872372065170399 + ], + [ + 77.632513447602904, + 12.872355431724101 + ], + [ + 77.632843834240106, + 12.8726797611666 + ], + [ + 77.633379049098494, + 12.8734081801035 + ], + [ + 77.633583872182001, + 12.8737007780122 + ], + [ + 77.633934340371098, + 12.8742295304626 + ], + [ + 77.633504210376898, + 12.874955294352 + ], + [ + 77.633134912717594, + 12.875568800250599 + ], + [ + 77.633006223720997, + 12.8755712317872 + ], + [ + 77.6329306375047, + 12.8756618678936 + ], + [ + 77.632786470269295, + 12.8761703314243 + ], + [ + 77.632922703224807, + 12.877843933581 + ], + [ + 77.633170017723202, + 12.8779320966198 + ], + [ + 77.633364831167398, + 12.8788104425001 + ], + [ + 77.633297412632402, + 12.879252211321701 + ], + [ + 77.632899803734205, + 12.8790965357161 + ], + [ + 77.632700578166094, + 12.878734723764801 + ], + [ + 77.632477185811894, + 12.878543602429801 + ], + [ + 77.631896739712701, + 12.8784590143523 + ], + [ + 77.631566904687901, + 12.878433297112 + ], + [ + 77.6311119439126, + 12.8782842832582 + ], + [ + 77.630187080801903, + 12.8783322562289 + ], + [ + 77.629487742695005, + 12.8782118605753 + ], + [ + 77.627440870945193, + 12.8779641624684 + ], + [ + 77.627621836486597, + 12.880284779410699 + ], + [ + 77.627719415945194, + 12.880283005238701 + ], + [ + 77.627728286804995, + 12.8804515515763 + ], + [ + 77.6276271590025, + 12.880463970780101 + ], + [ + 77.627774415276306, + 12.881638472627101 + ], + [ + 77.628095540403706, + 12.881610085875501 + ], + [ + 77.6281676301153, + 12.8824655617774 + ], + [ + 77.628196465369399, + 12.882731956572901 + ], + [ + 77.628196860795001, + 12.8827356123466 + ], + [ + 77.628364539210196, + 12.8838613492132 + ], + [ + 77.628365190815302, + 12.883865727857099 + ], + [ + 77.628365081433998, + 12.883865747023901 + ], + [ + 77.627154699471802, + 12.8840804579762 + ], + [ + 77.624936208420195, + 12.884522115901801 + ], + [ + 77.625136210866899, + 12.885046331225199 + ], + [ + 77.625330970265694, + 12.885691555141801 + ], + [ + 77.625406414485397, + 12.885968515643301 + ], + [ + 77.625399897928105, + 12.8859697003556 + ], + [ + 77.625459744119496, + 12.886241471763899 + ], + [ + 77.625546954639304, + 12.8866375094007 + ], + [ + 77.625551153095898, + 12.887672158398701 + ], + [ + 77.625602590074095, + 12.888394841303599 + ], + [ + 77.6257943418765, + 12.8884006288778 + ], + [ + 77.626519996252398, + 12.888422529753299 + ], + [ + 77.626642349592004, + 12.8883930161722 + ], + [ + 77.626798434200495, + 12.8883553659809 + ], + [ + 77.627051878824503, + 12.8882647381627 + ], + [ + 77.627550794928396, + 12.8881468011834 + ], + [ + 77.627886862749705, + 12.888086962521101 + ], + [ + 77.627984825717505, + 12.888082126445401 + ], + [ + 77.628288959464797, + 12.8880671139753 + ], + [ + 77.628338293822495, + 12.888070689032499 + ], + [ + 77.628576372232402, + 12.8880879414574 + ], + [ + 77.628634262180398, + 12.8881201087446 + ], + [ + 77.628634515037604, + 12.8889162422902 + ], + [ + 77.628537773449295, + 12.889187110016399 + ], + [ + 77.628549412785603, + 12.889199415060499 + ], + [ + 77.628548329077105, + 12.889426409431501 + ], + [ + 77.628609228267095, + 12.890132721205999 + ], + [ + 77.628912854971603, + 12.890548629707 + ], + [ + 77.628928428488507, + 12.8905518610177 + ], + [ + 77.629083359142399, + 12.890727599512401 + ], + [ + 77.629203569805796, + 12.8908302842532 + ], + [ + 77.629211973891003, + 12.890836208410001 + ], + [ + 77.629249375270405, + 12.8908625727234 + ], + [ + 77.629277578781895, + 12.8909729577521 + ], + [ + 77.629346651331204, + 12.891304268966801 + ], + [ + 77.629399806192794, + 12.8915442692388 + ], + [ + 77.629428295321006, + 12.891737088072601 + ], + [ + 77.629434238908203, + 12.8917550966503 + ], + [ + 77.629473891105306, + 12.8918043859479 + ], + [ + 77.629675543852997, + 12.8919898176255 + ], + [ + 77.629708054360407, + 12.892016593269499 + ], + [ + 77.629821086285304, + 12.892038042300999 + ], + [ + 77.629856344510998, + 12.892052368329701 + ], + [ + 77.629870885101695, + 12.8920669026474 + ], + [ + 77.629900836671894, + 12.892124194272499 + ], + [ + 77.629936661119501, + 12.892192719541301 + ], + [ + 77.629955994383295, + 12.8922252739802 + ], + [ + 77.630179406221103, + 12.892565196281399 + ], + [ + 77.630215448377299, + 12.8927647145533 + ], + [ + 77.630244777482204, + 12.892761460160701 + ], + [ + 77.6310883656339, + 12.892667853194 + ], + [ + 77.631192961493397, + 12.8926562464437 + ], + [ + 77.631580799573996, + 12.892613210612501 + ], + [ + 77.632691221957202, + 12.892425475018999 + ], + [ + 77.632800547066594, + 12.892406991150001 + ], + [ + 77.632784977158906, + 12.8920921427954 + ], + [ + 77.632751647137994, + 12.8914603522921 + ], + [ + 77.6327236632237, + 12.8907007733141 + ], + [ + 77.632761945784594, + 12.890209097945799 + ], + [ + 77.632777125537601, + 12.890100783937401 + ], + [ + 77.632839066725396, + 12.8896588049498 + ], + [ + 77.632874001958896, + 12.889409525723799 + ], + [ + 77.632856376969102, + 12.889409130020001 + ], + [ + 77.632645972588506, + 12.889404406077601 + ], + [ + 77.631474179333395, + 12.889255415818999 + ], + [ + 77.631484957609601, + 12.888927302744101 + ], + [ + 77.631495261586295, + 12.8886136310088 + ], + [ + 77.631506517342004, + 12.8885734477357 + ], + [ + 77.631665737279405, + 12.8880050230477 + ], + [ + 77.631809006780401, + 12.887647493858699 + ], + [ + 77.6319106875019, + 12.887368075737299 + ], + [ + 77.632053650827999, + 12.8870354928889 + ], + [ + 77.632166046314495, + 12.8866551910784 + ], + [ + 77.632330754646304, + 12.886097883736801 + ], + [ + 77.6323371225145, + 12.886098249707601 + ], + [ + 77.633242812198503, + 12.886150248307899 + ], + [ + 77.634095409433897, + 12.8862325112609 + ], + [ + 77.634569338756293, + 12.8862592360138 + ], + [ + 77.634644772090994, + 12.886282998554201 + ], + [ + 77.634788187740895, + 12.8863281763842 + ], + [ + 77.635161720093194, + 12.8863771943507 + ], + [ + 77.635195320383005, + 12.8863816034254 + ], + [ + 77.635103153078404, + 12.886782357615401 + ], + [ + 77.634979345085299, + 12.887380986025001 + ], + [ + 77.634945932238907, + 12.8877630143757 + ], + [ + 77.635029908171603, + 12.8878129856681 + ], + [ + 77.635173872146595, + 12.8878205699523 + ], + [ + 77.635258189546903, + 12.887796997315601 + ], + [ + 77.635305013287507, + 12.8877839067778 + ], + [ + 77.6353959557688, + 12.887758482148 + ], + [ + 77.635555670095499, + 12.8875341733099 + ], + [ + 77.635715857154096, + 12.887309200130099 + ], + [ + 77.635794079359798, + 12.8872349760176 + ], + [ + 77.636074309760602, + 12.886969068268201 + ], + [ + 77.636395572468899, + 12.886788202841 + ], + [ + 77.636397010313104, + 12.886787393357899 + ], + [ + 77.636534432047, + 12.886687210791401 + ], + [ + 77.636554083843393, + 12.8866728843172 + ], + [ + 77.636844131475797, + 12.886450884454799 + ], + [ + 77.636838723826102, + 12.8863741489627 + ], + [ + 77.636981729239807, + 12.886290271638201 + ], + [ + 77.637032735312204, + 12.8863466377009 + ], + [ + 77.637051601792905, + 12.886367486761801 + ], + [ + 77.637071627346003, + 12.886358961554 + ], + [ + 77.6375460736392, + 12.886156981378701 + ], + [ + 77.6375460833533, + 12.8861569772432 + ], + [ + 77.637507312482398, + 12.8859710893087 + ], + [ + 77.637507302108403, + 12.8859710395701 + ], + [ + 77.638020776979303, + 12.885815671845499 + ], + [ + 77.6383074508352, + 12.885767613443001 + ], + [ + 77.638307464321002, + 12.885767611182199 + ], + [ + 77.638269841519602, + 12.885630823736401 + ], + [ + 77.638211135239004, + 12.8854173814108 + ], + [ + 77.6389284430565, + 12.885218179781701 + ], + [ + 77.638928462576104, + 12.885218174361 + ], + [ + 77.638798341017605, + 12.8849083248013 + ], + [ + 77.638770414258701, + 12.8848475665914 + ], + [ + 77.638482253064197, + 12.8842206329715 + ], + [ + 77.638439823255894, + 12.884128320189699 + ], + [ + 77.638254237997899, + 12.8836978484229 + ], + [ + 77.638230360427897, + 12.883701446180501 + ], + [ + 77.637713878073598, + 12.883710982611801 + ], + [ + 77.637687581471496, + 12.883711468130199 + ], + [ + 77.637574750427902, + 12.883701902140499 + ], + [ + 77.637555611324004, + 12.8837002794928 + ], + [ + 77.637547964392496, + 12.8836750621484 + ], + [ + 77.637389147429403, + 12.883151328621 + ], + [ + 77.637310041693695, + 12.8828517413948 + ], + [ + 77.637193865162402, + 12.8819246565696 + ], + [ + 77.637141264376396, + 12.8814079833452 + ], + [ + 77.637136128868093, + 12.8813572181758 + ], + [ + 77.637061571159805, + 12.8807221932702 + ], + [ + 77.636998856239401, + 12.8802538467862 + ], + [ + 77.636988696498804, + 12.8801779776097 + ], + [ + 77.636959188285601, + 12.8799576137231 + ], + [ + 77.636959184185997, + 12.8799575831077 + ], + [ + 77.636967847999799, + 12.8799055496635 + ], + [ + 77.636985120061894, + 12.8798511709855 + ], + [ + 77.637022367746695, + 12.8797807813998 + ], + [ + 77.637358576906493, + 12.879240994130599 + ], + [ + 77.637533674750202, + 12.8789591958167 + ], + [ + 77.637575348931605, + 12.8788921262879 + ], + [ + 77.637641948227397, + 12.8788767749332 + ], + [ + 77.637699186577393, + 12.8788468374328 + ], + [ + 77.637789612266204, + 12.8787984973484 + ], + [ + 77.637955671605198, + 12.878608237220201 + ], + [ + 77.638064914310107, + 12.8784332299163 + ], + [ + 77.638212026784004, + 12.878192343722301 + ], + [ + 77.638249498516501, + 12.878143407818101 + ], + [ + 77.638402262577799, + 12.877947635181901 + ], + [ + 77.638620331851897, + 12.8776896586572 + ], + [ + 77.638628515143296, + 12.8776799783575 + ], + [ + 77.638672233959298, + 12.8776230746236 + ], + [ + 77.638851641723804, + 12.877388638392 + ], + [ + 77.639061110674504, + 12.877112116392601 + ], + [ + 77.639100261162298, + 12.8770586464512 + ], + [ + 77.639140562537094, + 12.877005164907599 + ], + [ + 77.639245539228995, + 12.876807615103401 + ], + [ + 77.639339795044094, + 12.876630500075001 + ], + [ + 77.639370726461806, + 12.876581012977899 + ], + [ + 77.639448472462405, + 12.8764566274657 + ], + [ + 77.639499900327806, + 12.876373903283101 + ], + [ + 77.639548084442595, + 12.876296397366801 + ], + [ + 77.639609678211698, + 12.8761827355073 + ], + [ + 77.639650841572006, + 12.876106774715799 + ], + [ + 77.639697129730607, + 12.876020484166499 + ], + [ + 77.639743134073896, + 12.875907094168801 + ], + [ + 77.6397796079996, + 12.875707976267901 + ], + [ + 77.639819309919105, + 12.8754873698401 + ], + [ + 77.639824181511202, + 12.8754579599037 + ], + [ + 77.639972611199298, + 12.874958458882199 + ], + [ + 77.640120433532502, + 12.874510910069301 + ], + [ + 77.640156638841702, + 12.8744380045813 + ], + [ + 77.640156645900603, + 12.874437990367101 + ], + [ + 77.640138236763903, + 12.874342470486599 + ], + [ + 77.6400406749448, + 12.8735439645236 + ], + [ + 77.640040671459502, + 12.8735439359978 + ], + [ + 77.640100131500503, + 12.8730667878333 + ], + [ + 77.640224908670604, + 12.8725692445354 + ], + [ + 77.640242659954893, + 12.872498461406201 + ], + [ + 77.640491951105901, + 12.872306983211001 + ], + [ + 77.640214793608706, + 12.8710867844476 + ], + [ + 77.640370550140105, + 12.871025348248301 + ], + [ + 77.640556292455898, + 12.870866048096 + ], + [ + 77.640538881104604, + 12.8707535945427 + ], + [ + 77.640656607774901, + 12.8707012129035 + ], + [ + 77.640648694280202, + 12.8705545336156 + ], + [ + 77.640604361834605, + 12.870362714717 + ], + [ + 77.640540982626803, + 12.8698468526113 + ], + [ + 77.6385977488371, + 12.870148209233401 + ], + [ + 77.638525284604796, + 12.8698585202901 + ], + [ + 77.638226180009497, + 12.8699117276837 + ], + [ + 77.638197601948093, + 12.869625182281601 + ], + [ + 77.638044381634003, + 12.8696410784694 + ], + [ + 77.637188330809195, + 12.8697298887403 + ], + [ + 77.636935683939399, + 12.8697560983458 + ], + [ + 77.636934547072201, + 12.8697562163906 + ], + [ + 77.636790184092206, + 12.868531453032199 + ], + [ + 77.636690897340401, + 12.8673046981772 + ], + [ + 77.636687999505398, + 12.867263344801099 + ], + [ + 77.6343084984303, + 12.867473836370801 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "161", + "group": "BANGARAPPA NAGARA", + "Corporatio": "South", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "4", + "ward_id": "1", + "ward_name": "1 - Bangarappa Nagara", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಬಂಗಾರಪ್ಪ ನಗರ", + "dig_ward_n": "BANGARAPPA NAGARA", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "1" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.526081164367696, + 12.901211253719501 + ], + [ + 77.525941280036207, + 12.9006921553451 + ], + [ + 77.525938801438301, + 12.9006829583537 + ], + [ + 77.525602439748596, + 12.900101264603199 + ], + [ + 77.525331112100702, + 12.899592368016499 + ], + [ + 77.525058959602106, + 12.8988481604651 + ], + [ + 77.525014899494195, + 12.8987638383636 + ], + [ + 77.524931331920499, + 12.8985104034544 + ], + [ + 77.524887165649503, + 12.898415488998401 + ], + [ + 77.524874928870005, + 12.898272595736 + ], + [ + 77.524836057376206, + 12.898167036792801 + ], + [ + 77.524764408117207, + 12.8980247180936 + ], + [ + 77.524329819951902, + 12.8974763227236 + ], + [ + 77.524323555428495, + 12.897468418088801 + ], + [ + 77.524238302990895, + 12.897507612006899 + ], + [ + 77.524134796627294, + 12.8975752430703 + ], + [ + 77.524040802737304, + 12.8976156777745 + ], + [ + 77.523967798394494, + 12.897625417280301 + ], + [ + 77.523928253210897, + 12.8975851422143 + ], + [ + 77.523753893275298, + 12.897532616072301 + ], + [ + 77.5236343146141, + 12.897547322406 + ], + [ + 77.523565814720996, + 12.897604451230601 + ], + [ + 77.523469201422003, + 12.8976132890876 + ], + [ + 77.523420358848497, + 12.897621665917301 + ], + [ + 77.523349713266995, + 12.8976370292671 + ], + [ + 77.523232470671005, + 12.897655100951701 + ], + [ + 77.523158924658105, + 12.897668233530799 + ], + [ + 77.523089699993506, + 12.897653090513099 + ], + [ + 77.523046363819304, + 12.897636568329199 + ], + [ + 77.522964024180496, + 12.8975763776047 + ], + [ + 77.522888096709096, + 12.8975816275954 + ], + [ + 77.5227536649776, + 12.897550173266399 + ], + [ + 77.522658719899098, + 12.8974957508172 + ], + [ + 77.522550299475995, + 12.897417741850401 + ], + [ + 77.522507910720293, + 12.8973808820211 + ], + [ + 77.522443934015698, + 12.897372464320799 + ], + [ + 77.522391524924302, + 12.8973695818013 + ], + [ + 77.522373129930997, + 12.8973720179519 + ], + [ + 77.522347998102305, + 12.897391459422 + ], + [ + 77.522299653496901, + 12.897449522896 + ], + [ + 77.522176768484798, + 12.8974789420891 + ], + [ + 77.522066409756903, + 12.8974946881418 + ], + [ + 77.521939901615198, + 12.897507201834401 + ], + [ + 77.521841121769896, + 12.897529612261501 + ], + [ + 77.521754090568194, + 12.897575625835399 + ], + [ + 77.521677003680097, + 12.897694951650401 + ], + [ + 77.521587398609199, + 12.8977138854509 + ], + [ + 77.521513029436605, + 12.897759776859401 + ], + [ + 77.521400966465507, + 12.8977777978061 + ], + [ + 77.521332522470999, + 12.897840572387 + ], + [ + 77.521283838104495, + 12.897864758303999 + ], + [ + 77.521129307170995, + 12.8978380143555 + ], + [ + 77.521019451607401, + 12.897674187411701 + ], + [ + 77.520884769642905, + 12.89756029144 + ], + [ + 77.520737830217001, + 12.8973719759675 + ], + [ + 77.520496303328201, + 12.8969349841209 + ], + [ + 77.520448134316894, + 12.8967807264348 + ], + [ + 77.520484063553994, + 12.896632434324699 + ], + [ + 77.520577453539005, + 12.896301761859601 + ], + [ + 77.520797602296199, + 12.896098614314999 + ], + [ + 77.520811727045995, + 12.8958997113072 + ], + [ + 77.520831281827796, + 12.8957831990322 + ], + [ + 77.520855745086607, + 12.895639534874 + ], + [ + 77.520932400892306, + 12.8954197007034 + ], + [ + 77.520987541369706, + 12.8949482272953 + ], + [ + 77.521040181116206, + 12.894686838416201 + ], + [ + 77.521034680728306, + 12.894482477805299 + ], + [ + 77.520985270598601, + 12.8943191972766 + ], + [ + 77.520982705823002, + 12.894178052355899 + ], + [ + 77.520993092160893, + 12.8938357570336 + ], + [ + 77.520944404821904, + 12.893687151140901 + ], + [ + 77.520901000408799, + 12.893606255747001 + ], + [ + 77.520781738612499, + 12.893594982205499 + ], + [ + 77.520570141168605, + 12.8935597525491 + ], + [ + 77.520490771663205, + 12.893508566929899 + ], + [ + 77.5203457779335, + 12.893399287013199 + ], + [ + 77.520109396402503, + 12.893245713170201 + ], + [ + 77.519822039621303, + 12.8930598787385 + ], + [ + 77.5196638211238, + 12.893009452369 + ], + [ + 77.519457822207201, + 12.893015954028201 + ], + [ + 77.519243042420101, + 12.8929502611457 + ], + [ + 77.519036647991996, + 12.8929172387185 + ], + [ + 77.5188708918092, + 12.8929188349217 + ], + [ + 77.518720168160201, + 12.892984659735999 + ], + [ + 77.5186370327812, + 12.8931898742208 + ], + [ + 77.5185025835342, + 12.8933865479042 + ], + [ + 77.518415755532203, + 12.8933952894211 + ], + [ + 77.518242076900705, + 12.893410513870499 + ], + [ + 77.518235181672196, + 12.893411709613201 + ], + [ + 77.518044100604598, + 12.8933559518261 + ], + [ + 77.517922118719795, + 12.8933029168135 + ], + [ + 77.517859688934294, + 12.893276413132501 + ], + [ + 77.517503968260897, + 12.893161254224101 + ], + [ + 77.517342285695094, + 12.8931673277194 + ], + [ + 77.517233090492596, + 12.8931841896149 + ], + [ + 77.517115318875497, + 12.893264378171599 + ], + [ + 77.516906735932196, + 12.893473058240801 + ], + [ + 77.516908406386094, + 12.893524992744799 + ], + [ + 77.516855479126207, + 12.893585358130199 + ], + [ + 77.516776403938294, + 12.893621129174999 + ], + [ + 77.516698333047799, + 12.893642208849601 + ], + [ + 77.516632957999207, + 12.8936665544327 + ], + [ + 77.516585661909005, + 12.8937144426322 + ], + [ + 77.516550610098605, + 12.8937204266776 + ], + [ + 77.516470259543397, + 12.893743786947001 + ], + [ + 77.516415537585303, + 12.893739795972399 + ], + [ + 77.516357497814298, + 12.8937493892345 + ], + [ + 77.516341258373899, + 12.893737122496001 + ], + [ + 77.516239793205699, + 12.8937787556034 + ], + [ + 77.516184495688705, + 12.893774770117799 + ], + [ + 77.516130315400503, + 12.893767385789999 + ], + [ + 77.516075288772797, + 12.893790502339201 + ], + [ + 77.515970686199907, + 12.893806190228 + ], + [ + 77.515893675942294, + 12.893818224591801 + ], + [ + 77.515875297491405, + 12.8938097730493 + ], + [ + 77.515833537966103, + 12.8937905699095 + ], + [ + 77.515823527050003, + 12.893768078974899 + ], + [ + 77.515785247608306, + 12.8937390837678 + ], + [ + 77.515740253482207, + 12.8937293522779 + ], + [ + 77.515730356340995, + 12.893660556430101 + ], + [ + 77.515725424701799, + 12.8936278523848 + ], + [ + 77.515752904167499, + 12.893612906390199 + ], + [ + 77.515747341476199, + 12.893574561608499 + ], + [ + 77.515732162879004, + 12.893553249731101 + ], + [ + 77.515696580643507, + 12.893563756208399 + ], + [ + 77.515691536161796, + 12.8935197596329 + ], + [ + 77.515678196159101, + 12.8933945288231 + ], + [ + 77.515676751661601, + 12.8933651793203 + ], + [ + 77.515661437668001, + 12.893330316401 + ], + [ + 77.515661698159505, + 12.893298691777099 + ], + [ + 77.515627571756497, + 12.8932820795641 + ], + [ + 77.515627752883205, + 12.8932744921274 + ], + [ + 77.515628789654002, + 12.8932312456843 + ], + [ + 77.515640548834895, + 12.893198381111601 + ], + [ + 77.515640165159596, + 12.893159986513799 + ], + [ + 77.515640345745197, + 12.8931204571279 + ], + [ + 77.515660106117394, + 12.8930818687986 + ], + [ + 77.515664462209799, + 12.893056980954 + ], + [ + 77.515673321092706, + 12.893021885552001 + ], + [ + 77.515693656998394, + 12.8929832916871 + ], + [ + 77.515696060763801, + 12.8929358353914 + ], + [ + 77.515703350994499, + 12.892916566135099 + ], + [ + 77.515719725792096, + 12.8928847865338 + ], + [ + 77.515727884990696, + 12.892837274886199 + ], + [ + 77.515735547636993, + 12.8927976735438 + ], + [ + 77.515750094232999, + 12.892755747272799 + ], + [ + 77.515757215186397, + 12.8927195392243 + ], + [ + 77.515766999445702, + 12.8926618476962 + ], + [ + 77.515775327905999, + 12.8926312748415 + ], + [ + 77.5157813316237, + 12.892598465622299 + ], + [ + 77.515780891522198, + 12.8925544247628 + ], + [ + 77.515785021910702, + 12.892506951863 + ], + [ + 77.515792154143298, + 12.892471873068001 + ], + [ + 77.515779638934603, + 12.8924290777005 + ], + [ + 77.515761593994398, + 12.8924089227396 + ], + [ + 77.515735638157594, + 12.8924035255553 + ], + [ + 77.515707481708702, + 12.8924083137842 + ], + [ + 77.515665534803702, + 12.892415493354701 + ], + [ + 77.515572500001198, + 12.892436716550799 + ], + [ + 77.515496866859905, + 12.8924713247167 + ], + [ + 77.515441027922506, + 12.8924707323121 + ], + [ + 77.515405287851493, + 12.892465429180501 + ], + [ + 77.515317004007599, + 12.8925012883096 + ], + [ + 77.515244541852496, + 12.8925652293263 + ], + [ + 77.515241483472096, + 12.892604786395299 + ], + [ + 77.515255917038999, + 12.8926667625063 + ], + [ + 77.515271524267803, + 12.892730986053101 + ], + [ + 77.515272133524803, + 12.892791965727699 + ], + [ + 77.515267032347694, + 12.8929151152062 + ], + [ + 77.515231687098805, + 12.892949335925699 + ], + [ + 77.515169043056304, + 12.8929589731726 + ], + [ + 77.515102878049703, + 12.892961868088801 + ], + [ + 77.515059046442303, + 12.892953254636099 + ], + [ + 77.515028328072205, + 12.892989689570401 + ], + [ + 77.515022290586998, + 12.892993870242501 + ], + [ + 77.514982024871301, + 12.893021756898699 + ], + [ + 77.514977522588893, + 12.8930191123053 + ], + [ + 77.514953653980001, + 12.8930050892453 + ], + [ + 77.514941364487299, + 12.8929848788879 + ], + [ + 77.514929131402795, + 12.892970314796999 + ], + [ + 77.514890253859605, + 12.8929966639067 + ], + [ + 77.514837958294194, + 12.893005072222399 + ], + [ + 77.514775088594405, + 12.8929921243073 + ], + [ + 77.514714284191001, + 12.8929554399158 + ], + [ + 77.514636107294805, + 12.892896581923001 + ], + [ + 77.514618010654601, + 12.8928829568911 + ], + [ + 77.514578738297601, + 12.8928697820742 + ], + [ + 77.514524434120801, + 12.8928499755757 + ], + [ + 77.514468990141495, + 12.8928313093831 + ], + [ + 77.514422540250905, + 12.8928486963189 + ], + [ + 77.514402268992001, + 12.892861141594 + ], + [ + 77.514394507767307, + 12.8928659062138 + ], + [ + 77.514372106657504, + 12.8928706389895 + ], + [ + 77.514338623585701, + 12.892860796573199 + ], + [ + 77.514300017009305, + 12.892856650211501 + ], + [ + 77.514194590910904, + 12.8928474992796 + ], + [ + 77.514112400854103, + 12.892859582867599 + ], + [ + 77.514084289400699, + 12.8928688879536 + ], + [ + 77.514018395001202, + 12.8928988846965 + ], + [ + 77.513969586803398, + 12.892968595464501 + ], + [ + 77.513961076941598, + 12.8929807496867 + ], + [ + 77.513970454389195, + 12.893055197501999 + ], + [ + 77.513971063764899, + 12.8930585797336 + ], + [ + 77.513988409049304, + 12.893066318569 + ], + [ + 77.514010768845694, + 12.8930951644305 + ], + [ + 77.514032725598199, + 12.893123490138599 + ], + [ + 77.514072979520193, + 12.893177312656301 + ], + [ + 77.514121889193603, + 12.893233310694701 + ], + [ + 77.514155642619897, + 12.893327852725101 + ], + [ + 77.514178223868896, + 12.893398785518899 + ], + [ + 77.514190298343607, + 12.893512735074999 + ], + [ + 77.514209426012698, + 12.8936412985439 + ], + [ + 77.514218690807397, + 12.8937044537882 + ], + [ + 77.514241272127407, + 12.8937753865651 + ], + [ + 77.514259779522007, + 12.8938418410485 + ], + [ + 77.514286322024205, + 12.893905959565201 + ], + [ + 77.514304942239505, + 12.893983706580601 + ], + [ + 77.514340716084206, + 12.894049995071899 + ], + [ + 77.514383080403206, + 12.894142195533099 + ], + [ + 77.514390799119596, + 12.894223435418199 + ], + [ + 77.514378813601496, + 12.894348909855101 + ], + [ + 77.514363792692706, + 12.8944010049221 + ], + [ + 77.514337298049796, + 12.8944296463696 + ], + [ + 77.514328369004701, + 12.894439298357 + ], + [ + 77.514314250187695, + 12.8944545612145 + ], + [ + 77.514303021223697, + 12.894482903218799 + ], + [ + 77.514298177622706, + 12.8945212342616 + ], + [ + 77.514295019670101, + 12.8945462244311 + ], + [ + 77.514278159297106, + 12.8945870435569 + ], + [ + 77.514239066848504, + 12.8946495342853 + ], + [ + 77.514225432190599, + 12.8946843187108 + ], + [ + 77.514217737428993, + 12.8947039487197 + ], + [ + 77.514187675502995, + 12.8948249439583 + ], + [ + 77.514166828544106, + 12.8949088527015 + ], + [ + 77.514102231094398, + 12.8950111162852 + ], + [ + 77.514102546916007, + 12.8950427353988 + ], + [ + 77.514098224505403, + 12.895071011011 + ], + [ + 77.514109396811406, + 12.895094620226301 + ], + [ + 77.514184567908103, + 12.8951289078461 + ], + [ + 77.5142286208348, + 12.895143780441 + ], + [ + 77.514246366021695, + 12.895149771651999 + ], + [ + 77.514349468340399, + 12.895156686008299 + ], + [ + 77.514395749193, + 12.8951799576786 + ], + [ + 77.514424831252796, + 12.8952101708634 + ], + [ + 77.514460244365296, + 12.895240323175599 + ], + [ + 77.514498016091494, + 12.895276099615501 + ], + [ + 77.514535945770007, + 12.895327685599099 + ], + [ + 77.514540256658194, + 12.895355878204599 + ], + [ + 77.514542964996394, + 12.895396509200999 + ], + [ + 77.514541328415604, + 12.8954631573006 + ], + [ + 77.514540772552394, + 12.8954700192283 + ], + [ + 77.514540662683501, + 12.895471374615701 + ], + [ + 77.514533642828397, + 12.895558097612399 + ], + [ + 77.514489020287996, + 12.895700826272 + ], + [ + 77.514458786671995, + 12.895785819117799 + ], + [ + 77.514418633101698, + 12.8959149524638 + ], + [ + 77.514395667074794, + 12.8960360150247 + ], + [ + 77.514350762381397, + 12.8961505123425 + ], + [ + 77.514347739437, + 12.896156472816701 + ], + [ + 77.514292619959207, + 12.896265136930699 + ], + [ + 77.514245570922398, + 12.8963954659325 + ], + [ + 77.514196400135503, + 12.896543885128899 + ], + [ + 77.514186619092996, + 12.896642221036799 + ], + [ + 77.514184369505003, + 12.8966648425597 + ], + [ + 77.514184719222598, + 12.896699849428799 + ], + [ + 77.514187431778595, + 12.8967149053056 + ], + [ + 77.514192031985303, + 12.896740436165 + ], + [ + 77.514214139914401, + 12.8967639402206 + ], + [ + 77.514214459205903, + 12.896795900813601 + ], + [ + 77.514214467075902, + 12.8967966885811 + ], + [ + 77.514212570995298, + 12.8968373638525 + ], + [ + 77.514219454877306, + 12.896892636418899 + ], + [ + 77.5142224339873, + 12.896960369511699 + ], + [ + 77.514223054478705, + 12.8970224784698 + ], + [ + 77.514217152091106, + 12.897065450984201 + ], + [ + 77.514197413843803, + 12.8971062977998 + ], + [ + 77.514185033696293, + 12.897134650885601 + ], + [ + 77.5141854623987, + 12.89717756253 + ], + [ + 77.514170509080799, + 12.897236433137101 + ], + [ + 77.514139210973795, + 12.8972808071891 + ], + [ + 77.514133617000397, + 12.8972887384998 + ], + [ + 77.514105335661299, + 12.897338702348801 + ], + [ + 77.514086274468596, + 12.8973897069137 + ], + [ + 77.514021800631397, + 12.897504392376501 + ], + [ + 77.514033063333201, + 12.897537035603699 + ], + [ + 77.514033010163701, + 12.897537521288999 + ], + [ + 77.514028842457094, + 12.8975754745044 + ], + [ + 77.514009538004899, + 12.897592543616399 + ], + [ + 77.513979773397395, + 12.897618862031001 + ], + [ + 77.513940398513597, + 12.897653121452899 + ], + [ + 77.513800934480102, + 12.897774127658799 + ], + [ + 77.513695583322303, + 12.897865536417999 + ], + [ + 77.513489318715699, + 12.898076451295699 + ], + [ + 77.513469715643396, + 12.8981308491419 + ], + [ + 77.513466442462203, + 12.8982065479103 + ], + [ + 77.513486744561007, + 12.898279761334001 + ], + [ + 77.513540169553295, + 12.898326681007701 + ], + [ + 77.513587014479697, + 12.898362291691299 + ], + [ + 77.513614991701104, + 12.8983835592367 + ], + [ + 77.513655438371302, + 12.8984565789812 + ], + [ + 77.513680254771302, + 12.898520714077 + ], + [ + 77.513713467653403, + 12.8985610518336 + ], + [ + 77.513735835199597, + 12.898610528749099 + ], + [ + 77.513741177451607, + 12.8986554829377 + ], + [ + 77.513745890198393, + 12.898695134270399 + ], + [ + 77.513741855565996, + 12.898724008845999 + ], + [ + 77.513719030081802, + 12.8988873841281 + ], + [ + 77.513661247941698, + 12.899038144854901 + ], + [ + 77.513615575516397, + 12.899075852902399 + ], + [ + 77.513395812449005, + 12.899318519803399 + ], + [ + 77.513369033424397, + 12.899343086536 + ], + [ + 77.513224125609696, + 12.8994760222468 + ], + [ + 77.513115355413007, + 12.8995933921546 + ], + [ + 77.513098607442203, + 12.899645503833099 + ], + [ + 77.513089804521698, + 12.8996862455136 + ], + [ + 77.513085343576606, + 12.8996918087186 + ], + [ + 77.513066370911005, + 12.899715469185301 + ], + [ + 77.513034557036406, + 12.8997459623995 + ], + [ + 77.512992308540902, + 12.899779790402199 + ], + [ + 77.512962130591305, + 12.899815382545601 + ], + [ + 77.512732165217798, + 12.9000358029366 + ], + [ + 77.512659338734096, + 12.900099212334201 + ], + [ + 77.512631248577605, + 12.9001683734593 + ], + [ + 77.512630703780303, + 12.9001765317945 + ], + [ + 77.512625740649995, + 12.9002508699134 + ], + [ + 77.512650793900903, + 12.900338719466999 + ], + [ + 77.512730378972293, + 12.900411363182201 + ], + [ + 77.512755849417204, + 12.9004279223998 + ], + [ + 77.5128056983053, + 12.9004603312396 + ], + [ + 77.513086030057096, + 12.900633817286 + ], + [ + 77.513169271494903, + 12.900784351714099 + ], + [ + 77.513265367210096, + 12.900953961687501 + ], + [ + 77.513313065698497, + 12.9010376234815 + ], + [ + 77.513347976916407, + 12.9010988552784 + ], + [ + 77.5134408229586, + 12.901173629928699 + ], + [ + 77.513465775037901, + 12.9011757192243 + ], + [ + 77.513537607901597, + 12.901181734276699 + ], + [ + 77.513634562086594, + 12.9012067773968 + ], + [ + 77.513645836282194, + 12.901240549864999 + ], + [ + 77.513703403811704, + 12.901298723173401 + ], + [ + 77.513928900538204, + 12.9013993267611 + ], + [ + 77.513986332749099, + 12.901443948944401 + ], + [ + 77.514030527005801, + 12.9014886984202 + ], + [ + 77.514081526482002, + 12.9015232181805 + ], + [ + 77.514132221266095, + 12.901527248084401 + ], + [ + 77.514191549511494, + 12.901531194945401 + ], + [ + 77.514219989153304, + 12.9015546380242 + ], + [ + 77.514235890532802, + 12.901590624670501 + ], + [ + 77.514236432256396, + 12.901644828832501 + ], + [ + 77.514234818442304, + 12.9017137354307 + ], + [ + 77.514220418083994, + 12.901827939485001 + ], + [ + 77.514199494644402, + 12.901923007125699 + ], + [ + 77.514154803749307, + 12.902058960388199 + ], + [ + 77.514054339379797, + 12.9020859019417 + ], + [ + 77.513990474185704, + 12.902088774877299 + ], + [ + 77.513850160334499, + 12.9021025472488 + ], + [ + 77.513742495717594, + 12.9021001945141 + ], + [ + 77.513647944983305, + 12.9020852926475 + ], + [ + 77.513586359461399, + 12.902085884839 + ], + [ + 77.513529513859794, + 12.902099983789 + ], + [ + 77.5134392290215, + 12.9021087574388 + ], + [ + 77.513375521740798, + 12.902127439783399 + ], + [ + 77.513301420415203, + 12.9021428339609 + ], + [ + 77.513217963357405, + 12.9021436363528 + ], + [ + 77.513178373405395, + 12.902156439968101 + ], + [ + 77.513134630389999, + 12.902156860515399 + ], + [ + 77.513083811362407, + 12.902140408640699 + ], + [ + 77.513037506619796, + 12.9021148784541 + ], + [ + 77.512958830805402, + 12.902101427411599 + ], + [ + 77.512956205170397, + 12.9021009783201 + ], + [ + 77.512736384075097, + 12.902107608872299 + ], + [ + 77.512688622148801, + 12.9021228138428 + ], + [ + 77.512648593165594, + 12.902135557454001 + ], + [ + 77.512561389076794, + 12.902164629732299 + ], + [ + 77.512499803483905, + 12.9021652216716 + ], + [ + 77.512405331659295, + 12.9021582241304 + ], + [ + 77.512343746060594, + 12.9021588160326 + ], + [ + 77.512277679981494, + 12.9021718739784 + ], + [ + 77.512179664099605, + 12.9022134730458 + ], + [ + 77.512061469514904, + 12.902251877907499 + ], + [ + 77.512006147452098, + 12.9022456333602 + ], + [ + 77.511962190132706, + 12.902224597863601 + ], + [ + 77.511906653830593, + 12.902196897442 + ], + [ + 77.511846778091098, + 12.9021898861842 + ], + [ + 77.511772953232693, + 12.902181241717701 + ], + [ + 77.511708997681097, + 12.902175080060299 + ], + [ + 77.511678188223996, + 12.902144883266599 + ], + [ + 77.511614243954298, + 12.902139850839401 + ], + [ + 77.511469821223102, + 12.9022033534538 + ], + [ + 77.511327937417505, + 12.902290548256101 + ], + [ + 77.511002615205697, + 12.902511640796201 + ], + [ + 77.510970540529399, + 12.9025853575917 + ], + [ + 77.510984319658405, + 12.9026394347206 + ], + [ + 77.510993313892797, + 12.902675487981799 + ], + [ + 77.511039686246505, + 12.9027077940856 + ], + [ + 77.511110526223504, + 12.9027116310219 + ], + [ + 77.511176152266103, + 12.902712129935299 + ], + [ + 77.511209515322804, + 12.9027321424929 + ], + [ + 77.511222479551193, + 12.902739918977399 + ], + [ + 77.5112579837851, + 12.902779105630501 + ], + [ + 77.511277925747706, + 12.902758585488399 + ], + [ + 77.511310586575206, + 12.902743589971401 + ], + [ + 77.511337197997094, + 12.9027568866734 + ], + [ + 77.511317436422203, + 12.9027954749121 + ], + [ + 77.511269449444498, + 12.902832075593 + ], + [ + 77.511272416868493, + 12.9028986795692 + ], + [ + 77.511269019220606, + 12.9029619566042 + ], + [ + 77.511265353160098, + 12.9029739929006 + ], + [ + 77.511247282288295, + 12.903033315380499 + ], + [ + 77.511207318180794, + 12.903181646035 + ], + [ + 77.511171202649393, + 12.9033118698888 + ], + [ + 77.511111488111297, + 12.9034999180383 + ], + [ + 77.511086026509304, + 12.9036018054331 + ], + [ + 77.511070089682207, + 12.903735223522 + ], + [ + 77.511068565281604, + 12.9038131643005 + ], + [ + 77.511074308496603, + 12.903927174912599 + ], + [ + 77.511079168544398, + 12.903962499908401 + ], + [ + 77.511082997827202, + 12.903990335828301 + ], + [ + 77.511085457946507, + 12.904006123292101 + ], + [ + 77.511087940614303, + 12.9040241692677 + ], + [ + 77.511088161984802, + 12.9040251248417 + ], + [ + 77.511088374724395, + 12.904026046166001 + ], + [ + 77.511111976263805, + 12.904026962331701 + ], + [ + 77.511535275389207, + 12.9040433926418 + ], + [ + 77.512022592401607, + 12.9040387094898 + ], + [ + 77.512157168448994, + 12.904033013333899 + ], + [ + 77.5123148877571, + 12.904026338433299 + ], + [ + 77.513053330601807, + 12.9039331178083 + ], + [ + 77.513217123494599, + 12.9039227329766 + ], + [ + 77.513845357322893, + 12.9038100507483 + ], + [ + 77.515357682753603, + 12.903538787417901 + ], + [ + 77.517186160309393, + 12.903138707777901 + ], + [ + 77.517420918081598, + 12.903091297842501 + ], + [ + 77.518976027156398, + 12.9027772365973 + ], + [ + 77.519817666040794, + 12.9026304235909 + ], + [ + 77.520299960608298, + 12.902609093345101 + ], + [ + 77.521311075925198, + 12.9028500225523 + ], + [ + 77.521093751824296, + 12.9038406580092 + ], + [ + 77.521066296884399, + 12.9053913148954 + ], + [ + 77.521075216830397, + 12.908207057482199 + ], + [ + 77.520980363111804, + 12.911253027331201 + ], + [ + 77.520831856431897, + 12.9130878481793 + ], + [ + 77.520695840968202, + 12.914878255814701 + ], + [ + 77.522960914814007, + 12.914756119479801 + ], + [ + 77.523227394089901, + 12.915988586131199 + ], + [ + 77.523540368447897, + 12.9170128658481 + ], + [ + 77.523224618264095, + 12.9171322263572 + ], + [ + 77.523406434853399, + 12.9178275707179 + ], + [ + 77.523792968594904, + 12.917798424547099 + ], + [ + 77.524110106691595, + 12.9184868293433 + ], + [ + 77.524090675910998, + 12.9188754449541 + ], + [ + 77.524031126627307, + 12.919225024609 + ], + [ + 77.524564888960299, + 12.9192267137303 + ], + [ + 77.524623634462898, + 12.9205936811189 + ], + [ + 77.524687478456102, + 12.920915676910701 + ], + [ + 77.524705521323796, + 12.921291801305401 + ], + [ + 77.523990587716, + 12.921294198209701 + ], + [ + 77.524086867630501, + 12.922079639617399 + ], + [ + 77.523102109908706, + 12.9222181475645 + ], + [ + 77.523320384253907, + 12.924017662232499 + ], + [ + 77.522998388462099, + 12.924117591961 + ], + [ + 77.5231926962675, + 12.9250919068137 + ], + [ + 77.523017235900795, + 12.925351985340599 + ], + [ + 77.522805697322596, + 12.925477727139 + ], + [ + 77.522408178741799, + 12.9256919313192 + ], + [ + 77.521874488635007, + 12.9259361365975 + ], + [ + 77.520034516273398, + 12.9265822100175 + ], + [ + 77.520904109801904, + 12.929925238835301 + ], + [ + 77.519048388361, + 12.930873951936899 + ], + [ + 77.519240770767794, + 12.931255075423 + ], + [ + 77.518766642043303, + 12.9317150271517 + ], + [ + 77.517691370087206, + 12.932223060795801 + ], + [ + 77.517549043953096, + 12.932611692010701 + ], + [ + 77.517672966681502, + 12.933030768576799 + ], + [ + 77.518028272382693, + 12.933674760160301 + ], + [ + 77.518078237246996, + 12.9344075781692 + ], + [ + 77.517823822351204, + 12.9347365637369 + ], + [ + 77.517936670131604, + 12.9351348445265 + ], + [ + 77.518294526687697, + 12.935984628697 + ], + [ + 77.518338768079303, + 12.9363852792314 + ], + [ + 77.518422935756007, + 12.936388738934101 + ], + [ + 77.518551586422802, + 12.936415730296799 + ], + [ + 77.518964020817606, + 12.9364964481512 + ], + [ + 77.519302965959994, + 12.9365970743759 + ], + [ + 77.519335326664105, + 12.9366091846305 + ], + [ + 77.519776739165906, + 12.936766417264 + ], + [ + 77.519858079341304, + 12.936795671164701 + ], + [ + 77.519902118611498, + 12.936811509190299 + ], + [ + 77.519971740188197, + 12.936836436578201 + ], + [ + 77.520077185763597, + 12.936874190515301 + ], + [ + 77.520355260079498, + 12.936990085103901 + ], + [ + 77.520645665366203, + 12.9371871745671 + ], + [ + 77.521017643416101, + 12.9375957926047 + ], + [ + 77.521119182192905, + 12.937707982036301 + ], + [ + 77.521177738664903, + 12.9377726816481 + ], + [ + 77.521372395514504, + 12.93795149594 + ], + [ + 77.521720112668305, + 12.938237247636801 + ], + [ + 77.521998950688399, + 12.9384287993432 + ], + [ + 77.522318841623601, + 12.9386380231581 + ], + [ + 77.522593506903505, + 12.9388045735211 + ], + [ + 77.522663485820601, + 12.9388470069721 + ], + [ + 77.522876190340696, + 12.938988376529901 + ], + [ + 77.523200513469405, + 12.939294680403799 + ], + [ + 77.5233363184648, + 12.9394485841564 + ], + [ + 77.5233536694805, + 12.9394682476387 + ], + [ + 77.523454979568797, + 12.939581331586901 + ], + [ + 77.523750851326994, + 12.9399206611078 + ], + [ + 77.523783462598502, + 12.9399576140066 + ], + [ + 77.5239580781965, + 12.9401436470172 + ], + [ + 77.524005182348802, + 12.940193760609301 + ], + [ + 77.524069196928593, + 12.9402620312488 + ], + [ + 77.524188636936998, + 12.9404031739389 + ], + [ + 77.524271367897398, + 12.940500625509699 + ], + [ + 77.524323225803599, + 12.940562237668599 + ], + [ + 77.524441855817201, + 12.9407372676654 + ], + [ + 77.524516668166299, + 12.9408534888247 + ], + [ + 77.524576956609096, + 12.9409471479446 + ], + [ + 77.5246085305278, + 12.940995404249801 + ], + [ + 77.524711008666799, + 12.941167202427399 + ], + [ + 77.524741419974404, + 12.941214340616 + ], + [ + 77.524883900021706, + 12.9414357001667 + ], + [ + 77.524987058970794, + 12.9415959405728 + ], + [ + 77.525086489763495, + 12.9417508277682 + ], + [ + 77.525422788057895, + 12.942273846969799 + ], + [ + 77.525596293202, + 12.942524010909001 + ], + [ + 77.525661134748105, + 12.942617118655701 + ], + [ + 77.525746431333403, + 12.9427405206084 + ], + [ + 77.526105736910296, + 12.9432610567598 + ], + [ + 77.526173502647296, + 12.9433586533642 + ], + [ + 77.526303221771997, + 12.9435482560837 + ], + [ + 77.526318415444507, + 12.9435706957973 + ], + [ + 77.526470982677097, + 12.9437939330014 + ], + [ + 77.526475599336493, + 12.9438006887373 + ], + [ + 77.526491380997896, + 12.943824252084401 + ], + [ + 77.526538127586903, + 12.9438926892191 + ], + [ + 77.526767708010595, + 12.944108427855999 + ], + [ + 77.526939752517293, + 12.9442705153559 + ], + [ + 77.527180373552298, + 12.9444963105871 + ], + [ + 77.527566896690701, + 12.944860729670699 + ], + [ + 77.527585353279605, + 12.944879243634199 + ], + [ + 77.527890264289795, + 12.9451851040899 + ], + [ + 77.528107185777102, + 12.945172836527099 + ], + [ + 77.528257950267999, + 12.945165727130799 + ], + [ + 77.528313263792697, + 12.945149179037699 + ], + [ + 77.528566179591607, + 12.9450735180801 + ], + [ + 77.528915085706103, + 12.944961715061901 + ], + [ + 77.529033733157206, + 12.944909743021 + ], + [ + 77.5291769103614, + 12.9448460668333 + ], + [ + 77.529210260769801, + 12.944831234210399 + ], + [ + 77.529223542175302, + 12.944822964975801 + ], + [ + 77.529336545271306, + 12.944752604006499 + ], + [ + 77.5294442582546, + 12.944685536022901 + ], + [ + 77.529505248681104, + 12.9446250886493 + ], + [ + 77.529557582374295, + 12.944562466598899 + ], + [ + 77.529632452326695, + 12.944451063876899 + ], + [ + 77.529839792176105, + 12.944117023291 + ], + [ + 77.529984265403002, + 12.943828766782399 + ], + [ + 77.530113725404803, + 12.9436502026052 + ], + [ + 77.530198712766193, + 12.943541459901599 + ], + [ + 77.530209781015998, + 12.9435273006683 + ], + [ + 77.530422846195805, + 12.9433614768823 + ], + [ + 77.530515703255702, + 12.943206984236101 + ], + [ + 77.530536455794902, + 12.943167130947799 + ], + [ + 77.530703737415195, + 12.942845888220701 + ], + [ + 77.530709179011794, + 12.9428354390761 + ], + [ + 77.530870939145004, + 12.9425247980144 + ], + [ + 77.531126596472006, + 12.9420728358054 + ], + [ + 77.531163363038203, + 12.942008106061699 + ], + [ + 77.531877233735102, + 12.9407532462675 + ], + [ + 77.531903602623103, + 12.9407114474118 + ], + [ + 77.531909103057302, + 12.940702728746601 + ], + [ + 77.532269343734598, + 12.940131685789501 + ], + [ + 77.5324802859719, + 12.939783852932701 + ], + [ + 77.532507529525702, + 12.9397389312704 + ], + [ + 77.532559073780504, + 12.939653937478001 + ], + [ + 77.532666866306101, + 12.939476192111099 + ], + [ + 77.532872979093796, + 12.9391353862844 + ], + [ + 77.533016721097596, + 12.9389006888344 + ], + [ + 77.533019099797997, + 12.9388968042685 + ], + [ + 77.533161260115506, + 12.9386650367623 + ], + [ + 77.533371639767495, + 12.9383479055316 + ], + [ + 77.5333734815257, + 12.938345123000801 + ], + [ + 77.533373672057493, + 12.938344835651201 + ], + [ + 77.533444499829997, + 12.938237823728301 + ], + [ + 77.533447623548597, + 12.938233103434399 + ], + [ + 77.5336263889495, + 12.937920796678799 + ], + [ + 77.533711130434398, + 12.937786114299699 + ], + [ + 77.533822999654106, + 12.9376083164527 + ], + [ + 77.533846503454896, + 12.937541456746899 + ], + [ + 77.533876795475294, + 12.9374381779418 + ], + [ + 77.533889355170899, + 12.9373953549385 + ], + [ + 77.533971248162601, + 12.937165825380999 + ], + [ + 77.533971735435699, + 12.9371644582051 + ], + [ + 77.533998525484293, + 12.9370893711387 + ], + [ + 77.534131778351195, + 12.9366600548104 + ], + [ + 77.534248853490098, + 12.9365098436151 + ], + [ + 77.534295618349006, + 12.936466468628399 + ], + [ + 77.533908415984698, + 12.935976712739301 + ], + [ + 77.533903311037704, + 12.935958546477099 + ], + [ + 77.533822677159904, + 12.935671594795901 + ], + [ + 77.533805953074804, + 12.9356120791383 + ], + [ + 77.533750096947003, + 12.9354133034497 + ], + [ + 77.533667894695199, + 12.9351207680504 + ], + [ + 77.533649849336001, + 12.9350565499665 + ], + [ + 77.533095789041099, + 12.9350890375504 + ], + [ + 77.533157822963403, + 12.934939554823201 + ], + [ + 77.533159321067103, + 12.934935944437701 + ], + [ + 77.533189936938896, + 12.934862168267101 + ], + [ + 77.533383786783602, + 12.9343950422322 + ], + [ + 77.533428932151295, + 12.9342862534651 + ], + [ + 77.533454354007702, + 12.934224993899999 + ], + [ + 77.533431982496495, + 12.9341912540888 + ], + [ + 77.533429801274806, + 12.9341879640392 + ], + [ + 77.533447634412298, + 12.9341866614614 + ], + [ + 77.533513524038, + 12.9341555290899 + ], + [ + 77.5335474119248, + 12.934090827253501 + ], + [ + 77.533574774960599, + 12.9340069908492 + ], + [ + 77.533595622691806, + 12.933905147323699 + ], + [ + 77.533660706870407, + 12.933623308299101 + ], + [ + 77.533694931780204, + 12.933534887857901 + ], + [ + 77.533735003235705, + 12.933455443566301 + ], + [ + 77.533757019415205, + 12.933412310984901 + ], + [ + 77.533785913564301, + 12.933309262659201 + ], + [ + 77.533815794710904, + 12.933246858430101 + ], + [ + 77.533852190194096, + 12.933202460421599 + ], + [ + 77.533892854519095, + 12.9331817371671 + ], + [ + 77.533939785850706, + 12.933160728959599 + ], + [ + 77.533980537856905, + 12.933142487592299 + ], + [ + 77.534097857297496, + 12.933073587106501 + ], + [ + 77.534098799735801, + 12.933072690737101 + ], + [ + 77.534132639860104, + 12.9330404981831 + ], + [ + 77.534151937496503, + 12.933013206429401 + ], + [ + 77.534163409858394, + 12.932952110384401 + ], + [ + 77.534168310840002, + 12.932867361962201 + ], + [ + 77.534167341518994, + 12.9327713771349 + ], + [ + 77.534158987589606, + 12.9327118551347 + ], + [ + 77.534144389814202, + 12.9326078452383 + ], + [ + 77.534152317193502, + 12.9325377488843 + ], + [ + 77.534164273954403, + 12.9324676133824 + ], + [ + 77.534160135994696, + 12.9323998929399 + ], + [ + 77.534160162874997, + 12.9323221052642 + ], + [ + 77.534160248607293, + 12.9320689940224 + ], + [ + 77.534167224664301, + 12.932007852220799 + ], + [ + 77.534168477845995, + 12.931996864627701 + ], + [ + 77.534176114792203, + 12.9319299314533 + ], + [ + 77.534176498688396, + 12.9318032135064 + ], + [ + 77.534176911657795, + 12.931666785627 + ], + [ + 77.534182855403998, + 12.9315142664242 + ], + [ + 77.534174626253005, + 12.931321780544501 + ], + [ + 77.534173064752395, + 12.9312852673034 + ], + [ + 77.534173057584397, + 12.931285104747399 + ], + [ + 77.534167208642401, + 12.9308198717656 + ], + [ + 77.534165851817903, + 12.9306854929861 + ], + [ + 77.534240744474602, + 12.9304058174255 + ], + [ + 77.534503568029606, + 12.9299808894311 + ], + [ + 77.534573055113, + 12.929893201547699 + ], + [ + 77.534665002952096, + 12.929777168444399 + ], + [ + 77.534779442122201, + 12.9295942322064 + ], + [ + 77.5348701493579, + 12.9293415072203 + ], + [ + 77.534877991345596, + 12.9293199734946 + ], + [ + 77.535051559802596, + 12.929234715576399 + ], + [ + 77.534956151562994, + 12.9288374125475 + ], + [ + 77.534937379948104, + 12.9287592419711 + ], + [ + 77.534924756024907, + 12.928706285469801 + ], + [ + 77.534890673675207, + 12.928409599196 + ], + [ + 77.534882083684593, + 12.928072008852901 + ], + [ + 77.534889691680704, + 12.9279702939941 + ], + [ + 77.534900365683299, + 12.927830151658201 + ], + [ + 77.534938999443597, + 12.9276084249314 + ], + [ + 77.535069634258207, + 12.927319173096199 + ], + [ + 77.535248273296205, + 12.927166105411599 + ], + [ + 77.535468396465305, + 12.9270736190929 + ], + [ + 77.535540858007593, + 12.927064128687 + ], + [ + 77.535608099361497, + 12.9270553214213 + ], + [ + 77.536086825862796, + 12.926918535850699 + ], + [ + 77.536650730839099, + 12.926779792118101 + ], + [ + 77.536891211066006, + 12.9267650314685 + ], + [ + 77.536906944091697, + 12.9265559501791 + ], + [ + 77.536852845660803, + 12.926329478305201 + ], + [ + 77.536753787571499, + 12.9261542638767 + ], + [ + 77.536730739653194, + 12.9260761314367 + ], + [ + 77.5366900067404, + 12.925938050129901 + ], + [ + 77.536650788503707, + 12.9256459316312 + ], + [ + 77.536642345270394, + 12.925323021715901 + ], + [ + 77.536696457865403, + 12.9250092187993 + ], + [ + 77.536708102262196, + 12.9249416919914 + ], + [ + 77.536739686477503, + 12.924758533579 + ], + [ + 77.536805076517794, + 12.924621247519401 + ], + [ + 77.5367191028907, + 12.9242595642166 + ], + [ + 77.536682820322198, + 12.9239730638325 + ], + [ + 77.536742595453802, + 12.923678853756799 + ], + [ + 77.536901466609507, + 12.923506778844301 + ], + [ + 77.5370487009979, + 12.923436457804801 + ], + [ + 77.537196437278098, + 12.9234158228794 + ], + [ + 77.537293013232798, + 12.9234024612811 + ], + [ + 77.537490657036102, + 12.9234784644414 + ], + [ + 77.5376433239433, + 12.9235469993428 + ], + [ + 77.537808745504705, + 12.9236244448545 + ], + [ + 77.537971124379794, + 12.923742576131099 + ], + [ + 77.538036022630095, + 12.923816447254399 + ], + [ + 77.5380971993972, + 12.923886082019999 + ], + [ + 77.538145250244696, + 12.9239407762888 + ], + [ + 77.538252081148201, + 12.924087681063501 + ], + [ + 77.538314538381996, + 12.924172903571501 + ], + [ + 77.538354672615597, + 12.924270765926799 + ], + [ + 77.538380695563106, + 12.924339402645501 + ], + [ + 77.538417232673595, + 12.9243661514666 + ], + [ + 77.5385107042584, + 12.9244442961964 + ], + [ + 77.538578182308697, + 12.9245136589954 + ], + [ + 77.538693339582096, + 12.924629990295699 + ], + [ + 77.538770973137801, + 12.924678926099199 + ], + [ + 77.538868752937702, + 12.9247276658852 + ], + [ + 77.538967887503802, + 12.924682657159 + ], + [ + 77.539147504082294, + 12.9246267013097 + ], + [ + 77.539311681981701, + 12.9245810596331 + ], + [ + 77.539415131116797, + 12.9245642422919 + ], + [ + 77.539571985913199, + 12.9245344824875 + ], + [ + 77.539680062676993, + 12.924519878697 + ], + [ + 77.539717858469899, + 12.9245003121074 + ], + [ + 77.539948490990596, + 12.9243659348303 + ], + [ + 77.540125786209003, + 12.924251275297999 + ], + [ + 77.540228469744306, + 12.924158799347101 + ], + [ + 77.540254719076103, + 12.924135957059899 + ], + [ + 77.5402762994715, + 12.9240499171843 + ], + [ + 77.540266141686502, + 12.923956280845299 + ], + [ + 77.540272070999904, + 12.9238026329144 + ], + [ + 77.540291702527796, + 12.9234670279022 + ], + [ + 77.540243899736794, + 12.923237107816799 + ], + [ + 77.540134000622501, + 12.923014568072601 + ], + [ + 77.540069647300498, + 12.9227418940514 + ], + [ + 77.539989300412103, + 12.922521615282401 + ], + [ + 77.539971955024598, + 12.922474061769201 + ], + [ + 77.539890238157696, + 12.9222489888912 + ], + [ + 77.539826332960402, + 12.9221344180018 + ], + [ + 77.539739990863694, + 12.922021194733301 + ], + [ + 77.539694603088606, + 12.921973074704001 + ], + [ + 77.539631554443503, + 12.9219431959401 + ], + [ + 77.539545744448006, + 12.921939513436699 + ], + [ + 77.539384313981202, + 12.921915109105999 + ], + [ + 77.5393345384133, + 12.921888489157899 + ], + [ + 77.539307313984395, + 12.9218718138883 + ], + [ + 77.539297305216806, + 12.921792857400099 + ], + [ + 77.539296277712097, + 12.9216912267261 + ], + [ + 77.539272630615599, + 12.9215728759767 + ], + [ + 77.539257747893799, + 12.9214103956726 + ], + [ + 77.539220103855897, + 12.9212741116086 + ], + [ + 77.539163869508101, + 12.921121068244901 + ], + [ + 77.539049493337998, + 12.920910993980799 + ], + [ + 77.538940167312305, + 12.920744914817201 + ], + [ + 77.538911379323295, + 12.920573534947501 + ], + [ + 77.538914876949406, + 12.9204639548385 + ], + [ + 77.538913587193093, + 12.9203363518301 + ], + [ + 77.538890248686201, + 12.920248490193099 + ], + [ + 77.538885409158397, + 12.9201683540334 + ], + [ + 77.538883392897304, + 12.920163514764299 + ], + [ + 77.538816973745497, + 12.9200041357486 + ], + [ + 77.538797522582698, + 12.9199591512557 + ], + [ + 77.538756927734397, + 12.9198725867444 + ], + [ + 77.538735105741594, + 12.9198208492497 + ], + [ + 77.5386923797479, + 12.919751245564701 + ], + [ + 77.538684782893199, + 12.919740026023799 + ], + [ + 77.538672017097795, + 12.919729986087299 + ], + [ + 77.538598334555004, + 12.919673106157701 + ], + [ + 77.538558264761704, + 12.9196384861974 + ], + [ + 77.538550684352103, + 12.9195719287569 + ], + [ + 77.538542311541306, + 12.919483921531199 + ], + [ + 77.5385381162464, + 12.9194105551242 + ], + [ + 77.538551485468503, + 12.9193663808107 + ], + [ + 77.5385620908296, + 12.9193335267866 + ], + [ + 77.538576588411004, + 12.919287082818601 + ], + [ + 77.538656251000901, + 12.9191338678978 + ], + [ + 77.538668065818101, + 12.9191111454059 + ], + [ + 77.5387315736929, + 12.9190156631924 + ], + [ + 77.538773864467899, + 12.918928292675099 + ], + [ + 77.538786839228806, + 12.918788128178701 + ], + [ + 77.538781993452204, + 12.9186503956489 + ], + [ + 77.538753725981294, + 12.9185874273939 + ], + [ + 77.538752540562797, + 12.9185840508962 + ], + [ + 77.538626137190704, + 12.9184938032973 + ], + [ + 77.5385143519038, + 12.9184260003282 + ], + [ + 77.538467432299299, + 12.918397093619999 + ], + [ + 77.538442339554507, + 12.918363457329299 + ], + [ + 77.538412721950394, + 12.9183377704181 + ], + [ + 77.538402372708305, + 12.9183390003762 + ], + [ + 77.538373615938795, + 12.918341538633699 + ], + [ + 77.538355498768496, + 12.9183146105656 + ], + [ + 77.538322900536997, + 12.9182787885428 + ], + [ + 77.538325863492602, + 12.918230198041099 + ], + [ + 77.538335687909495, + 12.9181770234672 + ], + [ + 77.538361400696502, + 12.918101107595501 + ], + [ + 77.538157226565801, + 12.918232966768 + ], + [ + 77.537849703714201, + 12.9185623359181 + ], + [ + 77.536429384616696, + 12.919249282309901 + ], + [ + 77.534427357184796, + 12.918359722212999 + ], + [ + 77.533130381452196, + 12.918095281802801 + ], + [ + 77.531782013365103, + 12.917792549186499 + ], + [ + 77.5315409710674, + 12.9157191686374 + ], + [ + 77.531375714922703, + 12.9142976490626 + ], + [ + 77.531243203844795, + 12.9137522513939 + ], + [ + 77.531184414924795, + 12.913510284219999 + ], + [ + 77.531085716325194, + 12.913104054777101 + ], + [ + 77.530127725498502, + 12.9109967480268 + ], + [ + 77.529497774101898, + 12.9099165978668 + ], + [ + 77.529020773671405, + 12.9092024587521 + ], + [ + 77.528428391287903, + 12.908315569997001 + ], + [ + 77.528025986561801, + 12.907655448888001 + ], + [ + 77.527682980020998, + 12.907092762702099 + ], + [ + 77.5263828832434, + 12.904980752295501 + ], + [ + 77.525870880405506, + 12.904297731199399 + ], + [ + 77.525872296376093, + 12.9042577863181 + ], + [ + 77.525885738646593, + 12.9040487261805 + ], + [ + 77.525906974692504, + 12.9024676368772 + ], + [ + 77.526343777580905, + 12.9023799673464 + ], + [ + 77.526280286590705, + 12.902097411655699 + ], + [ + 77.526081164367696, + 12.901211253719501 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "162", + "group": "Talagattapura", + "Corporatio": "South", + "ac_no": "153", + "ac": "Yeshwanthapura", + "corporat_1": "4", + "ward_id": "72", + "ward_name": "72 - Talagattapura", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಯಶವಂತಪುರ", + "ward_name_": "ತಲಗಟ್ಟಪುರ", + "dig_ward_n": "Talagattapura", + "Assembly": "153 - Yeshwanthapura", + "Slno": "72" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.541222076150305, + 12.8443113766198 + ], + [ + 77.540859175345304, + 12.844634391198699 + ], + [ + 77.540769459566405, + 12.8447142469019 + ], + [ + 77.540681537895296, + 12.844792505039001 + ], + [ + 77.540491615687301, + 12.844961552305501 + ], + [ + 77.539044503653599, + 12.845318973215299 + ], + [ + 77.538347955248199, + 12.845304288802501 + ], + [ + 77.538355318047294, + 12.8449172907318 + ], + [ + 77.538306945979798, + 12.844750676606299 + ], + [ + 77.538306935471198, + 12.8447506387618 + ], + [ + 77.538162009519198, + 12.8442318249978 + ], + [ + 77.538136861718797, + 12.844142356440599 + ], + [ + 77.537931154011602, + 12.843410500944801 + ], + [ + 77.537876830871497, + 12.842468260513 + ], + [ + 77.537574510617205, + 12.8417373598474 + ], + [ + 77.536779848381002, + 12.841485694797299 + ], + [ + 77.535783760576805, + 12.841169381565599 + ], + [ + 77.535108063487996, + 12.8409541583279 + ], + [ + 77.534997778399003, + 12.8408589673029 + ], + [ + 77.534525736120699, + 12.84045153109 + ], + [ + 77.533913931584905, + 12.839924037303501 + ], + [ + 77.533612481432399, + 12.8399085747496 + ], + [ + 77.533434159993703, + 12.839701542418499 + ], + [ + 77.531280543831102, + 12.840051478310301 + ], + [ + 77.530969608642906, + 12.840090761219299 + ], + [ + 77.529089705384095, + 12.8403214499199 + ], + [ + 77.526056619091705, + 12.840641876275701 + ], + [ + 77.524462376495606, + 12.8402122499574 + ], + [ + 77.524206092933596, + 12.8401406721496 + ], + [ + 77.523518466225397, + 12.8399450738588 + ], + [ + 77.523459300737102, + 12.840223362658801 + ], + [ + 77.523244761229606, + 12.841232459387699 + ], + [ + 77.523123586442793, + 12.8417988428097 + ], + [ + 77.522955448047995, + 12.842527821927 + ], + [ + 77.522868182276994, + 12.842905328943401 + ], + [ + 77.522772111619403, + 12.8434002402277 + ], + [ + 77.522704784059002, + 12.8437647505325 + ], + [ + 77.522677916491403, + 12.843871361846601 + ], + [ + 77.522657271189402, + 12.8439875355071 + ], + [ + 77.522499684241893, + 12.844615413359699 + ], + [ + 77.522462121342301, + 12.8447650675086 + ], + [ + 77.522378137255899, + 12.8450483851804 + ], + [ + 77.5223555615256, + 12.8451244869471 + ], + [ + 77.522252322373603, + 12.8454725212528 + ], + [ + 77.5222285244853, + 12.845585963258699 + ], + [ + 77.521979958768398, + 12.8467707641851 + ], + [ + 77.521685760664198, + 12.848173065730601 + ], + [ + 77.521667466467605, + 12.848260163374499 + ], + [ + 77.5216606876306, + 12.8482925480796 + ], + [ + 77.521645231069996, + 12.8483661528744 + ], + [ + 77.521640029089198, + 12.848390926805299 + ], + [ + 77.521628410312104, + 12.8484462578209 + ], + [ + 77.521616707026297, + 12.848622188108999 + ], + [ + 77.521596022999006, + 12.8489302015579 + ], + [ + 77.521591490452394, + 12.848997691382699 + ], + [ + 77.521487195665898, + 12.849167614179899 + ], + [ + 77.521256717378506, + 12.8496758281268 + ], + [ + 77.521149552036704, + 12.8499121821154 + ], + [ + 77.521046560730895, + 12.850139331907799 + ], + [ + 77.521033570569799, + 12.850167980741 + ], + [ + 77.520997532352695, + 12.850260800812601 + ], + [ + 77.520862760344798, + 12.85060716401 + ], + [ + 77.520202116575305, + 12.852305451793899 + ], + [ + 77.519730666162602, + 12.853517463231499 + ], + [ + 77.519563854160594, + 12.853946027196001 + ], + [ + 77.519280136426502, + 12.8546754419135 + ], + [ + 77.519210036361599, + 12.854855687233201 + ], + [ + 77.519126008225001, + 12.8555195214929 + ], + [ + 77.518969443898101, + 12.8567567804928 + ], + [ + 77.518956441623601, + 12.856857727526799 + ], + [ + 77.518768860759906, + 12.8583140129144 + ], + [ + 77.518691973931595, + 12.8588664453554 + ], + [ + 77.518599435222896, + 12.859587454791001 + ], + [ + 77.518585456203198, + 12.8596963727688 + ], + [ + 77.518548794197599, + 12.8599820187803 + ], + [ + 77.518513459089107, + 12.8602573278805 + ], + [ + 77.518497015870807, + 12.8603854397647 + ], + [ + 77.518486923130794, + 12.860465693364 + ], + [ + 77.518485171631895, + 12.8604796221139 + ], + [ + 77.518474948363604, + 12.8605609141729 + ], + [ + 77.518457975796693, + 12.8606958696534 + ], + [ + 77.518419730310697, + 12.861061478839501 + ], + [ + 77.518418249905196, + 12.8610756290512 + ], + [ + 77.518408738451598, + 12.861166520171899 + ], + [ + 77.518743088722601, + 12.861492105998799 + ], + [ + 77.518908929817201, + 12.861653600547699 + ], + [ + 77.519006720272998, + 12.861724252513 + ], + [ + 77.519448188274396, + 12.862043204457301 + ], + [ + 77.519551106856596, + 12.862118434548799 + ], + [ + 77.519571491030305, + 12.862305525457 + ], + [ + 77.519591534952497, + 12.8624891520381 + ], + [ + 77.519728306142497, + 12.863734064864 + ], + [ + 77.519753809323007, + 12.863964817243501 + ], + [ + 77.520000416810504, + 12.865221557324601 + ], + [ + 77.520220496442704, + 12.866343097250599 + ], + [ + 77.521536606919, + 12.8683991988062 + ], + [ + 77.521599256569203, + 12.8684970714817 + ], + [ + 77.521771970690807, + 12.868766891778399 + ], + [ + 77.521777501232606, + 12.868775531901701 + ], + [ + 77.522619090225305, + 12.870090278479999 + ], + [ + 77.522897795948595, + 12.8705256744629 + ], + [ + 77.522919009157107, + 12.8705588142401 + ], + [ + 77.522954492401396, + 12.87056306949 + ], + [ + 77.522982449541303, + 12.8705664223477 + ], + [ + 77.523086523336502, + 12.8705789028469 + ], + [ + 77.521556952509002, + 12.8714125910289 + ], + [ + 77.520214333916798, + 12.872144371636599 + ], + [ + 77.520205202485997, + 12.872149348253 + ], + [ + 77.520166880504107, + 12.8721314221967 + ], + [ + 77.519436663605703, + 12.8717898522252 + ], + [ + 77.518576698868699, + 12.8709160895349 + ], + [ + 77.517289857283103, + 12.869598069713801 + ], + [ + 77.516849906868501, + 12.8691708797337 + ], + [ + 77.516189998366301, + 12.868564808404001 + ], + [ + 77.515658426616397, + 12.868039227173799 + ], + [ + 77.515623134835707, + 12.8680045539051 + ], + [ + 77.515493796156605, + 12.867877846768 + ], + [ + 77.515492588155496, + 12.8678766639493 + ], + [ + 77.515441891223006, + 12.8678777270207 + ], + [ + 77.514670591082293, + 12.8679280454196 + ], + [ + 77.513805794726906, + 12.8680410410711 + ], + [ + 77.513327297047695, + 12.868103560891401 + ], + [ + 77.513195148530798, + 12.8681262862399 + ], + [ + 77.512613789112905, + 12.8682357627971 + ], + [ + 77.512413303433902, + 12.868273824765801 + ], + [ + 77.511716967673394, + 12.8681077070654 + ], + [ + 77.511637641508003, + 12.8680787018105 + ], + [ + 77.511592451045004, + 12.8680621781812 + ], + [ + 77.511588489577704, + 12.868065519320201 + ], + [ + 77.511561731822994, + 12.8680880830199 + ], + [ + 77.5105792570494, + 12.8689081996841 + ], + [ + 77.510521055568802, + 12.868957378826 + ], + [ + 77.510444892691396, + 12.8689711495553 + ], + [ + 77.510222645480397, + 12.869011332090301 + ], + [ + 77.510114781397903, + 12.8690308346113 + ], + [ + 77.5094956279992, + 12.8697346646761 + ], + [ + 77.509245086837396, + 12.8700204162452 + ], + [ + 77.508787452874699, + 12.870642750032999 + ], + [ + 77.508366731145202, + 12.8712148832665 + ], + [ + 77.508356621772904, + 12.8712296130597 + ], + [ + 77.5083226708865, + 12.8712790792008 + ], + [ + 77.508041202667499, + 12.871689176068699 + ], + [ + 77.5079240412243, + 12.871859838535901 + ], + [ + 77.507596478955406, + 12.872370539704001 + ], + [ + 77.5071180556494, + 12.8731164423587 + ], + [ + 77.507059413421899, + 12.873207870870599 + ], + [ + 77.506674680899494, + 12.873807699160601 + ], + [ + 77.506263940492602, + 12.8745623172282 + ], + [ + 77.505781610903796, + 12.8756036939936 + ], + [ + 77.505724766146301, + 12.875906909108201 + ], + [ + 77.505416143515205, + 12.876589742744301 + ], + [ + 77.504792416240207, + 12.8768821509479 + ], + [ + 77.504546653361103, + 12.877009172276599 + ], + [ + 77.504000955523395, + 12.876747330605401 + ], + [ + 77.503805585773506, + 12.8766640421193 + ], + [ + 77.503783899765295, + 12.8766791969139 + ], + [ + 77.503900377533, + 12.8768316724231 + ], + [ + 77.5047218598759, + 12.877907022776901 + ], + [ + 77.505776284824705, + 12.8795607267128 + ], + [ + 77.505398350637293, + 12.8797794884153 + ], + [ + 77.505754891809801, + 12.8803498360836 + ], + [ + 77.501655519302005, + 12.8841756077897 + ], + [ + 77.502102816409902, + 12.884412773224801 + ], + [ + 77.504013436447096, + 12.885422420103501 + ], + [ + 77.505874865531595, + 12.8863847110044 + ], + [ + 77.507221086627098, + 12.8869933474591 + ], + [ + 77.508445492275797, + 12.8876031435515 + ], + [ + 77.509683512795206, + 12.888568914074201 + ], + [ + 77.510644162734096, + 12.889606735967 + ], + [ + 77.511401302916894, + 12.8907612490818 + ], + [ + 77.512394354940099, + 12.8921142949361 + ], + [ + 77.513123640441904, + 12.8928752912077 + ], + [ + 77.513266028781601, + 12.893023870094201 + ], + [ + 77.513469215132403, + 12.893257278854099 + ], + [ + 77.513777049841593, + 12.8936730188433 + ], + [ + 77.513846442706395, + 12.893766735940799 + ], + [ + 77.514118067016, + 12.8941335704625 + ], + [ + 77.514165875382503, + 12.8941981368984 + ], + [ + 77.514284310210698, + 12.8943580852608 + ], + [ + 77.514328369004701, + 12.894439298357 + ], + [ + 77.514337298049796, + 12.8944296463696 + ], + [ + 77.514363792692706, + 12.8944010049221 + ], + [ + 77.514378813601496, + 12.894348909855101 + ], + [ + 77.514390799119596, + 12.894223435418199 + ], + [ + 77.514383080403206, + 12.894142195533099 + ], + [ + 77.514340716084206, + 12.894049995071899 + ], + [ + 77.514304942239505, + 12.893983706580601 + ], + [ + 77.514286322024205, + 12.893905959565201 + ], + [ + 77.514259779522007, + 12.8938418410485 + ], + [ + 77.514241272127407, + 12.8937753865651 + ], + [ + 77.514218690807397, + 12.8937044537882 + ], + [ + 77.514209426012698, + 12.8936412985439 + ], + [ + 77.514190298343607, + 12.893512735074999 + ], + [ + 77.514178223868896, + 12.893398785518899 + ], + [ + 77.514155642619897, + 12.893327852725101 + ], + [ + 77.514121889193603, + 12.893233310694701 + ], + [ + 77.514072979520193, + 12.893177312656301 + ], + [ + 77.514032725598199, + 12.893123490138599 + ], + [ + 77.514010768845694, + 12.8930951644305 + ], + [ + 77.513988409049304, + 12.893066318569 + ], + [ + 77.513971063764899, + 12.8930585797336 + ], + [ + 77.513970454389195, + 12.893055197501999 + ], + [ + 77.513961076941598, + 12.8929807496867 + ], + [ + 77.513969586803398, + 12.892968595464501 + ], + [ + 77.514018395001202, + 12.8928988846965 + ], + [ + 77.514084289400699, + 12.8928688879536 + ], + [ + 77.514112400854103, + 12.892859582867599 + ], + [ + 77.514194590910904, + 12.8928474992796 + ], + [ + 77.514300017009305, + 12.892856650211501 + ], + [ + 77.514338623585701, + 12.892860796573199 + ], + [ + 77.514372106657504, + 12.8928706389895 + ], + [ + 77.514394507767307, + 12.8928659062138 + ], + [ + 77.514402268992001, + 12.892861141594 + ], + [ + 77.514422540250905, + 12.8928486963189 + ], + [ + 77.514468990141495, + 12.8928313093831 + ], + [ + 77.514524434120801, + 12.8928499755757 + ], + [ + 77.514578738297601, + 12.8928697820742 + ], + [ + 77.514618010654601, + 12.8928829568911 + ], + [ + 77.514636107294805, + 12.892896581923001 + ], + [ + 77.514714284191001, + 12.8929554399158 + ], + [ + 77.514775088594405, + 12.8929921243073 + ], + [ + 77.514837958294194, + 12.893005072222399 + ], + [ + 77.514890253859605, + 12.8929966639067 + ], + [ + 77.514929131402795, + 12.892970314796999 + ], + [ + 77.514941364487299, + 12.8929848788879 + ], + [ + 77.514953653980001, + 12.8930050892453 + ], + [ + 77.514977522588893, + 12.8930191123053 + ], + [ + 77.514982024871301, + 12.893021756898699 + ], + [ + 77.515022290586998, + 12.892993870242501 + ], + [ + 77.515028328072205, + 12.892989689570401 + ], + [ + 77.515059046442303, + 12.892953254636099 + ], + [ + 77.515102878049703, + 12.892961868088801 + ], + [ + 77.515169043056304, + 12.8929589731726 + ], + [ + 77.515231687098805, + 12.892949335925699 + ], + [ + 77.515267032347694, + 12.8929151152062 + ], + [ + 77.515272133524803, + 12.892791965727699 + ], + [ + 77.515271524267803, + 12.892730986053101 + ], + [ + 77.515255917038999, + 12.8926667625063 + ], + [ + 77.515241483472096, + 12.892604786395299 + ], + [ + 77.515244541852496, + 12.8925652293263 + ], + [ + 77.515317004007599, + 12.8925012883096 + ], + [ + 77.515405287851493, + 12.892465429180501 + ], + [ + 77.515441027922506, + 12.8924707323121 + ], + [ + 77.515496866859905, + 12.8924713247167 + ], + [ + 77.515572500001198, + 12.892436716550799 + ], + [ + 77.515665534803702, + 12.892415493354701 + ], + [ + 77.515707481708702, + 12.8924083137842 + ], + [ + 77.515735638157594, + 12.8924035255553 + ], + [ + 77.515761593994398, + 12.8924089227396 + ], + [ + 77.515779638934603, + 12.8924290777005 + ], + [ + 77.515792154143298, + 12.892471873068001 + ], + [ + 77.515785021910702, + 12.892506951863 + ], + [ + 77.515780891522198, + 12.8925544247628 + ], + [ + 77.5157813316237, + 12.892598465622299 + ], + [ + 77.515775327905999, + 12.8926312748415 + ], + [ + 77.515766999445702, + 12.8926618476962 + ], + [ + 77.515757215186397, + 12.8927195392243 + ], + [ + 77.515750094232999, + 12.892755747272799 + ], + [ + 77.515735547636993, + 12.8927976735438 + ], + [ + 77.515727884990696, + 12.892837274886199 + ], + [ + 77.515719725792096, + 12.8928847865338 + ], + [ + 77.515703350994499, + 12.892916566135099 + ], + [ + 77.515696060763801, + 12.8929358353914 + ], + [ + 77.515693656998394, + 12.8929832916871 + ], + [ + 77.515673321092706, + 12.893021885552001 + ], + [ + 77.515664462209799, + 12.893056980954 + ], + [ + 77.515660106117394, + 12.8930818687986 + ], + [ + 77.515640345745197, + 12.8931204571279 + ], + [ + 77.515640165159596, + 12.893159986513799 + ], + [ + 77.515640548834895, + 12.893198381111601 + ], + [ + 77.515628789654002, + 12.8932312456843 + ], + [ + 77.515627752883205, + 12.8932744921274 + ], + [ + 77.515627571756497, + 12.8932820795641 + ], + [ + 77.515661698159505, + 12.893298691777099 + ], + [ + 77.515661437668001, + 12.893330316401 + ], + [ + 77.515676751661601, + 12.8933651793203 + ], + [ + 77.515678196159101, + 12.8933945288231 + ], + [ + 77.515691536161796, + 12.8935197596329 + ], + [ + 77.515696580643507, + 12.893563756208399 + ], + [ + 77.515732162879004, + 12.893553249731101 + ], + [ + 77.515747341476199, + 12.893574561608499 + ], + [ + 77.515752904167499, + 12.893612906390199 + ], + [ + 77.515725424701799, + 12.8936278523848 + ], + [ + 77.515730356340995, + 12.893660556430101 + ], + [ + 77.515740253482207, + 12.8937293522779 + ], + [ + 77.515785247608306, + 12.8937390837678 + ], + [ + 77.515823527050003, + 12.893768078974899 + ], + [ + 77.515833537966103, + 12.8937905699095 + ], + [ + 77.515875297491405, + 12.8938097730493 + ], + [ + 77.515888698165298, + 12.8936771484034 + ], + [ + 77.515909870235404, + 12.8934676126953 + ], + [ + 77.516030809755506, + 12.892270685464901 + ], + [ + 77.516181649155598, + 12.891647081355 + ], + [ + 77.516197561078101, + 12.8914538075637 + ], + [ + 77.516124627692093, + 12.891208082442301 + ], + [ + 77.516091317051803, + 12.891095852486201 + ], + [ + 77.516058178957906, + 12.8909842045144 + ], + [ + 77.515927520935506, + 12.8904659548515 + ], + [ + 77.515723138202006, + 12.890057961986599 + ], + [ + 77.5159812843944, + 12.889567595549501 + ], + [ + 77.516040998606499, + 12.8893859313939 + ], + [ + 77.516111999385998, + 12.889169932730001 + ], + [ + 77.516288587620494, + 12.888697290920801 + ], + [ + 77.516299578699901, + 12.8886578979088 + ], + [ + 77.516654785640895, + 12.8873848396931 + ], + [ + 77.517076051115495, + 12.8866297630983 + ], + [ + 77.517300906207197, + 12.886211294488399 + ], + [ + 77.517313947185698, + 12.8861870242234 + ], + [ + 77.517799385742705, + 12.885345498476701 + ], + [ + 77.518318754129496, + 12.8843285951107 + ], + [ + 77.519033772633094, + 12.8831923552458 + ], + [ + 77.519536348770401, + 12.8832597972662 + ], + [ + 77.520253255305406, + 12.8833554894507 + ], + [ + 77.520319418785505, + 12.883364321855 + ], + [ + 77.522329893197394, + 12.883632685872501 + ], + [ + 77.525545786560301, + 12.883820771594999 + ], + [ + 77.527914569248907, + 12.8839650493234 + ], + [ + 77.527916755480504, + 12.883965780809399 + ], + [ + 77.530396182968303, + 12.884795446605001 + ], + [ + 77.531595071808994, + 12.885196607683101 + ], + [ + 77.532580332931602, + 12.885298881090099 + ], + [ + 77.532724742615301, + 12.885258241045401 + ], + [ + 77.532925277245496, + 12.885201807042 + ], + [ + 77.533109655274501, + 12.8851638834405 + ], + [ + 77.534127751916401, + 12.8849556239695 + ], + [ + 77.534668554400795, + 12.884844996517099 + ], + [ + 77.5357691323143, + 12.8846278091552 + ], + [ + 77.535842118123, + 12.8846134062243 + ], + [ + 77.536086676769301, + 12.884435988051999 + ], + [ + 77.536375322299804, + 12.8842355555777 + ], + [ + 77.536866174539099, + 12.883840941318899 + ], + [ + 77.537564034432805, + 12.883279901512701 + ], + [ + 77.537568818386106, + 12.882554815756301 + ], + [ + 77.537573206782298, + 12.881961867159299 + ], + [ + 77.537592985209699, + 12.880610978912101 + ], + [ + 77.537567481830393, + 12.880492734323701 + ], + [ + 77.537518120204894, + 12.8802638662624 + ], + [ + 77.538279454011999, + 12.8800791792117 + ], + [ + 77.538695534258906, + 12.8799599519624 + ], + [ + 77.539056980041494, + 12.8799022385165 + ], + [ + 77.539822789941297, + 12.8801048686803 + ], + [ + 77.5398756347724, + 12.880094191953001 + ], + [ + 77.539902739431, + 12.8800995757273 + ], + [ + 77.539929258125895, + 12.88010383584 + ], + [ + 77.540014227793193, + 12.8800826833487 + ], + [ + 77.540992562744293, + 12.8798428044286 + ], + [ + 77.541172479638306, + 12.8797055372078 + ], + [ + 77.541416800860503, + 12.8796195944998 + ], + [ + 77.541482424699794, + 12.879608187206699 + ], + [ + 77.541516610943304, + 12.879602244797301 + ], + [ + 77.541712694576901, + 12.879568160549701 + ], + [ + 77.542011796520796, + 12.879435382546401 + ], + [ + 77.542215848830807, + 12.879408555888601 + ], + [ + 77.542623333393905, + 12.879303232201799 + ], + [ + 77.5427106887809, + 12.8792806526588 + ], + [ + 77.543213049409303, + 12.879213659923501 + ], + [ + 77.543531728304004, + 12.879195882955999 + ], + [ + 77.543708902504093, + 12.879186256396199 + ], + [ + 77.543771619030693, + 12.8791997819228 + ], + [ + 77.543789079352905, + 12.879203546912899 + ], + [ + 77.543808093596098, + 12.8792742242117 + ], + [ + 77.543969076769898, + 12.879872626081101 + ], + [ + 77.5440909520307, + 12.880143612767201 + ], + [ + 77.544413915340598, + 12.8809490814367 + ], + [ + 77.544454651320606, + 12.8810503260805 + ], + [ + 77.544495826009097, + 12.8811380143742 + ], + [ + 77.544721136382705, + 12.8816203109565 + ], + [ + 77.544921393050501, + 12.8820723585868 + ], + [ + 77.545163772611403, + 12.8827058199233 + ], + [ + 77.545392061293398, + 12.8832547174237 + ], + [ + 77.545496459171801, + 12.8835044153618 + ], + [ + 77.545578337424402, + 12.8835766592873 + ], + [ + 77.545597804868507, + 12.883593836476599 + ], + [ + 77.546481402294404, + 12.884373459842701 + ], + [ + 77.546615532410499, + 12.884489605935601 + ], + [ + 77.546656425657105, + 12.8844619467458 + ], + [ + 77.546754445383499, + 12.884395648635399 + ], + [ + 77.5467661580618, + 12.8844080034565 + ], + [ + 77.546840786712593, + 12.884486721201 + ], + [ + 77.546898724629301, + 12.884547834597599 + ], + [ + 77.547278586814699, + 12.8843758667013 + ], + [ + 77.547341207935702, + 12.8843321897584 + ], + [ + 77.547602075826802, + 12.8841502388831 + ], + [ + 77.547797111547297, + 12.883914567781501 + ], + [ + 77.547729539121093, + 12.8834363867498 + ], + [ + 77.547992568914694, + 12.8834393556993 + ], + [ + 77.548051891961094, + 12.883440025010801 + ], + [ + 77.548055218074893, + 12.883425164896501 + ], + [ + 77.548070557787796, + 12.883356625665099 + ], + [ + 77.548070566612196, + 12.8833565876335 + ], + [ + 77.548089888833104, + 12.8832702546585 + ], + [ + 77.5482143559002, + 12.8833180317997 + ], + [ + 77.548342390617407, + 12.883367178130699 + ], + [ + 77.548315772892593, + 12.883308003463201 + ], + [ + 77.548263490838906, + 12.8831917697905 + ], + [ + 77.548269397625006, + 12.882741002287499 + ], + [ + 77.548269662715001, + 12.882720776455001 + ], + [ + 77.548957434983194, + 12.882722963985101 + ], + [ + 77.549145773451897, + 12.882718025653199 + ], + [ + 77.549160913848894, + 12.882671595327199 + ], + [ + 77.549172661001293, + 12.882635568056999 + ], + [ + 77.549269574163603, + 12.882338359800301 + ], + [ + 77.549118663402496, + 12.882213343791101 + ], + [ + 77.549140156955801, + 12.882005336722401 + ], + [ + 77.549171649723903, + 12.881989219353899 + ], + [ + 77.549202566983695, + 12.8819731075866 + ], + [ + 77.549175543985797, + 12.881634570025 + ], + [ + 77.549446183054997, + 12.8815545542571 + ], + [ + 77.549661903811696, + 12.8814907753897 + ], + [ + 77.549716677756805, + 12.881474581204101 + ], + [ + 77.549883482025095, + 12.8814639218749 + ], + [ + 77.550894742684207, + 12.8811231751158 + ], + [ + 77.550923114394195, + 12.880798779705099 + ], + [ + 77.551052092055599, + 12.880349177247201 + ], + [ + 77.551173839420898, + 12.8799244906001 + ], + [ + 77.551270776893105, + 12.8796722709781 + ], + [ + 77.551453109185104, + 12.879197866127701 + ], + [ + 77.551370464021502, + 12.878425077561699 + ], + [ + 77.5512027623747, + 12.877323351883399 + ], + [ + 77.551395645313505, + 12.8768189189491 + ], + [ + 77.551587054597107, + 12.8768166962685 + ], + [ + 77.552000474801204, + 12.876811896262801 + ], + [ + 77.552006037550299, + 12.876760297453 + ], + [ + 77.552022046360605, + 12.876611793968801 + ], + [ + 77.551658965569999, + 12.876506915838901 + ], + [ + 77.551552440749106, + 12.875446024524299 + ], + [ + 77.551543753312799, + 12.875359505485299 + ], + [ + 77.551287996789398, + 12.875338280970301 + ], + [ + 77.551200054125303, + 12.875292834908301 + ], + [ + 77.551054483239199, + 12.8753199935504 + ], + [ + 77.551006940010794, + 12.8753288633993 + ], + [ + 77.550920555011103, + 12.875344980620101 + ], + [ + 77.550926824900003, + 12.8753298415785 + ], + [ + 77.550992772611096, + 12.875170627107099 + ], + [ + 77.551038454262098, + 12.875021109988401 + ], + [ + 77.551053333827596, + 12.8748989969161 + ], + [ + 77.551038202540099, + 12.874721579452601 + ], + [ + 77.551035049187604, + 12.874684601415799 + ], + [ + 77.550966042799502, + 12.8744627945654 + ], + [ + 77.550884671102594, + 12.874270470803101 + ], + [ + 77.550848709614201, + 12.874186120910499 + ], + [ + 77.550864354775698, + 12.874139665816299 + ], + [ + 77.550898110268704, + 12.874079068542301 + ], + [ + 77.550957218989495, + 12.873972958805901 + ], + [ + 77.5510610701931, + 12.8737865268779 + ], + [ + 77.551070510657993, + 12.8737525548925 + ], + [ + 77.551070065061793, + 12.8737085151774 + ], + [ + 77.551069402383305, + 12.8736430202161 + ], + [ + 77.551003077469801, + 12.873306662712199 + ], + [ + 77.550995388828298, + 12.873267672542401 + ], + [ + 77.550905174984507, + 12.872826981133301 + ], + [ + 77.550795049370095, + 12.872475454333999 + ], + [ + 77.550793363144393, + 12.8724700707248 + ], + [ + 77.550638628842094, + 12.8723078237735 + ], + [ + 77.550483871898805, + 12.8721433182433 + ], + [ + 77.5503720994449, + 12.872082193594901 + ], + [ + 77.550311407861102, + 12.8720490037638 + ], + [ + 77.550275635282702, + 12.8719615990316 + ], + [ + 77.550246494734907, + 12.8718903993877 + ], + [ + 77.550215712398, + 12.8718320467783 + ], + [ + 77.550187816137395, + 12.871779166384 + ], + [ + 77.550117816919993, + 12.871730253685501 + ], + [ + 77.550111845313197, + 12.8717260808712 + ], + [ + 77.5501049286746, + 12.871721247785599 + ], + [ + 77.550034309029201, + 12.8716812791126 + ], + [ + 77.550024377423796, + 12.871666694420799 + ], + [ + 77.550073283948095, + 12.8714945593462 + ], + [ + 77.549994717221196, + 12.871237835539 + ], + [ + 77.549987142365893, + 12.8708302190479 + ], + [ + 77.550009367448695, + 12.870664948947599 + ], + [ + 77.550013906685606, + 12.8706311954488 + ], + [ + 77.550022543426806, + 12.870574644597401 + ], + [ + 77.549966781574497, + 12.8704103042899 + ], + [ + 77.549967398301703, + 12.870186689788 + ], + [ + 77.549967380077007, + 12.8701279645004 + ], + [ + 77.550103246751206, + 12.8698791902208 + ], + [ + 77.550107517791403, + 12.869871370689999 + ], + [ + 77.550296120766404, + 12.8696267278163 + ], + [ + 77.5504133554752, + 12.869495713109099 + ], + [ + 77.550438383889897, + 12.869125047427399 + ], + [ + 77.5505260522214, + 12.868972863128301 + ], + [ + 77.5505206467938, + 12.868779799371 + ], + [ + 77.550506376390203, + 12.8686207019632 + ], + [ + 77.550539664700295, + 12.8684408136015 + ], + [ + 77.550487344689003, + 12.8682753105233 + ], + [ + 77.550391419119194, + 12.868066187733 + ], + [ + 77.550303093662606, + 12.8678118174807 + ], + [ + 77.550225801897795, + 12.867662733924201 + ], + [ + 77.550225613127594, + 12.8676623698565 + ], + [ + 77.550129011914805, + 12.8675571523617 + ], + [ + 77.550092380258207, + 12.8675441673098 + ], + [ + 77.550011182157604, + 12.8675153842042 + ], + [ + 77.549836717381297, + 12.8674659210978 + ], + [ + 77.549787813063404, + 12.867452056175599 + ], + [ + 77.549680557082795, + 12.8674280194465 + ], + [ + 77.549541505123798, + 12.867396856462401 + ], + [ + 77.549403847020002, + 12.8673293061679 + ], + [ + 77.549167697201298, + 12.867197212348 + ], + [ + 77.549029856713403, + 12.867111594203401 + ], + [ + 77.548867613394805, + 12.8670600934235 + ], + [ + 77.548600184626807, + 12.8670220381976 + ], + [ + 77.548423805623202, + 12.8669955200067 + ], + [ + 77.548328083685306, + 12.866977252091599 + ], + [ + 77.548325357461707, + 12.866975923396501 + ], + [ + 77.548296273139897, + 12.8669617506921 + ], + [ + 77.548257374451197, + 12.8669282488121 + ], + [ + 77.548231357975197, + 12.8668596122018 + ], + [ + 77.548205067764101, + 12.866763874147599 + ], + [ + 77.548213995270899, + 12.8666790870295 + ], + [ + 77.548275506076607, + 12.8665011829492 + ], + [ + 77.548309583092703, + 12.866399211230201 + ], + [ + 77.548308978551503, + 12.866339362223799 + ], + [ + 77.548308864487495, + 12.866328069958399 + ], + [ + 77.548278049357705, + 12.866126218178101 + ], + [ + 77.548220522253402, + 12.865786846919899 + ], + [ + 77.548179991916399, + 12.8655918655798 + ], + [ + 77.548125117240502, + 12.8654580079114 + ], + [ + 77.548099165078497, + 12.8654194191366 + ], + [ + 77.548069540743995, + 12.865375371152799 + ], + [ + 77.548005919690496, + 12.865280772937499 + ], + [ + 77.548006423609493, + 12.8652140503774 + ], + [ + 77.547971480424806, + 12.8652169468977 + ], + [ + 77.547957736626103, + 12.865191475256299 + ], + [ + 77.547934367671004, + 12.8651481651045 + ], + [ + 77.547915000977, + 12.8651110852229 + ], + [ + 77.547917251113802, + 12.8650489497675 + ], + [ + 77.547935363412606, + 12.864961814682101 + ], + [ + 77.547976295171196, + 12.8649117259137 + ], + [ + 77.548109107485004, + 12.864841545182299 + ], + [ + 77.548248067355104, + 12.8647532352272 + ], + [ + 77.548302086443101, + 12.864688337799 + ], + [ + 77.548333212375198, + 12.864636085654301 + ], + [ + 77.548355142268903, + 12.864585052253499 + ], + [ + 77.548347933970106, + 12.8644981624415 + ], + [ + 77.5483146359269, + 12.8643923284426 + ], + [ + 77.548287559665596, + 12.8643584929128 + ], + [ + 77.548233298034006, + 12.864290683767001 + ], + [ + 77.548221375645298, + 12.864275784903301 + ], + [ + 77.5480990457731, + 12.864130160221 + ], + [ + 77.548054073690494, + 12.8640650958042 + ], + [ + 77.548040945967202, + 12.864018920566799 + ], + [ + 77.548043355757898, + 12.863972594291001 + ], + [ + 77.548042671576795, + 12.8639048406723 + ], + [ + 77.548025920048701, + 12.8638417605902 + ], + [ + 77.5479937450623, + 12.863790123808 + ], + [ + 77.547939047226606, + 12.863730800582699 + ], + [ + 77.547862869504499, + 12.8637100836161 + ], + [ + 77.547744489187707, + 12.863670578068101 + ], + [ + 77.547652198534806, + 12.8636500176422 + ], + [ + 77.547601307000704, + 12.8636256668164 + ], + [ + 77.547517813356706, + 12.863564364663301 + ], + [ + 77.547340484753207, + 12.8633865231667 + ], + [ + 77.547292060238405, + 12.8633214921072 + ], + [ + 77.547249749253993, + 12.8632349441956 + ], + [ + 77.547240243983296, + 12.863223859723201 + ], + [ + 77.547175787906994, + 12.863148703817499 + ], + [ + 77.547101974786401, + 12.863077143370999 + ], + [ + 77.5469613511858, + 12.8630005853413 + ], + [ + 77.546740972096799, + 12.862890921897399 + ], + [ + 77.546584269954394, + 12.8628179078462 + ], + [ + 77.546501534582305, + 12.8627746673339 + ], + [ + 77.5464306332359, + 12.8627064663753 + ], + [ + 77.546344546879894, + 12.8625593582364 + ], + [ + 77.546240087905304, + 12.862245288081001 + ], + [ + 77.546213098449002, + 12.8621371336379 + ], + [ + 77.546179659451596, + 12.861960151218099 + ], + [ + 77.546143753379496, + 12.8618238507723 + ], + [ + 77.5461585446958, + 12.861692703738999 + ], + [ + 77.546160167895906, + 12.861568460631601 + ], + [ + 77.546135960123905, + 12.861393647207001 + ], + [ + 77.546132422270702, + 12.8613785818445 + ], + [ + 77.546122730448303, + 12.8613373096166 + ], + [ + 77.546107067767807, + 12.8613250389912 + ], + [ + 77.545998505725805, + 12.8612888250672 + ], + [ + 77.545905771756694, + 12.861224223898001 + ], + [ + 77.545783740984007, + 12.8611079575353 + ], + [ + 77.545750359513505, + 12.860936622015901 + ], + [ + 77.545776780074604, + 12.860760188458 + ], + [ + 77.545731615659307, + 12.8606759265046 + ], + [ + 77.545669814584699, + 12.860539876432201 + ], + [ + 77.5456047832526, + 12.8603688481546 + ], + [ + 77.545453160348202, + 12.860171556348201 + ], + [ + 77.545274690976299, + 12.859937256791 + ], + [ + 77.545121181938796, + 12.859838235621901 + ], + [ + 77.545075687754604, + 12.8597212258095 + ], + [ + 77.545049479652207, + 12.8596333916381 + ], + [ + 77.545027716791296, + 12.859415640153101 + ], + [ + 77.544998485445007, + 12.8593518902639 + ], + [ + 77.544969460309105, + 12.859288590103301 + ], + [ + 77.544996764331799, + 12.8591426401613 + ], + [ + 77.545037035706997, + 12.859027056557 + ], + [ + 77.545095921283306, + 12.8588740231431 + ], + [ + 77.545127161332601, + 12.858833064572 + ], + [ + 77.545155524090404, + 12.8587921321192 + ], + [ + 77.545202620138099, + 12.8587826411741 + ], + [ + 77.545285451165199, + 12.858778449155899 + ], + [ + 77.545339703119595, + 12.8587937333114 + ], + [ + 77.545384491203805, + 12.858840730848801 + ], + [ + 77.545532963297504, + 12.859141240808 + ], + [ + 77.545533296057698, + 12.8591419142783 + ], + [ + 77.545546641259605, + 12.8591689250272 + ], + [ + 77.545598390906704, + 12.8592215007228 + ], + [ + 77.545626748480004, + 12.859237036183099 + ], + [ + 77.545652734993098, + 12.859245818618501 + ], + [ + 77.5456970449153, + 12.8592453884382 + ], + [ + 77.545732079249504, + 12.859238272264101 + ], + [ + 77.545791750216395, + 12.859163156496299 + ], + [ + 77.545903696198195, + 12.8589975085275 + ], + [ + 77.545982277960505, + 12.858881230354401 + ], + [ + 77.546067285928004, + 12.8587659477393 + ], + [ + 77.546186097654299, + 12.858604821779 + ], + [ + 77.546301718392698, + 12.8584851184266 + ], + [ + 77.546341239854698, + 12.8584104629647 + ], + [ + 77.546348592416294, + 12.858396574776499 + ], + [ + 77.546391774505196, + 12.858284350843901 + ], + [ + 77.546413089435305, + 12.8581723392524 + ], + [ + 77.546415146578795, + 12.858091006831099 + ], + [ + 77.546414075887697, + 12.8579848593125 + ], + [ + 77.546384967612298, + 12.8578947947987 + ], + [ + 77.546258580130498, + 12.857745819841099 + ], + [ + 77.546190222528494, + 12.857667906810599 + ], + [ + 77.546101386485603, + 12.857566651716001 + ], + [ + 77.546046223738202, + 12.857461029332899 + ], + [ + 77.545993368898905, + 12.8572989175278 + ], + [ + 77.545919239889301, + 12.8569676112285 + ], + [ + 77.545915073190898, + 12.856554313233699 + ], + [ + 77.545933774220202, + 12.856486411948801 + ], + [ + 77.545993353128907, + 12.856270088988801 + ], + [ + 77.546106740445694, + 12.8560431202692 + ], + [ + 77.546256226549104, + 12.855857586652601 + ], + [ + 77.546405860488207, + 12.855686732968399 + ], + [ + 77.5464483757696, + 12.855565480851199 + ], + [ + 77.546448157224901, + 12.855543901743699 + ], + [ + 77.546447547439101, + 12.8554833452429 + ], + [ + 77.546447168624695, + 12.855445782565599 + ], + [ + 77.546410277895703, + 12.855382897701 + ], + [ + 77.546183150624401, + 12.855059852783301 + ], + [ + 77.545927679256394, + 12.8547224012529 + ], + [ + 77.5459064951214, + 12.854685937646799 + ], + [ + 77.545801761778506, + 12.854505660738299 + ], + [ + 77.545764092113799, + 12.854308391790701 + ], + [ + 77.5457549720835, + 12.854145855298199 + ], + [ + 77.545794066201495, + 12.8537423013929 + ], + [ + 77.545783529590196, + 12.853382143179999 + ], + [ + 77.545804035436106, + 12.8533040205958 + ], + [ + 77.545853888691795, + 12.8532256122965 + ], + [ + 77.545860447343401, + 12.8531340711775 + ], + [ + 77.545859730202807, + 12.8530629306014 + ], + [ + 77.545823553296202, + 12.8528995273386 + ], + [ + 77.545806039701901, + 12.852874851811499 + ], + [ + 77.5457068251647, + 12.8528520984674 + ], + [ + 77.5456214211641, + 12.8528292101656 + ], + [ + 77.545526171891296, + 12.8527431770025 + ], + [ + 77.545506459925406, + 12.8527286859415 + ], + [ + 77.545505415935693, + 12.8527206651046 + ], + [ + 77.545503964686702, + 12.8527095113628 + ], + [ + 77.545503657389801, + 12.8526790221479 + ], + [ + 77.545505720136106, + 12.852655285979701 + ], + [ + 77.545510534880506, + 12.8526191003617 + ], + [ + 77.545510159297194, + 12.8525818357655 + ], + [ + 77.5454824194412, + 12.8525132151481 + ], + [ + 77.545373407702101, + 12.8523177675747 + ], + [ + 77.545233436323699, + 12.852133913696701 + ], + [ + 77.545180647128603, + 12.8519209804053 + ], + [ + 77.545208822352294, + 12.8518043849508 + ], + [ + 77.545244164521804, + 12.8517136948076 + ], + [ + 77.545243834522296, + 12.851680947123199 + ], + [ + 77.5452343430577, + 12.851652805681701 + ], + [ + 77.545218993899297, + 12.851614556998699 + ], + [ + 77.5451654743527, + 12.8515574798153 + ], + [ + 77.544980094542595, + 12.8514361799549 + ], + [ + 77.544806537379301, + 12.851288790407301 + ], + [ + 77.544789783290994, + 12.851168113396 + ], + [ + 77.544781415246106, + 12.8510801059393 + ], + [ + 77.544806884119197, + 12.850980476874801 + ], + [ + 77.544830459880799, + 12.8509215224587 + ], + [ + 77.544912481529806, + 12.850837155638001 + ], + [ + 77.544924622051397, + 12.8508270075223 + ], + [ + 77.545030042612595, + 12.8507388919768 + ], + [ + 77.545216758103905, + 12.850650121514199 + ], + [ + 77.545252252324701, + 12.8506345681342 + ], + [ + 77.545341556236195, + 12.8505954361185 + ], + [ + 77.545533032174504, + 12.850511532370399 + ], + [ + 77.545554084250398, + 12.850487611972101 + ], + [ + 77.545565952144202, + 12.850466039357901 + ], + [ + 77.5455656449044, + 12.850435551042599 + ], + [ + 77.545566455235999, + 12.8504013819792 + ], + [ + 77.545567531243293, + 12.8503560226372 + ], + [ + 77.5455708951487, + 12.850214148419299 + ], + [ + 77.545580074401201, + 12.8501542043062 + ], + [ + 77.5456512994961, + 12.8499694307616 + ], + [ + 77.545667982110103, + 12.849911672534599 + ], + [ + 77.545667458651906, + 12.8498597279417 + ], + [ + 77.545658282504903, + 12.8496915452031 + ], + [ + 77.545648113270204, + 12.8496532462772 + ], + [ + 77.545628287792894, + 12.8496274637784 + ], + [ + 77.545605469064995, + 12.849612118320501 + ], + [ + 77.545350168178601, + 12.849440432528199 + ], + [ + 77.545207690518694, + 12.8493503379395 + ], + [ + 77.545158921970597, + 12.849307895109099 + ], + [ + 77.545146769665706, + 12.849301237836601 + ], + [ + 77.5451364071303, + 12.849243741948699 + ], + [ + 77.545145552368794, + 12.849180410141701 + ], + [ + 77.545183116464699, + 12.8490817931145 + ], + [ + 77.545211826328796, + 12.849018271542199 + ], + [ + 77.545200439659496, + 12.848822835216801 + ], + [ + 77.545200099884497, + 12.8488225602427 + ], + [ + 77.545161778949094, + 12.8487917593999 + ], + [ + 77.545092556712703, + 12.8487754906683 + ], + [ + 77.545002028484902, + 12.848753634581399 + ], + [ + 77.544894697658094, + 12.8487282796372 + ], + [ + 77.544632803756599, + 12.848684784698801 + ], + [ + 77.544595512360104, + 12.848678670215801 + ], + [ + 77.544529957889196, + 12.8486413094077 + ], + [ + 77.544318858125493, + 12.8485211307711 + ], + [ + 77.544318852120995, + 12.8485209916944 + ], + [ + 77.544318142394502, + 12.848450974863701 + ], + [ + 77.544318146306594, + 12.8484509061617 + ], + [ + 77.544330518488195, + 12.8482569504871 + ], + [ + 77.544330556149006, + 12.848256758585601 + ], + [ + 77.544330566589494, + 12.848256606700801 + ], + [ + 77.544334180561705, + 12.8482385871181 + ], + [ + 77.544360782860394, + 12.848105203279401 + ], + [ + 77.544368691705401, + 12.848065551749899 + ], + [ + 77.544368921014396, + 12.8480653724458 + ], + [ + 77.544516434600396, + 12.8479461310499 + ], + [ + 77.544638141324697, + 12.8478455237062 + ], + [ + 77.544712440648496, + 12.8477841052099 + ], + [ + 77.544726534646102, + 12.8477614946468 + ], + [ + 77.544723431476896, + 12.847735240893201 + ], + [ + 77.5447783063684, + 12.8476864651175 + ], + [ + 77.544865198886697, + 12.847691217725 + ], + [ + 77.5448712624748, + 12.8476155535792 + ], + [ + 77.544872589264799, + 12.847599002636599 + ], + [ + 77.544872756967806, + 12.8475969121804 + ], + [ + 77.544867996833105, + 12.8475973956213 + ], + [ + 77.544852008293205, + 12.8475990188083 + ], + [ + 77.544734690933396, + 12.8476109303407 + ], + [ + 77.544683287890805, + 12.847616149422199 + ], + [ + 77.544650736011306, + 12.847400225946901 + ], + [ + 77.544461521998997, + 12.8471353687247 + ], + [ + 77.544448274106202, + 12.8471168250804 + ], + [ + 77.544357901744206, + 12.8469903241265 + ], + [ + 77.544495081634906, + 12.846728597749401 + ], + [ + 77.5445761266527, + 12.846312354257201 + ], + [ + 77.544512501218307, + 12.8459614702309 + ], + [ + 77.544499898614205, + 12.845891968933399 + ], + [ + 77.544388828073593, + 12.845279429915699 + ], + [ + 77.544314064780707, + 12.8443686246799 + ], + [ + 77.543724177515202, + 12.8440549455101 + ], + [ + 77.543274589656903, + 12.8437305563541 + ], + [ + 77.542785665042103, + 12.8433785042919 + ], + [ + 77.542774927621593, + 12.8433707724608 + ], + [ + 77.542518697170493, + 12.843329440224499 + ], + [ + 77.542253040377602, + 12.843286587209199 + ], + [ + 77.541676536784394, + 12.8433250235159 + ], + [ + 77.541485583492602, + 12.843533291123499 + ], + [ + 77.541264995530099, + 12.844273172343099 + ], + [ + 77.541262244980402, + 12.8442756220931 + ], + [ + 77.541222076150305, + 12.8443113766198 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "163", + "group": "Ramaswamypalya", + "Corporatio": "Central", + "ac_no": "162", + "ac": "Shivajinagar", + "corporat_1": "1", + "ward_id": "1", + "ward_name": "1 - Ramaswamy Palya", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಿವಾಜಿನಗರ", + "ward_name_": "ರಾಮಸ್ವಾಮಿ ಪಾಳ್ಯ", + "dig_ward_n": "Ramaswamypalya", + "Assembly": "162 - Shivajinagar", + "Slno": "1" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.594415801984596, + 13.0054232074687 + ], + [ + 77.594163107021501, + 13.004953401471999 + ], + [ + 77.594056219508502, + 13.0050288497353 + ], + [ + 77.593921313200198, + 13.005123929608599 + ], + [ + 77.593865956933499, + 13.0051631372912 + ], + [ + 77.593722390522302, + 13.0052648210273 + ], + [ + 77.593498321676506, + 13.005424032351399 + ], + [ + 77.593478369385295, + 13.005443429744901 + ], + [ + 77.593351781578207, + 13.0055632706674 + ], + [ + 77.5933278575815, + 13.0055883542099 + ], + [ + 77.593782980432593, + 13.006534930133 + ], + [ + 77.593794655511104, + 13.006559211523699 + ], + [ + 77.593849172863798, + 13.006672597509599 + ], + [ + 77.593897072047398, + 13.006772218085001 + ], + [ + 77.593924028963798, + 13.0068282839333 + ], + [ + 77.593968205707299, + 13.0069201631448 + ], + [ + 77.593995070601594, + 13.006984121385999 + ], + [ + 77.594086295374495, + 13.007201305157199 + ], + [ + 77.594240873112497, + 13.0075990586536 + ], + [ + 77.5942410861024, + 13.0075996058108 + ], + [ + 77.594243678078598, + 13.0076062761341 + ], + [ + 77.594351416353703, + 13.0078886507078 + ], + [ + 77.594418434156196, + 13.0080519155423 + ], + [ + 77.5944359011161, + 13.008094465985801 + ], + [ + 77.594598160965504, + 13.0087621348029 + ], + [ + 77.594615774420106, + 13.0088346108545 + ], + [ + 77.594713093432901, + 13.009118476074701 + ], + [ + 77.594746716132306, + 13.0092165488186 + ], + [ + 77.594752361082797, + 13.009233013417401 + ], + [ + 77.594778694018203, + 13.0092180692277 + ], + [ + 77.594829351402197, + 13.0091898668627 + ], + [ + 77.594832121480394, + 13.009188324999799 + ], + [ + 77.5948382927712, + 13.009184888945899 + ], + [ + 77.594910198371906, + 13.0091448576791 + ], + [ + 77.594922901868202, + 13.009137785009401 + ], + [ + 77.594989380871993, + 13.0091007739794 + ], + [ + 77.594991742713802, + 13.0091063968023 + ], + [ + 77.595155255466594, + 13.009548464435399 + ], + [ + 77.595341320244003, + 13.0100515028623 + ], + [ + 77.595343244908904, + 13.0100736348498 + ], + [ + 77.595345347507205, + 13.010097814040201 + ], + [ + 77.595351132009199, + 13.010164333666699 + ], + [ + 77.595353482122107, + 13.0101688273103 + ], + [ + 77.595479389653505, + 13.010481509960201 + ], + [ + 77.595484701846999, + 13.010493878987999 + ], + [ + 77.595485887737496, + 13.0104972549899 + ], + [ + 77.595696289268403, + 13.011034070766801 + ], + [ + 77.595709166104101, + 13.011066924373001 + ], + [ + 77.595758937648299, + 13.0111939103711 + ], + [ + 77.595768056050503, + 13.011217176428101 + ], + [ + 77.596241639316503, + 13.0110193276885 + ], + [ + 77.596775278965097, + 13.0108378162554 + ], + [ + 77.596817169650294, + 13.0108238453723 + ], + [ + 77.596860787663005, + 13.0108098571885 + ], + [ + 77.597000749451993, + 13.0107372256918 + ], + [ + 77.597249106899199, + 13.0106083434165 + ], + [ + 77.597838311415899, + 13.0102885005461 + ], + [ + 77.598156161368806, + 13.01012157011 + ], + [ + 77.5983155331907, + 13.0100447983266 + ], + [ + 77.598868661547101, + 13.009778347184 + ], + [ + 77.598934240069397, + 13.0097467566841 + ], + [ + 77.599902261352597, + 13.009309056110199 + ], + [ + 77.600736112135493, + 13.0088715684579 + ], + [ + 77.600984398383105, + 13.008750316132801 + ], + [ + 77.601302723638199, + 13.0085948585381 + ], + [ + 77.601459119935996, + 13.008517628048301 + ], + [ + 77.602345220567599, + 13.0080769696412 + ], + [ + 77.602627176932202, + 13.0079367522869 + ], + [ + 77.603183189897905, + 13.007667954537901 + ], + [ + 77.603955453976695, + 13.0072946108127 + ], + [ + 77.6041586369237, + 13.0071963835156 + ], + [ + 77.604374914371604, + 13.007090737598199 + ], + [ + 77.605043773217005, + 13.0067640161312 + ], + [ + 77.605236838908795, + 13.0066694763259 + ], + [ + 77.604940013286296, + 13.0059813360565 + ], + [ + 77.604704799304599, + 13.006065005889299 + ], + [ + 77.604607183078102, + 13.0058706199837 + ], + [ + 77.604472504180706, + 13.0056009441127 + ], + [ + 77.604450589525598, + 13.0055572377047 + ], + [ + 77.604311374129693, + 13.0052795866015 + ], + [ + 77.603989527939007, + 13.004676391794399 + ], + [ + 77.603796895821006, + 13.004315824940999 + ], + [ + 77.6037878352072, + 13.0042752616584 + ], + [ + 77.603805180605804, + 13.003950983272199 + ], + [ + 77.603808022411002, + 13.0038922320197 + ], + [ + 77.603869864546198, + 13.003527982224099 + ], + [ + 77.603765423683598, + 13.0033415691403 + ], + [ + 77.603716869947604, + 13.003268652884801 + ], + [ + 77.6036091356968, + 13.003105730218101 + ], + [ + 77.603603370388598, + 13.0030970112691 + ], + [ + 77.603495135277399, + 13.002933221744801 + ], + [ + 77.603298853785404, + 13.0026641627204 + ], + [ + 77.603169679857899, + 13.002480255918201 + ], + [ + 77.6030613977304, + 13.002301921399599 + ], + [ + 77.603047848413297, + 13.0022796062313 + ], + [ + 77.603036098933302, + 13.0022602561261 + ], + [ + 77.602982651340596, + 13.002172556267899 + ], + [ + 77.602925299384694, + 13.0022728297174 + ], + [ + 77.602738706072003, + 13.0023896149042 + ], + [ + 77.60250061536, + 13.0025443330545 + ], + [ + 77.602221412539905, + 13.0026970319004 + ], + [ + 77.602012583625196, + 13.002781998682799 + ], + [ + 77.601838651995905, + 13.002846078756701 + ], + [ + 77.6015152001941, + 13.002917024552801 + ], + [ + 77.601429375787703, + 13.002665034137999 + ], + [ + 77.601326526306707, + 13.002470355717101 + ], + [ + 77.601222417018306, + 13.0022534959997 + ], + [ + 77.601029192225297, + 13.0023508237777 + ], + [ + 77.600949922398897, + 13.0024116311125 + ], + [ + 77.600879358031804, + 13.002452444016701 + ], + [ + 77.600694746390204, + 13.0025348326832 + ], + [ + 77.600623037736, + 13.0025313998221 + ], + [ + 77.600128734119707, + 13.0027561008514 + ], + [ + 77.599245946371497, + 13.0031731603059 + ], + [ + 77.599402997943599, + 13.0033805020452 + ], + [ + 77.599563056628298, + 13.003690531124199 + ], + [ + 77.599927468603298, + 13.003613236917399 + ], + [ + 77.6004703886816, + 13.003447690966199 + ], + [ + 77.600600449957795, + 13.003998553322001 + ], + [ + 77.600989420689103, + 13.004426793761899 + ], + [ + 77.600252010717298, + 13.0046331490413 + ], + [ + 77.599847610522801, + 13.0047857725489 + ], + [ + 77.5995287431561, + 13.0049392804092 + ], + [ + 77.599414581402996, + 13.004991873577699 + ], + [ + 77.598953499717695, + 13.005270385124501 + ], + [ + 77.598525434557502, + 13.0055581490872 + ], + [ + 77.598222722279502, + 13.005707206395201 + ], + [ + 77.598154220689693, + 13.0057482449131 + ], + [ + 77.597769520533006, + 13.0059523465272 + ], + [ + 77.597605209587002, + 13.006030157104099 + ], + [ + 77.597531569608705, + 13.0060717513431 + ], + [ + 77.597495287583499, + 13.0060948129018 + ], + [ + 77.597295644290995, + 13.006188109259501 + ], + [ + 77.597291613368796, + 13.0061901317397 + ], + [ + 77.597010182941005, + 13.006337687896099 + ], + [ + 77.596766163681195, + 13.006460964295099 + ], + [ + 77.596632950614904, + 13.006519580892499 + ], + [ + 77.596493741961794, + 13.0065875559093 + ], + [ + 77.596436547263494, + 13.0066188510882 + ], + [ + 77.596436455620093, + 13.006618898080299 + ], + [ + 77.596386375333907, + 13.006650672532 + ], + [ + 77.595980667178907, + 13.0059584636619 + ], + [ + 77.595454989133799, + 13.006170776829601 + ], + [ + 77.595406218525099, + 13.006002223544099 + ], + [ + 77.594815844776306, + 13.006268971088801 + ], + [ + 77.594415801984596, + 13.0054232074687 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "166", + "group": "Pattegar Palya", + "Corporatio": "West", + "ac_no": "166", + "ac": "Govindraj Nagar", + "corporat_1": "5", + "ward_id": "64", + "ward_name": "64 - Pattegar Palya", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಗೋವಿಂದರಾಜ ನಗರ", + "ward_name_": "ಪಟ್ಟೆಗಾರ್ ಪಾಳ್ಯ", + "dig_ward_n": "Pattegar Palya", + "Assembly": "166 - Govindraj Nagar", + "Slno": "64" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.518519497951601, + 12.9754250435911 + ], + [ + 77.518581510641397, + 12.975465099676301 + ], + [ + 77.518602714626795, + 12.9755123271374 + ], + [ + 77.518598861169096, + 12.975556253843299 + ], + [ + 77.518590318624703, + 12.975653616372799 + ], + [ + 77.518573317934198, + 12.9757239888734 + ], + [ + 77.518564339599806, + 12.9757611565738 + ], + [ + 77.518555594743503, + 12.975802571995199 + ], + [ + 77.518540940855502, + 12.975871974012 + ], + [ + 77.518540470400396, + 12.9758742002328 + ], + [ + 77.518531365054102, + 12.975917326728499 + ], + [ + 77.518522237203001, + 12.9759829176362 + ], + [ + 77.518467300894002, + 12.976073798015101 + ], + [ + 77.518459301749601, + 12.9761371192845 + ], + [ + 77.518457276015596, + 12.9762218404113 + ], + [ + 77.518457040490404, + 12.976237789162701 + ], + [ + 77.518455905627306, + 12.976314460664 + ], + [ + 77.518436831069806, + 12.9763643369688 + ], + [ + 77.518434452791595, + 12.9764140515548 + ], + [ + 77.518435636463394, + 12.976531492844201 + ], + [ + 77.518473032713601, + 12.9766429366043 + ], + [ + 77.518571031502802, + 12.9769401366115 + ], + [ + 77.518578538910702, + 12.9769597119247 + ], + [ + 77.518617845250304, + 12.977062206210601 + ], + [ + 77.518682791371802, + 12.9772315564603 + ], + [ + 77.518692872991195, + 12.9772672933415 + ], + [ + 77.518724508753394, + 12.977280271374299 + ], + [ + 77.519391600145099, + 12.977151363520701 + ], + [ + 77.519674513135897, + 12.97710678891 + ], + [ + 77.519987892010704, + 12.977061918725999 + ], + [ + 77.520111581849307, + 12.977056140112699 + ], + [ + 77.520149301885894, + 12.9770543777167 + ], + [ + 77.520267968217496, + 12.977038287499401 + ], + [ + 77.520535436451894, + 12.9769729443074 + ], + [ + 77.521115830835498, + 12.976817913896699 + ], + [ + 77.521480548916003, + 12.976727722521799 + ], + [ + 77.521802350576706, + 12.976659298921501 + ], + [ + 77.522076655281893, + 12.9766142520056 + ], + [ + 77.522215442617593, + 12.9766007953559 + ], + [ + 77.522398898021706, + 12.9765778225291 + ], + [ + 77.522503805998696, + 12.9765722633778 + ], + [ + 77.522656514722897, + 12.976561699027901 + ], + [ + 77.5226619342112, + 12.976647537094401 + ], + [ + 77.522662745993401, + 12.977030003041801 + ], + [ + 77.522659457810306, + 12.9773889592687 + ], + [ + 77.522647779956898, + 12.9776606327551 + ], + [ + 77.522657340949294, + 12.9777023729165 + ], + [ + 77.522698591512594, + 12.977748862668101 + ], + [ + 77.522698606916194, + 12.9777490197242 + ], + [ + 77.522788309849005, + 12.977767671418301 + ], + [ + 77.523288263033294, + 12.9779036024071 + ], + [ + 77.523965109391199, + 12.9779015736632 + ], + [ + 77.524001907365303, + 12.978029888836099 + ], + [ + 77.524036260431103, + 12.9780689139386 + ], + [ + 77.524191162659307, + 12.978199109987299 + ], + [ + 77.524130643118696, + 12.9782396101392 + ], + [ + 77.524099564407706, + 12.978299909671501 + ], + [ + 77.524108397123598, + 12.978410330805101 + ], + [ + 77.524132205909197, + 12.9784751927392 + ], + [ + 77.524271829385697, + 12.978495974842099 + ], + [ + 77.5245207227658, + 12.9785222434778 + ], + [ + 77.524650750849503, + 12.978541305752801 + ], + [ + 77.524886581576297, + 12.9785449852992 + ], + [ + 77.525059628461605, + 12.9785433045811 + ], + [ + 77.525220416649603, + 12.9785345719148 + ], + [ + 77.525273799128797, + 12.9785235224773 + ], + [ + 77.525274553786005, + 12.9788006176938 + ], + [ + 77.525789995841293, + 12.978791991048499 + ], + [ + 77.525779540880905, + 12.9790412457619 + ], + [ + 77.525785547477099, + 12.979177428608599 + ], + [ + 77.525804910452905, + 12.979336945440901 + ], + [ + 77.526039499689702, + 12.979333152192099 + ], + [ + 77.526858857560697, + 12.979303995931399 + ], + [ + 77.527024917595995, + 12.9800797127869 + ], + [ + 77.527067193327994, + 12.980291610807599 + ], + [ + 77.527085135300993, + 12.980386805128701 + ], + [ + 77.527195394729603, + 12.9807959701333 + ], + [ + 77.527889433575595, + 12.980699907717 + ], + [ + 77.527892922208096, + 12.980968571301901 + ], + [ + 77.527953170665697, + 12.980973283607 + ], + [ + 77.5280990082031, + 12.9810018830982 + ], + [ + 77.528153778084999, + 12.9810185616113 + ], + [ + 77.528462046838897, + 12.9810346869399 + ], + [ + 77.528699773150805, + 12.9810170748442 + ], + [ + 77.528795276901903, + 12.9810123212972 + ], + [ + 77.529129542015397, + 12.9809871957703 + ], + [ + 77.529413199964296, + 12.9809490955217 + ], + [ + 77.529757152692397, + 12.9808478749251 + ], + [ + 77.529694943695503, + 12.9806494173961 + ], + [ + 77.5296780080849, + 12.9805012310966 + ], + [ + 77.529679006205001, + 12.9804024438179 + ], + [ + 77.529893829314901, + 12.9803969500124 + ], + [ + 77.5299614042233, + 12.980362989001 + ], + [ + 77.530085941074702, + 12.980354744200801 + ], + [ + 77.530494856401901, + 12.980300272449099 + ], + [ + 77.530528867985296, + 12.980381685788601 + ], + [ + 77.530585872548201, + 12.9805234267108 + ], + [ + 77.530599591385098, + 12.9805489485368 + ], + [ + 77.530754167536699, + 12.980504415619 + ], + [ + 77.530811040880295, + 12.9804880845073 + ], + [ + 77.530510927469294, + 12.979666517213399 + ], + [ + 77.530223738678899, + 12.979739236776799 + ], + [ + 77.530076637643702, + 12.9793137594074 + ], + [ + 77.529949891816301, + 12.9789917994876 + ], + [ + 77.529825972046893, + 12.9786058544416 + ], + [ + 77.529736656708394, + 12.978432082190199 + ], + [ + 77.529705138751495, + 12.9783284042696 + ], + [ + 77.529663552649396, + 12.9782293100629 + ], + [ + 77.529652686009101, + 12.9782034164823 + ], + [ + 77.529605362081, + 12.978103478226799 + ], + [ + 77.5295155416661, + 12.9778962148629 + ], + [ + 77.529308965175304, + 12.977866987903599 + ], + [ + 77.529174369979202, + 12.977862560237 + ], + [ + 77.529171781580203, + 12.9777994776261 + ], + [ + 77.529168187424204, + 12.977636961916099 + ], + [ + 77.529168474185298, + 12.977472495791901 + ], + [ + 77.529163197430904, + 12.977143621351701 + ], + [ + 77.529153499782794, + 12.977052400469301 + ], + [ + 77.529143925654594, + 12.9768287468761 + ], + [ + 77.529128765423494, + 12.9767758259726 + ], + [ + 77.529103614845894, + 12.976747385255001 + ], + [ + 77.528979299775997, + 12.976747160641001 + ], + [ + 77.528756571109994, + 12.976755670262399 + ], + [ + 77.528739775339702, + 12.9766347488265 + ], + [ + 77.528720399800804, + 12.976454218524999 + ], + [ + 77.528716677485903, + 12.976375370406799 + ], + [ + 77.528720360150899, + 12.976319380499399 + ], + [ + 77.528668060949599, + 12.9763182529283 + ], + [ + 77.528390127009999, + 12.976312350124401 + ], + [ + 77.528117998016199, + 12.9763020873191 + ], + [ + 77.528007561618793, + 12.9763002925359 + ], + [ + 77.527897124292906, + 12.976298497714399 + ], + [ + 77.5276939363564, + 12.976282372811999 + ], + [ + 77.527623417387105, + 12.9762767764706 + ], + [ + 77.527536374451401, + 12.9762703315522 + ], + [ + 77.527292527508806, + 12.9762607497233 + ], + [ + 77.527039472663404, + 12.9762565560469 + ], + [ + 77.526783451602796, + 12.976248286449 + ], + [ + 77.526578113991206, + 12.9762486787259 + ], + [ + 77.526555556124904, + 12.975925703617801 + ], + [ + 77.526501474938101, + 12.975920173949101 + ], + [ + 77.526275385491104, + 12.975924641371099 + ], + [ + 77.525921374790897, + 12.975948516807099 + ], + [ + 77.524611238869596, + 12.976061151068899 + ], + [ + 77.524623318846196, + 12.976225658733799 + ], + [ + 77.524641140893394, + 12.9763855692613 + ], + [ + 77.524563602424195, + 12.976388214375 + ], + [ + 77.524271981162698, + 12.976399750024299 + ], + [ + 77.524258159459805, + 12.9761391333549 + ], + [ + 77.524203773633801, + 12.975644650973001 + ], + [ + 77.524173241937106, + 12.9753724645803 + ], + [ + 77.524165097030902, + 12.9753301574343 + ], + [ + 77.524115062593296, + 12.975037345670801 + ], + [ + 77.523962073434106, + 12.975047848837599 + ], + [ + 77.523804246955706, + 12.9750660435523 + ], + [ + 77.523757818038803, + 12.974740703540499 + ], + [ + 77.5237362104683, + 12.974664466661901 + ], + [ + 77.523659266526295, + 12.974668619438001 + ], + [ + 77.523649026275805, + 12.974557496057599 + ], + [ + 77.5235235262016, + 12.973913039728 + ], + [ + 77.523286580063598, + 12.9739887579205 + ], + [ + 77.523219639755993, + 12.9740090867561 + ], + [ + 77.522911145651605, + 12.9741074488617 + ], + [ + 77.522361305853593, + 12.974265160861799 + ], + [ + 77.522236401295302, + 12.9739812248684 + ], + [ + 77.522177714408997, + 12.974000561150699 + ], + [ + 77.521472767675803, + 12.974207118121299 + ], + [ + 77.521247816758503, + 12.97424790098 + ], + [ + 77.520788381860498, + 12.9743037079954 + ], + [ + 77.520618128324301, + 12.9743334795607 + ], + [ + 77.5205180191642, + 12.97435564305 + ], + [ + 77.520568444748505, + 12.9745345392529 + ], + [ + 77.520193972033098, + 12.974648501476 + ], + [ + 77.519874214649306, + 12.9747637956748 + ], + [ + 77.519612403381899, + 12.9748231000102 + ], + [ + 77.519494735021595, + 12.974864355768201 + ], + [ + 77.518973356510699, + 12.9750525765012 + ], + [ + 77.518209003820999, + 12.9753535133787 + ], + [ + 77.518340036029599, + 12.9753861249933 + ], + [ + 77.518519497951601, + 12.9754250435911 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "167", + "group": "Prashanth Nagara", + "Corporatio": "West", + "ac_no": "166", + "ac": "Govindraj Nagar", + "corporat_1": "5", + "ward_id": "65", + "ward_name": "65 - Prashanth Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಗೋವಿಂದರಾಜ ನಗರ", + "ward_name_": "ಪ್ರಶಾಂತ್ ನಗರ", + "dig_ward_n": "Prashanth Nagara", + "Assembly": "166 - Govindraj Nagar", + "Slno": "65" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.535554540144503, + 12.9676960427055 + ], + [ + 77.536023863889696, + 12.968923686401 + ], + [ + 77.536039727190101, + 12.9689659176346 + ], + [ + 77.536230483090705, + 12.9694356007804 + ], + [ + 77.535782710123499, + 12.969573178772301 + ], + [ + 77.534851084530899, + 12.9698676065558 + ], + [ + 77.534171222073596, + 12.970026365854199 + ], + [ + 77.534133501162003, + 12.9700358160308 + ], + [ + 77.533437156017399, + 12.9701674860263 + ], + [ + 77.533083147792397, + 12.9702239160464 + ], + [ + 77.533115194197507, + 12.970359087667999 + ], + [ + 77.532776611421994, + 12.9704193407958 + ], + [ + 77.532780739086206, + 12.9704316001049 + ], + [ + 77.5328172198723, + 12.970604573221401 + ], + [ + 77.532824617175905, + 12.970649157835901 + ], + [ + 77.533341412503106, + 12.970544215372801 + ], + [ + 77.5333761970317, + 12.970702067019699 + ], + [ + 77.533573947808605, + 12.9714197558864 + ], + [ + 77.533598807865602, + 12.9714215951822 + ], + [ + 77.533601994293406, + 12.9714314037374 + ], + [ + 77.533799885934897, + 12.972086647248799 + ], + [ + 77.533418784288799, + 12.972178159154099 + ], + [ + 77.532840583392797, + 12.972301872938701 + ], + [ + 77.532695532611996, + 12.972339933082401 + ], + [ + 77.531984842780204, + 12.972491473705899 + ], + [ + 77.531984081945296, + 12.972486933926101 + ], + [ + 77.531179528595501, + 12.972640851606499 + ], + [ + 77.529747034891301, + 12.972903372442399 + ], + [ + 77.529570106858401, + 12.972958132357 + ], + [ + 77.529536288371801, + 12.972895639093201 + ], + [ + 77.528780089575704, + 12.972878136793399 + ], + [ + 77.528717011402904, + 12.972834886326201 + ], + [ + 77.528541255789094, + 12.9728498644889 + ], + [ + 77.528543244959906, + 12.9728759492981 + ], + [ + 77.528455528273994, + 12.972869060747 + ], + [ + 77.528172343481302, + 12.972874841309901 + ], + [ + 77.527624463997796, + 12.972883194232899 + ], + [ + 77.527062938238103, + 12.9729158992485 + ], + [ + 77.527076141246994, + 12.973195684462301 + ], + [ + 77.527087034767703, + 12.973498941948501 + ], + [ + 77.527102039711195, + 12.9735013561738 + ], + [ + 77.527115731677398, + 12.973978067065801 + ], + [ + 77.527131457662094, + 12.9741595690744 + ], + [ + 77.527130374324003, + 12.9743578861216 + ], + [ + 77.526541002303006, + 12.974384806038 + ], + [ + 77.526526440588995, + 12.9746241264681 + ], + [ + 77.526538781264904, + 12.974776142543799 + ], + [ + 77.526547470342905, + 12.975025076703901 + ], + [ + 77.526559101582706, + 12.975336047689501 + ], + [ + 77.526493567165801, + 12.9753427396078 + ], + [ + 77.526525510638905, + 12.9756255081059 + ], + [ + 77.526555556124904, + 12.975925703617801 + ], + [ + 77.526578113991206, + 12.9762486787259 + ], + [ + 77.526783451602796, + 12.976248286449 + ], + [ + 77.527039472663404, + 12.9762565560469 + ], + [ + 77.527292527508806, + 12.9762607497233 + ], + [ + 77.527536374451401, + 12.9762703315522 + ], + [ + 77.527623417387105, + 12.9762767764706 + ], + [ + 77.5276939363564, + 12.976282372811999 + ], + [ + 77.527897124292906, + 12.976298497714399 + ], + [ + 77.528007561618793, + 12.9763002925359 + ], + [ + 77.528117998016199, + 12.9763020873191 + ], + [ + 77.528390127009999, + 12.976312350124401 + ], + [ + 77.528668060949599, + 12.9763182529283 + ], + [ + 77.528720360150899, + 12.976319380499399 + ], + [ + 77.528716677485903, + 12.976375370406799 + ], + [ + 77.528720399800804, + 12.976454218524999 + ], + [ + 77.528739775339702, + 12.9766347488265 + ], + [ + 77.528756571109994, + 12.976755670262399 + ], + [ + 77.528979299775997, + 12.976747160641001 + ], + [ + 77.529103614845894, + 12.976747385255001 + ], + [ + 77.529128765423494, + 12.9767758259726 + ], + [ + 77.529143925654594, + 12.9768287468761 + ], + [ + 77.529153499782794, + 12.977052400469301 + ], + [ + 77.529163197430904, + 12.977143621351701 + ], + [ + 77.529168474185298, + 12.977472495791901 + ], + [ + 77.529168187424204, + 12.977636961916099 + ], + [ + 77.529171781580203, + 12.9777994776261 + ], + [ + 77.529174369979202, + 12.977862560237 + ], + [ + 77.529308965175304, + 12.977866987903599 + ], + [ + 77.5295155416661, + 12.9778962148629 + ], + [ + 77.529605362081, + 12.978103478226799 + ], + [ + 77.529652686009101, + 12.9782034164823 + ], + [ + 77.529663552649396, + 12.9782293100629 + ], + [ + 77.529705138751495, + 12.9783284042696 + ], + [ + 77.529736656708394, + 12.978432082190199 + ], + [ + 77.529825972046893, + 12.9786058544416 + ], + [ + 77.529949891816301, + 12.9789917994876 + ], + [ + 77.530076637643702, + 12.9793137594074 + ], + [ + 77.530223738678899, + 12.979739236776799 + ], + [ + 77.530510927469294, + 12.979666517213399 + ], + [ + 77.530811040880295, + 12.9804880845073 + ], + [ + 77.531769906529902, + 12.9801512375185 + ], + [ + 77.531737826570904, + 12.9800319609719 + ], + [ + 77.532040950661795, + 12.9799366676052 + ], + [ + 77.532335869151694, + 12.9798694588694 + ], + [ + 77.532441280907307, + 12.9798373993652 + ], + [ + 77.532663657155197, + 12.9797708970074 + ], + [ + 77.532768969128796, + 12.9797289987621 + ], + [ + 77.533597598343704, + 12.9794726633378 + ], + [ + 77.534180464852298, + 12.9792564895845 + ], + [ + 77.534128585987006, + 12.979130182987699 + ], + [ + 77.534031142904198, + 12.9788353150979 + ], + [ + 77.534028308932903, + 12.978826572712 + ], + [ + 77.533911680894406, + 12.9783836521444 + ], + [ + 77.534239401615096, + 12.978297767312 + ], + [ + 77.534177336026204, + 12.9781136908734 + ], + [ + 77.534011701780202, + 12.9776949957503 + ], + [ + 77.5340115439041, + 12.977694507606801 + ], + [ + 77.533893625236104, + 12.9773633857557 + ], + [ + 77.533825891375301, + 12.9770960699071 + ], + [ + 77.533808361514602, + 12.977041744562399 + ], + [ + 77.533726909063901, + 12.9767723280843 + ], + [ + 77.533684520641401, + 12.9766259042015 + ], + [ + 77.533634108445497, + 12.9764492828267 + ], + [ + 77.533521243655599, + 12.976126432990201 + ], + [ + 77.533494864784302, + 12.976036619912099 + ], + [ + 77.5334025475658, + 12.9758072107222 + ], + [ + 77.533806427588303, + 12.9757339527963 + ], + [ + 77.533998654690294, + 12.975701003700401 + ], + [ + 77.534349109081504, + 12.975647388532501 + ], + [ + 77.534424590892897, + 12.9756394819685 + ], + [ + 77.534642196000306, + 12.9756245839986 + ], + [ + 77.534890962837494, + 12.975607552536101 + ], + [ + 77.534994565719799, + 12.975600459448099 + ], + [ + 77.535196735793093, + 12.9755865363709 + ], + [ + 77.535342713154094, + 12.975578602658 + ], + [ + 77.535357520541496, + 12.975577797842 + ], + [ + 77.535479104105406, + 12.975574590351901 + ], + [ + 77.535932413820802, + 12.9755626330222 + ], + [ + 77.535932611833204, + 12.975562627477199 + ], + [ + 77.5362568375092, + 12.975566636979799 + ], + [ + 77.536833005339204, + 12.9756072326352 + ], + [ + 77.536942257928104, + 12.9756149303999 + ], + [ + 77.537396214285494, + 12.9756726525197 + ], + [ + 77.538463376814093, + 12.975743780196501 + ], + [ + 77.538629486281494, + 12.975743237243 + ], + [ + 77.538923434995894, + 12.975742276246301 + ], + [ + 77.539017666143593, + 12.9757204399016 + ], + [ + 77.539428493822498, + 12.9756716077814 + ], + [ + 77.540210573576402, + 12.975577315161701 + ], + [ + 77.540427547409706, + 12.975554960014501 + ], + [ + 77.540397926824198, + 12.975222218669099 + ], + [ + 77.540294293087101, + 12.9742892311716 + ], + [ + 77.540370107665197, + 12.9743076619974 + ], + [ + 77.540897809835201, + 12.974426808357199 + ], + [ + 77.541329700363804, + 12.974520118334199 + ], + [ + 77.541640414171894, + 12.974585925918699 + ], + [ + 77.541855354921395, + 12.974629721193001 + ], + [ + 77.541982459823103, + 12.9746648135109 + ], + [ + 77.542072941266994, + 12.9746466628369 + ], + [ + 77.542070449075197, + 12.9746220776369 + ], + [ + 77.542206775867299, + 12.973812046464399 + ], + [ + 77.541635821267306, + 12.9736908246763 + ], + [ + 77.541633670146197, + 12.9736903686688 + ], + [ + 77.541340758512305, + 12.9736281787997 + ], + [ + 77.540854984152801, + 12.9735250431296 + ], + [ + 77.540614841439194, + 12.9734730221295 + ], + [ + 77.540225601732303, + 12.9733887045715 + ], + [ + 77.539976001205901, + 12.973334634995499 + ], + [ + 77.539619956989995, + 12.973257507299801 + ], + [ + 77.539562982021593, + 12.9732451648366 + ], + [ + 77.539397121832295, + 12.9732040268159 + ], + [ + 77.539218195094904, + 12.9731596481222 + ], + [ + 77.539146801745005, + 12.9731419414945 + ], + [ + 77.539053121201604, + 12.973109565059801 + ], + [ + 77.539015315430902, + 12.973096498654201 + ], + [ + 77.538943415702207, + 12.973071649557401 + ], + [ + 77.538921853952104, + 12.973059381327101 + ], + [ + 77.538831397478603, + 12.973007913722199 + ], + [ + 77.538763888950697, + 12.9729695030773 + ], + [ + 77.538621746846104, + 12.972920070404699 + ], + [ + 77.538608672617997, + 12.972911536455999 + ], + [ + 77.538592765244005, + 12.9729011536536 + ], + [ + 77.538489110960896, + 12.972834228061901 + ], + [ + 77.538463744274793, + 12.9728178490922 + ], + [ + 77.538337754771604, + 12.972736501595501 + ], + [ + 77.538271822324404, + 12.972672006677101 + ], + [ + 77.538005110723802, + 12.9724111105578 + ], + [ + 77.537903007604399, + 12.9722788449848 + ], + [ + 77.537823683026204, + 12.972121511642699 + ], + [ + 77.537815957226599, + 12.9720978709205 + ], + [ + 77.537806043486697, + 12.972068417835899 + ], + [ + 77.537796859275701, + 12.9720411349966 + ], + [ + 77.537795367030697, + 12.972036700866999 + ], + [ + 77.537589356590999, + 12.971424681362601 + ], + [ + 77.537542082225002, + 12.9712842372443 + ], + [ + 77.537510787326994, + 12.9711912645936 + ], + [ + 77.537470805111298, + 12.971072485011099 + ], + [ + 77.537376053590904, + 12.9707910005397 + ], + [ + 77.5366561573463, + 12.968755929585001 + ], + [ + 77.536602785015702, + 12.968605051630799 + ], + [ + 77.536595955557601, + 12.9685857441733 + ], + [ + 77.5365021710127, + 12.9683206222899 + ], + [ + 77.536443648134195, + 12.9681551808258 + ], + [ + 77.536250108137196, + 12.967661779817799 + ], + [ + 77.536246440894402, + 12.967652431204 + ], + [ + 77.536194027643006, + 12.9675188092267 + ], + [ + 77.536176718062904, + 12.967525523574301 + ], + [ + 77.535963178700698, + 12.967583192990601 + ], + [ + 77.535554540144503, + 12.9676960427055 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "168", + "group": "Thimmenahalli Ward", + "Corporatio": "West", + "ac_no": "166", + "ac": "Govindraj Nagar", + "corporat_1": "5", + "ward_id": "60", + "ward_name": "60 - Thimmenahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಗೋವಿಂದರಾಜ ನಗರ", + "ward_name_": "ತಿಮ್ಮೇನಹಳ್ಳಿ", + "dig_ward_n": "Thimmenahalli Ward", + "Assembly": "166 - Govindraj Nagar", + "Slno": "60" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.543374595938701, + 12.9740602055333 + ], + [ + 77.543349467337407, + 12.974054865160801 + ], + [ + 77.543267518271094, + 12.974037450019701 + ], + [ + 77.543102031280696, + 12.974002282839299 + ], + [ + 77.542603307606299, + 12.9738962976995 + ], + [ + 77.542294070472593, + 12.973830580654401 + ], + [ + 77.542210030538399, + 12.973812737473301 + ], + [ + 77.542206775867299, + 12.973812046464399 + ], + [ + 77.542070449075197, + 12.9746220776369 + ], + [ + 77.542072941266994, + 12.9746466628369 + ], + [ + 77.541982459823103, + 12.9746648135109 + ], + [ + 77.541855354921395, + 12.974629721193001 + ], + [ + 77.541640414171894, + 12.974585925918699 + ], + [ + 77.541329700363804, + 12.974520118334199 + ], + [ + 77.540897809835201, + 12.974426808357199 + ], + [ + 77.540370107665197, + 12.9743076619974 + ], + [ + 77.540294293087101, + 12.9742892311716 + ], + [ + 77.540397926824198, + 12.975222218669099 + ], + [ + 77.540427547409706, + 12.975554960014501 + ], + [ + 77.540210573576402, + 12.975577315161701 + ], + [ + 77.539428493822498, + 12.9756716077814 + ], + [ + 77.539017666143593, + 12.9757204399016 + ], + [ + 77.538923434995894, + 12.975742276246301 + ], + [ + 77.538629486281494, + 12.975743237243 + ], + [ + 77.538463376814093, + 12.975743780196501 + ], + [ + 77.537396214285494, + 12.9756726525197 + ], + [ + 77.536942257928104, + 12.9756149303999 + ], + [ + 77.536833005339204, + 12.9756072326352 + ], + [ + 77.5362568375092, + 12.975566636979799 + ], + [ + 77.535932611833204, + 12.975562627477199 + ], + [ + 77.535932413820802, + 12.9755626330222 + ], + [ + 77.535479104105406, + 12.975574590351901 + ], + [ + 77.535357520541496, + 12.975577797842 + ], + [ + 77.535342713154094, + 12.975578602658 + ], + [ + 77.535196735793093, + 12.9755865363709 + ], + [ + 77.534994565719799, + 12.975600459448099 + ], + [ + 77.534890962837494, + 12.975607552536101 + ], + [ + 77.534642196000306, + 12.9756245839986 + ], + [ + 77.534424590892897, + 12.9756394819685 + ], + [ + 77.534349109081504, + 12.975647388532501 + ], + [ + 77.533998654690294, + 12.975701003700401 + ], + [ + 77.533806427588303, + 12.9757339527963 + ], + [ + 77.5334025475658, + 12.9758072107222 + ], + [ + 77.533494864784302, + 12.976036619912099 + ], + [ + 77.533521243655599, + 12.976126432990201 + ], + [ + 77.533634108445497, + 12.9764492828267 + ], + [ + 77.533684520641401, + 12.9766259042015 + ], + [ + 77.533726909063901, + 12.9767723280843 + ], + [ + 77.533808361514602, + 12.977041744562399 + ], + [ + 77.533825891375301, + 12.9770960699071 + ], + [ + 77.533893625236104, + 12.9773633857557 + ], + [ + 77.5340115439041, + 12.977694507606801 + ], + [ + 77.534011701780202, + 12.9776949957503 + ], + [ + 77.534177336026204, + 12.9781136908734 + ], + [ + 77.534239401615096, + 12.978297767312 + ], + [ + 77.533911680894406, + 12.9783836521444 + ], + [ + 77.534028308932903, + 12.978826572712 + ], + [ + 77.534031142904198, + 12.9788353150979 + ], + [ + 77.534128585987006, + 12.979130182987699 + ], + [ + 77.534180464852298, + 12.9792564895845 + ], + [ + 77.534184817443602, + 12.979267085543899 + ], + [ + 77.534225543865404, + 12.9793772464648 + ], + [ + 77.534326184335796, + 12.979687022844301 + ], + [ + 77.534334231788904, + 12.979711124926 + ], + [ + 77.534404742660001, + 12.9799223126189 + ], + [ + 77.534414376088606, + 12.9799525482657 + ], + [ + 77.534464536702004, + 12.980109977149301 + ], + [ + 77.534741816988699, + 12.981012652936201 + ], + [ + 77.534853971620805, + 12.981381305013899 + ], + [ + 77.534860778882603, + 12.981378410020699 + ], + [ + 77.534865658998598, + 12.981376334131699 + ], + [ + 77.534885926179001, + 12.981367715208201 + ], + [ + 77.534897000928794, + 12.981363004911801 + ], + [ + 77.534994322618104, + 12.9813216163275 + ], + [ + 77.535078600957405, + 12.9812857739549 + ], + [ + 77.536080213391401, + 12.980907466054401 + ], + [ + 77.536311071254502, + 12.9808202709072 + ], + [ + 77.536352813363294, + 12.980804504579799 + ], + [ + 77.536582569690296, + 12.9807177247271 + ], + [ + 77.536785105378399, + 12.980646857573999 + ], + [ + 77.536795286295003, + 12.980672729387701 + ], + [ + 77.536797450214806, + 12.9806782279889 + ], + [ + 77.536975012692906, + 12.9806005598446 + ], + [ + 77.537837059130695, + 12.9802234863621 + ], + [ + 77.537887097510804, + 12.980201599128399 + ], + [ + 77.537913724531805, + 12.980189951817801 + ], + [ + 77.538550394177705, + 12.9799093068546 + ], + [ + 77.538604027793596, + 12.9798856650907 + ], + [ + 77.538854193708502, + 12.979775390049401 + ], + [ + 77.539180980483295, + 12.9796313409596 + ], + [ + 77.539246755271193, + 12.9796023466899 + ], + [ + 77.539289956724403, + 12.979584908742201 + ], + [ + 77.539670228652696, + 12.9794259904714 + ], + [ + 77.539674383016603, + 12.979424124876701 + ], + [ + 77.540120943961099, + 12.9792236131906 + ], + [ + 77.540207922278697, + 12.9791845591994 + ], + [ + 77.540260289095301, + 12.979162759952899 + ], + [ + 77.540507317371507, + 12.9790599208618 + ], + [ + 77.540797182360294, + 12.978939246736999 + ], + [ + 77.540863918042007, + 12.9789416617476 + ], + [ + 77.541135870971999, + 12.978838605629401 + ], + [ + 77.541468560733193, + 12.9787158317893 + ], + [ + 77.541881799896302, + 12.978628818893499 + ], + [ + 77.541920967142204, + 12.978620572141899 + ], + [ + 77.542264133851901, + 12.9785694076956 + ], + [ + 77.542858539274405, + 12.978462479110201 + ], + [ + 77.542952685209102, + 12.978445542458401 + ], + [ + 77.543417301395394, + 12.9783525515241 + ], + [ + 77.543845478634907, + 12.978271868333801 + ], + [ + 77.544030396756597, + 12.978236848320201 + ], + [ + 77.544259561399002, + 12.978168480081299 + ], + [ + 77.544418492687498, + 12.978121065605499 + ], + [ + 77.544802371021007, + 12.977978977683801 + ], + [ + 77.5448917106972, + 12.9779429908791 + ], + [ + 77.545097082508306, + 12.977864750515399 + ], + [ + 77.545178872672594, + 12.9778278699093 + ], + [ + 77.545326534892993, + 12.977761286211599 + ], + [ + 77.545593348337604, + 12.9776102173285 + ], + [ + 77.545893494532393, + 12.9773542321575 + ], + [ + 77.546487598456807, + 12.976909798785799 + ], + [ + 77.546903240156794, + 12.9766021354079 + ], + [ + 77.547335464513594, + 12.9761623815773 + ], + [ + 77.547474406482905, + 12.9760210194857 + ], + [ + 77.547556971167296, + 12.9759272449737 + ], + [ + 77.548178725304993, + 12.975253360704899 + ], + [ + 77.548334224696703, + 12.9750912967139 + ], + [ + 77.548358993401195, + 12.9750654824115 + ], + [ + 77.548349949799501, + 12.975052997930399 + ], + [ + 77.548099729719794, + 12.974707571168199 + ], + [ + 77.547999204429004, + 12.9745687975162 + ], + [ + 77.547964992118693, + 12.974521567160499 + ], + [ + 77.547899591598096, + 12.974431863351899 + ], + [ + 77.547738070084193, + 12.9742888897906 + ], + [ + 77.547410430792397, + 12.9742299863748 + ], + [ + 77.547195609128806, + 12.9742241853614 + ], + [ + 77.546670524557399, + 12.9742121297592 + ], + [ + 77.546570298993302, + 12.974209828069799 + ], + [ + 77.546117033259094, + 12.9741994206467 + ], + [ + 77.5455998065502, + 12.974187545215701 + ], + [ + 77.545163611439904, + 12.9741775291556 + ], + [ + 77.544741319361904, + 12.9741678307036 + ], + [ + 77.544705985029196, + 12.974167019176299 + ], + [ + 77.544642036109707, + 12.9741655516113 + ], + [ + 77.544471563359707, + 12.974161636257699 + ], + [ + 77.544184208783605, + 12.974157671757 + ], + [ + 77.543660434704606, + 12.974118751569801 + ], + [ + 77.543386370862194, + 12.9740627068111 + ], + [ + 77.543374595938701, + 12.9740602055333 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "169", + "group": "Anubhava Nagara", + "Corporatio": "West", + "ac_no": "166", + "ac": "Govindraj Nagar", + "corporat_1": "5", + "ward_id": "100", + "ward_name": "100 - Anubhava Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಗೋವಿಂದರಾಜ ನಗರ", + "ward_name_": "ಅನುಭವ ನಗರ", + "dig_ward_n": "Anubhava Nagara", + "Assembly": "166 - Govindraj Nagar", + "Slno": "100" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.520678180283696, + 12.961830443065001 + ], + [ + 77.520680349748901, + 12.9620609065268 + ], + [ + 77.520697076055399, + 12.962212494102401 + ], + [ + 77.520770691306694, + 12.9627786985063 + ], + [ + 77.520832514804894, + 12.9631701733712 + ], + [ + 77.520851059786196, + 12.9634023617176 + ], + [ + 77.520774097620205, + 12.9634235434493 + ], + [ + 77.520747944350205, + 12.9634321226553 + ], + [ + 77.520577268809006, + 12.9634587534019 + ], + [ + 77.520481713880301, + 12.9634729245861 + ], + [ + 77.520495253340997, + 12.963591248169299 + ], + [ + 77.520517345081799, + 12.963754145965201 + ], + [ + 77.519831842081999, + 12.9639659040186 + ], + [ + 77.520049944349495, + 12.964548875282899 + ], + [ + 77.519950564818799, + 12.9645664894324 + ], + [ + 77.519734782940802, + 12.9645973410558 + ], + [ + 77.519847892967107, + 12.9650116532063 + ], + [ + 77.520112329755406, + 12.966222532228301 + ], + [ + 77.5202105245571, + 12.9665470477869 + ], + [ + 77.520242076142296, + 12.966691309906899 + ], + [ + 77.520071285189402, + 12.966706869332301 + ], + [ + 77.520003488779906, + 12.966603549780899 + ], + [ + 77.519962910294495, + 12.9665975091434 + ], + [ + 77.519748494835198, + 12.966610939159599 + ], + [ + 77.519614281745007, + 12.9666182940651 + ], + [ + 77.519344159745998, + 12.9666178821003 + ], + [ + 77.518960147463105, + 12.9666503622592 + ], + [ + 77.518487337214196, + 12.9666784030915 + ], + [ + 77.518228170910902, + 12.9666930219341 + ], + [ + 77.518222175073603, + 12.9666340417516 + ], + [ + 77.518081658794202, + 12.966628589574199 + ], + [ + 77.517842495496595, + 12.966636959238 + ], + [ + 77.517611152423498, + 12.966617807424599 + ], + [ + 77.517589100927395, + 12.9666615667924 + ], + [ + 77.517643349830493, + 12.9666911956501 + ], + [ + 77.517753011438401, + 12.9667748361226 + ], + [ + 77.5178238087111, + 12.966887086490701 + ], + [ + 77.517834620688006, + 12.9669008638894 + ], + [ + 77.517853878980304, + 12.9669254022586 + ], + [ + 77.517877467291399, + 12.9669554578579 + ], + [ + 77.517947582978493, + 12.9669999544048 + ], + [ + 77.517997650987596, + 12.9670548073282 + ], + [ + 77.517997747422299, + 12.967055144297699 + ], + [ + 77.517997884911296, + 12.967055624523899 + ], + [ + 77.517998110235695, + 12.9670564110843 + ], + [ + 77.517998350843698, + 12.967057251705899 + ], + [ + 77.517999866131504, + 12.967062548621 + ], + [ + 77.518001520796105, + 12.9670683302613 + ], + [ + 77.518027733121897, + 12.967159943689101 + ], + [ + 77.518045988067698, + 12.967223742683901 + ], + [ + 77.518061174971393, + 12.967251708495599 + ], + [ + 77.518086804986794, + 12.967298904166899 + ], + [ + 77.518106998497402, + 12.967336087644901 + ], + [ + 77.5181431356513, + 12.9674669164578 + ], + [ + 77.518144643362007, + 12.9674723751678 + ], + [ + 77.518115956194094, + 12.9675968817892 + ], + [ + 77.518025803949001, + 12.9677355355501 + ], + [ + 77.517857740746706, + 12.967913341364699 + ], + [ + 77.517732681790093, + 12.968016194445299 + ], + [ + 77.517731014545305, + 12.968017861244499 + ], + [ + 77.5176277954657, + 12.968121109173801 + ], + [ + 77.517480218912297, + 12.9682750001303 + ], + [ + 77.517475736153003, + 12.968315836704599 + ], + [ + 77.517464119136307, + 12.968421665755899 + ], + [ + 77.517459121629798, + 12.968467194585401 + ], + [ + 77.517459507902402, + 12.9685055889084 + ], + [ + 77.517460916672107, + 12.968645615261901 + ], + [ + 77.517460821826603, + 12.968750646168299 + ], + [ + 77.517440486444897, + 12.968824906033101 + ], + [ + 77.517424471399096, + 12.9688833908244 + ], + [ + 77.517423612133697, + 12.9688865288072 + ], + [ + 77.517445228946301, + 12.968935331811901 + ], + [ + 77.5174755473641, + 12.9690037799817 + ], + [ + 77.517478403584207, + 12.9690102276098 + ], + [ + 77.517461798672102, + 12.9690194231344 + ], + [ + 77.517467788111006, + 12.969081458901799 + ], + [ + 77.517468226175296, + 12.9690859928614 + ], + [ + 77.517473668949506, + 12.969111915348501 + ], + [ + 77.517475419105907, + 12.9691182137633 + ], + [ + 77.517480240437393, + 12.9691355682031 + ], + [ + 77.517488130972197, + 12.9691619512692 + ], + [ + 77.517494378021993, + 12.9691828407954 + ], + [ + 77.517495731736105, + 12.969187368604301 + ], + [ + 77.517493452369607, + 12.969209229671 + ], + [ + 77.517492401350694, + 12.969219312782 + ], + [ + 77.517490778120603, + 12.9692348774454 + ], + [ + 77.517489955566802, + 12.9692427628801 + ], + [ + 77.517585624934895, + 12.969181116481501 + ], + [ + 77.518461713797095, + 12.9690324876492 + ], + [ + 77.518494580162695, + 12.969028583549299 + ], + [ + 77.518829663209502, + 12.9689450318256 + ], + [ + 77.518906748035505, + 12.9692425039347 + ], + [ + 77.518933717219696, + 12.9693149051645 + ], + [ + 77.519145021999194, + 12.969988770314799 + ], + [ + 77.519545391707595, + 12.969894064825199 + ], + [ + 77.519573828356499, + 12.969958882734799 + ], + [ + 77.519591136338093, + 12.9700298636246 + ], + [ + 77.519900047008406, + 12.969973131508601 + ], + [ + 77.520398084897295, + 12.9699206218583 + ], + [ + 77.520777895310601, + 12.9698919639476 + ], + [ + 77.520788853077207, + 12.970022044330699 + ], + [ + 77.521132687948807, + 12.969984651719701 + ], + [ + 77.521369294582001, + 12.969952082520299 + ], + [ + 77.521396891332799, + 12.9700100962023 + ], + [ + 77.521511607576898, + 12.969982492805199 + ], + [ + 77.522109240626705, + 12.9698571091954 + ], + [ + 77.522686869731203, + 12.969737973485399 + ], + [ + 77.522687812951403, + 12.9697377782215 + ], + [ + 77.522930314101501, + 12.969694740061501 + ], + [ + 77.523429450386104, + 12.9695983141008 + ], + [ + 77.523585058346995, + 12.969569556290899 + ], + [ + 77.523856214606596, + 12.9695192411455 + ], + [ + 77.524427576191201, + 12.969391079882399 + ], + [ + 77.524621738026298, + 12.969358919772199 + ], + [ + 77.524594253622894, + 12.969190108282399 + ], + [ + 77.524479531988405, + 12.968828118649499 + ], + [ + 77.524477097482503, + 12.9688225795511 + ], + [ + 77.524397428279599, + 12.968641310568399 + ], + [ + 77.524252527041696, + 12.9683461837429 + ], + [ + 77.524189466962397, + 12.968216046731399 + ], + [ + 77.523975248373205, + 12.967773959066999 + ], + [ + 77.523959012418402, + 12.967739412110401 + ], + [ + 77.523884896324404, + 12.9675817113449 + ], + [ + 77.524152074740002, + 12.967502819636101 + ], + [ + 77.524179371727996, + 12.9675025548086 + ], + [ + 77.524272785686506, + 12.967484436322801 + ], + [ + 77.524428630525307, + 12.967469538301 + ], + [ + 77.524520152269403, + 12.967457176088599 + ], + [ + 77.525010210542305, + 12.967346729556001 + ], + [ + 77.525010904040499, + 12.9673465285777 + ], + [ + 77.525220841976207, + 12.9672718289972 + ], + [ + 77.525272619344406, + 12.967243337592899 + ], + [ + 77.525499889509007, + 12.967156987966201 + ], + [ + 77.525866294858503, + 12.967068013736 + ], + [ + 77.525903183087806, + 12.967052517698701 + ], + [ + 77.525961586893402, + 12.9670277300234 + ], + [ + 77.526000614471599, + 12.9669948045956 + ], + [ + 77.525909349639093, + 12.9667459149119 + ], + [ + 77.526478945939601, + 12.9665965744496 + ], + [ + 77.526442057884907, + 12.9664591775906 + ], + [ + 77.526340333395197, + 12.9660151105076 + ], + [ + 77.525761798784202, + 12.9661963268598 + ], + [ + 77.525751045189807, + 12.966200234889399 + ], + [ + 77.525706696852794, + 12.9659364894218 + ], + [ + 77.525663192932399, + 12.965755256588199 + ], + [ + 77.5256397219826, + 12.965647248233701 + ], + [ + 77.525651430351502, + 12.965604007081 + ], + [ + 77.525949049613502, + 12.9654983306764 + ], + [ + 77.525911145815002, + 12.96526090081 + ], + [ + 77.525965174945199, + 12.965242177273 + ], + [ + 77.525964962791804, + 12.965240050736799 + ], + [ + 77.525913022744902, + 12.964892240584099 + ], + [ + 77.525929206301996, + 12.964584026744699 + ], + [ + 77.526432895647602, + 12.964573363299699 + ], + [ + 77.526431640405605, + 12.9645370633075 + ], + [ + 77.526428868993307, + 12.9644568893423 + ], + [ + 77.526473117628896, + 12.964334490178601 + ], + [ + 77.5265406813228, + 12.964126034217101 + ], + [ + 77.526597116592896, + 12.963956084124799 + ], + [ + 77.526622465580701, + 12.9639004999735 + ], + [ + 77.526656129991295, + 12.9638132115423 + ], + [ + 77.526691543398599, + 12.963728168438999 + ], + [ + 77.526728650596894, + 12.963639719039501 + ], + [ + 77.526731482759402, + 12.9636047088651 + ], + [ + 77.526732051083499, + 12.963597675190099 + ], + [ + 77.526738887999898, + 12.9635131326931 + ], + [ + 77.526732812027703, + 12.963367505818599 + ], + [ + 77.526710064497195, + 12.963224299495399 + ], + [ + 77.526650298275399, + 12.9630612037994 + ], + [ + 77.526634596763898, + 12.9630183560863 + ], + [ + 77.526627175618799, + 12.9629981052906 + ], + [ + 77.526589971067594, + 12.962905859943801 + ], + [ + 77.526575187385902, + 12.9628100088858 + ], + [ + 77.526572045822903, + 12.9627840625733 + ], + [ + 77.526602450079196, + 12.962601944200699 + ], + [ + 77.526626464642206, + 12.962496480237499 + ], + [ + 77.526665850828095, + 12.962323509125699 + ], + [ + 77.526714335728499, + 12.961993268852 + ], + [ + 77.526311589685704, + 12.962004913892899 + ], + [ + 77.526302792902001, + 12.9620051691304 + ], + [ + 77.526303838824703, + 12.962025744738 + ], + [ + 77.526304229170904, + 12.962033388895399 + ], + [ + 77.526306236186301, + 12.9620782750108 + ], + [ + 77.526308400088695, + 12.962126657872201 + ], + [ + 77.526312004756306, + 12.9622072655746 + ], + [ + 77.526312406927005, + 12.962216263931399 + ], + [ + 77.526299741575002, + 12.962216386865901 + ], + [ + 77.526232151794204, + 12.9621990492262 + ], + [ + 77.526047223604905, + 12.9621516117222 + ], + [ + 77.525752510273506, + 12.962076011925801 + ], + [ + 77.525360858971496, + 12.961976348542899 + ], + [ + 77.525174665834498, + 12.961928966902599 + ], + [ + 77.525047128199603, + 12.961896513470901 + ], + [ + 77.524910920779902, + 12.9618611038659 + ], + [ + 77.524903452335394, + 12.961859163363 + ], + [ + 77.524833539254203, + 12.9618409886534 + ], + [ + 77.524536319954706, + 12.961765310465699 + ], + [ + 77.5243977270122, + 12.9617300221829 + ], + [ + 77.524347059902894, + 12.9617243726297 + ], + [ + 77.524174083099695, + 12.961705086739601 + ], + [ + 77.523951002587907, + 12.9616790162824 + ], + [ + 77.523823697404595, + 12.961687971861901 + ], + [ + 77.523280725301305, + 12.9617261716727 + ], + [ + 77.523231228470294, + 12.9619386477946 + ], + [ + 77.523171515246403, + 12.9621949839433 + ], + [ + 77.523162070627805, + 12.962235528843699 + ], + [ + 77.523157870948594, + 12.962218630199599 + ], + [ + 77.523113105533994, + 12.962206179626399 + ], + [ + 77.523086741257003, + 12.962198846868599 + ], + [ + 77.522965606388397, + 12.9621651557982 + ], + [ + 77.522675529388493, + 12.962138701938599 + ], + [ + 77.522596206745106, + 12.9621314677147 + ], + [ + 77.522560662663807, + 12.9621068580631 + ], + [ + 77.522465582849406, + 12.9620410267575 + ], + [ + 77.522443218346297, + 12.962025542808201 + ], + [ + 77.5223822595878, + 12.9619833374843 + ], + [ + 77.522268552627494, + 12.961892777630901 + ], + [ + 77.5222603730153, + 12.9618862650978 + ], + [ + 77.522130942784202, + 12.961784713996799 + ], + [ + 77.522118190113801, + 12.961774707738201 + ], + [ + 77.522077613721507, + 12.961766207952 + ], + [ + 77.521983670624707, + 12.961746529690799 + ], + [ + 77.521968753347707, + 12.961743404530999 + ], + [ + 77.521917389091698, + 12.9617396079651 + ], + [ + 77.521847179472999, + 12.9617344183082 + ], + [ + 77.521759609152895, + 12.9617285349107 + ], + [ + 77.521729645940397, + 12.9617265222342 + ], + [ + 77.521676106539999, + 12.961733775491901 + ], + [ + 77.521662598869995, + 12.961735604902 + ], + [ + 77.521496207932202, + 12.9617581469267 + ], + [ + 77.521305075879695, + 12.961759998455699 + ], + [ + 77.521270852646296, + 12.9617603299672 + ], + [ + 77.521249808774698, + 12.9617605338115 + ], + [ + 77.521109935303102, + 12.961767856169001 + ], + [ + 77.520879217731704, + 12.961779934247399 + ], + [ + 77.520831376803599, + 12.9617826987598 + ], + [ + 77.520742186610605, + 12.961787853187801 + ], + [ + 77.520644445184402, + 12.9617935005795 + ], + [ + 77.520678180283696, + 12.961830443065001 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "170", + "group": "Chandra Layout", + "Corporatio": "West", + "ac_no": "166", + "ac": "Govindraj Nagar", + "corporat_1": "5", + "ward_id": "102", + "ward_name": "102 - Chandra Layout", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಗೋವಿಂದರಾಜ ನಗರ", + "ward_name_": "ಚಂದ್ರ ಲೇಔಟ್", + "dig_ward_n": "Chandra Layout", + "Assembly": "166 - Govindraj Nagar", + "Slno": "102" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.521795832248401, + 12.952687787664001 + ], + [ + 77.521693077559803, + 12.9526844494446 + ], + [ + 77.5213856717466, + 12.952714318584 + ], + [ + 77.521431694946202, + 12.952885493090401 + ], + [ + 77.520423413401602, + 12.9531896863959 + ], + [ + 77.520190266068496, + 12.953206970318099 + ], + [ + 77.5199559163365, + 12.9532063205573 + ], + [ + 77.519638967572106, + 12.954226660684199 + ], + [ + 77.519576797792396, + 12.954490663387601 + ], + [ + 77.519700435896297, + 12.954503719567599 + ], + [ + 77.519665228879305, + 12.955219767045 + ], + [ + 77.519643697985103, + 12.9556961570668 + ], + [ + 77.519643057361293, + 12.9557123265787 + ], + [ + 77.519607543288402, + 12.9566087104449 + ], + [ + 77.519457132677701, + 12.9570662676652 + ], + [ + 77.519277167987497, + 12.9576388532201 + ], + [ + 77.518872798907097, + 12.9581461992485 + ], + [ + 77.518883205694195, + 12.9581767926081 + ], + [ + 77.519055142198795, + 12.9586822904231 + ], + [ + 77.519033785805703, + 12.9587398682571 + ], + [ + 77.519155157139295, + 12.959029853983401 + ], + [ + 77.519246952598806, + 12.959287136024299 + ], + [ + 77.519264845544996, + 12.959355582418601 + ], + [ + 77.519292580774703, + 12.9594616774743 + ], + [ + 77.519317261156402, + 12.9595890890514 + ], + [ + 77.519367448010698, + 12.9596292637132 + ], + [ + 77.519368558980105, + 12.9596341164109 + ], + [ + 77.519374766439597, + 12.959652035719101 + ], + [ + 77.519524114200806, + 12.9596280841896 + ], + [ + 77.519782204382807, + 12.959586058769499 + ], + [ + 77.520159301306293, + 12.959527070102499 + ], + [ + 77.520523768622496, + 12.9594715912599 + ], + [ + 77.520702526206904, + 12.9594416266099 + ], + [ + 77.521040870974105, + 12.9593876405033 + ], + [ + 77.521049145711899, + 12.959386319888599 + ], + [ + 77.521701048764101, + 12.9592684657042 + ], + [ + 77.521701462553594, + 12.9592683912244 + ], + [ + 77.521715801617901, + 12.959265798471201 + ], + [ + 77.522522035777897, + 12.9591698981052 + ], + [ + 77.522624426649898, + 12.9591578003606 + ], + [ + 77.522729027584504, + 12.9591454408349 + ], + [ + 77.522803241218796, + 12.9591366734514 + ], + [ + 77.523396708832095, + 12.9590665558695 + ], + [ + 77.523644603479497, + 12.9590415659036 + ], + [ + 77.523681280265194, + 12.959037843991499 + ], + [ + 77.524013856044107, + 12.9590041056322 + ], + [ + 77.524214859636999, + 12.9589710634963 + ], + [ + 77.5243810692007, + 12.9589437406329 + ], + [ + 77.524503007566494, + 12.9589236962576 + ], + [ + 77.524965533028706, + 12.9588041561622 + ], + [ + 77.525179474780103, + 12.9587488625349 + ], + [ + 77.525186967339707, + 12.9587469006843 + ], + [ + 77.525269054725598, + 12.9587254066432 + ], + [ + 77.525449160944504, + 12.9586581573112 + ], + [ + 77.525524610150995, + 12.9586295395112 + ], + [ + 77.525803616135093, + 12.958523714178201 + ], + [ + 77.525947431675405, + 12.9584692573606 + ], + [ + 77.526074246968903, + 12.958421237731701 + ], + [ + 77.526094407650405, + 12.958413603773399 + ], + [ + 77.526139455468595, + 12.958391377474699 + ], + [ + 77.526170064514005, + 12.9583762751633 + ], + [ + 77.526215051815797, + 12.958354078352301 + ], + [ + 77.526242556223195, + 12.958340507740999 + ], + [ + 77.526341897826597, + 12.9582914922507 + ], + [ + 77.526784116629301, + 12.9580717861166 + ], + [ + 77.526884408761902, + 12.9580219589409 + ], + [ + 77.526952897386096, + 12.957985250837 + ], + [ + 77.527301794162199, + 12.9577982548908 + ], + [ + 77.527467744261699, + 12.9577093110388 + ], + [ + 77.527697309178293, + 12.957586272031399 + ], + [ + 77.527742805619297, + 12.957561888160701 + ], + [ + 77.527745292752201, + 12.957560329005 + ], + [ + 77.527751959606704, + 12.957556151647299 + ], + [ + 77.527794020624299, + 12.957525714392199 + ], + [ + 77.527874501969606, + 12.957467474520501 + ], + [ + 77.527985106258896, + 12.957387436672301 + ], + [ + 77.528044602299005, + 12.957344381984999 + ], + [ + 77.528315879306803, + 12.9571483909862 + ], + [ + 77.528385260019903, + 12.9570982645043 + ], + [ + 77.528406976455301, + 12.9570822427627 + ], + [ + 77.528413280012501, + 12.95707464403 + ], + [ + 77.528447107784203, + 12.957033865745201 + ], + [ + 77.528507088588697, + 12.956961559802499 + ], + [ + 77.528600814405607, + 12.956854872269 + ], + [ + 77.528604692249004, + 12.9568504581648 + ], + [ + 77.528617236503607, + 12.9568361797538 + ], + [ + 77.528631174162399, + 12.9568203157596 + ], + [ + 77.5286288030115, + 12.9568135618031 + ], + [ + 77.528576826451399, + 12.9567041982916 + ], + [ + 77.528570568545007, + 12.9566910294433 + ], + [ + 77.528557795675795, + 12.956660494804799 + ], + [ + 77.528556048447101, + 12.9566563179041 + ], + [ + 77.528496231156794, + 12.956513314532099 + ], + [ + 77.528355540743306, + 12.956071198788299 + ], + [ + 77.528340550167201, + 12.956024092465499 + ], + [ + 77.528338578943902, + 12.9560178974866 + ], + [ + 77.528309113405996, + 12.955925300666999 + ], + [ + 77.528212669465503, + 12.955622224060599 + ], + [ + 77.528150511685993, + 12.9554268921292 + ], + [ + 77.528090745716199, + 12.955239074658801 + ], + [ + 77.528090329997994, + 12.955237770458799 + ], + [ + 77.528073470144605, + 12.9551847897658 + ], + [ + 77.527985849746202, + 12.954924500039899 + ], + [ + 77.527967606996597, + 12.9548703067366 + ], + [ + 77.527962778981106, + 12.954855963911999 + ], + [ + 77.527957138100305, + 12.9548392094643 + ], + [ + 77.527945319908198, + 12.954804300867099 + ], + [ + 77.527915598364999, + 12.954716513837001 + ], + [ + 77.527698553690996, + 12.9541077321252 + ], + [ + 77.527614293088604, + 12.9538713860178 + ], + [ + 77.527611050946604, + 12.9538622950651 + ], + [ + 77.527551523250494, + 12.953672797244799 + ], + [ + 77.527551407132194, + 12.9536724270422 + ], + [ + 77.527548970672697, + 12.953664670837099 + ], + [ + 77.527508219984597, + 12.9535349473827 + ], + [ + 77.527506359331397, + 12.953529024166899 + ], + [ + 77.527502529745604, + 12.9535160322721 + ], + [ + 77.527474976744301, + 12.953422555662399 + ], + [ + 77.527447937904995, + 12.9533308259004 + ], + [ + 77.527382323687803, + 12.953104463702299 + ], + [ + 77.527339993475906, + 12.952960317928399 + ], + [ + 77.527334481120604, + 12.952927620326101 + ], + [ + 77.527304808060606, + 12.952743312257301 + ], + [ + 77.527297628170402, + 12.9526987202764 + ], + [ + 77.527296445089505, + 12.9526894674882 + ], + [ + 77.5272957530524, + 12.9526840560429 + ], + [ + 77.527295544724694, + 12.9526827633798 + ], + [ + 77.527269571603895, + 12.9525221501586 + ], + [ + 77.527269179598406, + 12.952519725412101 + ], + [ + 77.5272313326156, + 12.952285683336999 + ], + [ + 77.527228848982304, + 12.95227032481 + ], + [ + 77.527228549318494, + 12.9522684701657 + ], + [ + 77.5272239111994, + 12.9522397908757 + ], + [ + 77.527207929943501, + 12.952139433950199 + ], + [ + 77.527190256776606, + 12.9520424814816 + ], + [ + 77.527149995756503, + 12.951818131812701 + ], + [ + 77.5271451265682, + 12.9517922040448 + ], + [ + 77.527112794516398, + 12.9516118220088 + ], + [ + 77.527037056456905, + 12.951199298400301 + ], + [ + 77.526789963529595, + 12.9512614902676 + ], + [ + 77.526470015893196, + 12.9512925989241 + ], + [ + 77.526357799214296, + 12.9513375873348 + ], + [ + 77.525904668389998, + 12.951553912959699 + ], + [ + 77.525815967951203, + 12.951558557591801 + ], + [ + 77.525712697889702, + 12.9515724262343 + ], + [ + 77.525636191097604, + 12.9515618146295 + ], + [ + 77.525460302928494, + 12.951568061428301 + ], + [ + 77.524916235494103, + 12.951567280792499 + ], + [ + 77.524053562080795, + 12.9516432772899 + ], + [ + 77.524053820477803, + 12.951647438927999 + ], + [ + 77.523541366018193, + 12.9517531773594 + ], + [ + 77.523600030272704, + 12.9524058119705 + ], + [ + 77.523575915535503, + 12.952408795258799 + ], + [ + 77.523161575024801, + 12.9524713703829 + ], + [ + 77.522663464333405, + 12.9525503024574 + ], + [ + 77.521795832248401, + 12.952687787664001 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "171", + "group": "DR Rajkumar Road", + "Corporatio": "West", + "ac_no": "166", + "ac": "Govindraj Nagar", + "corporat_1": "5", + "ward_id": "58", + "ward_name": "58 - Dr Rajkumar Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಗೋವಿಂದರಾಜ ನಗರ", + "ward_name_": "ಡಾ. ರಾಜ್‌ಕುಮಾರ್ ವಾರ್ಡ್", + "dig_ward_n": "DR Rajkumar Road", + "Assembly": "166 - Govindraj Nagar", + "Slno": "58" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.542610264993996, + 12.9856415312838 + ], + [ + 77.542790725350599, + 12.985582090711601 + ], + [ + 77.542956632763705, + 12.9855330350576 + ], + [ + 77.543291519623196, + 12.9854336375773 + ], + [ + 77.543495681595303, + 12.9853730403306 + ], + [ + 77.543620871814397, + 12.9853401944287 + ], + [ + 77.543692921497694, + 12.9853217296737 + ], + [ + 77.544037815184893, + 12.9852333423863 + ], + [ + 77.544357699067206, + 12.9851511570306 + ], + [ + 77.544597864966406, + 12.985100243956699 + ], + [ + 77.544798729715694, + 12.9850701221548 + ], + [ + 77.545169911810305, + 12.9850144588427 + ], + [ + 77.545184904482596, + 12.9850121988756 + ], + [ + 77.545204374213895, + 12.9850092640438 + ], + [ + 77.545215369752498, + 12.985007606595699 + ], + [ + 77.545236570856403, + 12.9850044107774 + ], + [ + 77.545425940978902, + 12.9849758665279 + ], + [ + 77.545554531820002, + 12.984956484227199 + ], + [ + 77.545856933729297, + 12.984910606121201 + ], + [ + 77.545884959940906, + 12.9849061764975 + ], + [ + 77.545887401999096, + 12.984905790281701 + ], + [ + 77.546535192046406, + 12.9847944149237 + ], + [ + 77.546802462618899, + 12.9847477516373 + ], + [ + 77.547103981769197, + 12.984695511389001 + ], + [ + 77.547141009730893, + 12.9846890961261 + ], + [ + 77.547166308067403, + 12.984684675945701 + ], + [ + 77.547455985798706, + 12.984634059269 + ], + [ + 77.547835398443695, + 12.9845738729486 + ], + [ + 77.548065924590006, + 12.984537732678399 + ], + [ + 77.548112513435299, + 12.984532759421199 + ], + [ + 77.548498913431999, + 12.984488017937799 + ], + [ + 77.548677278996806, + 12.984467365415901 + ], + [ + 77.548898558408993, + 12.9844279271489 + ], + [ + 77.549027491131199, + 12.984419385939701 + ], + [ + 77.549078660972398, + 12.9844159965229 + ], + [ + 77.549063769192799, + 12.983350056297599 + ], + [ + 77.549063697789407, + 12.983344410354199 + ], + [ + 77.549059738214794, + 12.983097456860801 + ], + [ + 77.549054211315905, + 12.9827527351237 + ], + [ + 77.549040812004094, + 12.9818922538248 + ], + [ + 77.549039194988396, + 12.981788435573201 + ], + [ + 77.549031593725303, + 12.981315510136699 + ], + [ + 77.549025138980596, + 12.9809138937231 + ], + [ + 77.549023442559303, + 12.9808083325577 + ], + [ + 77.549211315512807, + 12.980803570060001 + ], + [ + 77.5494027923842, + 12.980798715161001 + ], + [ + 77.549749898927203, + 12.980789914028399 + ], + [ + 77.549920280448106, + 12.9807848546114 + ], + [ + 77.550085491891295, + 12.980780975134801 + ], + [ + 77.550136536657803, + 12.9807796711567 + ], + [ + 77.550300780277993, + 12.9807754748895 + ], + [ + 77.550689469833102, + 12.9807497392801 + ], + [ + 77.550701257673893, + 12.9807489586552 + ], + [ + 77.551368723389402, + 12.980705139998101 + ], + [ + 77.551484951509394, + 12.9806972231394 + ], + [ + 77.551642079420404, + 12.980691163380699 + ], + [ + 77.552141428307095, + 12.980675109456 + ], + [ + 77.552704056716493, + 12.980657020113499 + ], + [ + 77.552719662193098, + 12.9806565072758 + ], + [ + 77.553049399617095, + 12.9806456778532 + ], + [ + 77.553145537437302, + 12.9806425200702 + ], + [ + 77.5533175826844, + 12.980636969597001 + ], + [ + 77.553850066073196, + 12.980619788268701 + ], + [ + 77.553847311396297, + 12.9805992164437 + ], + [ + 77.553820768880598, + 12.9804009870378 + ], + [ + 77.553810707181597, + 12.9803266145774 + ], + [ + 77.553784205127499, + 12.980130712973599 + ], + [ + 77.553744785560099, + 12.979839329587101 + ], + [ + 77.5537848781116, + 12.9798466828726 + ], + [ + 77.553855778943799, + 12.9798596881749 + ], + [ + 77.554421353828403, + 12.979963423348201 + ], + [ + 77.554676131585694, + 12.9800101553547 + ], + [ + 77.554730244314698, + 12.9800200819751 + ], + [ + 77.555023279775995, + 12.980073825196699 + ], + [ + 77.555028561980095, + 12.9800747905709 + ], + [ + 77.555047767522595, + 12.9800783213326 + ], + [ + 77.555083113216895, + 12.980084804955199 + ], + [ + 77.555270016735903, + 12.980119094314301 + ], + [ + 77.555241211360396, + 12.980022603443199 + ], + [ + 77.555238418309699, + 12.9800132484751 + ], + [ + 77.555214581352303, + 12.9799344301095 + ], + [ + 77.555192517757106, + 12.9798601116032 + ], + [ + 77.555188713486203, + 12.9798452889003 + ], + [ + 77.555184515852901, + 12.9798289350866 + ], + [ + 77.555180165652601, + 12.979811985585799 + ], + [ + 77.555176326846293, + 12.9797970286065 + ], + [ + 77.555171310951394, + 12.979770380689001 + ], + [ + 77.555162323433706, + 12.979722630863 + ], + [ + 77.555135711790001, + 12.9796540036715 + ], + [ + 77.555115408969897, + 12.9796109826462 + ], + [ + 77.555098045982803, + 12.979574191887901 + ], + [ + 77.555079274412904, + 12.979516939872701 + ], + [ + 77.555062981850895, + 12.9794672507399 + ], + [ + 77.555049405557298, + 12.9794028184561 + ], + [ + 77.555044222695798, + 12.979378219411901 + ], + [ + 77.555037773924099, + 12.9793372034003 + ], + [ + 77.555032522256496, + 12.9793037981091 + ], + [ + 77.555002305063894, + 12.9791640588944 + ], + [ + 77.554948263996394, + 12.979003096657401 + ], + [ + 77.554886365920694, + 12.978867220278 + ], + [ + 77.554865804872804, + 12.978822085847799 + ], + [ + 77.554843284064106, + 12.97873464269 + ], + [ + 77.554829830651201, + 12.9786824031612 + ], + [ + 77.554795037894095, + 12.978578007921501 + ], + [ + 77.554751423696999, + 12.9784471448757 + ], + [ + 77.5547078602265, + 12.9782409065762 + ], + [ + 77.554678854453698, + 12.978121140788099 + ], + [ + 77.554677037560893, + 12.9781136382434 + ], + [ + 77.554669387209699, + 12.978082049868 + ], + [ + 77.554666368975205, + 12.978038568003001 + ], + [ + 77.554655208778101, + 12.9778777814272 + ], + [ + 77.554654483071502, + 12.9778631073374 + ], + [ + 77.554642021458804, + 12.977714158929601 + ], + [ + 77.554623101173604, + 12.9776093176455 + ], + [ + 77.554604678234, + 12.977533767057199 + ], + [ + 77.554603871459605, + 12.977530453866301 + ], + [ + 77.554565640047798, + 12.9773953105516 + ], + [ + 77.554559939583697, + 12.9773771148674 + ], + [ + 77.554546594041099, + 12.977334514153 + ], + [ + 77.554547706150501, + 12.977332276197201 + ], + [ + 77.554557314448999, + 12.9773129516464 + ], + [ + 77.5545962317467, + 12.977289982759 + ], + [ + 77.554697951882304, + 12.977247788201201 + ], + [ + 77.554718928144595, + 12.977239086851799 + ], + [ + 77.554887371439904, + 12.9771572495877 + ], + [ + 77.555050182498206, + 12.977087890152299 + ], + [ + 77.555074596007003, + 12.9770758645997 + ], + [ + 77.5551624695741, + 12.9770325790671 + ], + [ + 77.555150879985803, + 12.9770063995859 + ], + [ + 77.555077125335998, + 12.9768397919674 + ], + [ + 77.555066399562904, + 12.9768155635937 + ], + [ + 77.554822411458801, + 12.9762657205666 + ], + [ + 77.554749953341997, + 12.9761134343237 + ], + [ + 77.554719424817094, + 12.9760492715216 + ], + [ + 77.5547009949358, + 12.976010537877301 + ], + [ + 77.554532545697299, + 12.9756565025186 + ], + [ + 77.554519760795003, + 12.975629630932 + ], + [ + 77.554493490590104, + 12.975574418382701 + ], + [ + 77.554472177576798, + 12.9755734993439 + ], + [ + 77.554331058892103, + 12.975568109723399 + ], + [ + 77.5542988072649, + 12.975567297222799 + ], + [ + 77.554074225165806, + 12.975540604315899 + ], + [ + 77.554000011350496, + 12.975531783700699 + ], + [ + 77.553855232554596, + 12.9755145745586 + ], + [ + 77.553789782069998, + 12.9755067962315 + ], + [ + 77.553467632998604, + 12.975478338882599 + ], + [ + 77.553411166698197, + 12.9754743760832 + ], + [ + 77.553407470440703, + 12.9754741711563 + ], + [ + 77.553306893817705, + 12.975468624063801 + ], + [ + 77.5531457492974, + 12.975419386711099 + ], + [ + 77.552961531911706, + 12.975365858476501 + ], + [ + 77.552772119161205, + 12.975254785457199 + ], + [ + 77.552546771995097, + 12.9751203491611 + ], + [ + 77.552481930348506, + 12.975077259944999 + ], + [ + 77.552315666362503, + 12.974966772399201 + ], + [ + 77.552305614753806, + 12.974960093292101 + ], + [ + 77.552172289839305, + 12.9748721850669 + ], + [ + 77.552040864577904, + 12.9747447316681 + ], + [ + 77.551951555132902, + 12.9746584927664 + ], + [ + 77.551912351669401, + 12.974620637578701 + ], + [ + 77.551809988917299, + 12.9745200026598 + ], + [ + 77.551787318060903, + 12.9744987679142 + ], + [ + 77.5517778020496, + 12.974491218008399 + ], + [ + 77.551536412558804, + 12.974299695589099 + ], + [ + 77.551380988662601, + 12.974176379263501 + ], + [ + 77.551222661077801, + 12.9740634386555 + ], + [ + 77.551219882684507, + 12.974061456613301 + ], + [ + 77.550959333907002, + 12.973875597348201 + ], + [ + 77.550797399087401, + 12.9737967975027 + ], + [ + 77.550761661189895, + 12.973779406751399 + ], + [ + 77.550746558151701, + 12.973772057055401 + ], + [ + 77.5507313505002, + 12.973764656887001 + ], + [ + 77.550727084285697, + 12.973762581015899 + ], + [ + 77.550651565426605, + 12.973725832549199 + ], + [ + 77.550627193008395, + 12.9737139724252 + ], + [ + 77.550587219263306, + 12.9737089545514 + ], + [ + 77.550468653978399, + 12.973694070995901 + ], + [ + 77.550292679546104, + 12.9737149935633 + ], + [ + 77.550220171756393, + 12.973724637154101 + ], + [ + 77.550127657934098, + 12.973736941554399 + ], + [ + 77.549978271704603, + 12.973767768955099 + ], + [ + 77.549875645801606, + 12.973810560403299 + ], + [ + 77.549607188996802, + 12.9739656519468 + ], + [ + 77.549156930081395, + 12.974363025636899 + ], + [ + 77.549091092809704, + 12.9744211294894 + ], + [ + 77.548359768301495, + 12.9750665521432 + ], + [ + 77.548358993401195, + 12.9750654824115 + ], + [ + 77.548334224696703, + 12.9750912967139 + ], + [ + 77.548178725304993, + 12.975253360704899 + ], + [ + 77.547556971167296, + 12.9759272449737 + ], + [ + 77.547474406482905, + 12.9760210194857 + ], + [ + 77.547335464513594, + 12.9761623815773 + ], + [ + 77.546903240156794, + 12.9766021354079 + ], + [ + 77.546487598456807, + 12.976909798785799 + ], + [ + 77.545893494532393, + 12.9773542321575 + ], + [ + 77.545593348337604, + 12.9776102173285 + ], + [ + 77.545326534892993, + 12.977761286211599 + ], + [ + 77.545178872672594, + 12.9778278699093 + ], + [ + 77.545097082508306, + 12.977864750515399 + ], + [ + 77.5448917106972, + 12.9779429908791 + ], + [ + 77.544921718433599, + 12.9781614370483 + ], + [ + 77.544962043528201, + 12.978407786963301 + ], + [ + 77.544987644592993, + 12.978648225915901 + ], + [ + 77.545029633418494, + 12.978868446952999 + ], + [ + 77.544895418347807, + 12.9788971817292 + ], + [ + 77.544835585530393, + 12.9789119753283 + ], + [ + 77.544648177988194, + 12.978963385868999 + ], + [ + 77.544591847304702, + 12.97873687157 + ], + [ + 77.544213814424495, + 12.978826856582099 + ], + [ + 77.544214766463895, + 12.978831420611201 + ], + [ + 77.544233034807803, + 12.978971233668901 + ], + [ + 77.544298231521196, + 12.979234748718101 + ], + [ + 77.544303270008299, + 12.9792748143505 + ], + [ + 77.544342972775496, + 12.979763373950799 + ], + [ + 77.544115866142903, + 12.979781680609801 + ], + [ + 77.5441171307682, + 12.9798301089277 + ], + [ + 77.543713459957999, + 12.9798337107954 + ], + [ + 77.543396432471695, + 12.9798454873235 + ], + [ + 77.5433960943746, + 12.9801156990175 + ], + [ + 77.542757096843999, + 12.9801204368333 + ], + [ + 77.542771005122106, + 12.9806531489091 + ], + [ + 77.542780812327194, + 12.980706791912199 + ], + [ + 77.542800626913603, + 12.9808337550056 + ], + [ + 77.542861167780401, + 12.981170734101299 + ], + [ + 77.542876584962002, + 12.9812447581418 + ], + [ + 77.542859163305906, + 12.981658402118899 + ], + [ + 77.542846356475195, + 12.981763695495699 + ], + [ + 77.542838814670205, + 12.9818256992366 + ], + [ + 77.542802900365999, + 12.9821209666447 + ], + [ + 77.542800479929099, + 12.982140863890001 + ], + [ + 77.542788467105296, + 12.982239625565599 + ], + [ + 77.542772127826495, + 12.982314825590301 + ], + [ + 77.542731564795901, + 12.9825015182572 + ], + [ + 77.542724701163806, + 12.982533107374699 + ], + [ + 77.5426738191168, + 12.9828214442228 + ], + [ + 77.542565179716604, + 12.983294406204701 + ], + [ + 77.542541321442201, + 12.983623904916399 + ], + [ + 77.542453674057597, + 12.9840365087148 + ], + [ + 77.542383617143102, + 12.9845768761515 + ], + [ + 77.542357216122795, + 12.985125924806599 + ], + [ + 77.542382937593004, + 12.9851187932424 + ], + [ + 77.542422941170003, + 12.9855953312798 + ], + [ + 77.542427645159904, + 12.9856784466877 + ], + [ + 77.542427822012201, + 12.9857016252208 + ], + [ + 77.542518250705598, + 12.9856718395255 + ], + [ + 77.542601446554301, + 12.9856444363935 + ], + [ + 77.542610264993996, + 12.9856415312838 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "172", + "group": "Moodala Palya", + "Corporatio": "West", + "ac_no": "166", + "ac": "Govindraj Nagar", + "corporat_1": "5", + "ward_id": "98", + "ward_name": "98 - Moodala Palya", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಗೋವಿಂದರಾಜ ನಗರ", + "ward_name_": "ಮೂಡಲ ಪಾಳ್ಯ", + "dig_ward_n": "Moodala Palya", + "Assembly": "166 - Govindraj Nagar", + "Slno": "98" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.5174427079521, + 12.969303646003 + ], + [ + 77.517440504357893, + 12.9693064852934 + ], + [ + 77.517558492372501, + 12.9694736173099 + ], + [ + 77.517662470136997, + 12.9696216858126 + ], + [ + 77.517723800974494, + 12.969698611119201 + ], + [ + 77.517773093131098, + 12.9697604355515 + ], + [ + 77.517773265752993, + 12.969760653427199 + ], + [ + 77.517820657448098, + 12.9697782643993 + ], + [ + 77.517849376156803, + 12.969789155292901 + ], + [ + 77.517939720568194, + 12.9698234154889 + ], + [ + 77.517979591069206, + 12.969881374711001 + ], + [ + 77.517980623220794, + 12.9698828753443 + ], + [ + 77.517986569945506, + 12.9698910340599 + ], + [ + 77.517992234564701, + 12.969898806104499 + ], + [ + 77.518009231224099, + 12.969922125824199 + ], + [ + 77.518075949433495, + 12.970033262567 + ], + [ + 77.518102926064202, + 12.9700781990836 + ], + [ + 77.518171149038494, + 12.970163369567 + ], + [ + 77.518197329204895, + 12.9701902206232 + ], + [ + 77.518332237428893, + 12.970322178344899 + ], + [ + 77.518444316623899, + 12.9705162898585 + ], + [ + 77.518459983728107, + 12.970543424262299 + ], + [ + 77.518514983979998, + 12.9706591221245 + ], + [ + 77.518516089861507, + 12.970661448727601 + ], + [ + 77.518523165599504, + 12.970676332861901 + ], + [ + 77.518540525560695, + 12.9707128525106 + ], + [ + 77.518541748139398, + 12.970715423731001 + ], + [ + 77.518540584370001, + 12.970748253114801 + ], + [ + 77.518535022136902, + 12.9709052202805 + ], + [ + 77.518472219749697, + 12.971015375672 + ], + [ + 77.518392036118698, + 12.9711393428422 + ], + [ + 77.518365632371101, + 12.9711801639711 + ], + [ + 77.518254306681996, + 12.9713890429265 + ], + [ + 77.518194912945702, + 12.971494647872399 + ], + [ + 77.518193856892495, + 12.9714958073272 + ], + [ + 77.518024635904396, + 12.9716815104382 + ], + [ + 77.517906976797093, + 12.9718904506414 + ], + [ + 77.5178792743298, + 12.972055605431599 + ], + [ + 77.517880342419701, + 12.972076509827 + ], + [ + 77.517884079764102, + 12.9721496241732 + ], + [ + 77.517884293245501, + 12.972153809751701 + ], + [ + 77.517885807387401, + 12.9721597201371 + ], + [ + 77.517907667171599, + 12.9722450611547 + ], + [ + 77.517945289267303, + 12.972285252489 + ], + [ + 77.517991480857802, + 12.9723345980637 + ], + [ + 77.518049641064707, + 12.9725068261461 + ], + [ + 77.518115009388197, + 12.972590299408299 + ], + [ + 77.518140049335997, + 12.972622274273901 + ], + [ + 77.518166626095706, + 12.9727574915332 + ], + [ + 77.518167965067093, + 12.9727643025766 + ], + [ + 77.518102060237595, + 12.9729094979858 + ], + [ + 77.517945251169195, + 12.973042650091299 + ], + [ + 77.517792630990797, + 12.9731722452194 + ], + [ + 77.517626575548206, + 12.9732066040585 + ], + [ + 77.517521497735402, + 12.9731782580402 + ], + [ + 77.517512373117796, + 12.973129784130199 + ], + [ + 77.517439127262307, + 12.9731227539075 + ], + [ + 77.517394799826207, + 12.9731184993264 + ], + [ + 77.517311777876102, + 12.9732220741975 + ], + [ + 77.517307445229306, + 12.9732618034596 + ], + [ + 77.517296490997097, + 12.973362262125701 + ], + [ + 77.517312702550797, + 12.973542801926399 + ], + [ + 77.517315109757604, + 12.9735727318171 + ], + [ + 77.5173153350446, + 12.973575527725099 + ], + [ + 77.517337921232198, + 12.973702926152299 + ], + [ + 77.517397804786299, + 12.9738175406327 + ], + [ + 77.517421379038694, + 12.973872667960601 + ], + [ + 77.517483895650599, + 12.974018861672199 + ], + [ + 77.517498505586502, + 12.974057551957401 + ], + [ + 77.517544234027994, + 12.974178645859499 + ], + [ + 77.517583475108196, + 12.974358962642199 + ], + [ + 77.517603996659901, + 12.9744484337879 + ], + [ + 77.517604031331501, + 12.974448583430499 + ], + [ + 77.517608847799593, + 12.9744693720301 + ], + [ + 77.517623212428504, + 12.9745313691235 + ], + [ + 77.517747101434693, + 12.974769592726 + ], + [ + 77.517804217566507, + 12.974944922596899 + ], + [ + 77.517806516147402, + 12.974951972807499 + ], + [ + 77.517797192480799, + 12.974954940677801 + ], + [ + 77.517778101604307, + 12.974961018041499 + ], + [ + 77.517777244817907, + 12.9749612910578 + ], + [ + 77.517800836885698, + 12.9750501018025 + ], + [ + 77.5178137513591, + 12.975098718771999 + ], + [ + 77.517821531448604, + 12.9751280066437 + ], + [ + 77.517932246482701, + 12.9752014719587 + ], + [ + 77.518020303937703, + 12.9751948577579 + ], + [ + 77.5180358099133, + 12.975193692994001 + ], + [ + 77.518095837921507, + 12.9752517576883 + ], + [ + 77.518132912133495, + 12.9752876183948 + ], + [ + 77.518170890898205, + 12.9753208122874 + ], + [ + 77.518177641422596, + 12.9753267126121 + ], + [ + 77.518179548256199, + 12.9753283420989 + ], + [ + 77.518183937140293, + 12.975332093320899 + ], + [ + 77.518209003820999, + 12.9753535133787 + ], + [ + 77.518973356510699, + 12.9750525765012 + ], + [ + 77.519494735021595, + 12.974864355768201 + ], + [ + 77.519612403381899, + 12.9748231000102 + ], + [ + 77.519874214649306, + 12.9747637956748 + ], + [ + 77.520193972033098, + 12.974648501476 + ], + [ + 77.520568444748505, + 12.9745345392529 + ], + [ + 77.5205180191642, + 12.97435564305 + ], + [ + 77.520618128324301, + 12.9743334795607 + ], + [ + 77.520788381860498, + 12.9743037079954 + ], + [ + 77.521247816758503, + 12.97424790098 + ], + [ + 77.521472767675803, + 12.974207118121299 + ], + [ + 77.522177714408997, + 12.974000561150699 + ], + [ + 77.522236401295302, + 12.9739812248684 + ], + [ + 77.522361305853593, + 12.974265160861799 + ], + [ + 77.522911145651605, + 12.9741074488617 + ], + [ + 77.523219639755993, + 12.9740090867561 + ], + [ + 77.523286580063598, + 12.9739887579205 + ], + [ + 77.5235235262016, + 12.973913039728 + ], + [ + 77.523559689674499, + 12.973902092244501 + ], + [ + 77.523817798640906, + 12.973819315463601 + ], + [ + 77.524802448424694, + 12.973538072827999 + ], + [ + 77.524593233319294, + 12.972843759119201 + ], + [ + 77.525336546628296, + 12.9726995443907 + ], + [ + 77.525258412407197, + 12.972412537946701 + ], + [ + 77.525218613702904, + 12.972217791034099 + ], + [ + 77.525171873284407, + 12.971989071128901 + ], + [ + 77.5251407820857, + 12.971793384043799 + ], + [ + 77.525097043177297, + 12.9715612271414 + ], + [ + 77.525137481136099, + 12.971553265594901 + ], + [ + 77.525356506916097, + 12.9715078674426 + ], + [ + 77.525298277060401, + 12.9711110417598 + ], + [ + 77.525477756060994, + 12.971086741432501 + ], + [ + 77.525452813665098, + 12.9707565984348 + ], + [ + 77.525221272948798, + 12.970787724612601 + ], + [ + 77.524960604124303, + 12.9707575509394 + ], + [ + 77.524954624118493, + 12.9707396360808 + ], + [ + 77.524874350409505, + 12.970499133988801 + ], + [ + 77.524853843596802, + 12.970437694084699 + ], + [ + 77.524822052622596, + 12.9703619288191 + ], + [ + 77.524714228708802, + 12.970072493267701 + ], + [ + 77.524665992497205, + 12.9699391769398 + ], + [ + 77.524644405638298, + 12.969879515591 + ], + [ + 77.524642390692307, + 12.9696798273939 + ], + [ + 77.524627485708507, + 12.9694257998519 + ], + [ + 77.524621738026298, + 12.969358919772199 + ], + [ + 77.524427576191201, + 12.969391079882399 + ], + [ + 77.523856214606596, + 12.9695192411455 + ], + [ + 77.523585058346995, + 12.969569556290899 + ], + [ + 77.523429450386104, + 12.9695983141008 + ], + [ + 77.522930314101501, + 12.969694740061501 + ], + [ + 77.522687812951403, + 12.9697377782215 + ], + [ + 77.522686869731203, + 12.969737973485399 + ], + [ + 77.522109240626705, + 12.9698571091954 + ], + [ + 77.521511607576898, + 12.969982492805199 + ], + [ + 77.521396891332799, + 12.9700100962023 + ], + [ + 77.521369294582001, + 12.969952082520299 + ], + [ + 77.521132687948807, + 12.969984651719701 + ], + [ + 77.520788853077207, + 12.970022044330699 + ], + [ + 77.520777895310601, + 12.9698919639476 + ], + [ + 77.520398084897295, + 12.9699206218583 + ], + [ + 77.519900047008406, + 12.969973131508601 + ], + [ + 77.519591136338093, + 12.9700298636246 + ], + [ + 77.519573828356499, + 12.969958882734799 + ], + [ + 77.519545391707595, + 12.969894064825199 + ], + [ + 77.519145021999194, + 12.969988770314799 + ], + [ + 77.518933717219696, + 12.9693149051645 + ], + [ + 77.518906748035505, + 12.9692425039347 + ], + [ + 77.518829663209502, + 12.9689450318256 + ], + [ + 77.518494580162695, + 12.969028583549299 + ], + [ + 77.518461713797095, + 12.9690324876492 + ], + [ + 77.517585624934895, + 12.969181116481501 + ], + [ + 77.517489955566802, + 12.9692427628801 + ], + [ + 77.5174669019828, + 12.969272469360799 + ], + [ + 77.5174427079521, + 12.969303646003 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "173", + "group": "Nayandanahalli", + "Corporatio": "West", + "ac_no": "166", + "ac": "Govindraj Nagar", + "corporat_1": "5", + "ward_id": "104", + "ward_name": "104 - Nayanda Halli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಗೋವಿಂದರಾಜ ನಗರ", + "ward_name_": "ನಾಯಂಡ ಹಳ್ಳಿ", + "dig_ward_n": "Nayandanahalli", + "Assembly": "166 - Govindraj Nagar", + "Slno": "104" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.517867115667102, + 12.9367677879771 + ], + [ + 77.518042720285393, + 12.937569890483999 + ], + [ + 77.518202137396699, + 12.9385299402062 + ], + [ + 77.518237713789702, + 12.939003795343099 + ], + [ + 77.518255288750296, + 12.939217071786 + ], + [ + 77.518338232947897, + 12.9396386215461 + ], + [ + 77.518425484446396, + 12.9399511358216 + ], + [ + 77.518453212305005, + 12.9401764245351 + ], + [ + 77.518779420566204, + 12.940155107257301 + ], + [ + 77.518929800701301, + 12.940145328317399 + ], + [ + 77.519450952033196, + 12.9400948780468 + ], + [ + 77.519480539471601, + 12.9402747344689 + ], + [ + 77.5195998510154, + 12.9402389908805 + ], + [ + 77.519986601138598, + 12.940163537649701 + ], + [ + 77.5204430932653, + 12.940085312020599 + ], + [ + 77.520363296796504, + 12.9404131245411 + ], + [ + 77.520003421653897, + 12.940685394411799 + ], + [ + 77.519961315980794, + 12.9407395876417 + ], + [ + 77.519967949079103, + 12.940793308811401 + ], + [ + 77.520053541517697, + 12.940822362292099 + ], + [ + 77.520383667812695, + 12.940932717733 + ], + [ + 77.520664696056997, + 12.9410076909365 + ], + [ + 77.520694977505897, + 12.9409894693962 + ], + [ + 77.520736482394895, + 12.940875520977601 + ], + [ + 77.520797405642895, + 12.9408749318424 + ], + [ + 77.520962258634697, + 12.9409091950609 + ], + [ + 77.521047791092698, + 12.9409322722264 + ], + [ + 77.521157633344998, + 12.9409491386092 + ], + [ + 77.521255350288698, + 12.9409720978561 + ], + [ + 77.521352707694007, + 12.940959204015799 + ], + [ + 77.521462610030895, + 12.940982045318201 + ], + [ + 77.521541869592497, + 12.9409872551773 + ], + [ + 77.521633795219401, + 12.941040151176599 + ], + [ + 77.521749549936303, + 12.941039031390099 + ], + [ + 77.5219818944325, + 12.941175702144999 + ], + [ + 77.522327350590203, + 12.941647297382801 + ], + [ + 77.522084540850599, + 12.941834954071 + ], + [ + 77.521898227731199, + 12.9417267956958 + ], + [ + 77.521668435522699, + 12.9416573049135 + ], + [ + 77.521532111354503, + 12.9416729664835 + ], + [ + 77.521493552477693, + 12.9417163678501 + ], + [ + 77.521349271631493, + 12.941973315280601 + ], + [ + 77.521324218595296, + 12.9421294789566 + ], + [ + 77.520730124848299, + 12.942063319586399 + ], + [ + 77.520590226920504, + 12.942041208586 + ], + [ + 77.520529980187902, + 12.942035735985201 + ], + [ + 77.520512162410498, + 12.942259193814399 + ], + [ + 77.520493508912196, + 12.942553051435199 + ], + [ + 77.520493389442194, + 12.9428482436238 + ], + [ + 77.520317369630007, + 12.9428408629686 + ], + [ + 77.520167347995496, + 12.9428261806486 + ], + [ + 77.519995506681695, + 12.942834135434101 + ], + [ + 77.519978168603799, + 12.9432815621808 + ], + [ + 77.519960029349704, + 12.9436106661325 + ], + [ + 77.519961259360699, + 12.9437330464523 + ], + [ + 77.519963104405505, + 12.9439166173813 + ], + [ + 77.519974491003097, + 12.944198273003201 + ], + [ + 77.5191219632746, + 12.9443465099757 + ], + [ + 77.518930371763503, + 12.9443683604929 + ], + [ + 77.518768710601407, + 12.9443852216775 + ], + [ + 77.518785906091594, + 12.9444883028292 + ], + [ + 77.518830281014303, + 12.944910981521399 + ], + [ + 77.518715445955394, + 12.9449257156603 + ], + [ + 77.518795941007895, + 12.945567237217301 + ], + [ + 77.518804548348498, + 12.945696239327599 + ], + [ + 77.518851045443895, + 12.9459023208991 + ], + [ + 77.518952840293593, + 12.9462964966201 + ], + [ + 77.518675470340398, + 12.9464005020881 + ], + [ + 77.518695228254998, + 12.946600175832801 + ], + [ + 77.518479639615407, + 12.9465719836357 + ], + [ + 77.5180896780344, + 12.9465469902295 + ], + [ + 77.517905914601499, + 12.946493780845101 + ], + [ + 77.517777901149501, + 12.9464878459495 + ], + [ + 77.5177988437229, + 12.946752986231999 + ], + [ + 77.516739039840203, + 12.946791910415801 + ], + [ + 77.516821006229193, + 12.9477298589828 + ], + [ + 77.516834451161003, + 12.947855229545301 + ], + [ + 77.517147740059997, + 12.947577151610799 + ], + [ + 77.517775582969904, + 12.9476982447007 + ], + [ + 77.518215888718203, + 12.9476865001312 + ], + [ + 77.5182769037973, + 12.9476948747826 + ], + [ + 77.518327662114601, + 12.9479593382659 + ], + [ + 77.518593134360998, + 12.947959799741099 + ], + [ + 77.518658028867506, + 12.9482740431437 + ], + [ + 77.519269144082401, + 12.948208198241501 + ], + [ + 77.519272534113298, + 12.948243313691099 + ], + [ + 77.519303150524905, + 12.9485604638867 + ], + [ + 77.519452297352302, + 12.9485470694332 + ], + [ + 77.519646763729895, + 12.9485218290059 + ], + [ + 77.519667387639998, + 12.9496227358068 + ], + [ + 77.5205810736758, + 12.9495732079468 + ], + [ + 77.520975733398203, + 12.949533433091799 + ], + [ + 77.521204668415606, + 12.9495168748157 + ], + [ + 77.521945670519202, + 12.949325740907801 + ], + [ + 77.521978433356296, + 12.949360619544199 + ], + [ + 77.522067012560896, + 12.949804061688999 + ], + [ + 77.522181456233696, + 12.9499036212351 + ], + [ + 77.522534422108293, + 12.949396109080199 + ], + [ + 77.522779101483906, + 12.949469778043699 + ], + [ + 77.522991221376003, + 12.9495308329015 + ], + [ + 77.523069086935394, + 12.949459809163001 + ], + [ + 77.523159280362705, + 12.9496035032082 + ], + [ + 77.523471823173693, + 12.9496035034863 + ], + [ + 77.523853882574301, + 12.9495714186437 + ], + [ + 77.524125797071804, + 12.9495218564926 + ], + [ + 77.524131287042593, + 12.949492284283201 + ], + [ + 77.524465967555301, + 12.9494300032836 + ], + [ + 77.524518320506502, + 12.9494177640446 + ], + [ + 77.524575685259705, + 12.9494050977789 + ], + [ + 77.524758403166004, + 12.9493492088616 + ], + [ + 77.524952161711497, + 12.9492402300023 + ], + [ + 77.525100137387795, + 12.949178054749799 + ], + [ + 77.525123001600306, + 12.9491878620239 + ], + [ + 77.525267990923297, + 12.949126094082899 + ], + [ + 77.5254796071481, + 12.949027916808101 + ], + [ + 77.525644550240202, + 12.9489695505171 + ], + [ + 77.525808779440297, + 12.9488786444852 + ], + [ + 77.525913248419798, + 12.948830704010501 + ], + [ + 77.526163808544197, + 12.9487298779919 + ], + [ + 77.526549687103596, + 12.948579298122301 + ], + [ + 77.526655699575699, + 12.948549182782701 + ], + [ + 77.526648863683306, + 12.948424782990999 + ], + [ + 77.526644525483704, + 12.9483388445682 + ], + [ + 77.526643108563206, + 12.948310774564 + ], + [ + 77.526643063027095, + 12.94830625761 + ], + [ + 77.526643513859099, + 12.948288569440701 + ], + [ + 77.526646774564497, + 12.9481605356047 + ], + [ + 77.526647761800504, + 12.948115737859 + ], + [ + 77.526647806732399, + 12.9481137073057 + ], + [ + 77.526649935979606, + 12.948017077631601 + ], + [ + 77.526545848058504, + 12.9472862688547 + ], + [ + 77.526541107212694, + 12.947242801458099 + ], + [ + 77.526531292671294, + 12.947152818841399 + ], + [ + 77.526451965507505, + 12.9464254857883 + ], + [ + 77.526429453016704, + 12.946362460510301 + ], + [ + 77.526421271372797, + 12.946263843749501 + ], + [ + 77.526419309588505, + 12.946240197934699 + ], + [ + 77.526417541827897, + 12.9462188947676 + ], + [ + 77.526389084868597, + 12.945875880116199 + ], + [ + 77.526383580105801, + 12.945809524134001 + ], + [ + 77.526387022685796, + 12.945808361408 + ], + [ + 77.526403105706294, + 12.945804138014401 + ], + [ + 77.526404566470902, + 12.9458037552322 + ], + [ + 77.526413790357296, + 12.9458013321163 + ], + [ + 77.526467410240201, + 12.9457872537326 + ], + [ + 77.5267622444252, + 12.9457236721529 + ], + [ + 77.526908833758498, + 12.945692060935199 + ], + [ + 77.527072369335301, + 12.945656793354599 + ], + [ + 77.527245177213999, + 12.9456195276051 + ], + [ + 77.527301741494696, + 12.9456073295589 + ], + [ + 77.527572191997706, + 12.945549006960601 + ], + [ + 77.527716491443201, + 12.945517888245901 + ], + [ + 77.527732966212895, + 12.945514335875499 + ], + [ + 77.527915065444802, + 12.945475065115501 + ], + [ + 77.527918219216303, + 12.9454732158189 + ], + [ + 77.527966003000998, + 12.9454452088248 + ], + [ + 77.528018816723105, + 12.945315950794001 + ], + [ + 77.527890263973006, + 12.9451850632374 + ], + [ + 77.527585352963001, + 12.944879202811499 + ], + [ + 77.527566896374097, + 12.944860688849699 + ], + [ + 77.527180373236007, + 12.944496269803899 + ], + [ + 77.526939752201301, + 12.944270474595999 + ], + [ + 77.526767707694802, + 12.9441083871129 + ], + [ + 77.526538127271294, + 12.9438926484983 + ], + [ + 77.526491380682302, + 12.943824211368099 + ], + [ + 77.526475599020898, + 12.9438006480226 + ], + [ + 77.526470982361602, + 12.943793892287101 + ], + [ + 77.526318415129097, + 12.943570655097901 + ], + [ + 77.526303221456601, + 12.9435482153858 + ], + [ + 77.526173502332, + 12.9433586126789 + ], + [ + 77.526105736595099, + 12.943261016080999 + ], + [ + 77.525746431018504, + 12.9427404799646 + ], + [ + 77.525661134433193, + 12.9426170780202 + ], + [ + 77.525596292887201, + 12.942523970279799 + ], + [ + 77.525422787743295, + 12.942273806357401 + ], + [ + 77.525086489449194, + 12.941750787188401 + ], + [ + 77.524987058656507, + 12.941595900002699 + ], + [ + 77.524883899707604, + 12.941435659606601 + ], + [ + 77.524741419660401, + 12.941214300069699 + ], + [ + 77.524711008352796, + 12.941167161884 + ], + [ + 77.524608530213897, + 12.9409953637164 + ], + [ + 77.524576956295206, + 12.940947107414299 + ], + [ + 77.524516667852396, + 12.940853448300199 + ], + [ + 77.524441855503397, + 12.9407372271481 + ], + [ + 77.524323225489894, + 12.9405621971628 + ], + [ + 77.524271367583793, + 12.940500585009 + ], + [ + 77.524188636623407, + 12.9404031334461 + ], + [ + 77.524069196615201, + 12.940261990767601 + ], + [ + 77.524005182035395, + 12.9401937201343 + ], + [ + 77.523958077883194, + 12.940143606546799 + ], + [ + 77.523783462285394, + 12.9399575735531 + ], + [ + 77.523750851013801, + 12.939920620657499 + ], + [ + 77.523454979255902, + 12.9395812911651 + ], + [ + 77.523353669167705, + 12.9394682072267 + ], + [ + 77.523336318152005, + 12.939448543746099 + ], + [ + 77.523200513156794, + 12.939294640006599 + ], + [ + 77.522876190028398, + 12.938988336164 + ], + [ + 77.522663485508403, + 12.9388469666268 + ], + [ + 77.522593506591406, + 12.9388045331825 + ], + [ + 77.522318841311701, + 12.938637982846 + ], + [ + 77.521998950376798, + 12.9384287590619 + ], + [ + 77.521720112357002, + 12.938237207382301 + ], + [ + 77.5213723952035, + 12.937951455719 + ], + [ + 77.521177738353998, + 12.9377726414459 + ], + [ + 77.521119181882099, + 12.937707941839699 + ], + [ + 77.521017643105395, + 12.9375957524179 + ], + [ + 77.520645665055895, + 12.937187134416 + ], + [ + 77.520355259769403, + 12.9369900449807 + ], + [ + 77.520077185453701, + 12.936874150418801 + ], + [ + 77.5199717398784, + 12.936836396491801 + ], + [ + 77.519902118301701, + 12.9368114691106 + ], + [ + 77.519858079031707, + 12.9367956310892 + ], + [ + 77.519776738856294, + 12.9367663771963 + ], + [ + 77.519335326354806, + 12.9366091446051 + ], + [ + 77.519302965650695, + 12.9365970343536 + ], + [ + 77.518964020508704, + 12.9364964081614 + ], + [ + 77.518551586114299, + 12.9364156903465 + ], + [ + 77.518422935447504, + 12.936388698996 + ], + [ + 77.518338767770899, + 12.9363852393013 + ], + [ + 77.518244970440506, + 12.9363813828878 + ], + [ + 77.518112019786798, + 12.936384926429101 + ], + [ + 77.517788160828005, + 12.9363791895641 + ], + [ + 77.517867115667102, + 12.9367677879771 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "174", + "group": "Marenahalli", + "Corporatio": "West", + "ac_no": "166", + "ac": "Govindraj Nagar", + "corporat_1": "5", + "ward_id": "97", + "ward_name": "97 - Marenahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಗೋವಿಂದರಾಜ ನಗರ", + "ward_name_": "ಮಾರೇನಹಳ್ಳಿ", + "dig_ward_n": "Marenahalli", + "Assembly": "166 - Govindraj Nagar", + "Slno": "97" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.526838728880804, + 12.9705440607542 + ], + [ + 77.526668583767602, + 12.9705911322442 + ], + [ + 77.526577436869502, + 12.970618623201201 + ], + [ + 77.526558280536406, + 12.970587139656599 + ], + [ + 77.526453023769605, + 12.9705518494128 + ], + [ + 77.526169628532401, + 12.9705969649621 + ], + [ + 77.525734194951696, + 12.970710912495999 + ], + [ + 77.525663366734307, + 12.9707282519469 + ], + [ + 77.525452813665098, + 12.9707565984348 + ], + [ + 77.525477756060994, + 12.971086741432501 + ], + [ + 77.525298277060401, + 12.9711110417598 + ], + [ + 77.525356506916097, + 12.9715078674426 + ], + [ + 77.525137481136099, + 12.971553265594901 + ], + [ + 77.525097043177297, + 12.9715612271414 + ], + [ + 77.5251407820857, + 12.971793384043799 + ], + [ + 77.525171873284407, + 12.971989071128901 + ], + [ + 77.525218613702904, + 12.972217791034099 + ], + [ + 77.525258412407197, + 12.972412537946701 + ], + [ + 77.525336546628296, + 12.9726995443907 + ], + [ + 77.524593233319294, + 12.972843759119201 + ], + [ + 77.524802448424694, + 12.973538072827999 + ], + [ + 77.523817798640906, + 12.973819315463601 + ], + [ + 77.523559689674499, + 12.973902092244501 + ], + [ + 77.5235235262016, + 12.973913039728 + ], + [ + 77.523649026275805, + 12.974557496057599 + ], + [ + 77.523659266526295, + 12.974668619438001 + ], + [ + 77.5237362104683, + 12.974664466661901 + ], + [ + 77.523757818038803, + 12.974740703540499 + ], + [ + 77.523804246955706, + 12.9750660435523 + ], + [ + 77.523962073434106, + 12.975047848837599 + ], + [ + 77.524115062593296, + 12.975037345670801 + ], + [ + 77.524165097030902, + 12.9753301574343 + ], + [ + 77.524173241937106, + 12.9753724645803 + ], + [ + 77.524203773633801, + 12.975644650973001 + ], + [ + 77.524258159459805, + 12.9761391333549 + ], + [ + 77.524271981162698, + 12.976399750024299 + ], + [ + 77.524563602424195, + 12.976388214375 + ], + [ + 77.524641140893394, + 12.9763855692613 + ], + [ + 77.524623318846196, + 12.976225658733799 + ], + [ + 77.524611238869596, + 12.976061151068899 + ], + [ + 77.525921374790897, + 12.975948516807099 + ], + [ + 77.526275385491104, + 12.975924641371099 + ], + [ + 77.526501474938101, + 12.975920173949101 + ], + [ + 77.526555556124904, + 12.975925703617801 + ], + [ + 77.526525510638905, + 12.9756255081059 + ], + [ + 77.526493567165801, + 12.9753427396078 + ], + [ + 77.526559101582706, + 12.975336047689501 + ], + [ + 77.526547470342905, + 12.975025076703901 + ], + [ + 77.526538781264904, + 12.974776142543799 + ], + [ + 77.526526440588995, + 12.9746241264681 + ], + [ + 77.526541002303006, + 12.974384806038 + ], + [ + 77.527130374324003, + 12.9743578861216 + ], + [ + 77.527131457662094, + 12.9741595690744 + ], + [ + 77.527115731677398, + 12.973978067065801 + ], + [ + 77.527102039711195, + 12.9735013561738 + ], + [ + 77.527087034767703, + 12.973498941948501 + ], + [ + 77.527076141246994, + 12.973195684462301 + ], + [ + 77.527062938238103, + 12.9729158992485 + ], + [ + 77.527624463997796, + 12.972883194232899 + ], + [ + 77.528172343481302, + 12.972874841309901 + ], + [ + 77.528455528273994, + 12.972869060747 + ], + [ + 77.528543244959906, + 12.9728759492981 + ], + [ + 77.528541255789094, + 12.9728498644889 + ], + [ + 77.528717011402904, + 12.972834886326201 + ], + [ + 77.528780089575704, + 12.972878136793399 + ], + [ + 77.529536288371801, + 12.972895639093201 + ], + [ + 77.529570106858401, + 12.972958132357 + ], + [ + 77.529747034891301, + 12.972903372442399 + ], + [ + 77.531179528595501, + 12.972640851606499 + ], + [ + 77.531984081945296, + 12.972486933926101 + ], + [ + 77.531984842780204, + 12.972491473705899 + ], + [ + 77.532695532611996, + 12.972339933082401 + ], + [ + 77.532840583392797, + 12.972301872938701 + ], + [ + 77.533418784288799, + 12.972178159154099 + ], + [ + 77.533799885934897, + 12.972086647248799 + ], + [ + 77.533601994293406, + 12.9714314037374 + ], + [ + 77.533598807865602, + 12.9714215951822 + ], + [ + 77.533573947808605, + 12.9714197558864 + ], + [ + 77.5333761970317, + 12.970702067019699 + ], + [ + 77.533341412503106, + 12.970544215372801 + ], + [ + 77.532824617175905, + 12.970649157835901 + ], + [ + 77.5328172198723, + 12.970604573221401 + ], + [ + 77.532780739086206, + 12.9704316001049 + ], + [ + 77.532776611421994, + 12.9704193407958 + ], + [ + 77.533115194197507, + 12.970359087667999 + ], + [ + 77.533083147792397, + 12.9702239160464 + ], + [ + 77.533437156017399, + 12.9701674860263 + ], + [ + 77.534133501162003, + 12.9700358160308 + ], + [ + 77.534171222073596, + 12.970026365854199 + ], + [ + 77.534851084530899, + 12.9698676065558 + ], + [ + 77.535782710123499, + 12.969573178772301 + ], + [ + 77.536230483090705, + 12.9694356007804 + ], + [ + 77.536039727190101, + 12.9689659176346 + ], + [ + 77.536023863889696, + 12.968923686401 + ], + [ + 77.535554540144503, + 12.9676960427055 + ], + [ + 77.5353358529253, + 12.9677538229154 + ], + [ + 77.532916308801205, + 12.9684998262672 + ], + [ + 77.532642384554407, + 12.9685812099156 + ], + [ + 77.532408053774702, + 12.968522657951199 + ], + [ + 77.532034783154899, + 12.9684901675273 + ], + [ + 77.531721058636805, + 12.9684826987616 + ], + [ + 77.5311749373259, + 12.9685493211581 + ], + [ + 77.5305728054946, + 12.9686803532796 + ], + [ + 77.530594178397806, + 12.9687857851576 + ], + [ + 77.530601704441693, + 12.9688229107458 + ], + [ + 77.530736889275502, + 12.9693816242232 + ], + [ + 77.530794409187195, + 12.9696891202528 + ], + [ + 77.530727474772902, + 12.9697098291144 + ], + [ + 77.530394417906706, + 12.969782324842599 + ], + [ + 77.529846062632899, + 12.969895515697299 + ], + [ + 77.529725877322903, + 12.969916363754701 + ], + [ + 77.529678329941802, + 12.9696409382888 + ], + [ + 77.529607023659693, + 12.969305570749301 + ], + [ + 77.529504679593202, + 12.9688009606632 + ], + [ + 77.529388200915804, + 12.968272267258 + ], + [ + 77.529336156326295, + 12.9682143049685 + ], + [ + 77.529035694824103, + 12.9682147642412 + ], + [ + 77.5289954898834, + 12.967443879649799 + ], + [ + 77.528977541271303, + 12.967184839828001 + ], + [ + 77.528604438863098, + 12.9671848398281 + ], + [ + 77.528609450673699, + 12.967351884627501 + ], + [ + 77.528644535200797, + 12.968213786695699 + ], + [ + 77.528271591425394, + 12.968223585595499 + ], + [ + 77.528274762176693, + 12.968594932611801 + ], + [ + 77.528310565539201, + 12.969243592802099 + ], + [ + 77.528533373052099, + 12.9699809406135 + ], + [ + 77.527827145562, + 12.970433615544801 + ], + [ + 77.527783515827906, + 12.970163828034201 + ], + [ + 77.527729084207493, + 12.970123484642899 + ], + [ + 77.527499531655096, + 12.9701665875193 + ], + [ + 77.527540861027205, + 12.970399688072099 + ], + [ + 77.527072194048401, + 12.9704915928146 + ], + [ + 77.526838728880804, + 12.9705440607542 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "175", + "group": "Maruthi Mandira", + "Corporatio": "West", + "ac_no": "166", + "ac": "Govindraj Nagar", + "corporat_1": "5", + "ward_id": "96", + "ward_name": "96 - Maruthi Mandira Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಗೋವಿಂದರಾಜ ನಗರ", + "ward_name_": "ಮಾರುತಿ ಮಂದಿರ ವಾರ್ಡ್", + "dig_ward_n": "Maruthi Mandira", + "Assembly": "166 - Govindraj Nagar", + "Slno": "96" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.536179907519198, + 12.9674828114484 + ], + [ + 77.536178866365702, + 12.9674801581619 + ], + [ + 77.536173491688302, + 12.967466495848599 + ], + [ + 77.536081942597804, + 12.9672337774669 + ], + [ + 77.536035031186003, + 12.967142855749801 + ], + [ + 77.535598706138401, + 12.966297190121701 + ], + [ + 77.535597261859095, + 12.966294389879399 + ], + [ + 77.5354934738005, + 12.9660932321188 + ], + [ + 77.535444265987806, + 12.9659910048511 + ], + [ + 77.535443665608099, + 12.965989756681401 + ], + [ + 77.535412250227395, + 12.9659240903216 + ], + [ + 77.535103491272693, + 12.965278259727601 + ], + [ + 77.534975796386504, + 12.9650028332257 + ], + [ + 77.534898212211701, + 12.964835490633201 + ], + [ + 77.534825664820303, + 12.9646790128898 + ], + [ + 77.534690844231505, + 12.964388217893401 + ], + [ + 77.534689106648401, + 12.964384470044999 + ], + [ + 77.534634358725498, + 12.964404166861099 + ], + [ + 77.534311634286695, + 12.964520277578099 + ], + [ + 77.534256912812296, + 12.964531584412899 + ], + [ + 77.534001252586194, + 12.9645844101794 + ], + [ + 77.533967475203895, + 12.9645913895577 + ], + [ + 77.533840108094495, + 12.964618091458799 + ], + [ + 77.533824660852204, + 12.9646213299416 + ], + [ + 77.533749756786193, + 12.964637032539599 + ], + [ + 77.533645057638196, + 12.9646589809125 + ], + [ + 77.533640603817801, + 12.964659914197901 + ], + [ + 77.533459010331498, + 12.9646979828595 + ], + [ + 77.533398256640595, + 12.964706648673699 + ], + [ + 77.533375441692698, + 12.964709902843699 + ], + [ + 77.533110602594206, + 12.9647476776394 + ], + [ + 77.533049655599299, + 12.9647399770161 + ], + [ + 77.532875469065004, + 12.9647179683239 + ], + [ + 77.532753753453903, + 12.964702589327 + ], + [ + 77.532740289346506, + 12.964700872379799 + ], + [ + 77.532504749201905, + 12.9646708361078 + ], + [ + 77.532500864046995, + 12.9646703408678 + ], + [ + 77.532482222304296, + 12.964667963647001 + ], + [ + 77.532418062671198, + 12.964666598579001 + ], + [ + 77.532344805033404, + 12.9646650401465 + ], + [ + 77.532336523400403, + 12.964664864150601 + ], + [ + 77.532021513160899, + 12.9646577653184 + ], + [ + 77.532007258353801, + 12.9646575859949 + ], + [ + 77.5320059298042, + 12.9646575700105 + ], + [ + 77.531970840059799, + 12.9646571290219 + ], + [ + 77.531958629319107, + 12.9646559377918 + ], + [ + 77.531770853892496, + 12.964637617251199 + ], + [ + 77.531732511797401, + 12.964636036968599 + ], + [ + 77.531726502996506, + 12.9646357900531 + ], + [ + 77.531703927600603, + 12.964634953523699 + ], + [ + 77.531701326961993, + 12.964634856855699 + ], + [ + 77.531608346377695, + 12.9646314084862 + ], + [ + 77.531509360007504, + 12.9646277384303 + ], + [ + 77.531455221724499, + 12.9646260515711 + ], + [ + 77.531450717436101, + 12.964625912886101 + ], + [ + 77.531437509544304, + 12.9646255019953 + ], + [ + 77.531315844504206, + 12.9646217154807 + ], + [ + 77.531148586388298, + 12.9646200736252 + ], + [ + 77.531038119282002, + 12.9646189896759 + ], + [ + 77.531034089499798, + 12.9646189502681 + ], + [ + 77.530853466004203, + 12.9646171780152 + ], + [ + 77.530848283771306, + 12.964617228415101 + ], + [ + 77.530817196063495, + 12.964618640225099 + ], + [ + 77.530712528015101, + 12.964623392206899 + ], + [ + 77.530626719586394, + 12.9646272885584 + ], + [ + 77.530509641811094, + 12.964664566105901 + ], + [ + 77.530496614978404, + 12.964667941680601 + ], + [ + 77.530479042813894, + 12.964672495316201 + ], + [ + 77.530422046539002, + 12.9646872675485 + ], + [ + 77.530391918874002, + 12.964695073811001 + ], + [ + 77.5303873654249, + 12.9646962691161 + ], + [ + 77.530387325005094, + 12.9646962803508 + ], + [ + 77.530134870240005, + 12.9647625412333 + ], + [ + 77.530071316658805, + 12.964779222049399 + ], + [ + 77.530034945064799, + 12.9647887685437 + ], + [ + 77.529966297778699, + 12.964806787217 + ], + [ + 77.529966017557399, + 12.9648068613159 + ], + [ + 77.5299629662955, + 12.9648076616462 + ], + [ + 77.529848134007906, + 12.964839268562301 + ], + [ + 77.529806349792594, + 12.964850956485099 + ], + [ + 77.529783072951304, + 12.964857467354401 + ], + [ + 77.529745393106197, + 12.964868006802 + ], + [ + 77.529523541431104, + 12.9649300612004 + ], + [ + 77.529496762794594, + 12.964937551122601 + ], + [ + 77.529477334782797, + 12.964936315190201 + ], + [ + 77.5293544495525, + 12.9649284965805 + ], + [ + 77.529327379750299, + 12.9649267738556 + ], + [ + 77.529326081803106, + 12.9649266870891 + ], + [ + 77.529270623774394, + 12.964922951780499 + ], + [ + 77.529226945037493, + 12.9649200090618 + ], + [ + 77.529224825720306, + 12.964919866131201 + ], + [ + 77.529197070863503, + 12.9649169908903 + ], + [ + 77.529119753434699, + 12.9649089813422 + ], + [ + 77.528507253351194, + 12.9648455266362 + ], + [ + 77.528404341275206, + 12.964834728070301 + ], + [ + 77.528323584862605, + 12.9648262529706 + ], + [ + 77.528289635267399, + 12.9648226906411 + ], + [ + 77.528289322650295, + 12.964822658442801 + ], + [ + 77.528208522909296, + 12.964814180113001 + ], + [ + 77.528002755938999, + 12.9647925884616 + ], + [ + 77.527965465232199, + 12.964788674567901 + ], + [ + 77.527645348138904, + 12.964754251895 + ], + [ + 77.527570327652498, + 12.9647461843211 + ], + [ + 77.527532023390506, + 12.9647420660832 + ], + [ + 77.527449731420901, + 12.9647316848221 + ], + [ + 77.527375712379595, + 12.964722348015099 + ], + [ + 77.5271905028888, + 12.9646989839827 + ], + [ + 77.527007518234896, + 12.9646759026793 + ], + [ + 77.526863699189903, + 12.964657761520201 + ], + [ + 77.526858678620499, + 12.964657128144999 + ], + [ + 77.526737300102596, + 12.9646419700327 + ], + [ + 77.526707639192495, + 12.964638266463201 + ], + [ + 77.526708658366999, + 12.9646271636623 + ], + [ + 77.5267094302217, + 12.964618755627701 + ], + [ + 77.526709714003701, + 12.9646156575561 + ], + [ + 77.526502428960299, + 12.964601958015001 + ], + [ + 77.526501149888006, + 12.9646018734802 + ], + [ + 77.526443441048102, + 12.964598565965 + ], + [ + 77.526433747939706, + 12.964598010469899 + ], + [ + 77.526432895647602, + 12.964573363299699 + ], + [ + 77.525929206301996, + 12.964584026744699 + ], + [ + 77.525913022744902, + 12.964892240584099 + ], + [ + 77.525964962791804, + 12.965240050736799 + ], + [ + 77.525965174945199, + 12.965242177273 + ], + [ + 77.525911145815002, + 12.96526090081 + ], + [ + 77.525949049613502, + 12.9654983306764 + ], + [ + 77.525651430351502, + 12.965604007081 + ], + [ + 77.5256397219826, + 12.965647248233701 + ], + [ + 77.525663192932399, + 12.965755256588199 + ], + [ + 77.525706696852794, + 12.9659364894218 + ], + [ + 77.525751045189807, + 12.966200234889399 + ], + [ + 77.525761798784202, + 12.9661963268598 + ], + [ + 77.526340333395197, + 12.9660151105076 + ], + [ + 77.526442057884907, + 12.9664591775906 + ], + [ + 77.526478945939601, + 12.9665965744496 + ], + [ + 77.525909349639093, + 12.9667459149119 + ], + [ + 77.526000614471599, + 12.9669948045956 + ], + [ + 77.525961586893402, + 12.9670277300234 + ], + [ + 77.525903183087806, + 12.967052517698701 + ], + [ + 77.525866294858503, + 12.967068013736 + ], + [ + 77.525499889509007, + 12.967156987966201 + ], + [ + 77.525272619344406, + 12.967243337592899 + ], + [ + 77.525220841976207, + 12.9672718289972 + ], + [ + 77.525010904040499, + 12.9673465285777 + ], + [ + 77.525010210542305, + 12.967346729556001 + ], + [ + 77.524520152269403, + 12.967457176088599 + ], + [ + 77.524428630525307, + 12.967469538301 + ], + [ + 77.524272785686506, + 12.967484436322801 + ], + [ + 77.524179371727996, + 12.9675025548086 + ], + [ + 77.524152074740002, + 12.967502819636101 + ], + [ + 77.523884896324404, + 12.9675817113449 + ], + [ + 77.523959012418402, + 12.967739412110401 + ], + [ + 77.523975248373205, + 12.967773959066999 + ], + [ + 77.524189466962397, + 12.968216046731399 + ], + [ + 77.524252527041696, + 12.9683461837429 + ], + [ + 77.524397428279599, + 12.968641310568399 + ], + [ + 77.524477097482503, + 12.9688225795511 + ], + [ + 77.524479531988405, + 12.968828118649499 + ], + [ + 77.524594253622894, + 12.969190108282399 + ], + [ + 77.524621738026298, + 12.969358919772199 + ], + [ + 77.524627485708507, + 12.9694257998519 + ], + [ + 77.524642390692307, + 12.9696798273939 + ], + [ + 77.524644405638298, + 12.969879515591 + ], + [ + 77.524665992497205, + 12.9699391769398 + ], + [ + 77.524714228708802, + 12.970072493267701 + ], + [ + 77.524822052622596, + 12.9703619288191 + ], + [ + 77.524853843596802, + 12.970437694084699 + ], + [ + 77.524874350409505, + 12.970499133988801 + ], + [ + 77.524954624118493, + 12.9707396360808 + ], + [ + 77.524960604124303, + 12.9707575509394 + ], + [ + 77.525221272948798, + 12.970787724612601 + ], + [ + 77.525452813665098, + 12.9707565984348 + ], + [ + 77.525663366734307, + 12.9707282519469 + ], + [ + 77.525734194951696, + 12.970710912495999 + ], + [ + 77.526169628532401, + 12.9705969649621 + ], + [ + 77.526453023769605, + 12.9705518494128 + ], + [ + 77.526558280536406, + 12.970587139656599 + ], + [ + 77.526577436869502, + 12.970618623201201 + ], + [ + 77.526668583767602, + 12.9705911322442 + ], + [ + 77.526838728880804, + 12.9705440607542 + ], + [ + 77.527072194048401, + 12.9704915928146 + ], + [ + 77.527540861027205, + 12.970399688072099 + ], + [ + 77.527499531655096, + 12.9701665875193 + ], + [ + 77.527729084207493, + 12.970123484642899 + ], + [ + 77.527783515827906, + 12.970163828034201 + ], + [ + 77.527827145562, + 12.970433615544801 + ], + [ + 77.528533373052099, + 12.9699809406135 + ], + [ + 77.528310565539201, + 12.969243592802099 + ], + [ + 77.528274762176693, + 12.968594932611801 + ], + [ + 77.528271591425394, + 12.968223585595499 + ], + [ + 77.528644535200797, + 12.968213786695699 + ], + [ + 77.528609450673699, + 12.967351884627501 + ], + [ + 77.528604438863098, + 12.9671848398281 + ], + [ + 77.528977541271303, + 12.967184839828001 + ], + [ + 77.5289954898834, + 12.967443879649799 + ], + [ + 77.529035694824103, + 12.9682147642412 + ], + [ + 77.529336156326295, + 12.9682143049685 + ], + [ + 77.529388200915804, + 12.968272267258 + ], + [ + 77.529504679593202, + 12.9688009606632 + ], + [ + 77.529607023659693, + 12.969305570749301 + ], + [ + 77.529678329941802, + 12.9696409382888 + ], + [ + 77.529725877322903, + 12.969916363754701 + ], + [ + 77.529846062632899, + 12.969895515697299 + ], + [ + 77.530394417906706, + 12.969782324842599 + ], + [ + 77.530727474772902, + 12.9697098291144 + ], + [ + 77.530794409187195, + 12.9696891202528 + ], + [ + 77.530736889275502, + 12.9693816242232 + ], + [ + 77.530601704441693, + 12.9688229107458 + ], + [ + 77.530594178397806, + 12.9687857851576 + ], + [ + 77.5305728054946, + 12.9686803532796 + ], + [ + 77.5311749373259, + 12.9685493211581 + ], + [ + 77.531721058636805, + 12.9684826987616 + ], + [ + 77.532034783154899, + 12.9684901675273 + ], + [ + 77.532408053774702, + 12.968522657951199 + ], + [ + 77.532642384554407, + 12.9685812099156 + ], + [ + 77.532916308801205, + 12.9684998262672 + ], + [ + 77.5353358529253, + 12.9677538229154 + ], + [ + 77.535554540144503, + 12.9676960427055 + ], + [ + 77.535963178700698, + 12.967583192990601 + ], + [ + 77.536176718062904, + 12.967525523574301 + ], + [ + 77.536194027643006, + 12.9675188092267 + ], + [ + 77.536179907519198, + 12.9674828114484 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "176", + "group": "Kaveripura", + "Corporatio": "West", + "ac_no": "166", + "ac": "Govindraj Nagar", + "corporat_1": "5", + "ward_id": "63", + "ward_name": "63 - Mangal Pandey Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಗೋವಿಂದರಾಜ ನಗರ", + "ward_name_": "ಮಂಗಲ್ ಪಾಂಡೆ ವಾರ್ಡ್", + "dig_ward_n": "Kaveripura", + "Assembly": "166 - Govindraj Nagar", + "Slno": "63" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.518698543661699, + 12.977287394478701 + ], + [ + 77.518710053109999, + 12.9773281917644 + ], + [ + 77.5187113982836, + 12.9773329599623 + ], + [ + 77.518711727892196, + 12.977334128586 + ], + [ + 77.518752056428298, + 12.977477084424001 + ], + [ + 77.518775925680004, + 12.9775680125927 + ], + [ + 77.518789320953104, + 12.9776190408645 + ], + [ + 77.518812214071801, + 12.9777062490659 + ], + [ + 77.518848458390394, + 12.9778443195521 + ], + [ + 77.518892620991295, + 12.978001311733699 + ], + [ + 77.518912925130707, + 12.978073492076801 + ], + [ + 77.518981212092896, + 12.9783162457346 + ], + [ + 77.5190144746866, + 12.978434491933101 + ], + [ + 77.519027988339701, + 12.978480256985801 + ], + [ + 77.519060456201302, + 12.9785902087722 + ], + [ + 77.5190633576929, + 12.9786000331307 + ], + [ + 77.519186674905001, + 12.9787546852268 + ], + [ + 77.519264795606901, + 12.978852656193601 + ], + [ + 77.519276806929298, + 12.978867719195801 + ], + [ + 77.5193117856208, + 12.978911585788399 + ], + [ + 77.519492615766097, + 12.979086012266499 + ], + [ + 77.5195403092292, + 12.9791200259888 + ], + [ + 77.519566423387602, + 12.9791386493338 + ], + [ + 77.519569171023093, + 12.979140608556399 + ], + [ + 77.519667172501798, + 12.979366681076799 + ], + [ + 77.5196757094334, + 12.9793863746432 + ], + [ + 77.519684713251294, + 12.9794071451514 + ], + [ + 77.519720755278797, + 12.9794982733272 + ], + [ + 77.519729714762903, + 12.9795874053045 + ], + [ + 77.519724999728695, + 12.9796337544471 + ], + [ + 77.519666472336397, + 12.9797111177056 + ], + [ + 77.519624755224001, + 12.9797996124435 + ], + [ + 77.519551001400103, + 12.9799087442362 + ], + [ + 77.519456354775201, + 12.980058736108401 + ], + [ + 77.5194459733207, + 12.980114174995199 + ], + [ + 77.519441497231995, + 12.980184238225601 + ], + [ + 77.519434051388401, + 12.980245295421399 + ], + [ + 77.519400030345906, + 12.980297575375999 + ], + [ + 77.519309882385997, + 12.980379761579 + ], + [ + 77.519269796623405, + 12.9804016086901 + ], + [ + 77.519168647962502, + 12.9804206586362 + ], + [ + 77.519098903419703, + 12.9804134290909 + ], + [ + 77.519016067461095, + 12.9805010059019 + ], + [ + 77.518994043068801, + 12.980524290659799 + ], + [ + 77.518979000371601, + 12.980540194069601 + ], + [ + 77.518958749882003, + 12.980561603172101 + ], + [ + 77.518944338109705, + 12.980617081117099 + ], + [ + 77.518878227753902, + 12.9807419505764 + ], + [ + 77.518831756356207, + 12.9808158088419 + ], + [ + 77.518817152698304, + 12.980878775003299 + ], + [ + 77.518804716864395, + 12.9809323942068 + ], + [ + 77.518805309459495, + 12.980991114809999 + ], + [ + 77.518805461310805, + 12.9810061852292 + ], + [ + 77.518806093648493, + 12.981069032553901 + ], + [ + 77.518776100321901, + 12.981235338069 + ], + [ + 77.518763945463206, + 12.981274249577501 + ], + [ + 77.518752645622797, + 12.9813104251875 + ], + [ + 77.518744531957907, + 12.981336398518399 + ], + [ + 77.518729909352501, + 12.9813832104991 + ], + [ + 77.518718924536401, + 12.9814183756736 + ], + [ + 77.518708247625796, + 12.981452554875601 + ], + [ + 77.518695775914196, + 12.9814924804512 + ], + [ + 77.518682607229195, + 12.9815147117558 + ], + [ + 77.518667817023498, + 12.981539680061999 + ], + [ + 77.518649349862599, + 12.9815708547829 + ], + [ + 77.518543159992305, + 12.9816611026615 + ], + [ + 77.518507840079295, + 12.9816878344296 + ], + [ + 77.518496302446394, + 12.9816965666496 + ], + [ + 77.518472032999199, + 12.981763094046499 + ], + [ + 77.518453716700705, + 12.9818133026567 + ], + [ + 77.518449355806894, + 12.981844895422199 + ], + [ + 77.518429335424898, + 12.9819899230679 + ], + [ + 77.518427958169497, + 12.9819998964034 + ], + [ + 77.518393311249696, + 12.982181113824 + ], + [ + 77.518389669698607, + 12.9822001619942 + ], + [ + 77.518374283806594, + 12.9822161220224 + ], + [ + 77.518329853406698, + 12.982226864886099 + ], + [ + 77.5182915695882, + 12.982236121587199 + ], + [ + 77.518256146304694, + 12.9822635701951 + ], + [ + 77.518245077549494, + 12.98228913216 + ], + [ + 77.518241804808795, + 12.982296688976399 + ], + [ + 77.518229136156194, + 12.9823259463273 + ], + [ + 77.518225121778201, + 12.982384711587899 + ], + [ + 77.518239183129893, + 12.9824658887698 + ], + [ + 77.518264850991102, + 12.982521840287999 + ], + [ + 77.518297467833406, + 12.982592940919901 + ], + [ + 77.518325536100903, + 12.982635584361899 + ], + [ + 77.518430376888801, + 12.9827542798665 + ], + [ + 77.518519702129694, + 12.982818916729199 + ], + [ + 77.518520426712698, + 12.9828194981013 + ], + [ + 77.5185419040955, + 12.9828367305648 + ], + [ + 77.518586459420504, + 12.982872478731601 + ], + [ + 77.518626099645502, + 12.982920656745801 + ], + [ + 77.518678292649, + 12.983064118107899 + ], + [ + 77.518692427026096, + 12.983102969091499 + ], + [ + 77.518761175490098, + 12.9832997985779 + ], + [ + 77.518764762388201, + 12.983310068931001 + ], + [ + 77.518828502502203, + 12.9834641724627 + ], + [ + 77.518934164405096, + 12.983576471093301 + ], + [ + 77.518952895360599, + 12.9835963785413 + ], + [ + 77.518966446213895, + 12.983610780605 + ], + [ + 77.519084010567298, + 12.9837321965445 + ], + [ + 77.519162534271999, + 12.983813292625401 + ], + [ + 77.519250822414094, + 12.983889232709201 + ], + [ + 77.519314872151696, + 12.983959760974299 + ], + [ + 77.519384983336195, + 12.984288852088801 + ], + [ + 77.519461955080601, + 12.9844416977104 + ], + [ + 77.519510537786402, + 12.984634345865899 + ], + [ + 77.519579847695795, + 12.984826793023 + ], + [ + 77.519647500334102, + 12.984911967783599 + ], + [ + 77.5197008958244, + 12.9850108329886 + ], + [ + 77.519762693503395, + 12.985143497250901 + ], + [ + 77.519796462433604, + 12.985294502919199 + ], + [ + 77.519812483683197, + 12.9854558448489 + ], + [ + 77.5198178850912, + 12.985602103142201 + ], + [ + 77.519821669526607, + 12.9857045871805 + ], + [ + 77.519822910382999, + 12.9857381954945 + ], + [ + 77.519824365336902, + 12.9857775948545 + ], + [ + 77.519822973960501, + 12.985806957211301 + ], + [ + 77.519821591065096, + 12.9858361406003 + ], + [ + 77.5198172444519, + 12.985927867683101 + ], + [ + 77.519806545295793, + 12.985981508763601 + ], + [ + 77.519806502541797, + 12.9859817231145 + ], + [ + 77.519806459513305, + 12.985981938841199 + ], + [ + 77.519806398039805, + 12.985982247043401 + ], + [ + 77.519803446821101, + 12.985997043213899 + ], + [ + 77.519796591424907, + 12.9860314132862 + ], + [ + 77.519786549915295, + 12.9860817571815 + ], + [ + 77.519793885326806, + 12.9861810689903 + ], + [ + 77.5198062317411, + 12.986263391925601 + ], + [ + 77.519896150870593, + 12.9863867494456 + ], + [ + 77.520015058784196, + 12.9864779429767 + ], + [ + 77.520019754989406, + 12.9864815446142 + ], + [ + 77.520164142231593, + 12.986695850264301 + ], + [ + 77.520243515831396, + 12.9868012393685 + ], + [ + 77.520296062953093, + 12.986873008128301 + ], + [ + 77.5203078970316, + 12.986904515167 + ], + [ + 77.520325850219095, + 12.9868970950953 + ], + [ + 77.520377854647705, + 12.9868756027592 + ], + [ + 77.520464265790594, + 12.986839294741999 + ], + [ + 77.520974874409205, + 12.986624748698899 + ], + [ + 77.520981292617094, + 12.9866220518749 + ], + [ + 77.520990822681398, + 12.9866180473353 + ], + [ + 77.521073941036803, + 12.9865831236046 + ], + [ + 77.521287467921795, + 12.9864762921775 + ], + [ + 77.521295517216799, + 12.986472264954999 + ], + [ + 77.521594110014405, + 12.9863228733645 + ], + [ + 77.521664228540999, + 12.9862877916493 + ], + [ + 77.521847382270593, + 12.9861961560132 + ], + [ + 77.521876597613101, + 12.9861811909007 + ], + [ + 77.522004839310299, + 12.9861338849433 + ], + [ + 77.5220209352604, + 12.9861279473403 + ], + [ + 77.522085696309304, + 12.986104058639301 + ], + [ + 77.5221249990242, + 12.986089561165899 + ], + [ + 77.522148820995298, + 12.986083991265501 + ], + [ + 77.522235868890405, + 12.986063639248 + ], + [ + 77.522293167789201, + 12.9860346794281 + ], + [ + 77.522333832752196, + 12.986014126230501 + ], + [ + 77.522349286927707, + 12.9860049414093 + ], + [ + 77.522495435082604, + 12.9859193390859 + ], + [ + 77.522509892270804, + 12.9859108713607 + ], + [ + 77.522723800799596, + 12.985785579870599 + ], + [ + 77.522755136726701, + 12.985767225915801 + ], + [ + 77.522794624308005, + 12.985743126188799 + ], + [ + 77.523042991461296, + 12.985534043726201 + ], + [ + 77.523058128853506, + 12.9855215700046 + ], + [ + 77.5230624074362, + 12.9855180443079 + ], + [ + 77.523380272871805, + 12.985234879084199 + ], + [ + 77.523478786258295, + 12.985146785448199 + ], + [ + 77.523496609869994, + 12.985130846645101 + ], + [ + 77.523557746650894, + 12.9850761760749 + ], + [ + 77.523645140743099, + 12.9850383406937 + ], + [ + 77.523664406420195, + 12.9850299996871 + ], + [ + 77.523683747315204, + 12.985021626327001 + ], + [ + 77.523686991740405, + 12.9850202215286 + ], + [ + 77.523704511838403, + 12.9850126374221 + ], + [ + 77.523719497260799, + 12.9850115107019 + ], + [ + 77.523748132334404, + 12.985009358773601 + ], + [ + 77.523773556388605, + 12.9850074494432 + ], + [ + 77.523786787256498, + 12.985006190686301 + ], + [ + 77.523868784861406, + 12.9850204019566 + ], + [ + 77.523986093621104, + 12.985040733538201 + ], + [ + 77.523990403841907, + 12.985041480570899 + ], + [ + 77.524000225663698, + 12.985045631273 + ], + [ + 77.524116105360704, + 12.9850946019952 + ], + [ + 77.524168200192705, + 12.9851166169605 + ], + [ + 77.524352261452705, + 12.9851944009752 + ], + [ + 77.524353708537504, + 12.985195013027599 + ], + [ + 77.524363970402007, + 12.985199349414501 + ], + [ + 77.524523038921302, + 12.985243390844101 + ], + [ + 77.524588588010303, + 12.985261540017699 + ], + [ + 77.5246439364727, + 12.9852767634372 + ], + [ + 77.524654658798696, + 12.985279713015499 + ], + [ + 77.524747066090498, + 12.985305130775901 + ], + [ + 77.524906018155306, + 12.9853488523433 + ], + [ + 77.524949471017806, + 12.9853608041415 + ], + [ + 77.5251838740746, + 12.985420186848099 + ], + [ + 77.525391672161504, + 12.985472829559599 + ], + [ + 77.525462447109803, + 12.985531290570901 + ], + [ + 77.525465996069798, + 12.985534221291401 + ], + [ + 77.525550251204905, + 12.985603417379499 + ], + [ + 77.525661948952404, + 12.9856951500336 + ], + [ + 77.5257133436331, + 12.9857373582762 + ], + [ + 77.525762953494095, + 12.985781566560499 + ], + [ + 77.525944017591897, + 12.985942915738701 + ], + [ + 77.525984245954305, + 12.9859432835771 + ], + [ + 77.525994709138502, + 12.9859433788156 + ], + [ + 77.526063796949799, + 12.985944009971 + ], + [ + 77.526072997574204, + 12.985942791176001 + ], + [ + 77.526259980124806, + 12.985927421107901 + ], + [ + 77.526408711799306, + 12.9858875772121 + ], + [ + 77.526419100877902, + 12.9858805901791 + ], + [ + 77.526448769067798, + 12.985860637239099 + ], + [ + 77.526449529491103, + 12.985860125705001 + ], + [ + 77.526490496324797, + 12.9858325733603 + ], + [ + 77.526612078431199, + 12.9857521064962 + ], + [ + 77.526615188172102, + 12.985750047951299 + ], + [ + 77.526655428587404, + 12.9857172624834 + ], + [ + 77.526657935040106, + 12.985715219742801 + ], + [ + 77.526679722878001, + 12.985697469579099 + ], + [ + 77.526914253060696, + 12.9855094529913 + ], + [ + 77.526917526587297, + 12.985506828177799 + ], + [ + 77.5271046789004, + 12.985356792700999 + ], + [ + 77.527243047982694, + 12.985233476690899 + ], + [ + 77.527244039571698, + 12.985232593384801 + ], + [ + 77.527264914881798, + 12.985213987433999 + ], + [ + 77.527277303344107, + 12.985202951137399 + ], + [ + 77.527433218765395, + 12.9850640203687 + ], + [ + 77.527433490861696, + 12.9850637783008 + ], + [ + 77.527444223893099, + 12.985054213601201 + ], + [ + 77.527705645412198, + 12.984822306057501 + ], + [ + 77.527736414921307, + 12.9847950099667 + ], + [ + 77.527777823883099, + 12.984747352628199 + ], + [ + 77.527779756360601, + 12.9847451284437 + ], + [ + 77.527815369699994, + 12.984704141830401 + ], + [ + 77.527846098085206, + 12.9846687753769 + ], + [ + 77.527875543316199, + 12.984634886842199 + ], + [ + 77.528043202406806, + 12.9844419284419 + ], + [ + 77.528073956010402, + 12.984401866360701 + ], + [ + 77.528074038760906, + 12.984401758945401 + ], + [ + 77.528213397821602, + 12.984220219275899 + ], + [ + 77.528220516766595, + 12.9842109463039 + ], + [ + 77.528381761572504, + 12.984042234426299 + ], + [ + 77.528393675823295, + 12.9840304139735 + ], + [ + 77.528398542033699, + 12.984025585432001 + ], + [ + 77.528473648627397, + 12.9839510659718 + ], + [ + 77.528522002426598, + 12.9839030898223 + ], + [ + 77.528637212318102, + 12.983854049346199 + ], + [ + 77.528643016292605, + 12.983851578783501 + ], + [ + 77.528665909290893, + 12.9838418342914 + ], + [ + 77.528738327664797, + 12.983828706820599 + ], + [ + 77.528738937688701, + 12.983832088919 + ], + [ + 77.528818058810501, + 12.9838169989048 + ], + [ + 77.528847524519193, + 12.983811378952399 + ], + [ + 77.5288595756234, + 12.983809080690101 + ], + [ + 77.528886099653704, + 12.9838030041933 + ], + [ + 77.529013310573802, + 12.983773862384099 + ], + [ + 77.529021627079402, + 12.983771957331999 + ], + [ + 77.529120433349405, + 12.9837493222707 + ], + [ + 77.529146713333702, + 12.9837473535176 + ], + [ + 77.529553684345103, + 12.98371687182 + ], + [ + 77.529868255693799, + 12.983621203439 + ], + [ + 77.530364808788704, + 12.9833577493541 + ], + [ + 77.530376643796004, + 12.983348846952801 + ], + [ + 77.530405953663603, + 12.9833267997966 + ], + [ + 77.530411705533098, + 12.983322473185799 + ], + [ + 77.530413931379599, + 12.9833207988829 + ], + [ + 77.530415512735999, + 12.9833196093716 + ], + [ + 77.530424149852493, + 12.98331311245 + ], + [ + 77.530506521764195, + 12.9832511514823 + ], + [ + 77.530532913585205, + 12.9832312992824 + ], + [ + 77.530571673361806, + 12.9832021443881 + ], + [ + 77.530662043459401, + 12.9830875666329 + ], + [ + 77.530691058915295, + 12.983050779195001 + ], + [ + 77.530741667885096, + 12.982874108820701 + ], + [ + 77.530800030566198, + 12.982716481368101 + ], + [ + 77.530813437970195, + 12.9826802714528 + ], + [ + 77.530826859726105, + 12.9826440234517 + ], + [ + 77.530836723060702, + 12.9826246553861 + ], + [ + 77.530845516874095, + 12.9826073883755 + ], + [ + 77.530896261699695, + 12.9825077469182 + ], + [ + 77.530913260350701, + 12.9824743696577 + ], + [ + 77.530918746207007, + 12.9824635983167 + ], + [ + 77.530918840144395, + 12.9824634130931 + ], + [ + 77.530934671695107, + 12.982432326663901 + ], + [ + 77.530948243144806, + 12.9824056784274 + ], + [ + 77.531060036592805, + 12.982300690162299 + ], + [ + 77.531168302908299, + 12.982245427307101 + ], + [ + 77.531240552003396, + 12.982209558631499 + ], + [ + 77.531261115633498, + 12.982199349666701 + ], + [ + 77.531267413466594, + 12.982195163065899 + ], + [ + 77.531278290515601, + 12.982187929620901 + ], + [ + 77.531397238652701, + 12.9821088057965 + ], + [ + 77.531498485575398, + 12.982086107357301 + ], + [ + 77.531618418669396, + 12.982059219055699 + ], + [ + 77.531694244927394, + 12.982041540309 + ], + [ + 77.531835232837906, + 12.982033390863 + ], + [ + 77.531840414042705, + 12.982033112714999 + ], + [ + 77.531957939053996, + 12.9820268008532 + ], + [ + 77.532117795767704, + 12.982018215368001 + ], + [ + 77.532182603181099, + 12.9820144200059 + ], + [ + 77.532387381763499, + 12.9820024278749 + ], + [ + 77.532464795786694, + 12.981997894344399 + ], + [ + 77.532602935127699, + 12.981990031542299 + ], + [ + 77.532704189418197, + 12.981984268196999 + ], + [ + 77.532742718257396, + 12.9819793753721 + ], + [ + 77.533015200560101, + 12.981946589077801 + ], + [ + 77.533038892664806, + 12.9819437381023 + ], + [ + 77.533075119442401, + 12.9819388676661 + ], + [ + 77.533101258665297, + 12.981932855976201 + ], + [ + 77.533107037251, + 12.9819315266628 + ], + [ + 77.533169859055505, + 12.9819170776842 + ], + [ + 77.533184945697997, + 12.9819136076673 + ], + [ + 77.533186890583906, + 12.981913160465 + ], + [ + 77.533207546256094, + 12.9819084101547 + ], + [ + 77.533213562895895, + 12.981907026117399 + ], + [ + 77.533232767373704, + 12.9819025302734 + ], + [ + 77.533375448302905, + 12.9818691105359 + ], + [ + 77.533378635716701, + 12.9818683639166 + ], + [ + 77.533428698702494, + 12.9818566376326 + ], + [ + 77.533430438547796, + 12.9818562303732 + ], + [ + 77.533431631524905, + 12.9818559504132 + ], + [ + 77.533432238132704, + 12.981855808979301 + ], + [ + 77.53343513419, + 12.9818551302495 + ], + [ + 77.533435340989399, + 12.981855082156599 + ], + [ + 77.533442451087396, + 12.981853416413999 + ], + [ + 77.533442826078797, + 12.9818533287358 + ], + [ + 77.533451637423696, + 12.9818512651444 + ], + [ + 77.533451962781001, + 12.981851188791699 + ], + [ + 77.533467243613998, + 12.981847609353499 + ], + [ + 77.533467552435894, + 12.981847537679201 + ], + [ + 77.533479606336002, + 12.9818447142806 + ], + [ + 77.533482197255907, + 12.9818441071886 + ], + [ + 77.533501117697298, + 12.9818396755312 + ], + [ + 77.533501716023594, + 12.9818395350814 + ], + [ + 77.533519517929193, + 12.9818353654915 + ], + [ + 77.533520864404807, + 12.981835050606399 + ], + [ + 77.533558586734202, + 12.981826216448599 + ], + [ + 77.533562724461802, + 12.981825244633599 + ], + [ + 77.533607699326694, + 12.9818147099065 + ], + [ + 77.5336713859963, + 12.9817997934214 + ], + [ + 77.533674575914802, + 12.9817990214771 + ], + [ + 77.533685514991802, + 12.981796372466 + ], + [ + 77.533797751078794, + 12.981769198671801 + ], + [ + 77.533822729575405, + 12.981760382106399 + ], + [ + 77.534103678196502, + 12.981661220426499 + ], + [ + 77.534130222904395, + 12.981651851371501 + ], + [ + 77.534245270736605, + 12.981611245167199 + ], + [ + 77.534249141870802, + 12.9816098766069 + ], + [ + 77.534649182441001, + 12.981468397674901 + ], + [ + 77.534853971620805, + 12.981381305013899 + ], + [ + 77.534741816988699, + 12.981012652936201 + ], + [ + 77.534464536702004, + 12.980109977149301 + ], + [ + 77.534414376088606, + 12.9799525482657 + ], + [ + 77.534404742660001, + 12.9799223126189 + ], + [ + 77.534334231788904, + 12.979711124926 + ], + [ + 77.534326184335796, + 12.979687022844301 + ], + [ + 77.534225543865404, + 12.9793772464648 + ], + [ + 77.534184817443602, + 12.979267085543899 + ], + [ + 77.534180464852298, + 12.9792564895845 + ], + [ + 77.533597598343704, + 12.9794726633378 + ], + [ + 77.532768969128796, + 12.9797289987621 + ], + [ + 77.532663657155197, + 12.9797708970074 + ], + [ + 77.532441280907307, + 12.9798373993652 + ], + [ + 77.532335869151694, + 12.9798694588694 + ], + [ + 77.532040950661795, + 12.9799366676052 + ], + [ + 77.531737826570904, + 12.9800319609719 + ], + [ + 77.531769906529902, + 12.9801512375185 + ], + [ + 77.530754167536699, + 12.980504415619 + ], + [ + 77.530599591385098, + 12.9805489485368 + ], + [ + 77.530585872548201, + 12.9805234267108 + ], + [ + 77.530528867985296, + 12.980381685788601 + ], + [ + 77.530494856401901, + 12.980300272449099 + ], + [ + 77.530085941074702, + 12.980354744200801 + ], + [ + 77.5299614042233, + 12.980362989001 + ], + [ + 77.529893829314901, + 12.9803969500124 + ], + [ + 77.529679006205001, + 12.9804024438179 + ], + [ + 77.5296780080849, + 12.9805012310966 + ], + [ + 77.529694943695503, + 12.9806494173961 + ], + [ + 77.529757152692397, + 12.9808478749251 + ], + [ + 77.529413199964296, + 12.9809490955217 + ], + [ + 77.529129542015397, + 12.9809871957703 + ], + [ + 77.528795276901903, + 12.9810123212972 + ], + [ + 77.528699773150805, + 12.9810170748442 + ], + [ + 77.528462046838897, + 12.9810346869399 + ], + [ + 77.528153778084999, + 12.9810185616113 + ], + [ + 77.5280990082031, + 12.9810018830982 + ], + [ + 77.527953170665697, + 12.980973283607 + ], + [ + 77.527892922208096, + 12.980968571301901 + ], + [ + 77.527889433575595, + 12.980699907717 + ], + [ + 77.527195394729603, + 12.9807959701333 + ], + [ + 77.527085135300993, + 12.980386805128701 + ], + [ + 77.527067193327994, + 12.980291610807599 + ], + [ + 77.527024917595995, + 12.9800797127869 + ], + [ + 77.526858857560697, + 12.979303995931399 + ], + [ + 77.526039499689702, + 12.979333152192099 + ], + [ + 77.525804910452905, + 12.979336945440901 + ], + [ + 77.525785547477099, + 12.979177428608599 + ], + [ + 77.525779540880905, + 12.9790412457619 + ], + [ + 77.525789995841293, + 12.978791991048499 + ], + [ + 77.525274553786005, + 12.9788006176938 + ], + [ + 77.525273799128797, + 12.9785235224773 + ], + [ + 77.525220416649603, + 12.9785345719148 + ], + [ + 77.525059628461605, + 12.9785433045811 + ], + [ + 77.524886581576297, + 12.9785449852992 + ], + [ + 77.524650750849503, + 12.978541305752801 + ], + [ + 77.5245207227658, + 12.9785222434778 + ], + [ + 77.524271829385697, + 12.978495974842099 + ], + [ + 77.524132205909197, + 12.9784751927392 + ], + [ + 77.524108397123598, + 12.978410330805101 + ], + [ + 77.524099564407706, + 12.978299909671501 + ], + [ + 77.524130643118696, + 12.9782396101392 + ], + [ + 77.524191162659307, + 12.978199109987299 + ], + [ + 77.524036260431103, + 12.9780689139386 + ], + [ + 77.524001907365303, + 12.978029888836099 + ], + [ + 77.523965109391199, + 12.9779015736632 + ], + [ + 77.523288263033294, + 12.9779036024071 + ], + [ + 77.522788309849005, + 12.977767671418301 + ], + [ + 77.522698606916194, + 12.9777490197242 + ], + [ + 77.522698591512594, + 12.977748862668101 + ], + [ + 77.522657340949294, + 12.9777023729165 + ], + [ + 77.522647779956898, + 12.9776606327551 + ], + [ + 77.522659457810306, + 12.9773889592687 + ], + [ + 77.522662745993401, + 12.977030003041801 + ], + [ + 77.5226619342112, + 12.976647537094401 + ], + [ + 77.522656514722897, + 12.976561699027901 + ], + [ + 77.522503805998696, + 12.9765722633778 + ], + [ + 77.522398898021706, + 12.9765778225291 + ], + [ + 77.522215442617593, + 12.9766007953559 + ], + [ + 77.522076655281893, + 12.9766142520056 + ], + [ + 77.521802350576706, + 12.976659298921501 + ], + [ + 77.521480548916003, + 12.976727722521799 + ], + [ + 77.521115830835498, + 12.976817913896699 + ], + [ + 77.520535436451894, + 12.9769729443074 + ], + [ + 77.520267968217496, + 12.977038287499401 + ], + [ + 77.520149301885894, + 12.9770543777167 + ], + [ + 77.520111581849307, + 12.977056140112699 + ], + [ + 77.519987892010704, + 12.977061918725999 + ], + [ + 77.519674513135897, + 12.97710678891 + ], + [ + 77.519391600145099, + 12.977151363520701 + ], + [ + 77.518724508753394, + 12.977280271374299 + ], + [ + 77.518692872991195, + 12.9772672933415 + ], + [ + 77.518698543661699, + 12.977287394478701 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "177", + "group": "SHAKTHI GANAPATHI NAGARA", + "Corporatio": "West", + "ac_no": "156", + "ac": "Mahalakshmi Layout", + "corporat_1": "5", + "ward_id": "51", + "ward_name": "51 - Shakthi Ganapathi Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಹಾಲಕ್ಷ್ಮಿ ಲೇಔಟ್", + "ward_name_": "ಶಕ್ತಿ ಗಣಪತಿ ನಗರ", + "dig_ward_n": "SHAKTHI GANAPATHI NAGARA", + "Assembly": "156 - Mahalakshmi Layout", + "Slno": "51" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.531587789458996, + 12.992112906144399 + ], + [ + 77.531253100658404, + 12.9921590534797 + ], + [ + 77.530399304296694, + 12.992276773234201 + ], + [ + 77.5299925060812, + 12.9923315513653 + ], + [ + 77.529538159717802, + 12.9923927314425 + ], + [ + 77.529029674053106, + 12.992453859741399 + ], + [ + 77.529002104111996, + 12.992523689476 + ], + [ + 77.528847302595807, + 12.992546711307201 + ], + [ + 77.528559867986203, + 12.9926154862467 + ], + [ + 77.528187930549294, + 12.992716637409201 + ], + [ + 77.527674526548097, + 12.9928578906925 + ], + [ + 77.527460860809896, + 12.992920265473799 + ], + [ + 77.527328911363796, + 12.9929587845503 + ], + [ + 77.527312577310795, + 12.9929578765011 + ], + [ + 77.527609491793598, + 12.993924298296401 + ], + [ + 77.527607127616605, + 12.9939249293471 + ], + [ + 77.526766433165093, + 12.994149305469399 + ], + [ + 77.526755692807697, + 12.994152171903499 + ], + [ + 77.5268183885198, + 12.994423458575399 + ], + [ + 77.526828604622494, + 12.9944680252342 + ], + [ + 77.526992491158595, + 12.994419613205199 + ], + [ + 77.527116407183897, + 12.994397389408499 + ], + [ + 77.5272288819518, + 12.994869962016701 + ], + [ + 77.527311244073502, + 12.9951799191484 + ], + [ + 77.527497550454797, + 12.996112321379201 + ], + [ + 77.527536903649903, + 12.996313218269099 + ], + [ + 77.528085092936607, + 12.9961775543043 + ], + [ + 77.5282012165043, + 12.996744383741699 + ], + [ + 77.528361930584495, + 12.996710308966501 + ], + [ + 77.528360563845993, + 12.99671518207 + ], + [ + 77.528498067517006, + 12.996692556213301 + ], + [ + 77.528497067726406, + 12.9966873565116 + ], + [ + 77.528485216015, + 12.996625707651299 + ], + [ + 77.528366999156106, + 12.9960107998181 + ], + [ + 77.528250406418394, + 12.9954526576202 + ], + [ + 77.528174128785494, + 12.9950875053672 + ], + [ + 77.528139633629806, + 12.9949223705714 + ], + [ + 77.528082534737095, + 12.994563348046601 + ], + [ + 77.528990506490103, + 12.994186214332 + ], + [ + 77.529028490578, + 12.9942599202013 + ], + [ + 77.529137047693894, + 12.9947117248916 + ], + [ + 77.529144556757203, + 12.994751319726801 + ], + [ + 77.529158755634896, + 12.994883600764 + ], + [ + 77.529636904643098, + 12.9947172284043 + ], + [ + 77.529596847212005, + 12.9945439057441 + ], + [ + 77.529810455173504, + 12.9944503772024 + ], + [ + 77.530081819108304, + 12.9953660122353 + ], + [ + 77.530283671906801, + 12.996176791650299 + ], + [ + 77.530333918005496, + 12.9961619583525 + ], + [ + 77.530943600075702, + 12.9959950818915 + ], + [ + 77.531269727096799, + 12.9970999077937 + ], + [ + 77.531400973034707, + 12.997029209420001 + ], + [ + 77.532031698512796, + 12.9968461661928 + ], + [ + 77.532405565682097, + 12.9967366526639 + ], + [ + 77.532516326100506, + 12.9967078528557 + ], + [ + 77.532555210785603, + 12.9968336408156 + ], + [ + 77.532609246404405, + 12.996891743775899 + ], + [ + 77.5327970792016, + 12.9970537123877 + ], + [ + 77.533106449033994, + 12.9968659443158 + ], + [ + 77.533553489872901, + 12.996786545915599 + ], + [ + 77.533544878527593, + 12.9966718650068 + ], + [ + 77.533489360491799, + 12.9952373232094 + ], + [ + 77.534273410137303, + 12.995073686960501 + ], + [ + 77.534322329313795, + 12.995063398712301 + ], + [ + 77.534781704082206, + 12.9949667850975 + ], + [ + 77.535471644621595, + 12.994899788054999 + ], + [ + 77.536339321964405, + 12.994764719698701 + ], + [ + 77.536812816948498, + 12.9947186015828 + ], + [ + 77.5371484287013, + 12.9946799499828 + ], + [ + 77.537273001131595, + 12.994681572296599 + ], + [ + 77.5373062623962, + 12.994784836685399 + ], + [ + 77.537314313896701, + 12.994983819484 + ], + [ + 77.537323421256502, + 12.995393770479801 + ], + [ + 77.537519237150704, + 12.995393257913699 + ], + [ + 77.537630783397304, + 12.995375936961301 + ], + [ + 77.537637853517595, + 12.9953748388129 + ], + [ + 77.537713152257197, + 12.9953631465286 + ], + [ + 77.537787638628799, + 12.995351660023299 + ], + [ + 77.538066044857999, + 12.995308728131301 + ], + [ + 77.5384632785848, + 12.995313556089499 + ], + [ + 77.538253312563299, + 12.994627763066999 + ], + [ + 77.538152796566905, + 12.994149755250699 + ], + [ + 77.538111815933405, + 12.993955096767399 + ], + [ + 77.538125970144307, + 12.993765751574299 + ], + [ + 77.538126564045399, + 12.9937617289449 + ], + [ + 77.538153831268801, + 12.993540796128199 + ], + [ + 77.538189330318303, + 12.993276347939799 + ], + [ + 77.537717146811005, + 12.9931467554914 + ], + [ + 77.537381001599599, + 12.9930514353163 + ], + [ + 77.536721051200999, + 12.9928756109645 + ], + [ + 77.536193579083999, + 12.992764671195999 + ], + [ + 77.536190722311503, + 12.9927513566399 + ], + [ + 77.535926994678405, + 12.9919942496144 + ], + [ + 77.535567963137396, + 12.992047133962201 + ], + [ + 77.5355398637154, + 12.9920512733403 + ], + [ + 77.535219115259096, + 12.992098518317601 + ], + [ + 77.535213310466304, + 12.9920993736499 + ], + [ + 77.5351040027263, + 12.992115472592101 + ], + [ + 77.534780707622403, + 12.9921630924601 + ], + [ + 77.5343565416632, + 12.9922266153223 + ], + [ + 77.534248307283804, + 12.992242825417 + ], + [ + 77.534201542016902, + 12.9922499629181 + ], + [ + 77.534187877081195, + 12.9922520486591 + ], + [ + 77.534162940761902, + 12.9922558552715 + ], + [ + 77.534133037962107, + 12.992260419567399 + ], + [ + 77.533758223007595, + 12.992317630756601 + ], + [ + 77.533754721913994, + 12.992318165437 + ], + [ + 77.533402584720406, + 12.992371915042201 + ], + [ + 77.5332496491027, + 12.992394864313599 + ], + [ + 77.533223806304093, + 12.9923977762099 + ], + [ + 77.532540823376095, + 12.9924747381993 + ], + [ + 77.532525517563698, + 12.992476463109799 + ], + [ + 77.532318654245699, + 12.9924999431438 + ], + [ + 77.532316353604699, + 12.9925002040934 + ], + [ + 77.531910371628598, + 12.9925462840876 + ], + [ + 77.531906719127207, + 12.9925466982515 + ], + [ + 77.531905992120301, + 12.9925467803274 + ], + [ + 77.531886900487805, + 12.9925489477695 + ], + [ + 77.531882580803895, + 12.9925494380049 + ], + [ + 77.531858673257503, + 12.9925521516101 + ], + [ + 77.531654725296306, + 12.992575300456 + ], + [ + 77.531652227637494, + 12.992556125991401 + ], + [ + 77.531636731840294, + 12.992421319784301 + ], + [ + 77.531603601271797, + 12.9921330967733 + ], + [ + 77.531601165541304, + 12.992111981025699 + ], + [ + 77.531587789458996, + 12.992112906144399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "178", + "group": "beereshwara nagara", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "69", + "ward_name": "69 - Sharadhanagar", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಶಾರದನಗರ", + "dig_ward_n": "beereshwara nagara", + "Assembly": "176 - Bangalore South", + "Slno": "69" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.573132213228504, + 12.883213271641299 + ], + [ + 77.572061298633997, + 12.883332014399 + ], + [ + 77.572061828327307, + 12.883355484538599 + ], + [ + 77.571987598388304, + 12.883365947748301 + ], + [ + 77.571780193518507, + 12.883395184121101 + ], + [ + 77.570747999346807, + 12.8835406801693 + ], + [ + 77.570725367718296, + 12.883543760974 + ], + [ + 77.570309919497504, + 12.883600318992301 + ], + [ + 77.569936373017001, + 12.8837000656195 + ], + [ + 77.569933119328297, + 12.883700589045301 + ], + [ + 77.570153434197593, + 12.884288895206801 + ], + [ + 77.570195206635404, + 12.8844397965547 + ], + [ + 77.570231717734501, + 12.884577215798 + ], + [ + 77.570269287968301, + 12.8845728499636 + ], + [ + 77.5703216687387, + 12.884632095488399 + ], + [ + 77.570346595944898, + 12.8847506432576 + ], + [ + 77.570434866853304, + 12.8851704339425 + ], + [ + 77.570496610874798, + 12.885464070081801 + ], + [ + 77.570504126352304, + 12.885499810114499 + ], + [ + 77.570631301639196, + 12.8860238502798 + ], + [ + 77.5706399450074, + 12.8860897925508 + ], + [ + 77.570650934294505, + 12.8861736381226 + ], + [ + 77.570492599827006, + 12.886180760328401 + ], + [ + 77.569800459003801, + 12.8862753529076 + ], + [ + 77.569185607239206, + 12.8863411062858 + ], + [ + 77.569161382310398, + 12.886306499244601 + ], + [ + 77.568810697626603, + 12.8863307241734 + ], + [ + 77.568808480240705, + 12.8866132950509 + ], + [ + 77.568801068614306, + 12.886926767567701 + ], + [ + 77.568772163572802, + 12.8871905306258 + ], + [ + 77.568764875701405, + 12.887300157920301 + ], + [ + 77.568763264572894, + 12.887324399901599 + ], + [ + 77.568747122524897, + 12.8875672337997 + ], + [ + 77.568739865894599, + 12.887676401832699 + ], + [ + 77.568734587532902, + 12.888092017081901 + ], + [ + 77.568726163392, + 12.888239121840099 + ], + [ + 77.568735412913199, + 12.888834006871001 + ], + [ + 77.568915149021606, + 12.8888322422325 + ], + [ + 77.5690858985501, + 12.888859008820299 + ], + [ + 77.569662384780301, + 12.888941165760601 + ], + [ + 77.569469290953805, + 12.8900773730089 + ], + [ + 77.569342343725097, + 12.890535984860399 + ], + [ + 77.570041569380393, + 12.890641751372501 + ], + [ + 77.570143509225801, + 12.8906305103969 + ], + [ + 77.571222003800997, + 12.890740511356 + ], + [ + 77.5714999923985, + 12.890763804405299 + ], + [ + 77.571723840814997, + 12.890709410976401 + ], + [ + 77.5717605439864, + 12.8908242385794 + ], + [ + 77.571786952728701, + 12.890931134888801 + ], + [ + 77.571900678732106, + 12.8913119780365 + ], + [ + 77.571912335262098, + 12.8913565608949 + ], + [ + 77.572001268381996, + 12.8916967058772 + ], + [ + 77.572036740503094, + 12.891849971292499 + ], + [ + 77.572086867743806, + 12.892066562001199 + ], + [ + 77.572096885331604, + 12.8921154912041 + ], + [ + 77.572093816965193, + 12.8921862635774 + ], + [ + 77.5720901491337, + 12.8922204447575 + ], + [ + 77.572022730484505, + 12.892696292507001 + ], + [ + 77.572002502410896, + 12.892839067186699 + ], + [ + 77.5719616621993, + 12.893127318941699 + ], + [ + 77.571925132717993, + 12.8933827528333 + ], + [ + 77.571920203354097, + 12.893417218359801 + ], + [ + 77.571899616556607, + 12.893576173809601 + ], + [ + 77.571877476573405, + 12.8938938984584 + ], + [ + 77.571883599097305, + 12.8942203815357 + ], + [ + 77.571889214826101, + 12.8944940674688 + ], + [ + 77.572136121574204, + 12.894519277459899 + ], + [ + 77.572396388526997, + 12.8945458513086 + ], + [ + 77.572457081646107, + 12.8945758868208 + ], + [ + 77.572904316924493, + 12.894797209699201 + ], + [ + 77.572908840303796, + 12.894789259988301 + ], + [ + 77.572965894559502, + 12.894683672325201 + ], + [ + 77.572983757201499, + 12.8946292894354 + ], + [ + 77.573239440466395, + 12.894303789646701 + ], + [ + 77.573250225296505, + 12.894289002434901 + ], + [ + 77.573284352518499, + 12.8942491406185 + ], + [ + 77.573321405195898, + 12.8942702330553 + ], + [ + 77.573455293748495, + 12.8943161805441 + ], + [ + 77.5734877555563, + 12.8943273206804 + ], + [ + 77.573527075706707, + 12.8943450028253 + ], + [ + 77.573518683592098, + 12.8943656580345 + ], + [ + 77.573509109291706, + 12.8943892229114 + ], + [ + 77.573471220711994, + 12.894511561789001 + ], + [ + 77.573465627128002, + 12.8945274272441 + ], + [ + 77.573447510609796, + 12.894556967706199 + ], + [ + 77.573412542332306, + 12.8945708635665 + ], + [ + 77.573397014793699, + 12.8945721456658 + ], + [ + 77.573462118004699, + 12.894578280966201 + ], + [ + 77.573484586437104, + 12.8945803185118 + ], + [ + 77.573599459555098, + 12.8945826944499 + ], + [ + 77.574298627768002, + 12.894597152120699 + ], + [ + 77.574622445927005, + 12.894739954226401 + ], + [ + 77.574665706384707, + 12.8947590320646 + ], + [ + 77.574709928030202, + 12.8947785340886 + ], + [ + 77.574770309326496, + 12.8948051615429 + ], + [ + 77.575145230942297, + 12.8949704998806 + ], + [ + 77.575150298244793, + 12.8949727345271 + ], + [ + 77.575458646041795, + 12.895146980731299 + ], + [ + 77.575562531356894, + 12.895127257252099 + ], + [ + 77.575742487970899, + 12.8946196873151 + ], + [ + 77.575846309094402, + 12.894049824704 + ], + [ + 77.576852323397105, + 12.8942368360948 + ], + [ + 77.576923741642503, + 12.893939082172301 + ], + [ + 77.577583582560607, + 12.8941167316503 + ], + [ + 77.577971181421603, + 12.8926851537143 + ], + [ + 77.577205212243896, + 12.892524807756899 + ], + [ + 77.577328644024107, + 12.8916169497105 + ], + [ + 77.576519416045002, + 12.891456026969101 + ], + [ + 77.576573403054098, + 12.8911337481773 + ], + [ + 77.576630356557601, + 12.8906276208522 + ], + [ + 77.576689567330703, + 12.8900688614027 + ], + [ + 77.576766856389298, + 12.8896189698676 + ], + [ + 77.575652509663897, + 12.889526684424499 + ], + [ + 77.575713210267196, + 12.8892166194577 + ], + [ + 77.575733143563198, + 12.88906917514 + ], + [ + 77.5758355680899, + 12.888283789640299 + ], + [ + 77.575826528459402, + 12.8882575845865 + ], + [ + 77.576079329838194, + 12.8878724678571 + ], + [ + 77.576425400249803, + 12.887157255673101 + ], + [ + 77.576494614332205, + 12.886834256622301 + ], + [ + 77.576435397724197, + 12.8864870837523 + ], + [ + 77.576504844062896, + 12.8864161223918 + ], + [ + 77.576555140145302, + 12.886331007285699 + ], + [ + 77.576166352356196, + 12.886339137997901 + ], + [ + 77.576029585553798, + 12.886260167510599 + ], + [ + 77.575908985871905, + 12.8861896431752 + ], + [ + 77.575821973821306, + 12.8859724959303 + ], + [ + 77.575716179363795, + 12.885777047371301 + ], + [ + 77.575614343773395, + 12.8855399675827 + ], + [ + 77.575546819638504, + 12.885369958380799 + ], + [ + 77.575516052556495, + 12.885372382464899 + ], + [ + 77.575480171171804, + 12.8851396730805 + ], + [ + 77.575456959863502, + 12.8849546460408 + ], + [ + 77.575448608374501, + 12.8847336174831 + ], + [ + 77.575457864351705, + 12.884498989466 + ], + [ + 77.575463975337399, + 12.8843818004477 + ], + [ + 77.575506095824295, + 12.884160127070899 + ], + [ + 77.575549523498694, + 12.883931565568201 + ], + [ + 77.575578160320006, + 12.8835348781443 + ], + [ + 77.574349459832405, + 12.8835643019126 + ], + [ + 77.574324421163993, + 12.883067575276099 + ], + [ + 77.573627338472406, + 12.8831394487962 + ], + [ + 77.573132213228504, + 12.883213271641299 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "189", + "group": "Lakshmi Devi Nagar", + "Corporatio": "West", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "5", + "ward_id": "16", + "ward_name": "16 - Lakshmi Devi Nagar", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಲಕ್ಷ್ಮಿ ದೇವಿ ನಗರ", + "dig_ward_n": "Lakshmi Devi Nagar", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "16" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.528836677512402, + 13.0118422915269 + ], + [ + 77.528675328509095, + 13.0116818266055 + ], + [ + 77.528384953127301, + 13.0113930403814 + ], + [ + 77.528248544737295, + 13.0112573789821 + ], + [ + 77.528182702742697, + 13.011198971498899 + ], + [ + 77.528164811595502, + 13.0111831001841 + ], + [ + 77.527792921190795, + 13.0108531990361 + ], + [ + 77.527782786048903, + 13.0108442097573 + ], + [ + 77.527728923089498, + 13.010796426787699 + ], + [ + 77.527683142433204, + 13.0107558145216 + ], + [ + 77.527635689288999, + 13.0106760935571 + ], + [ + 77.527524726284696, + 13.010750582234699 + ], + [ + 77.527465090344705, + 13.010832476127501 + ], + [ + 77.5274287041929, + 13.0109356009912 + ], + [ + 77.527401977311698, + 13.011082676143699 + ], + [ + 77.527389042687105, + 13.0111132944717 + ], + [ + 77.527374277629306, + 13.011133766540601 + ], + [ + 77.527329257855897, + 13.011180508333201 + ], + [ + 77.527252385397603, + 13.0112094909917 + ], + [ + 77.527198244171302, + 13.0112653564002 + ], + [ + 77.527098148233407, + 13.0113771070114 + ], + [ + 77.526922042752304, + 13.011570711792199 + ], + [ + 77.526869958506595, + 13.011637442828 + ], + [ + 77.526762699305607, + 13.0116855827844 + ], + [ + 77.526423185929204, + 13.0116484221163 + ], + [ + 77.526348760279802, + 13.011966536185501 + ], + [ + 77.525919394831305, + 13.0120901934347 + ], + [ + 77.525973879669905, + 13.013042791729299 + ], + [ + 77.526226248005102, + 13.013484772411401 + ], + [ + 77.526364789923207, + 13.014273659862001 + ], + [ + 77.526326906016493, + 13.0147319130048 + ], + [ + 77.526372512290905, + 13.0150967632004 + ], + [ + 77.526215424012307, + 13.015230203781099 + ], + [ + 77.526154078077994, + 13.015459750860501 + ], + [ + 77.526220491376094, + 13.015508064231 + ], + [ + 77.526331351227398, + 13.015620649277 + ], + [ + 77.5265445509242, + 13.015789606138799 + ], + [ + 77.526586186132306, + 13.0168711851003 + ], + [ + 77.526297346394202, + 13.016899900162 + ], + [ + 77.525332858145802, + 13.0170181386513 + ], + [ + 77.525368329692597, + 13.017410014787201 + ], + [ + 77.524284255795294, + 13.017997029915801 + ], + [ + 77.524138177225694, + 13.018016380877899 + ], + [ + 77.523874092373902, + 13.018159052436999 + ], + [ + 77.522762311733899, + 13.018872668636 + ], + [ + 77.522761258371602, + 13.0188781124019 + ], + [ + 77.5228955723002, + 13.018968736772599 + ], + [ + 77.523017667113905, + 13.019035579393799 + ], + [ + 77.523029343550306, + 13.019041971686599 + ], + [ + 77.523166581284499, + 13.0191163021222 + ], + [ + 77.523743756036097, + 13.019470944857799 + ], + [ + 77.523852122570503, + 13.019537650522899 + ], + [ + 77.524242657444702, + 13.019773269027199 + ], + [ + 77.524280326685997, + 13.0197966184493 + ], + [ + 77.524379537370805, + 13.019869059735599 + ], + [ + 77.5250560636199, + 13.0203096908751 + ], + [ + 77.525325607929801, + 13.020498328013201 + ], + [ + 77.5253918850986, + 13.0205447108935 + ], + [ + 77.525533315270096, + 13.0206348097775 + ], + [ + 77.525951260736093, + 13.0209040383483 + ], + [ + 77.526177911180199, + 13.021049773462799 + ], + [ + 77.526507159955301, + 13.0212611395051 + ], + [ + 77.526601498443597, + 13.0213641194975 + ], + [ + 77.526785640961293, + 13.0215204324223 + ], + [ + 77.527226816020402, + 13.0213770851964 + ], + [ + 77.527272966460501, + 13.021362090140499 + ], + [ + 77.527935216554297, + 13.021148655566 + ], + [ + 77.5278332197569, + 13.0211177451108 + ], + [ + 77.527696967788003, + 13.021060496384401 + ], + [ + 77.527413586591905, + 13.020892757615799 + ], + [ + 77.527398129435795, + 13.020773107777501 + ], + [ + 77.527434196133498, + 13.020659182811899 + ], + [ + 77.527431368916595, + 13.0206539756491 + ], + [ + 77.527907290109795, + 13.020292500243899 + ], + [ + 77.527909560459605, + 13.0202882281583 + ], + [ + 77.527952297108001, + 13.0202309623379 + ], + [ + 77.528031300350506, + 13.0200729558529 + ], + [ + 77.528073664408097, + 13.019898919724399 + ], + [ + 77.528132058109094, + 13.019825641354499 + ], + [ + 77.528378618297296, + 13.019812955764399 + ], + [ + 77.528614664873203, + 13.019784422271499 + ], + [ + 77.528686798268595, + 13.019549702493 + ], + [ + 77.528658173905299, + 13.0193813912372 + ], + [ + 77.529293847537005, + 13.019452162409401 + ], + [ + 77.529282023688097, + 13.019592359475199 + ], + [ + 77.530113071355601, + 13.019692017630501 + ], + [ + 77.530726222378703, + 13.019766338966599 + ], + [ + 77.530650211921298, + 13.0193440586477 + ], + [ + 77.531992432701102, + 13.0192453220074 + ], + [ + 77.531982398674899, + 13.019191105100401 + ], + [ + 77.531978152823996, + 13.0191681622502 + ], + [ + 77.531887332972303, + 13.0187320201176 + ], + [ + 77.531887083065499, + 13.018730820940799 + ], + [ + 77.531851756700604, + 13.0185611768302 + ], + [ + 77.531841328003097, + 13.018511093530201 + ], + [ + 77.531834296172605, + 13.0185001561136 + ], + [ + 77.531689558962498, + 13.018275012332399 + ], + [ + 77.531689122690395, + 13.018274333568201 + ], + [ + 77.531671056781803, + 13.0182462322286 + ], + [ + 77.531651207351402, + 13.0181645525339 + ], + [ + 77.531650543837401, + 13.018161821493299 + ], + [ + 77.531596166961293, + 13.0179380447901 + ], + [ + 77.531532958841396, + 13.017677921777601 + ], + [ + 77.531532218414299, + 13.017674875271901 + ], + [ + 77.531525148764203, + 13.0176457856459 + ], + [ + 77.531472787722706, + 13.017430304744501 + ], + [ + 77.531471208760294, + 13.017423805224199 + ], + [ + 77.531434348768101, + 13.017272113474901 + ], + [ + 77.531417003494695, + 13.017200733256701 + ], + [ + 77.531393994453694, + 13.017106046350399 + ], + [ + 77.531325819456001, + 13.0168495367987 + ], + [ + 77.531325387374906, + 13.0168479093463 + ], + [ + 77.531298000761595, + 13.016744868286199 + ], + [ + 77.531297910699493, + 13.0167445285564 + ], + [ + 77.531284807058697, + 13.0166952266155 + ], + [ + 77.531267106891605, + 13.016628629204201 + ], + [ + 77.531258638090804, + 13.0165967641995 + ], + [ + 77.5312578621227, + 13.0165938463317 + ], + [ + 77.531218254256899, + 13.0164448185638 + ], + [ + 77.531211972609896, + 13.016421183615799 + ], + [ + 77.531200587667499, + 13.016378347299099 + ], + [ + 77.531166718366407, + 13.0162509133964 + ], + [ + 77.531160529640502, + 13.0162276262784 + ], + [ + 77.531097800584405, + 13.015991606562199 + ], + [ + 77.5310682721056, + 13.0158805029797 + ], + [ + 77.531046676235107, + 13.0158185169378 + ], + [ + 77.530977001049493, + 13.015618529491499 + ], + [ + 77.530949597004593, + 13.0155398723322 + ], + [ + 77.530863080093894, + 13.015291545381899 + ], + [ + 77.530849503850703, + 13.0152525764996 + ], + [ + 77.530720277008101, + 13.0148816585035 + ], + [ + 77.530710601417994, + 13.0148538853165 + ], + [ + 77.530647128960496, + 13.014671701508099 + ], + [ + 77.530612165462202, + 13.014595167125201 + ], + [ + 77.530610130013002, + 13.0145907111849 + ], + [ + 77.530610107397294, + 13.0145906617146 + ], + [ + 77.530602956951199, + 13.014575009262 + ], + [ + 77.530482960296197, + 13.014310180693901 + ], + [ + 77.530468334444393, + 13.014277902291999 + ], + [ + 77.530395605782502, + 13.0141173908506 + ], + [ + 77.530119173156194, + 13.0136359051056 + ], + [ + 77.530073866227795, + 13.0135569887646 + ], + [ + 77.530060690529794, + 13.0135340398942 + ], + [ + 77.529981369991205, + 13.0133958803435 + ], + [ + 77.529975861281898, + 13.013386284990901 + ], + [ + 77.529867828921397, + 13.0132354641436 + ], + [ + 77.529862251978102, + 13.0132276791102 + ], + [ + 77.529770784226798, + 13.0130999827291 + ], + [ + 77.529722338568305, + 13.0130323496697 + ], + [ + 77.529720129101094, + 13.013029265080499 + ], + [ + 77.529549822735206, + 13.0127915048991 + ], + [ + 77.529528406653398, + 13.012761606432401 + ], + [ + 77.529526393986401, + 13.0127589382294 + ], + [ + 77.529523577201303, + 13.0127552054464 + ], + [ + 77.529461028709903, + 13.012672297510401 + ], + [ + 77.529460972680397, + 13.012672223972 + ], + [ + 77.529413748469196, + 13.012609628425601 + ], + [ + 77.529358286858894, + 13.0125361143158 + ], + [ + 77.5292797427728, + 13.0124320051012 + ], + [ + 77.529037493684697, + 13.012110246254 + ], + [ + 77.529000771377397, + 13.012061246657501 + ], + [ + 77.528836677512402, + 13.0118422915269 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "179", + "group": "ARAMANE NAGARA", + "Corporatio": "West", + "ac_no": "157", + "ac": "Malleshwaram", + "corporat_1": "5", + "ward_id": "8", + "ward_name": "8 - Aramane Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಲ್ಲೇಶ್ವರಂ", + "ward_name_": "ಅರಮನೆ ನಗರ", + "dig_ward_n": "ARAMANE NAGARA", + "Assembly": "157 - Malleshwaram", + "Slno": "8" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.584150252834704, + 13.001224279203001 + ], + [ + 77.584125124703107, + 13.0023664835076 + ], + [ + 77.584108724385302, + 13.003065373792699 + ], + [ + 77.583620314064504, + 13.0036119908034 + ], + [ + 77.583276781897197, + 13.0038548929315 + ], + [ + 77.583190830303494, + 13.003903623667499 + ], + [ + 77.581600309061699, + 13.0048053573478 + ], + [ + 77.581043013522802, + 13.005122892273199 + ], + [ + 77.580140823184195, + 13.005636937041199 + ], + [ + 77.578829658979799, + 13.0063435642329 + ], + [ + 77.5787414032513, + 13.006386787622199 + ], + [ + 77.578891765280503, + 13.0066283101142 + ], + [ + 77.578867576370897, + 13.0066464784705 + ], + [ + 77.578558293050094, + 13.0070887821031 + ], + [ + 77.578446455979602, + 13.007176544664 + ], + [ + 77.578396579200401, + 13.0072191435262 + ], + [ + 77.578219919383699, + 13.007370025148701 + ], + [ + 77.577989750111499, + 13.0075067701279 + ], + [ + 77.577559877316304, + 13.007779957805599 + ], + [ + 77.576989571510296, + 13.008027648095499 + ], + [ + 77.576347744861806, + 13.008431421975001 + ], + [ + 77.5758879941461, + 13.0090574833368 + ], + [ + 77.575670083984704, + 13.0093680144691 + ], + [ + 77.575482591832198, + 13.0096351970566 + ], + [ + 77.575475055477099, + 13.0097906463015 + ], + [ + 77.575388524183495, + 13.011443847977599 + ], + [ + 77.575362984086496, + 13.011626367031001 + ], + [ + 77.575312857329095, + 13.0117091279427 + ], + [ + 77.575126291077098, + 13.012017152480899 + ], + [ + 77.574931698524495, + 13.0123537359457 + ], + [ + 77.574807607804502, + 13.0124356429264 + ], + [ + 77.574728882618302, + 13.012484232136099 + ], + [ + 77.574162303050599, + 13.013198920736301 + ], + [ + 77.574046946246696, + 13.013358113125699 + ], + [ + 77.573879576713907, + 13.0138869837772 + ], + [ + 77.573707142882697, + 13.014652132081 + ], + [ + 77.572763569175095, + 13.0146720979901 + ], + [ + 77.572733216826194, + 13.01466954426 + ], + [ + 77.572660362425594, + 13.0161642815858 + ], + [ + 77.572578218818407, + 13.0177714275088 + ], + [ + 77.572517746778104, + 13.018998288539599 + ], + [ + 77.572460377702697, + 13.020171335726801 + ], + [ + 77.572428172161906, + 13.0209085502135 + ], + [ + 77.572413052834605, + 13.0212546442096 + ], + [ + 77.571507770995694, + 13.021291914008801 + ], + [ + 77.571303984157296, + 13.0212910789239 + ], + [ + 77.571230089833904, + 13.0226490990832 + ], + [ + 77.571227861718199, + 13.022669438802801 + ], + [ + 77.571375282669095, + 13.0227193177593 + ], + [ + 77.571518325105899, + 13.023639865054101 + ], + [ + 77.571776724346606, + 13.025411745561501 + ], + [ + 77.57158061778, + 13.025549020158101 + ], + [ + 77.571615224821201, + 13.0256574555537 + ], + [ + 77.571947452416296, + 13.0256389984651 + ], + [ + 77.571843631292893, + 13.026259618069901 + ], + [ + 77.571820559932107, + 13.026656445475201 + ], + [ + 77.571702895992104, + 13.0271594011401 + ], + [ + 77.571497560881298, + 13.027593142722599 + ], + [ + 77.5714938398268, + 13.0276039053731 + ], + [ + 77.571331447083693, + 13.028169926741899 + ], + [ + 77.571182135351194, + 13.0284190569252 + ], + [ + 77.571126688756806, + 13.028478506192201 + ], + [ + 77.571056321106397, + 13.028553488114801 + ], + [ + 77.5707535094962, + 13.0288701425414 + ], + [ + 77.570672759733498, + 13.0289589672803 + ], + [ + 77.570109818530696, + 13.029535751299701 + ], + [ + 77.569949472573299, + 13.0297087865055 + ], + [ + 77.569564180848403, + 13.030052549781001 + ], + [ + 77.567924037529593, + 13.031470516219301 + ], + [ + 77.567920346393194, + 13.0314737456046 + ], + [ + 77.567055170364299, + 13.032219527341599 + ], + [ + 77.566780621171006, + 13.032471581957999 + ], + [ + 77.566735632017497, + 13.0325073425672 + ], + [ + 77.566502706143098, + 13.032531634918 + ], + [ + 77.566126548093095, + 13.0325621370491 + ], + [ + 77.566200376447597, + 13.0329589644544 + ], + [ + 77.565836626413898, + 13.0332287481571 + ], + [ + 77.565189200579198, + 13.033284034523501 + ], + [ + 77.564090703390605, + 13.0334054213701 + ], + [ + 77.564193282141602, + 13.034153472746301 + ], + [ + 77.564263701358499, + 13.034643468359 + ], + [ + 77.564268775524894, + 13.034680472224499 + ], + [ + 77.564198587656804, + 13.0347386050907 + ], + [ + 77.563809787232302, + 13.035045642325001 + ], + [ + 77.563633496422, + 13.035197596536401 + ], + [ + 77.563186714516704, + 13.035624504384099 + ], + [ + 77.563244398749305, + 13.035898846233399 + ], + [ + 77.563328450286093, + 13.036298582559199 + ], + [ + 77.563343980656398, + 13.036352273566299 + ], + [ + 77.563344675699497, + 13.036352209767101 + ], + [ + 77.563373579669104, + 13.036527793860699 + ], + [ + 77.563443805537403, + 13.036954388322201 + ], + [ + 77.563422659647699, + 13.036972524882099 + ], + [ + 77.561782776718005, + 13.0369897043938 + ], + [ + 77.561766893923604, + 13.0372622243101 + ], + [ + 77.561763696777206, + 13.037262255948001 + ], + [ + 77.561746688855393, + 13.03733193765 + ], + [ + 77.561702872885306, + 13.037511457995301 + ], + [ + 77.561444074544795, + 13.038470652615899 + ], + [ + 77.560925997526198, + 13.038326506587 + ], + [ + 77.560619414276402, + 13.039312817211201 + ], + [ + 77.560769240046497, + 13.0395385183302 + ], + [ + 77.560847654922398, + 13.0396955088022 + ], + [ + 77.560925774683398, + 13.039823816637201 + ], + [ + 77.561025576988897, + 13.039926811085699 + ], + [ + 77.561148290101002, + 13.040006098955899 + ], + [ + 77.561026184211897, + 13.040069459327601 + ], + [ + 77.561055862058296, + 13.0401011804222 + ], + [ + 77.561110100140198, + 13.040197519099801 + ], + [ + 77.561120706720104, + 13.0402163586329 + ], + [ + 77.561339260865793, + 13.0406045567081 + ], + [ + 77.561344265684099, + 13.040613445932101 + ], + [ + 77.561529637757999, + 13.040942705664801 + ], + [ + 77.561549536971796, + 13.040978051412001 + ], + [ + 77.561562867573599, + 13.0410017299447 + ], + [ + 77.5615680066322, + 13.0410108572475 + ], + [ + 77.561804877172307, + 13.041431046186601 + ], + [ + 77.561816866277795, + 13.0414523203396 + ], + [ + 77.562073992494902, + 13.041908448222101 + ], + [ + 77.562088157308395, + 13.0419335739102 + ], + [ + 77.562111822016703, + 13.041975555196601 + ], + [ + 77.562115562890099, + 13.041971318014699 + ], + [ + 77.562160763077202, + 13.041920123643999 + ], + [ + 77.562196910279098, + 13.0418791827273 + ], + [ + 77.562245603551901, + 13.0418240318812 + ], + [ + 77.562661338079096, + 13.041283782246399 + ], + [ + 77.562802552855899, + 13.041100272554999 + ], + [ + 77.563030779159703, + 13.0407898977454 + ], + [ + 77.563309898888406, + 13.040410308644301 + ], + [ + 77.563376430415701, + 13.0403198295439 + ], + [ + 77.563645906551898, + 13.0399533535817 + ], + [ + 77.563653971612894, + 13.039942388021901 + ], + [ + 77.563658166342293, + 13.039936683645101 + ], + [ + 77.563716186408499, + 13.0398577788878 + ], + [ + 77.563910078609695, + 13.0395940934682 + ], + [ + 77.563912988136707, + 13.039590828487899 + ], + [ + 77.563957132147095, + 13.0395413013261 + ], + [ + 77.564114396131302, + 13.0393648544412 + ], + [ + 77.564158878011, + 13.0393149471725 + ], + [ + 77.564284746251403, + 13.0391581550188 + ], + [ + 77.564286816930604, + 13.039155575934 + ], + [ + 77.564349923466196, + 13.039075898850101 + ], + [ + 77.564449775583796, + 13.038951190231501 + ], + [ + 77.564655259194694, + 13.038694554018599 + ], + [ + 77.564870175447993, + 13.0384247784322 + ], + [ + 77.565024147972196, + 13.038221104945 + ], + [ + 77.565082669572604, + 13.038143731817 + ], + [ + 77.565271292576895, + 13.0378934139931 + ], + [ + 77.565409699715801, + 13.037709547369699 + ], + [ + 77.565440028078498, + 13.0376692673594 + ], + [ + 77.565479273075695, + 13.0376214473283 + ], + [ + 77.565798508568804, + 13.037231267376299 + ], + [ + 77.565986024893505, + 13.0370020792621 + ], + [ + 77.566019627598905, + 13.036965608224699 + ], + [ + 77.566328931983406, + 13.036631377551799 + ], + [ + 77.5663368731025, + 13.036622800086599 + ], + [ + 77.566418011455497, + 13.0365351860479 + ], + [ + 77.566642162971704, + 13.036293143385899 + ], + [ + 77.567103071259297, + 13.035808982401599 + ], + [ + 77.567104523404296, + 13.035807457436899 + ], + [ + 77.567188484413407, + 13.035719293065201 + ], + [ + 77.567236967652804, + 13.035668383629201 + ], + [ + 77.567261738676905, + 13.035642441218 + ], + [ + 77.567349090324001, + 13.0355509528325 + ], + [ + 77.567543145841299, + 13.0353477094725 + ], + [ + 77.567553744102199, + 13.0353366075989 + ], + [ + 77.5675776790209, + 13.0353115308324 + ], + [ + 77.567791626766706, + 13.0350720578578 + ], + [ + 77.5678657610122, + 13.0349890790245 + ], + [ + 77.567870321187897, + 13.034984516557101 + ], + [ + 77.567984962035595, + 13.0348389073626 + ], + [ + 77.568075533894202, + 13.034723869229399 + ], + [ + 77.568295447523496, + 13.0344452374126 + ], + [ + 77.568321682753904, + 13.034411996818299 + ], + [ + 77.568538417682205, + 13.0341363010001 + ], + [ + 77.568544949758106, + 13.034127991339201 + ], + [ + 77.568563270878897, + 13.0341046867557 + ], + [ + 77.568572633636293, + 13.0340910195763 + ], + [ + 77.568627882595706, + 13.0340102986559 + ], + [ + 77.5687680616888, + 13.0338055221036 + ], + [ + 77.569034171080602, + 13.033416782935101 + ], + [ + 77.569121649557204, + 13.033309862049 + ], + [ + 77.569379777694706, + 13.032994362144301 + ], + [ + 77.569476640309901, + 13.032875970965801 + ], + [ + 77.569815218785706, + 13.032327706162301 + ], + [ + 77.569852750920703, + 13.032266929245001 + ], + [ + 77.569989318144906, + 13.031995669207699 + ], + [ + 77.570047748292097, + 13.031853925768001 + ], + [ + 77.570075156205803, + 13.0317871402029 + ], + [ + 77.570110104341396, + 13.031701979587 + ], + [ + 77.570167398185205, + 13.0315210459556 + ], + [ + 77.570181491863707, + 13.031476538714999 + ], + [ + 77.5702625005665, + 13.0312185758455 + ], + [ + 77.570297465787306, + 13.0311072331686 + ], + [ + 77.570329262640001, + 13.031007538454899 + ], + [ + 77.570390048655895, + 13.030842241352699 + ], + [ + 77.570451874263497, + 13.030674115177399 + ], + [ + 77.570535575050499, + 13.0304465039824 + ], + [ + 77.570549810489894, + 13.0304077936549 + ], + [ + 77.5706525998296, + 13.030128273391099 + ], + [ + 77.570681048212194, + 13.0300509107783 + ], + [ + 77.570894460106004, + 13.0294694574792 + ], + [ + 77.570918897537297, + 13.0294004969751 + ], + [ + 77.571079241285105, + 13.028948029643299 + ], + [ + 77.571112131492299, + 13.0288552128502 + ], + [ + 77.571127183842094, + 13.0288127297492 + ], + [ + 77.571149005047801, + 13.028751156493 + ], + [ + 77.571166180244802, + 13.028702684153499 + ], + [ + 77.571193018780207, + 13.028626940227699 + ], + [ + 77.571199011264596, + 13.0286100296639 + ], + [ + 77.571233938207797, + 13.028511456671501 + ], + [ + 77.571248074608306, + 13.028471559290701 + ], + [ + 77.571251475968495, + 13.028461958934701 + ], + [ + 77.571305087425003, + 13.028459847546101 + ], + [ + 77.571443169136003, + 13.0284544104403 + ], + [ + 77.571530532060805, + 13.0284377319666 + ], + [ + 77.5717554332861, + 13.028396730536 + ], + [ + 77.571839652119706, + 13.0283813769143 + ], + [ + 77.572008771221803, + 13.0283505444767 + ], + [ + 77.5720587627806, + 13.028338304209999 + ], + [ + 77.572408799099094, + 13.028252599465899 + ], + [ + 77.572511380394701, + 13.028227483154501 + ], + [ + 77.572771134441496, + 13.028163883822399 + ], + [ + 77.572975889638499, + 13.0281137498083 + ], + [ + 77.573110664841906, + 13.028080750767399 + ], + [ + 77.573455772920596, + 13.0279962518996 + ], + [ + 77.573463235349394, + 13.0279939191523 + ], + [ + 77.573475964034699, + 13.0279915304735 + ], + [ + 77.573781720077307, + 13.0279341605009 + ], + [ + 77.574022488959699, + 13.0278889837739 + ], + [ + 77.574181790119496, + 13.027859282018699 + ], + [ + 77.574559907142799, + 13.027788782404601 + ], + [ + 77.574627156087004, + 13.0277767658774 + ], + [ + 77.574653603527594, + 13.027772040006401 + ], + [ + 77.575192863293296, + 13.0276763336144 + ], + [ + 77.575219812280693, + 13.0276715503035 + ], + [ + 77.575763107506603, + 13.0275751603324 + ], + [ + 77.5758199356994, + 13.0275650766014 + ], + [ + 77.575830288890202, + 13.027563844352599 + ], + [ + 77.575886614732696, + 13.027553120544299 + ], + [ + 77.575889747073504, + 13.027552540104301 + ], + [ + 77.576202591904803, + 13.0274945558075 + ], + [ + 77.5764340758071, + 13.027451651134101 + ], + [ + 77.576463839428996, + 13.027446134119799 + ], + [ + 77.576717176899194, + 13.027399180359 + ], + [ + 77.576935109961099, + 13.027367649782899 + ], + [ + 77.576958107914606, + 13.027364033101399 + ], + [ + 77.576985134787904, + 13.027360108017501 + ], + [ + 77.576985835852398, + 13.0273600061821 + ], + [ + 77.577298230008907, + 13.0273146371861 + ], + [ + 77.577682031273199, + 13.0272588959131 + ], + [ + 77.577684358035896, + 13.0272585583633 + ], + [ + 77.577687841469697, + 13.027250593285901 + ], + [ + 77.577690042756103, + 13.027250061841199 + ], + [ + 77.577707262458006, + 13.027245908126799 + ], + [ + 77.577719451419597, + 13.0271994854263 + ], + [ + 77.577723604738495, + 13.0269811561847 + ], + [ + 77.577724672987301, + 13.026925012879801 + ], + [ + 77.577726590611505, + 13.0268877268051 + ], + [ + 77.577732707095095, + 13.026886761599499 + ], + [ + 77.577780060400997, + 13.0268792896485 + ], + [ + 77.578121620228401, + 13.026847291429 + ], + [ + 77.578200048206895, + 13.0268399158045 + ], + [ + 77.578286864827405, + 13.0268317501796 + ], + [ + 77.578486023954198, + 13.026813020016199 + ], + [ + 77.578506694134305, + 13.026811076062801 + ], + [ + 77.578623410860899, + 13.026792974812199 + ], + [ + 77.578729786130296, + 13.026777235054199 + ], + [ + 77.578945392333097, + 13.026743468382699 + ], + [ + 77.579023587301606, + 13.0267313969422 + ], + [ + 77.579103509725897, + 13.0267193082819 + ], + [ + 77.579241990635495, + 13.02668969708 + ], + [ + 77.579302748256296, + 13.0266769526388 + ], + [ + 77.579326102282707, + 13.0266720538492 + ], + [ + 77.579499059575497, + 13.026635773369801 + ], + [ + 77.579999357079004, + 13.026530829408101 + ], + [ + 77.580076773447701, + 13.0265159277156 + ], + [ + 77.580090022700006, + 13.026513377255601 + ], + [ + 77.5801045336095, + 13.0265105838527 + ], + [ + 77.580129153210393, + 13.026486078568899 + ], + [ + 77.580161431847003, + 13.026453951468399 + ], + [ + 77.580221253008602, + 13.026394407086 + ], + [ + 77.580234441453598, + 13.026380384432199 + ], + [ + 77.580256337135296, + 13.0263571042317 + ], + [ + 77.580267522389306, + 13.026345211965101 + ], + [ + 77.580286976352099, + 13.0263224674288 + ], + [ + 77.5803730593491, + 13.026221824140601 + ], + [ + 77.580378223028504, + 13.026215786513401 + ], + [ + 77.580467237383203, + 13.026111716170499 + ], + [ + 77.580610915051196, + 13.025970823680399 + ], + [ + 77.580633493255306, + 13.025948683127501 + ], + [ + 77.580638263742102, + 13.0259440045742 + ], + [ + 77.5806570786268, + 13.025925749258199 + ], + [ + 77.580839501614307, + 13.0258019676741 + ], + [ + 77.580950672413906, + 13.0257489124188 + ], + [ + 77.581000964696798, + 13.0257082833078 + ], + [ + 77.581015777606396, + 13.025696316033301 + ], + [ + 77.581022044393805, + 13.0256742042413 + ], + [ + 77.581056892075395, + 13.025551238566701 + ], + [ + 77.581088966369606, + 13.0254380603859 + ], + [ + 77.581093230412804, + 13.025423011765399 + ], + [ + 77.581096334465798, + 13.025412059153901 + ], + [ + 77.581140522861006, + 13.0253416023273 + ], + [ + 77.581155261052402, + 13.0253188704009 + ], + [ + 77.581279147892801, + 13.0252148698673 + ], + [ + 77.581432097433293, + 13.0251365536362 + ], + [ + 77.581696930633797, + 13.025018726333901 + ], + [ + 77.581847175436096, + 13.024957376346 + ], + [ + 77.581972185995795, + 13.024921478293299 + ], + [ + 77.582144593379098, + 13.0248719736399 + ], + [ + 77.582166367610299, + 13.0248632290761 + ], + [ + 77.582320941668797, + 13.0248011527044 + ], + [ + 77.5823493279823, + 13.0247897529712 + ], + [ + 77.582576534992597, + 13.0246531018176 + ], + [ + 77.582609721611107, + 13.0246324436514 + ], + [ + 77.582616539076795, + 13.0246280906864 + ], + [ + 77.582737295546096, + 13.024550991811299 + ], + [ + 77.583336060524701, + 13.0239950751248 + ], + [ + 77.5833583903093, + 13.023974343536601 + ], + [ + 77.5836852727641, + 13.023670851839499 + ], + [ + 77.583948913710401, + 13.023464564455001 + ], + [ + 77.584291957733697, + 13.023196146066701 + ], + [ + 77.584497227540894, + 13.023035531005901 + ], + [ + 77.584579273229096, + 13.022971332909499 + ], + [ + 77.584611476209105, + 13.022946135552999 + ], + [ + 77.584623813041105, + 13.0229364830412 + ], + [ + 77.584655236659302, + 13.022912454372101 + ], + [ + 77.584598890189895, + 13.0227128370757 + ], + [ + 77.584595285930206, + 13.022700069498899 + ], + [ + 77.584590072718996, + 13.022681598302499 + ], + [ + 77.5845685577588, + 13.022606149038801 + ], + [ + 77.584450351935502, + 13.0221907706525 + ], + [ + 77.584449026583997, + 13.0221861139977 + ], + [ + 77.584383622795102, + 13.0219557146195 + ], + [ + 77.584217130189799, + 13.0213691967403 + ], + [ + 77.584210009393402, + 13.021344114211299 + ], + [ + 77.5842057594853, + 13.0213291441518 + ], + [ + 77.584204572736098, + 13.021325768091099 + ], + [ + 77.584165246082904, + 13.0211985495409 + ], + [ + 77.584112913286802, + 13.021023453742 + ], + [ + 77.584073374798393, + 13.0208911671737 + ], + [ + 77.584025061955103, + 13.020674823610401 + ], + [ + 77.583971760128193, + 13.020390348149499 + ], + [ + 77.583971416809206, + 13.020388516688399 + ], + [ + 77.583961363840501, + 13.0202519718188 + ], + [ + 77.583961289299197, + 13.0202510031723 + ], + [ + 77.583918104676599, + 13.0196900125067 + ], + [ + 77.583922980380507, + 13.0195050688466 + ], + [ + 77.583923137187099, + 13.0194991316912 + ], + [ + 77.583927735033896, + 13.019324710440401 + ], + [ + 77.5839284370266, + 13.0192980420625 + ], + [ + 77.583933556279504, + 13.0191252092791 + ], + [ + 77.583933879330701, + 13.019097449710801 + ], + [ + 77.583937486657405, + 13.018787145788201 + ], + [ + 77.583938261467793, + 13.018720489582 + ], + [ + 77.583944909851098, + 13.018148685708001 + ], + [ + 77.583946950034402, + 13.017973191362399 + ], + [ + 77.583956410596898, + 13.017600806201299 + ], + [ + 77.583962640118301, + 13.0173556140599 + ], + [ + 77.5839649451881, + 13.0172649418418 + ], + [ + 77.583974301180007, + 13.0168899205778 + ], + [ + 77.583972721105695, + 13.016611650064601 + ], + [ + 77.583972354509299, + 13.0165470451934 + ], + [ + 77.583972141415103, + 13.0165095130473 + ], + [ + 77.583971361620598, + 13.0163720734403 + ], + [ + 77.583971187503195, + 13.016341411557701 + ], + [ + 77.583970471051003, + 13.016215146856499 + ], + [ + 77.583969553119303, + 13.0160535344062 + ], + [ + 77.583968723770894, + 13.015907487323201 + ], + [ + 77.583944597623997, + 13.0148021443921 + ], + [ + 77.583972512760596, + 13.0145146331469 + ], + [ + 77.583972694243599, + 13.01451276393 + ], + [ + 77.583987385173401, + 13.014512566935 + ], + [ + 77.583990068741599, + 13.0145125320609 + ], + [ + 77.583994993660198, + 13.0145124658161 + ], + [ + 77.584039967448007, + 13.014511865845799 + ], + [ + 77.584641741232204, + 13.014503837105201 + ], + [ + 77.585250835260993, + 13.014488731435801 + ], + [ + 77.585507905691102, + 13.014456340309099 + ], + [ + 77.585684338808704, + 13.014434109069899 + ], + [ + 77.585733503816201, + 13.014427914484299 + ], + [ + 77.5859254525826, + 13.014403728714299 + ], + [ + 77.586019743980003, + 13.014391848609201 + ], + [ + 77.586237080753193, + 13.0143633114224 + ], + [ + 77.586522352617607, + 13.0143258534433 + ], + [ + 77.586666605678104, + 13.0142984406325 + ], + [ + 77.586853222974696, + 13.0142468898828 + ], + [ + 77.586864201309098, + 13.0142423932677 + ], + [ + 77.586905410942606, + 13.0142255197085 + ], + [ + 77.587158205455495, + 13.0141220086694 + ], + [ + 77.587175481242795, + 13.0141149349452 + ], + [ + 77.587393289959394, + 13.014016868166401 + ], + [ + 77.587434553683295, + 13.0139982901142 + ], + [ + 77.587583003421699, + 13.0139313105163 + ], + [ + 77.587795192241899, + 13.013791418928101 + ], + [ + 77.588119826082604, + 13.013500208642 + ], + [ + 77.588287150129901, + 13.0133099462529 + ], + [ + 77.588479328294497, + 13.0130568411371 + ], + [ + 77.588540114549104, + 13.012976782588 + ], + [ + 77.588741613240302, + 13.0127114005897 + ], + [ + 77.588897451929697, + 13.012510337314501 + ], + [ + 77.589112101041195, + 13.0122333981232 + ], + [ + 77.589802487943203, + 13.0112304671239 + ], + [ + 77.5904054898091, + 13.0103194507221 + ], + [ + 77.590604165222004, + 13.010019289523701 + ], + [ + 77.590662540166505, + 13.0099310949737 + ], + [ + 77.590667640986794, + 13.0099231389712 + ], + [ + 77.590694332936295, + 13.009884358037199 + ], + [ + 77.590791602177205, + 13.009743033366 + ], + [ + 77.591000715229896, + 13.0094392082309 + ], + [ + 77.591152093910907, + 13.0092192672605 + ], + [ + 77.5917006086367, + 13.008418765168701 + ], + [ + 77.591852367819499, + 13.0081646197875 + ], + [ + 77.592061327275502, + 13.007814682682399 + ], + [ + 77.592281307907697, + 13.007446287535601 + ], + [ + 77.592310731724098, + 13.007396304647999 + ], + [ + 77.592679374240603, + 13.006797483712599 + ], + [ + 77.5928223680977, + 13.0065680803911 + ], + [ + 77.592964832488406, + 13.006339526133001 + ], + [ + 77.593069529843604, + 13.0061115209612 + ], + [ + 77.593107622130304, + 13.0060285655134 + ], + [ + 77.593117990934701, + 13.0060059835508 + ], + [ + 77.5931426791946, + 13.0059436257438 + ], + [ + 77.593160807356696, + 13.005917672309 + ], + [ + 77.593170481041597, + 13.0059038235575 + ], + [ + 77.593238213210896, + 13.0057168134259 + ], + [ + 77.5932629004934, + 13.0056544547231 + ], + [ + 77.593438834369607, + 13.004963828267501 + ], + [ + 77.593554521796705, + 13.0044601371415 + ], + [ + 77.593776175265205, + 13.003736304284001 + ], + [ + 77.594042832240802, + 13.002910385353401 + ], + [ + 77.594194861543897, + 13.002413106747801 + ], + [ + 77.594289512453898, + 13.002101605486899 + ], + [ + 77.594382706467201, + 13.001760757221 + ], + [ + 77.594475006514401, + 13.001500097566399 + ], + [ + 77.594476535185294, + 13.0014957765235 + ], + [ + 77.594659042153694, + 13.000979913183 + ], + [ + 77.594810952336303, + 13.000471342867501 + ], + [ + 77.594978466133398, + 12.999968263014001 + ], + [ + 77.595096298899506, + 12.9996158755265 + ], + [ + 77.595551808485794, + 12.9981029747922 + ], + [ + 77.5956590107089, + 12.9977469199595 + ], + [ + 77.595821846799893, + 12.997071105456399 + ], + [ + 77.595921714367705, + 12.9964309285882 + ], + [ + 77.596112445264893, + 12.995558338734501 + ], + [ + 77.596231075568895, + 12.9950613941814 + ], + [ + 77.596253776915404, + 12.994974211852099 + ], + [ + 77.596228514731905, + 12.9949812401863 + ], + [ + 77.596197789980593, + 12.994850549735 + ], + [ + 77.596119184846501, + 12.9947113036741 + ], + [ + 77.596103416776103, + 12.994690004811 + ], + [ + 77.595008491397607, + 12.9952125186049 + ], + [ + 77.594676027370994, + 12.995357002556901 + ], + [ + 77.594405532826002, + 12.995425204410401 + ], + [ + 77.594175599117705, + 12.9954625098779 + ], + [ + 77.594039291997404, + 12.995474110333401 + ], + [ + 77.593950083554105, + 12.995481702343 + ], + [ + 77.593462287714402, + 12.9954730236519 + ], + [ + 77.591746195705994, + 12.995398686395299 + ], + [ + 77.591431087567102, + 12.995384892153201 + ], + [ + 77.589679485320602, + 12.995328964113099 + ], + [ + 77.589550167352201, + 12.995629517185399 + ], + [ + 77.589516149589599, + 12.9956806747592 + ], + [ + 77.589491027554203, + 12.9957012526309 + ], + [ + 77.589124423378905, + 12.9958855959802 + ], + [ + 77.589094648472098, + 12.995901703037999 + ], + [ + 77.588008778817994, + 12.996467013712801 + ], + [ + 77.587996182575694, + 12.9964739150544 + ], + [ + 77.587511247767395, + 12.996797210276799 + ], + [ + 77.587311244943805, + 12.9969448828701 + ], + [ + 77.5868188795165, + 12.997329233230399 + ], + [ + 77.586580358944303, + 12.9974829356921 + ], + [ + 77.586551793647104, + 12.997504676956 + ], + [ + 77.586485275515798, + 12.997531313538399 + ], + [ + 77.586379065573695, + 12.997561733439801 + ], + [ + 77.5863290453362, + 12.9975690075585 + ], + [ + 77.585902468833893, + 12.997634239082601 + ], + [ + 77.585266353026498, + 12.9977049446187 + ], + [ + 77.585211150910297, + 12.9977122701358 + ], + [ + 77.584440925983202, + 12.9978161454894 + ], + [ + 77.584361286632003, + 12.9978268860915 + ], + [ + 77.5843055319353, + 12.9980589475395 + ], + [ + 77.584243060882102, + 12.998643417321 + ], + [ + 77.584172336324201, + 12.9990980998325 + ], + [ + 77.584163138810496, + 12.9992664570357 + ], + [ + 77.584187653796604, + 12.999409634024101 + ], + [ + 77.584186475987195, + 12.999462722829101 + ], + [ + 77.584162029341101, + 12.9994583931893 + ], + [ + 77.584150252834704, + 13.001224279203001 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "180", + "group": "KAMAKSHI PALYA", + "Corporatio": "West", + "ac_no": "165", + "ac": "Rajajinagar", + "corporat_1": "5", + "ward_id": "61", + "ward_name": "61 - Rani Jhansi Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜಾಜಿನಗರ", + "ward_name_": "ರಾಣಿ ಝಾನ್ಸಿ ವಾರ್ಡ್", + "dig_ward_n": "KAMAKSHI PALYA", + "Assembly": "165 - Rajajinagar", + "Slno": "61" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.531835233158702, + 12.982033432105 + ], + [ + 77.531694245248104, + 12.9820415815371 + ], + [ + 77.531618418990107, + 12.982059260276399 + ], + [ + 77.531498485895895, + 12.9820861485662 + ], + [ + 77.531397238973199, + 12.9821088469955 + ], + [ + 77.531278290835999, + 12.982187970808299 + ], + [ + 77.531267413786907, + 12.9821952042522 + ], + [ + 77.531261115953797, + 12.982199390852401 + ], + [ + 77.531240552323695, + 12.9822095998151 + ], + [ + 77.531168303228498, + 12.982245468483701 + ], + [ + 77.531060036913004, + 12.9823007313283 + ], + [ + 77.530948243464806, + 12.982405719582401 + ], + [ + 77.530934672015107, + 12.9824323678176 + ], + [ + 77.530918840464395, + 12.9824634542453 + ], + [ + 77.530918746527007, + 12.9824636394689 + ], + [ + 77.5309132606708, + 12.982474410809299 + ], + [ + 77.530896262019695, + 12.9825077880681 + ], + [ + 77.530845517194095, + 12.982607429520501 + ], + [ + 77.530836723380702, + 12.9826246965302 + ], + [ + 77.530826860046105, + 12.982644064594901 + ], + [ + 77.530813438290195, + 12.982680312594599 + ], + [ + 77.530800030886098, + 12.9827165225086 + ], + [ + 77.530741668204996, + 12.982874149955499 + ], + [ + 77.530691059235096, + 12.9830508203249 + ], + [ + 77.530662043779202, + 12.9830876077599 + ], + [ + 77.530571673681493, + 12.9832021855063 + ], + [ + 77.530532913904906, + 12.9832313403969 + ], + [ + 77.530364809108207, + 12.9833577904521 + ], + [ + 77.529868256012904, + 12.9836212444885 + ], + [ + 77.529553684663895, + 12.9837169128387 + ], + [ + 77.529146713652196, + 12.983747394496501 + ], + [ + 77.529120433667799, + 12.983749363247099 + ], + [ + 77.529021627397697, + 12.9837719982987 + ], + [ + 77.529013310892196, + 12.98377390335 + ], + [ + 77.528886099971999, + 12.9838030451468 + ], + [ + 77.528859575941595, + 12.983809121640901 + ], + [ + 77.528847524837403, + 12.983811419902199 + ], + [ + 77.528818059128696, + 12.983817039851701 + ], + [ + 77.528738938006796, + 12.983832129858101 + ], + [ + 77.528740950302506, + 12.9838410736608 + ], + [ + 77.528762346707595, + 12.983936178542599 + ], + [ + 77.528794097946005, + 12.984077310516 + ], + [ + 77.528868936469607, + 12.984409959369501 + ], + [ + 77.528904741444705, + 12.984569107816 + ], + [ + 77.528937453995098, + 12.984677756757099 + ], + [ + 77.529021567366797, + 12.984957122195 + ], + [ + 77.529025099469195, + 12.984968853781201 + ], + [ + 77.529090148918797, + 12.9852516861251 + ], + [ + 77.529096822741906, + 12.985321323401999 + ], + [ + 77.529097426374094, + 12.9853276228824 + ], + [ + 77.529117831956597, + 12.985540528846499 + ], + [ + 77.529116218996606, + 12.9855518379897 + ], + [ + 77.529086007055497, + 12.9858096225724 + ], + [ + 77.529085534167194, + 12.985819791274601 + ], + [ + 77.529079608067505, + 12.985916972572699 + ], + [ + 77.529084998414703, + 12.986051312085999 + ], + [ + 77.529099508741695, + 12.9861338668626 + ], + [ + 77.529099662230607, + 12.986134740836301 + ], + [ + 77.529106372674207, + 12.9861719438822 + ], + [ + 77.529262247275199, + 12.986382743304601 + ], + [ + 77.529437179145702, + 12.9865990037773 + ], + [ + 77.529517154698297, + 12.9867066422006 + ], + [ + 77.529623992232402, + 12.9868512874031 + ], + [ + 77.529677194556797, + 12.9869241117083 + ], + [ + 77.529698505586694, + 12.9869532834153 + ], + [ + 77.529703126358498, + 12.9869596088274 + ], + [ + 77.529843539568802, + 12.9871518138645 + ], + [ + 77.529904379561998, + 12.9872290946556 + ], + [ + 77.529915175991206, + 12.987242809076699 + ], + [ + 77.529923024113799, + 12.9872527774886 + ], + [ + 77.529929030840805, + 12.9872604075686 + ], + [ + 77.529948535900502, + 12.9872851833554 + ], + [ + 77.530046074766602, + 12.9875349477872 + ], + [ + 77.530066724225605, + 12.9875680135409 + ], + [ + 77.530106359990597, + 12.9876314842412 + ], + [ + 77.5301777456298, + 12.987743723373701 + ], + [ + 77.530206174354106, + 12.9877805883504 + ], + [ + 77.530224423563894, + 12.9878042533156 + ], + [ + 77.530301368518295, + 12.9879537065794 + ], + [ + 77.530343054895098, + 12.988008684464001 + ], + [ + 77.530344312680398, + 12.988010342738001 + ], + [ + 77.530379571924001, + 12.988056844474199 + ], + [ + 77.530383636523297, + 12.9880601929148 + ], + [ + 77.530402182656104, + 12.9880772397279 + ], + [ + 77.530411839336196, + 12.9880861162698 + ], + [ + 77.530433844897502, + 12.988106341236699 + ], + [ + 77.5305027872773, + 12.9881697079862 + ], + [ + 77.530601331173301, + 12.9883065767354 + ], + [ + 77.530623097248295, + 12.9883368081847 + ], + [ + 77.530703758883007, + 12.9885476233577 + ], + [ + 77.530759135899899, + 12.9886923553325 + ], + [ + 77.530766826646698, + 12.988712608581601 + ], + [ + 77.5307948306382, + 12.988790648917 + ], + [ + 77.530893630794793, + 12.989065986857501 + ], + [ + 77.530894435881606, + 12.9890678835374 + ], + [ + 77.530896704830695, + 12.989073227164999 + ], + [ + 77.530944706434298, + 12.989186248498999 + ], + [ + 77.5309915519165, + 12.989296548070801 + ], + [ + 77.531099760491898, + 12.9894626364493 + ], + [ + 77.531141150853102, + 12.9895662772163 + ], + [ + 77.5311430017302, + 12.9895709120725 + ], + [ + 77.531165409802298, + 12.9896270226207 + ], + [ + 77.5311860199226, + 12.9896786287974 + ], + [ + 77.5312179214731, + 12.9897585021564 + ], + [ + 77.531320392125707, + 12.989983372091199 + ], + [ + 77.531329223050705, + 12.990002484853701 + ], + [ + 77.531714592669303, + 12.9899238820423 + ], + [ + 77.531938485141495, + 12.9899068768557 + ], + [ + 77.532163799511196, + 12.989898576983901 + ], + [ + 77.532216011008103, + 12.9900933817544 + ], + [ + 77.532521833895998, + 12.9900890923387 + ], + [ + 77.532641975180397, + 12.990077675716501 + ], + [ + 77.532761108866097, + 12.9900618033902 + ], + [ + 77.533047254334207, + 12.9899376044894 + ], + [ + 77.533301331500994, + 12.989798112173601 + ], + [ + 77.533565726983994, + 12.9896542799536 + ], + [ + 77.533355900279403, + 12.9893983094576 + ], + [ + 77.5331492210872, + 12.9892090896205 + ], + [ + 77.5330281810229, + 12.989122409813 + ], + [ + 77.533007934187907, + 12.989098629001299 + ], + [ + 77.533171368000595, + 12.989038179652299 + ], + [ + 77.533296233963597, + 12.9889885695572 + ], + [ + 77.533397597412204, + 12.988944856197101 + ], + [ + 77.533573603953499, + 12.988852894333499 + ], + [ + 77.533959977763899, + 12.9886817141821 + ], + [ + 77.534461629218498, + 12.9884361663633 + ], + [ + 77.535038149985596, + 12.9882962632072 + ], + [ + 77.535560345168406, + 12.9882353632056 + ], + [ + 77.5351999586467, + 12.987171847022401 + ], + [ + 77.534966029357406, + 12.9865775114923 + ], + [ + 77.5349307995087, + 12.986435293861801 + ], + [ + 77.534802524936595, + 12.9856965679366 + ], + [ + 77.534692719311394, + 12.9849217574302 + ], + [ + 77.534587267474905, + 12.9841676901464 + ], + [ + 77.534554167466396, + 12.983709375039099 + ], + [ + 77.534486339496894, + 12.982982842494099 + ], + [ + 77.534421086449697, + 12.9824527930071 + ], + [ + 77.534402962226494, + 12.9822767140379 + ], + [ + 77.534345797088406, + 12.982010217683101 + ], + [ + 77.534262161058507, + 12.9816638377741 + ], + [ + 77.534249142193801, + 12.9816099180864 + ], + [ + 77.534245271059604, + 12.9816112866463 + ], + [ + 77.534130223227393, + 12.981651892839301 + ], + [ + 77.533822729898006, + 12.9817604235439 + ], + [ + 77.533797751401394, + 12.9817692401068 + ], + [ + 77.533685515314303, + 12.981796413889899 + ], + [ + 77.533674576237303, + 12.9817990629 + ], + [ + 77.533671386318701, + 12.981799834843899 + ], + [ + 77.533607699649096, + 12.9818147513227 + ], + [ + 77.533562724784204, + 12.9818252860454 + ], + [ + 77.533558587056604, + 12.98182625786 + ], + [ + 77.533520864727194, + 12.9818350920141 + ], + [ + 77.533519518251495, + 12.9818354068991 + ], + [ + 77.533501716345896, + 12.9818395764873 + ], + [ + 77.5335011180197, + 12.981839716936999 + ], + [ + 77.533482197578195, + 12.981844148592501 + ], + [ + 77.533479606658304, + 12.9818447556843 + ], + [ + 77.533467552758196, + 12.9818475790817 + ], + [ + 77.5334672439364, + 12.981847650755901 + ], + [ + 77.533451963103303, + 12.9818512301926 + ], + [ + 77.533451637745898, + 12.9818513065453 + ], + [ + 77.5334428264011, + 12.9818533701358 + ], + [ + 77.533442451409698, + 12.981853457813999 + ], + [ + 77.533435341311701, + 12.981855123555899 + ], + [ + 77.533435134512303, + 12.9818551716488 + ], + [ + 77.533432238455006, + 12.981855850378301 + ], + [ + 77.533431631847193, + 12.9818559918121 + ], + [ + 77.533430438870099, + 12.981856271771999 + ], + [ + 77.533428699024796, + 12.981856679031299 + ], + [ + 77.533378636039004, + 12.981868405310401 + ], + [ + 77.533375448625094, + 12.981869151929301 + ], + [ + 77.533232767695793, + 12.9819025716528 + ], + [ + 77.533213563217998, + 12.9819070674949 + ], + [ + 77.533207546578197, + 12.9819084515316 + ], + [ + 77.533186890905995, + 12.9819132018398 + ], + [ + 77.5331849460201, + 12.9819136490419 + ], + [ + 77.533169859377495, + 12.9819171190574 + ], + [ + 77.533107037572904, + 12.9819315680298 + ], + [ + 77.533101258987301, + 12.981932897342601 + ], + [ + 77.533075119764405, + 12.981938909029999 + ], + [ + 77.533038892986795, + 12.981943779462499 + ], + [ + 77.533015200882005, + 12.981946630435701 + ], + [ + 77.532742718579101, + 12.9819794167033 + ], + [ + 77.532704189739803, + 12.9819843095244 + ], + [ + 77.532602935449205, + 12.9819900728597 + ], + [ + 77.532464796108101, + 12.9819979356482 + ], + [ + 77.532387382084906, + 12.9820024691711 + ], + [ + 77.532182603502307, + 12.982014461282001 + ], + [ + 77.532117796088798, + 12.982018256637801 + ], + [ + 77.531957939374905, + 12.982026842107199 + ], + [ + 77.5318404143636, + 12.9820331539575 + ], + [ + 77.531835233158702, + 12.982033432105 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "182", + "group": "Venkateshwara Temple Ward", + "Corporatio": "West", + "ac_no": "165", + "ac": "Rajajinagar", + "corporat_1": "5", + "ward_id": "57", + "ward_name": "57 - Da.ra Bendre Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜಾಜಿನಗರ", + "ward_name_": "ದ.ರಾ. ಬೇಂದ್ರೆ ವಾರ್ಡ್", + "dig_ward_n": "Venkateshwara Temple Ward", + "Assembly": "165 - Rajajinagar", + "Slno": "57" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.556184853555195, + 12.9779301470014 + ], + [ + 77.556182837198804, + 12.9779288197697 + ], + [ + 77.556048689275897, + 12.9778405210161 + ], + [ + 77.556042949990598, + 12.9778367431635 + ], + [ + 77.555918360823995, + 12.9777547359942 + ], + [ + 77.555599135425496, + 12.977571748007 + ], + [ + 77.555582927900005, + 12.9775624571399 + ], + [ + 77.555445757068895, + 12.977483826721199 + ], + [ + 77.555427703041303, + 12.977455032043601 + ], + [ + 77.555322324330106, + 12.977286965499101 + ], + [ + 77.555205777001802, + 12.977101085821401 + ], + [ + 77.555192297024405, + 12.977079775594699 + ], + [ + 77.555162469916297, + 12.9770326226521 + ], + [ + 77.555074596349101, + 12.977075908175699 + ], + [ + 77.555050182840304, + 12.9770879337257 + ], + [ + 77.554887371781902, + 12.977157293144399 + ], + [ + 77.554718928486395, + 12.977239130391199 + ], + [ + 77.554697952224103, + 12.977247831738399 + ], + [ + 77.5545962320884, + 12.9772900262858 + ], + [ + 77.5545573147906, + 12.9773129951692 + ], + [ + 77.554547706492102, + 12.9773323197191 + ], + [ + 77.5545465943827, + 12.9773345576747 + ], + [ + 77.554559939925298, + 12.9773771583904 + ], + [ + 77.554565640389498, + 12.9773953540753 + ], + [ + 77.554603871801206, + 12.9775304973939 + ], + [ + 77.5546046785757, + 12.9775338105849 + ], + [ + 77.554623101515304, + 12.9776093611751 + ], + [ + 77.554642021800504, + 12.977714202461099 + ], + [ + 77.554654483413302, + 12.977863150870199 + ], + [ + 77.554655209119801, + 12.9778778249601 + ], + [ + 77.554666369317005, + 12.9780386115371 + ], + [ + 77.554669387551499, + 12.978082093402399 + ], + [ + 77.554677037902593, + 12.9781136817786 + ], + [ + 77.554678854795398, + 12.9781211843235 + ], + [ + 77.5547078605683, + 12.9782409501146 + ], + [ + 77.554751424038798, + 12.978447188418601 + ], + [ + 77.554795038235994, + 12.978578051468901 + ], + [ + 77.5548298309931, + 12.978682446712201 + ], + [ + 77.554843284406004, + 12.9787346862423 + ], + [ + 77.554865805214703, + 12.9788221294025 + ], + [ + 77.554886366262707, + 12.9788672638348 + ], + [ + 77.554948264338506, + 12.979003140220501 + ], + [ + 77.555002305405907, + 12.9791641024631 + ], + [ + 77.555032522598594, + 12.979303841681 + ], + [ + 77.555037774266196, + 12.979337246972699 + ], + [ + 77.555044223037896, + 12.9793782629849 + ], + [ + 77.555049405899496, + 12.9794028620297 + ], + [ + 77.555062982192993, + 12.979467294314899 + ], + [ + 77.555079274755002, + 12.9795169834494 + ], + [ + 77.555098046325, + 12.9795742354666 + ], + [ + 77.555115409312094, + 12.9796110262266 + ], + [ + 77.555135712132198, + 12.979654047254 + ], + [ + 77.555162323775903, + 12.979722674448301 + ], + [ + 77.555171311293705, + 12.9797704242752 + ], + [ + 77.555176327188505, + 12.9797970721932 + ], + [ + 77.555180165994898, + 12.9798120291729 + ], + [ + 77.555184516195197, + 12.979828978674099 + ], + [ + 77.5551887138285, + 12.979845332488299 + ], + [ + 77.555192518099403, + 12.9798601551916 + ], + [ + 77.555214581694599, + 12.9799344737001 + ], + [ + 77.555238418651996, + 12.980013292068101 + ], + [ + 77.555241211702693, + 12.980022647036501 + ], + [ + 77.5552700170782, + 12.9801191379107 + ], + [ + 77.555083113558993, + 12.9800848485324 + ], + [ + 77.5552639467017, + 12.9827357858368 + ], + [ + 77.555624869530305, + 12.982730493067301 + ], + [ + 77.555665417530903, + 12.9830439863933 + ], + [ + 77.556060034173399, + 12.983029642372699 + ], + [ + 77.556094843047802, + 12.9835628966818 + ], + [ + 77.556288952335507, + 12.983568900061799 + ], + [ + 77.556175225741299, + 12.985077526127601 + ], + [ + 77.556344104656603, + 12.9850723770583 + ], + [ + 77.556512412711001, + 12.9850114305041 + ], + [ + 77.556772516030904, + 12.984797866282699 + ], + [ + 77.557020065535895, + 12.984573962351501 + ], + [ + 77.557493148642493, + 12.984060104669799 + ], + [ + 77.557781511319206, + 12.9838279512844 + ], + [ + 77.558021860897696, + 12.9836825904582 + ], + [ + 77.558117241240296, + 12.9836197451825 + ], + [ + 77.558250103049403, + 12.9835704816357 + ], + [ + 77.558525475286402, + 12.9835459726228 + ], + [ + 77.559508192124099, + 12.983483980362401 + ], + [ + 77.560248693161199, + 12.983424228653099 + ], + [ + 77.560181360455402, + 12.9852261571335 + ], + [ + 77.560098306255796, + 12.9864488994605 + ], + [ + 77.560091140815899, + 12.9865554721449 + ], + [ + 77.560081817546404, + 12.9866941243173 + ], + [ + 77.560063057838406, + 12.9868862935243 + ], + [ + 77.559965612389504, + 12.9872102391572 + ], + [ + 77.559835829370996, + 12.987693737523299 + ], + [ + 77.559815302111204, + 12.987769604215201 + ], + [ + 77.5595212727535, + 12.9882953763905 + ], + [ + 77.559143890477799, + 12.9888455170477 + ], + [ + 77.558571264548902, + 12.988495414149501 + ], + [ + 77.558148787041802, + 12.9883077522731 + ], + [ + 77.557860525653894, + 12.988289664602201 + ], + [ + 77.557035099150397, + 12.988329410744999 + ], + [ + 77.556704725555704, + 12.9883406227323 + ], + [ + 77.555984737007407, + 12.988365056700101 + ], + [ + 77.556059184846703, + 12.989910640868001 + ], + [ + 77.556127144539104, + 12.9899483366688 + ], + [ + 77.557913889528393, + 12.991019320491599 + ], + [ + 77.557912098923794, + 12.991021787397599 + ], + [ + 77.558462285445103, + 12.991375284082199 + ], + [ + 77.558611706574297, + 12.991461499273001 + ], + [ + 77.558698007771397, + 12.991517899351299 + ], + [ + 77.558842936136799, + 12.991598361145 + ], + [ + 77.559002923369306, + 12.991669978225501 + ], + [ + 77.559207702703006, + 12.991713615729299 + ], + [ + 77.559295059199798, + 12.9914402727461 + ], + [ + 77.559361046667803, + 12.9912306938936 + ], + [ + 77.559414734098297, + 12.991079431743101 + ], + [ + 77.559526659388993, + 12.9909064516472 + ], + [ + 77.559907813070694, + 12.9899244017746 + ], + [ + 77.561037625941594, + 12.9902986890785 + ], + [ + 77.561105664248601, + 12.9900045234569 + ], + [ + 77.561053634955002, + 12.9899144727564 + ], + [ + 77.561125675515399, + 12.9895742812212 + ], + [ + 77.561150450207506, + 12.989216797246099 + ], + [ + 77.561192518898295, + 12.9887237484193 + ], + [ + 77.561316639115603, + 12.9886021998839 + ], + [ + 77.561420347052504, + 12.988472031038199 + ], + [ + 77.561432755536202, + 12.9883905977557 + ], + [ + 77.561450067832297, + 12.9882820124774 + ], + [ + 77.5614530062158, + 12.9882639026637 + ], + [ + 77.561483104112597, + 12.988078409406199 + ], + [ + 77.561484738725696, + 12.988069359644401 + ], + [ + 77.561556528577896, + 12.987770510811901 + ], + [ + 77.561631932729199, + 12.987655706159201 + ], + [ + 77.561634425971505, + 12.9876532160474 + ], + [ + 77.561637657199896, + 12.987650011254001 + ], + [ + 77.561765877060097, + 12.987522255169599 + ], + [ + 77.561849639261197, + 12.987380264428401 + ], + [ + 77.5618578090249, + 12.9872785452219 + ], + [ + 77.561847833014895, + 12.9872041085844 + ], + [ + 77.561815982098693, + 12.987186353559601 + ], + [ + 77.561813780339193, + 12.9871858232592 + ], + [ + 77.561536606468096, + 12.987119090444301 + ], + [ + 77.561267083221395, + 12.9870419572002 + ], + [ + 77.561265762841401, + 12.9870415790209 + ], + [ + 77.561132175254301, + 12.986995310950199 + ], + [ + 77.561087760400198, + 12.9869799274699 + ], + [ + 77.561044380131506, + 12.986964902392399 + ], + [ + 77.561031156176597, + 12.986960322130299 + ], + [ + 77.560881353926604, + 12.986838702954399 + ], + [ + 77.560835141421094, + 12.9867680113452 + ], + [ + 77.560828429070298, + 12.986757410408 + ], + [ + 77.560785393500097, + 12.9866894493342 + ], + [ + 77.560802693714905, + 12.9865700362658 + ], + [ + 77.560806365940294, + 12.9865446897702 + ], + [ + 77.560923741063107, + 12.986199090548901 + ], + [ + 77.561038413813407, + 12.985926924601801 + ], + [ + 77.561042683121002, + 12.9858461298852 + ], + [ + 77.561043530332796, + 12.9858300951422 + ], + [ + 77.5610446831584, + 12.985808283404401 + ], + [ + 77.561035620385496, + 12.9857683514717 + ], + [ + 77.560995838023302, + 12.985593064898399 + ], + [ + 77.560976491471607, + 12.9851099069933 + ], + [ + 77.561006441253994, + 12.9848860066241 + ], + [ + 77.561038656338098, + 12.984826964523799 + ], + [ + 77.561100795103599, + 12.984710032221701 + ], + [ + 77.561226013938494, + 12.984462586619401 + ], + [ + 77.561230598363494, + 12.984453527661399 + ], + [ + 77.561351094131496, + 12.984131612515499 + ], + [ + 77.561357475009899, + 12.984073115047501 + ], + [ + 77.561372673827094, + 12.9839337690044 + ], + [ + 77.561385846083297, + 12.983702128794899 + ], + [ + 77.561387682962106, + 12.9836679591823 + ], + [ + 77.561397936332199, + 12.9834772751638 + ], + [ + 77.561458318429302, + 12.983020435181301 + ], + [ + 77.561466564679193, + 12.9829980566321 + ], + [ + 77.561576522215105, + 12.982699672888 + ], + [ + 77.561582833461898, + 12.982668002402701 + ], + [ + 77.561584188938596, + 12.9826612004812 + ], + [ + 77.561586119022394, + 12.9826515867647 + ], + [ + 77.561652118947407, + 12.9823228646072 + ], + [ + 77.561663947038099, + 12.982260307536199 + ], + [ + 77.561729130276902, + 12.981915551689699 + ], + [ + 77.5616904979384, + 12.9819091339654 + ], + [ + 77.561648024802295, + 12.981902079209499 + ], + [ + 77.561478813328094, + 12.9818739744628 + ], + [ + 77.561263523221697, + 12.981823018156399 + ], + [ + 77.561182250324904, + 12.981758318540599 + ], + [ + 77.561168425175197, + 12.9817043865856 + ], + [ + 77.561135469254495, + 12.981575829807801 + ], + [ + 77.5610656911972, + 12.9813210689674 + ], + [ + 77.560988322012506, + 12.9810385943891 + ], + [ + 77.560981697107806, + 12.9809539616103 + ], + [ + 77.560842008487796, + 12.980582661552701 + ], + [ + 77.560783539719793, + 12.9804967208616 + ], + [ + 77.560759582050693, + 12.980461507091601 + ], + [ + 77.560630730257699, + 12.9803611385935 + ], + [ + 77.560586495988105, + 12.980330072649 + ], + [ + 77.560529238289107, + 12.980289861010601 + ], + [ + 77.560354134679301, + 12.9802272146026 + ], + [ + 77.560236496845107, + 12.980209175766401 + ], + [ + 77.560098085347605, + 12.980187951706 + ], + [ + 77.559815908776599, + 12.9801274887521 + ], + [ + 77.559604661947006, + 12.9800776202398 + ], + [ + 77.559249250702095, + 12.9799501184989 + ], + [ + 77.559253142048703, + 12.979936528335999 + ], + [ + 77.559211065707501, + 12.979875959266399 + ], + [ + 77.559181491219505, + 12.979742990562899 + ], + [ + 77.559189002708706, + 12.979609401964501 + ], + [ + 77.559189810875793, + 12.979595025431699 + ], + [ + 77.559194642943197, + 12.979509091645999 + ], + [ + 77.559181317140897, + 12.9794532112283 + ], + [ + 77.559111621517303, + 12.9791609487777 + ], + [ + 77.559019476310993, + 12.9789901990665 + ], + [ + 77.558955925167595, + 12.978912902394599 + ], + [ + 77.558939021195698, + 12.978892740105699 + ], + [ + 77.558908876009994, + 12.9788830961031 + ], + [ + 77.558843127818804, + 12.9788620630253 + ], + [ + 77.558814387611207, + 12.9788582767482 + ], + [ + 77.558811215166202, + 12.978857858956699 + ], + [ + 77.558699565141694, + 12.9788431483137 + ], + [ + 77.558568277517693, + 12.978842181850901 + ], + [ + 77.558559054416705, + 12.978841143303899 + ], + [ + 77.558436862773505, + 12.978828794034699 + ], + [ + 77.558415707796598, + 12.9788305579859 + ], + [ + 77.558283260642895, + 12.978841598896 + ], + [ + 77.558118995086005, + 12.978825146233101 + ], + [ + 77.558012623254598, + 12.978783278714801 + ], + [ + 77.557961609799094, + 12.9787636200222 + ], + [ + 77.557882307551694, + 12.9787330602793 + ], + [ + 77.557861172795299, + 12.978724914861999 + ], + [ + 77.557758610807397, + 12.9786749834195 + ], + [ + 77.557647924462898, + 12.9786210979209 + ], + [ + 77.557636072541001, + 12.9786153266901 + ], + [ + 77.557581274747207, + 12.978597027805 + ], + [ + 77.557506317550306, + 12.9785719977104 + ], + [ + 77.557487462474, + 12.978565701795601 + ], + [ + 77.557353551404404, + 12.978520985249499 + ], + [ + 77.557236915489696, + 12.9784656303266 + ], + [ + 77.557047487764805, + 12.9783757293549 + ], + [ + 77.5570341709914, + 12.9783694087422 + ], + [ + 77.556891931536697, + 12.978310953638999 + ], + [ + 77.556868078486502, + 12.978301391137199 + ], + [ + 77.556671203460098, + 12.9782224651223 + ], + [ + 77.556655468562397, + 12.9782161574262 + ], + [ + 77.556616119233695, + 12.978193349906601 + ], + [ + 77.5563600197261, + 12.9780449066802 + ], + [ + 77.556356595431595, + 12.9780429220248 + ], + [ + 77.556251782566505, + 12.9779741721895 + ], + [ + 77.556239360099994, + 12.977966024072799 + ], + [ + 77.556239287760604, + 12.9779659769008 + ], + [ + 77.556184853555195, + 12.9779301470014 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "181", + "group": "BASAVESHWARA NAGARA", + "Corporatio": "West", + "ac_no": "165", + "ac": "Rajajinagar", + "corporat_1": "5", + "ward_id": "52", + "ward_name": "52 - Basaveshwara Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜಾಜಿನಗರ", + "ward_name_": "ಬಸವೇಶ್ವರ ನಗರ", + "dig_ward_n": "BASAVESHWARA NAGARA", + "Assembly": "165 - Rajajinagar", + "Slno": "52" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.537046391303605, + 12.983471083989199 + ], + [ + 77.537053234020902, + 12.9834077742448 + ], + [ + 77.537082659344406, + 12.983300199847401 + ], + [ + 77.537238313483201, + 12.982865014386901 + ], + [ + 77.537267257244693, + 12.982710012489401 + ], + [ + 77.537266872537302, + 12.982672115657101 + ], + [ + 77.537265505776901, + 12.982537477560999 + ], + [ + 77.537265377536698, + 12.9825248446811 + ], + [ + 77.537265354812305, + 12.982522606103 + ], + [ + 77.537265251185801, + 12.9825123978977 + ], + [ + 77.537265247425907, + 12.9825120275115 + ], + [ + 77.537263990251503, + 12.9823881830098 + ], + [ + 77.537257293213003, + 12.9823142785462 + ], + [ + 77.537239349634305, + 12.9821162530581 + ], + [ + 77.537188917645906, + 12.981806611027899 + ], + [ + 77.537180399352494, + 12.981754310955401 + ], + [ + 77.537152138826997, + 12.981579539388999 + ], + [ + 77.537136696174997, + 12.9815402988117 + ], + [ + 77.536920378726904, + 12.9809906335626 + ], + [ + 77.536871181958404, + 12.9808656234336 + ], + [ + 77.536824420307795, + 12.9807468008822 + ], + [ + 77.536795286620304, + 12.9806727711189 + ], + [ + 77.536785105703601, + 12.980646899304199 + ], + [ + 77.536582570015398, + 12.9807177664372 + ], + [ + 77.536352813688197, + 12.980804546267199 + ], + [ + 77.536311071579405, + 12.980820312590399 + ], + [ + 77.536080213716104, + 12.9809075077148 + ], + [ + 77.5350786012811, + 12.9812858155162 + ], + [ + 77.534994322941799, + 12.9813216578805 + ], + [ + 77.534897001252403, + 12.981363046455201 + ], + [ + 77.534885926502596, + 12.981367756750499 + ], + [ + 77.534865659322193, + 12.981376375671999 + ], + [ + 77.534860779206198, + 12.9813784515606 + ], + [ + 77.534649182764298, + 12.981468439193799 + ], + [ + 77.534249142193801, + 12.9816099180864 + ], + [ + 77.534262161058507, + 12.9816638377741 + ], + [ + 77.534345797088406, + 12.982010217683101 + ], + [ + 77.534402962226494, + 12.9822767140379 + ], + [ + 77.534421086449697, + 12.9824527930071 + ], + [ + 77.534486339496894, + 12.982982842494099 + ], + [ + 77.534554167466396, + 12.983709375039099 + ], + [ + 77.534587267474905, + 12.9841676901464 + ], + [ + 77.534692719311394, + 12.9849217574302 + ], + [ + 77.534802524936595, + 12.9856965679366 + ], + [ + 77.5349307995087, + 12.986435293861801 + ], + [ + 77.534966029357406, + 12.9865775114923 + ], + [ + 77.5351999586467, + 12.987171847022401 + ], + [ + 77.535560345168406, + 12.9882353632056 + ], + [ + 77.535038149985596, + 12.9882962632072 + ], + [ + 77.534461629218498, + 12.9884361663633 + ], + [ + 77.533959977763899, + 12.9886817141821 + ], + [ + 77.533573603953499, + 12.988852894333499 + ], + [ + 77.533397597412204, + 12.988944856197101 + ], + [ + 77.533296233963597, + 12.9889885695572 + ], + [ + 77.533171368000595, + 12.989038179652299 + ], + [ + 77.533007934187907, + 12.989098629001299 + ], + [ + 77.5330281810229, + 12.989122409813 + ], + [ + 77.5331492210872, + 12.9892090896205 + ], + [ + 77.533355900279403, + 12.9893983094576 + ], + [ + 77.533565726983994, + 12.9896542799536 + ], + [ + 77.533301331500994, + 12.989798112173601 + ], + [ + 77.533047254334207, + 12.9899376044894 + ], + [ + 77.532761108866097, + 12.9900618033902 + ], + [ + 77.532641975180397, + 12.990077675716501 + ], + [ + 77.532521833895998, + 12.9900890923387 + ], + [ + 77.532216011008103, + 12.9900933817544 + ], + [ + 77.532163799511196, + 12.989898576983901 + ], + [ + 77.531938485141495, + 12.9899068768557 + ], + [ + 77.531714592669303, + 12.9899238820423 + ], + [ + 77.531329223050705, + 12.990002484853701 + ], + [ + 77.531330832238297, + 12.990010270669 + ], + [ + 77.531347388408804, + 12.990090396531899 + ], + [ + 77.531365658060594, + 12.9902663290303 + ], + [ + 77.531371498841906, + 12.990322573887701 + ], + [ + 77.531371815316703, + 12.990325620027701 + ], + [ + 77.531374680115405, + 12.9903532113035 + ], + [ + 77.531383121258003, + 12.990434498602101 + ], + [ + 77.531387632211903, + 12.9904818861114 + ], + [ + 77.531404151425903, + 12.9905915396499 + ], + [ + 77.531446389942801, + 12.9908719186081 + ], + [ + 77.531446613153307, + 12.990873398129599 + ], + [ + 77.531456775240599, + 12.990940854530299 + ], + [ + 77.531469274713103, + 12.9910378561329 + ], + [ + 77.531474569358096, + 12.9910784780127 + ], + [ + 77.531499461279495, + 12.9912694601304 + ], + [ + 77.531499505237505, + 12.9912697976012 + ], + [ + 77.531522787844196, + 12.9914484322597 + ], + [ + 77.531524843776495, + 12.991464205844 + ], + [ + 77.531534391994796, + 12.991538172321301 + ], + [ + 77.531539840965607, + 12.9915803819008 + ], + [ + 77.531554714206806, + 12.991709323437 + ], + [ + 77.531573140880894, + 12.991869068597 + ], + [ + 77.531603601592593, + 12.9921331379936 + ], + [ + 77.531636732161104, + 12.992421361007899 + ], + [ + 77.531652227958304, + 12.992556167216501 + ], + [ + 77.531654725617102, + 12.992575341681301 + ], + [ + 77.531882581125004, + 12.992549479252601 + ], + [ + 77.5318869008088, + 12.9925489890176 + ], + [ + 77.531905992441395, + 12.992546821577401 + ], + [ + 77.531906719448301, + 12.9925467395016 + ], + [ + 77.531910371949607, + 12.992546325337999 + ], + [ + 77.532316353926106, + 12.992500245383701 + ], + [ + 77.532318654567106, + 12.9924999844343 + ], + [ + 77.532525517885304, + 12.992476504420701 + ], + [ + 77.532540823697701, + 12.992474779511699 + ], + [ + 77.533223806626395, + 12.992397817589501 + ], + [ + 77.533249649425002, + 12.992394905695701 + ], + [ + 77.533402585042893, + 12.992371956439399 + ], + [ + 77.533754722236694, + 12.9923182068689 + ], + [ + 77.533758223330295, + 12.992317672188801 + ], + [ + 77.534133038285105, + 12.9922604610365 + ], + [ + 77.534162941085, + 12.9922558967436 + ], + [ + 77.534187877404307, + 12.9922520901337 + ], + [ + 77.53420154234, + 12.992250004394 + ], + [ + 77.534248307606902, + 12.992242866897501 + ], + [ + 77.534356541986497, + 12.9922266568135 + ], + [ + 77.534780707945998, + 12.992163133993101 + ], + [ + 77.535104003050193, + 12.992115514157099 + ], + [ + 77.535213310790297, + 12.992099415225599 + ], + [ + 77.535219115583104, + 12.992098559894 + ], + [ + 77.535539864039805, + 12.9920513149483 + ], + [ + 77.535567963461702, + 12.9920471755731 + ], + [ + 77.535938223514805, + 12.991992637325099 + ], + [ + 77.535944410994802, + 12.991991725840199 + ], + [ + 77.535946726474805, + 12.991991385209699 + ], + [ + 77.535965782174202, + 12.9919885953431 + ], + [ + 77.536277330901399, + 12.9919429833921 + ], + [ + 77.536522837098701, + 12.9919067056658 + ], + [ + 77.536571120789603, + 12.991898328740699 + ], + [ + 77.536999679028895, + 12.9918254953995 + ], + [ + 77.537004812916507, + 12.9918246230932 + ], + [ + 77.537324958676706, + 12.9917702138124 + ], + [ + 77.5373896362171, + 12.9917592227622 + ], + [ + 77.537403267396598, + 12.991756905904399 + ], + [ + 77.537444563765504, + 12.991749886341401 + ], + [ + 77.537847233881806, + 12.9916814524332 + ], + [ + 77.538446810794895, + 12.991582987510199 + ], + [ + 77.538548821177599, + 12.991863398559399 + ], + [ + 77.538554731593294, + 12.991879645698701 + ], + [ + 77.538901642078798, + 12.992833246964899 + ], + [ + 77.538919411403498, + 12.992882091857499 + ], + [ + 77.538980779528003, + 12.993050782991499 + ], + [ + 77.539044513455906, + 12.993225975815999 + ], + [ + 77.539066152192007, + 12.9932833215399 + ], + [ + 77.539099691594998, + 12.9933722057394 + ], + [ + 77.539272935573507, + 12.9938313251011 + ], + [ + 77.539275014364705, + 12.9938375161209 + ], + [ + 77.539277092234798, + 12.993843707149701 + ], + [ + 77.539592911186304, + 12.9946627750288 + ], + [ + 77.539829443222203, + 12.9952725613285 + ], + [ + 77.539859599951498, + 12.9953501904806 + ], + [ + 77.539943182027599, + 12.995582127969101 + ], + [ + 77.539949764575496, + 12.995600394042301 + ], + [ + 77.539973962564403, + 12.995667544307199 + ], + [ + 77.540145196294901, + 12.9961413192101 + ], + [ + 77.540408399785306, + 12.996885233420899 + ], + [ + 77.540439856596294, + 12.9969741439609 + ], + [ + 77.540484642621095, + 12.997132351941 + ], + [ + 77.540517906052401, + 12.997249854891599 + ], + [ + 77.540590973781704, + 12.997507969792901 + ], + [ + 77.540621879288395, + 12.9976025314461 + ], + [ + 77.540680109333806, + 12.9977792670943 + ], + [ + 77.540818653832602, + 12.9982657835998 + ], + [ + 77.540864070918801, + 12.998428632678699 + ], + [ + 77.540864424724106, + 12.9984299012979 + ], + [ + 77.540929218041001, + 12.9986622270672 + ], + [ + 77.541119386276407, + 12.999241972614101 + ], + [ + 77.541131133938705, + 12.999285839298 + ], + [ + 77.541139612826001, + 12.999317499613699 + ], + [ + 77.541145827614102, + 12.999340705764199 + ], + [ + 77.541149555153794, + 12.999354625130801 + ], + [ + 77.541151370068903, + 12.999361401436699 + ], + [ + 77.541157695963804, + 12.9993850229971 + ], + [ + 77.541805440091693, + 12.9989866506684 + ], + [ + 77.541937672626403, + 12.9989053249767 + ], + [ + 77.542084681797604, + 12.9988090214166 + ], + [ + 77.542414740774305, + 12.998593474474101 + ], + [ + 77.5424570720443, + 12.998565955899499 + ], + [ + 77.542807259677403, + 12.9984044193987 + ], + [ + 77.542995814952803, + 12.998316743139499 + ], + [ + 77.543434947585098, + 12.9981260715 + ], + [ + 77.543383456908103, + 12.997993283141399 + ], + [ + 77.543275127891306, + 12.997713913134801 + ], + [ + 77.543275026650207, + 12.997713652121501 + ], + [ + 77.543266533672906, + 12.9976917485765 + ], + [ + 77.543704161261601, + 12.997521796195601 + ], + [ + 77.543914544481694, + 12.9974002805171 + ], + [ + 77.543918315011695, + 12.9972903805388 + ], + [ + 77.543940178004306, + 12.997210820786499 + ], + [ + 77.544007669785699, + 12.9969407334493 + ], + [ + 77.544154466931104, + 12.9968493460681 + ], + [ + 77.544175746557897, + 12.9967845957857 + ], + [ + 77.544162394664994, + 12.9966941777109 + ], + [ + 77.544144451909403, + 12.9965726648777 + ], + [ + 77.544141887821397, + 12.9965553010048 + ], + [ + 77.544120760598801, + 12.9964122292567 + ], + [ + 77.544072553333706, + 12.996218358619901 + ], + [ + 77.544362889595007, + 12.996089955860899 + ], + [ + 77.544374194310507, + 12.9960649951137 + ], + [ + 77.544661405775202, + 12.9959778865895 + ], + [ + 77.544646356962801, + 12.9953094176515 + ], + [ + 77.544863707805305, + 12.9952610752908 + ], + [ + 77.545254169046302, + 12.995185750005801 + ], + [ + 77.5452696988486, + 12.995182764009799 + ], + [ + 77.545290083399493, + 12.995067251698901 + ], + [ + 77.545291688668897, + 12.994941242351601 + ], + [ + 77.545462857009596, + 12.9949042821269 + ], + [ + 77.545389662935804, + 12.994631110939901 + ], + [ + 77.545219462127804, + 12.994659445607301 + ], + [ + 77.545087240113304, + 12.994685155589799 + ], + [ + 77.544932071164396, + 12.994727657047701 + ], + [ + 77.544684830150601, + 12.994809425589001 + ], + [ + 77.544558973573402, + 12.994849023801001 + ], + [ + 77.544399483416598, + 12.994903774319701 + ], + [ + 77.544145173840406, + 12.9949899713143 + ], + [ + 77.543897763415899, + 12.9950551742028 + ], + [ + 77.543778832550302, + 12.9950763937169 + ], + [ + 77.543576462425804, + 12.9951115094897 + ], + [ + 77.543171588719005, + 12.995168662956599 + ], + [ + 77.542933549019196, + 12.9951936644588 + ], + [ + 77.542876657454798, + 12.995195093546499 + ], + [ + 77.542871742714894, + 12.9950617364516 + ], + [ + 77.542508711357399, + 12.9950900271809 + ], + [ + 77.542542429146593, + 12.9942814728235 + ], + [ + 77.542553596706, + 12.9941408367197 + ], + [ + 77.542536610731005, + 12.9940003481034 + ], + [ + 77.542482678027199, + 12.993856661829399 + ], + [ + 77.542297626655397, + 12.9933917698363 + ], + [ + 77.542251859447902, + 12.9932516270008 + ], + [ + 77.542176380516096, + 12.9926610145121 + ], + [ + 77.542166141376796, + 12.9925263214081 + ], + [ + 77.542137708876396, + 12.9920886667609 + ], + [ + 77.541560743150896, + 12.9921849943536 + ], + [ + 77.5414926200298, + 12.991735595183201 + ], + [ + 77.541408981199694, + 12.991181833691501 + ], + [ + 77.541040790858105, + 12.9912316981078 + ], + [ + 77.5410773910681, + 12.9905583413304 + ], + [ + 77.541073627291993, + 12.990421380161299 + ], + [ + 77.541085458577001, + 12.9900403354308 + ], + [ + 77.541101860379001, + 12.9897297675593 + ], + [ + 77.541217004238405, + 12.989161668065201 + ], + [ + 77.540974664882299, + 12.989167744368601 + ], + [ + 77.540885803715099, + 12.989194771497701 + ], + [ + 77.540543125895397, + 12.989290547843 + ], + [ + 77.540555967879996, + 12.9889795787313 + ], + [ + 77.540518682841295, + 12.988285886003201 + ], + [ + 77.540862310329999, + 12.9881196921924 + ], + [ + 77.541705875825997, + 12.987690559835601 + ], + [ + 77.542294302124205, + 12.9873811085385 + ], + [ + 77.5425154197453, + 12.988926620757301 + ], + [ + 77.543816096677105, + 12.9888266942682 + ], + [ + 77.544601462631604, + 12.9887649428856 + ], + [ + 77.545619821818505, + 12.988707227614301 + ], + [ + 77.545596815285805, + 12.988456337719301 + ], + [ + 77.545463142775901, + 12.986768504246299 + ], + [ + 77.545169912143294, + 12.9850145014115 + ], + [ + 77.544798730048299, + 12.9850701646861 + ], + [ + 77.544597865298798, + 12.985100286467899 + ], + [ + 77.544357699399498, + 12.985151199517601 + ], + [ + 77.544037815516901, + 12.9852333848411 + ], + [ + 77.543692921829305, + 12.985321772093799 + ], + [ + 77.543620872145993, + 12.9853402368416 + ], + [ + 77.5434956819267, + 12.985373082731 + ], + [ + 77.543291519954494, + 12.985433679957101 + ], + [ + 77.542956633094704, + 12.9855330774039 + ], + [ + 77.5427907256814, + 12.9855821330412 + ], + [ + 77.542610265324697, + 12.985641573595201 + ], + [ + 77.542601446884902, + 12.985644478704099 + ], + [ + 77.5425182510361, + 12.9856718818278 + ], + [ + 77.5424090965669, + 12.985707835464099 + ], + [ + 77.542381039023994, + 12.9857171753856 + ], + [ + 77.542280537573006, + 12.9857506302438 + ], + [ + 77.542024611222004, + 12.9858358240028 + ], + [ + 77.541994764375502, + 12.9858451506748 + ], + [ + 77.541893368193499, + 12.985887024532 + ], + [ + 77.541876540695, + 12.9858939741921 + ], + [ + 77.541678250942098, + 12.9859758617794 + ], + [ + 77.541573947640202, + 12.986024314107601 + ], + [ + 77.541546861365006, + 12.986036945720301 + ], + [ + 77.541143560702295, + 12.986225027920501 + ], + [ + 77.540696267983805, + 12.9864620451775 + ], + [ + 77.539751266325496, + 12.9869614160373 + ], + [ + 77.539696031318201, + 12.9869905995438 + ], + [ + 77.539574573081595, + 12.987054772112501 + ], + [ + 77.539574472034403, + 12.987054801107799 + ], + [ + 77.539222660554003, + 12.9872407016148 + ], + [ + 77.539034779832605, + 12.9873399706161 + ], + [ + 77.538893792940101, + 12.987408982123 + ], + [ + 77.538126068148202, + 12.9877847738298 + ], + [ + 77.537966975029903, + 12.9878247255271 + ], + [ + 77.5378934623661, + 12.987843513061399 + ], + [ + 77.537698381332007, + 12.987879542749999 + ], + [ + 77.537691145242505, + 12.9878808791937 + ], + [ + 77.537506093874896, + 12.9879150571418 + ], + [ + 77.537494007686107, + 12.987802241430799 + ], + [ + 77.537445874048004, + 12.987541834558799 + ], + [ + 77.537444579445406, + 12.9875295699474 + ], + [ + 77.537436493822497, + 12.987452972310701 + ], + [ + 77.537433131907093, + 12.987421119877199 + ], + [ + 77.537398581965505, + 12.987105371044599 + ], + [ + 77.537360601774793, + 12.9867582790682 + ], + [ + 77.537355463126403, + 12.9867113153714 + ], + [ + 77.537352523168593, + 12.9866844495807 + ], + [ + 77.537304259741404, + 12.986241091135099 + ], + [ + 77.537273403496101, + 12.985920317173001 + ], + [ + 77.537272785356805, + 12.985913879658799 + ], + [ + 77.537250138798598, + 12.9856783899044 + ], + [ + 77.537228939798297, + 12.9854580661118 + ], + [ + 77.537176611525794, + 12.9849140671831 + ], + [ + 77.5371349523231, + 12.984480977053799 + ], + [ + 77.537094784855697, + 12.9840623965097 + ], + [ + 77.537073779601201, + 12.9838434982266 + ], + [ + 77.537046391303605, + 12.983471083989199 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "204", + "group": "Sangolli Rayanna", + "Corporatio": "West", + "ac_no": "167", + "ac": "Vijayanagar", + "corporat_1": "5", + "ward_id": "70", + "ward_name": "70 - Sangolli Rayanna Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ವಿಜಯನಗರ", + "ward_name_": "ಸಂಗೊಳ್ಳಿ ರಾಯಣ್ಣ ವಾರ್ಡ್", + "dig_ward_n": "Sangolli Rayanna", + "Assembly": "167 - Vijayanagar", + "Slno": "70" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.557805648871096, + 12.972301510827 + ], + [ + 77.557790940018506, + 12.9722522862953 + ], + [ + 77.557729392666701, + 12.972012540952401 + ], + [ + 77.557722460245401, + 12.9719855370569 + ], + [ + 77.557722396938502, + 12.9719852919389 + ], + [ + 77.557718235878099, + 12.971969084164799 + ], + [ + 77.557717797427699, + 12.9719673773269 + ], + [ + 77.557709387976402, + 12.9719346193229 + ], + [ + 77.557699000602597, + 12.971875996693299 + ], + [ + 77.557688019509797, + 12.9718132745869 + ], + [ + 77.557672404892699, + 12.9717240833535 + ], + [ + 77.557662534112694, + 12.971667702658699 + ], + [ + 77.557608375470494, + 12.9713583543622 + ], + [ + 77.557606475516295, + 12.9713475026354 + ], + [ + 77.557596001266802, + 12.971287673825101 + ], + [ + 77.557593504488096, + 12.9712734101841 + ], + [ + 77.557589563694194, + 12.971250901326901 + ], + [ + 77.557544166348606, + 12.9709915998487 + ], + [ + 77.557544087082803, + 12.970991145285099 + ], + [ + 77.557543075449601, + 12.970985364968101 + ], + [ + 77.557533495863396, + 12.9709436597596 + ], + [ + 77.557533394546098, + 12.9709432108336 + ], + [ + 77.557526564149896, + 12.9709130663487 + ], + [ + 77.557460723263006, + 12.9706224875407 + ], + [ + 77.557459542420304, + 12.9706172762581 + ], + [ + 77.557434163133706, + 12.970505267796501 + ], + [ + 77.557375815826504, + 12.970247758333899 + ], + [ + 77.557375457557498, + 12.970246177150599 + ], + [ + 77.557359011090398, + 12.970250143308 + ], + [ + 77.557355929848001, + 12.9702508864299 + ], + [ + 77.557185868192207, + 12.970286438028699 + ], + [ + 77.557175528630395, + 12.9702887983217 + ], + [ + 77.557157755761693, + 12.9700145465946 + ], + [ + 77.557154469280803, + 12.969967899003899 + ], + [ + 77.557154112702406, + 12.969962844948 + ], + [ + 77.557143861040799, + 12.9698173334962 + ], + [ + 77.557141485181603, + 12.969783618996701 + ], + [ + 77.557133505804103, + 12.969670365604699 + ], + [ + 77.557113308065396, + 12.9693836927171 + ], + [ + 77.5570905922864, + 12.969384635163999 + ], + [ + 77.556882340782096, + 12.969393272893999 + ], + [ + 77.556863534812393, + 12.9693940531177 + ], + [ + 77.5567714572706, + 12.9693965373762 + ], + [ + 77.556690396242104, + 12.969398724505901 + ], + [ + 77.556689967073595, + 12.969398735951501 + ], + [ + 77.556534291720297, + 12.969402936557 + ], + [ + 77.556529799451695, + 12.969401812533199 + ], + [ + 77.556409710794, + 12.969371773672099 + ], + [ + 77.556402880965805, + 12.9693700654931 + ], + [ + 77.556401576881498, + 12.9693697395115 + ], + [ + 77.5561129110813, + 12.969297532988801 + ], + [ + 77.555951870343904, + 12.969261942492601 + ], + [ + 77.555951631210604, + 12.9692618897312 + ], + [ + 77.555947996183704, + 12.969261086132899 + ], + [ + 77.555947384040707, + 12.9692609512077 + ], + [ + 77.555945171820596, + 12.969260462489 + ], + [ + 77.555662803328204, + 12.9691980593251 + ], + [ + 77.555635894957604, + 12.9691909613852 + ], + [ + 77.5556252991679, + 12.9691881662773 + ], + [ + 77.555599304334194, + 12.9691813087135 + ], + [ + 77.5555802474274, + 12.9691762811582 + ], + [ + 77.555553879898, + 12.9691692817937 + ], + [ + 77.555487953240103, + 12.969151782543101 + ], + [ + 77.555425777806605, + 12.9691352790793 + ], + [ + 77.5553313166007, + 12.9691102054067 + ], + [ + 77.555331210376593, + 12.969110177539401 + ], + [ + 77.555304716312406, + 12.969103145058501 + ], + [ + 77.555260101683601, + 12.9690913025646 + ], + [ + 77.555253470310902, + 12.969089541809501 + ], + [ + 77.5550467119063, + 12.9690346600681 + ], + [ + 77.554938025510907, + 12.969005810358301 + ], + [ + 77.554583328436095, + 12.968911658555999 + ], + [ + 77.554575775353698, + 12.968909653223101 + ], + [ + 77.554559904576195, + 12.968940525714901 + ], + [ + 77.554440118947895, + 12.9690389468071 + ], + [ + 77.554390242749804, + 12.969071627749599 + ], + [ + 77.554375691862404, + 12.9690811620974 + ], + [ + 77.554089682242605, + 12.9691258953819 + ], + [ + 77.554077880667407, + 12.9691297859081 + ], + [ + 77.553691148693403, + 12.969228650115801 + ], + [ + 77.553420593681494, + 12.969280134347001 + ], + [ + 77.553296092760803, + 12.9693038263429 + ], + [ + 77.552965411801097, + 12.9693546083146 + ], + [ + 77.552667244479906, + 12.969436314347501 + ], + [ + 77.552609895106301, + 12.969452029049901 + ], + [ + 77.552530585449105, + 12.9694737630589 + ], + [ + 77.552425692309797, + 12.969502505962 + ], + [ + 77.552031929878893, + 12.969704428835501 + ], + [ + 77.551969040942097, + 12.9697372885487 + ], + [ + 77.551630171051499, + 12.9699143494071 + ], + [ + 77.551556131935797, + 12.9699451681716 + ], + [ + 77.551581810820196, + 12.969972528803799 + ], + [ + 77.551668551136501, + 12.970064949576001 + ], + [ + 77.551679249445996, + 12.970075536202501 + ], + [ + 77.5518180800251, + 12.9702129189769 + ], + [ + 77.551869917117202, + 12.9702777723059 + ], + [ + 77.552007703788803, + 12.970450158064301 + ], + [ + 77.552042548024303, + 12.970488899966 + ], + [ + 77.552232279997597, + 12.9706998596624 + ], + [ + 77.552272036693907, + 12.9707417145316 + ], + [ + 77.552400963669299, + 12.9708774467477 + ], + [ + 77.552410797397897, + 12.9708877996881 + ], + [ + 77.552417113891096, + 12.9708944495215 + ], + [ + 77.552545575223107, + 12.9710461051971 + ], + [ + 77.552571345462894, + 12.9710765284318 + ], + [ + 77.552649488496101, + 12.9711399407476 + ], + [ + 77.552768892101696, + 12.9712368351155 + ], + [ + 77.552865803140904, + 12.971344309675199 + ], + [ + 77.552940621606794, + 12.9714272833073 + ], + [ + 77.552954931137194, + 12.971448242288499 + ], + [ + 77.553024595328196, + 12.9715502784234 + ], + [ + 77.553037675552801, + 12.9715860011771 + ], + [ + 77.553060421718001, + 12.971648125758 + ], + [ + 77.553119104747296, + 12.971852492644199 + ], + [ + 77.553145964183599, + 12.9719248112385 + ], + [ + 77.553211625767702, + 12.972077830932699 + ], + [ + 77.553226238532801, + 12.972111885287999 + ], + [ + 77.553289621906103, + 12.972350361284001 + ], + [ + 77.553373304168503, + 12.9725229048505 + ], + [ + 77.553512789676006, + 12.9724812753742 + ], + [ + 77.553764487829795, + 12.972425019223 + ], + [ + 77.553986952954503, + 12.9723702460961 + ], + [ + 77.554074312690801, + 12.9723323364016 + ], + [ + 77.554081584657595, + 12.972330422833499 + ], + [ + 77.554272429755699, + 12.972280192712899 + ], + [ + 77.554328472205896, + 12.9722784470394 + ], + [ + 77.554460066930602, + 12.9722759593162 + ], + [ + 77.554599740682605, + 12.9722291696082 + ], + [ + 77.554844969319106, + 12.9722554456698 + ], + [ + 77.554942345725394, + 12.9722437325175 + ], + [ + 77.554966730186194, + 12.9722446882532 + ], + [ + 77.555184245892605, + 12.9721827911305 + ], + [ + 77.555247502558402, + 12.972171412170599 + ], + [ + 77.555479553614006, + 12.9721270527227 + ], + [ + 77.555479916554503, + 12.9721287639228 + ], + [ + 77.555500322926505, + 12.972225103490899 + ], + [ + 77.555513494251599, + 12.972285215851 + ], + [ + 77.555547620382697, + 12.972440970327 + ], + [ + 77.555441878301494, + 12.972458108512299 + ], + [ + 77.555601126673807, + 12.973169041233801 + ], + [ + 77.555680253302, + 12.9731540323777 + ], + [ + 77.555928081684101, + 12.973107023793 + ], + [ + 77.556136605143294, + 12.973047604711301 + ], + [ + 77.557235657198206, + 12.9726815065131 + ], + [ + 77.557174939204302, + 12.972477779221199 + ], + [ + 77.5576313836727, + 12.9723399295622 + ], + [ + 77.557800226683298, + 12.9723027662004 + ], + [ + 77.557805648871096, + 12.972301510827 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "183", + "group": "Chowdeshwari Nagar", + "Corporatio": "West", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "5", + "ward_id": "44", + "ward_name": "44 - Chowdeshwari Nagar", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಚೌಡೇಶ್ವರಿ ನಗರ", + "dig_ward_n": "Chowdeshwari Nagar", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "44" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.505226842650501, + 12.9928580562663 + ], + [ + 77.505208403344, + 12.9919940180952 + ], + [ + 77.505145703983601, + 12.9919786018355 + ], + [ + 77.504694482946206, + 12.991829360278 + ], + [ + 77.504693761724496, + 12.9918722830303 + ], + [ + 77.504691369799204, + 12.991920868709601 + ], + [ + 77.504686447620102, + 12.992037044517 + ], + [ + 77.5046862479916, + 12.9920417599518 + ], + [ + 77.504680493790403, + 12.9921570104772 + ], + [ + 77.504662587488596, + 12.992495992082601 + ], + [ + 77.504652872610905, + 12.9926756544988 + ], + [ + 77.504647445060797, + 12.992766055886699 + ], + [ + 77.504641532336095, + 12.9928654968581 + ], + [ + 77.504615538938197, + 12.993087102699899 + ], + [ + 77.504570321936498, + 12.993401501711499 + ], + [ + 77.504554903158194, + 12.993518702119299 + ], + [ + 77.504539824198503, + 12.9936333152679 + ], + [ + 77.504533943635494, + 12.993678546504499 + ], + [ + 77.504500702881003, + 12.993923938875801 + ], + [ + 77.504491041009999, + 12.9939940525691 + ], + [ + 77.504467216589106, + 12.9942596826659 + ], + [ + 77.504465117324997, + 12.9942800314476 + ], + [ + 77.504321138015797, + 12.9942780319089 + ], + [ + 77.504277131268793, + 12.9943112078321 + ], + [ + 77.504083024108198, + 12.9946507593148 + ], + [ + 77.504050997203095, + 12.994730123590401 + ], + [ + 77.504040317789702, + 12.9947562019307 + ], + [ + 77.504040911908902, + 12.994987715694499 + ], + [ + 77.504073601000599, + 12.995211323398999 + ], + [ + 77.504075533928599, + 12.9952245481249 + ], + [ + 77.504425632992394, + 12.995223430425501 + ], + [ + 77.504512993507106, + 12.9952067767477 + ], + [ + 77.5045467268652, + 12.995182734758201 + ], + [ + 77.504561629270995, + 12.9951758148417 + ], + [ + 77.504601775524606, + 12.9951596165323 + ], + [ + 77.504732986137498, + 12.9951515747288 + ], + [ + 77.504806246536404, + 12.995164420401 + ], + [ + 77.504854376385893, + 12.9951978370032 + ], + [ + 77.504897741383203, + 12.995215488481699 + ], + [ + 77.504938769266502, + 12.9952297744096 + ], + [ + 77.504969614314305, + 12.995262228366199 + ], + [ + 77.505001069140604, + 12.995298064522901 + ], + [ + 77.505010530913495, + 12.9953228192207 + ], + [ + 77.505066219700595, + 12.995427150965901 + ], + [ + 77.505092692732006, + 12.995476749241901 + ], + [ + 77.505225218813194, + 12.995944156041499 + ], + [ + 77.505268139083796, + 12.9961470271449 + ], + [ + 77.505297136509895, + 12.996282270830701 + ], + [ + 77.505318714638307, + 12.996366764794301 + ], + [ + 77.505339061894006, + 12.996443365094301 + ], + [ + 77.505369109008399, + 12.996568434368299 + ], + [ + 77.505387141829701, + 12.996643927628901 + ], + [ + 77.505444366465895, + 12.996837625720399 + ], + [ + 77.505449752529699, + 12.9968579022638 + ], + [ + 77.505536004646004, + 12.9970750367996 + ], + [ + 77.505550208864506, + 12.9971132980319 + ], + [ + 77.505615347489993, + 12.997292237958501 + ], + [ + 77.505647437394899, + 12.997391312112301 + ], + [ + 77.505650407004893, + 12.9974003183479 + ], + [ + 77.505734798447605, + 12.9976615158182 + ], + [ + 77.505743707302699, + 12.997688534517801 + ], + [ + 77.505764229382805, + 12.997754616432299 + ], + [ + 77.505811546165702, + 12.9979069759393 + ], + [ + 77.505829613293898, + 12.9979858568773 + ], + [ + 77.505874758513201, + 12.9981808007011 + ], + [ + 77.505901791280195, + 12.998292346573299 + ], + [ + 77.505967916861806, + 12.998569531235701 + ], + [ + 77.506031255284299, + 12.998834116495001 + ], + [ + 77.506044250559896, + 12.9988884036829 + ], + [ + 77.506607468752705, + 12.998720337963499 + ], + [ + 77.5071196561573, + 12.9985742218393 + ], + [ + 77.507306841945194, + 12.998520463423899 + ], + [ + 77.507297152934598, + 12.998473123858201 + ], + [ + 77.507292013535505, + 12.998420093547599 + ], + [ + 77.507439492370295, + 12.998368977273801 + ], + [ + 77.507744779987405, + 12.9982632566393 + ], + [ + 77.507922070263405, + 12.998201359942399 + ], + [ + 77.508024236212904, + 12.998165690761599 + ], + [ + 77.508263534486503, + 12.9980831942924 + ], + [ + 77.508312317648503, + 12.998066911924401 + ], + [ + 77.508599857057504, + 12.997971526121701 + ], + [ + 77.5088340181712, + 12.997893596266 + ], + [ + 77.508877653198397, + 12.9978807516323 + ], + [ + 77.509083396805593, + 12.9978170189412 + ], + [ + 77.509114738433993, + 12.9978073107306 + ], + [ + 77.509544720359997, + 12.9976755371561 + ], + [ + 77.510075036137906, + 12.997557474570099 + ], + [ + 77.5100904214558, + 12.9975539657528 + ], + [ + 77.510095719031, + 12.997552757167499 + ], + [ + 77.510370907480706, + 12.9974891110577 + ], + [ + 77.510516183567304, + 12.9980207633226 + ], + [ + 77.510557313745295, + 12.9981370454329 + ], + [ + 77.5106483546748, + 12.998394432006799 + ], + [ + 77.510663279734601, + 12.9983897702334 + ], + [ + 77.511042254747693, + 12.998282203939 + ], + [ + 77.512148520367703, + 12.998060311497699 + ], + [ + 77.512184150953701, + 12.9980531905709 + ], + [ + 77.512187514761706, + 12.998044123165799 + ], + [ + 77.5124404744099, + 12.9980032770889 + ], + [ + 77.512626169241102, + 12.9979732460113 + ], + [ + 77.512691729303299, + 12.9979647059917 + ], + [ + 77.512788324974295, + 12.9979502187823 + ], + [ + 77.513058311421602, + 12.998914334249701 + ], + [ + 77.513267429193604, + 12.999780784409801 + ], + [ + 77.513300515831304, + 13.0000356984678 + ], + [ + 77.513301129853701, + 13.000096677734801 + ], + [ + 77.513386415115804, + 13.000102628082701 + ], + [ + 77.513531514381697, + 13.0001012230739 + ], + [ + 77.513654226030098, + 13.000106810916099 + ], + [ + 77.513727961350995, + 13.000109484930601 + ], + [ + 77.513896884092802, + 13.000129306756801 + ], + [ + 77.5139890105864, + 13.0001284145143 + ], + [ + 77.514031134290093, + 13.0001370413781 + ], + [ + 77.514094100199998, + 13.000156759918401 + ], + [ + 77.514153649820699, + 13.0002374967068 + ], + [ + 77.514191451592794, + 13.0002743992787 + ], + [ + 77.514238170274098, + 13.0002818522411 + ], + [ + 77.514302162680494, + 13.0002891378737 + ], + [ + 77.514346646455394, + 13.000303388593499 + ], + [ + 77.514373314845997, + 13.0003211999435 + ], + [ + 77.514403631377803, + 13.000358174984299 + ], + [ + 77.514424860401107, + 13.000407660954499 + ], + [ + 77.514413121450104, + 13.000442784671201 + ], + [ + 77.514419830566894, + 13.000479988390801 + ], + [ + 77.514446726509902, + 13.0005203846217 + ], + [ + 77.514476849679696, + 13.0005381624884 + ], + [ + 77.514529936245097, + 13.000548941764499 + ], + [ + 77.5145888831197, + 13.0005698284484 + ], + [ + 77.514610842829697, + 13.0005775211899 + ], + [ + 77.514732300659702, + 13.000572956431199 + ], + [ + 77.514788762335698, + 13.0005757974697 + ], + [ + 77.514865622523402, + 13.0005456895774 + ], + [ + 77.514924496624403, + 13.00050220368 + ], + [ + 77.514965600836902, + 13.0004667954294 + ], + [ + 77.514982892797207, + 13.000411289516901 + ], + [ + 77.514988445887994, + 13.0003909073321 + ], + [ + 77.515086125482796, + 13.0003696324994 + ], + [ + 77.515139264353706, + 13.0003284608466 + ], + [ + 77.515162666934799, + 13.000307905703499 + ], + [ + 77.515186520127699, + 13.000274923295301 + ], + [ + 77.515182485033193, + 13.0002173653257 + ], + [ + 77.515160732448393, + 13.000115934214699 + ], + [ + 77.515147573516202, + 12.9998958376238 + ], + [ + 77.515146481138899, + 12.999787430190599 + ], + [ + 77.515152177603696, + 12.999724131151501 + ], + [ + 77.515248798654994, + 12.9995978366121 + ], + [ + 77.515441396412896, + 12.9993384775919 + ], + [ + 77.515591768141107, + 12.9993460552478 + ], + [ + 77.515934409504993, + 12.9992331872403 + ], + [ + 77.516019907887596, + 12.9990889306511 + ], + [ + 77.516088137290097, + 12.999002438465901 + ], + [ + 77.516175583884305, + 12.9989372177224 + ], + [ + 77.516303044291305, + 12.9988998429359 + ], + [ + 77.5165591327345, + 12.9988838082472 + ], + [ + 77.5166796884332, + 12.998904097239199 + ], + [ + 77.516767207985097, + 12.9989032487504 + ], + [ + 77.516854825114507, + 12.998854966456699 + ], + [ + 77.5169307215332, + 12.9987864694239 + ], + [ + 77.517003516169595, + 12.9987530123922 + ], + [ + 77.517102517206496, + 12.9987486644181 + ], + [ + 77.517245066575995, + 12.998780033421999 + ], + [ + 77.517417226580704, + 12.998778363968199 + ], + [ + 77.517559263475107, + 12.998758916894801 + ], + [ + 77.517650483128804, + 12.9987252810117 + ], + [ + 77.517704715801401, + 12.9986784515918 + ], + [ + 77.517721189923407, + 12.9986044104856 + ], + [ + 77.517722343675601, + 12.998599225958399 + ], + [ + 77.517696576324695, + 12.9985565604687 + ], + [ + 77.517583112450396, + 12.9985542728 + ], + [ + 77.5174887292047, + 12.9985597055146 + ], + [ + 77.517463292153096, + 12.998549788017099 + ], + [ + 77.517445506125696, + 12.9984991396268 + ], + [ + 77.517442274168999, + 12.9984641610361 + ], + [ + 77.517432182540503, + 12.9980915725165 + ], + [ + 77.517420749422797, + 12.9978714596069 + ], + [ + 77.517417263456906, + 12.9976399761024 + ], + [ + 77.517387247481807, + 12.997290167798701 + ], + [ + 77.517410376317699, + 12.997242510717999 + ], + [ + 77.517435375574493, + 12.9971519200959 + ], + [ + 77.517493609282198, + 12.9971592609021 + ], + [ + 77.517526497188598, + 12.9971657181149 + ], + [ + 77.5175622526193, + 12.9971710181646 + ], + [ + 77.517598572445195, + 12.997175183383399 + ], + [ + 77.517710285565897, + 12.997175229427 + ], + [ + 77.517745961279203, + 12.997172624755899 + ], + [ + 77.517789099380707, + 12.997167689006799 + ], + [ + 77.517801168026693, + 12.9971653132628 + ], + [ + 77.517827585668599, + 12.997158280953901 + ], + [ + 77.517882644352198, + 12.9971362892991 + ], + [ + 77.518363872656195, + 12.9971191989841 + ], + [ + 77.518651303185706, + 12.9972130679211 + ], + [ + 77.518830687820497, + 12.997271650366001 + ], + [ + 77.519068296589793, + 12.997421807460199 + ], + [ + 77.519058610844397, + 12.997432065602601 + ], + [ + 77.519045019961595, + 12.997454784501601 + ], + [ + 77.519030967237896, + 12.9974888013961 + ], + [ + 77.519008876347101, + 12.9975251549855 + ], + [ + 77.5189924293323, + 12.9975501602985 + ], + [ + 77.518969038742497, + 12.997571844927201 + ], + [ + 77.518932439332602, + 12.997597045767501 + ], + [ + 77.518915382341405, + 12.9976186689412 + ], + [ + 77.518882927335596, + 12.997655123081501 + ], + [ + 77.518865915911604, + 12.997681263217601 + ], + [ + 77.518867409291303, + 12.997715129275999 + ], + [ + 77.518872260130394, + 12.997796395525199 + ], + [ + 77.518886255144594, + 12.997870796943101 + ], + [ + 77.518903567391803, + 12.9980456784594 + ], + [ + 77.518907129969506, + 12.998113404984499 + ], + [ + 77.5189123971154, + 12.9981788562669 + ], + [ + 77.518912887077605, + 12.998227413627999 + ], + [ + 77.518899540769596, + 12.9983314434643 + ], + [ + 77.518885288232298, + 12.9984027309001 + ], + [ + 77.518875887310301, + 12.9984412200675 + ], + [ + 77.518864297193204, + 12.998491023991599 + ], + [ + 77.518860995950604, + 12.998563334521 + ], + [ + 77.518872933247806, + 12.998605004701099 + ], + [ + 77.518892389939296, + 12.9986499899734 + ], + [ + 77.518927090530497, + 12.998721931764001 + ], + [ + 77.518964031939504, + 12.9987306081222 + ], + [ + 77.519047554967301, + 12.998733185708 + ], + [ + 77.519114978801497, + 12.9987381781955 + ], + [ + 77.5192009818809, + 12.998701204370899 + ], + [ + 77.519256257235597, + 12.998700667958399 + ], + [ + 77.519308653663202, + 12.9987001594732 + ], + [ + 77.519342875703501, + 12.998724673082201 + ], + [ + 77.519364692611802, + 12.998775282152399 + ], + [ + 77.519369002103701, + 12.9988599416625 + ], + [ + 77.519362964790901, + 12.998889363383601 + ], + [ + 77.519341335683507, + 12.998914419018501 + ], + [ + 77.519305089454605, + 12.9989746263951 + ], + [ + 77.519281054620606, + 12.998989541213801 + ], + [ + 77.519268786225993, + 12.9990291875667 + ], + [ + 77.519269333275005, + 12.9990833911141 + ], + [ + 77.519251398192296, + 12.9991321272707 + ], + [ + 77.519226947109303, + 12.999162857043901 + ], + [ + 77.519208943634595, + 12.999204817756199 + ], + [ + 77.519206520573107, + 12.9992500153196 + ], + [ + 77.519207329744802, + 12.9993301914025 + ], + [ + 77.519205032051602, + 12.999387810612401 + ], + [ + 77.519189998671806, + 12.9994387773118 + ], + [ + 77.519177878412194, + 12.999493103793901 + ], + [ + 77.519182974291098, + 12.9996556809135 + ], + [ + 77.519175585225, + 12.9998364488152 + ], + [ + 77.519176166480506, + 12.9998940400849 + ], + [ + 77.519152137023895, + 12.9999665517667 + ], + [ + 77.519131197577906, + 13.0000028942212 + ], + [ + 77.519127089453903, + 13.0000059246121 + ], + [ + 77.519109477192103, + 13.000018915931699 + ], + [ + 77.519069770610599, + 13.0000215599766 + ], + [ + 77.518958734680695, + 13.0000316723312 + ], + [ + 77.518691511982695, + 13.0000286186326 + ], + [ + 77.518648903651894, + 13.000029032067101 + ], + [ + 77.518485944168205, + 13.0000294838693 + ], + [ + 77.518452548444202, + 13.000029807886699 + ], + [ + 77.518440605010696, + 13.0000446053381 + ], + [ + 77.518387061983802, + 13.000102721762699 + ], + [ + 77.5183217122092, + 13.000189186524301 + ], + [ + 77.518301405373407, + 13.0002311695571 + ], + [ + 77.518294746564294, + 13.0002560799006 + ], + [ + 77.518262764431299, + 13.000282365277601 + ], + [ + 77.518227338949998, + 13.0003098134098 + ], + [ + 77.518217698647405, + 13.0003245885111 + ], + [ + 77.518217835366499, + 13.000338139407599 + ], + [ + 77.518219653880294, + 13.0003471565804 + ], + [ + 77.518230798954903, + 13.000367376789001 + ], + [ + 77.518240906387206, + 13.000398900582701 + ], + [ + 77.518249320635206, + 13.000433828858 + ], + [ + 77.5182495371117, + 13.000455284443399 + ], + [ + 77.518235227408297, + 13.000520925682499 + ], + [ + 77.518205462524904, + 13.0005957516794 + ], + [ + 77.518187424627101, + 13.0006343246428 + ], + [ + 77.518160231051596, + 13.000678633190599 + ], + [ + 77.518125147304104, + 13.0007399585631 + ], + [ + 77.518103204179596, + 13.000790992282701 + ], + [ + 77.518076825620895, + 13.000859009311601 + ], + [ + 77.5180559657027, + 13.0009032564097 + ], + [ + 77.518003853582698, + 13.000931995764599 + ], + [ + 77.517977640638804, + 13.000959354509501 + ], + [ + 77.517961837493999, + 13.000991129674899 + ], + [ + 77.517958416927399, + 13.000994550914299 + ], + [ + 77.517959739399402, + 13.0010114783659 + ], + [ + 77.517964237038001, + 13.001057738168299 + ], + [ + 77.517974943059897, + 13.001091514869101 + ], + [ + 77.517977080576401, + 13.0011321508062 + ], + [ + 77.517965376320404, + 13.0011706623214 + ], + [ + 77.517951334718006, + 13.001205808455399 + ], + [ + 77.517935081089405, + 13.001250010865 + ], + [ + 77.517912134420797, + 13.0013157358939 + ], + [ + 77.517901461653494, + 13.0013994114857 + ], + [ + 77.517900235561996, + 13.0014491148718 + ], + [ + 77.517898205822604, + 13.0014762390126 + ], + [ + 77.517906979416395, + 13.0014897061233 + ], + [ + 77.517927810463803, + 13.0014996682046 + ], + [ + 77.517941663650404, + 13.001502921866599 + ], + [ + 77.517943561922607, + 13.001519843731399 + ], + [ + 77.517940505929005, + 13.0015594007002 + ], + [ + 77.517951234768702, + 13.0015954358804 + ], + [ + 77.517952819295601, + 13.0016383358853 + ], + [ + 77.517954745623697, + 13.001715113134599 + ], + [ + 77.517929592182497, + 13.0018474913487 + ], + [ + 77.517925663317698, + 13.001971758188001 + ], + [ + 77.517927349556302, + 13.0021388859273 + ], + [ + 77.517935222254806, + 13.0021772075165 + ], + [ + 77.517970521860207, + 13.002251402274799 + ], + [ + 77.517979352462305, + 13.0022705155837 + ], + [ + 77.518105688842994, + 13.002283300344599 + ], + [ + 77.519867020052999, + 13.002341997308999 + ], + [ + 77.519899588422604, + 13.0024173743455 + ], + [ + 77.520007318849395, + 13.002735179043199 + ], + [ + 77.520191331337898, + 13.0034205012433 + ], + [ + 77.520521554547301, + 13.0033385788615 + ], + [ + 77.521021534444799, + 13.0032887497839 + ], + [ + 77.521046871263906, + 13.003582656885801 + ], + [ + 77.521361047821202, + 13.0035429625358 + ], + [ + 77.521326901994399, + 13.0030838237873 + ], + [ + 77.521910487301199, + 13.0029152428414 + ], + [ + 77.522002986174698, + 13.002891890693601 + ], + [ + 77.522003537585107, + 13.002891751620201 + ], + [ + 77.522131724205806, + 13.002858901276401 + ], + [ + 77.522186759116593, + 13.002844797066601 + ], + [ + 77.522278657744494, + 13.0028213169479 + ], + [ + 77.522505536663502, + 13.002763773742799 + ], + [ + 77.522518169870594, + 13.0027602638082 + ], + [ + 77.522724953891299, + 13.0027085615856 + ], + [ + 77.522795017011006, + 13.002689810947199 + ], + [ + 77.522812820915306, + 13.002685120484101 + ], + [ + 77.522814636683194, + 13.0026846420591 + ], + [ + 77.523082846132795, + 13.0025868608273 + ], + [ + 77.523397041186698, + 13.0025296759631 + ], + [ + 77.523399908727598, + 13.002528518734 + ], + [ + 77.523677308155399, + 13.0024558018545 + ], + [ + 77.523648248407994, + 13.002332483225199 + ], + [ + 77.523571555401404, + 13.001968286174399 + ], + [ + 77.523505017785297, + 13.0016737387039 + ], + [ + 77.523507019421601, + 13.0016739658916 + ], + [ + 77.5239707401918, + 13.0017313799679 + ], + [ + 77.524105869893901, + 13.0017111105126 + ], + [ + 77.5243186991746, + 13.001631721812601 + ], + [ + 77.526051737603296, + 13.0008530369046 + ], + [ + 77.526320307886095, + 13.000733109294099 + ], + [ + 77.526191565174102, + 13.0004508149004 + ], + [ + 77.527451668489206, + 12.9998440868236 + ], + [ + 77.527827171521096, + 12.999678934073801 + ], + [ + 77.527824903871903, + 12.9996413390496 + ], + [ + 77.527823019221003, + 12.9996100845007 + ], + [ + 77.527822683340602, + 12.9995769184744 + ], + [ + 77.527821681212799, + 12.9994779642334 + ], + [ + 77.527814062795699, + 12.999408019066999 + ], + [ + 77.527818723066204, + 12.9994053012047 + ], + [ + 77.527863294210704, + 12.999379306038 + ], + [ + 77.527915914487494, + 12.9993594348395 + ], + [ + 77.527976876021896, + 12.9993364141973 + ], + [ + 77.528012517377107, + 12.999297308907201 + ], + [ + 77.528060656965394, + 12.9992444900123 + ], + [ + 77.528062378261197, + 12.9992426021513 + ], + [ + 77.528082804999897, + 12.999220189468801 + ], + [ + 77.528130702867003, + 12.999167795746301 + ], + [ + 77.528132490736098, + 12.9991658403796 + ], + [ + 77.528166763616397, + 12.999128349362101 + ], + [ + 77.5281905425838, + 12.999102338009299 + ], + [ + 77.528204684214501, + 12.999086869207799 + ], + [ + 77.528156192731899, + 12.9990749186884 + ], + [ + 77.5280739943952, + 12.999055642179901 + ], + [ + 77.527855956048697, + 12.999004508333201 + ], + [ + 77.527792327256606, + 12.9989895863465 + ], + [ + 77.527751525479601, + 12.998980017415301 + ], + [ + 77.527707700976705, + 12.998969739770599 + ], + [ + 77.527455172269399, + 12.998907683186101 + ], + [ + 77.527448268985907, + 12.9989059868133 + ], + [ + 77.527441616010904, + 12.998904352149999 + ], + [ + 77.5274414968586, + 12.998904322591899 + ], + [ + 77.527312661126103, + 12.998872662398799 + ], + [ + 77.527213028118794, + 12.9988481778422 + ], + [ + 77.527115848313301, + 12.9988242963746 + ], + [ + 77.5270717380685, + 12.9988134567219 + ], + [ + 77.527062307707396, + 12.998811138952799 + ], + [ + 77.526685072779301, + 12.998716576859399 + ], + [ + 77.526681806632396, + 12.998715758477999 + ], + [ + 77.526359729732505, + 12.998635023370101 + ], + [ + 77.526323067446398, + 12.998625892751599 + ], + [ + 77.526259617823996, + 12.9986100904322 + ], + [ + 77.525993148498003, + 12.9985437255598 + ], + [ + 77.525521097935496, + 12.9984252991079 + ], + [ + 77.525340276350306, + 12.9983799345967 + ], + [ + 77.525325785573798, + 12.998376299024001 + ], + [ + 77.525246383289002, + 12.9983601592202 + ], + [ + 77.525206035879904, + 12.9983519578147 + ], + [ + 77.524848586269101, + 12.998279299403 + ], + [ + 77.524715266523401, + 12.9982483400478 + ], + [ + 77.524377026643805, + 12.998200483081099 + ], + [ + 77.5241389107548, + 12.9981431787771 + ], + [ + 77.524012122410895, + 12.9981126668958 + ], + [ + 77.523997369930797, + 12.9981091160035 + ], + [ + 77.523989119521502, + 12.998107130866 + ], + [ + 77.522459398930494, + 12.997781792145499 + ], + [ + 77.521728382457894, + 12.9975764461862 + ], + [ + 77.521695029426098, + 12.9975690987053 + ], + [ + 77.521662130041705, + 12.997561511908801 + ], + [ + 77.521473359129303, + 12.9975147833348 + ], + [ + 77.521282285138398, + 12.997468076976901 + ], + [ + 77.521249893134694, + 12.997453710001199 + ], + [ + 77.521059117393193, + 12.997386537767101 + ], + [ + 77.520864023885807, + 12.997249718943801 + ], + [ + 77.520618256740207, + 12.9970993871503 + ], + [ + 77.520357281933897, + 12.996928756630099 + ], + [ + 77.520257222823403, + 12.9968698100146 + ], + [ + 77.520106452993801, + 12.9967809877898 + ], + [ + 77.519538053386199, + 12.996578700673901 + ], + [ + 77.519228706212303, + 12.996459034985801 + ], + [ + 77.519203628091901, + 12.9964493336962 + ], + [ + 77.5190965468651, + 12.9964079108431 + ], + [ + 77.519054130439201, + 12.996389111653899 + ], + [ + 77.5181316955792, + 12.9959822195441 + ], + [ + 77.517936418619698, + 12.995896470146 + ], + [ + 77.517681774253901, + 12.9957846516426 + ], + [ + 77.517511962714593, + 12.9957100849012 + ], + [ + 77.517140880695194, + 12.9955545117932 + ], + [ + 77.5170643455766, + 12.995520903318299 + ], + [ + 77.516774291782397, + 12.995396541763601 + ], + [ + 77.516642540322906, + 12.995335733397701 + ], + [ + 77.516497275893201, + 12.995284215198801 + ], + [ + 77.516367213555, + 12.995217494908401 + ], + [ + 77.516187446626802, + 12.995176112680801 + ], + [ + 77.516030603356, + 12.995150985759 + ], + [ + 77.515838043530593, + 12.9951678769718 + ], + [ + 77.515647172826505, + 12.9950800426654 + ], + [ + 77.515512043124403, + 12.9949786953889 + ], + [ + 77.514995172014096, + 12.9947236380763 + ], + [ + 77.514621876212203, + 12.994514187038201 + ], + [ + 77.514410459255501, + 12.9943824660341 + ], + [ + 77.514408307128505, + 12.9943815617049 + ], + [ + 77.513863616978696, + 12.9941527920844 + ], + [ + 77.513397263287501, + 12.993924683713001 + ], + [ + 77.511539229884406, + 12.9934534188772 + ], + [ + 77.510514777830906, + 12.993232143990101 + ], + [ + 77.510364524306198, + 12.993195132771399 + ], + [ + 77.510044093307997, + 12.9931250800539 + ], + [ + 77.509965733269098, + 12.9931079492577 + ], + [ + 77.509791173881496, + 12.993069786165901 + ], + [ + 77.509518196278293, + 12.9930091799817 + ], + [ + 77.509229356540203, + 12.992943304252 + ], + [ + 77.509131387506201, + 12.992912900068999 + ], + [ + 77.508933760317007, + 12.9928706720371 + ], + [ + 77.508842547768097, + 12.9928504025818 + ], + [ + 77.508241220594002, + 12.9926958479851 + ], + [ + 77.508270054463907, + 12.992948864526699 + ], + [ + 77.508300983505904, + 12.9932649664525 + ], + [ + 77.508313518774898, + 12.993393074739499 + ], + [ + 77.508364526447195, + 12.9937507042217 + ], + [ + 77.508385344223797, + 12.9942338310398 + ], + [ + 77.508421833602398, + 12.9947115755027 + ], + [ + 77.508057112275793, + 12.9948047416256 + ], + [ + 77.507258152011701, + 12.9950935556357 + ], + [ + 77.507281799709602, + 12.995214327806901 + ], + [ + 77.507282644270205, + 12.995279358975999 + ], + [ + 77.507062698510197, + 12.9953297301101 + ], + [ + 77.506986025663196, + 12.995341227322299 + ], + [ + 77.5067615503567, + 12.9953781725706 + ], + [ + 77.506758172114203, + 12.995151830319699 + ], + [ + 77.506759861235494, + 12.994898462128299 + ], + [ + 77.506760283515803, + 12.9947823350407 + ], + [ + 77.5067730047097, + 12.9945781625057 + ], + [ + 77.506740911405501, + 12.9943780016345 + ], + [ + 77.506646611066898, + 12.994390318430099 + ], + [ + 77.506616352830704, + 12.9940692353101 + ], + [ + 77.5065163702142, + 12.994078312870901 + ], + [ + 77.506481734734706, + 12.993778902031501 + ], + [ + 77.506463701385897, + 12.9936515236151 + ], + [ + 77.506526961228602, + 12.9936455124988 + ], + [ + 77.506453285724007, + 12.993127418471 + ], + [ + 77.505842266459993, + 12.9932427677081 + ], + [ + 77.505277794017104, + 12.993293432831001 + ], + [ + 77.505226842650501, + 12.9928580562663 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "184", + "group": "Peenya", + "Corporatio": "West", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "5", + "ward_id": "4", + "ward_name": "4 - Peenya", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಪೀಣ್ಯ", + "dig_ward_n": "Peenya", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "4" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.535006455690905, + 13.026563362979401 + ], + [ + 77.534890933813003, + 13.0263564266691 + ], + [ + 77.534698547874399, + 13.0260102056539 + ], + [ + 77.534632609676606, + 13.025891751727601 + ], + [ + 77.534518502004303, + 13.025686764836401 + ], + [ + 77.534138326986806, + 13.0250037992354 + ], + [ + 77.534126867645398, + 13.025009557998599 + ], + [ + 77.534113382107705, + 13.0249859737982 + ], + [ + 77.534094713740402, + 13.0249964694884 + ], + [ + 77.533908956257207, + 13.025100906813201 + ], + [ + 77.533668903395196, + 13.025235908130901 + ], + [ + 77.532347468240403, + 13.025955674004299 + ], + [ + 77.532332576711696, + 13.0259637249266 + ], + [ + 77.531105009188806, + 13.0266417150186 + ], + [ + 77.531063202073099, + 13.026664710255901 + ], + [ + 77.530638345854697, + 13.0257156104994 + ], + [ + 77.530565312373795, + 13.025555957480799 + ], + [ + 77.528455653970198, + 13.0210027173892 + ], + [ + 77.528275186345198, + 13.021038358154 + ], + [ + 77.527935216554297, + 13.021148655566 + ], + [ + 77.527272966460501, + 13.021362090140499 + ], + [ + 77.527226816020402, + 13.0213770851964 + ], + [ + 77.526785640961293, + 13.0215204324223 + ], + [ + 77.525962100348806, + 13.0218028908166 + ], + [ + 77.525146237854898, + 13.022104470957901 + ], + [ + 77.524987844876605, + 13.022159093425699 + ], + [ + 77.523994446093894, + 13.0225019271299 + ], + [ + 77.523648981278697, + 13.022622743479101 + ], + [ + 77.523501494105901, + 13.0226738709075 + ], + [ + 77.523208864610098, + 13.0228370874188 + ], + [ + 77.522527412043999, + 13.0232186646691 + ], + [ + 77.522467268968995, + 13.023250871817901 + ], + [ + 77.522390304043, + 13.0232924419031 + ], + [ + 77.522007338405302, + 13.0234992873596 + ], + [ + 77.521931807507002, + 13.023547455028799 + ], + [ + 77.521825951314, + 13.0236151167054 + ], + [ + 77.521648186201503, + 13.023804318299099 + ], + [ + 77.521480377219206, + 13.0240668305358 + ], + [ + 77.521380471688005, + 13.024324164605799 + ], + [ + 77.521273320035903, + 13.024605285479501 + ], + [ + 77.521227876727195, + 13.0247243091739 + ], + [ + 77.520836558247296, + 13.025720813459399 + ], + [ + 77.520789398500099, + 13.0258409831878 + ], + [ + 77.520783224176697, + 13.0258568541327 + ], + [ + 77.520767719939997, + 13.025896371341499 + ], + [ + 77.520588410464498, + 13.0263534039773 + ], + [ + 77.520553656359496, + 13.0264474779962 + ], + [ + 77.520312047467698, + 13.0271003331227 + ], + [ + 77.520184238771805, + 13.027446027734801 + ], + [ + 77.519950985042797, + 13.0280141003895 + ], + [ + 77.519745318867606, + 13.028519790471501 + ], + [ + 77.519517700986697, + 13.029018917939901 + ], + [ + 77.519199637668805, + 13.0298051698253 + ], + [ + 77.5191805847045, + 13.029852268291901 + ], + [ + 77.518708054427506, + 13.0310200934963 + ], + [ + 77.518204613423194, + 13.0322638855134 + ], + [ + 77.518098475647406, + 13.0324749765989 + ], + [ + 77.518085105532904, + 13.0325148326092 + ], + [ + 77.517877645270403, + 13.033133276028099 + ], + [ + 77.517859074641393, + 13.0334609680562 + ], + [ + 77.517835647710299, + 13.033877925943299 + ], + [ + 77.517869943057406, + 13.0340884393758 + ], + [ + 77.517987932366097, + 13.034812676082399 + ], + [ + 77.518070509594295, + 13.035119056127201 + ], + [ + 77.518070584241102, + 13.035119330059 + ], + [ + 77.518168020817299, + 13.0354783702867 + ], + [ + 77.518257913572199, + 13.035767738790501 + ], + [ + 77.518285242905307, + 13.035857714313901 + ], + [ + 77.518304586981102, + 13.035921400355299 + ], + [ + 77.518313320576496, + 13.035950155375 + ], + [ + 77.518319650583393, + 13.036006560368101 + ], + [ + 77.518332367762596, + 13.036125018349299 + ], + [ + 77.518334664459303, + 13.036351995219499 + ], + [ + 77.518331028732405, + 13.036448025274399 + ], + [ + 77.518323085520706, + 13.0366711381815 + ], + [ + 77.518322059414004, + 13.0366999574111 + ], + [ + 77.518314605393499, + 13.037158545721599 + ], + [ + 77.518312160252805, + 13.0372014847784 + ], + [ + 77.518280469397396, + 13.037712258916001 + ], + [ + 77.518272964185101, + 13.038018250949699 + ], + [ + 77.518271890285305, + 13.038062014192599 + ], + [ + 77.518271300593199, + 13.0380860597084 + ], + [ + 77.518266198988499, + 13.0382940125898 + ], + [ + 77.518268256029998, + 13.038497275435301 + ], + [ + 77.5182688274366, + 13.038553737336199 + ], + [ + 77.518270008180494, + 13.038633713586901 + ], + [ + 77.518271841646396, + 13.0387579711409 + ], + [ + 77.518272493413505, + 13.0388021584921 + ], + [ + 77.518275302299699, + 13.0389658867946 + ], + [ + 77.518286617609405, + 13.039059512691001 + ], + [ + 77.518301073349093, + 13.0391790830621 + ], + [ + 77.518307673597306, + 13.039217462796501 + ], + [ + 77.518340238281198, + 13.0394068305436 + ], + [ + 77.518369480612805, + 13.039564654904799 + ], + [ + 77.518379533447998, + 13.039590532124301 + ], + [ + 77.518422649737701, + 13.039810335675901 + ], + [ + 77.518441313562903, + 13.0398903378569 + ], + [ + 77.518451883366097, + 13.039935695374499 + ], + [ + 77.518500920452993, + 13.0401461200826 + ], + [ + 77.518730022452203, + 13.040532386701701 + ], + [ + 77.518873837569799, + 13.040772043419899 + ], + [ + 77.518981340348802, + 13.040951187871 + ], + [ + 77.519056909808299, + 13.0410769393838 + ], + [ + 77.5192106653938, + 13.041302441820299 + ], + [ + 77.519376121929596, + 13.0415458997791 + ], + [ + 77.519582460802496, + 13.0418664518012 + ], + [ + 77.519676297093, + 13.042012227860299 + ], + [ + 77.519751786968598, + 13.0421295033871 + ], + [ + 77.520223295044303, + 13.0428499531266 + ], + [ + 77.520562721538397, + 13.0433808284454 + ], + [ + 77.520670189992998, + 13.043548056127699 + ], + [ + 77.520682848449198, + 13.043567754214701 + ], + [ + 77.520810834647193, + 13.043766906887701 + ], + [ + 77.520997553146401, + 13.044062106028999 + ], + [ + 77.521136381387095, + 13.0442797924534 + ], + [ + 77.521190099705706, + 13.0443640242458 + ], + [ + 77.521428298882398, + 13.0447377755241 + ], + [ + 77.521476191743503, + 13.044812659696699 + ], + [ + 77.521520179073605, + 13.044881436465401 + ], + [ + 77.521529553604694, + 13.0448971559545 + ], + [ + 77.521600899920202, + 13.0450037485338 + ], + [ + 77.521753014589194, + 13.045230954076001 + ], + [ + 77.521872834221696, + 13.0454099214223 + ], + [ + 77.521957632499607, + 13.045536711859 + ], + [ + 77.522003860844293, + 13.0456085384732 + ], + [ + 77.522192160770601, + 13.045901264264501 + ], + [ + 77.522848244373904, + 13.045444225420001 + ], + [ + 77.522957092381901, + 13.045368399592601 + ], + [ + 77.523104363251406, + 13.0452658076095 + ], + [ + 77.523144824904094, + 13.0452376212146 + ], + [ + 77.523279611107, + 13.0451423145643 + ], + [ + 77.523362511223993, + 13.0450836962848 + ], + [ + 77.523597122019098, + 13.044917804947699 + ], + [ + 77.523908921221604, + 13.044697334174099 + ], + [ + 77.523981541786398, + 13.044646276915699 + ], + [ + 77.524113560382503, + 13.044553458904099 + ], + [ + 77.524178615765706, + 13.0445077200771 + ], + [ + 77.524838430608398, + 13.0440438251853 + ], + [ + 77.525313732998399, + 13.0437552113388 + ], + [ + 77.525348123647404, + 13.043734327988901 + ], + [ + 77.525358237523506, + 13.043728186846099 + ], + [ + 77.525434837521303, + 13.043681672862499 + ], + [ + 77.526943376732603, + 13.042615861659399 + ], + [ + 77.528266549352097, + 13.041681001663701 + ], + [ + 77.528491190446204, + 13.0415213163504 + ], + [ + 77.528569423507903, + 13.0414657048898 + ], + [ + 77.530266568826903, + 13.0402592836477 + ], + [ + 77.531054110279797, + 13.0397083054834 + ], + [ + 77.531172466402893, + 13.0396255014122 + ], + [ + 77.531213850847806, + 13.039596547023001 + ], + [ + 77.531413671539397, + 13.0394021932992 + ], + [ + 77.531990740793404, + 13.038953912096201 + ], + [ + 77.533034617741805, + 13.038180294551999 + ], + [ + 77.535125749880905, + 13.0367208937699 + ], + [ + 77.535179541606098, + 13.036684489372901 + ], + [ + 77.536419423946796, + 13.0356963914919 + ], + [ + 77.537600546529902, + 13.0347906969028 + ], + [ + 77.537781283791603, + 13.034652106253001 + ], + [ + 77.539823609543006, + 13.0331223641909 + ], + [ + 77.540748808726406, + 13.032502521205901 + ], + [ + 77.540748879780395, + 13.0325022603107 + ], + [ + 77.540747725115097, + 13.032496564447399 + ], + [ + 77.540747397125898, + 13.032494944137699 + ], + [ + 77.540746813016398, + 13.0324920641995 + ], + [ + 77.540700423034593, + 13.032263256808299 + ], + [ + 77.540687586519198, + 13.0321948449399 + ], + [ + 77.540678632252494, + 13.0321471240973 + ], + [ + 77.540650912938304, + 13.031999396622901 + ], + [ + 77.540624522843999, + 13.031858754628299 + ], + [ + 77.540600548456098, + 13.0317309868026 + ], + [ + 77.540558826504395, + 13.031508635777399 + ], + [ + 77.540556280279304, + 13.031495066306301 + ], + [ + 77.540442487731298, + 13.0308886171465 + ], + [ + 77.540391257632706, + 13.030615589030299 + ], + [ + 77.540367284579304, + 13.030487826539099 + ], + [ + 77.540332977580505, + 13.0303053394694 + ], + [ + 77.540279723010499, + 13.030022065051 + ], + [ + 77.540266198476303, + 13.029950126404101 + ], + [ + 77.540081292258506, + 13.028815901595101 + ], + [ + 77.539448000084903, + 13.0272820840822 + ], + [ + 77.538669315176904, + 13.0276959187947 + ], + [ + 77.538562055975902, + 13.0273386696449 + ], + [ + 77.5385451636147, + 13.0272516514889 + ], + [ + 77.538415102425006, + 13.0266292387092 + ], + [ + 77.538442128365404, + 13.026163041237099 + ], + [ + 77.5381397756571, + 13.0260650722031 + ], + [ + 77.537831781080797, + 13.0260497415365 + ], + [ + 77.537373147535106, + 13.026089224516999 + ], + [ + 77.537420091490802, + 13.026485385704101 + ], + [ + 77.537533157725605, + 13.0272519461515 + ], + [ + 77.5375792429504, + 13.027243358842499 + ], + [ + 77.537622751982497, + 13.0275101379078 + ], + [ + 77.536760013674694, + 13.027634940131501 + ], + [ + 77.536717535543005, + 13.0271596227897 + ], + [ + 77.536628856676103, + 13.0262010464658 + ], + [ + 77.535612850228901, + 13.026421476792301 + ], + [ + 77.535012701103298, + 13.026574578976099 + ], + [ + 77.535006455690905, + 13.026563362979401 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "187", + "group": "Kempegowda Layout", + "Corporatio": "West", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "5", + "ward_id": "43", + "ward_name": "43 - Kempegowda Layout", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಕೆಂಪೇಗೌಡ ಬಡಾವಣೆ", + "dig_ward_n": "Kempegowda Layout", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "43" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.526051737603296, + 13.0008530369046 + ], + [ + 77.5243186991746, + 13.001631721812601 + ], + [ + 77.524105869893901, + 13.0017111105126 + ], + [ + 77.5239707401918, + 13.0017313799679 + ], + [ + 77.523507019421601, + 13.0016739658916 + ], + [ + 77.523505017785297, + 13.0016737387039 + ], + [ + 77.523571555401404, + 13.001968286174399 + ], + [ + 77.523648248407994, + 13.002332483225199 + ], + [ + 77.523677308155399, + 13.0024558018545 + ], + [ + 77.523399908727598, + 13.002528518734 + ], + [ + 77.523397041186698, + 13.0025296759631 + ], + [ + 77.523082846132795, + 13.0025868608273 + ], + [ + 77.522814636683194, + 13.0026846420591 + ], + [ + 77.522812820915306, + 13.002685120484101 + ], + [ + 77.522795017011006, + 13.002689810947199 + ], + [ + 77.522724953891299, + 13.0027085615856 + ], + [ + 77.522518169870594, + 13.0027602638082 + ], + [ + 77.522505536663502, + 13.002763773742799 + ], + [ + 77.522278657744494, + 13.0028213169479 + ], + [ + 77.522186759116593, + 13.002844797066601 + ], + [ + 77.522131724205806, + 13.002858901276401 + ], + [ + 77.522003537585107, + 13.002891751620201 + ], + [ + 77.522002986174698, + 13.002891890693601 + ], + [ + 77.521910487301199, + 13.0029152428414 + ], + [ + 77.521326901994399, + 13.0030838237873 + ], + [ + 77.521361047821202, + 13.0035429625358 + ], + [ + 77.521046871263906, + 13.003582656885801 + ], + [ + 77.521021534444799, + 13.0032887497839 + ], + [ + 77.520521554547301, + 13.0033385788615 + ], + [ + 77.520191331337898, + 13.0034205012433 + ], + [ + 77.520007318849395, + 13.002735179043199 + ], + [ + 77.519899588422604, + 13.0024173743455 + ], + [ + 77.519867020052999, + 13.002341997308999 + ], + [ + 77.518105688842994, + 13.002283300344599 + ], + [ + 77.517979352462305, + 13.0022705155837 + ], + [ + 77.517986421502698, + 13.002286257926899 + ], + [ + 77.518016254144001, + 13.002332271916099 + ], + [ + 77.518054643945803, + 13.0023702974117 + ], + [ + 77.518077396165296, + 13.002399439808601 + ], + [ + 77.5180817001919, + 13.0024265024937 + ], + [ + 77.518099675148093, + 13.0024387509609 + ], + [ + 77.518142477620302, + 13.0024575346427 + ], + [ + 77.518189019739793, + 13.0025045158251 + ], + [ + 77.518256056539698, + 13.002585178682599 + ], + [ + 77.518288711264901, + 13.002625518482599 + ], + [ + 77.5182972510068, + 13.0026728683881 + ], + [ + 77.518314273525803, + 13.0027619219907 + ], + [ + 77.5183149116978, + 13.0028251594912 + ], + [ + 77.518309643775297, + 13.002873772731 + ], + [ + 77.518286372059194, + 13.0029643466862 + ], + [ + 77.518269103599096, + 13.0030221111894 + ], + [ + 77.518237086975901, + 13.0030450089002 + ], + [ + 77.518095178534097, + 13.00313447532 + ], + [ + 77.518037279210702, + 13.003217479800201 + ], + [ + 77.517982800443605, + 13.003297063029301 + ], + [ + 77.517820600620993, + 13.0036013031006 + ], + [ + 77.517738402913494, + 13.0037873143339 + ], + [ + 77.517738677013298, + 13.0038144793673 + ], + [ + 77.517738984020397, + 13.0038449056501 + ], + [ + 77.5177510582932, + 13.003900126752299 + ], + [ + 77.517758144100199, + 13.003974595236899 + ], + [ + 77.517755937386994, + 13.004041248416099 + ], + [ + 77.517705021807004, + 13.004074493623699 + ], + [ + 77.517699594262197, + 13.0041072974924 + ], + [ + 77.517697791661902, + 13.004271071028599 + ], + [ + 77.517700801316195, + 13.0043410616543 + ], + [ + 77.517705914396004, + 13.004448300487701 + ], + [ + 77.517691798223893, + 13.0045331388517 + ], + [ + 77.517692018302697, + 13.0045369611541 + ], + [ + 77.517702269775199, + 13.004714862925599 + ], + [ + 77.517712636772899, + 13.005228617489699 + ], + [ + 77.517714317934093, + 13.0053381483173 + ], + [ + 77.5177202911796, + 13.0055876771371 + ], + [ + 77.517709189547205, + 13.005914167567401 + ], + [ + 77.517708954657493, + 13.005929420614899 + ], + [ + 77.517708841665495, + 13.0059367579814 + ], + [ + 77.517704319819501, + 13.006116368813601 + ], + [ + 77.517662026763404, + 13.006146029421799 + ], + [ + 77.517594182361506, + 13.006193608250101 + ], + [ + 77.517551657064601, + 13.006221486598401 + ], + [ + 77.517615421392804, + 13.0063545048988 + ], + [ + 77.518721795828199, + 13.0061611005128 + ], + [ + 77.519108604600305, + 13.0060834009341 + ], + [ + 77.519137319661994, + 13.006004012234101 + ], + [ + 77.519382492260306, + 13.005980717500099 + ], + [ + 77.519597177402204, + 13.0059642683809 + ], + [ + 77.520047756029498, + 13.0059263126555 + ], + [ + 77.520773796000796, + 13.0058811260723 + ], + [ + 77.521053825569197, + 13.005862676969899 + ], + [ + 77.521066420289003, + 13.005942825187001 + ], + [ + 77.521637762579104, + 13.0059422526997 + ], + [ + 77.521630320244697, + 13.0061409057805 + ], + [ + 77.522115216957701, + 13.006174110041901 + ], + [ + 77.522181052993204, + 13.006086519490401 + ], + [ + 77.522201662534798, + 13.005993776553501 + ], + [ + 77.522956422865903, + 13.0060479293873 + ], + [ + 77.523228371391298, + 13.0060834009341 + ], + [ + 77.523181075995495, + 13.0070360653335 + ], + [ + 77.523858413626996, + 13.0069566766335 + ], + [ + 77.5246708809605, + 13.006792831869801 + ], + [ + 77.525390446623902, + 13.0066239197422 + ], + [ + 77.525969815221401, + 13.006455007614701 + ], + [ + 77.526446147421098, + 13.0062219088787 + ], + [ + 77.526768769584706, + 13.006117183359599 + ], + [ + 77.526754412053805, + 13.006678816183699 + ], + [ + 77.526954451805906, + 13.0066824787329 + ], + [ + 77.527004402002603, + 13.0068916454644 + ], + [ + 77.527506902016299, + 13.007338549138099 + ], + [ + 77.527633421701793, + 13.0073477089344 + ], + [ + 77.527893330919895, + 13.0077026510385 + ], + [ + 77.528622107207795, + 13.0072074495545 + ], + [ + 77.529233523606393, + 13.006620077620999 + ], + [ + 77.529883789265895, + 13.0060488141372 + ], + [ + 77.5298796915569, + 13.0059493761974 + ], + [ + 77.5298876070906, + 13.0058781504489 + ], + [ + 77.5299098978779, + 13.0057480587333 + ], + [ + 77.529905291506395, + 13.0057481036475 + ], + [ + 77.529878381186904, + 13.005706580366599 + ], + [ + 77.5297380203817, + 13.005416078005901 + ], + [ + 77.529721498176301, + 13.0053818817804 + ], + [ + 77.529719929337801, + 13.0053786346311 + ], + [ + 77.529715450588398, + 13.0053693661899 + ], + [ + 77.529601525078405, + 13.005151384409899 + ], + [ + 77.529588746574603, + 13.0050176954348 + ], + [ + 77.529588207550503, + 13.005012058493699 + ], + [ + 77.529583430297393, + 13.0049620778967 + ], + [ + 77.529577690448093, + 13.0049020320432 + ], + [ + 77.529574016046297, + 13.004848504496 + ], + [ + 77.529565528706101, + 13.004724843802499 + ], + [ + 77.529573878138706, + 13.0046414223395 + ], + [ + 77.529577174361506, + 13.0046084838712 + ], + [ + 77.529581836821393, + 13.0045618995629 + ], + [ + 77.529581997439294, + 13.004560293427099 + ], + [ + 77.529584875386405, + 13.0045315376044 + ], + [ + 77.5295894542366, + 13.004498608316 + ], + [ + 77.529591831256496, + 13.004481514 + ], + [ + 77.529599632181501, + 13.004425418039499 + ], + [ + 77.529601577253601, + 13.004411430464501 + ], + [ + 77.529609564482797, + 13.0043539901255 + ], + [ + 77.529608717301898, + 13.0042704270258 + ], + [ + 77.529575889036707, + 13.0042131514685 + ], + [ + 77.529463444493103, + 13.0040843722412 + ], + [ + 77.529446615189002, + 13.0040689459342 + ], + [ + 77.529445691697006, + 13.004068099345799 + ], + [ + 77.529425021483902, + 13.004049151691 + ], + [ + 77.529388793283402, + 13.004015942557 + ], + [ + 77.529326311173193, + 13.003958667785099 + ], + [ + 77.529237919281499, + 13.003877642018599 + ], + [ + 77.529194209786795, + 13.0038356246114 + ], + [ + 77.529139266364396, + 13.0037828081312 + ], + [ + 77.529139204956394, + 13.003782749100299 + ], + [ + 77.529098355618004, + 13.0037434810761 + ], + [ + 77.529073895354799, + 13.003693389608801 + ], + [ + 77.529065424532902, + 13.0036760414299 + ], + [ + 77.5290619723324, + 13.0036667819353 + ], + [ + 77.529060646391102, + 13.003663226133201 + ], + [ + 77.529042752819805, + 13.003615240808699 + ], + [ + 77.529042357893005, + 13.0036141830749 + ], + [ + 77.529032276010795, + 13.0035871463747 + ], + [ + 77.529014491502394, + 13.0035299210523 + ], + [ + 77.529011106606305, + 13.0035190292253 + ], + [ + 77.528980488287104, + 13.0034205082732 + ], + [ + 77.5289800793811, + 13.0033801621795 + ], + [ + 77.528979977633298, + 13.0033701228579 + ], + [ + 77.528979878082794, + 13.003360300348801 + ], + [ + 77.528979137815895, + 13.003287258931399 + ], + [ + 77.528984067412793, + 13.003091835413001 + ], + [ + 77.529004524766606, + 13.003008063750601 + ], + [ + 77.529015278420204, + 13.002981750060799 + ], + [ + 77.529035181811693, + 13.0029330485493 + ], + [ + 77.529066247006398, + 13.0028570337407 + ], + [ + 77.529102297467702, + 13.0027688204227 + ], + [ + 77.529124709701705, + 13.0027063029214 + ], + [ + 77.529161021041702, + 13.002605015590101 + ], + [ + 77.529185179590996, + 13.002537625797601 + ], + [ + 77.529220100271601, + 13.002460490145999 + ], + [ + 77.529220097094495, + 13.002460176671301 + ], + [ + 77.529219539470603, + 13.0024051577986 + ], + [ + 77.529216097529101, + 13.0023952720955 + ], + [ + 77.529175649282095, + 13.002279099092499 + ], + [ + 77.529139074094502, + 13.002233802050901 + ], + [ + 77.529129373963698, + 13.002221789116399 + ], + [ + 77.529098015540896, + 13.0021829516664 + ], + [ + 77.529052601478796, + 13.002126708412 + ], + [ + 77.528966686722598, + 13.0020586547598 + ], + [ + 77.528869159951, + 13.001971663548201 + ], + [ + 77.528765045917098, + 13.001878795219399 + ], + [ + 77.528716888604805, + 13.0018505068251 + ], + [ + 77.528716382539002, + 13.001850209995199 + ], + [ + 77.528636442931301, + 13.0018032528476 + ], + [ + 77.528368756734494, + 13.0017078183237 + ], + [ + 77.528303150813798, + 13.0016844286059 + ], + [ + 77.5282371528331, + 13.0016608990357 + ], + [ + 77.528121505438506, + 13.0016196688262 + ], + [ + 77.528053911080804, + 13.0015790691321 + ], + [ + 77.528048102555303, + 13.001575580472499 + ], + [ + 77.527949432706393, + 13.0015163158702 + ], + [ + 77.527936118881996, + 13.001504552196501 + ], + [ + 77.527855884504405, + 13.0014336555348 + ], + [ + 77.5278481033818, + 13.0014135214777 + ], + [ + 77.527826317372202, + 13.0013571480922 + ], + [ + 77.527831624671705, + 13.0012271910909 + ], + [ + 77.5278323157183, + 13.0012102749143 + ], + [ + 77.5278329895675, + 13.001182018481501 + ], + [ + 77.527837166417498, + 13.001006945698199 + ], + [ + 77.527845030356801, + 13.000957664030301 + ], + [ + 77.5278455510567, + 13.000954402833701 + ], + [ + 77.527876117880396, + 13.0007628430021 + ], + [ + 77.527877235500696, + 13.0007558410245 + ], + [ + 77.527877113743699, + 13.0007438196627 + ], + [ + 77.527876605516497, + 13.0006936410694 + ], + [ + 77.527874330456498, + 13.0004690158642 + ], + [ + 77.527868152527503, + 13.0003697389041 + ], + [ + 77.527864481517099, + 13.0003107542174 + ], + [ + 77.527863449385706, + 13.000294175556 + ], + [ + 77.527857823951294, + 13.000203780700801 + ], + [ + 77.527848748088303, + 13.000044610753401 + ], + [ + 77.527848414249107, + 13.0000387576764 + ], + [ + 77.527840318604405, + 12.9998967695111 + ], + [ + 77.527827171521096, + 12.999678934073801 + ], + [ + 77.527451668489206, + 12.9998440868236 + ], + [ + 77.526191565174102, + 13.0004508149004 + ], + [ + 77.526320307886095, + 13.000733109294099 + ], + [ + 77.526051737603296, + 13.0008530369046 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "188", + "group": "Kottegepalya", + "Corporatio": "West", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "5", + "ward_id": "49", + "ward_name": "49 - Kottegepalya", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಕೊಟ್ಟಿಗೆಪಾಳ್ಯ", + "dig_ward_n": "Kottegepalya", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "49" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.517879274638204, + 12.9720556453213 + ], + [ + 77.517906977105596, + 12.971890490533699 + ], + [ + 77.518024636212999, + 12.9716815503417 + ], + [ + 77.518193857201197, + 12.971495847246899 + ], + [ + 77.518194913254405, + 12.9714946877922 + ], + [ + 77.518254306990698, + 12.971389082851999 + ], + [ + 77.518365632680002, + 12.971180203907201 + ], + [ + 77.5183920364275, + 12.9711393827808 + ], + [ + 77.518472220058698, + 12.971015415618201 + ], + [ + 77.518535022445903, + 12.9709052602327 + ], + [ + 77.518540584679002, + 12.970748293067601 + ], + [ + 77.518541748448399, + 12.970715463683799 + ], + [ + 77.518540525869696, + 12.9707128924634 + ], + [ + 77.518523165908505, + 12.970676372812999 + ], + [ + 77.518516090170493, + 12.970661488677999 + ], + [ + 77.518514984288998, + 12.970659162074799 + ], + [ + 77.518459984037094, + 12.970543464207401 + ], + [ + 77.518444316932801, + 12.970516329802001 + ], + [ + 77.518332237737695, + 12.970322218277699 + ], + [ + 77.518197329513598, + 12.970190260543101 + ], + [ + 77.518171149347197, + 12.9701634094844 + ], + [ + 77.518102926372904, + 12.9700782389945 + ], + [ + 77.518075949742098, + 12.970033302475199 + ], + [ + 77.518009231532702, + 12.9699221657261 + ], + [ + 77.517992234873205, + 12.969898846004799 + ], + [ + 77.517986570254095, + 12.9698910739596 + ], + [ + 77.517980623529297, + 12.969882915243501 + ], + [ + 77.517979591377696, + 12.9698814146101 + ], + [ + 77.517939720876598, + 12.9698234553842 + ], + [ + 77.517849376465193, + 12.9697891951795 + ], + [ + 77.517820657756403, + 12.9697783042831 + ], + [ + 77.517773266061297, + 12.969760693306601 + ], + [ + 77.517773093439402, + 12.9697604754308 + ], + [ + 77.517495916062501, + 12.9699864569972 + ], + [ + 77.517090526956395, + 12.9701148302142 + ], + [ + 77.516562676557797, + 12.970274452174699 + ], + [ + 77.516278707416404, + 12.9702912698496 + ], + [ + 77.516248239639793, + 12.9702960819937 + ], + [ + 77.516174526398601, + 12.9703095495151 + ], + [ + 77.516156859012298, + 12.9703127768974 + ], + [ + 77.516029276078498, + 12.970336598069601 + ], + [ + 77.516007577356703, + 12.970340469769599 + ], + [ + 77.515935592513799, + 12.970353314271801 + ], + [ + 77.515833341262194, + 12.970376891248099 + ], + [ + 77.515823576711597, + 12.970379244398901 + ], + [ + 77.515605268144995, + 12.970427659298601 + ], + [ + 77.515516224333098, + 12.970447719461699 + ], + [ + 77.515457476313799, + 12.9704643581789 + ], + [ + 77.515480948291597, + 12.9706670186706 + ], + [ + 77.514796756945799, + 12.970804031366599 + ], + [ + 77.514519741038399, + 12.970899466725999 + ], + [ + 77.514368508020894, + 12.971004152565699 + ], + [ + 77.514404014649898, + 12.9712136041019 + ], + [ + 77.514416043550995, + 12.971244143989599 + ], + [ + 77.514641828725004, + 12.9720735942657 + ], + [ + 77.514882436891895, + 12.972731038858401 + ], + [ + 77.514887906581507, + 12.972752868379199 + ], + [ + 77.515065272703794, + 12.9734607567173 + ], + [ + 77.515117633306602, + 12.973970249525401 + ], + [ + 77.515029799000303, + 12.9742497990965 + ], + [ + 77.513684413904301, + 12.974580022305799 + ], + [ + 77.5134614498959, + 12.974664478369601 + ], + [ + 77.513558932848198, + 12.9749191680816 + ], + [ + 77.514038999421501, + 12.9761193279754 + ], + [ + 77.514038807183894, + 12.9761002057565 + ], + [ + 77.514125517619803, + 12.976414513929001 + ], + [ + 77.514161548657796, + 12.9765451194188 + ], + [ + 77.514301897579699, + 12.977053852914899 + ], + [ + 77.514673243882498, + 12.977868082691799 + ], + [ + 77.514840276349204, + 12.978234321817199 + ], + [ + 77.515199036587802, + 12.9787946039218 + ], + [ + 77.515692177070093, + 12.979564744461401 + ], + [ + 77.515760449709902, + 12.9796599118012 + ], + [ + 77.5160734289109, + 12.980096182795499 + ], + [ + 77.515778404629799, + 12.980140013975401 + ], + [ + 77.514992669952505, + 12.980236637627099 + ], + [ + 77.514828931546205, + 12.9802567730361 + ], + [ + 77.514305388091501, + 12.9803096473136 + ], + [ + 77.513745644455796, + 12.9803987272757 + ], + [ + 77.513246953591903, + 12.980499168921201 + ], + [ + 77.512866109462493, + 12.980584072490799 + ], + [ + 77.511956442839406, + 12.980810768410601 + ], + [ + 77.5109902654699, + 12.981024442252 + ], + [ + 77.511037329594302, + 12.9819822239833 + ], + [ + 77.511040945720794, + 12.98205559737 + ], + [ + 77.511060172265701, + 12.9825365184562 + ], + [ + 77.511062341968199, + 12.982580542484801 + ], + [ + 77.511063714703297, + 12.982717181630701 + ], + [ + 77.511017098661796, + 12.9828915532739 + ], + [ + 77.510984082248299, + 12.982986738407099 + ], + [ + 77.5109527590391, + 12.9830785191043 + ], + [ + 77.510850107629494, + 12.9833494276371 + ], + [ + 77.510799012975696, + 12.9835938628022 + ], + [ + 77.510764634530602, + 12.9837563383585 + ], + [ + 77.510727389875498, + 12.9840101507284 + ], + [ + 77.510718323319793, + 12.984233814346901 + ], + [ + 77.510714652271403, + 12.9843243593483 + ], + [ + 77.510711357238804, + 12.984405654429599 + ], + [ + 77.510744377105397, + 12.9846046085159 + ], + [ + 77.510766772844093, + 12.9846732794052 + ], + [ + 77.510810346692907, + 12.9848068897891 + ], + [ + 77.510819844416602, + 12.984832752491201 + ], + [ + 77.510819465749094, + 12.9848328428847 + ], + [ + 77.510854323007507, + 12.984932044146699 + ], + [ + 77.510879468570195, + 12.984968680610701 + ], + [ + 77.510902264507706, + 12.9850018929721 + ], + [ + 77.511201202780697, + 12.9853645061865 + ], + [ + 77.511247713891706, + 12.9854373086843 + ], + [ + 77.511446812454693, + 12.9857489484962 + ], + [ + 77.511505141074096, + 12.985840246715499 + ], + [ + 77.511718926672998, + 12.986225008850701 + ], + [ + 77.511828608236002, + 12.986446916335 + ], + [ + 77.511843839034995, + 12.9864831868188 + ], + [ + 77.511875055785197, + 12.9865575274534 + ], + [ + 77.511975266134598, + 12.986839500704299 + ], + [ + 77.512059454078994, + 12.987087729989099 + ], + [ + 77.512283882907298, + 12.987901464708701 + ], + [ + 77.512143865928905, + 12.9879439010636 + ], + [ + 77.512027903234895, + 12.987980181511899 + ], + [ + 77.511926142892506, + 12.988019981906699 + ], + [ + 77.511745894998498, + 12.988084885545399 + ], + [ + 77.511516415075704, + 12.9881888547327 + ], + [ + 77.511284097654197, + 12.988287544097799 + ], + [ + 77.511279839107402, + 12.9882893533863 + ], + [ + 77.511166058282996, + 12.988321838542699 + ], + [ + 77.5110316168129, + 12.988354674234801 + ], + [ + 77.510963609210606, + 12.9883627455721 + ], + [ + 77.510915771482303, + 12.988361332297 + ], + [ + 77.510847593135296, + 12.9883582824289 + ], + [ + 77.510751726996702, + 12.988329240287101 + ], + [ + 77.510438920745599, + 12.9882008654751 + ], + [ + 77.510177803719898, + 12.9881302241741 + ], + [ + 77.510471398482395, + 12.9906256421778 + ], + [ + 77.508551276196698, + 12.9909885991036 + ], + [ + 77.508670353547799, + 12.991469488405899 + ], + [ + 77.509556563833499, + 12.9912885824303 + ], + [ + 77.510452755408593, + 12.9912294795769 + ], + [ + 77.510502109421296, + 12.9928461797787 + ], + [ + 77.510514777830906, + 12.993232143990101 + ], + [ + 77.511539229884406, + 12.9934534188772 + ], + [ + 77.513397263287501, + 12.993924683713001 + ], + [ + 77.513863616978696, + 12.9941527920844 + ], + [ + 77.514408307128505, + 12.9943815617049 + ], + [ + 77.514410459255501, + 12.9943824660341 + ], + [ + 77.514621876212203, + 12.994514187038201 + ], + [ + 77.514995172014096, + 12.9947236380763 + ], + [ + 77.515512043124403, + 12.9949786953889 + ], + [ + 77.515647172826505, + 12.9950800426654 + ], + [ + 77.515838043530593, + 12.9951678769718 + ], + [ + 77.516030603356, + 12.995150985759 + ], + [ + 77.516187446626802, + 12.995176112680801 + ], + [ + 77.516367213555, + 12.995217494908401 + ], + [ + 77.516497275893201, + 12.995284215198801 + ], + [ + 77.516642540322906, + 12.995335733397701 + ], + [ + 77.516774291782397, + 12.995396541763601 + ], + [ + 77.5170643455766, + 12.995520903318299 + ], + [ + 77.517140880695194, + 12.9955545117932 + ], + [ + 77.517511962714593, + 12.9957100849012 + ], + [ + 77.517681774253901, + 12.9957846516426 + ], + [ + 77.517936418619698, + 12.995896470146 + ], + [ + 77.5181316955792, + 12.9959822195441 + ], + [ + 77.519054130439201, + 12.996389111653899 + ], + [ + 77.5190965468651, + 12.9964079108431 + ], + [ + 77.519203628091901, + 12.9964493336962 + ], + [ + 77.519228706212303, + 12.996459034985801 + ], + [ + 77.519538053386199, + 12.996578700673901 + ], + [ + 77.520106452993801, + 12.9967809877898 + ], + [ + 77.520257222823403, + 12.9968698100146 + ], + [ + 77.520357281933897, + 12.996928756630099 + ], + [ + 77.520618256740207, + 12.9970993871503 + ], + [ + 77.520864023885807, + 12.997249718943801 + ], + [ + 77.521059117393193, + 12.997386537767101 + ], + [ + 77.521249893134694, + 12.997453710001199 + ], + [ + 77.521282285138398, + 12.997468076976901 + ], + [ + 77.521473359129303, + 12.9975147833348 + ], + [ + 77.521662130041705, + 12.997561511908801 + ], + [ + 77.521695029426098, + 12.9975690987053 + ], + [ + 77.521728382457894, + 12.9975764461862 + ], + [ + 77.522459398930494, + 12.997781792145499 + ], + [ + 77.523989119521502, + 12.998107130866 + ], + [ + 77.523997369930797, + 12.9981091160035 + ], + [ + 77.524012122410895, + 12.9981126668958 + ], + [ + 77.5241389107548, + 12.9981431787771 + ], + [ + 77.524377026643805, + 12.998200483081099 + ], + [ + 77.524715266523401, + 12.9982483400478 + ], + [ + 77.524848586269101, + 12.998279299403 + ], + [ + 77.525206035879904, + 12.9983519578147 + ], + [ + 77.525246383289002, + 12.9983601592202 + ], + [ + 77.525325785573798, + 12.998376299024001 + ], + [ + 77.525340276350306, + 12.9983799345967 + ], + [ + 77.525521097935496, + 12.9984252991079 + ], + [ + 77.525993148498003, + 12.9985437255598 + ], + [ + 77.526103619680001, + 12.998419499514 + ], + [ + 77.526140043163807, + 12.9983785410378 + ], + [ + 77.526148577034505, + 12.9983682938839 + ], + [ + 77.526204010647703, + 12.9982593381717 + ], + [ + 77.526214374127704, + 12.9982389687303 + ], + [ + 77.526250206351506, + 12.9981685400753 + ], + [ + 77.526301151056501, + 12.9980246174171 + ], + [ + 77.526277175764903, + 12.9978746477396 + ], + [ + 77.526249845567094, + 12.9978483740621 + ], + [ + 77.526222515374997, + 12.9978221003807 + ], + [ + 77.526189524160401, + 12.997806902388801 + ], + [ + 77.526126479776593, + 12.997777861024799 + ], + [ + 77.525908617004404, + 12.9977585232359 + ], + [ + 77.525860897953606, + 12.997757777757499 + ], + [ + 77.525775001818104, + 12.9977564360728 + ], + [ + 77.525573622789494, + 12.9978295431179 + ], + [ + 77.525470923706905, + 12.997866681263 + ], + [ + 77.525321047128102, + 12.997923464529 + ], + [ + 77.525305716754403, + 12.9979292730334 + ], + [ + 77.525237197956599, + 12.997929939525401 + ], + [ + 77.525207154566601, + 12.9979200676367 + ], + [ + 77.525185032495898, + 12.997908702946299 + ], + [ + 77.525088491346295, + 12.997859107765599 + ], + [ + 77.524970260185597, + 12.997726994780001 + ], + [ + 77.524933491583397, + 12.997649310000099 + ], + [ + 77.524920245284406, + 12.997621322609801 + ], + [ + 77.524839123077896, + 12.9972866955241 + ], + [ + 77.524830854456496, + 12.997218042978799 + ], + [ + 77.524829600266401, + 12.9972076326587 + ], + [ + 77.524797005644999, + 12.9969370075535 + ], + [ + 77.524787500328202, + 12.996903491526 + ], + [ + 77.524728335933801, + 12.996694865716901 + ], + [ + 77.524709354692106, + 12.9966608012625 + ], + [ + 77.524696951399406, + 12.996638542731199 + ], + [ + 77.524693324631698, + 12.9966320350127 + ], + [ + 77.524588754433694, + 12.996444378577101 + ], + [ + 77.524442523361998, + 12.9962272717072 + ], + [ + 77.524441705846201, + 12.996226058153701 + ], + [ + 77.524402848498099, + 12.9961683667179 + ], + [ + 77.524333323748806, + 12.996113052333801 + ], + [ + 77.524278040381006, + 12.996069068220301 + ], + [ + 77.524068847363594, + 12.9959207261162 + ], + [ + 77.523992104865798, + 12.995866306654399 + ], + [ + 77.523801606557598, + 12.9957055322856 + ], + [ + 77.523799661068495, + 12.9957039276452 + ], + [ + 77.523759383700195, + 12.9956707079347 + ], + [ + 77.523638838749804, + 12.9955712862886 + ], + [ + 77.523633792009093, + 12.995567124226 + ], + [ + 77.523609146595902, + 12.9954645930888 + ], + [ + 77.523590832134303, + 12.9953748695622 + ], + [ + 77.523572796813895, + 12.995286509378101 + ], + [ + 77.523549272143001, + 12.995175988713701 + ], + [ + 77.5235482014117, + 12.9951709604203 + ], + [ + 77.523542570057899, + 12.9951445052836 + ], + [ + 77.523473086898903, + 12.994878654383999 + ], + [ + 77.523357553455895, + 12.994614380279501 + ], + [ + 77.523340355942594, + 12.994589307816 + ], + [ + 77.523334805159195, + 12.9945812150881 + ], + [ + 77.523219041178095, + 12.994412443519 + ], + [ + 77.523202201256396, + 12.9943877443171 + ], + [ + 77.523105065306495, + 12.994245278047 + ], + [ + 77.523047213368201, + 12.994104671574201 + ], + [ + 77.523046280308904, + 12.9940889203548 + ], + [ + 77.523045897001495, + 12.9940824425217 + ], + [ + 77.523031243786804, + 12.9938349124229 + ], + [ + 77.523032404393106, + 12.993727920213701 + ], + [ + 77.523034356684704, + 12.9935480005319 + ], + [ + 77.523034821625302, + 12.9935051078721 + ], + [ + 77.523014192644197, + 12.9933655301665 + ], + [ + 77.523004889820797, + 12.993302584822001 + ], + [ + 77.522975723525093, + 12.993105241193099 + ], + [ + 77.522975486193104, + 12.9931036362097 + ], + [ + 77.522963370318095, + 12.993087447022701 + ], + [ + 77.522926975053807, + 12.9930388139654 + ], + [ + 77.522926469804105, + 12.9930381394575 + ], + [ + 77.522868084259201, + 12.9929601229473 + ], + [ + 77.522442029705701, + 12.992392016651699 + ], + [ + 77.522439907892903, + 12.992389187685699 + ], + [ + 77.522387125870395, + 12.992318807004199 + ], + [ + 77.522309650649305, + 12.992289021837101 + ], + [ + 77.522290609496807, + 12.992281701556699 + ], + [ + 77.522246154556598, + 12.9922646112063 + ], + [ + 77.522245066856499, + 12.992264192616799 + ], + [ + 77.522218110317993, + 12.9922538294862 + ], + [ + 77.522159888084801, + 12.992231446520799 + ], + [ + 77.522123526133598, + 12.9922174677399 + ], + [ + 77.521782306134298, + 12.992184641020399 + ], + [ + 77.521708106055499, + 12.992135670081 + ], + [ + 77.521699884877705, + 12.9921168491059 + ], + [ + 77.521637372034306, + 12.9919737304823 + ], + [ + 77.521575576793097, + 12.9917845996666 + ], + [ + 77.521572852902693, + 12.991768583019301 + ], + [ + 77.521542983352404, + 12.991592962757201 + ], + [ + 77.521511912047202, + 12.991410273576699 + ], + [ + 77.521441380068197, + 12.9912605496583 + ], + [ + 77.521434475158003, + 12.9912458917719 + ], + [ + 77.521427177643403, + 12.991230400170499 + ], + [ + 77.521189073263898, + 12.990916493434501 + ], + [ + 77.521163505782894, + 12.990884907479501 + ], + [ + 77.521025807218095, + 12.990714795062001 + ], + [ + 77.520931318736899, + 12.9904540542733 + ], + [ + 77.520727279728504, + 12.9898910076547 + ], + [ + 77.520709495388701, + 12.9897040883844 + ], + [ + 77.520707840252598, + 12.9896866952786 + ], + [ + 77.520701514394602, + 12.989620213512801 + ], + [ + 77.520678970992705, + 12.989521347551401 + ], + [ + 77.520561739021502, + 12.989007202961799 + ], + [ + 77.520434275559296, + 12.988701256215601 + ], + [ + 77.520404142188298, + 12.9886354914742 + ], + [ + 77.520298938866802, + 12.988405892306799 + ], + [ + 77.520218098968698, + 12.988229464183901 + ], + [ + 77.520203473706403, + 12.98819754604 + ], + [ + 77.520177057852095, + 12.988118254408199 + ], + [ + 77.520163921174699, + 12.988078821120499 + ], + [ + 77.5200609628736, + 12.987769774970699 + ], + [ + 77.5200717031382, + 12.9876262494943 + ], + [ + 77.520078207024696, + 12.9875393329643 + ], + [ + 77.520081259608901, + 12.987498533770999 + ], + [ + 77.520094173209799, + 12.9874626053625 + ], + [ + 77.520142436561798, + 12.987328328955099 + ], + [ + 77.520152952038899, + 12.987299072524999 + ], + [ + 77.520202610172106, + 12.9872556754874 + ], + [ + 77.5203310394391, + 12.987143753254101 + ], + [ + 77.520349460557895, + 12.9870445322676 + ], + [ + 77.5203528850993, + 12.987026088816499 + ], + [ + 77.520350918907397, + 12.987020778255699 + ], + [ + 77.520344730477206, + 12.9870040597425 + ], + [ + 77.520307897342306, + 12.9869045552906 + ], + [ + 77.520296063263899, + 12.9868730482508 + ], + [ + 77.520243516142102, + 12.986801279486 + ], + [ + 77.5201641425422, + 12.986695890374101 + ], + [ + 77.520019755299899, + 12.9864815847102 + ], + [ + 77.519896151181001, + 12.9863867895297 + ], + [ + 77.519806232051394, + 12.986263432001 + ], + [ + 77.5197938856371, + 12.986181109064599 + ], + [ + 77.519786550225604, + 12.9860817972551 + ], + [ + 77.519817244762194, + 12.985927907759599 + ], + [ + 77.519824365647295, + 12.985777634931701 + ], + [ + 77.519822910693307, + 12.985738235571599 + ], + [ + 77.519821669837, + 12.9857046272574 + ], + [ + 77.519817885401494, + 12.985602143218699 + ], + [ + 77.519812483993505, + 12.9854558849249 + ], + [ + 77.519796462743898, + 12.985294542993699 + ], + [ + 77.519762693813604, + 12.9851435373221 + ], + [ + 77.519700896134694, + 12.9850108730539 + ], + [ + 77.519647500644197, + 12.9849120078437 + ], + [ + 77.519579848005804, + 12.984826833076699 + ], + [ + 77.519510538096497, + 12.9846343859129 + ], + [ + 77.519461955390597, + 12.9844417377527 + ], + [ + 77.519384983646106, + 12.984288892123701 + ], + [ + 77.519314872461607, + 12.9839598010025 + ], + [ + 77.519250822723905, + 12.983889272731201 + ], + [ + 77.519162534581696, + 12.983813332639 + ], + [ + 77.519084010876995, + 12.9837322365505 + ], + [ + 77.518966446523393, + 12.9836108205998 + ], + [ + 77.518952895670196, + 12.9835964185348 + ], + [ + 77.518828502811601, + 12.9834642124443 + ], + [ + 77.5187647626976, + 12.9833101089064 + ], + [ + 77.518761175799497, + 12.983299838553 + ], + [ + 77.518692427335395, + 12.983103009060001 + ], + [ + 77.518678292958299, + 12.983064158075001 + ], + [ + 77.518626099954702, + 12.982920696708 + ], + [ + 77.518586459729704, + 12.98287251869 + ], + [ + 77.518541904404699, + 12.982836770518899 + ], + [ + 77.518519702438894, + 12.982818956681101 + ], + [ + 77.518430377197902, + 12.982754319809899 + ], + [ + 77.518325536409904, + 12.9826356242953 + ], + [ + 77.518297468142407, + 12.982592980850599 + ], + [ + 77.518264851300103, + 12.9825218802156 + ], + [ + 77.518239183438794, + 12.9824659286949 + ], + [ + 77.518225122087102, + 12.982384751511701 + ], + [ + 77.518229136465095, + 12.9823259862514 + ], + [ + 77.518241805117697, + 12.9822967289017 + ], + [ + 77.518245077858396, + 12.982289172085601 + ], + [ + 77.518256146613595, + 12.9822636101218 + ], + [ + 77.518291569897102, + 12.982236161517299 + ], + [ + 77.518329853715699, + 12.9822269048199 + ], + [ + 77.518374284115595, + 12.9822161619604 + ], + [ + 77.518389670007707, + 12.982200201933599 + ], + [ + 77.518393311558697, + 12.982181153763801 + ], + [ + 77.518427958478497, + 12.981999936346501 + ], + [ + 77.518429335733998, + 12.981989963011101 + ], + [ + 77.518449356115894, + 12.981844935367301 + ], + [ + 77.518453717009805, + 12.981813342602299 + ], + [ + 77.518496302755494, + 12.981696606599201 + ], + [ + 77.518543160301505, + 12.9816611426156 + ], + [ + 77.518649350171899, + 12.981570894747099 + ], + [ + 77.518667817332798, + 12.981539720028 + ], + [ + 77.518682607538494, + 12.9815147517232 + ], + [ + 77.518695776223495, + 12.9814925204199 + ], + [ + 77.518708247935095, + 12.9814525948455 + ], + [ + 77.5187189248457, + 12.9814184156445 + ], + [ + 77.518729909661801, + 12.981383250471 + ], + [ + 77.518744532267206, + 12.9813364384917 + ], + [ + 77.518752645932096, + 12.9813104651616 + ], + [ + 77.518763945772605, + 12.981274289552699 + ], + [ + 77.5187761006312, + 12.9812353780453 + ], + [ + 77.518806093957906, + 12.981069072533099 + ], + [ + 77.518805461620204, + 12.981006225208301 + ], + [ + 77.518805309768894, + 12.9809911547891 + ], + [ + 77.518804717173794, + 12.980932434185799 + ], + [ + 77.518831756665506, + 12.9808158488235 + ], + [ + 77.518878228063301, + 12.9807419905624 + ], + [ + 77.518944338419104, + 12.9806171211095 + ], + [ + 77.518958750191501, + 12.9805616431658 + ], + [ + 77.518979000681099, + 12.9805402340653 + ], + [ + 77.518994043378299, + 12.9805243306569 + ], + [ + 77.519016067770593, + 12.9805010459011 + ], + [ + 77.519098903729301, + 12.980413469098 + ], + [ + 77.519168648272199, + 12.980420698650001 + ], + [ + 77.519269796933202, + 12.980401648713601 + ], + [ + 77.519309882695794, + 12.980379801606301 + ], + [ + 77.519400030655802, + 12.980297615411899 + ], + [ + 77.519434051698298, + 12.9802453354606 + ], + [ + 77.519441497541905, + 12.980184278265501 + ], + [ + 77.519445973630596, + 12.980114215035499 + ], + [ + 77.519456355085097, + 12.9800587761498 + ], + [ + 77.519551001710099, + 12.9799087842866 + ], + [ + 77.519624755534096, + 12.979799652501001 + ], + [ + 77.519666472646506, + 12.979711157766999 + ], + [ + 77.519725000038804, + 12.9796337945141 + ], + [ + 77.519729715072998, + 12.9795874453719 + ], + [ + 77.519720755589006, + 12.979498313393799 + ], + [ + 77.519684713561404, + 12.9794071852145 + ], + [ + 77.519675709743495, + 12.9793864147055 + ], + [ + 77.519667172811893, + 12.9793667211382 + ], + [ + 77.519569171333103, + 12.9791406486084 + ], + [ + 77.519566423697597, + 12.9791386893856 + ], + [ + 77.519540309539195, + 12.979120066038099 + ], + [ + 77.519492616075993, + 12.979086052311199 + ], + [ + 77.519311785930597, + 12.9789116258157 + ], + [ + 77.519276807239095, + 12.978867759219799 + ], + [ + 77.519264795916598, + 12.9788526962164 + ], + [ + 77.519186675214598, + 12.978754725242201 + ], + [ + 77.519063358002398, + 12.978600073134199 + ], + [ + 77.5190604565109, + 12.978590248775401 + ], + [ + 77.519027988649199, + 12.9784802969859 + ], + [ + 77.519014474996098, + 12.978434531932001 + ], + [ + 77.518981212402394, + 12.978316285730299 + ], + [ + 77.518912925440205, + 12.978073532065901 + ], + [ + 77.518892621300694, + 12.978001351720801 + ], + [ + 77.518848458699793, + 12.9778443595351 + ], + [ + 77.5188122143811, + 12.977706289045299 + ], + [ + 77.518789321262304, + 12.9776190808418 + ], + [ + 77.518752056737597, + 12.9774771243976 + ], + [ + 77.518711728201396, + 12.977334168555799 + ], + [ + 77.518711398592899, + 12.9773329999321 + ], + [ + 77.518710053419298, + 12.9773282317341 + ], + [ + 77.518698543970999, + 12.9772874344472 + ], + [ + 77.518682791681002, + 12.9772315964273 + ], + [ + 77.518617845559504, + 12.9770622461714 + ], + [ + 77.518578539219803, + 12.976959751881701 + ], + [ + 77.518571031811902, + 12.976940176567799 + ], + [ + 77.518473033022602, + 12.976642976551201 + ], + [ + 77.518435636772395, + 12.976531532787501 + ], + [ + 77.518434453100497, + 12.976414091498 + ], + [ + 77.518436831378807, + 12.976364376912199 + ], + [ + 77.518455905936307, + 12.976314500609201 + ], + [ + 77.518457040799404, + 12.976237829107999 + ], + [ + 77.518457276324597, + 12.976221880356601 + ], + [ + 77.518459302058602, + 12.976137159230101 + ], + [ + 77.518467301203003, + 12.976073837961399 + ], + [ + 77.518522237512002, + 12.9759829575877 + ], + [ + 77.518531365363202, + 12.9759173666809 + ], + [ + 77.518540470709496, + 12.975874240186 + ], + [ + 77.518540941164602, + 12.975872013965301 + ], + [ + 77.518555595052604, + 12.9758026119499 + ], + [ + 77.518564339908906, + 12.9757611965293 + ], + [ + 77.518573318243298, + 12.9757240288298 + ], + [ + 77.518590318933803, + 12.975653656330801 + ], + [ + 77.518598861478196, + 12.9755562938021 + ], + [ + 77.518602714935895, + 12.9755123670966 + ], + [ + 77.518581510950497, + 12.9754651396334 + ], + [ + 77.518519498260702, + 12.9754250835423 + ], + [ + 77.5183400363385, + 12.975386164927301 + ], + [ + 77.518209004129801, + 12.9753535533002 + ], + [ + 77.518183937448995, + 12.97533213324 + ], + [ + 77.518179548565001, + 12.9753283820175 + ], + [ + 77.518177641731398, + 12.9753267525306 + ], + [ + 77.518170891206907, + 12.9753208522053 + ], + [ + 77.518132912442198, + 12.975287658309099 + ], + [ + 77.518095838230096, + 12.975251797599 + ], + [ + 77.518035810221903, + 12.975193732898999 + ], + [ + 77.518020304246306, + 12.9751948976614 + ], + [ + 77.517932246791204, + 12.9752015118538 + ], + [ + 77.517821531757093, + 12.9751280465282 + ], + [ + 77.517813751667603, + 12.975098758655699 + ], + [ + 77.517800837194102, + 12.975050141684999 + ], + [ + 77.517777245126297, + 12.974961330937999 + ], + [ + 77.517778101912697, + 12.974961057921799 + ], + [ + 77.517797192789203, + 12.9749549805599 + ], + [ + 77.517806516455806, + 12.974952012690499 + ], + [ + 77.517804217874897, + 12.9749449624798 + ], + [ + 77.517747101743097, + 12.974769632603399 + ], + [ + 77.517623212736694, + 12.974531408989099 + ], + [ + 77.517608848107798, + 12.9744694118942 + ], + [ + 77.517604031639706, + 12.9744486232941 + ], + [ + 77.517603996968106, + 12.9744484736516 + ], + [ + 77.517583475416401, + 12.974359002503901 + ], + [ + 77.5175442343361, + 12.974178685717501 + ], + [ + 77.517498505894693, + 12.974057591811 + ], + [ + 77.517483895958804, + 12.974018901524399 + ], + [ + 77.5174213793468, + 12.9738727078068 + ], + [ + 77.517397805094404, + 12.9738175804766 + ], + [ + 77.517337921540204, + 12.973702965990499 + ], + [ + 77.517315335352606, + 12.973575567561101 + ], + [ + 77.517315110065596, + 12.9735727716531 + ], + [ + 77.517312702858803, + 12.9735428417622 + ], + [ + 77.517296491305004, + 12.9733623019599 + ], + [ + 77.517307445537298, + 12.9732618432948 + ], + [ + 77.517311778183995, + 12.973222114033099 + ], + [ + 77.517394800134298, + 12.973118539170001 + ], + [ + 77.517439127570398, + 12.9731227937553 + ], + [ + 77.517512373426001, + 12.973129823984999 + ], + [ + 77.517521498043607, + 12.973178297895799 + ], + [ + 77.517626575856397, + 12.9732066439242 + ], + [ + 77.517792631299201, + 12.973172285101001 + ], + [ + 77.517945251477798, + 12.9730426899874 + ], + [ + 77.518102060546298, + 12.9729095378968 + ], + [ + 77.518167965375795, + 12.972764342493999 + ], + [ + 77.518166626404494, + 12.9727575314504 + ], + [ + 77.5181400496447, + 12.9726223141886 + ], + [ + 77.518115009696899, + 12.9725903393206 + ], + [ + 77.518049641373295, + 12.9725068660521 + ], + [ + 77.517991481166405, + 12.972334637964099 + ], + [ + 77.517945289575806, + 12.972285292384999 + ], + [ + 77.517907667480102, + 12.9722451010471 + ], + [ + 77.517885807695805, + 12.972159760027401 + ], + [ + 77.517884293554005, + 12.9721538496419 + ], + [ + 77.517884080072506, + 12.9721496640634 + ], + [ + 77.517880342728205, + 12.9720765497168 + ], + [ + 77.517879274638204, + 12.9720556453213 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "185", + "group": "Gorguntepalaya", + "Corporatio": "West", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "5", + "ward_id": "5", + "ward_name": "5 - Goraguntepalaya", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಗೋರಗುಂಟೆಪಾಳ್ಯ", + "dig_ward_n": "Gorguntepalaya", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "5" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.532254183017002, + 13.020659582053501 + ], + [ + 77.532246926448806, + 13.0206203727162 + ], + [ + 77.532164539583505, + 13.0201752339526 + ], + [ + 77.532148720120702, + 13.020089757452601 + ], + [ + 77.532148033770895, + 13.0200860499857 + ], + [ + 77.532144648742701, + 13.0200677579386 + ], + [ + 77.532032985075901, + 13.0194644297798 + ], + [ + 77.532032980203098, + 13.019464403626699 + ], + [ + 77.531992432701102, + 13.0192453220074 + ], + [ + 77.530650211921298, + 13.0193440586477 + ], + [ + 77.530726222378703, + 13.019766338966599 + ], + [ + 77.530113071355601, + 13.019692017630501 + ], + [ + 77.529282023688097, + 13.019592359475199 + ], + [ + 77.529293847537005, + 13.019452162409401 + ], + [ + 77.528658173905299, + 13.0193813912372 + ], + [ + 77.528686798268595, + 13.019549702493 + ], + [ + 77.528614664873203, + 13.019784422271499 + ], + [ + 77.528378618297296, + 13.019812955764399 + ], + [ + 77.528132058109094, + 13.019825641354499 + ], + [ + 77.528073664408097, + 13.019898919724399 + ], + [ + 77.528031300350506, + 13.0200729558529 + ], + [ + 77.527952297108001, + 13.0202309623379 + ], + [ + 77.527909560459605, + 13.0202882281583 + ], + [ + 77.527907290109795, + 13.020292500243899 + ], + [ + 77.527431368916595, + 13.0206539756491 + ], + [ + 77.527434196133498, + 13.020659182811899 + ], + [ + 77.527398129435795, + 13.020773107777501 + ], + [ + 77.527413586591905, + 13.020892757615799 + ], + [ + 77.527696967788003, + 13.021060496384401 + ], + [ + 77.5278332197569, + 13.0211177451108 + ], + [ + 77.527935216554297, + 13.021148655566 + ], + [ + 77.528275186345198, + 13.021038358154 + ], + [ + 77.528455653970198, + 13.0210027173892 + ], + [ + 77.530565312373795, + 13.025555957480799 + ], + [ + 77.530638345854697, + 13.0257156104994 + ], + [ + 77.531063202073099, + 13.026664710255901 + ], + [ + 77.531105009188806, + 13.0266417150186 + ], + [ + 77.532332576711696, + 13.0259637249266 + ], + [ + 77.532347468240403, + 13.025955674004299 + ], + [ + 77.533668903395196, + 13.025235908130901 + ], + [ + 77.533908956257207, + 13.025100906813201 + ], + [ + 77.534094713740402, + 13.0249964694884 + ], + [ + 77.534113382107705, + 13.0249859737982 + ], + [ + 77.534126867645398, + 13.025009557998599 + ], + [ + 77.534138326986806, + 13.0250037992354 + ], + [ + 77.534518502004303, + 13.025686764836401 + ], + [ + 77.534632609676606, + 13.025891751727601 + ], + [ + 77.534698547874399, + 13.0260102056539 + ], + [ + 77.534890933813003, + 13.0263564266691 + ], + [ + 77.535006455690905, + 13.026563362979401 + ], + [ + 77.535012701103298, + 13.026574578976099 + ], + [ + 77.535612850228901, + 13.026421476792301 + ], + [ + 77.536628856676103, + 13.0262010464658 + ], + [ + 77.536717535543005, + 13.0271596227897 + ], + [ + 77.536760013674694, + 13.027634940131501 + ], + [ + 77.537622751982497, + 13.0275101379078 + ], + [ + 77.5375792429504, + 13.027243358842499 + ], + [ + 77.537533157725605, + 13.0272519461515 + ], + [ + 77.537420091490802, + 13.026485385704101 + ], + [ + 77.537373147535106, + 13.026089224516999 + ], + [ + 77.537831781080797, + 13.0260497415365 + ], + [ + 77.5381397756571, + 13.0260650722031 + ], + [ + 77.538442128365404, + 13.026163041237099 + ], + [ + 77.538415102425006, + 13.0266292387092 + ], + [ + 77.5385451636147, + 13.0272516514889 + ], + [ + 77.538562055975902, + 13.0273386696449 + ], + [ + 77.538669315176904, + 13.0276959187947 + ], + [ + 77.539448000084903, + 13.0272820840822 + ], + [ + 77.540081292258506, + 13.028815901595101 + ], + [ + 77.540266198476303, + 13.029950126404101 + ], + [ + 77.540279723010499, + 13.030022065051 + ], + [ + 77.540332977580505, + 13.0303053394694 + ], + [ + 77.540367284579304, + 13.030487826539099 + ], + [ + 77.540391257632706, + 13.030615589030299 + ], + [ + 77.540442487731298, + 13.0308886171465 + ], + [ + 77.540556280279304, + 13.031495066306301 + ], + [ + 77.540558826504395, + 13.031508635777399 + ], + [ + 77.540600548456098, + 13.0317309868026 + ], + [ + 77.540624522843999, + 13.031858754628299 + ], + [ + 77.540650912938304, + 13.031999396622901 + ], + [ + 77.540678632252494, + 13.0321471240973 + ], + [ + 77.540687586519198, + 13.0321948449399 + ], + [ + 77.540700423034593, + 13.032263256808299 + ], + [ + 77.540746813016398, + 13.0324920641995 + ], + [ + 77.540747397125898, + 13.032494944137699 + ], + [ + 77.540747725115097, + 13.032496564447399 + ], + [ + 77.540748879780395, + 13.0325022603107 + ], + [ + 77.540748808726406, + 13.032502521205901 + ], + [ + 77.540749010983603, + 13.0325023855087 + ], + [ + 77.540751046248303, + 13.0325114815078 + ], + [ + 77.540753478320298, + 13.032522349827101 + ], + [ + 77.540770283724996, + 13.032597454466799 + ], + [ + 77.540773060474393, + 13.0326098625229 + ], + [ + 77.541225244362707, + 13.0346306377042 + ], + [ + 77.541389487574193, + 13.035465370475199 + ], + [ + 77.541465380818295, + 13.035851079026701 + ], + [ + 77.541950708257701, + 13.0383125233041 + ], + [ + 77.542147960747499, + 13.038529439649199 + ], + [ + 77.542788885610804, + 13.039133806635 + ], + [ + 77.542954612296398, + 13.039290078724299 + ], + [ + 77.5434212562444, + 13.038710995876301 + ], + [ + 77.543855367983696, + 13.038247093135 + ], + [ + 77.543955196710101, + 13.038121406165001 + ], + [ + 77.544358013222805, + 13.0376142463713 + ], + [ + 77.544451014748802, + 13.037545563530101 + ], + [ + 77.544508345342294, + 13.037503223905 + ], + [ + 77.544841629487394, + 13.0369793274486 + ], + [ + 77.544865110894705, + 13.0369309836239 + ], + [ + 77.545198436144801, + 13.0362447298199 + ], + [ + 77.545324450239704, + 13.0359852895297 + ], + [ + 77.545796385819401, + 13.0350534713724 + ], + [ + 77.5466142391125, + 13.033538906256201 + ], + [ + 77.546777164894195, + 13.033225931279 + ], + [ + 77.546948857076103, + 13.032896117156399 + ], + [ + 77.5476879380127, + 13.0314763586974 + ], + [ + 77.548159243026703, + 13.030454857731 + ], + [ + 77.548445563731505, + 13.029834284909199 + ], + [ + 77.548801791001907, + 13.0290621940945 + ], + [ + 77.548854645754602, + 13.0289400374979 + ], + [ + 77.548965059290396, + 13.028684852744201 + ], + [ + 77.549123792254804, + 13.0283179918701 + ], + [ + 77.549205167718497, + 13.028129919099101 + ], + [ + 77.550040247970301, + 13.0260516474107 + ], + [ + 77.550183850767795, + 13.0257904892437 + ], + [ + 77.550663207835299, + 13.0249116733759 + ], + [ + 77.550711526182496, + 13.024823562138399 + ], + [ + 77.5507737299762, + 13.024710130268099 + ], + [ + 77.550884252881701, + 13.024508587134299 + ], + [ + 77.552006700235395, + 13.022470233417501 + ], + [ + 77.552094145687207, + 13.022311432307699 + ], + [ + 77.552766513745496, + 13.021187855339599 + ], + [ + 77.552890206894304, + 13.0209811543945 + ], + [ + 77.553341146403895, + 13.0203092825527 + ], + [ + 77.553355429341195, + 13.0202821501312 + ], + [ + 77.553369713188005, + 13.020255016797099 + ], + [ + 77.5536196330916, + 13.0197802746675 + ], + [ + 77.553888280801601, + 13.019190380200399 + ], + [ + 77.553941238789804, + 13.0190757968666 + ], + [ + 77.555116191724395, + 13.0169015671304 + ], + [ + 77.555694109152697, + 13.016034198700501 + ], + [ + 77.555859991464402, + 13.015809310281201 + ], + [ + 77.555861092881301, + 13.015807817754499 + ], + [ + 77.555856049045502, + 13.0158040268799 + ], + [ + 77.555807701756905, + 13.0157676885024 + ], + [ + 77.555599287972399, + 13.015660198686099 + ], + [ + 77.555495931695702, + 13.015606644983 + ], + [ + 77.555214292325502, + 13.015460715254999 + ], + [ + 77.555040164106401, + 13.0153833787008 + ], + [ + 77.554858862946205, + 13.015336604380501 + ], + [ + 77.554575505072904, + 13.015277283577101 + ], + [ + 77.554340228542898, + 13.015245721832599 + ], + [ + 77.5541986466623, + 13.015197426391699 + ], + [ + 77.554128656294395, + 13.015054691887901 + ], + [ + 77.554019705205405, + 13.0148750734683 + ], + [ + 77.554009193658402, + 13.0150174038977 + ], + [ + 77.554002510896694, + 13.015107883292 + ], + [ + 77.554095150804301, + 13.0156625974517 + ], + [ + 77.554073396425906, + 13.0156752342963 + ], + [ + 77.553871827663102, + 13.015898567059001 + ], + [ + 77.5538265594016, + 13.0164901989213 + ], + [ + 77.5538261108386, + 13.016496059555401 + ], + [ + 77.553807836670302, + 13.0167348961592 + ], + [ + 77.553624525223796, + 13.017559978097101 + ], + [ + 77.553421395254304, + 13.0183353771664 + ], + [ + 77.5534159162289, + 13.018356292890401 + ], + [ + 77.553384557071297, + 13.018475963979 + ], + [ + 77.553021524763395, + 13.0194089725401 + ], + [ + 77.552909097389005, + 13.0196384353157 + ], + [ + 77.552905928609604, + 13.0196449036671 + ], + [ + 77.552788558782098, + 13.0198844534318 + ], + [ + 77.552764284407104, + 13.0199321240794 + ], + [ + 77.552757505420601, + 13.0199459541317 + ], + [ + 77.552757405237301, + 13.0199461583966 + ], + [ + 77.552708582303097, + 13.0200457685209 + ], + [ + 77.5526027620338, + 13.0202616685109 + ], + [ + 77.552565161212897, + 13.020338382879601 + ], + [ + 77.552430177390903, + 13.020597197945101 + ], + [ + 77.552427995767601, + 13.0206013617879 + ], + [ + 77.552329636009006, + 13.020789043721701 + ], + [ + 77.552259506718798, + 13.020923701006 + ], + [ + 77.552064192897106, + 13.021298723919401 + ], + [ + 77.551522425444503, + 13.0221555684818 + ], + [ + 77.551370443791996, + 13.0222978960071 + ], + [ + 77.551349944517199, + 13.022317093053701 + ], + [ + 77.551049552790403, + 13.0225984015698 + ], + [ + 77.550193267080004, + 13.0230536653483 + ], + [ + 77.549336976018395, + 13.023508927779901 + ], + [ + 77.548891295939697, + 13.0237458799569 + ], + [ + 77.548480682351197, + 13.023964187030501 + ], + [ + 77.547554289257306, + 13.024491657532 + ], + [ + 77.546420496703007, + 13.025136973144701 + ], + [ + 77.546402117059898, + 13.025147434273601 + ], + [ + 77.545989065191506, + 13.025382528575699 + ], + [ + 77.545012679562603, + 13.0259382491511 + ], + [ + 77.544855118941001, + 13.026027925135599 + ], + [ + 77.544604453570301, + 13.0261705929251 + ], + [ + 77.544255176931202, + 13.0263682677985 + ], + [ + 77.544003413760905, + 13.0259640928022 + ], + [ + 77.544000566848396, + 13.0259595221252 + ], + [ + 77.543581859767599, + 13.025287335072001 + ], + [ + 77.543242184817899, + 13.0247420217016 + ], + [ + 77.543236888257894, + 13.024733518784201 + ], + [ + 77.542908547158206, + 13.0242063976461 + ], + [ + 77.542725540725101, + 13.0239204707221 + ], + [ + 77.5425661992263, + 13.023671516078 + ], + [ + 77.542509934646901, + 13.023583608979701 + ], + [ + 77.542451978124603, + 13.023493058661 + ], + [ + 77.542126159832307, + 13.022983999438001 + ], + [ + 77.5421193113839, + 13.0229733000244 + ], + [ + 77.542002040359307, + 13.0227900757101 + ], + [ + 77.542010620207606, + 13.0227843448915 + ], + [ + 77.5417156059588, + 13.022275548227601 + ], + [ + 77.541712145973506, + 13.022269581344 + ], + [ + 77.541528470417504, + 13.0219528035504 + ], + [ + 77.541287666063297, + 13.02153749811 + ], + [ + 77.541285241550398, + 13.02153331625 + ], + [ + 77.541046323297707, + 13.0211212615823 + ], + [ + 77.541056186287094, + 13.0211159464637 + ], + [ + 77.541069805520706, + 13.021108607795901 + ], + [ + 77.540888715095903, + 13.020810586948199 + ], + [ + 77.540880417666997, + 13.0207969328959 + ], + [ + 77.540538933063104, + 13.0202349489527 + ], + [ + 77.5405313019712, + 13.020222390579701 + ], + [ + 77.540439167558901, + 13.0200707631992 + ], + [ + 77.540167956782099, + 13.0196244263346 + ], + [ + 77.540147359599899, + 13.0195905295438 + ], + [ + 77.540113398007506, + 13.019534637816999 + ], + [ + 77.539983940214299, + 13.0193215851213 + ], + [ + 77.539979126181805, + 13.019313661909599 + ], + [ + 77.539900022338202, + 13.019183479508399 + ], + [ + 77.539893558040703, + 13.019172841283799 + ], + [ + 77.539810531471701, + 13.019036201347699 + ], + [ + 77.539806816756297, + 13.0190381395422 + ], + [ + 77.539803247775197, + 13.019040002224401 + ], + [ + 77.539788342192594, + 13.019047781660101 + ], + [ + 77.539722315082599, + 13.0190822390222 + ], + [ + 77.539694789569694, + 13.0190968593758 + ], + [ + 77.539484038497207, + 13.019208800193001 + ], + [ + 77.539365632501202, + 13.0192713453431 + ], + [ + 77.539357689398898, + 13.019275541160299 + ], + [ + 77.539313663689597, + 13.0192987967415 + ], + [ + 77.539196493929396, + 13.0193606891599 + ], + [ + 77.539082659015094, + 13.0194218902411 + ], + [ + 77.5386380680157, + 13.0196609151121 + ], + [ + 77.538397867132304, + 13.0198047460323 + ], + [ + 77.538384650853502, + 13.0198126606413 + ], + [ + 77.538380972897599, + 13.019814863175201 + ], + [ + 77.538248842026405, + 13.019893981818299 + ], + [ + 77.538219606694597, + 13.0199114574842 + ], + [ + 77.538109439785202, + 13.019977312203199 + ], + [ + 77.538107154771197, + 13.019978678035001 + ], + [ + 77.538086272770997, + 13.019991160641 + ], + [ + 77.538075978768106, + 13.019997314674701 + ], + [ + 77.538051898989096, + 13.020011741232601 + ], + [ + 77.538045327032094, + 13.020015678751401 + ], + [ + 77.538033555021997, + 13.0200227317513 + ], + [ + 77.537913174385693, + 13.020094853487199 + ], + [ + 77.537913015032601, + 13.0200949490082 + ], + [ + 77.537746719369395, + 13.0201945782156 + ], + [ + 77.537746365855099, + 13.020194789474401 + ], + [ + 77.537556022256695, + 13.0203088258341 + ], + [ + 77.537543118250397, + 13.020316556658299 + ], + [ + 77.537376515468296, + 13.0204163702816 + ], + [ + 77.537018152826803, + 13.0206216851112 + ], + [ + 77.537018161403793, + 13.020621713034799 + ], + [ + 77.536942297790802, + 13.0206651797268 + ], + [ + 77.536901303611799, + 13.020688674537899 + ], + [ + 77.536850342340699, + 13.0207174067324 + ], + [ + 77.536826019394596, + 13.0207310423345 + ], + [ + 77.536697303222397, + 13.02080319913 + ], + [ + 77.536690419904701, + 13.020807058356599 + ], + [ + 77.536659660716495, + 13.0208243021501 + ], + [ + 77.536034948734596, + 13.021175991541799 + ], + [ + 77.535922263452505, + 13.0212332637157 + ], + [ + 77.535884588007207, + 13.0212524118599 + ], + [ + 77.535880442791495, + 13.021254518652301 + ], + [ + 77.535686038309393, + 13.0213533232112 + ], + [ + 77.535683505482794, + 13.0213547872182 + ], + [ + 77.535683470656195, + 13.021354805628301 + ], + [ + 77.535641430686795, + 13.021379142605999 + ], + [ + 77.535639832217697, + 13.021380067134899 + ], + [ + 77.535639683826702, + 13.0213801535128 + ], + [ + 77.535626496737507, + 13.021387785841799 + ], + [ + 77.535606819365697, + 13.0213989690592 + ], + [ + 77.535563805616604, + 13.021423414031901 + ], + [ + 77.535402619397402, + 13.021515016224299 + ], + [ + 77.535367999119501, + 13.021534690956701 + ], + [ + 77.535272644458303, + 13.021588881479101 + ], + [ + 77.535226842270305, + 13.021615304274899 + ], + [ + 77.535003105554594, + 13.021683947507899 + ], + [ + 77.534994907458298, + 13.0216864625465 + ], + [ + 77.534980910894802, + 13.021688528357799 + ], + [ + 77.534962131047806, + 13.0216913004872 + ], + [ + 77.534785345257006, + 13.021715478105 + ], + [ + 77.534784724158897, + 13.0217155627815 + ], + [ + 77.534330683960306, + 13.0217776589514 + ], + [ + 77.534128090781707, + 13.021804917269 + ], + [ + 77.534126769423196, + 13.021805094620801 + ], + [ + 77.534122497106196, + 13.0218056694428 + ], + [ + 77.533899937356296, + 13.021836079879799 + ], + [ + 77.533867755771297, + 13.0218409742125 + ], + [ + 77.5336222124551, + 13.021878321014 + ], + [ + 77.533533111053799, + 13.0218922038445 + ], + [ + 77.533402362797503, + 13.0219125759224 + ], + [ + 77.533158204771496, + 13.0219506170868 + ], + [ + 77.533128929163198, + 13.0219599379437 + ], + [ + 77.533094042619794, + 13.021971396140099 + ], + [ + 77.532905653539103, + 13.0220332685389 + ], + [ + 77.532842530047205, + 13.022055342901499 + ], + [ + 77.532794954028105, + 13.0220772653055 + ], + [ + 77.532634985356296, + 13.022146588974101 + ], + [ + 77.532598863339302, + 13.022053729937999 + ], + [ + 77.5325478442753, + 13.021922573761501 + ], + [ + 77.532535639950098, + 13.021891200721599 + ], + [ + 77.532528421638105, + 13.021868820899099 + ], + [ + 77.532519101682794, + 13.0218399259014 + ], + [ + 77.532504194152494, + 13.0217937090387 + ], + [ + 77.532440499733696, + 13.0215962426209 + ], + [ + 77.532419360525594, + 13.021530973701299 + ], + [ + 77.532412987925994, + 13.0215112960221 + ], + [ + 77.532374505133504, + 13.021392477052601 + ], + [ + 77.532312948209196, + 13.0210175289023 + ], + [ + 77.532308626451794, + 13.020991206022099 + ], + [ + 77.532308594019, + 13.0209910066717 + ], + [ + 77.532301445439501, + 13.0209474659459 + ], + [ + 77.532301350158406, + 13.0209468850412 + ], + [ + 77.532254870542602, + 13.0206637674445 + ], + [ + 77.532254183017002, + 13.020659582053501 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "186", + "group": "Jnana Bharathi", + "Corporatio": "West", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "5", + "ward_id": "111", + "ward_name": "111 - Jnana Bharathi Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಜ್ಞಾನ ಭಾರತಿ ವಾರ್ಡ್", + "dig_ward_n": "Jnana Bharathi", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "111" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.494651359158397, + 12.9475337747018 + ], + [ + 77.494003696001897, + 12.9475953142294 + ], + [ + 77.493899576830998, + 12.947604216453801 + ], + [ + 77.493677002649605, + 12.947627804859501 + ], + [ + 77.493381395800895, + 12.947659997609801 + ], + [ + 77.493152387536696, + 12.9476752084634 + ], + [ + 77.492666230925494, + 12.947707497989301 + ], + [ + 77.492650022058896, + 12.9476986180527 + ], + [ + 77.492408234128803, + 12.947681404626101 + ], + [ + 77.4923423621902, + 12.947676714928701 + ], + [ + 77.491956353748506, + 12.947649913897401 + ], + [ + 77.491685571022302, + 12.947631045404201 + ], + [ + 77.491591114652806, + 12.9476274311738 + ], + [ + 77.4911850471549, + 12.9476098558006 + ], + [ + 77.490804331956795, + 12.947594296179 + ], + [ + 77.4907173593935, + 12.9475906100835 + ], + [ + 77.490649095221002, + 12.947450394973201 + ], + [ + 77.490598050177994, + 12.9473455463487 + ], + [ + 77.490458833272498, + 12.947414639679 + ], + [ + 77.490443759470395, + 12.9474275574659 + ], + [ + 77.489685868634595, + 12.948077065837801 + ], + [ + 77.489542572754203, + 12.948199278527699 + ], + [ + 77.489457570087794, + 12.9482780178145 + ], + [ + 77.489223106892993, + 12.948495969221799 + ], + [ + 77.489007450182001, + 12.9486945413861 + ], + [ + 77.488611536602093, + 12.949061983357501 + ], + [ + 77.488616220570805, + 12.949069844265299 + ], + [ + 77.488617862964404, + 12.949072156000099 + ], + [ + 77.4886861813347, + 12.949168335408 + ], + [ + 77.488740296446196, + 12.9492445186214 + ], + [ + 77.488904591791893, + 12.9494758160535 + ], + [ + 77.488904668398405, + 12.9494759237419 + ], + [ + 77.488883887658901, + 12.9494704753811 + ], + [ + 77.488813572074505, + 12.949463817018 + ], + [ + 77.488721376232803, + 12.9494550872156 + ], + [ + 77.488643645357101, + 12.949478508585701 + ], + [ + 77.488570408362193, + 12.9495005751217 + ], + [ + 77.488340522269894, + 12.9496479928249 + ], + [ + 77.488298662108505, + 12.949674836379501 + ], + [ + 77.488182515452806, + 12.949748225971 + ], + [ + 77.488112763861295, + 12.949797455456901 + ], + [ + 77.487801742956904, + 12.950017266574999 + ], + [ + 77.487514720993602, + 12.950218778181201 + ], + [ + 77.487108616693504, + 12.950488059899699 + ], + [ + 77.486801048070404, + 12.9507078371481 + ], + [ + 77.486524196319607, + 12.9508900513736 + ], + [ + 77.486396646756802, + 12.9509748429954 + ], + [ + 77.486081162819701, + 12.9512093770931 + ], + [ + 77.485853023909897, + 12.9513109398371 + ], + [ + 77.485631221769296, + 12.9513548435262 + ], + [ + 77.4852525134567, + 12.9514262198801 + ], + [ + 77.485006117601102, + 12.9514285706123 + ], + [ + 77.484974432180493, + 12.951426614126699 + ], + [ + 77.484942171068198, + 12.951424663129099 + ], + [ + 77.484943346636896, + 12.9514273696575 + ], + [ + 77.485016410489493, + 12.951595620836899 + ], + [ + 77.4850345794014, + 12.9518021242583 + ], + [ + 77.485049428620201, + 12.952022211916301 + ], + [ + 77.485082888236803, + 12.9521449952321 + ], + [ + 77.485097345554905, + 12.952325558272801 + ], + [ + 77.485110447632394, + 12.9523694791281 + ], + [ + 77.485110951662506, + 12.952420296467499 + ], + [ + 77.485105391881902, + 12.9524982768078 + ], + [ + 77.485103140655497, + 12.952561543626899 + ], + [ + 77.485126959231906, + 12.952699100856799 + ], + [ + 77.485152917040097, + 12.952762098520401 + ], + [ + 77.485185592773604, + 12.9528058326022 + ], + [ + 77.485218201309806, + 12.9528427910333 + ], + [ + 77.485259964959496, + 12.952874015196199 + ], + [ + 77.485376318084107, + 12.9529372796405 + ], + [ + 77.485450410289204, + 12.952977230316201 + ], + [ + 77.485512027682802, + 12.9530364994867 + ], + [ + 77.485537985631694, + 12.953099497086599 + ], + [ + 77.485594883751205, + 12.953321442077399 + ], + [ + 77.485634889443901, + 12.9534656209942 + ], + [ + 77.485616436184998, + 12.9535787351683 + ], + [ + 77.485580318218695, + 12.953826414224499 + ], + [ + 77.485555962317505, + 12.953924902786699 + ], + [ + 77.485562787962493, + 12.9539745303909 + ], + [ + 77.485575979891806, + 12.954027485376599 + ], + [ + 77.485584016697302, + 12.9544893253293 + ], + [ + 77.485604695459898, + 12.954658535044601 + ], + [ + 77.4856210406153, + 12.954779343822301 + ], + [ + 77.485622092392703, + 12.9547871183774 + ], + [ + 77.485626297331194, + 12.954862746736399 + ], + [ + 77.485626790360996, + 12.954912434772501 + ], + [ + 77.485623840403207, + 12.954963285051599 + ], + [ + 77.485614300033006, + 12.954988222483401 + ], + [ + 77.485582860678306, + 12.955011110173499 + ], + [ + 77.485557111080695, + 12.9550271672713 + ], + [ + 77.485457952072395, + 12.955072159527701 + ], + [ + 77.485077405963395, + 12.9551909881223 + ], + [ + 77.485043364192407, + 12.9552014403602 + ], + [ + 77.484693969695698, + 12.9553087144154 + ], + [ + 77.484577673763894, + 12.9553674224672 + ], + [ + 77.484539605861997, + 12.9554186078309 + ], + [ + 77.484507713844593, + 12.9554539229298 + ], + [ + 77.484489208546606, + 12.955503792264199 + ], + [ + 77.484486314374394, + 12.955560288943699 + ], + [ + 77.484486874409995, + 12.955616752667201 + ], + [ + 77.484478413640801, + 12.9556925019396 + ], + [ + 77.484453291129, + 12.9557717983239 + ], + [ + 77.484409752881305, + 12.9559099982398 + ], + [ + 77.484391471558396, + 12.9559824530656 + ], + [ + 77.484385436784507, + 12.9560706023895 + ], + [ + 77.484374110614397, + 12.956152997177499 + ], + [ + 77.484367715486201, + 12.956199520942199 + ], + [ + 77.484381456222096, + 12.956307810455399 + ], + [ + 77.484385257667199, + 12.956342785008101 + ], + [ + 77.484410801413105, + 12.956363999540001 + ], + [ + 77.484440195864394, + 12.9563671072272 + ], + [ + 77.484471859523396, + 12.956366805115801 + ], + [ + 77.484507586706201, + 12.956369852372401 + ], + [ + 77.484530229545598, + 12.956388835806701 + ], + [ + 77.484533600933304, + 12.9564384964129 + ], + [ + 77.484534430613706, + 12.9565221386021 + ], + [ + 77.4845355948502, + 12.9566395072464 + ], + [ + 77.484494827503795, + 12.9567087884916 + ], + [ + 77.484447252505603, + 12.956788299120999 + ], + [ + 77.484419027387602, + 12.956845037495 + ], + [ + 77.484413321929495, + 12.956908337286 + ], + [ + 77.484436233660404, + 12.956954423305801 + ], + [ + 77.484549515389702, + 12.957056116080899 + ], + [ + 77.484717097037105, + 12.957117762285399 + ], + [ + 77.484758727013499, + 12.9571354351125 + ], + [ + 77.484794644763298, + 12.9571576799682 + ], + [ + 77.484811044580596, + 12.9571857579867 + ], + [ + 77.4848144496749, + 12.9572388063966 + ], + [ + 77.484802344352502, + 12.9572953909689 + ], + [ + 77.484732473736102, + 12.9573909257567 + ], + [ + 77.4846852167626, + 12.9574444576365 + ], + [ + 77.484675833089796, + 12.9574852049016 + ], + [ + 77.484672782175295, + 12.9575258917341 + ], + [ + 77.484692860313601, + 12.957576522276399 + ], + [ + 77.484855117972302, + 12.957739863412 + ], + [ + 77.485016508803596, + 12.9578738487818 + ], + [ + 77.485029387236906, + 12.957895184098099 + ], + [ + 77.485098079104006, + 12.9580821068456 + ], + [ + 77.485117290456998, + 12.958126232240099 + ], + [ + 77.485208079651997, + 12.9581245100215 + ], + [ + 77.4852757704749, + 12.958263171613501 + ], + [ + 77.485439801571104, + 12.958563441261701 + ], + [ + 77.485461784289299, + 12.958657248251299 + ], + [ + 77.485484318214901, + 12.958753405408901 + ], + [ + 77.485546719931904, + 12.958836394644599 + ], + [ + 77.485566818854096, + 12.958952293109 + ], + [ + 77.485520906788693, + 12.959099006066401 + ], + [ + 77.4855056656166, + 12.9592338161725 + ], + [ + 77.485561286309206, + 12.9593493754913 + ], + [ + 77.485649277049205, + 12.959385684759001 + ], + [ + 77.485697517507305, + 12.959473452237299 + ], + [ + 77.485731094976998, + 12.959732448142001 + ], + [ + 77.485852523449097, + 12.960035446043401 + ], + [ + 77.4859777206903, + 12.960240890860099 + ], + [ + 77.486082595423298, + 12.960367326715 + ], + [ + 77.486109561891297, + 12.960399836548801 + ], + [ + 77.486287298109403, + 12.9606488947373 + ], + [ + 77.486403380685104, + 12.9608348735633 + ], + [ + 77.4864206270056, + 12.960902040625699 + ], + [ + 77.486423963556703, + 12.960999525702 + ], + [ + 77.486400789157301, + 12.961050826637599 + ], + [ + 77.486387017679206, + 12.9610950726476 + ], + [ + 77.486407601158405, + 12.9611997619565 + ], + [ + 77.486431936190797, + 12.961276557699801 + ], + [ + 77.486528206546296, + 12.9614759122801 + ], + [ + 77.488127166686695, + 12.9607911023389 + ], + [ + 77.488203939522407, + 12.961096523923899 + ], + [ + 77.489835173586698, + 12.960956186760001 + ], + [ + 77.490453714631599, + 12.960915258952401 + ], + [ + 77.491719011841894, + 12.9608016871278 + ], + [ + 77.491865025228094, + 12.9607885809527 + ], + [ + 77.492115615456498, + 12.960766087239501 + ], + [ + 77.492149537364796, + 12.960761244977601 + ], + [ + 77.492190300345598, + 12.9607495609651 + ], + [ + 77.492242181705606, + 12.9608598739997 + ], + [ + 77.492441467974899, + 12.9612836091828 + ], + [ + 77.492450655835, + 12.961581633674299 + ], + [ + 77.492451909014093, + 12.9616222891033 + ], + [ + 77.492465277471197, + 12.962055873504999 + ], + [ + 77.492534152096994, + 12.962580790569399 + ], + [ + 77.492560057879601, + 12.9627782300114 + ], + [ + 77.492599853920893, + 12.9627866309047 + ], + [ + 77.492655187858901, + 12.9627983126666 + ], + [ + 77.492729578658796, + 12.9628100233182 + ], + [ + 77.492811532457296, + 12.9628295671309 + ], + [ + 77.492885957000794, + 12.9628446655346 + ], + [ + 77.492935513391004, + 12.9628487083693 + ], + [ + 77.492993084795401, + 12.962848156925199 + ], + [ + 77.493042573709602, + 12.962845424140299 + ], + [ + 77.493119595676205, + 12.962832263240401 + ], + [ + 77.493247732451096, + 12.9628061895552 + ], + [ + 77.493376919390201, + 12.962769941385201 + ], + [ + 77.493448737380504, + 12.962754571500801 + ], + [ + 77.493498711986504, + 12.962742798989099 + ], + [ + 77.493580825309905, + 12.9627205541943 + ], + [ + 77.493753755091703, + 12.962682757388301 + ], + [ + 77.493837087280099, + 12.962667277082801 + ], + [ + 77.493937013888498, + 12.9626414733827 + ], + [ + 77.493980678087794, + 12.962632019999401 + ], + [ + 77.494043826525697, + 12.9626133449161 + ], + [ + 77.494098959971396, + 12.962599264117401 + ], + [ + 77.494198220789102, + 12.9625644317195 + ], + [ + 77.494241783699096, + 12.9625448149073 + ], + [ + 77.494387045220705, + 12.9625038947442 + ], + [ + 77.494545548067507, + 12.962462847599999 + ], + [ + 77.494570879415505, + 12.9624626048167 + ], + [ + 77.494667916002598, + 12.962435699187999 + ], + [ + 77.494766589674001, + 12.9623997428519 + ], + [ + 77.494827378846196, + 12.962375443347399 + ], + [ + 77.494882952834899, + 12.962347805702301 + ], + [ + 77.494952253865307, + 12.9623110014823 + ], + [ + 77.495014680093604, + 12.9622776512667 + ], + [ + 77.495111446424204, + 12.962223643140099 + ], + [ + 77.495146441033498, + 12.962210884571499 + ], + [ + 77.495177970114199, + 12.9621970298486 + ], + [ + 77.495200409901003, + 12.962253283356199 + ], + [ + 77.495237321281493, + 12.9623173037316 + ], + [ + 77.495238536848902, + 12.9624392643096 + ], + [ + 77.495281437607801, + 12.962524341482601 + ], + [ + 77.495406063085596, + 12.962477257224499 + ], + [ + 77.496286464766797, + 12.9623212246492 + ], + [ + 77.496181739247703, + 12.961856716298501 + ], + [ + 77.497379473470602, + 12.961666373895801 + ], + [ + 77.497175668004402, + 12.960656506361 + ], + [ + 77.497584423911306, + 12.960590097838301 + ], + [ + 77.497551219650006, + 12.960459570742 + ], + [ + 77.497837463282295, + 12.960393162219299 + ], + [ + 77.497696631415195, + 12.9596603785205 + ], + [ + 77.497495115898104, + 12.9585898273357 + ], + [ + 77.498244156325001, + 12.9583935954034 + ], + [ + 77.499228625255995, + 12.958060775080501 + ], + [ + 77.4997694328368, + 12.957795646471901 + ], + [ + 77.500027943443399, + 12.9576323423533 + ], + [ + 77.500039920613105, + 12.9576234471809 + ], + [ + 77.500198400761803, + 12.9577831927798 + ], + [ + 77.500424533231296, + 12.9585623479469 + ], + [ + 77.500532733324306, + 12.958835996859399 + ], + [ + 77.500556298865305, + 12.9588173620039 + ], + [ + 77.500737730368797, + 12.958799245299099 + ], + [ + 77.501337936661997, + 12.958422088567101 + ], + [ + 77.501751272467104, + 12.958195383610301 + ], + [ + 77.502611854005593, + 12.957873710614701 + ], + [ + 77.503183816855994, + 12.9576111340299 + ], + [ + 77.503279533913698, + 12.9578347454033 + ], + [ + 77.503302229984499, + 12.9578813693767 + ], + [ + 77.503308870380593, + 12.957879376572601 + ], + [ + 77.503562354660801, + 12.957831118018699 + ], + [ + 77.504516708181598, + 12.957712879529399 + ], + [ + 77.505825500776595, + 12.957408642369 + ], + [ + 77.506700643874296, + 12.9571131458181 + ], + [ + 77.506962339264106, + 12.957024781968601 + ], + [ + 77.507106431131504, + 12.956972840643999 + ], + [ + 77.507748841742199, + 12.956690961157801 + ], + [ + 77.508330744021606, + 12.956480665559001 + ], + [ + 77.508790289629701, + 12.9562666740157 + ], + [ + 77.510875288247604, + 12.955588849094401 + ], + [ + 77.511414571250896, + 12.955399928297 + ], + [ + 77.511468385053803, + 12.955539615189601 + ], + [ + 77.511611506869997, + 12.9555052659537 + ], + [ + 77.511730217114405, + 12.955541368903599 + ], + [ + 77.511749868475206, + 12.955508806472601 + ], + [ + 77.511837465865597, + 12.955352492015299 + ], + [ + 77.511844263303701, + 12.9553403630758 + ], + [ + 77.511866952477206, + 12.955299875756699 + ], + [ + 77.511897958539393, + 12.9552340728884 + ], + [ + 77.511920654687401, + 12.955184820763099 + ], + [ + 77.511941346632796, + 12.9551399174845 + ], + [ + 77.511997084596999, + 12.955071618227599 + ], + [ + 77.512050780961104, + 12.955052717887099 + ], + [ + 77.512076257726605, + 12.9550437507563 + ], + [ + 77.512149313425098, + 12.955037398307599 + ], + [ + 77.512151397250193, + 12.954900725665199 + ], + [ + 77.512142205146006, + 12.954830223024 + ], + [ + 77.512140558505294, + 12.954817590981699 + ], + [ + 77.512133309393107, + 12.954761988890899 + ], + [ + 77.512137227516703, + 12.954753936253301 + ], + [ + 77.512142553672604, + 12.954742989713599 + ], + [ + 77.512185208072495, + 12.954655328417299 + ], + [ + 77.5121098007303, + 12.954541990489499 + ], + [ + 77.512058876198594, + 12.954401311726899 + ], + [ + 77.511986176759194, + 12.954322370511001 + ], + [ + 77.511887745744303, + 12.9542154886279 + ], + [ + 77.511782101857904, + 12.954160233809899 + ], + [ + 77.511686330543398, + 12.954110142027099 + ], + [ + 77.511535462766304, + 12.9539354176977 + ], + [ + 77.511431825480798, + 12.9538776894768 + ], + [ + 77.511285690341893, + 12.953830536151001 + ], + [ + 77.511217630143406, + 12.9536459772775 + ], + [ + 77.511202929206902, + 12.953500431500601 + ], + [ + 77.511193541033805, + 12.9533997604616 + ], + [ + 77.511188092475606, + 12.9533413346996 + ], + [ + 77.511180267434, + 12.9532499319305 + ], + [ + 77.511184572323202, + 12.9529901374574 + ], + [ + 77.511176520947799, + 12.9528761496515 + ], + [ + 77.511188369482596, + 12.9527371240414 + ], + [ + 77.511213864621098, + 12.9525810264469 + ], + [ + 77.511254959752605, + 12.952430425249201 + ], + [ + 77.511341965257003, + 12.952241564981099 + ], + [ + 77.511355822299393, + 12.9522114861505 + ], + [ + 77.511429105261101, + 12.9519939902084 + ], + [ + 77.511442483513605, + 12.951954285709601 + ], + [ + 77.511460621931207, + 12.9518085687641 + ], + [ + 77.511464862404196, + 12.9517745015982 + ], + [ + 77.511464526285295, + 12.951761554235199 + ], + [ + 77.511462986641703, + 12.951702240605799 + ], + [ + 77.511424560075, + 12.951602098010801 + ], + [ + 77.511422516733205, + 12.951600518537401 + ], + [ + 77.511371178734805, + 12.9515608263451 + ], + [ + 77.511370284600304, + 12.951471615471601 + ], + [ + 77.511341206343801, + 12.951442532445499 + ], + [ + 77.511304180230695, + 12.9513672222502 + ], + [ + 77.511273667697196, + 12.951309919021501 + ], + [ + 77.511243438113397, + 12.951280847078699 + ], + [ + 77.511196659464403, + 12.9512090189618 + ], + [ + 77.511129188873895, + 12.9510831809834 + ], + [ + 77.511107772657894, + 12.950956899014599 + ], + [ + 77.5110800240125, + 12.950830678082699 + ], + [ + 77.511075268584506, + 12.950700847412399 + ], + [ + 77.511072978500593, + 12.950575639618 + ], + [ + 77.511071448093304, + 12.9504919524584 + ], + [ + 77.511041780163794, + 12.950346550870099 + ], + [ + 77.511050313418707, + 12.9501839707298 + ], + [ + 77.511057733630395, + 12.950042598973299 + ], + [ + 77.511093495798804, + 12.949983073025701 + ], + [ + 77.511137580094598, + 12.9499096940726 + ], + [ + 77.511147232787806, + 12.949895235554701 + ], + [ + 77.511193734672105, + 12.949825580061001 + ], + [ + 77.511226268723107, + 12.949822377088401 + ], + [ + 77.511308192359294, + 12.9498143124677 + ], + [ + 77.511393898704895, + 12.949749112680999 + ], + [ + 77.511419949755094, + 12.949705945831299 + ], + [ + 77.511449432217105, + 12.949660487178701 + ], + [ + 77.511466913571994, + 12.9496343216697 + ], + [ + 77.511525664218794, + 12.949546385225201 + ], + [ + 77.511541322278703, + 12.9495229486607 + ], + [ + 77.511701423295193, + 12.949355389125399 + ], + [ + 77.511764362708107, + 12.9493163840498 + ], + [ + 77.511783822474996, + 12.9493049037282 + ], + [ + 77.511793541026194, + 12.949298032960501 + ], + [ + 77.511827302099604, + 12.9492773789626 + ], + [ + 77.5118379207115, + 12.9492710678097 + ], + [ + 77.511873660095105, + 12.9492498273422 + ], + [ + 77.511950587796605, + 12.9491972615225 + ], + [ + 77.511984402557502, + 12.9491741549237 + ], + [ + 77.512438611233605, + 12.9488637852771 + ], + [ + 77.512653885229199, + 12.948686658377 + ], + [ + 77.512679687018405, + 12.9486549536994 + ], + [ + 77.512743743322702, + 12.9485762438348 + ], + [ + 77.512786538904294, + 12.948498065175301 + ], + [ + 77.512831376157493, + 12.9484161589075 + ], + [ + 77.512837299216201, + 12.948317847481301 + ], + [ + 77.5127899565299, + 12.9482471544212 + ], + [ + 77.5127428612264, + 12.9481437075261 + ], + [ + 77.512688563568204, + 12.9480109667177 + ], + [ + 77.5127203352951, + 12.947906759199199 + ], + [ + 77.512871542558898, + 12.947828504435201 + ], + [ + 77.512930140465699, + 12.9478129784204 + ], + [ + 77.512990976372294, + 12.947796859803701 + ], + [ + 77.513031406159399, + 12.947785925248001 + ], + [ + 77.513070399143103, + 12.947775379492599 + ], + [ + 77.513094901009794, + 12.9477687527942 + ], + [ + 77.513135218803697, + 12.947713025289699 + ], + [ + 77.513163749712305, + 12.947710981063199 + ], + [ + 77.513189873518698, + 12.9477091100308 + ], + [ + 77.513273964870805, + 12.947655219901399 + ], + [ + 77.513393636309402, + 12.9476472884588 + ], + [ + 77.513473167514604, + 12.9475979587989 + ], + [ + 77.513645617446599, + 12.947513851937501 + ], + [ + 77.513829140871593, + 12.9474431904528 + ], + [ + 77.513876901610104, + 12.9474257820386 + ], + [ + 77.513927804906302, + 12.947407228392899 + ], + [ + 77.514023905723803, + 12.947345315777399 + ], + [ + 77.514137242577803, + 12.9472798487463 + ], + [ + 77.514273764698103, + 12.947229968970801 + ], + [ + 77.514322098388206, + 12.9472057724817 + ], + [ + 77.514420986567998, + 12.9471562693486 + ], + [ + 77.514490134987994, + 12.947108775230699 + ], + [ + 77.5145210488527, + 12.947087542206599 + ], + [ + 77.5145612210206, + 12.947074731581001 + ], + [ + 77.514614963027995, + 12.9470564377351 + ], + [ + 77.514701219576693, + 12.9470270767816 + ], + [ + 77.5147452225834, + 12.9470079074626 + ], + [ + 77.514807264988306, + 12.9469808789739 + ], + [ + 77.514864050502297, + 12.9469136535921 + ], + [ + 77.514888058126303, + 12.946885233096101 + ], + [ + 77.514945092382007, + 12.9468316027759 + ], + [ + 77.515007423773795, + 12.946825488077801 + ], + [ + 77.515008935747105, + 12.9468253397681 + ], + [ + 77.5150595347245, + 12.9467616073201 + ], + [ + 77.515127200660501, + 12.946677381682701 + ], + [ + 77.515159798399296, + 12.9466556092285 + ], + [ + 77.515208469920196, + 12.946615161950501 + ], + [ + 77.515227171884504, + 12.946599620348501 + ], + [ + 77.515311507160504, + 12.946455377802801 + ], + [ + 77.515369239299602, + 12.9463565663676 + ], + [ + 77.515386991322799, + 12.9463321002561 + ], + [ + 77.515410690951995, + 12.946299435414801 + ], + [ + 77.515413719281696, + 12.9462952618897 + ], + [ + 77.5154748627358, + 12.9462109889398 + ], + [ + 77.515514943547402, + 12.9461791814755 + ], + [ + 77.515604518970207, + 12.946108095074701 + ], + [ + 77.515712050492695, + 12.945980568892701 + ], + [ + 77.515793994311593, + 12.9458849117346 + ], + [ + 77.515878746063194, + 12.945724854070299 + ], + [ + 77.515937640503097, + 12.945627160708399 + ], + [ + 77.516058298603596, + 12.945488214135899 + ], + [ + 77.516191678765693, + 12.9453547914766 + ], + [ + 77.516295887904207, + 12.945263227962 + ], + [ + 77.516346333813701, + 12.9452189046252 + ], + [ + 77.516423651613906, + 12.9451786305201 + ], + [ + 77.516508892641397, + 12.9451247275986 + ], + [ + 77.516644880164307, + 12.9450217722401 + ], + [ + 77.516771285367199, + 12.944939237795801 + ], + [ + 77.516795664741295, + 12.9449017335709 + ], + [ + 77.516840930953506, + 12.9448339298125 + ], + [ + 77.516905699352506, + 12.9447369141321 + ], + [ + 77.5169473627342, + 12.9446679010612 + ], + [ + 77.516979789523802, + 12.9446141882765 + ], + [ + 77.516979939925307, + 12.9446139383654 + ], + [ + 77.5169804509584, + 12.944613092284801 + ], + [ + 77.516980909532194, + 12.944611333287201 + ], + [ + 77.516981043460405, + 12.944610818814001 + ], + [ + 77.5170126035663, + 12.9444896818615 + ], + [ + 77.516991446423802, + 12.9443893734477 + ], + [ + 77.516977355951497, + 12.944304807774399 + ], + [ + 77.516943795061493, + 12.944230594351 + ], + [ + 77.516904273534195, + 12.9441361100612 + ], + [ + 77.516872071197696, + 12.9441168416202 + ], + [ + 77.516804347965802, + 12.944076317481301 + ], + [ + 77.516796543198197, + 12.9440716477466 + ], + [ + 77.516793120385003, + 12.944072214760901 + ], + [ + 77.516786066005295, + 12.944073383330901 + ], + [ + 77.516714861032398, + 12.9440851820173 + ], + [ + 77.516708528556606, + 12.944086231581799 + ], + [ + 77.516601124696194, + 12.9441040274891 + ], + [ + 77.516440356713503, + 12.944089768872001 + ], + [ + 77.5163927355608, + 12.9441060396866 + ], + [ + 77.516353299002503, + 12.944096267091799 + ], + [ + 77.516305008466603, + 12.9440842995794 + ], + [ + 77.516274921920598, + 12.944087872433901 + ], + [ + 77.516253255675693, + 12.944090446045299 + ], + [ + 77.516139315558803, + 12.943980869081599 + ], + [ + 77.5161077391449, + 12.943947413372699 + ], + [ + 77.516042137682504, + 12.943877906372199 + ], + [ + 77.515994691022897, + 12.9437394534355 + ], + [ + 77.515973557056597, + 12.943641403343699 + ], + [ + 77.515929825082296, + 12.943528889745499 + ], + [ + 77.515888679072205, + 12.943444585112401 + ], + [ + 77.515884395717094, + 12.9433045861031 + ], + [ + 77.515902665050305, + 12.943174533610501 + ], + [ + 77.5158995158301, + 12.9431567409382 + ], + [ + 77.515881914242996, + 12.9430572807131 + ], + [ + 77.515853417106698, + 12.9428565301072 + ], + [ + 77.5158552504369, + 12.942763006103901 + ], + [ + 77.5158553209762, + 12.9427593869607 + ], + [ + 77.515856944882998, + 12.942689424285501 + ], + [ + 77.515856998620805, + 12.9426870683782 + ], + [ + 77.515857007023101, + 12.9426867123235 + ], + [ + 77.515857364844905, + 12.9426713306305 + ], + [ + 77.515857732526996, + 12.9426554627667 + ], + [ + 77.515839896288497, + 12.9425991670401 + ], + [ + 77.515830402515604, + 12.9425710247321 + ], + [ + 77.515783171218203, + 12.9424933742308 + ], + [ + 77.515773036385099, + 12.9424767123823 + ], + [ + 77.515716132664593, + 12.942371101969499 + ], + [ + 77.515629127033407, + 12.942306438948799 + ], + [ + 77.515614917586902, + 12.9422664125045 + ], + [ + 77.515594764658701, + 12.9422096458008 + ], + [ + 77.515601248841094, + 12.9422013181269 + ], + [ + 77.515624889278897, + 12.942170956888701 + ], + [ + 77.515548123043004, + 12.942151369323801 + ], + [ + 77.515494655958506, + 12.942126531689301 + ], + [ + 77.515467145969893, + 12.942113752641299 + ], + [ + 77.515442101282105, + 12.9421019246605 + ], + [ + 77.515420288527594, + 12.942091623098101 + ], + [ + 77.5154155748357, + 12.9420893972221 + ], + [ + 77.515378064416595, + 12.942071696706799 + ], + [ + 77.515276737563198, + 12.942071546061999 + ], + [ + 77.515107709742395, + 12.942094634009001 + ], + [ + 77.515010761583696, + 12.942071852937699 + ], + [ + 77.514951231113301, + 12.9420487108016 + ], + [ + 77.514897910235803, + 12.9420706830808 + ], + [ + 77.514852208797393, + 12.9421061350436 + ], + [ + 77.514789113046305, + 12.942129330069699 + ], + [ + 77.514692876431994, + 12.942120094317 + ], + [ + 77.514655964558401, + 12.9420560769774 + ], + [ + 77.5146371189132, + 12.941841680618101 + ], + [ + 77.514656089169804, + 12.941724044292201 + ], + [ + 77.514698391398596, + 12.9416366755641 + ], + [ + 77.514707226313206, + 12.941541724194099 + ], + [ + 77.514717877066104, + 12.941466733211501 + ], + [ + 77.514719594428499, + 12.941454644250101 + ], + [ + 77.514718904579496, + 12.9413857600203 + ], + [ + 77.514718281757396, + 12.941323651296299 + ], + [ + 77.514694927178397, + 12.9412935149196 + ], + [ + 77.514677452766804, + 12.9412709653144 + ], + [ + 77.514647618774404, + 12.941223820050199 + ], + [ + 77.514639647514102, + 12.9411780070321 + ], + [ + 77.514631695784502, + 12.9411323040501 + ], + [ + 77.514626236599995, + 12.941100926204401 + ], + [ + 77.514624144414896, + 12.9410534048962 + ], + [ + 77.514622509076901, + 12.9410162602474 + ], + [ + 77.514584818903501, + 12.940949837155699 + ], + [ + 77.514571521305896, + 12.940926403388699 + ], + [ + 77.514498071747795, + 12.9408356338219 + ], + [ + 77.514453561664894, + 12.9407027987983 + ], + [ + 77.514448873625099, + 12.940579743883101 + ], + [ + 77.514478294380297, + 12.940537363016 + ], + [ + 77.514517542638799, + 12.940480827284899 + ], + [ + 77.514562142578001, + 12.940463143182599 + ], + [ + 77.514581766693297, + 12.9404553618851 + ], + [ + 77.514616258779796, + 12.940392914429101 + ], + [ + 77.514619231182095, + 12.9403837180728 + ], + [ + 77.514638594215796, + 12.940323808987101 + ], + [ + 77.514667327930098, + 12.9402038188686 + ], + [ + 77.514669479732206, + 12.9400739218386 + ], + [ + 77.514657747965302, + 12.9399373825759 + ], + [ + 77.514637462493695, + 12.9398664286357 + ], + [ + 77.514613695371807, + 12.9397548883949 + ], + [ + 77.514598797930802, + 12.939684974791 + ], + [ + 77.514505472670805, + 12.939618003183799 + ], + [ + 77.514455044558403, + 12.9395818152123 + ], + [ + 77.514415556216903, + 12.9395534778259 + ], + [ + 77.514271774226202, + 12.939395624881101 + ], + [ + 77.514247950599895, + 12.9393613992422 + ], + [ + 77.514197591187099, + 12.939289051167 + ], + [ + 77.514150046605096, + 12.939198031563899 + ], + [ + 77.514082680934706, + 12.939082357177901 + ], + [ + 77.5139918252748, + 12.9389206055326 + ], + [ + 77.513948255395704, + 12.938881498077899 + ], + [ + 77.513877175712906, + 12.9387398841465 + ], + [ + 77.513817115149607, + 12.938711643802501 + ], + [ + 77.513761276676405, + 12.938685388353701 + ], + [ + 77.513740666035105, + 12.9386756974971 + ], + [ + 77.513633897795501, + 12.938592024906701 + ], + [ + 77.513481507701997, + 12.938551707758799 + ], + [ + 77.513433502503801, + 12.938529583350199 + ], + [ + 77.513321532366007, + 12.9385012993932 + ], + [ + 77.513288055612406, + 12.9385501845868 + ], + [ + 77.513077141677201, + 12.9385296304609 + ], + [ + 77.512991997381107, + 12.9384827569076 + ], + [ + 77.512960204323093, + 12.9384652546886 + ], + [ + 77.512890132177105, + 12.938424143732 + ], + [ + 77.512793952213798, + 12.9383629558859 + ], + [ + 77.512749964037596, + 12.938282065871499 + ], + [ + 77.512715897667903, + 12.938214632551301 + ], + [ + 77.512744632303395, + 12.9380946434063 + ], + [ + 77.512786369272106, + 12.9379508123818 + ], + [ + 77.5127806982035, + 12.9377295123709 + ], + [ + 77.512770517441794, + 12.9375915321531 + ], + [ + 77.512757383233705, + 12.9374135161015 + ], + [ + 77.512821582939907, + 12.9373281953635 + ], + [ + 77.512837789253794, + 12.937312569651599 + ], + [ + 77.512916235305696, + 12.937236934330199 + ], + [ + 77.512945865860402, + 12.9371975656661 + ], + [ + 77.512987492790401, + 12.9371422576887 + ], + [ + 77.513037817235201, + 12.9370753933882 + ], + [ + 77.513142525602404, + 12.936953542655599 + ], + [ + 77.513201122721298, + 12.936871155279601 + ], + [ + 77.513201566888597, + 12.9368705303021 + ], + [ + 77.513240088547903, + 12.9368080442029 + ], + [ + 77.513257594152194, + 12.9367739946693 + ], + [ + 77.513320442774202, + 12.936710239595 + ], + [ + 77.513338521187606, + 12.936691900714001 + ], + [ + 77.513446954664801, + 12.9365971186468 + ], + [ + 77.513538320996204, + 12.9364652321831 + ], + [ + 77.513591592901506, + 12.9363235486734 + ], + [ + 77.513658182367294, + 12.936132044948501 + ], + [ + 77.513765370859204, + 12.935913045220699 + ], + [ + 77.513785178917701, + 12.9358789734779 + ], + [ + 77.513832052075699, + 12.935788172835601 + ], + [ + 77.513327265977196, + 12.9356258931453 + ], + [ + 77.513325618237602, + 12.9356338145479 + ], + [ + 77.513077887059794, + 12.9355582761681 + ], + [ + 77.5129456464188, + 12.935517764183601 + ], + [ + 77.512859615548393, + 12.9354926178996 + ], + [ + 77.512345778386006, + 12.935346234357599 + ], + [ + 77.512054050068599, + 12.9352462728119 + ], + [ + 77.511610972369795, + 12.9350946885881 + ], + [ + 77.511164621293105, + 12.9349036073642 + ], + [ + 77.511081073358199, + 12.934838908842 + ], + [ + 77.510938335372103, + 12.934727346970099 + ], + [ + 77.510357530962807, + 12.93427441713 + ], + [ + 77.510019209920799, + 12.93400549697 + ], + [ + 77.509965246123798, + 12.933963100522 + ], + [ + 77.509930436610304, + 12.9339363308081 + ], + [ + 77.509794088122106, + 12.933830353449199 + ], + [ + 77.509482992695098, + 12.9335781108351 + ], + [ + 77.509104378493802, + 12.9332519792759 + ], + [ + 77.508963151245396, + 12.9331024846554 + ], + [ + 77.508832653501898, + 12.932964346605001 + ], + [ + 77.508598086136899, + 12.9327655759375 + ], + [ + 77.508293663796096, + 12.932547148198999 + ], + [ + 77.508102450557402, + 12.932423627453799 + ], + [ + 77.507763989480694, + 12.932191373943301 + ], + [ + 77.507672337141599, + 12.932128481205901 + ], + [ + 77.507405177000706, + 12.9319405770848 + ], + [ + 77.506891392639403, + 12.931579210638899 + ], + [ + 77.506819919680396, + 12.931529534129499 + ], + [ + 77.506700666128907, + 12.9314466490041 + ], + [ + 77.506461361834198, + 12.9312897442731 + ], + [ + 77.5063441807646, + 12.931145145604599 + ], + [ + 77.506261764458699, + 12.931020577809001 + ], + [ + 77.506097356199305, + 12.9307728731628 + ], + [ + 77.505947024405799, + 12.9305127484864 + ], + [ + 77.505816962067598, + 12.930269515022699 + ], + [ + 77.505580485088998, + 12.929995877376101 + ], + [ + 77.505506163752898, + 12.929875949765499 + ], + [ + 77.505401438233804, + 12.929796561065601 + ], + [ + 77.505396185670705, + 12.9297934709648 + ], + [ + 77.505313603927505, + 12.929734063578399 + ], + [ + 77.505082194312706, + 12.9296496075146 + ], + [ + 77.504602483870499, + 12.9294587368104 + ], + [ + 77.504349115679105, + 12.929399617565799 + ], + [ + 77.503945415694304, + 12.9292509748936 + ], + [ + 77.503801840385805, + 12.9291952338915 + ], + [ + 77.503572413237407, + 12.9290282210253 + ], + [ + 77.503427334037099, + 12.928912158828901 + ], + [ + 77.503251104622393, + 12.928732021388599 + ], + [ + 77.503014132971202, + 12.928406777937401 + ], + [ + 77.502805964540499, + 12.9281411144275 + ], + [ + 77.502795468097901, + 12.928127662684499 + ], + [ + 77.502520879143702, + 12.927782450748801 + ], + [ + 77.502124449025303, + 12.9274576060608 + ], + [ + 77.501096578167605, + 12.9267943557835 + ], + [ + 77.500644001925906, + 12.9264596498275 + ], + [ + 77.500548494203002, + 12.926389016241201 + ], + [ + 77.500124174627402, + 12.926075206386701 + ], + [ + 77.500027723479207, + 12.9260038741572 + ], + [ + 77.499880174161504, + 12.925865856372701 + ], + [ + 77.499205478698201, + 12.9252347422028 + ], + [ + 77.4990237912494, + 12.925762713477299 + ], + [ + 77.498939157314993, + 12.9260086537154 + ], + [ + 77.498902103652597, + 12.9259875504679 + ], + [ + 77.498876670041398, + 12.926092825632701 + ], + [ + 77.498784880926607, + 12.926472044289 + ], + [ + 77.498677107397995, + 12.9273333011063 + ], + [ + 77.498671827603303, + 12.9273754953217 + ], + [ + 77.498666454573396, + 12.927432384015299 + ], + [ + 77.498650474617904, + 12.927601574255799 + ], + [ + 77.498643168825595, + 12.927677312159901 + ], + [ + 77.498601719291599, + 12.9283135456855 + ], + [ + 77.498601775490499, + 12.928319192008701 + ], + [ + 77.498598483094298, + 12.92850895808 + ], + [ + 77.498598904781602, + 12.928551324475301 + ], + [ + 77.498599738665007, + 12.928635103262399 + ], + [ + 77.498602979154995, + 12.928960663923499 + ], + [ + 77.498603979551703, + 12.929061168471399 + ], + [ + 77.498624571120502, + 12.929510461401501 + ], + [ + 77.498678410282395, + 12.930061079358699 + ], + [ + 77.498679151335097, + 12.9301022103172 + ], + [ + 77.498685278342293, + 12.930442225443199 + ], + [ + 77.498687594113704, + 12.9305707529078 + ], + [ + 77.498689987718507, + 12.930703581177699 + ], + [ + 77.498666109911497, + 12.9308494988811 + ], + [ + 77.498624661681802, + 12.9309074938586 + ], + [ + 77.498756195454504, + 12.930882732189099 + ], + [ + 77.498833247321897, + 12.9308682266263 + ], + [ + 77.498876142340904, + 12.930859243347999 + ], + [ + 77.499144049025602, + 12.9308031338365 + ], + [ + 77.499159712769995, + 12.930873004818899 + ], + [ + 77.499179956986694, + 12.9309981711265 + ], + [ + 77.499205404471496, + 12.9311255463211 + ], + [ + 77.499219961972798, + 12.9311999453769 + ], + [ + 77.499234519486805, + 12.9312743444299 + ], + [ + 77.499246869291397, + 12.931335904252199 + ], + [ + 77.499317509223104, + 12.9316880286498 + ], + [ + 77.499351431985502, + 12.9318571093381 + ], + [ + 77.499355212059498, + 12.931878087559101 + ], + [ + 77.499355697639899, + 12.931880785266401 + ], + [ + 77.499383847774297, + 12.9318748686822 + ], + [ + 77.499439326391496, + 12.9320699261438 + ], + [ + 77.499548505645095, + 12.932453787748599 + ], + [ + 77.499760739851297, + 12.9337053557198 + ], + [ + 77.499843077591393, + 12.934111140073099 + ], + [ + 77.499930720296007, + 12.934529296571201 + ], + [ + 77.500078951515803, + 12.935365868660799 + ], + [ + 77.499707169299299, + 12.935493663420999 + ], + [ + 77.499182149602305, + 12.9356692305488 + ], + [ + 77.499190478664303, + 12.935696255637399 + ], + [ + 77.499142846034104, + 12.935711393956201 + ], + [ + 77.499154432026003, + 12.9357641085879 + ], + [ + 77.499258026059906, + 12.9362354477261 + ], + [ + 77.499646410916995, + 12.9380048372727 + ], + [ + 77.499684042244496, + 12.9380259345422 + ], + [ + 77.499681592736394, + 12.9380278544654 + ], + [ + 77.499533804242702, + 12.9381437000569 + ], + [ + 77.499484656274703, + 12.938237909003099 + ], + [ + 77.499404081774699, + 12.938413733920701 + ], + [ + 77.499344099328098, + 12.9384606131384 + ], + [ + 77.498237143676207, + 12.939225642636901 + ], + [ + 77.4979798410466, + 12.9394031607582 + ], + [ + 77.497715687545096, + 12.939585955697 + ], + [ + 77.497446948469204, + 12.9397719240774 + ], + [ + 77.497259402858106, + 12.939901339752099 + ], + [ + 77.4972010903723, + 12.939942555742199 + ], + [ + 77.497188965568597, + 12.939996881768099 + ], + [ + 77.497189516522397, + 12.940052215746 + ], + [ + 77.497279097042494, + 12.940260291548601 + ], + [ + 77.497431170933893, + 12.940615716376101 + ], + [ + 77.497458789288004, + 12.9406719203976 + ], + [ + 77.497460550008697, + 12.940675291646 + ], + [ + 77.4975134953619, + 12.9407888509978 + ], + [ + 77.497578167686896, + 12.9409237560448 + ], + [ + 77.497581113474396, + 12.9409305040541 + ], + [ + 77.497758290509907, + 12.941320698540901 + ], + [ + 77.498763930603403, + 12.9428296274672 + ], + [ + 77.4994163989426, + 12.943808619919199 + ], + [ + 77.499417019639594, + 12.943813131448801 + ], + [ + 77.499482950970503, + 12.943794609920801 + ], + [ + 77.499483616943493, + 12.9437944228346 + ], + [ + 77.499526551959207, + 12.943988085703401 + ], + [ + 77.499538876740502, + 12.9440436797962 + ], + [ + 77.499538919913604, + 12.9440436676367 + ], + [ + 77.499770258199902, + 12.943980463731 + ], + [ + 77.499823053245194, + 12.943966039880699 + ], + [ + 77.499930448966197, + 12.944455105781699 + ], + [ + 77.500072882392999, + 12.9444020188133 + ], + [ + 77.500085372486595, + 12.944398058233199 + ], + [ + 77.500091247481706, + 12.944396195785201 + ], + [ + 77.500141456652997, + 12.944377406578299 + ], + [ + 77.500308062755195, + 12.944315059869201 + ], + [ + 77.500359546470406, + 12.944583679393601 + ], + [ + 77.500460914894703, + 12.945112570023801 + ], + [ + 77.500551223342796, + 12.9456108712914 + ], + [ + 77.500585890670706, + 12.945802154690901 + ], + [ + 77.500631277201094, + 12.9460525846421 + ], + [ + 77.500687082801903, + 12.946360506091599 + ], + [ + 77.500739140395595, + 12.946647745415399 + ], + [ + 77.500740639659398, + 12.9466560160801 + ], + [ + 77.499315274263594, + 12.947099478565899 + ], + [ + 77.498707199003107, + 12.9472869693777 + ], + [ + 77.498627375391493, + 12.9473115817517 + ], + [ + 77.498561411450794, + 12.9473319204742 + ], + [ + 77.496768865508599, + 12.947440255629401 + ], + [ + 77.496726154406403, + 12.947288027060299 + ], + [ + 77.495482381793707, + 12.947442243211301 + ], + [ + 77.494862953616405, + 12.947510469517299 + ], + [ + 77.494651359158397, + 12.9475337747018 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "190", + "group": "Laggere", + "Corporatio": "West", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "5", + "ward_id": "28", + "ward_name": "28 - Laggere", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಲಗ್ಗೆರೆ", + "dig_ward_n": "Laggere", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "28" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.522906533318107, + 13.0097042521819 + ], + [ + 77.522117193517403, + 13.0100657154812 + ], + [ + 77.521980955329298, + 13.0093011769639 + ], + [ + 77.520513953501506, + 13.0096609597955 + ], + [ + 77.5204793265154, + 13.0095629907615 + ], + [ + 77.519592952244196, + 13.0097975736115 + ], + [ + 77.518800566926302, + 13.010084082706101 + ], + [ + 77.518869964688804, + 13.010232792571101 + ], + [ + 77.5189102203435, + 13.0102843517728 + ], + [ + 77.518945994982502, + 13.010348377339399 + ], + [ + 77.519008177154802, + 13.0104042409817 + ], + [ + 77.5190480792768, + 13.010420793718 + ], + [ + 77.519105438578507, + 13.010455286523101 + ], + [ + 77.519132268133006, + 13.0104889064662 + ], + [ + 77.519137091356498, + 13.0105103172812 + ], + [ + 77.519137661690294, + 13.0105667792657 + ], + [ + 77.519150447274995, + 13.010655842153 + ], + [ + 77.519151909173701, + 13.010666023730399 + ], + [ + 77.519113090643202, + 13.010756748786299 + ], + [ + 77.519113832085196, + 13.0108301493661 + ], + [ + 77.519132138564601, + 13.010875145584899 + ], + [ + 77.519135154513606, + 13.010888668498101 + ], + [ + 77.519141785040304, + 13.0109179672108 + ], + [ + 77.5191200697803, + 13.0109915858995 + ], + [ + 77.519106395996502, + 13.0110151775734 + ], + [ + 77.5190595071752, + 13.011096074351601 + ], + [ + 77.519030300830394, + 13.011226233320601 + ], + [ + 77.518983711902493, + 13.011402864486399 + ], + [ + 77.518973493457395, + 13.0114832063447 + ], + [ + 77.518967173433396, + 13.0115329004239 + ], + [ + 77.518914460835305, + 13.0115593874407 + ], + [ + 77.518835870775803, + 13.0115895138185 + ], + [ + 77.518818237233205, + 13.011611142733599 + ], + [ + 77.518814514496299, + 13.0116416713555 + ], + [ + 77.518832268010698, + 13.0116889316638 + ], + [ + 77.518832747077894, + 13.0117363597377 + ], + [ + 77.518807046614, + 13.0118145345311 + ], + [ + 77.518750491626406, + 13.0119167253399 + ], + [ + 77.518711718454298, + 13.0120119673498 + ], + [ + 77.518682067067701, + 13.012098085966 + ], + [ + 77.518673686650402, + 13.0121806099558 + ], + [ + 77.518679810199998, + 13.0123307541313 + ], + [ + 77.518709433698206, + 13.0124129090345 + ], + [ + 77.518725146360197, + 13.012486164227701 + ], + [ + 77.518700101490793, + 13.0125722381136 + ], + [ + 77.518599191096001, + 13.01261613346 + ], + [ + 77.518559722037395, + 13.012642491832599 + ], + [ + 77.518549653878594, + 13.0126719527295 + ], + [ + 77.518603296151795, + 13.0126804665859 + ], + [ + 77.518650028617003, + 13.0126890475376 + ], + [ + 77.519207419797496, + 13.012683633642199 + ], + [ + 77.519295981550499, + 13.0126714798369 + ], + [ + 77.519396715316105, + 13.0126671132063 + ], + [ + 77.519564209612597, + 13.0126587098933 + ], + [ + 77.519602777939497, + 13.0126572058356 + ], + [ + 77.519662628669806, + 13.0126532362991 + ], + [ + 77.519686767336395, + 13.012648484373701 + ], + [ + 77.519709658138694, + 13.012636409216899 + ], + [ + 77.519743476514904, + 13.012618570295199 + ], + [ + 77.519866222010094, + 13.0125699449789 + ], + [ + 77.519877162526399, + 13.012569838675599 + ], + [ + 77.51989269037, + 13.0125670577691 + ], + [ + 77.519910502831195, + 13.0125638679737 + ], + [ + 77.520001333491706, + 13.0125483038449 + ], + [ + 77.520030033018102, + 13.012538990174001 + ], + [ + 77.5201298941098, + 13.012505268660499 + ], + [ + 77.520307000985298, + 13.012475520737601 + ], + [ + 77.520336856987896, + 13.012470506298 + ], + [ + 77.520349120360507, + 13.012470100716699 + ], + [ + 77.520481928420907, + 13.012465708375601 + ], + [ + 77.520485959133794, + 13.012465669201999 + ], + [ + 77.520577570970204, + 13.012470425576799 + ], + [ + 77.520823176839698, + 13.012498530807401 + ], + [ + 77.5210135728842, + 13.0125339485809 + ], + [ + 77.5211171234874, + 13.012580374607801 + ], + [ + 77.521186163013695, + 13.012620948163899 + ], + [ + 77.5212248761067, + 13.012643699965899 + ], + [ + 77.521243466990001, + 13.0126028626769 + ], + [ + 77.521351867216097, + 13.0125024261328 + ], + [ + 77.521401010559998, + 13.012464679846801 + ], + [ + 77.521716102532295, + 13.012530506480701 + ], + [ + 77.521861550713794, + 13.012562972609899 + ], + [ + 77.522000607837597, + 13.012589854061501 + ], + [ + 77.522052534049195, + 13.0125995132212 + ], + [ + 77.522148553502404, + 13.0126414946448 + ], + [ + 77.522196078802907, + 13.012671524835699 + ], + [ + 77.522305239258998, + 13.0127032142574 + ], + [ + 77.522377997676401, + 13.0127228348613 + ], + [ + 77.522448845875303, + 13.012724404459 + ], + [ + 77.522488600016501, + 13.0127262764812 + ], + [ + 77.522525486501806, + 13.0127293057381 + ], + [ + 77.522561820019604, + 13.012734599063601 + ], + [ + 77.522572116159196, + 13.0127277228273 + ], + [ + 77.522659937199094, + 13.0127562316124 + ], + [ + 77.522733881548405, + 13.0127792286149 + ], + [ + 77.5228059385054, + 13.012786433090399 + ], + [ + 77.522827704488506, + 13.0127946137574 + ], + [ + 77.522849871891395, + 13.012802945915601 + ], + [ + 77.522870738369804, + 13.0128162950913 + ], + [ + 77.522884672207894, + 13.012827453013101 + ], + [ + 77.522903845519593, + 13.012844206699199 + ], + [ + 77.522939233088493, + 13.0128698374218 + ], + [ + 77.522972778954497, + 13.012884192582501 + ], + [ + 77.523003388612096, + 13.0128929295677 + ], + [ + 77.5230202700983, + 13.012910834886799 + ], + [ + 77.523033719543506, + 13.012931032289 + ], + [ + 77.523035088279102, + 13.0129524765703 + ], + [ + 77.523033612213993, + 13.012977336570399 + ], + [ + 77.522997269670299, + 13.013084978134 + ], + [ + 77.5229033204849, + 13.0133614528882 + ], + [ + 77.522838456702999, + 13.0135529436273 + ], + [ + 77.522803071425201, + 13.0136413769706 + ], + [ + 77.522766557343303, + 13.0137320799892 + ], + [ + 77.522691084205206, + 13.013956425011701 + ], + [ + 77.522613467648895, + 13.0141966017491 + ], + [ + 77.522592802176206, + 13.014260046246299 + ], + [ + 77.522436741495298, + 13.014715562121101 + ], + [ + 77.522409779988195, + 13.014817708718301 + ], + [ + 77.522379061236705, + 13.014934087313501 + ], + [ + 77.522348574753494, + 13.015108303414801 + ], + [ + 77.522320254432898, + 13.015268946274301 + ], + [ + 77.522293295948998, + 13.0153934367627 + ], + [ + 77.522195415363001, + 13.015850645384299 + ], + [ + 77.522172720372197, + 13.0159908203439 + ], + [ + 77.522141756461906, + 13.0161820662439 + ], + [ + 77.522102634774399, + 13.0164704304813 + ], + [ + 77.522101770588094, + 13.016476814733499 + ], + [ + 77.522035119463894, + 13.016969129613701 + ], + [ + 77.522035025808194, + 13.0169713476603 + ], + [ + 77.522016080900102, + 13.017421053917801 + ], + [ + 77.5219832408889, + 13.0179318385667 + ], + [ + 77.521986383154001, + 13.0182423786179 + ], + [ + 77.522004508086496, + 13.018269306631799 + ], + [ + 77.522098676718102, + 13.0182988828643 + ], + [ + 77.522136231295093, + 13.018310940314301 + ], + [ + 77.522147566762399, + 13.0183219771412 + ], + [ + 77.522408427777506, + 13.018575947237601 + ], + [ + 77.522671171526397, + 13.018817329470799 + ], + [ + 77.522761258371602, + 13.0188781124019 + ], + [ + 77.522762311733899, + 13.018872668636 + ], + [ + 77.523874092373902, + 13.018159052436999 + ], + [ + 77.524138177225694, + 13.018016380877899 + ], + [ + 77.524284255795294, + 13.017997029915801 + ], + [ + 77.525368329692597, + 13.017410014787201 + ], + [ + 77.525332858145802, + 13.0170181386513 + ], + [ + 77.526297346394202, + 13.016899900162 + ], + [ + 77.526586186132306, + 13.0168711851003 + ], + [ + 77.5265445509242, + 13.015789606138799 + ], + [ + 77.526331351227398, + 13.015620649277 + ], + [ + 77.526220491376094, + 13.015508064231 + ], + [ + 77.526154078077994, + 13.015459750860501 + ], + [ + 77.526215424012307, + 13.015230203781099 + ], + [ + 77.526372512290905, + 13.0150967632004 + ], + [ + 77.526326906016493, + 13.0147319130048 + ], + [ + 77.526364789923207, + 13.014273659862001 + ], + [ + 77.526226248005102, + 13.013484772411401 + ], + [ + 77.525973879669905, + 13.013042791729299 + ], + [ + 77.525919394831305, + 13.0120901934347 + ], + [ + 77.526348760279802, + 13.011966536185501 + ], + [ + 77.526423185929204, + 13.0116484221163 + ], + [ + 77.526762699305607, + 13.0116855827844 + ], + [ + 77.526869958506595, + 13.011637442828 + ], + [ + 77.526922042752304, + 13.011570711792199 + ], + [ + 77.527098148233407, + 13.0113771070114 + ], + [ + 77.526429256208303, + 13.011274070613601 + ], + [ + 77.526480432350695, + 13.010868505611899 + ], + [ + 77.526434633369504, + 13.0100383990782 + ], + [ + 77.526501041892203, + 13.0096559775854 + ], + [ + 77.526974842380298, + 13.0095444104275 + ], + [ + 77.526800383280502, + 13.0090448334412 + ], + [ + 77.526709142860994, + 13.008701497026999 + ], + [ + 77.525314436166497, + 13.008980243921499 + ], + [ + 77.525270519013404, + 13.0091322648363 + ], + [ + 77.524816989950907, + 13.009266549977699 + ], + [ + 77.523849968020698, + 13.009515695365801 + ], + [ + 77.523319741593099, + 13.0096050388696 + ], + [ + 77.522906533318107, + 13.0097042521819 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "191", + "group": "Laggere Muneshwara Badavane", + "Corporatio": "West", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "5", + "ward_id": "29", + "ward_name": "29 - Freedom Fighter Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಫ್ರೀಡಂ ಫೈಟರ್ ವಾರ್ಡ್", + "dig_ward_n": "Laggere Muneshwara Badavane", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "29" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.518800566926302, + 13.010084082706101 + ], + [ + 77.519592952244196, + 13.0097975736115 + ], + [ + 77.5204793265154, + 13.0095629907615 + ], + [ + 77.520513953501506, + 13.0096609597955 + ], + [ + 77.521980955329298, + 13.0093011769639 + ], + [ + 77.522117193517403, + 13.0100657154812 + ], + [ + 77.522906533318107, + 13.0097042521819 + ], + [ + 77.523319741593099, + 13.0096050388696 + ], + [ + 77.523849968020698, + 13.009515695365801 + ], + [ + 77.524816989950907, + 13.009266549977699 + ], + [ + 77.525270519013404, + 13.0091322648363 + ], + [ + 77.525314436166497, + 13.008980243921499 + ], + [ + 77.526709142860994, + 13.008701497026999 + ], + [ + 77.526800383280502, + 13.0090448334412 + ], + [ + 77.526974842380298, + 13.0095444104275 + ], + [ + 77.526501041892203, + 13.0096559775854 + ], + [ + 77.526434633369504, + 13.0100383990782 + ], + [ + 77.526480432350695, + 13.010868505611899 + ], + [ + 77.526429256208303, + 13.011274070613601 + ], + [ + 77.527098148233407, + 13.0113771070114 + ], + [ + 77.527198244171302, + 13.0112653564002 + ], + [ + 77.527252385397603, + 13.0112094909917 + ], + [ + 77.527329257855897, + 13.011180508333201 + ], + [ + 77.527374277629306, + 13.011133766540601 + ], + [ + 77.527389042687105, + 13.0111132944717 + ], + [ + 77.527401977311698, + 13.011082676143699 + ], + [ + 77.5274287041929, + 13.0109356009912 + ], + [ + 77.527465090344705, + 13.010832476127501 + ], + [ + 77.527524726284696, + 13.010750582234699 + ], + [ + 77.527635689288999, + 13.0106760935571 + ], + [ + 77.527695023376296, + 13.010644696896099 + ], + [ + 77.527699774348804, + 13.010642182302499 + ], + [ + 77.527742228884193, + 13.010619717450799 + ], + [ + 77.527806250165895, + 13.010572790433001 + ], + [ + 77.527816583891607, + 13.0105128345095 + ], + [ + 77.527828080677494, + 13.010453996595 + ], + [ + 77.5278247517561, + 13.0102959209253 + ], + [ + 77.527824034236403, + 13.0102823089368 + ], + [ + 77.527823324521194, + 13.010268830586501 + ], + [ + 77.527811487886495, + 13.0102373243181 + ], + [ + 77.527810164586398, + 13.010220397059101 + ], + [ + 77.527823938458496, + 13.010180410546001 + ], + [ + 77.527897991058197, + 13.009965438817099 + ], + [ + 77.527934007156901, + 13.009882645730899 + ], + [ + 77.527974217643305, + 13.0097591563002 + ], + [ + 77.527997649082906, + 13.0097243203366 + ], + [ + 77.528009293085304, + 13.009707008308199 + ], + [ + 77.528079738049499, + 13.00960227759 + ], + [ + 77.528343794946906, + 13.009348989714301 + ], + [ + 77.528466651762699, + 13.0092616522293 + ], + [ + 77.5284935913092, + 13.0092425006957 + ], + [ + 77.528517647229094, + 13.0092119266316 + ], + [ + 77.528565226903495, + 13.0091514549687 + ], + [ + 77.528680177108697, + 13.0090159426213 + ], + [ + 77.528743610561705, + 13.0089678918561 + ], + [ + 77.528780889010505, + 13.008952846995699 + ], + [ + 77.528795226873896, + 13.008947060509801 + ], + [ + 77.528824168930498, + 13.008946398006501 + ], + [ + 77.529053152827302, + 13.0089411579859 + ], + [ + 77.5290909901844, + 13.008938528599099 + ], + [ + 77.529440175656603, + 13.0089142645578 + ], + [ + 77.529455452385903, + 13.008913203087101 + ], + [ + 77.529563581815196, + 13.008905688863299 + ], + [ + 77.530030465801303, + 13.0088443830976 + ], + [ + 77.530102445546902, + 13.0088349318236 + ], + [ + 77.530213308882907, + 13.008827990579 + ], + [ + 77.530273367520707, + 13.0088242299664 + ], + [ + 77.5303020202211, + 13.008810398383799 + ], + [ + 77.530333486216904, + 13.008733296216301 + ], + [ + 77.530336509386501, + 13.0087254986631 + ], + [ + 77.5304036764432, + 13.0085522683287 + ], + [ + 77.530422713343199, + 13.008503169489501 + ], + [ + 77.530464377891093, + 13.0082960935397 + ], + [ + 77.530464033674207, + 13.0082621633406 + ], + [ + 77.5304638978903, + 13.0082487788034 + ], + [ + 77.530462144013299, + 13.0080758936913 + ], + [ + 77.530416401312294, + 13.007880963743199 + ], + [ + 77.530360056045197, + 13.007832952528901 + ], + [ + 77.530345658705599, + 13.0078245994012 + ], + [ + 77.530247099015099, + 13.007767422172501 + ], + [ + 77.530140730949199, + 13.0076702068228 + ], + [ + 77.530095985079896, + 13.007573519795001 + ], + [ + 77.530084194299505, + 13.0075188354924 + ], + [ + 77.530070769522595, + 13.0074565707168 + ], + [ + 77.530050059569604, + 13.0073605220192 + ], + [ + 77.530044364748804, + 13.0072772357208 + ], + [ + 77.530043346735894, + 13.007262347367201 + ], + [ + 77.530035860414202, + 13.007152861537801 + ], + [ + 77.530002659943506, + 13.006945386344301 + ], + [ + 77.529986428797997, + 13.0068638660793 + ], + [ + 77.529981096079794, + 13.0068370822002 + ], + [ + 77.529969894745705, + 13.0067808218941 + ], + [ + 77.529959659412697, + 13.006740590633299 + ], + [ + 77.529937507526896, + 13.0066535220394 + ], + [ + 77.529899027058605, + 13.0065499977773 + ], + [ + 77.529878731684903, + 13.0064225799951 + ], + [ + 77.529885620587294, + 13.006251936055101 + ], + [ + 77.529888857014697, + 13.006171767269599 + ], + [ + 77.529887321022201, + 13.006134508528801 + ], + [ + 77.529883789265895, + 13.0060488141372 + ], + [ + 77.529233523606393, + 13.006620077620999 + ], + [ + 77.528622107207795, + 13.0072074495545 + ], + [ + 77.527893330919895, + 13.0077026510385 + ], + [ + 77.527633421701793, + 13.0073477089344 + ], + [ + 77.527506902016299, + 13.007338549138099 + ], + [ + 77.527004402002603, + 13.0068916454644 + ], + [ + 77.526954451805906, + 13.0066824787329 + ], + [ + 77.526754412053805, + 13.006678816183699 + ], + [ + 77.526768769584706, + 13.006117183359599 + ], + [ + 77.526446147421098, + 13.0062219088787 + ], + [ + 77.525969815221401, + 13.006455007614701 + ], + [ + 77.525390446623902, + 13.0066239197422 + ], + [ + 77.5246708809605, + 13.006792831869801 + ], + [ + 77.523858413626996, + 13.0069566766335 + ], + [ + 77.523181075995495, + 13.0070360653335 + ], + [ + 77.523228371391298, + 13.0060834009341 + ], + [ + 77.522956422865903, + 13.0060479293873 + ], + [ + 77.522201662534798, + 13.005993776553501 + ], + [ + 77.522181052993204, + 13.006086519490401 + ], + [ + 77.522115216957701, + 13.006174110041901 + ], + [ + 77.521630320244697, + 13.0061409057805 + ], + [ + 77.521637762579104, + 13.0059422526997 + ], + [ + 77.521066420289003, + 13.005942825187001 + ], + [ + 77.521053825569197, + 13.005862676969899 + ], + [ + 77.520773796000796, + 13.0058811260723 + ], + [ + 77.520047756029498, + 13.0059263126555 + ], + [ + 77.519597177402204, + 13.0059642683809 + ], + [ + 77.519382492260306, + 13.005980717500099 + ], + [ + 77.519137319661994, + 13.006004012234101 + ], + [ + 77.519108604600305, + 13.0060834009341 + ], + [ + 77.518721795828199, + 13.0061611005128 + ], + [ + 77.517615421392804, + 13.0063545048988 + ], + [ + 77.517551657064601, + 13.006221486598401 + ], + [ + 77.517534491518703, + 13.0062354684182 + ], + [ + 77.517504772035906, + 13.0062618945105 + ], + [ + 77.517406075328907, + 13.006349650533201 + ], + [ + 77.517361980651998, + 13.0064470373128 + ], + [ + 77.517353687887805, + 13.0064653527453 + ], + [ + 77.517333089632004, + 13.006535572434201 + ], + [ + 77.517324651622005, + 13.0066124502516 + ], + [ + 77.517352420905695, + 13.006682200651399 + ], + [ + 77.517409864686996, + 13.006754659062199 + ], + [ + 77.517421814109397, + 13.0067697324512 + ], + [ + 77.517428831263501, + 13.0067785835347 + ], + [ + 77.517436518498997, + 13.0067930278953 + ], + [ + 77.517492813297196, + 13.0068988033736 + ], + [ + 77.517495880115007, + 13.0069277925411 + ], + [ + 77.517506181551695, + 13.007025161080801 + ], + [ + 77.517507019467502, + 13.007051128045999 + ], + [ + 77.517510245778794, + 13.0071425742507 + ], + [ + 77.517479043138493, + 13.0073032450117 + ], + [ + 77.517470935685694, + 13.0074128708274 + ], + [ + 77.517474521288406, + 13.007482855857701 + ], + [ + 77.517475467191701, + 13.007576582894 + ], + [ + 77.517452149457995, + 13.0076626399148 + ], + [ + 77.517428837700507, + 13.0076922292772 + ], + [ + 77.517416893916504, + 13.007707026751699 + ], + [ + 77.517390389425003, + 13.0077626221901 + ], + [ + 77.517396979422898, + 13.007845000941799 + ], + [ + 77.5174068761184, + 13.0079126660286 + ], + [ + 77.517407411753396, + 13.007965740375599 + ], + [ + 77.517392999195494, + 13.008021218480399 + ], + [ + 77.517378244739206, + 13.008042819342201 + ], + [ + 77.517304358460393, + 13.008139531229901 + ], + [ + 77.517298822312199, + 13.008218639595601 + ], + [ + 77.517311301749999, + 13.008256916471 + ], + [ + 77.517365872152993, + 13.008300431664599 + ], + [ + 77.517386760791894, + 13.008316039891699 + ], + [ + 77.517423321614302, + 13.0083439189047 + ], + [ + 77.517513888485695, + 13.008416447892699 + ], + [ + 77.517674053916195, + 13.0085379928612 + ], + [ + 77.5178525085785, + 13.008645807969099 + ], + [ + 77.517907158948503, + 13.0086972277012 + ], + [ + 77.518002412345993, + 13.008777616441799 + ], + [ + 77.518065135498802, + 13.0088300871213 + ], + [ + 77.518174254013502, + 13.0089148585971 + ], + [ + 77.518194116542006, + 13.0089428995662 + ], + [ + 77.518237906480806, + 13.0090023300907 + ], + [ + 77.518258823690402, + 13.009077793566901 + ], + [ + 77.518306478988805, + 13.0091778431921 + ], + [ + 77.518314992964903, + 13.0091905646699 + ], + [ + 77.518388335147904, + 13.009300147788499 + ], + [ + 77.518455322956896, + 13.0094327608586 + ], + [ + 77.518527801022302, + 13.0095958130696 + ], + [ + 77.518617724575194, + 13.009775636116601 + ], + [ + 77.518707477213596, + 13.009938520504599 + ], + [ + 77.518800566926302, + 13.010084082706101 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "192", + "group": "Mallathahalli", + "Corporatio": "West", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "5", + "ward_id": "48", + "ward_name": "48 - Mallathahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಮಲ್ಲತ್ತಹಳ್ಳಿ", + "dig_ward_n": "Mallathahalli", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "48" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.503302229984499, + 12.9578813693767 + ], + [ + 77.503279533913698, + 12.9578347454033 + ], + [ + 77.503183816855994, + 12.9576111340299 + ], + [ + 77.502611854005593, + 12.957873710614701 + ], + [ + 77.501751272467104, + 12.958195383610301 + ], + [ + 77.501337936661997, + 12.958422088567101 + ], + [ + 77.500737730368797, + 12.958799245299099 + ], + [ + 77.500556298865305, + 12.9588173620039 + ], + [ + 77.500532733324306, + 12.958835996859399 + ], + [ + 77.500424533231296, + 12.9585623479469 + ], + [ + 77.500198400761803, + 12.9577831927798 + ], + [ + 77.500039920613105, + 12.9576234471809 + ], + [ + 77.500027943443399, + 12.9576323423533 + ], + [ + 77.4997694328368, + 12.957795646471901 + ], + [ + 77.499228625255995, + 12.958060775080501 + ], + [ + 77.498244156325001, + 12.9583935954034 + ], + [ + 77.497495115898104, + 12.9585898273357 + ], + [ + 77.497696631415195, + 12.9596603785205 + ], + [ + 77.497837463282295, + 12.960393162219299 + ], + [ + 77.497551219650006, + 12.960459570742 + ], + [ + 77.497584423911306, + 12.960590097838301 + ], + [ + 77.497175668004402, + 12.960656506361 + ], + [ + 77.497379473470602, + 12.961666373895801 + ], + [ + 77.496181739247703, + 12.961856716298501 + ], + [ + 77.496286464766797, + 12.9623212246492 + ], + [ + 77.495406063085596, + 12.962477257224499 + ], + [ + 77.495281437607801, + 12.962524341482601 + ], + [ + 77.495365355717993, + 12.9626853810345 + ], + [ + 77.495425215301694, + 12.9627988737269 + ], + [ + 77.495492748974002, + 12.962989090129399 + ], + [ + 77.495679640674396, + 12.9634277532199 + ], + [ + 77.495742646963706, + 12.963561330171601 + ], + [ + 77.495814338979301, + 12.963713322008701 + ], + [ + 77.495973794856397, + 12.963941055262399 + ], + [ + 77.496103360289794, + 12.964115994587599 + ], + [ + 77.496117468506995, + 12.9641324845249 + ], + [ + 77.4962222026641, + 12.9642548967787 + ], + [ + 77.496387531769699, + 12.964378671134501 + ], + [ + 77.496490403417994, + 12.9644172123005 + ], + [ + 77.496621487756798, + 12.9643402868879 + ], + [ + 77.496708602337804, + 12.9642999231435 + ], + [ + 77.496801042260898, + 12.9643893859662 + ], + [ + 77.496868172046305, + 12.9645389482534 + ], + [ + 77.496934907652005, + 12.964648986304001 + ], + [ + 77.496921697559301, + 12.9647676970131 + ], + [ + 77.496926728971104, + 12.9649257606806 + ], + [ + 77.496899691599396, + 12.964985876770999 + ], + [ + 77.496877169835699, + 12.9650369145648 + ], + [ + 77.496789332900207, + 12.965062603509599 + ], + [ + 77.496566575282202, + 12.965069258186499 + ], + [ + 77.496450166401004, + 12.965116679193301 + ], + [ + 77.496395719695201, + 12.9651996456306 + ], + [ + 77.496368758398404, + 12.9653828624476 + ], + [ + 77.496315415388494, + 12.9655764966958 + ], + [ + 77.496316275144807, + 12.9656626983399 + ], + [ + 77.496316778217505, + 12.965713137566899 + ], + [ + 77.496368952082307, + 12.965806374867901 + ], + [ + 77.496456296182004, + 12.9661353133354 + ], + [ + 77.496592461798599, + 12.966567685442801 + ], + [ + 77.496682832863101, + 12.9668536785769 + ], + [ + 77.496832735668605, + 12.966816100270901 + ], + [ + 77.496994527234307, + 12.967277589697201 + ], + [ + 77.496971770316804, + 12.967298237056999 + ], + [ + 77.496834755836403, + 12.967422553079899 + ], + [ + 77.496777745771396, + 12.967537166636101 + ], + [ + 77.496782923950505, + 12.967709910699099 + ], + [ + 77.496860779664104, + 12.9678379118268 + ], + [ + 77.497038775575106, + 12.9680767595279 + ], + [ + 77.497300748766193, + 12.968306895376699 + ], + [ + 77.497558196420201, + 12.9684873820277 + ], + [ + 77.497694416076399, + 12.968578682638601 + ], + [ + 77.497858054015893, + 12.968821055495299 + ], + [ + 77.498194951298402, + 12.9691159742144 + ], + [ + 77.498509191151498, + 12.969563574841599 + ], + [ + 77.498512126169103, + 12.969569193499799 + ], + [ + 77.498134277914005, + 12.969728675260001 + ], + [ + 77.498047692556796, + 12.969764517194401 + ], + [ + 77.498014945845597, + 12.9697766186581 + ], + [ + 77.498098102779096, + 12.9698559773641 + ], + [ + 77.498182116402603, + 12.9699361536019 + ], + [ + 77.498390528572401, + 12.970135046113 + ], + [ + 77.498159355661301, + 12.970221968998301 + ], + [ + 77.498070582897299, + 12.970222821512399 + ], + [ + 77.497704529899593, + 12.9702263365199 + ], + [ + 77.497168504528403, + 12.9701716261161 + ], + [ + 77.496681845396907, + 12.9701017589431 + ], + [ + 77.496026324035896, + 12.970246962311199 + ], + [ + 77.495570383405806, + 12.970322415843 + ], + [ + 77.495461260150407, + 12.9703404746584 + ], + [ + 77.495467708739298, + 12.9703977198301 + ], + [ + 77.495488280454097, + 12.9705803262051 + ], + [ + 77.495525695448094, + 12.970912447968001 + ], + [ + 77.495351617914196, + 12.9710665831774 + ], + [ + 77.495269422103306, + 12.971138522119601 + ], + [ + 77.495195655545004, + 12.971362845393299 + ], + [ + 77.495121500723599, + 12.9713813384767 + ], + [ + 77.494654034536197, + 12.971497918351799 + ], + [ + 77.494641658324397, + 12.9716425967089 + ], + [ + 77.494566842258806, + 12.9727433229209 + ], + [ + 77.494546434356707, + 12.9728354251731 + ], + [ + 77.494512959561106, + 12.9729865029921 + ], + [ + 77.494500847407707, + 12.973041166944499 + ], + [ + 77.494474897831793, + 12.9731582823827 + ], + [ + 77.494449480723603, + 12.973272994831101 + ], + [ + 77.494452480364203, + 12.9732908236964 + ], + [ + 77.494546800453307, + 12.973851429361501 + ], + [ + 77.494679256759099, + 12.9741800547192 + ], + [ + 77.494722740766093, + 12.974287938039399 + ], + [ + 77.494745641082801, + 12.974393721215399 + ], + [ + 77.494850101854993, + 12.9748762483876 + ], + [ + 77.494894169906004, + 12.975080241910099 + ], + [ + 77.495117017569797, + 12.975543404894299 + ], + [ + 77.495142662256001, + 12.9755592925725 + ], + [ + 77.495145499959094, + 12.9755673435128 + ], + [ + 77.495146977135704, + 12.975571536022001 + ], + [ + 77.495147981802006, + 12.9755709373014 + ], + [ + 77.495154852379699, + 12.975566844486501 + ], + [ + 77.495336022780606, + 12.9756790866728 + ], + [ + 77.495333351794201, + 12.9757487764565 + ], + [ + 77.495327108037102, + 12.975911714332099 + ], + [ + 77.495324002955996, + 12.9759927426537 + ], + [ + 77.495322774174397, + 12.976024801491199 + ], + [ + 77.495196133148397, + 12.976028272812901 + ], + [ + 77.494878954868099, + 12.9760369658598 + ], + [ + 77.494427604375403, + 12.976102283120101 + ], + [ + 77.494193801217804, + 12.9761744051678 + ], + [ + 77.494156264035894, + 12.976185983967699 + ], + [ + 77.493993061307293, + 12.9762363283424 + ], + [ + 77.493988759428504, + 12.976266862662101 + ], + [ + 77.493984457549203, + 12.976297396981799 + ], + [ + 77.493975696157605, + 12.9763622437551 + ], + [ + 77.493949690729295, + 12.9765547123922 + ], + [ + 77.493927618101694, + 12.9767180687427 + ], + [ + 77.493881131420906, + 12.976730286299899 + ], + [ + 77.493769956084193, + 12.976759504713 + ], + [ + 77.4937197075228, + 12.976772711515 + ], + [ + 77.493718000252201, + 12.9767731597614 + ], + [ + 77.493641759605893, + 12.976980566178201 + ], + [ + 77.493642349314499, + 12.977201559790799 + ], + [ + 77.493643744267104, + 12.977724548968499 + ], + [ + 77.493643818334704, + 12.977752114889901 + ], + [ + 77.4936438626805, + 12.9777688481536 + ], + [ + 77.493644576531807, + 12.978129111185501 + ], + [ + 77.493623052715606, + 12.978120724460799 + ], + [ + 77.493614304270395, + 12.9781173154473 + ], + [ + 77.4935420322753, + 12.978089154511199 + ], + [ + 77.493378673484798, + 12.978025500425201 + ], + [ + 77.493373863652906, + 12.978044460386901 + ], + [ + 77.493322125500399, + 12.978248400000901 + ], + [ + 77.493285042913101, + 12.9783945739412 + ], + [ + 77.4932756267754, + 12.978431933551301 + ], + [ + 77.493266210635795, + 12.9784692931614 + ], + [ + 77.493337662150196, + 12.9785644627515 + ], + [ + 77.493368916485295, + 12.9786060916434 + ], + [ + 77.493341327900097, + 12.9787088554082 + ], + [ + 77.493336443174599, + 12.978727049922901 + ], + [ + 77.493318695065895, + 12.9787931574454 + ], + [ + 77.493301477268105, + 12.9788572902557 + ], + [ + 77.4931962543764, + 12.979249231387801 + ], + [ + 77.493216923440698, + 12.979346041772599 + ], + [ + 77.493344239752503, + 12.9799423763356 + ], + [ + 77.493361943751907, + 12.979993040946701 + ], + [ + 77.495751388796606, + 12.9791734907188 + ], + [ + 77.4964257096875, + 12.9804891826701 + ], + [ + 77.496995907002997, + 12.981773844091901 + ], + [ + 77.497976005200101, + 12.9813799728538 + ], + [ + 77.502052114524503, + 12.9798113577487 + ], + [ + 77.501743646111805, + 12.9787080235612 + ], + [ + 77.501505961673999, + 12.977883220641401 + ], + [ + 77.502607427171199, + 12.977469884836299 + ], + [ + 77.502053124801293, + 12.975302121651101 + ], + [ + 77.501925078431199, + 12.9750519481283 + ], + [ + 77.501823034811693, + 12.9747943295658 + ], + [ + 77.502664777591306, + 12.9743385085137 + ], + [ + 77.503238720901905, + 12.973908066551299 + ], + [ + 77.503472510789393, + 12.974305100915499 + ], + [ + 77.503720287500201, + 12.974129026925301 + ], + [ + 77.503980412176602, + 12.9745901570335 + ], + [ + 77.504362396674495, + 12.9754799305153 + ], + [ + 77.504777479882094, + 12.975330145153499 + ], + [ + 77.504878731730003, + 12.975293607505201 + ], + [ + 77.505207945651705, + 12.975308364900499 + ], + [ + 77.505888059764104, + 12.9753735262651 + ], + [ + 77.506725369510704, + 12.975314658096901 + ], + [ + 77.506936374408795, + 12.9752902978022 + ], + [ + 77.507424907503307, + 12.9753631317024 + ], + [ + 77.507503338258502, + 12.975364276677 + ], + [ + 77.507523947800095, + 12.975430685199701 + ], + [ + 77.507559442010503, + 12.9755577773724 + ], + [ + 77.507616690736995, + 12.9755371678309 + ], + [ + 77.507723173368205, + 12.9758314262849 + ], + [ + 77.507835883431795, + 12.9757827347239 + ], + [ + 77.508173932695499, + 12.9767999127669 + ], + [ + 77.5082204035226, + 12.9769857223699 + ], + [ + 77.508543415807793, + 12.978277254137 + ], + [ + 77.507669928107106, + 12.978490971477299 + ], + [ + 77.5077653634591, + 12.9788026143527 + ], + [ + 77.508084607380198, + 12.9787173137283 + ], + [ + 77.5086090795362, + 12.978576272101799 + ], + [ + 77.508701164686101, + 12.9789453625562 + ], + [ + 77.508765797979095, + 12.9791921537728 + ], + [ + 77.5090220696881, + 12.980224009905999 + ], + [ + 77.508868729147906, + 12.9802664490797 + ], + [ + 77.509037641275498, + 12.9808035896453 + ], + [ + 77.508943050484106, + 12.9809032478005 + ], + [ + 77.5090541629923, + 12.981308425765 + ], + [ + 77.509275807375403, + 12.982257923063401 + ], + [ + 77.508968387303199, + 12.9822984619741 + ], + [ + 77.509198107796706, + 12.9833288259521 + ], + [ + 77.509106895247797, + 12.983374432226499 + ], + [ + 77.508954874333, + 12.983374432226499 + ], + [ + 77.508644118989594, + 12.9834551415071 + ], + [ + 77.508234939173605, + 12.9835786047593 + ], + [ + 77.507919442991096, + 12.9836987435114 + ], + [ + 77.507623846767899, + 12.983793334302799 + ], + [ + 77.507704080028503, + 12.9840830186016 + ], + [ + 77.507819784835803, + 12.984284868594001 + ], + [ + 77.508030555499303, + 12.9845059323396 + ], + [ + 77.508394086069501, + 12.984484184904501 + ], + [ + 77.5084274727284, + 12.9844549618374 + ], + [ + 77.508941361362801, + 12.984059370903701 + ], + [ + 77.509160577632599, + 12.9840380457462 + ], + [ + 77.509418342274898, + 12.9841298227738 + ], + [ + 77.510766772844093, + 12.9846732794052 + ], + [ + 77.510744377105397, + 12.9846046085159 + ], + [ + 77.510711357238804, + 12.984405654429599 + ], + [ + 77.510714652271403, + 12.9843243593483 + ], + [ + 77.510718323319793, + 12.984233814346901 + ], + [ + 77.510727389875498, + 12.9840101507284 + ], + [ + 77.510764634530602, + 12.9837563383585 + ], + [ + 77.510799012975696, + 12.9835938628022 + ], + [ + 77.510850107629494, + 12.9833494276371 + ], + [ + 77.5109527590391, + 12.9830785191043 + ], + [ + 77.510984082248299, + 12.982986738407099 + ], + [ + 77.511017098661796, + 12.9828915532739 + ], + [ + 77.511063714703297, + 12.982717181630701 + ], + [ + 77.511062341968199, + 12.982580542484801 + ], + [ + 77.511060172265701, + 12.9825365184562 + ], + [ + 77.511040945720794, + 12.98205559737 + ], + [ + 77.511037329594302, + 12.9819822239833 + ], + [ + 77.5109902654699, + 12.981024442252 + ], + [ + 77.510990140533806, + 12.9810201672543 + ], + [ + 77.510978902538298, + 12.9806941899371 + ], + [ + 77.510977779609206, + 12.980582394247699 + ], + [ + 77.510977269190306, + 12.9805315780249 + ], + [ + 77.510955476114503, + 12.980425628799701 + ], + [ + 77.510862980284401, + 12.9801023962213 + ], + [ + 77.510757299334003, + 12.9797849377081 + ], + [ + 77.510747753288598, + 12.979756435438 + ], + [ + 77.510746990635496, + 12.979754158788101 + ], + [ + 77.510729400093993, + 12.9797016345925 + ], + [ + 77.510706254262999, + 12.979632967230501 + ], + [ + 77.510641059937896, + 12.9793907846393 + ], + [ + 77.510555389553701, + 12.9789443857007 + ], + [ + 77.510397098066903, + 12.9782615224221 + ], + [ + 77.510356281330303, + 12.978078959390499 + ], + [ + 77.510346455990899, + 12.9780350119474 + ], + [ + 77.510346318792102, + 12.978034468469 + ], + [ + 77.510302477742997, + 12.977838520532799 + ], + [ + 77.510127652953898, + 12.9771288337651 + ], + [ + 77.510054157813897, + 12.976873621305799 + ], + [ + 77.509987183975298, + 12.976614130167601 + ], + [ + 77.509964994369199, + 12.976546036160499 + ], + [ + 77.509896221258899, + 12.976334982968 + ], + [ + 77.509890869666506, + 12.9763185586175 + ], + [ + 77.509787103358903, + 12.9759555936468 + ], + [ + 77.509662440930498, + 12.9755725812746 + ], + [ + 77.509621747787605, + 12.975447554484701 + ], + [ + 77.509621487344006, + 12.9754467556041 + ], + [ + 77.509606097387802, + 12.9754087272368 + ], + [ + 77.509531366840207, + 12.975224076138799 + ], + [ + 77.509467243348595, + 12.9750656322192 + ], + [ + 77.509389010076504, + 12.974884621568799 + ], + [ + 77.509177658868097, + 12.974395610423899 + ], + [ + 77.509163244622599, + 12.974362258986201 + ], + [ + 77.509117169706997, + 12.974260527107001 + ], + [ + 77.509116016534307, + 12.974257980456899 + ], + [ + 77.509098187669295, + 12.9742186158119 + ], + [ + 77.509049628420499, + 12.974111398405901 + ], + [ + 77.508977027232106, + 12.9739865645137 + ], + [ + 77.508907119355101, + 12.9738663611858 + ], + [ + 77.508681992390393, + 12.973480183591301 + ], + [ + 77.508677246405398, + 12.973472042858299 + ], + [ + 77.508500972399503, + 12.9731863324457 + ], + [ + 77.508411859759804, + 12.9730418964353 + ], + [ + 77.508252609644401, + 12.972783863476799 + ], + [ + 77.508010649958507, + 12.972391815566001 + ], + [ + 77.5077984319297, + 12.9720452522148 + ], + [ + 77.507792803978504, + 12.9720360619727 + ], + [ + 77.507778977130002, + 12.972013481558699 + ], + [ + 77.507610437288506, + 12.971777933235 + ], + [ + 77.507581548327394, + 12.971737558324 + ], + [ + 77.507468669477504, + 12.9715798003764 + ], + [ + 77.507192426745206, + 12.971189187616901 + ], + [ + 77.507126538353702, + 12.9710960205527 + ], + [ + 77.507095472981803, + 12.9710520941362 + ], + [ + 77.506946452051096, + 12.970848805865399 + ], + [ + 77.506832287025006, + 12.970693065637599 + ], + [ + 77.506802962179407, + 12.9706335263435 + ], + [ + 77.506798473334896, + 12.970624648538999 + ], + [ + 77.506787299172998, + 12.9706025502388 + ], + [ + 77.506706398591604, + 12.970442553745301 + ], + [ + 77.5065488854016, + 12.970072089175799 + ], + [ + 77.506501642407699, + 12.969937507787501 + ], + [ + 77.5064546650122, + 12.9698036836571 + ], + [ + 77.506371386430303, + 12.969566446070599 + ], + [ + 77.506362019043394, + 12.969539760472401 + ], + [ + 77.506263006665307, + 12.969294699289801 + ], + [ + 77.506211873839305, + 12.969168141219701 + ], + [ + 77.506180939884203, + 12.9690915783615 + ], + [ + 77.506171885279301, + 12.969070638647899 + ], + [ + 77.506147042404095, + 12.9690131855643 + ], + [ + 77.505895149555897, + 12.9684306467735 + ], + [ + 77.505882960525895, + 12.968402950206899 + ], + [ + 77.505754082378203, + 12.9681471040294 + ], + [ + 77.505713355385396, + 12.968066253451401 + ], + [ + 77.505701142095205, + 12.968038981743501 + ], + [ + 77.5054977880759, + 12.967584896607001 + ], + [ + 77.505342187674501, + 12.967262346033699 + ], + [ + 77.505326788788693, + 12.967224579291999 + ], + [ + 77.505310011069596, + 12.9671834332147 + ], + [ + 77.505231667206004, + 12.9669912930344 + ], + [ + 77.505195195948005, + 12.966896282469 + ], + [ + 77.505070921341897, + 12.9665725391263 + ], + [ + 77.5050570960436, + 12.9665365226254 + ], + [ + 77.505031045927396, + 12.966468659184301 + ], + [ + 77.505029223186696, + 12.9664639117173 + ], + [ + 77.504967715677296, + 12.9663237994844 + ], + [ + 77.504891055537598, + 12.9660132872727 + ], + [ + 77.504837685967601, + 12.9656419906488 + ], + [ + 77.504822625860101, + 12.965477791351899 + ], + [ + 77.504825699748395, + 12.9651822738434 + ], + [ + 77.504825969022505, + 12.965156341938 + ], + [ + 77.504828954602502, + 12.965063169511399 + ], + [ + 77.504843181145404, + 12.964619180437101 + ], + [ + 77.504856163127499, + 12.9644700488867 + ], + [ + 77.504857643587897, + 12.9644639776271 + ], + [ + 77.504878343642602, + 12.964379104929201 + ], + [ + 77.505077751857897, + 12.9635614905092 + ], + [ + 77.505076286170294, + 12.9635434456228 + ], + [ + 77.505041609188396, + 12.963116636466999 + ], + [ + 77.505025689631793, + 12.963053769328599 + ], + [ + 77.504923156658904, + 12.9626488705598 + ], + [ + 77.504918336132903, + 12.9626298352037 + ], + [ + 77.504862326494603, + 12.9624086527943 + ], + [ + 77.504793721934902, + 12.9621377359643 + ], + [ + 77.504703441655906, + 12.961781219407699 + ], + [ + 77.504703251752602, + 12.9617804695296 + ], + [ + 77.504628780740205, + 12.9614863784451 + ], + [ + 77.504455359829095, + 12.9608252415164 + ], + [ + 77.503302229984499, + 12.9578813693767 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "193", + "group": "Nagarbhavi 2nd Stage", + "Corporatio": "West", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "5", + "ward_id": "99", + "ward_name": "99 - Vinayaka Layout", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ವಿನಾಯಕ ಲೇಔಟ್", + "dig_ward_n": "Nagarbhavi 2nd Stage", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "99" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.511910243103699, + 12.9576067359747 + ], + [ + 77.511910235481096, + 12.9576067107506 + ], + [ + 77.511902548715, + 12.957528887992099 + ], + [ + 77.511892599633299, + 12.9574205853066 + ], + [ + 77.511892583065304, + 12.957420402961899 + ], + [ + 77.511891561391096, + 12.957409282751099 + ], + [ + 77.511880264540693, + 12.957378309946201 + ], + [ + 77.511860775920795, + 12.9573248777595 + ], + [ + 77.511836479740595, + 12.9571986229363 + ], + [ + 77.511822917371703, + 12.9571698231862 + ], + [ + 77.511788829366793, + 12.9570974402241 + ], + [ + 77.511802435855401, + 12.957029232952101 + ], + [ + 77.511815690606696, + 12.956962787261199 + ], + [ + 77.511855451609705, + 12.9569401309037 + ], + [ + 77.511857125989593, + 12.956939176930501 + ], + [ + 77.511862061191906, + 12.9569363646473 + ], + [ + 77.511873325877204, + 12.956911410058 + ], + [ + 77.5118930225795, + 12.956866829873199 + ], + [ + 77.511918926315403, + 12.956808198393899 + ], + [ + 77.5119272309758, + 12.9567992966214 + ], + [ + 77.511934874882201, + 12.9567911041367 + ], + [ + 77.512046080450801, + 12.9566274034775 + ], + [ + 77.512048143450201, + 12.9565460696688 + ], + [ + 77.5120339363055, + 12.956478145184599 + ], + [ + 77.512020325240002, + 12.956413073583001 + ], + [ + 77.511939911315196, + 12.9563412342156 + ], + [ + 77.511930277751503, + 12.956332628367999 + ], + [ + 77.511926613593303, + 12.9563135576563 + ], + [ + 77.511902335074396, + 12.9561872104941 + ], + [ + 77.511841160963002, + 12.9560579242141 + ], + [ + 77.511828330258297, + 12.9560326301551 + ], + [ + 77.511790190578395, + 12.955957442968099 + ], + [ + 77.5117636288863, + 12.955905079135199 + ], + [ + 77.511754581884205, + 12.9558660399478 + ], + [ + 77.511735947762702, + 12.9557856339739 + ], + [ + 77.511720916866594, + 12.9556073400587 + ], + [ + 77.511723817074596, + 12.9555519734383 + ], + [ + 77.511730217114405, + 12.955541368903599 + ], + [ + 77.511611506869997, + 12.9555052659537 + ], + [ + 77.511468385053803, + 12.955539615189601 + ], + [ + 77.511414571250896, + 12.955399928297 + ], + [ + 77.510875288247604, + 12.955588849094401 + ], + [ + 77.508790289629701, + 12.9562666740157 + ], + [ + 77.508330744021606, + 12.956480665559001 + ], + [ + 77.507748841742199, + 12.956690961157801 + ], + [ + 77.507106431131504, + 12.956972840643999 + ], + [ + 77.506962339264106, + 12.957024781968601 + ], + [ + 77.506700643874296, + 12.9571131458181 + ], + [ + 77.505825500776595, + 12.957408642369 + ], + [ + 77.504516708181598, + 12.957712879529399 + ], + [ + 77.503562354660801, + 12.957831118018699 + ], + [ + 77.503308870380593, + 12.957879376572601 + ], + [ + 77.503302229984499, + 12.9578813693767 + ], + [ + 77.504455359829095, + 12.9608252415164 + ], + [ + 77.504628780740205, + 12.9614863784451 + ], + [ + 77.504703251752602, + 12.9617804695296 + ], + [ + 77.504703441655906, + 12.961781219407699 + ], + [ + 77.504793721934902, + 12.9621377359643 + ], + [ + 77.504862326494603, + 12.9624086527943 + ], + [ + 77.504918336132903, + 12.9626298352037 + ], + [ + 77.504923156658904, + 12.9626488705598 + ], + [ + 77.505025689631793, + 12.963053769328599 + ], + [ + 77.505041609188396, + 12.963116636466999 + ], + [ + 77.505076286170294, + 12.9635434456228 + ], + [ + 77.505077751857897, + 12.9635614905092 + ], + [ + 77.504878343642602, + 12.964379104929201 + ], + [ + 77.504857643587897, + 12.9644639776271 + ], + [ + 77.504856163127499, + 12.9644700488867 + ], + [ + 77.504843181145404, + 12.964619180437101 + ], + [ + 77.504828954602502, + 12.965063169511399 + ], + [ + 77.504825969022505, + 12.965156341938 + ], + [ + 77.504825699748395, + 12.9651822738434 + ], + [ + 77.504822625860101, + 12.965477791351899 + ], + [ + 77.504837685967601, + 12.9656419906488 + ], + [ + 77.504891055537598, + 12.9660132872727 + ], + [ + 77.504967715677296, + 12.9663237994844 + ], + [ + 77.505029223186696, + 12.9664639117173 + ], + [ + 77.505031045927396, + 12.966468659184301 + ], + [ + 77.5050570960436, + 12.9665365226254 + ], + [ + 77.505070921341897, + 12.9665725391263 + ], + [ + 77.505195195948005, + 12.966896282469 + ], + [ + 77.505231667206004, + 12.9669912930344 + ], + [ + 77.505310011069596, + 12.9671834332147 + ], + [ + 77.505326788788693, + 12.967224579291999 + ], + [ + 77.505342187674501, + 12.967262346033699 + ], + [ + 77.5054977880759, + 12.967584896607001 + ], + [ + 77.505701142095205, + 12.968038981743501 + ], + [ + 77.505713355385396, + 12.968066253451401 + ], + [ + 77.505754082378203, + 12.9681471040294 + ], + [ + 77.505882960525895, + 12.968402950206899 + ], + [ + 77.505895149555897, + 12.9684306467735 + ], + [ + 77.506147042404095, + 12.9690131855643 + ], + [ + 77.506171885279301, + 12.969070638647899 + ], + [ + 77.506180939884203, + 12.9690915783615 + ], + [ + 77.506211873839305, + 12.969168141219701 + ], + [ + 77.506263006665307, + 12.969294699289801 + ], + [ + 77.506362019043394, + 12.969539760472401 + ], + [ + 77.506371386430303, + 12.969566446070599 + ], + [ + 77.5064546650122, + 12.9698036836571 + ], + [ + 77.506501642407699, + 12.969937507787501 + ], + [ + 77.5065488854016, + 12.970072089175799 + ], + [ + 77.506706398591604, + 12.970442553745301 + ], + [ + 77.506787299172998, + 12.9706025502388 + ], + [ + 77.506798473334896, + 12.970624648538999 + ], + [ + 77.506802962179407, + 12.9706335263435 + ], + [ + 77.506832287025006, + 12.970693065637599 + ], + [ + 77.506946452051096, + 12.970848805865399 + ], + [ + 77.507095472981803, + 12.9710520941362 + ], + [ + 77.507126538353702, + 12.9710960205527 + ], + [ + 77.507192426745206, + 12.971189187616901 + ], + [ + 77.507468669477504, + 12.9715798003764 + ], + [ + 77.507581548327394, + 12.971737558324 + ], + [ + 77.507610437288506, + 12.971777933235 + ], + [ + 77.507778977130002, + 12.972013481558699 + ], + [ + 77.507792803978504, + 12.9720360619727 + ], + [ + 77.5077984319297, + 12.9720452522148 + ], + [ + 77.508010649958507, + 12.972391815566001 + ], + [ + 77.508252609644401, + 12.972783863476799 + ], + [ + 77.508411859759804, + 12.9730418964353 + ], + [ + 77.508500972399503, + 12.9731863324457 + ], + [ + 77.508677246405398, + 12.973472042858299 + ], + [ + 77.508681992390393, + 12.973480183591301 + ], + [ + 77.508907119355101, + 12.9738663611858 + ], + [ + 77.508977027232106, + 12.9739865645137 + ], + [ + 77.509049628420499, + 12.974111398405901 + ], + [ + 77.509098187669295, + 12.9742186158119 + ], + [ + 77.509116016534307, + 12.974257980456899 + ], + [ + 77.509117169706997, + 12.974260527107001 + ], + [ + 77.509163244622599, + 12.974362258986201 + ], + [ + 77.509177658868097, + 12.974395610423899 + ], + [ + 77.509389010076504, + 12.974884621568799 + ], + [ + 77.509467243348595, + 12.9750656322192 + ], + [ + 77.509531366840207, + 12.975224076138799 + ], + [ + 77.509606097387802, + 12.9754087272368 + ], + [ + 77.509621487344006, + 12.9754467556041 + ], + [ + 77.509621747787605, + 12.975447554484701 + ], + [ + 77.509662440930498, + 12.9755725812746 + ], + [ + 77.509787103358903, + 12.9759555936468 + ], + [ + 77.509890869666506, + 12.9763185586175 + ], + [ + 77.509896221258899, + 12.976334982968 + ], + [ + 77.509964994369199, + 12.976546036160499 + ], + [ + 77.509987183975298, + 12.976614130167601 + ], + [ + 77.510054157813897, + 12.976873621305799 + ], + [ + 77.510127652953898, + 12.9771288337651 + ], + [ + 77.510302477742997, + 12.977838520532799 + ], + [ + 77.510346318792102, + 12.978034468469 + ], + [ + 77.510346455990899, + 12.9780350119474 + ], + [ + 77.510356281330303, + 12.978078959390499 + ], + [ + 77.510397098066903, + 12.9782615224221 + ], + [ + 77.510555389553701, + 12.9789443857007 + ], + [ + 77.510641059937896, + 12.9793907846393 + ], + [ + 77.510706254262999, + 12.979632967230501 + ], + [ + 77.510729400093993, + 12.9797016345925 + ], + [ + 77.510746990635496, + 12.979754158788101 + ], + [ + 77.510747753288598, + 12.979756435438 + ], + [ + 77.510757299334003, + 12.9797849377081 + ], + [ + 77.510862980284401, + 12.9801023962213 + ], + [ + 77.510955476114503, + 12.980425628799701 + ], + [ + 77.510977269190306, + 12.9805315780249 + ], + [ + 77.510977779609206, + 12.980582394247699 + ], + [ + 77.510978902538298, + 12.9806941899371 + ], + [ + 77.510990140533806, + 12.9810201672543 + ], + [ + 77.5109902654699, + 12.981024442252 + ], + [ + 77.511956442839406, + 12.980810768410601 + ], + [ + 77.512866109462493, + 12.980584072490799 + ], + [ + 77.513246953591903, + 12.980499168921201 + ], + [ + 77.513745644455796, + 12.9803987272757 + ], + [ + 77.514305388091501, + 12.9803096473136 + ], + [ + 77.514828931546205, + 12.9802567730361 + ], + [ + 77.514992669952505, + 12.980236637627099 + ], + [ + 77.515778404629799, + 12.980140013975401 + ], + [ + 77.5160734289109, + 12.980096182795499 + ], + [ + 77.515760449709902, + 12.9796599118012 + ], + [ + 77.515692177070093, + 12.979564744461401 + ], + [ + 77.515199036587802, + 12.9787946039218 + ], + [ + 77.514840276349204, + 12.978234321817199 + ], + [ + 77.514673243882498, + 12.977868082691799 + ], + [ + 77.514301897579699, + 12.977053852914899 + ], + [ + 77.514161548657796, + 12.9765451194188 + ], + [ + 77.514125517619803, + 12.976414513929001 + ], + [ + 77.514038807183894, + 12.9761002057565 + ], + [ + 77.514038999421501, + 12.9761193279754 + ], + [ + 77.513558932848198, + 12.9749191680816 + ], + [ + 77.5134614498959, + 12.974664478369601 + ], + [ + 77.513684413904301, + 12.974580022305799 + ], + [ + 77.515029799000303, + 12.9742497990965 + ], + [ + 77.515117633306602, + 12.973970249525401 + ], + [ + 77.515065272703794, + 12.9734607567173 + ], + [ + 77.514887906581507, + 12.972752868379199 + ], + [ + 77.514882436891895, + 12.972731038858401 + ], + [ + 77.514641828725004, + 12.9720735942657 + ], + [ + 77.514416043550995, + 12.971244143989599 + ], + [ + 77.514404014649898, + 12.9712136041019 + ], + [ + 77.514368508020894, + 12.971004152565699 + ], + [ + 77.514519741038399, + 12.970899466725999 + ], + [ + 77.514796756945799, + 12.970804031366599 + ], + [ + 77.515480948291597, + 12.9706670186706 + ], + [ + 77.515457476313799, + 12.9704643581789 + ], + [ + 77.515516224333098, + 12.970447719461699 + ], + [ + 77.515605268144995, + 12.970427659298601 + ], + [ + 77.515823576711597, + 12.970379244398901 + ], + [ + 77.515833341262194, + 12.970376891248099 + ], + [ + 77.515935592513799, + 12.970353314271801 + ], + [ + 77.516007577356703, + 12.970340469769599 + ], + [ + 77.516029276078498, + 12.970336598069601 + ], + [ + 77.516156859012298, + 12.9703127768974 + ], + [ + 77.516174526398601, + 12.9703095495151 + ], + [ + 77.516248239639793, + 12.9702960819937 + ], + [ + 77.516278707416404, + 12.9702912698496 + ], + [ + 77.516562676557797, + 12.970274452174699 + ], + [ + 77.517090526956395, + 12.9701148302142 + ], + [ + 77.517495916062501, + 12.9699864569972 + ], + [ + 77.517773093439402, + 12.9697604754308 + ], + [ + 77.517723801282798, + 12.9696986509938 + ], + [ + 77.517662470445202, + 12.9696217256813 + ], + [ + 77.517558492680706, + 12.969473657168701 + ], + [ + 77.517440504665899, + 12.969306525140899 + ], + [ + 77.517442708260106, + 12.969303685850701 + ], + [ + 77.517466902290806, + 12.969272509210899 + ], + [ + 77.517489955874893, + 12.969242802732399 + ], + [ + 77.517490778428694, + 12.969234917297801 + ], + [ + 77.517492401658799, + 12.9692193526345 + ], + [ + 77.517493452677698, + 12.969209269523599 + ], + [ + 77.517495732044196, + 12.969187408457101 + ], + [ + 77.517494378330099, + 12.9691828806481 + ], + [ + 77.517488131280203, + 12.969161991121201 + ], + [ + 77.5174802407454, + 12.969135608054399 + ], + [ + 77.517475419413898, + 12.9691182536141 + ], + [ + 77.517473669257598, + 12.9691119551992 + ], + [ + 77.517468226483302, + 12.9690860327116 + ], + [ + 77.517467788418998, + 12.969081498751899 + ], + [ + 77.517461798980094, + 12.969019462984001 + ], + [ + 77.517478403892298, + 12.9690102674609 + ], + [ + 77.517475547672106, + 12.969003819832601 + ], + [ + 77.517445229254406, + 12.9689353716598 + ], + [ + 77.517423612441704, + 12.968886568653099 + ], + [ + 77.517424471707102, + 12.968883430670401 + ], + [ + 77.517440486753003, + 12.9688249458806 + ], + [ + 77.517460822134694, + 12.9687506860177 + ], + [ + 77.517460916980099, + 12.9686456551114 + ], + [ + 77.517459508210493, + 12.968505628757701 + ], + [ + 77.517459121937804, + 12.9684672344346 + ], + [ + 77.517464119444298, + 12.9684217056056 + ], + [ + 77.517475736461094, + 12.968315876555399 + ], + [ + 77.517480219220403, + 12.968275039981499 + ], + [ + 77.517627795773905, + 12.968121149039099 + ], + [ + 77.517731014853595, + 12.9680179011196 + ], + [ + 77.517732682098398, + 12.968016234320601 + ], + [ + 77.517857741055096, + 12.967913381252 + ], + [ + 77.518025804257505, + 12.9677355754533 + ], + [ + 77.518115956502697, + 12.9675969217011 + ], + [ + 77.518144643670595, + 12.967472415082399 + ], + [ + 77.518143135959903, + 12.9674669563723 + ], + [ + 77.518106998806005, + 12.9673361275559 + ], + [ + 77.518086805295397, + 12.967298944075999 + ], + [ + 77.518061175279996, + 12.9672517484022 + ], + [ + 77.518045988376301, + 12.9672237825891 + ], + [ + 77.518027733430401, + 12.9671599835925 + ], + [ + 77.518001521104594, + 12.967068370162201 + ], + [ + 77.517999866439993, + 12.967062588521699 + ], + [ + 77.517998351152201, + 12.967057291606499 + ], + [ + 77.517998110544198, + 12.9670564509849 + ], + [ + 77.517997885219799, + 12.9670556644244 + ], + [ + 77.517997747730803, + 12.9670551841982 + ], + [ + 77.517997651296099, + 12.967054847228701 + ], + [ + 77.517947583286897, + 12.966999994300499 + ], + [ + 77.517877467599803, + 12.9669554977469 + ], + [ + 77.517853879288694, + 12.966925442145399 + ], + [ + 77.517834620996297, + 12.966900903774301 + ], + [ + 77.517823809019504, + 12.9668871263746 + ], + [ + 77.517753011746606, + 12.9667748759997 + ], + [ + 77.517643350138698, + 12.9666912355167 + ], + [ + 77.517589101235501, + 12.966661606653901 + ], + [ + 77.517569147416395, + 12.966650708555299 + ], + [ + 77.5175356656476, + 12.9666324216501 + ], + [ + 77.517526397459704, + 12.966626864551101 + ], + [ + 77.517505378487499, + 12.966602391065701 + ], + [ + 77.517402305520903, + 12.966482378395799 + ], + [ + 77.517401889795096, + 12.9664756677253 + ], + [ + 77.517390621512007, + 12.966293889164399 + ], + [ + 77.517407529367503, + 12.966257586226099 + ], + [ + 77.517421366468895, + 12.9662269317633 + ], + [ + 77.517424425860199, + 12.966220154042601 + ], + [ + 77.517452033678794, + 12.9661600311293 + ], + [ + 77.517502624313707, + 12.966014009381199 + ], + [ + 77.517511973247395, + 12.9659870249248 + ], + [ + 77.517523092972297, + 12.965954931300599 + ], + [ + 77.517547085527696, + 12.965934797227099 + ], + [ + 77.517646988394404, + 12.965850961290499 + ], + [ + 77.517662825015293, + 12.965844900182599 + ], + [ + 77.517708250824498, + 12.9658275176284 + ], + [ + 77.517777186084601, + 12.9658011392826 + ], + [ + 77.517845324000504, + 12.9657659235308 + ], + [ + 77.518112486686903, + 12.965627847371699 + ], + [ + 77.518233697552702, + 12.9655652031646 + ], + [ + 77.518356781903194, + 12.965495121374101 + ], + [ + 77.518443327612502, + 12.9654558857321 + ], + [ + 77.518443436866903, + 12.9654554826246 + ], + [ + 77.518474419666106, + 12.9653415200438 + ], + [ + 77.518472593648994, + 12.9653369272412 + ], + [ + 77.5184718101128, + 12.9653349552925 + ], + [ + 77.518467563559994, + 12.9653242720447 + ], + [ + 77.518460654517199, + 12.965306889938599 + ], + [ + 77.518458407888204, + 12.9653012369031 + ], + [ + 77.518426571498694, + 12.9652211422297 + ], + [ + 77.518404787111095, + 12.9651493391094 + ], + [ + 77.518367502257206, + 12.9650264467399 + ], + [ + 77.518361660523794, + 12.9650071931233 + ], + [ + 77.518333678223598, + 12.964858389157699 + ], + [ + 77.518280017785699, + 12.9647233127437 + ], + [ + 77.518265744958398, + 12.964687384705799 + ], + [ + 77.518228778033304, + 12.9646088954274 + ], + [ + 77.518218090203604, + 12.9645862039624 + ], + [ + 77.5181275832729, + 12.964460592061499 + ], + [ + 77.5180530712679, + 12.964322403349501 + ], + [ + 77.5180157453118, + 12.964217733631701 + ], + [ + 77.517934771133497, + 12.964122407217401 + ], + [ + 77.517912031480193, + 12.9640956374613 + ], + [ + 77.517854800522102, + 12.9640509221255 + ], + [ + 77.517853153335295, + 12.9640496352384 + ], + [ + 77.517844767909594, + 12.9640430838929 + ], + [ + 77.517843428061099, + 12.9640420370695 + ], + [ + 77.517822081475302, + 12.964025358387399 + ], + [ + 77.517790933928595, + 12.964001707474701 + ], + [ + 77.517775086763095, + 12.963989673698 + ], + [ + 77.517641821700096, + 12.963906261342499 + ], + [ + 77.517616925795593, + 12.963901592655199 + ], + [ + 77.517561639622897, + 12.963891226050499 + ], + [ + 77.517474939588197, + 12.963800586995299 + ], + [ + 77.517474311775302, + 12.9637935793218 + ], + [ + 77.517470143658699, + 12.963747085695999 + ], + [ + 77.517468819589695, + 12.963732310277299 + ], + [ + 77.5174681503714, + 12.9637248494552 + ], + [ + 77.517467784092801, + 12.9637207638295 + ], + [ + 77.517463914718306, + 12.963677593941499 + ], + [ + 77.517462314689595, + 12.963656813023 + ], + [ + 77.517456183816094, + 12.963577194069201 + ], + [ + 77.517444709499102, + 12.963428192243599 + ], + [ + 77.517448012974299, + 12.9633406181028 + ], + [ + 77.517448800636899, + 12.963319734580701 + ], + [ + 77.517450336224798, + 12.9632848253648 + ], + [ + 77.517451240484405, + 12.963264268679501 + ], + [ + 77.517454166990106, + 12.9631977439432 + ], + [ + 77.517455361479307, + 12.9631705962446 + ], + [ + 77.517466981570806, + 12.9631148879518 + ], + [ + 77.517483923984898, + 12.963033667995701 + ], + [ + 77.517530765730001, + 12.9630223794121 + ], + [ + 77.517562037971899, + 12.9630148427152 + ], + [ + 77.517605379118606, + 12.962916169579699 + ], + [ + 77.517649902226594, + 12.9627632759696 + ], + [ + 77.517672410240195, + 12.9626444687414 + ], + [ + 77.517687626946, + 12.9625641445699 + ], + [ + 77.517722036254796, + 12.9624066064096 + ], + [ + 77.5177289080561, + 12.962375142965 + ], + [ + 77.517793739603405, + 12.9622378638739 + ], + [ + 77.517794432920596, + 12.9622075091421 + ], + [ + 77.517794538946106, + 12.9622028461394 + ], + [ + 77.517795797632701, + 12.962164863244499 + ], + [ + 77.517798955866695, + 12.962069539532999 + ], + [ + 77.517760998052097, + 12.961959229928 + ], + [ + 77.517676011186794, + 12.961862809122 + ], + [ + 77.517667231368407, + 12.961852848208601 + ], + [ + 77.517585409620693, + 12.9618220881685 + ], + [ + 77.517450503277701, + 12.9617713721962 + ], + [ + 77.517386971813096, + 12.961751658262999 + ], + [ + 77.516972639644095, + 12.9618441072952 + ], + [ + 77.516958418563704, + 12.9618472805219 + ], + [ + 77.516875517597896, + 12.961848082165099 + ], + [ + 77.516547719763395, + 12.9618862617085 + ], + [ + 77.5164118882754, + 12.9618909630272 + ], + [ + 77.516190016202401, + 12.961870520862799 + ], + [ + 77.516056923927195, + 12.961804046068499 + ], + [ + 77.516031163977104, + 12.961589717375301 + ], + [ + 77.516025162791706, + 12.961543566640501 + ], + [ + 77.516005571972499, + 12.961392918270301 + ], + [ + 77.515991853561999, + 12.9612874298503 + ], + [ + 77.515986873367893, + 12.9611971195389 + ], + [ + 77.515971436250993, + 12.960917198298301 + ], + [ + 77.515974107478897, + 12.960839246885801 + ], + [ + 77.515923133573594, + 12.960694052587 + ], + [ + 77.515853805464502, + 12.960555811798001 + ], + [ + 77.515772713862901, + 12.960392838818899 + ], + [ + 77.515783603796706, + 12.9603306189594 + ], + [ + 77.515777628296306, + 12.960251621745901 + ], + [ + 77.515776753763802, + 12.960240588703799 + ], + [ + 77.515772353306303, + 12.9601850406842 + ], + [ + 77.515647710217294, + 12.9599852197471 + ], + [ + 77.515519216113404, + 12.959745908435799 + ], + [ + 77.515520081541794, + 12.959730727841199 + ], + [ + 77.515521663515202, + 12.959702969225599 + ], + [ + 77.515461280563301, + 12.95965273164 + ], + [ + 77.515424520540805, + 12.9596224406109 + ], + [ + 77.5154229448992, + 12.9596211186771 + ], + [ + 77.515422764669296, + 12.959620967729499 + ], + [ + 77.515420840651302, + 12.9596193546256 + ], + [ + 77.515420735675903, + 12.959619267098301 + ], + [ + 77.515417812017105, + 12.9596168152805 + ], + [ + 77.515416821678201, + 12.9596159855117 + ], + [ + 77.515416630295107, + 12.9596158247335 + ], + [ + 77.515416185315004, + 12.9596154540867 + ], + [ + 77.515416070098595, + 12.959615355816601 + ], + [ + 77.515413797713293, + 12.9596134524459 + ], + [ + 77.515413707620993, + 12.9596133792306 + ], + [ + 77.515411597755701, + 12.959611606198401 + ], + [ + 77.515411457496697, + 12.959611491004001 + ], + [ + 77.515410587910097, + 12.9596107603553 + ], + [ + 77.515410255319594, + 12.9596104816814 + ], + [ + 77.515404678397203, + 12.959605809435599 + ], + [ + 77.515404488874495, + 12.9596056504465 + ], + [ + 77.515402593647295, + 12.959604060554801 + ], + [ + 77.515402520253005, + 12.9596039989234 + ], + [ + 77.5153567703547, + 12.9595656516308 + ], + [ + 77.515331845251396, + 12.9595489521082 + ], + [ + 77.515271485058193, + 12.9595009729592 + ], + [ + 77.515223800071198, + 12.9594736632443 + ], + [ + 77.515188097030801, + 12.959453216278201 + ], + [ + 77.515172184120203, + 12.9594446830063 + ], + [ + 77.515061903347004, + 12.959385544685899 + ], + [ + 77.514984530486103, + 12.9593061078081 + ], + [ + 77.514980801397797, + 12.9592214420347 + ], + [ + 77.514979882748406, + 12.959129972966 + ], + [ + 77.5149586069669, + 12.959065980408401 + ], + [ + 77.514945449011705, + 12.959026404735599 + ], + [ + 77.514926302811304, + 12.959000085934999 + ], + [ + 77.514881813618501, + 12.9589389295895 + ], + [ + 77.514873046162705, + 12.9589052275231 + ], + [ + 77.514865410336398, + 12.958875875651101 + ], + [ + 77.514863629056094, + 12.9588690281719 + ], + [ + 77.514840491635596, + 12.958780089357001 + ], + [ + 77.514789204118998, + 12.958660872882 + ], + [ + 77.5147588684586, + 12.9585640411591 + ], + [ + 77.514769026544997, + 12.958484782303399 + ], + [ + 77.514789301692602, + 12.9583265830163 + ], + [ + 77.514759289039503, + 12.9582224642598 + ], + [ + 77.514741579265404, + 12.958161027508 + ], + [ + 77.514661336809993, + 12.9580302468441 + ], + [ + 77.514645519845303, + 12.9580044686573 + ], + [ + 77.514640317452702, + 12.9579959899953 + ], + [ + 77.514610514434807, + 12.957948150944199 + ], + [ + 77.514596897988397, + 12.9579262943128 + ], + [ + 77.514525622110099, + 12.9578118839797 + ], + [ + 77.514476796508305, + 12.957708453704701 + ], + [ + 77.514476539373902, + 12.957708441732199 + ], + [ + 77.5143592871636, + 12.9577028123927 + ], + [ + 77.514316195806003, + 12.9577461649122 + ], + [ + 77.514260678614406, + 12.957802018799301 + ], + [ + 77.514226861639699, + 12.9578782924305 + ], + [ + 77.514208882532003, + 12.9579188428582 + ], + [ + 77.514169590481799, + 12.9579621378944 + ], + [ + 77.5141527150938, + 12.9579721452415 + ], + [ + 77.514103771168706, + 12.958001171653899 + ], + [ + 77.514081275117803, + 12.9579749817807 + ], + [ + 77.514040272391597, + 12.957927247178199 + ], + [ + 77.513980173560299, + 12.957905240328 + ], + [ + 77.513907649936996, + 12.9579646672249 + ], + [ + 77.513875357748105, + 12.9580169295046 + ], + [ + 77.513868317639407, + 12.9580422282479 + ], + [ + 77.513854832277005, + 12.958090691376499 + ], + [ + 77.513844793190401, + 12.9581267723743 + ], + [ + 77.513733935997806, + 12.9582102858926 + ], + [ + 77.513700644960494, + 12.9582178325028 + ], + [ + 77.513645471772605, + 12.958230339104 + ], + [ + 77.5135893325795, + 12.9582263591592 + ], + [ + 77.513519292710996, + 12.958221393079899 + ], + [ + 77.513399772645499, + 12.958187536818199 + ], + [ + 77.513257043509, + 12.9581358347997 + ], + [ + 77.513173762742397, + 12.958213435114599 + ], + [ + 77.513099591049894, + 12.9582807832542 + ], + [ + 77.5130703357665, + 12.9583488271789 + ], + [ + 77.512988873913002, + 12.958493042075499 + ], + [ + 77.5129672878424, + 12.9585355905519 + ], + [ + 77.512930721793296, + 12.9586076686362 + ], + [ + 77.512818615373504, + 12.9587130799839 + ], + [ + 77.512810841913804, + 12.9587203892352 + ], + [ + 77.512759610794802, + 12.9587685598293 + ], + [ + 77.512742224692204, + 12.9587810213868 + ], + [ + 77.512657414228698, + 12.9588418071035 + ], + [ + 77.512542387213401, + 12.958924249188399 + ], + [ + 77.512499898980394, + 12.958935952833301 + ], + [ + 77.512447592033695, + 12.9590019604769 + ], + [ + 77.512360575417901, + 12.959108960018099 + ], + [ + 77.512174958419195, + 12.9591789446807 + ], + [ + 77.512163836404198, + 12.9591831375767 + ], + [ + 77.512135009942099, + 12.959207642764699 + ], + [ + 77.512090962312897, + 12.959245086406099 + ], + [ + 77.512076491078403, + 12.9592573887972 + ], + [ + 77.5120239453084, + 12.9593108103955 + ], + [ + 77.512006958339299, + 12.9593280800404 + ], + [ + 77.511918527468694, + 12.959351520511801 + ], + [ + 77.511838772116505, + 12.959380250291 + ], + [ + 77.511834874757895, + 12.9593816539688 + ], + [ + 77.511830001355506, + 12.9593806213225 + ], + [ + 77.511829966271605, + 12.9593806135296 + ], + [ + 77.511814337949204, + 12.9593773003484 + ], + [ + 77.511814172697797, + 12.9593772648998 + ], + [ + 77.5117986680862, + 12.959373978532099 + ], + [ + 77.511798325590803, + 12.9593739059437 + ], + [ + 77.511781350378897, + 12.9593703085083 + ], + [ + 77.511780035773199, + 12.9593700284621 + ], + [ + 77.5117586081128, + 12.959365486471899 + ], + [ + 77.5117476829152, + 12.9593543118354 + ], + [ + 77.511657970361796, + 12.9592625563259 + ], + [ + 77.511607678864294, + 12.9591851156893 + ], + [ + 77.511562610138199, + 12.95899694737 + ], + [ + 77.511561477564996, + 12.9588840222944 + ], + [ + 77.511590428452394, + 12.9587854886764 + ], + [ + 77.511623037365297, + 12.9587072482481 + ], + [ + 77.511656652341799, + 12.958671913791701 + ], + [ + 77.511679003711393, + 12.9586921422824 + ], + [ + 77.511706039563194, + 12.958716611723 + ], + [ + 77.511761502694895, + 12.9587484151692 + ], + [ + 77.511762210566999, + 12.9587488212337 + ], + [ + 77.511814982073503, + 12.9587291129763 + ], + [ + 77.511880768043099, + 12.958686691946101 + ], + [ + 77.511949860910903, + 12.9586295573196 + ], + [ + 77.511986286340203, + 12.9585874195551 + ], + [ + 77.511990208557293, + 12.9585693932694 + ], + [ + 77.511995642730298, + 12.958544413609401 + ], + [ + 77.512001295744099, + 12.958476597482999 + ], + [ + 77.5120075584354, + 12.9584121635532 + ], + [ + 77.511967076537502, + 12.958336887042 + ], + [ + 77.511982638997296, + 12.9582238009148 + ], + [ + 77.511991436212995, + 12.958106312314801 + ], + [ + 77.511994316861404, + 12.9580678365983 + ], + [ + 77.511994047707603, + 12.9580410028972 + ], + [ + 77.511993433367195, + 12.9579797550624 + ], + [ + 77.5119715801968, + 12.957936635534701 + ], + [ + 77.511955841365904, + 12.957905580012 + ], + [ + 77.511952169803706, + 12.9578797142463 + ], + [ + 77.511941592341699, + 12.957805204465201 + ], + [ + 77.511942715189505, + 12.9577829687346 + ], + [ + 77.511943896470797, + 12.9577595786863 + ], + [ + 77.511945246825107, + 12.957732839584301 + ], + [ + 77.511945822539801, + 12.957721447372601 + ], + [ + 77.511945828730703, + 12.9577213298594 + ], + [ + 77.511945996242304, + 12.957718008829 + ], + [ + 77.511946494328697, + 12.957708153295499 + ], + [ + 77.511946894039696, + 12.9577002457275 + ], + [ + 77.511947212972601, + 12.957693928173899 + ], + [ + 77.511947285240396, + 12.9576924999659 + ], + [ + 77.511947356704894, + 12.957691083511 + ], + [ + 77.511941211315502, + 12.9576771161521 + ], + [ + 77.511917271747606, + 12.957622706881001 + ], + [ + 77.511910243103699, + 12.9576067359747 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "194", + "group": "Rajarajeshwari Nagara", + "Corporatio": "West", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "5", + "ward_id": "105", + "ward_name": "105 - Rajarajeshwari Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ರಾಜರಾಜೇಶ್ವರಿ ನಗರ", + "dig_ward_n": "Rajarajeshwari Nagara", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "105" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.513845357322893, + 12.9038100507483 + ], + [ + 77.513217123494599, + 12.9039227329766 + ], + [ + 77.513053330601807, + 12.9039331178083 + ], + [ + 77.5123148877571, + 12.904026338433299 + ], + [ + 77.512403425790097, + 12.9053272085059 + ], + [ + 77.512343213986995, + 12.9063820712891 + ], + [ + 77.512338098766605, + 12.9064716861857 + ], + [ + 77.512263458765503, + 12.9066839623808 + ], + [ + 77.5121162576188, + 12.9069507218361 + ], + [ + 77.512039072544198, + 12.907274179837501 + ], + [ + 77.512017893944304, + 12.907715428693599 + ], + [ + 77.512024485357003, + 12.908009395492501 + ], + [ + 77.512078377253005, + 12.9082813936162 + ], + [ + 77.512168137611198, + 12.9084849173378 + ], + [ + 77.512330245544106, + 12.908612444860401 + ], + [ + 77.512705486383794, + 12.908852666811599 + ], + [ + 77.513014545119603, + 12.909054081003999 + ], + [ + 77.513173105232099, + 12.9091923998357 + ], + [ + 77.513344459012302, + 12.909513467196099 + ], + [ + 77.513365981602703, + 12.909580646925599 + ], + [ + 77.513370701777504, + 12.909595381704399 + ], + [ + 77.513483691386497, + 12.9099934121306 + ], + [ + 77.513502629734106, + 12.9102140689699 + ], + [ + 77.513556006033596, + 12.9108359648092 + ], + [ + 77.513487999965193, + 12.9108300399166 + ], + [ + 77.513456000635998, + 12.9108310398637 + ], + [ + 77.512836000229498, + 12.910857039169199 + ], + [ + 77.512760358404094, + 12.9108859935784 + ], + [ + 77.512783332976497, + 12.910976064667601 + ], + [ + 77.513001703341203, + 12.9118321836379 + ], + [ + 77.512731911523701, + 12.911922191587699 + ], + [ + 77.512538560723698, + 12.911993526162799 + ], + [ + 77.512505073047706, + 12.9120058809422 + ], + [ + 77.512513612826993, + 12.9120722224872 + ], + [ + 77.512531053784201, + 12.912207702916 + ], + [ + 77.512441342799804, + 12.912438086605301 + ], + [ + 77.512074957135695, + 12.913378982454701 + ], + [ + 77.511986664290006, + 12.913605720446199 + ], + [ + 77.511965601970402, + 12.9136598089801 + ], + [ + 77.512006513662797, + 12.914206449944 + ], + [ + 77.5120119648181, + 12.9142792902029 + ], + [ + 77.512016167964603, + 12.914335451385901 + ], + [ + 77.512118235438905, + 12.9149717392099 + ], + [ + 77.512204655329498, + 12.915510474895999 + ], + [ + 77.512273136705701, + 12.915937381911499 + ], + [ + 77.512335156403594, + 12.9161211848447 + ], + [ + 77.512407451068398, + 12.9162040847187 + ], + [ + 77.512452877560804, + 12.9162331511312 + ], + [ + 77.512505145414295, + 12.9162400921038 + ], + [ + 77.512564702887701, + 12.9162480001344 + ], + [ + 77.512528718491495, + 12.9162910127594 + ], + [ + 77.512475538109101, + 12.916384132132301 + ], + [ + 77.512430055270102, + 12.916556232802201 + ], + [ + 77.512337216134, + 12.916943367939 + ], + [ + 77.512302556666299, + 12.9171040708564 + ], + [ + 77.512254319370797, + 12.917173426055401 + ], + [ + 77.512089585486706, + 12.917394107235101 + ], + [ + 77.512019406586901, + 12.9174888664154 + ], + [ + 77.512014610941094, + 12.9174953417862 + ], + [ + 77.511989092735803, + 12.917533985605299 + ], + [ + 77.511932401894995, + 12.9176214918994 + ], + [ + 77.511894805211995, + 12.917678951444101 + ], + [ + 77.511784416390299, + 12.917847658670199 + ], + [ + 77.511647897546695, + 12.918069197647901 + ], + [ + 77.511622243908604, + 12.9181518879024 + ], + [ + 77.511553161464406, + 12.918669800601499 + ], + [ + 77.511496425999297, + 12.9190983748792 + ], + [ + 77.5114975210778, + 12.9192079125412 + ], + [ + 77.511488480888005, + 12.919282537451 + ], + [ + 77.511512657022706, + 12.9195126949016 + ], + [ + 77.511535602996602, + 12.9197349586337 + ], + [ + 77.511565467014506, + 12.9197854926633 + ], + [ + 77.511603095991305, + 12.9198065885552 + ], + [ + 77.511623942042604, + 12.919818810998301 + ], + [ + 77.511709948516199, + 12.919837116776201 + ], + [ + 77.511725474707902, + 12.9198404214447 + ], + [ + 77.511743556788701, + 12.919912347795201 + ], + [ + 77.511797415613799, + 12.920126587392801 + ], + [ + 77.511819447627303, + 12.920314978956 + ], + [ + 77.511803432789605, + 12.9204404922822 + ], + [ + 77.511753897138306, + 12.9205527757789 + ], + [ + 77.511722430891197, + 12.920629875181699 + ], + [ + 77.511621191720906, + 12.9206952228906 + ], + [ + 77.511620945884303, + 12.920695323736201 + ], + [ + 77.511539782667697, + 12.9207287576337 + ], + [ + 77.511662276697194, + 12.921177065435201 + ], + [ + 77.511710685309893, + 12.9213550389471 + ], + [ + 77.511664537249104, + 12.921806098626501 + ], + [ + 77.511656049878397, + 12.921820862004299 + ], + [ + 77.511658826615403, + 12.9218682685131 + ], + [ + 77.511694662000494, + 12.9219978003909 + ], + [ + 77.511706501738203, + 12.9220304379783 + ], + [ + 77.511686175951695, + 12.9222429537057 + ], + [ + 77.511657420599306, + 12.9223942279708 + ], + [ + 77.511647893227007, + 12.922444348597899 + ], + [ + 77.511544861410897, + 12.9230727677419 + ], + [ + 77.511516590208302, + 12.923245200706999 + ], + [ + 77.511443391828294, + 12.923665667429299 + ], + [ + 77.511440374538694, + 12.9236829973939 + ], + [ + 77.511011896966394, + 12.9237539060244 + ], + [ + 77.510425992284596, + 12.9238508670733 + ], + [ + 77.510452211654098, + 12.92411262717 + ], + [ + 77.510500631859401, + 12.924349327703901 + ], + [ + 77.510480429247707, + 12.924516667801401 + ], + [ + 77.510429978344504, + 12.9246526766944 + ], + [ + 77.510362235829803, + 12.9246138005959 + ], + [ + 77.509264226227302, + 12.9247316043525 + ], + [ + 77.508879502068197, + 12.924772879317199 + ], + [ + 77.508763952652004, + 12.924870239976199 + ], + [ + 77.508546265220801, + 12.9250348860363 + ], + [ + 77.508274489842805, + 12.925152241738999 + ], + [ + 77.508084323426104, + 12.925144507751799 + ], + [ + 77.507991438418102, + 12.9251167145334 + ], + [ + 77.507849674906794, + 12.925075048045899 + ], + [ + 77.507412482979205, + 12.925222678342999 + ], + [ + 77.506657391130204, + 12.925375820086099 + ], + [ + 77.506592231496001, + 12.925570008482 + ], + [ + 77.506421703383594, + 12.925576427650199 + ], + [ + 77.506123436092693, + 12.9255208867514 + ], + [ + 77.505982219171202, + 12.925494590537999 + ], + [ + 77.5051540861473, + 12.925540789145201 + ], + [ + 77.5050452289574, + 12.9256878016828 + ], + [ + 77.505013755801698, + 12.925730305099 + ], + [ + 77.504947767590707, + 12.9258194222067 + ], + [ + 77.504794351408506, + 12.926003340069601 + ], + [ + 77.504469070557406, + 12.926405128924801 + ], + [ + 77.504379842712794, + 12.9265512003041 + ], + [ + 77.504300264960506, + 12.9266814736147 + ], + [ + 77.5041762253434, + 12.926884532666101 + ], + [ + 77.504068736035606, + 12.9271317664373 + ], + [ + 77.5034069652217, + 12.927649376922099 + ], + [ + 77.502795468097901, + 12.928127662684499 + ], + [ + 77.502805964540499, + 12.9281411144275 + ], + [ + 77.503014132971202, + 12.928406777937401 + ], + [ + 77.503251104622393, + 12.928732021388599 + ], + [ + 77.503427334037099, + 12.928912158828901 + ], + [ + 77.503572413237407, + 12.9290282210253 + ], + [ + 77.503801840385805, + 12.9291952338915 + ], + [ + 77.503945415694304, + 12.9292509748936 + ], + [ + 77.504349115679105, + 12.929399617565799 + ], + [ + 77.504602483870499, + 12.9294587368104 + ], + [ + 77.505082194312706, + 12.9296496075146 + ], + [ + 77.505313603927505, + 12.929734063578399 + ], + [ + 77.505396185670705, + 12.9297934709648 + ], + [ + 77.505401438233804, + 12.929796561065601 + ], + [ + 77.505506163752898, + 12.929875949765499 + ], + [ + 77.505580485088998, + 12.929995877376101 + ], + [ + 77.505816962067598, + 12.930269515022699 + ], + [ + 77.505947024405799, + 12.9305127484864 + ], + [ + 77.506097356199305, + 12.9307728731628 + ], + [ + 77.506261764458699, + 12.931020577809001 + ], + [ + 77.5063441807646, + 12.931145145604599 + ], + [ + 77.506461361834198, + 12.9312897442731 + ], + [ + 77.506700666128907, + 12.9314466490041 + ], + [ + 77.506819919680396, + 12.931529534129499 + ], + [ + 77.506891392639403, + 12.931579210638899 + ], + [ + 77.507405177000706, + 12.9319405770848 + ], + [ + 77.507672337141599, + 12.932128481205901 + ], + [ + 77.507763989480694, + 12.932191373943301 + ], + [ + 77.508102450557402, + 12.932423627453799 + ], + [ + 77.508293663796096, + 12.932547148198999 + ], + [ + 77.508598086136899, + 12.9327655759375 + ], + [ + 77.508832653501898, + 12.932964346605001 + ], + [ + 77.508963151245396, + 12.9331024846554 + ], + [ + 77.509104378493802, + 12.9332519792759 + ], + [ + 77.509482992695098, + 12.9335781108351 + ], + [ + 77.509794088122106, + 12.933830353449199 + ], + [ + 77.509930436610304, + 12.9339363308081 + ], + [ + 77.509965246123798, + 12.933963100522 + ], + [ + 77.510019209920799, + 12.93400549697 + ], + [ + 77.510357530962807, + 12.93427441713 + ], + [ + 77.510938335372103, + 12.934727346970099 + ], + [ + 77.511081073358199, + 12.934838908842 + ], + [ + 77.511164621293105, + 12.9349036073642 + ], + [ + 77.511610972369795, + 12.9350946885881 + ], + [ + 77.512054050068599, + 12.9352462728119 + ], + [ + 77.512345778386006, + 12.935346234357599 + ], + [ + 77.512859615548393, + 12.9354926178996 + ], + [ + 77.5129456464188, + 12.935517764183601 + ], + [ + 77.513077887059794, + 12.9355582761681 + ], + [ + 77.513325618237602, + 12.9356338145479 + ], + [ + 77.513327265977196, + 12.9356258931453 + ], + [ + 77.513832052075699, + 12.935788172835601 + ], + [ + 77.514120259639498, + 12.9358813899363 + ], + [ + 77.514431368581597, + 12.935961962903701 + ], + [ + 77.514807108133596, + 12.936057723208901 + ], + [ + 77.514974914532701, + 12.9360854681813 + ], + [ + 77.515163353733598, + 12.9361145662211 + ], + [ + 77.515759655173497, + 12.9362066453784 + ], + [ + 77.515921095618694, + 12.936231063046099 + ], + [ + 77.515977412556296, + 12.9362392184463 + ], + [ + 77.516381747716594, + 12.9362977676795 + ], + [ + 77.516698262659503, + 12.9363432754621 + ], + [ + 77.517127365665004, + 12.936363979546201 + ], + [ + 77.517625523029295, + 12.9363817574897 + ], + [ + 77.517688222715194, + 12.9363766346936 + ], + [ + 77.517740628833096, + 12.9363783874118 + ], + [ + 77.518112020094904, + 12.9363849663374 + ], + [ + 77.518244970748796, + 12.9363814228088 + ], + [ + 77.518338768079303, + 12.9363852792314 + ], + [ + 77.518294526687697, + 12.935984628697 + ], + [ + 77.517936670131604, + 12.9351348445265 + ], + [ + 77.517823822351204, + 12.9347365637369 + ], + [ + 77.518078237246996, + 12.9344075781692 + ], + [ + 77.518028272382693, + 12.933674760160301 + ], + [ + 77.517672966681502, + 12.933030768576799 + ], + [ + 77.517549043953096, + 12.932611692010701 + ], + [ + 77.517691370087206, + 12.932223060795801 + ], + [ + 77.518766642043303, + 12.9317150271517 + ], + [ + 77.519240770767794, + 12.931255075423 + ], + [ + 77.519048388361, + 12.930873951936899 + ], + [ + 77.520904109801904, + 12.929925238835301 + ], + [ + 77.520034516273398, + 12.9265822100175 + ], + [ + 77.521874488635007, + 12.9259361365975 + ], + [ + 77.522408178741799, + 12.9256919313192 + ], + [ + 77.522805697322596, + 12.925477727139 + ], + [ + 77.523017235900795, + 12.925351985340599 + ], + [ + 77.5231926962675, + 12.9250919068137 + ], + [ + 77.522998388462099, + 12.924117591961 + ], + [ + 77.523320384253907, + 12.924017662232499 + ], + [ + 77.523102109908706, + 12.9222181475645 + ], + [ + 77.524086867630501, + 12.922079639617399 + ], + [ + 77.523990587716, + 12.921294198209701 + ], + [ + 77.524705521323796, + 12.921291801305401 + ], + [ + 77.524687478456102, + 12.920915676910701 + ], + [ + 77.524623634462898, + 12.9205936811189 + ], + [ + 77.524564888960299, + 12.9192267137303 + ], + [ + 77.524031126627307, + 12.919225024609 + ], + [ + 77.524090675910998, + 12.9188754449541 + ], + [ + 77.524110106691595, + 12.9184868293433 + ], + [ + 77.523792968594904, + 12.917798424547099 + ], + [ + 77.523406434853399, + 12.9178275707179 + ], + [ + 77.523224618264095, + 12.9171322263572 + ], + [ + 77.523540368447897, + 12.9170128658481 + ], + [ + 77.523227394089901, + 12.915988586131199 + ], + [ + 77.522960914814007, + 12.914756119479801 + ], + [ + 77.520695840968202, + 12.914878255814701 + ], + [ + 77.520831856431897, + 12.9130878481793 + ], + [ + 77.520980363111804, + 12.911253027331201 + ], + [ + 77.521075216830397, + 12.908207057482199 + ], + [ + 77.521066296884399, + 12.9053913148954 + ], + [ + 77.521093751824296, + 12.9038406580092 + ], + [ + 77.521311075925198, + 12.9028500225523 + ], + [ + 77.520299960608298, + 12.902609093345101 + ], + [ + 77.519817666040794, + 12.9026304235909 + ], + [ + 77.518976027156398, + 12.9027772365973 + ], + [ + 77.517420918081598, + 12.903091297842501 + ], + [ + 77.517186160309393, + 12.903138707777901 + ], + [ + 77.515357682753603, + 12.903538787417901 + ], + [ + 77.513845357322893, + 12.9038100507483 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "195", + "group": "Vidyaranya Nagara", + "Corporatio": "West", + "ac_no": "167", + "ac": "Vijayanagar", + "corporat_1": "5", + "ward_id": "68", + "ward_name": "68 - Vidyaranya Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ವಿಜಯನಗರ", + "ward_name_": "ವಿದ್ಯಾರಣ್ಯ ನಗರ", + "dig_ward_n": "Vidyaranya Nagara", + "Assembly": "167 - Vijayanagar", + "Slno": "68" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.554575775353698, + 12.968909653223101 + ], + [ + 77.554573047465496, + 12.9689089289725 + ], + [ + 77.554501230358099, + 12.9688898655782 + ], + [ + 77.554496926538107, + 12.968888971854801 + ], + [ + 77.554485652780301, + 12.968886630566001 + ], + [ + 77.554467959229399, + 12.9688817765498 + ], + [ + 77.554418098939806, + 12.9688680971739 + ], + [ + 77.554165530076304, + 12.9688006998219 + ], + [ + 77.554119687247507, + 12.968788467131301 + ], + [ + 77.554057883304495, + 12.9687719750188 + ], + [ + 77.553891182570595, + 12.968727492630499 + ], + [ + 77.553876677256, + 12.9687236218571 + ], + [ + 77.553873592930103, + 12.968722799269001 + ], + [ + 77.553806654005498, + 12.9687049372606 + ], + [ + 77.553596583347797, + 12.9686488806448 + ], + [ + 77.553595925656893, + 12.968648705505 + ], + [ + 77.553579496224202, + 12.968644321461801 + ], + [ + 77.553579263447205, + 12.968644259601 + ], + [ + 77.553569731502407, + 12.9686417168656 + ], + [ + 77.553529850449905, + 12.9686310743571 + ], + [ + 77.553508754343795, + 12.968625445069399 + ], + [ + 77.553491484324297, + 12.968620837081501 + ], + [ + 77.553455612826397, + 12.9686106882467 + ], + [ + 77.553337406051895, + 12.968577244089399 + ], + [ + 77.553331857227704, + 12.9685756741271 + ], + [ + 77.553222135395799, + 12.9685446311515 + ], + [ + 77.553218835299603, + 12.968543697739801 + ], + [ + 77.553218344718999, + 12.9685435589042 + ], + [ + 77.5532110737837, + 12.968541501709099 + ], + [ + 77.553165277991098, + 12.9685285456023 + ], + [ + 77.553153285106902, + 12.968525152451599 + ], + [ + 77.553153261084006, + 12.9685251454596 + ], + [ + 77.553142425829705, + 12.9685220806487 + ], + [ + 77.553142278007996, + 12.968522038733299 + ], + [ + 77.553059973263899, + 12.9684987529573 + ], + [ + 77.553035991193397, + 12.9684919675116 + ], + [ + 77.553034557337696, + 12.9684915623768 + ], + [ + 77.552980591683806, + 12.9684762940442 + ], + [ + 77.552858587857202, + 12.9684417756503 + ], + [ + 77.552819650045095, + 12.9684307596706 + ], + [ + 77.552777787231406, + 12.968418915904801 + ], + [ + 77.552749685731897, + 12.968411158975099 + ], + [ + 77.552726301224098, + 12.9684047037219 + ], + [ + 77.552699590058594, + 12.9683973297634 + ], + [ + 77.552698616359294, + 12.9683970610514 + ], + [ + 77.552695185319294, + 12.9683961144619 + ], + [ + 77.5526532571064, + 12.9683845414506 + ], + [ + 77.552652918069199, + 12.968384448106899 + ], + [ + 77.552646496644996, + 12.968382676183801 + ], + [ + 77.552370318862401, + 12.9683064432254 + ], + [ + 77.5523498157457, + 12.9683007836228 + ], + [ + 77.552329388382603, + 12.9682951449582 + ], + [ + 77.552270339159094, + 12.968278845795799 + ], + [ + 77.552154861574905, + 12.9682469697822 + ], + [ + 77.5521548320162, + 12.968246961941 + ], + [ + 77.552149593997697, + 12.9682455162898 + ], + [ + 77.552128811410995, + 12.9682399127138 + ], + [ + 77.552128746748295, + 12.9682398952789 + ], + [ + 77.552128535203707, + 12.9682398377256 + ], + [ + 77.552128430822293, + 12.968239809838799 + ], + [ + 77.552104023432406, + 12.9682332290389 + ], + [ + 77.552072806142206, + 12.968224812349 + ], + [ + 77.552044422416799, + 12.968214400118599 + ], + [ + 77.552017514467195, + 12.9682045290372 + ], + [ + 77.552016559283302, + 12.9682041788293 + ], + [ + 77.551943440889403, + 12.9681773576475 + ], + [ + 77.551922881742598, + 12.968169815742201 + ], + [ + 77.551900159796205, + 12.9681614810307 + ], + [ + 77.551865910902293, + 12.968148918248399 + ], + [ + 77.551808772628206, + 12.968128042258799 + ], + [ + 77.551769216715797, + 12.968113589976401 + ], + [ + 77.551694048781997, + 12.9680861270595 + ], + [ + 77.551591981249402, + 12.9680488362149 + ], + [ + 77.5515652144407, + 12.968031302336 + ], + [ + 77.551564046829, + 12.9680305368099 + ], + [ + 77.551439649227504, + 12.967949052075401 + ], + [ + 77.551368835319806, + 12.9679026662153 + ], + [ + 77.551353258625298, + 12.9678924634861 + ], + [ + 77.551301556708594, + 12.967858596471601 + ], + [ + 77.551225077333896, + 12.9678084995861 + ], + [ + 77.551164621062497, + 12.967748621631699 + ], + [ + 77.551013184656497, + 12.9678235168281 + ], + [ + 77.550876268032397, + 12.967915398652201 + ], + [ + 77.550759927448894, + 12.9680064669316 + ], + [ + 77.550652261961105, + 12.9680608663132 + ], + [ + 77.550541479442202, + 12.968114175194501 + ], + [ + 77.550436527582093, + 12.9681624863682 + ], + [ + 77.550208298934095, + 12.968297424474001 + ], + [ + 77.550163319565499, + 12.9682374519825 + ], + [ + 77.550029038247203, + 12.968043137480599 + ], + [ + 77.549918509986497, + 12.9679082369366 + ], + [ + 77.549800741373701, + 12.9677645009409 + ], + [ + 77.549577929433099, + 12.9674260498559 + ], + [ + 77.549337173359405, + 12.967120642299401 + ], + [ + 77.548873911821502, + 12.967481714735801 + ], + [ + 77.548677334499303, + 12.9676418918243 + ], + [ + 77.548525879607595, + 12.9677265580831 + ], + [ + 77.548354565882093, + 12.967812230359 + ], + [ + 77.548119673623901, + 12.9679863171745 + ], + [ + 77.548097225641101, + 12.968004797631499 + ], + [ + 77.548226378372107, + 12.9681865407924 + ], + [ + 77.548227059904605, + 12.9682534654682 + ], + [ + 77.548489994898205, + 12.968606584687 + ], + [ + 77.548516371159096, + 12.9686570549108 + ], + [ + 77.548457016357204, + 12.9686823885663 + ], + [ + 77.548428892273805, + 12.968694391938 + ], + [ + 77.548419406590796, + 12.9686591241725 + ], + [ + 77.548317083075005, + 12.968718481341099 + ], + [ + 77.548092186231997, + 12.9687851174427 + ], + [ + 77.548042209155795, + 12.9688017764681 + ], + [ + 77.547938090247001, + 12.968840925177799 + ], + [ + 77.5476224017156, + 12.968919222597201 + ], + [ + 77.547304214330396, + 12.9690108472369 + ], + [ + 77.546629960365394, + 12.9692071063412 + ], + [ + 77.546796547776395, + 12.969667667474701 + ], + [ + 77.546212647480303, + 12.9698907422852 + ], + [ + 77.546429615496606, + 12.970386882735401 + ], + [ + 77.5462664952274, + 12.9704569229622 + ], + [ + 77.546307875187395, + 12.9705619419358 + ], + [ + 77.546536744737494, + 12.971107833043 + ], + [ + 77.5470013043508, + 12.9722152958447 + ], + [ + 77.547022916601307, + 12.9722634475776 + ], + [ + 77.547149475774901, + 12.972418066736299 + ], + [ + 77.547151567441404, + 12.9724227271026 + ], + [ + 77.547276055152295, + 12.972386039606601 + ], + [ + 77.547281568010902, + 12.972386060600799 + ], + [ + 77.547495432685906, + 12.9723868795742 + ], + [ + 77.548216752846898, + 12.972467408664601 + ], + [ + 77.5482335936711, + 12.9724692891046 + ], + [ + 77.548532605034495, + 12.9725111792148 + ], + [ + 77.548546222634002, + 12.97251271357 + ], + [ + 77.548654616487099, + 12.972524924177399 + ], + [ + 77.548950368577906, + 12.9725459296334 + ], + [ + 77.549228024280097, + 12.972585040449299 + ], + [ + 77.549729352237307, + 12.9727474555939 + ], + [ + 77.549784326737594, + 12.9727812011617 + ], + [ + 77.550027548508496, + 12.9725787940031 + ], + [ + 77.550292427012394, + 12.972429695725699 + ], + [ + 77.550754714967397, + 12.9721973023213 + ], + [ + 77.550984609517997, + 12.9721006799739 + ], + [ + 77.551190348481796, + 12.972019467225101 + ], + [ + 77.551404000482606, + 12.971951165220901 + ], + [ + 77.551417791637803, + 12.9719465072025 + ], + [ + 77.551664714230199, + 12.971862039435001 + ], + [ + 77.5518954417321, + 12.9717937374309 + ], + [ + 77.552183176515896, + 12.971688124559 + ], + [ + 77.552620942288499, + 12.971476382996901 + ], + [ + 77.552865803140904, + 12.971344309675199 + ], + [ + 77.552768892101696, + 12.9712368351155 + ], + [ + 77.552649488496101, + 12.9711399407476 + ], + [ + 77.552571345462894, + 12.9710765284318 + ], + [ + 77.552545575223107, + 12.9710461051971 + ], + [ + 77.552417113891096, + 12.9708944495215 + ], + [ + 77.552410797397897, + 12.9708877996881 + ], + [ + 77.552400963669299, + 12.9708774467477 + ], + [ + 77.552272036693907, + 12.9707417145316 + ], + [ + 77.552232279997597, + 12.9706998596624 + ], + [ + 77.552042548024303, + 12.970488899966 + ], + [ + 77.552007703788803, + 12.970450158064301 + ], + [ + 77.551869917117202, + 12.9702777723059 + ], + [ + 77.5518180800251, + 12.9702129189769 + ], + [ + 77.551679249445996, + 12.970075536202501 + ], + [ + 77.551668551136501, + 12.970064949576001 + ], + [ + 77.551581810820196, + 12.969972528803799 + ], + [ + 77.551556131935797, + 12.9699451681716 + ], + [ + 77.551630171051499, + 12.9699143494071 + ], + [ + 77.551969040942097, + 12.9697372885487 + ], + [ + 77.552031929878893, + 12.969704428835501 + ], + [ + 77.552425692309797, + 12.969502505962 + ], + [ + 77.552530585449105, + 12.9694737630589 + ], + [ + 77.552609895106301, + 12.969452029049901 + ], + [ + 77.552667244479906, + 12.969436314347501 + ], + [ + 77.552965411801097, + 12.9693546083146 + ], + [ + 77.553296092760803, + 12.9693038263429 + ], + [ + 77.553420593681494, + 12.969280134347001 + ], + [ + 77.553691148693403, + 12.969228650115801 + ], + [ + 77.554077880667407, + 12.9691297859081 + ], + [ + 77.554089682242605, + 12.9691258953819 + ], + [ + 77.554375691862404, + 12.9690811620974 + ], + [ + 77.554390242749804, + 12.969071627749599 + ], + [ + 77.554440118947895, + 12.9690389468071 + ], + [ + 77.554559904576195, + 12.968940525714901 + ], + [ + 77.554575775353698, + 12.968909653223101 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "196", + "group": "Srigandada Kaval", + "Corporatio": "West", + "ac_no": "154", + "ac": "Rajarajeshwarinagar", + "corporat_1": "5", + "ward_id": "45", + "ward_name": "45 - Srigandada Kaval", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ರಾಜರಾಜೇಶ್ವರಿನಗರ", + "ward_name_": "ಶ್ರೀಗಂಧದ ಕಾವಲ್", + "dig_ward_n": "Srigandada Kaval", + "Assembly": "154 - Rajarajeshwarinagar", + "Slno": "45" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.507424907503307, + 12.9753631317024 + ], + [ + 77.506936374408795, + 12.9752902978022 + ], + [ + 77.506725369510704, + 12.975314658096901 + ], + [ + 77.505888059764104, + 12.9753735262651 + ], + [ + 77.505207945651705, + 12.975308364900499 + ], + [ + 77.504878731730003, + 12.975293607505201 + ], + [ + 77.504777479882094, + 12.975330145153499 + ], + [ + 77.504362396674495, + 12.9754799305153 + ], + [ + 77.503980412176602, + 12.9745901570335 + ], + [ + 77.503720287500201, + 12.974129026925301 + ], + [ + 77.503472510789393, + 12.974305100915499 + ], + [ + 77.503238720901905, + 12.973908066551299 + ], + [ + 77.502664777591306, + 12.9743385085137 + ], + [ + 77.501823034811693, + 12.9747943295658 + ], + [ + 77.501925078431199, + 12.9750519481283 + ], + [ + 77.502053124801293, + 12.975302121651101 + ], + [ + 77.502607427171199, + 12.977469884836299 + ], + [ + 77.501505961673999, + 12.977883220641401 + ], + [ + 77.501743646111805, + 12.9787080235612 + ], + [ + 77.502052114524503, + 12.9798113577487 + ], + [ + 77.497976005200101, + 12.9813799728538 + ], + [ + 77.496995907002997, + 12.981773844091901 + ], + [ + 77.4964257096875, + 12.9804891826701 + ], + [ + 77.495751388796606, + 12.9791734907188 + ], + [ + 77.493361943751907, + 12.979993040946701 + ], + [ + 77.493891749855507, + 12.9815092285106 + ], + [ + 77.493938155808394, + 12.981642031096101 + ], + [ + 77.494319171227303, + 12.9822595294554 + ], + [ + 77.494566443477694, + 12.982861370084301 + ], + [ + 77.494608000035697, + 12.9829671809219 + ], + [ + 77.494648949733602, + 12.983071446266599 + ], + [ + 77.494747027599004, + 12.983321166547301 + ], + [ + 77.494990660717406, + 12.9839414943305 + ], + [ + 77.495150457009402, + 12.9843747679749 + ], + [ + 77.495422944411501, + 12.984906343895499 + ], + [ + 77.495627302371204, + 12.9853041785504 + ], + [ + 77.495880571879297, + 12.986448056915901 + ], + [ + 77.495898070488096, + 12.9864704762318 + ], + [ + 77.496272710738594, + 12.9869671880884 + ], + [ + 77.496542303677998, + 12.987323737349 + ], + [ + 77.496786225024707, + 12.987646651813799 + ], + [ + 77.497547673538904, + 12.988710231339301 + ], + [ + 77.497559279231595, + 12.9887132512774 + ], + [ + 77.497892967115206, + 12.988799263134201 + ], + [ + 77.498037788342202, + 12.9888218674211 + ], + [ + 77.498492763262206, + 12.988892879638801 + ], + [ + 77.498552688676099, + 12.988896820763101 + ], + [ + 77.498755936003704, + 12.9888948658764 + ], + [ + 77.499242451460503, + 12.9888890564287 + ], + [ + 77.499358215357503, + 12.9888913307956 + ], + [ + 77.499759652075497, + 12.9888998913114 + ], + [ + 77.499828834990694, + 12.988908260524299 + ], + [ + 77.499926840355897, + 12.988919740456801 + ], + [ + 77.500074046174603, + 12.9889567223003 + ], + [ + 77.500205266053499, + 12.989007410308099 + ], + [ + 77.500498944520999, + 12.9891231671743 + ], + [ + 77.500916426126494, + 12.9892964588522 + ], + [ + 77.500922206450596, + 12.9892986619359 + ], + [ + 77.501227480042502, + 12.9894222117887 + ], + [ + 77.501319676979506, + 12.9894595815451 + ], + [ + 77.501562242627003, + 12.989557900276299 + ], + [ + 77.501618329959996, + 12.9895810768316 + ], + [ + 77.501780687271093, + 12.9896359815294 + ], + [ + 77.502031465730298, + 12.989722786064499 + ], + [ + 77.502331930391605, + 12.989826052176401 + ], + [ + 77.502348684339296, + 12.989831537609 + ], + [ + 77.502485953363902, + 12.989880008488401 + ], + [ + 77.502501242460497, + 12.989885406830799 + ], + [ + 77.502530708650795, + 12.9898952872427 + ], + [ + 77.502871162144203, + 12.9900241427891 + ], + [ + 77.503206173693599, + 12.990127074888299 + ], + [ + 77.503375670158405, + 12.9901652655468 + ], + [ + 77.503542641135994, + 12.9902028877357 + ], + [ + 77.503822919213306, + 12.990245360817401 + ], + [ + 77.504207027197495, + 12.9902484342531 + ], + [ + 77.504243842650297, + 12.990244691236899 + ], + [ + 77.504471655908702, + 12.9902232956715 + ], + [ + 77.504784128470206, + 12.9901457447809 + ], + [ + 77.505221945408806, + 12.989934849259299 + ], + [ + 77.505555796258093, + 12.989749801917799 + ], + [ + 77.505724866933804, + 12.9896702450917 + ], + [ + 77.505703036801606, + 12.9897901680845 + ], + [ + 77.505678495799003, + 12.989869460178999 + ], + [ + 77.505577301769307, + 12.990056781094699 + ], + [ + 77.505483581310401, + 12.990242900545899 + ], + [ + 77.505447896677097, + 12.9903019715957 + ], + [ + 77.505367675586797, + 12.990398741175699 + ], + [ + 77.5052641422471, + 12.9905250990161 + ], + [ + 77.5052459327229, + 12.990546732536 + ], + [ + 77.505093956895095, + 12.9907232495123 + ], + [ + 77.505008238285598, + 12.990846047392701 + ], + [ + 77.504913635637607, + 12.9910016824607 + ], + [ + 77.504799694379699, + 12.9911812206298 + ], + [ + 77.504741127479306, + 12.991312791533 + ], + [ + 77.504705500921304, + 12.991435106307099 + ], + [ + 77.504697158728604, + 12.991464550194401 + ], + [ + 77.504696140556206, + 12.9917649705969 + ], + [ + 77.504695294764304, + 12.9917954715566 + ], + [ + 77.504694482946206, + 12.991829360278 + ], + [ + 77.505145703983601, + 12.9919786018355 + ], + [ + 77.505208403344, + 12.9919940180952 + ], + [ + 77.505226842650501, + 12.9928580562663 + ], + [ + 77.505277794017104, + 12.993293432831001 + ], + [ + 77.505842266459993, + 12.9932427677081 + ], + [ + 77.506453285724007, + 12.993127418471 + ], + [ + 77.506526961228602, + 12.9936455124988 + ], + [ + 77.506463701385897, + 12.9936515236151 + ], + [ + 77.506481734734706, + 12.993778902031501 + ], + [ + 77.5065163702142, + 12.994078312870901 + ], + [ + 77.506616352830704, + 12.9940692353101 + ], + [ + 77.506646611066898, + 12.994390318430099 + ], + [ + 77.506740911405501, + 12.9943780016345 + ], + [ + 77.5067730047097, + 12.9945781625057 + ], + [ + 77.506760283515803, + 12.9947823350407 + ], + [ + 77.506759861235494, + 12.994898462128299 + ], + [ + 77.506758172114203, + 12.995151830319699 + ], + [ + 77.5067615503567, + 12.9953781725706 + ], + [ + 77.506986025663196, + 12.995341227322299 + ], + [ + 77.507062698510197, + 12.9953297301101 + ], + [ + 77.507282644270205, + 12.995279358975999 + ], + [ + 77.507281799709602, + 12.995214327806901 + ], + [ + 77.507258152011701, + 12.9950935556357 + ], + [ + 77.508057112275793, + 12.9948047416256 + ], + [ + 77.508421833602398, + 12.9947115755027 + ], + [ + 77.508385344223797, + 12.9942338310398 + ], + [ + 77.508364526447195, + 12.9937507042217 + ], + [ + 77.508313518774898, + 12.993393074739499 + ], + [ + 77.508300983505904, + 12.9932649664525 + ], + [ + 77.508270054463907, + 12.992948864526699 + ], + [ + 77.508241220594002, + 12.9926958479851 + ], + [ + 77.508842547768097, + 12.9928504025818 + ], + [ + 77.508933760317007, + 12.9928706720371 + ], + [ + 77.509131387506201, + 12.992912900068999 + ], + [ + 77.509229356540203, + 12.992943304252 + ], + [ + 77.509518196278293, + 12.9930091799817 + ], + [ + 77.509791173881496, + 12.993069786165901 + ], + [ + 77.509965733269098, + 12.9931079492577 + ], + [ + 77.510044093307997, + 12.9931250800539 + ], + [ + 77.510364524306198, + 12.993195132771399 + ], + [ + 77.510514777830906, + 12.993232143990101 + ], + [ + 77.510502109421296, + 12.9928461797787 + ], + [ + 77.510452755408593, + 12.9912294795769 + ], + [ + 77.509556563833499, + 12.9912885824303 + ], + [ + 77.508670353547799, + 12.991469488405899 + ], + [ + 77.508551276196698, + 12.9909885991036 + ], + [ + 77.510471398482395, + 12.9906256421778 + ], + [ + 77.510177803719898, + 12.9881302241741 + ], + [ + 77.510438920745599, + 12.9882008654751 + ], + [ + 77.510751726996702, + 12.988329240287101 + ], + [ + 77.510847593135296, + 12.9883582824289 + ], + [ + 77.510915771482303, + 12.988361332297 + ], + [ + 77.510963609210606, + 12.9883627455721 + ], + [ + 77.5110316168129, + 12.988354674234801 + ], + [ + 77.511166058282996, + 12.988321838542699 + ], + [ + 77.511279839107402, + 12.9882893533863 + ], + [ + 77.511284097654197, + 12.988287544097799 + ], + [ + 77.511516415075704, + 12.9881888547327 + ], + [ + 77.511745894998498, + 12.988084885545399 + ], + [ + 77.511926142892506, + 12.988019981906699 + ], + [ + 77.512027903234895, + 12.987980181511899 + ], + [ + 77.512143865928905, + 12.9879439010636 + ], + [ + 77.512283882907298, + 12.987901464708701 + ], + [ + 77.512059454078994, + 12.987087729989099 + ], + [ + 77.511975266134598, + 12.986839500704299 + ], + [ + 77.511875055785197, + 12.9865575274534 + ], + [ + 77.511843839034995, + 12.9864831868188 + ], + [ + 77.511828608236002, + 12.986446916335 + ], + [ + 77.511718926672998, + 12.986225008850701 + ], + [ + 77.511505141074096, + 12.985840246715499 + ], + [ + 77.511446812454693, + 12.9857489484962 + ], + [ + 77.511247713891706, + 12.9854373086843 + ], + [ + 77.511201202780697, + 12.9853645061865 + ], + [ + 77.510902264507706, + 12.9850018929721 + ], + [ + 77.510879468570195, + 12.984968680610701 + ], + [ + 77.510854323007507, + 12.984932044146699 + ], + [ + 77.510819465749094, + 12.9848328428847 + ], + [ + 77.510819844416602, + 12.984832752491201 + ], + [ + 77.510810346692907, + 12.9848068897891 + ], + [ + 77.510766772844093, + 12.9846732794052 + ], + [ + 77.509418342274898, + 12.9841298227738 + ], + [ + 77.509160577632599, + 12.9840380457462 + ], + [ + 77.508941361362801, + 12.984059370903701 + ], + [ + 77.5084274727284, + 12.9844549618374 + ], + [ + 77.508394086069501, + 12.984484184904501 + ], + [ + 77.508030555499303, + 12.9845059323396 + ], + [ + 77.507819784835803, + 12.984284868594001 + ], + [ + 77.507704080028503, + 12.9840830186016 + ], + [ + 77.507623846767899, + 12.983793334302799 + ], + [ + 77.507919442991096, + 12.9836987435114 + ], + [ + 77.508234939173605, + 12.9835786047593 + ], + [ + 77.508644118989594, + 12.9834551415071 + ], + [ + 77.508954874333, + 12.983374432226499 + ], + [ + 77.509106895247797, + 12.983374432226499 + ], + [ + 77.509198107796706, + 12.9833288259521 + ], + [ + 77.508968387303199, + 12.9822984619741 + ], + [ + 77.509275807375403, + 12.982257923063401 + ], + [ + 77.5090541629923, + 12.981308425765 + ], + [ + 77.508943050484106, + 12.9809032478005 + ], + [ + 77.509037641275498, + 12.9808035896453 + ], + [ + 77.508868729147906, + 12.9802664490797 + ], + [ + 77.5090220696881, + 12.980224009905999 + ], + [ + 77.508765797979095, + 12.9791921537728 + ], + [ + 77.508701164686101, + 12.9789453625562 + ], + [ + 77.5086090795362, + 12.978576272101799 + ], + [ + 77.508084607380198, + 12.9787173137283 + ], + [ + 77.5077653634591, + 12.9788026143527 + ], + [ + 77.507669928107106, + 12.978490971477299 + ], + [ + 77.508543415807793, + 12.978277254137 + ], + [ + 77.5082204035226, + 12.9769857223699 + ], + [ + 77.508173932695499, + 12.9767999127669 + ], + [ + 77.507835883431795, + 12.9757827347239 + ], + [ + 77.507723173368205, + 12.9758314262849 + ], + [ + 77.507616690736995, + 12.9755371678309 + ], + [ + 77.507559442010503, + 12.9755577773724 + ], + [ + 77.507523947800095, + 12.975430685199701 + ], + [ + 77.507503338258502, + 12.975364276677 + ], + [ + 77.507424907503307, + 12.9753631317024 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "197", + "group": "Basavanna Nagara", + "Corporatio": "West", + "ac_no": "167", + "ac": "Vijayanagar", + "corporat_1": "5", + "ward_id": "71", + "ward_name": "71 - Krishnadevaraya ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ವಿಜಯನಗರ", + "ward_name_": "ಕೃಷ್ಣದೇವರಾಯ ವಾರ್ಡ್", + "dig_ward_n": "Basavanna Nagara", + "Assembly": "167 - Vijayanagar", + "Slno": "71" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.537916292843207, + 12.9542876165668 + ], + [ + 77.537773308931605, + 12.954312268937599 + ], + [ + 77.537799953855995, + 12.954592336693 + ], + [ + 77.537818145768, + 12.955233054234499 + ], + [ + 77.538050019446104, + 12.9552031924087 + ], + [ + 77.538090776334599, + 12.9557458899602 + ], + [ + 77.537899635085395, + 12.9557511715012 + ], + [ + 77.537932869255798, + 12.9560763030151 + ], + [ + 77.537448912938302, + 12.9562369764802 + ], + [ + 77.537700856730098, + 12.9565396380293 + ], + [ + 77.537711249193805, + 12.956553521581201 + ], + [ + 77.537915810606293, + 12.9568267866795 + ], + [ + 77.538075203692202, + 12.9570454550677 + ], + [ + 77.538246391893196, + 12.9572803042311 + ], + [ + 77.538261843057299, + 12.957301501724499 + ], + [ + 77.538034428363105, + 12.9574693954353 + ], + [ + 77.537976377770306, + 12.957512252809099 + ], + [ + 77.537632664830795, + 12.9577474754434 + ], + [ + 77.53733065246, + 12.957966895269999 + ], + [ + 77.537404718593805, + 12.9580516490931 + ], + [ + 77.537486958401999, + 12.9582301306926 + ], + [ + 77.537487249026995, + 12.958258813087699 + ], + [ + 77.537600572133201, + 12.9582577085582 + ], + [ + 77.537720916219797, + 12.9582278503203 + ], + [ + 77.537874160805401, + 12.958197671321001 + ], + [ + 77.537918027880707, + 12.958197243702999 + ], + [ + 77.538170227432801, + 12.9581912001343 + ], + [ + 77.538252481440196, + 12.958875975683901 + ], + [ + 77.5382831948274, + 12.958922698292 + ], + [ + 77.538270569991298, + 12.9589346975132 + ], + [ + 77.538241531136407, + 12.9589622979961 + ], + [ + 77.538089485377895, + 12.959110792331501 + ], + [ + 77.538053875455603, + 12.9591417364653 + ], + [ + 77.537676343231993, + 12.959469800200701 + ], + [ + 77.537585933773201, + 12.959567493907199 + ], + [ + 77.537455710153196, + 12.9597007062732 + ], + [ + 77.537450129393207, + 12.9597064145968 + ], + [ + 77.537263890133403, + 12.959896928089799 + ], + [ + 77.537179053484294, + 12.959952429463399 + ], + [ + 77.537118887432896, + 12.9596371955235 + ], + [ + 77.537099459722299, + 12.959523839227501 + ], + [ + 77.536762071758105, + 12.9596018280415 + ], + [ + 77.536652584495897, + 12.959620823436699 + ], + [ + 77.536623775479796, + 12.9596280364997 + ], + [ + 77.536579864834906, + 12.9596655681654 + ], + [ + 77.536862133543494, + 12.960033475121699 + ], + [ + 77.536925705183293, + 12.960149509179001 + ], + [ + 77.536931980402002, + 12.9601915200024 + ], + [ + 77.536944220863006, + 12.960244946783201 + ], + [ + 77.537140422331404, + 12.9607498081791 + ], + [ + 77.537258360820005, + 12.961093042163499 + ], + [ + 77.537258960709195, + 12.961094788147699 + ], + [ + 77.5373912822552, + 12.9614530203736 + ], + [ + 77.537403581061994, + 12.961512183576501 + ], + [ + 77.537434240901703, + 12.961651486407099 + ], + [ + 77.537466249981307, + 12.9617314929804 + ], + [ + 77.537467248054497, + 12.9617470762658 + ], + [ + 77.537470593858302, + 12.961799339291799 + ], + [ + 77.537497745706602, + 12.961953258329601 + ], + [ + 77.537518746585803, + 12.962088165041701 + ], + [ + 77.537514980761102, + 12.962088259578 + ], + [ + 77.537364255624595, + 12.9620920391753 + ], + [ + 77.537209426927703, + 12.9620872233053 + ], + [ + 77.5373333624769, + 12.9626391256652 + ], + [ + 77.537465071989701, + 12.9633254578728 + ], + [ + 77.537619227309406, + 12.964026100242901 + ], + [ + 77.537550585837096, + 12.9640432116403 + ], + [ + 77.5375110733535, + 12.964052561158899 + ], + [ + 77.537326507521797, + 12.9640705539967 + ], + [ + 77.537480661061593, + 12.9648632660291 + ], + [ + 77.537500711777199, + 12.964995210275299 + ], + [ + 77.537603667869703, + 12.965306202933901 + ], + [ + 77.538144748314295, + 12.965126941050301 + ], + [ + 77.538199074330905, + 12.965108451962401 + ], + [ + 77.538188323164107, + 12.9650656925556 + ], + [ + 77.538814953606106, + 12.964864876348599 + ], + [ + 77.539416933423496, + 12.9646805238712 + ], + [ + 77.539490292018897, + 12.964657197753199 + ], + [ + 77.540101291612601, + 12.9644629170547 + ], + [ + 77.540505587672897, + 12.964361618896699 + ], + [ + 77.540551898397297, + 12.9643539833035 + ], + [ + 77.541054455983399, + 12.964271235311299 + ], + [ + 77.540958558739106, + 12.963918576299999 + ], + [ + 77.540939505482697, + 12.963762152608 + ], + [ + 77.540814862012198, + 12.9632813052011 + ], + [ + 77.540767745266095, + 12.963063979758999 + ], + [ + 77.540698708450705, + 12.962653553103699 + ], + [ + 77.540529544344096, + 12.961965142567699 + ], + [ + 77.540462671587207, + 12.961706410320801 + ], + [ + 77.540405626190704, + 12.961494075649201 + ], + [ + 77.540547313625893, + 12.9613718511375 + ], + [ + 77.540592933083104, + 12.9610199710536 + ], + [ + 77.540686356424999, + 12.960637322834099 + ], + [ + 77.540896153229994, + 12.960412595505 + ], + [ + 77.541082094484807, + 12.9602957701428 + ], + [ + 77.540945126700606, + 12.960097858193199 + ], + [ + 77.541147038540501, + 12.960017472372 + ], + [ + 77.541263651718296, + 12.9599275136349 + ], + [ + 77.541365271773302, + 12.9598225617748 + ], + [ + 77.541453564608005, + 12.959615989859801 + ], + [ + 77.541553870068896, + 12.9594567282673 + ], + [ + 77.541730513004694, + 12.9591613604717 + ], + [ + 77.541615453299798, + 12.9585183040973 + ], + [ + 77.541923751851101, + 12.9584774146679 + ], + [ + 77.541929395354401, + 12.9584760865785 + ], + [ + 77.541994063070405, + 12.958947731168999 + ], + [ + 77.542097384277, + 12.9589840476138 + ], + [ + 77.542202635626793, + 12.958848425228799 + ], + [ + 77.542397604816699, + 12.958760875367901 + ], + [ + 77.542576892044494, + 12.9587260895781 + ], + [ + 77.542813210783805, + 12.958656488286399 + ], + [ + 77.543081836938995, + 12.9585743360936 + ], + [ + 77.543346712085807, + 12.958552784133101 + ], + [ + 77.543497627025204, + 12.958496503352601 + ], + [ + 77.543389759835307, + 12.9582378719831 + ], + [ + 77.5433894505708, + 12.9582371712028 + ], + [ + 77.5431906844818, + 12.957802238468799 + ], + [ + 77.543071572450103, + 12.9575681791618 + ], + [ + 77.543029932404906, + 12.9574825395601 + ], + [ + 77.542891654975705, + 12.957145039916499 + ], + [ + 77.542878399851404, + 12.9571358464823 + ], + [ + 77.542851406720004, + 12.957141847132601 + ], + [ + 77.542670930718501, + 12.957206328459099 + ], + [ + 77.542635105984502, + 12.9572066783106 + ], + [ + 77.542628482060195, + 12.9572024397762 + ], + [ + 77.542505998537607, + 12.956877662558799 + ], + [ + 77.542382069150406, + 12.9569173378608 + ], + [ + 77.542171345742801, + 12.956942455354101 + ], + [ + 77.542046792203806, + 12.956965663656 + ], + [ + 77.541681865913702, + 12.9570313776765 + ], + [ + 77.541571798658097, + 12.9570410576501 + ], + [ + 77.541394841543095, + 12.957077570863699 + ], + [ + 77.541392843091799, + 12.957072809210301 + ], + [ + 77.541346530369395, + 12.9567510539657 + ], + [ + 77.541343920437996, + 12.956731602446601 + ], + [ + 77.541314041511399, + 12.9564506031688 + ], + [ + 77.541303216903302, + 12.956344573745801 + ], + [ + 77.541293221488104, + 12.956118011000299 + ], + [ + 77.541231371873494, + 12.955790039588299 + ], + [ + 77.541272837655896, + 12.955769165005 + ], + [ + 77.541256702282396, + 12.9556201587583 + ], + [ + 77.541217671047903, + 12.9552323332654 + ], + [ + 77.5412165160987, + 12.9552194592536 + ], + [ + 77.540916187310202, + 12.9552306096737 + ], + [ + 77.540904937016094, + 12.9550586084626 + ], + [ + 77.540880599839099, + 12.9547497625954 + ], + [ + 77.540869999707397, + 12.954616784017899 + ], + [ + 77.5408579800213, + 12.954465999248599 + ], + [ + 77.540840022856599, + 12.9542094417552 + ], + [ + 77.540824229841405, + 12.954094137814099 + ], + [ + 77.540822115196207, + 12.954036974560299 + ], + [ + 77.540753522949302, + 12.9540388672844 + ], + [ + 77.540009520185194, + 12.9541121946844 + ], + [ + 77.539896097383902, + 12.954121865524201 + ], + [ + 77.539416347867203, + 12.9541742611737 + ], + [ + 77.538914992507699, + 12.954198155140499 + ], + [ + 77.538907746346396, + 12.954146777624601 + ], + [ + 77.538711867809496, + 12.9541483881404 + ], + [ + 77.538568277616307, + 12.9541689116438 + ], + [ + 77.538474753134594, + 12.954185363895901 + ], + [ + 77.538417964784102, + 12.954195353286799 + ], + [ + 77.538237399347807, + 12.9542271166244 + ], + [ + 77.537916292843207, + 12.9542876165668 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "198", + "group": "GaliAnjaneya Temple", + "Corporatio": "West", + "ac_no": "167", + "ac": "Vijayanagar", + "corporat_1": "5", + "ward_id": "94", + "ward_name": "94 - Gali Anjaneya Temple Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ವಿಜಯನಗರ", + "ward_name_": "ಗಾಳಿ ಆಂಜನೇಯ ದೇವಸ್ಥಾನ ವಾರ್ಡ್", + "dig_ward_n": "GaliAnjaneya Temple", + "Assembly": "167 - Vijayanagar", + "Slno": "94" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.540501030975605, + 12.9484527737085 + ], + [ + 77.540214174920393, + 12.948581592850701 + ], + [ + 77.539993902676301, + 12.9486351927737 + ], + [ + 77.539558678536594, + 12.9487702871808 + ], + [ + 77.539395587888706, + 12.9488024648248 + ], + [ + 77.539264593160595, + 12.9488012946083 + ], + [ + 77.539121149881296, + 12.9488026926852 + ], + [ + 77.538863827466002, + 12.948768495000801 + ], + [ + 77.538744194388997, + 12.948674445316 + ], + [ + 77.538656488887298, + 12.9486537864952 + ], + [ + 77.538501629955306, + 12.948725530822999 + ], + [ + 77.538442377530203, + 12.9487872840003 + ], + [ + 77.538452901422801, + 12.9488410161958 + ], + [ + 77.538474073144897, + 12.9489607145421 + ], + [ + 77.538490627316193, + 12.9491171633766 + ], + [ + 77.5385220999881, + 12.949268572768499 + ], + [ + 77.538605836921306, + 12.949407237687099 + ], + [ + 77.538637161013398, + 12.9495439662932 + ], + [ + 77.538716131859005, + 12.9497047008884 + ], + [ + 77.538511892904097, + 12.949777746241001 + ], + [ + 77.538341352322902, + 12.9497841882889 + ], + [ + 77.538166601345196, + 12.949864137960001 + ], + [ + 77.538101008259503, + 12.949912200276801 + ], + [ + 77.538175445624404, + 12.9499499285859 + ], + [ + 77.538219482355302, + 12.9499964972134 + ], + [ + 77.538268390419802, + 12.950094291287501 + ], + [ + 77.538317690761801, + 12.950230535083399 + ], + [ + 77.538359576195802, + 12.9504950311489 + ], + [ + 77.538406856149706, + 12.950862015931801 + ], + [ + 77.538170948319106, + 12.950795952625199 + ], + [ + 77.538112537541593, + 12.950780380342 + ], + [ + 77.537931745301606, + 12.9506782913833 + ], + [ + 77.537910509488, + 12.950664701361999 + ], + [ + 77.537676219912001, + 12.950441958827 + ], + [ + 77.537594368550302, + 12.9505886624176 + ], + [ + 77.537571762630193, + 12.950614514137101 + ], + [ + 77.537555916001097, + 12.950662727802101 + ], + [ + 77.537526502729705, + 12.950722601025999 + ], + [ + 77.537413083365607, + 12.9510154198686 + ], + [ + 77.537390217421105, + 12.951074454131099 + ], + [ + 77.537376869492704, + 12.9511180845341 + ], + [ + 77.537221478525396, + 12.951625995285101 + ], + [ + 77.537156226756295, + 12.9518392784512 + ], + [ + 77.536933787593895, + 12.952450923963999 + ], + [ + 77.536908325338601, + 12.9525209381137 + ], + [ + 77.536828656389204, + 12.952808490714 + ], + [ + 77.536815060382807, + 12.952857565147699 + ], + [ + 77.5367527407398, + 12.9530546168778 + ], + [ + 77.536693221205596, + 12.953165132937601 + ], + [ + 77.536690387944603, + 12.953169524305499 + ], + [ + 77.536622502894005, + 12.9532747290099 + ], + [ + 77.536583326617404, + 12.9533282293391 + ], + [ + 77.536563868854998, + 12.9533548011521 + ], + [ + 77.536374115454805, + 12.953534655901899 + ], + [ + 77.536258767277801, + 12.953643985467201 + ], + [ + 77.536008285463495, + 12.953915668643299 + ], + [ + 77.535870428781095, + 12.954051359267 + ], + [ + 77.535838379116996, + 12.9540829071163 + ], + [ + 77.535654170119798, + 12.954259095691899 + ], + [ + 77.535966315191203, + 12.954532571393599 + ], + [ + 77.536154451514903, + 12.9547558665881 + ], + [ + 77.536270571672901, + 12.954889322662099 + ], + [ + 77.536155285036202, + 12.9549614095381 + ], + [ + 77.535954821760299, + 12.955122419203301 + ], + [ + 77.5357000684578, + 12.955342686313999 + ], + [ + 77.535579386690898, + 12.955498024806101 + ], + [ + 77.535476217504794, + 12.9556580868216 + ], + [ + 77.535389552212294, + 12.9559697044582 + ], + [ + 77.535330205161202, + 12.956268820914801 + ], + [ + 77.5352823230849, + 12.956714648008299 + ], + [ + 77.535235867331295, + 12.9569316631913 + ], + [ + 77.535635712768993, + 12.957118638472901 + ], + [ + 77.5355496388582, + 12.9574962156001 + ], + [ + 77.535711817456999, + 12.9576121987559 + ], + [ + 77.535797258661503, + 12.957672542519701 + ], + [ + 77.535861457272702, + 12.9577294225966 + ], + [ + 77.535924458083798, + 12.9577912083921 + ], + [ + 77.536184895963501, + 12.958008904767199 + ], + [ + 77.536373886545206, + 12.958193038370901 + ], + [ + 77.536431848503796, + 12.9582499790179 + ], + [ + 77.536570942023602, + 12.958372810896901 + ], + [ + 77.536628959832399, + 12.9584352567691 + ], + [ + 77.536662387257095, + 12.958471636595799 + ], + [ + 77.536459232338302, + 12.958637006468599 + ], + [ + 77.536461940452796, + 12.9586394447565 + ], + [ + 77.5360697814031, + 12.9590008750158 + ], + [ + 77.536261609794096, + 12.959266735842601 + ], + [ + 77.536441256430507, + 12.959484906098499 + ], + [ + 77.536579864834906, + 12.9596655681654 + ], + [ + 77.536623775479796, + 12.9596280364997 + ], + [ + 77.536652584495897, + 12.959620823436699 + ], + [ + 77.536762071758105, + 12.9596018280415 + ], + [ + 77.537099459722299, + 12.959523839227501 + ], + [ + 77.537118887432896, + 12.9596371955235 + ], + [ + 77.537179053484294, + 12.959952429463399 + ], + [ + 77.537263890133403, + 12.959896928089799 + ], + [ + 77.537450129393207, + 12.9597064145968 + ], + [ + 77.537455710153196, + 12.9597007062732 + ], + [ + 77.537585933773201, + 12.959567493907199 + ], + [ + 77.537676343231993, + 12.959469800200701 + ], + [ + 77.538053875455603, + 12.9591417364653 + ], + [ + 77.538089485377895, + 12.959110792331501 + ], + [ + 77.538241531136407, + 12.9589622979961 + ], + [ + 77.538270569991298, + 12.9589346975132 + ], + [ + 77.5382831948274, + 12.958922698292 + ], + [ + 77.538252481440196, + 12.958875975683901 + ], + [ + 77.538170227432801, + 12.9581912001343 + ], + [ + 77.537918027880707, + 12.958197243702999 + ], + [ + 77.537874160805401, + 12.958197671321001 + ], + [ + 77.537720916219797, + 12.9582278503203 + ], + [ + 77.537600572133201, + 12.9582577085582 + ], + [ + 77.537487249026995, + 12.958258813087699 + ], + [ + 77.537486958401999, + 12.9582301306926 + ], + [ + 77.537404718593805, + 12.9580516490931 + ], + [ + 77.53733065246, + 12.957966895269999 + ], + [ + 77.537632664830795, + 12.9577474754434 + ], + [ + 77.537976377770306, + 12.957512252809099 + ], + [ + 77.538034428363105, + 12.9574693954353 + ], + [ + 77.538261843057299, + 12.957301501724499 + ], + [ + 77.538246391893196, + 12.9572803042311 + ], + [ + 77.538075203692202, + 12.9570454550677 + ], + [ + 77.537915810606293, + 12.9568267866795 + ], + [ + 77.537711249193805, + 12.956553521581201 + ], + [ + 77.537700856730098, + 12.9565396380293 + ], + [ + 77.537448912938302, + 12.9562369764802 + ], + [ + 77.537932869255798, + 12.9560763030151 + ], + [ + 77.537899635085395, + 12.9557511715012 + ], + [ + 77.538090776334599, + 12.9557458899602 + ], + [ + 77.538050019446104, + 12.9552031924087 + ], + [ + 77.537818145768, + 12.955233054234499 + ], + [ + 77.537799953855995, + 12.954592336693 + ], + [ + 77.537773308931605, + 12.954312268937599 + ], + [ + 77.537916292843207, + 12.9542876165668 + ], + [ + 77.538237399347807, + 12.9542271166244 + ], + [ + 77.538417964784102, + 12.954195353286799 + ], + [ + 77.538474753134594, + 12.954185363895901 + ], + [ + 77.538568277616307, + 12.9541689116438 + ], + [ + 77.538711867809496, + 12.9541483881404 + ], + [ + 77.538907746346396, + 12.954146777624601 + ], + [ + 77.538914992507699, + 12.954198155140499 + ], + [ + 77.539416347867203, + 12.9541742611737 + ], + [ + 77.539896097383902, + 12.954121865524201 + ], + [ + 77.540009520185194, + 12.9541121946844 + ], + [ + 77.540753522949302, + 12.9540388672844 + ], + [ + 77.540822115196207, + 12.954036974560299 + ], + [ + 77.540824229841405, + 12.954094137814099 + ], + [ + 77.540840022856599, + 12.9542094417552 + ], + [ + 77.5408579800213, + 12.954465999248599 + ], + [ + 77.540869999707397, + 12.954616784017899 + ], + [ + 77.540880599839099, + 12.9547497625954 + ], + [ + 77.540904937016094, + 12.9550586084626 + ], + [ + 77.540916187310202, + 12.9552306096737 + ], + [ + 77.5412165160987, + 12.9552194592536 + ], + [ + 77.541217671047903, + 12.9552323332654 + ], + [ + 77.541256702282396, + 12.9556201587583 + ], + [ + 77.541272837655896, + 12.955769165005 + ], + [ + 77.541297207645798, + 12.955768927169199 + ], + [ + 77.541467363791099, + 12.955724238760601 + ], + [ + 77.541540300038207, + 12.955706315799199 + ], + [ + 77.541725674366205, + 12.9556241871075 + ], + [ + 77.541823952816699, + 12.9555839223717 + ], + [ + 77.5418341793347, + 12.9556066739919 + ], + [ + 77.542132850133697, + 12.955474886670901 + ], + [ + 77.542527474112106, + 12.955309679795301 + ], + [ + 77.542903747175799, + 12.9551544008914 + ], + [ + 77.543113074808204, + 12.9560243777278 + ], + [ + 77.543696582452696, + 12.9558669079496 + ], + [ + 77.544152568558999, + 12.9557413185559 + ], + [ + 77.545364023171999, + 12.955439904011101 + ], + [ + 77.545508913636098, + 12.955568713214401 + ], + [ + 77.545712377832501, + 12.9556896137126 + ], + [ + 77.545876403609, + 12.9557870797146 + ], + [ + 77.545999766307403, + 12.9558590841624 + ], + [ + 77.546304323468206, + 12.9560368463926 + ], + [ + 77.546372558334198, + 12.955916436792901 + ], + [ + 77.546367560626706, + 12.9555166201832 + ], + [ + 77.546352567503803, + 12.9551034763532 + ], + [ + 77.546344237991093, + 12.954726982379 + ], + [ + 77.546334242575895, + 12.9543938018709 + ], + [ + 77.546326733341402, + 12.954140040534799 + ], + [ + 77.546320915355494, + 12.953927349159599 + ], + [ + 77.546317583550405, + 12.9537124477318 + ], + [ + 77.546284265499594, + 12.9532226723849 + ], + [ + 77.546264274669198, + 12.9529094827073 + ], + [ + 77.546262608766597, + 12.952526325122999 + ], + [ + 77.5462409520336, + 12.952109849487901 + ], + [ + 77.5461691520822, + 12.951889823272101 + ], + [ + 77.545966078114404, + 12.9518566323017 + ], + [ + 77.545846133131505, + 12.9518033234204 + ], + [ + 77.545750959216207, + 12.9517913458139 + ], + [ + 77.545664802955898, + 12.951782604773699 + ], + [ + 77.545581254627606, + 12.9517633417595 + ], + [ + 77.5455359262901, + 12.951763784753 + ], + [ + 77.545442984716701, + 12.951778334882301 + ], + [ + 77.545201428848301, + 12.9519016116703 + ], + [ + 77.545049831717193, + 12.951989904505 + ], + [ + 77.544816605361504, + 12.952109849487901 + ], + [ + 77.544677094236505, + 12.952195834006099 + ], + [ + 77.544477876075604, + 12.9522769793628 + ], + [ + 77.544455506703898, + 12.952234170245699 + ], + [ + 77.544417611520103, + 12.9521025880856 + ], + [ + 77.544385136603495, + 12.951814984738199 + ], + [ + 77.544317165454501, + 12.9515921204286 + ], + [ + 77.544310170989107, + 12.951568431162199 + ], + [ + 77.544258819429601, + 12.951408420388599 + ], + [ + 77.544228541764596, + 12.951306884463399 + ], + [ + 77.544123589904601, + 12.950952880173499 + ], + [ + 77.544053621997904, + 12.9507163220128 + ], + [ + 77.543922015697206, + 12.9503331644284 + ], + [ + 77.543832056959999, + 12.950029970166099 + ], + [ + 77.543748761833001, + 12.949766757564699 + ], + [ + 77.543743986683893, + 12.9497501595968 + ], + [ + 77.543658803095795, + 12.949450236082001 + ], + [ + 77.543588835189098, + 12.9492220074339 + ], + [ + 77.543525530892495, + 12.949023765031599 + ], + [ + 77.543492212841699, + 12.948852177069901 + ], + [ + 77.543430574447797, + 12.9486139530066 + ], + [ + 77.543317501830302, + 12.948361356117299 + ], + [ + 77.543313961269902, + 12.948347408600201 + ], + [ + 77.543250499769997, + 12.9482402028416 + ], + [ + 77.543208542568095, + 12.948228492377501 + ], + [ + 77.543177704654894, + 12.948191742148399 + ], + [ + 77.543077770504794, + 12.9480708053529 + ], + [ + 77.543012330893603, + 12.947986583977601 + ], + [ + 77.543005765226994, + 12.9479400344923 + ], + [ + 77.542753376898403, + 12.948046481663599 + ], + [ + 77.542718430284907, + 12.9480611652966 + ], + [ + 77.542531075160994, + 12.9480916788618 + ], + [ + 77.542414162044693, + 12.9480987962136 + ], + [ + 77.542226844023503, + 12.948084846774201 + ], + [ + 77.542199503702804, + 12.948081230437699 + ], + [ + 77.542031605307898, + 12.948059022480001 + ], + [ + 77.541958438525697, + 12.9480539993151 + ], + [ + 77.541872045474506, + 12.9480615540743 + ], + [ + 77.541589707540098, + 12.9480987306699 + ], + [ + 77.541217980010103, + 12.9481654640442 + ], + [ + 77.5408634652388, + 12.9482730531212 + ], + [ + 77.540782711336604, + 12.9483056520535 + ], + [ + 77.540695919194903, + 12.9483578860871 + ], + [ + 77.540501030975605, + 12.9484527737085 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "199", + "group": "Hosahalli", + "Corporatio": "West", + "ac_no": "167", + "ac": "Vijayanagar", + "corporat_1": "5", + "ward_id": "66", + "ward_name": "66 - Hosahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ವಿಜಯನಗರ", + "ward_name_": "ಹೊಸಹಳ್ಳಿ", + "dig_ward_n": "Hosahalli", + "Assembly": "167 - Vijayanagar", + "Slno": "66" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.544062367986498, + 12.9600724471559 + ], + [ + 77.544020720423006, + 12.9597376007452 + ], + [ + 77.543982404664604, + 12.959422745165099 + ], + [ + 77.543949086613793, + 12.9593111296949 + ], + [ + 77.543879118706997, + 12.9591445394408 + ], + [ + 77.543805818995196, + 12.959011267237599 + ], + [ + 77.543762505529202, + 12.9589512947461 + ], + [ + 77.543619237910704, + 12.9586997434625 + ], + [ + 77.543524281465906, + 12.9585414827212 + ], + [ + 77.543497627025204, + 12.958496503352601 + ], + [ + 77.543346712085807, + 12.958552784133101 + ], + [ + 77.543081836938995, + 12.9585743360936 + ], + [ + 77.542813210783805, + 12.958656488286399 + ], + [ + 77.542576892044494, + 12.9587260895781 + ], + [ + 77.542397604816699, + 12.958760875367901 + ], + [ + 77.542202635626793, + 12.958848425228799 + ], + [ + 77.542097384277, + 12.9589840476138 + ], + [ + 77.541994063070405, + 12.958947731168999 + ], + [ + 77.541929395354401, + 12.9584760865785 + ], + [ + 77.541923751851101, + 12.9584774146679 + ], + [ + 77.541615453299798, + 12.9585183040973 + ], + [ + 77.541730513004694, + 12.9591613604717 + ], + [ + 77.541553870068896, + 12.9594567282673 + ], + [ + 77.541453564608005, + 12.959615989859801 + ], + [ + 77.541365271773302, + 12.9598225617748 + ], + [ + 77.541263651718296, + 12.9599275136349 + ], + [ + 77.541147038540501, + 12.960017472372 + ], + [ + 77.540945126700606, + 12.960097858193199 + ], + [ + 77.541082094484807, + 12.9602957701428 + ], + [ + 77.540896153229994, + 12.960412595505 + ], + [ + 77.540686356424999, + 12.960637322834099 + ], + [ + 77.540592933083104, + 12.9610199710536 + ], + [ + 77.540547313625893, + 12.9613718511375 + ], + [ + 77.540405626190704, + 12.961494075649201 + ], + [ + 77.540462671587207, + 12.961706410320801 + ], + [ + 77.540529544344096, + 12.961965142567699 + ], + [ + 77.540698708450705, + 12.962653553103699 + ], + [ + 77.540767745266095, + 12.963063979758999 + ], + [ + 77.540814862012198, + 12.9632813052011 + ], + [ + 77.540939505482697, + 12.963762152608 + ], + [ + 77.540958558739106, + 12.963918576299999 + ], + [ + 77.541054455983399, + 12.964271235311299 + ], + [ + 77.540551898397297, + 12.9643539833035 + ], + [ + 77.540588758469099, + 12.964742873314499 + ], + [ + 77.540591733042703, + 12.964761296733 + ], + [ + 77.540609564907896, + 12.9648717533707 + ], + [ + 77.540746652238596, + 12.9657791623696 + ], + [ + 77.540644823636896, + 12.965825426648999 + ], + [ + 77.540545527080198, + 12.9658753367138 + ], + [ + 77.539806243986007, + 12.966171303180101 + ], + [ + 77.539711849848501, + 12.966212600524599 + ], + [ + 77.539403545030297, + 12.966319608366099 + ], + [ + 77.539098994560803, + 12.9664278027647 + ], + [ + 77.539057996754707, + 12.966467014057599 + ], + [ + 77.539099644318199, + 12.966714400584801 + ], + [ + 77.538564419623199, + 12.96687002002 + ], + [ + 77.538567477660294, + 12.9668855100012 + ], + [ + 77.538635286341105, + 12.967279348236399 + ], + [ + 77.538789660151394, + 12.9681710073302 + ], + [ + 77.536667536815798, + 12.9687880985022 + ], + [ + 77.537376053590904, + 12.9707910005397 + ], + [ + 77.537470805111298, + 12.971072485011099 + ], + [ + 77.537510787326994, + 12.9711912645936 + ], + [ + 77.537542082225002, + 12.9712842372443 + ], + [ + 77.537589356590999, + 12.971424681362601 + ], + [ + 77.537795367030697, + 12.972036700866999 + ], + [ + 77.537796859275701, + 12.9720411349966 + ], + [ + 77.537806043486697, + 12.972068417835899 + ], + [ + 77.537815957226599, + 12.9720978709205 + ], + [ + 77.537823683026204, + 12.972121511642699 + ], + [ + 77.537903007604399, + 12.9722788449848 + ], + [ + 77.538005110723802, + 12.9724111105578 + ], + [ + 77.538271822324404, + 12.972672006677101 + ], + [ + 77.538337754771604, + 12.972736501595501 + ], + [ + 77.538463744274793, + 12.9728178490922 + ], + [ + 77.538489110960896, + 12.972834228061901 + ], + [ + 77.538592765244005, + 12.9729011536536 + ], + [ + 77.538608672617997, + 12.972911536455999 + ], + [ + 77.538621746846104, + 12.972920070404699 + ], + [ + 77.538763888950697, + 12.9729695030773 + ], + [ + 77.538831397478603, + 12.973007913722199 + ], + [ + 77.538921853952104, + 12.973059381327101 + ], + [ + 77.538943415702207, + 12.973071649557401 + ], + [ + 77.539015315430902, + 12.973096498654201 + ], + [ + 77.539053121201604, + 12.973109565059801 + ], + [ + 77.539146801745005, + 12.9731419414945 + ], + [ + 77.539218195094904, + 12.9731596481222 + ], + [ + 77.539397121832295, + 12.9732040268159 + ], + [ + 77.539562982021593, + 12.9732451648366 + ], + [ + 77.539619956989995, + 12.973257507299801 + ], + [ + 77.539976001205901, + 12.973334634995499 + ], + [ + 77.540225601732303, + 12.9733887045715 + ], + [ + 77.540614841439194, + 12.9734730221295 + ], + [ + 77.540854984152801, + 12.9735250431296 + ], + [ + 77.541327235073197, + 12.973625307626801 + ], + [ + 77.541327496515706, + 12.9736204976354 + ], + [ + 77.541332551434607, + 12.973345047563299 + ], + [ + 77.541127309688903, + 12.972816377301299 + ], + [ + 77.541050772615606, + 12.972581838588701 + ], + [ + 77.542655096815295, + 12.9720756914358 + ], + [ + 77.5425110387541, + 12.971784529783999 + ], + [ + 77.5424629116049, + 12.9716628712623 + ], + [ + 77.542294730277106, + 12.971016884490201 + ], + [ + 77.542201707203503, + 12.970702127622101 + ], + [ + 77.542150617030799, + 12.970124823427099 + ], + [ + 77.542564757502404, + 12.969997201086301 + ], + [ + 77.542685673308199, + 12.969954726486201 + ], + [ + 77.543121680850206, + 12.9698021126884 + ], + [ + 77.543571194766798, + 12.969660601808499 + ], + [ + 77.543681247243399, + 12.9696216795281 + ], + [ + 77.543540344651802, + 12.9693832491705 + ], + [ + 77.543526456361107, + 12.9691215536425 + ], + [ + 77.543048089794098, + 12.9691898529965 + ], + [ + 77.542868177909497, + 12.9687649120769 + ], + [ + 77.542694042435997, + 12.9683861605305 + ], + [ + 77.542697143741904, + 12.9683848481985 + ], + [ + 77.542396458653798, + 12.9677211871861 + ], + [ + 77.542541815442505, + 12.9676660474111 + ], + [ + 77.543025410280805, + 12.96747582373 + ], + [ + 77.543156533480001, + 12.967834303567701 + ], + [ + 77.543870803645703, + 12.967573818051701 + ], + [ + 77.543877869280095, + 12.967571090966301 + ], + [ + 77.543744318076506, + 12.967167257995399 + ], + [ + 77.543714610831103, + 12.9671221302316 + ], + [ + 77.543617594670295, + 12.966825377892301 + ], + [ + 77.54361548963, + 12.9668189359693 + ], + [ + 77.5432751945511, + 12.966938008520801 + ], + [ + 77.543148941506701, + 12.9665814892717 + ], + [ + 77.543108475887294, + 12.9664672184688 + ], + [ + 77.542979382532195, + 12.9660561311464 + ], + [ + 77.542850286226297, + 12.9656341604356 + ], + [ + 77.543059911132701, + 12.9655753397228 + ], + [ + 77.543175280584293, + 12.9655353675883 + ], + [ + 77.543276478463, + 12.9657719162226 + ], + [ + 77.543419746081497, + 12.9661634033196 + ], + [ + 77.543764587907305, + 12.9660301311163 + ], + [ + 77.544242196065994, + 12.9658738612984 + ], + [ + 77.5442693563771, + 12.965860209057199 + ], + [ + 77.543931098557195, + 12.965199508725499 + ], + [ + 77.543728186830194, + 12.964803725458999 + ], + [ + 77.543541311583496, + 12.9643563037811 + ], + [ + 77.543392186796794, + 12.9643334227792 + ], + [ + 77.542945139401695, + 12.964297228604099 + ], + [ + 77.542399876462397, + 12.9642671178225 + ], + [ + 77.542355162618094, + 12.9634574366011 + ], + [ + 77.5430315432572, + 12.963448534091301 + ], + [ + 77.542800514571596, + 12.9630568206608 + ], + [ + 77.542648714112801, + 12.962850306715 + ], + [ + 77.542564994105703, + 12.962714091256499 + ], + [ + 77.542242546703307, + 12.962287788254701 + ], + [ + 77.542092168541302, + 12.9620983890952 + ], + [ + 77.542269991179296, + 12.961980744840901 + ], + [ + 77.542562041986002, + 12.961870661369 + ], + [ + 77.542806548568706, + 12.961747145061199 + ], + [ + 77.543152887504206, + 12.961577975426 + ], + [ + 77.543234799093597, + 12.961536187435801 + ], + [ + 77.543325885888805, + 12.9614765688523 + ], + [ + 77.543533243306896, + 12.9613803322328 + ], + [ + 77.543767732388801, + 12.9612532425406 + ], + [ + 77.543919504887498, + 12.961180795599001 + ], + [ + 77.544061951510798, + 12.961119050427 + ], + [ + 77.544105155937203, + 12.961123602505101 + ], + [ + 77.544070354743894, + 12.960206498260501 + ], + [ + 77.544062367986498, + 12.9600724471559 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "200", + "group": "KP Agarahara", + "Corporatio": "West", + "ac_no": "167", + "ac": "Vijayanagar", + "corporat_1": "5", + "ward_id": "69", + "ward_name": "69 - KP Agrahara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ವಿಜಯನಗರ", + "ward_name_": "ಕೆ.ಪಿ. ಅಗ್ರಹಾರ", + "dig_ward_n": "KP Agarahara", + "Assembly": "167 - Vijayanagar", + "Slno": "69" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.548037197664399, + 12.9746212466326 + ], + [ + 77.548099729719794, + 12.974707571168199 + ], + [ + 77.548349949799501, + 12.975052997930399 + ], + [ + 77.548359768301495, + 12.9750665521432 + ], + [ + 77.549091092809704, + 12.9744211294894 + ], + [ + 77.549156930081395, + 12.974363025636899 + ], + [ + 77.549607188996802, + 12.9739656519468 + ], + [ + 77.549875645801606, + 12.973810560403299 + ], + [ + 77.549978271704603, + 12.973767768955099 + ], + [ + 77.550127657934098, + 12.973736941554399 + ], + [ + 77.550220171756393, + 12.973724637154101 + ], + [ + 77.550292679546104, + 12.9737149935633 + ], + [ + 77.550346792917296, + 12.97370855974 + ], + [ + 77.550266519318001, + 12.9737077799989 + ], + [ + 77.550346792917296, + 12.97370855974 + ], + [ + 77.550468653978399, + 12.973694070995901 + ], + [ + 77.550587219263306, + 12.9737089545514 + ], + [ + 77.550627193008395, + 12.9737139724252 + ], + [ + 77.550651565426605, + 12.973725832549199 + ], + [ + 77.550727084285697, + 12.973762581015899 + ], + [ + 77.5507313505002, + 12.973764656887001 + ], + [ + 77.550746558151701, + 12.973772057055401 + ], + [ + 77.550761661189895, + 12.973779406751399 + ], + [ + 77.550797399087401, + 12.9737967975027 + ], + [ + 77.550959333907002, + 12.973875597348201 + ], + [ + 77.551219882684507, + 12.974061456613301 + ], + [ + 77.551222661077801, + 12.9740634386555 + ], + [ + 77.551380988662601, + 12.974176379263501 + ], + [ + 77.551536412558804, + 12.974299695589099 + ], + [ + 77.5517778020496, + 12.974491218008399 + ], + [ + 77.551787318060903, + 12.9744987679142 + ], + [ + 77.551809988917299, + 12.9745200026598 + ], + [ + 77.551912351669401, + 12.974620637578701 + ], + [ + 77.551951555132902, + 12.9746584927664 + ], + [ + 77.552040864577904, + 12.9747447316681 + ], + [ + 77.552053007962897, + 12.9747565080716 + ], + [ + 77.552172289839305, + 12.9748721850669 + ], + [ + 77.552305614753806, + 12.974960093292101 + ], + [ + 77.552315666362503, + 12.974966772399201 + ], + [ + 77.552340192871796, + 12.9749830710351 + ], + [ + 77.552481930348506, + 12.975077259944999 + ], + [ + 77.552546771995097, + 12.9751203491611 + ], + [ + 77.552772119161205, + 12.975254785457199 + ], + [ + 77.552961531911706, + 12.975365858476501 + ], + [ + 77.5531457492974, + 12.975419386711099 + ], + [ + 77.553306893817705, + 12.975468624063801 + ], + [ + 77.553407470440703, + 12.9754741711563 + ], + [ + 77.553411166698197, + 12.9754743760832 + ], + [ + 77.553467632998604, + 12.975478338882599 + ], + [ + 77.553789782069998, + 12.9755067962315 + ], + [ + 77.553855232554596, + 12.9755145745586 + ], + [ + 77.554000011350496, + 12.975531783700699 + ], + [ + 77.554074225165806, + 12.975540604315899 + ], + [ + 77.554120626668904, + 12.9755461194249 + ], + [ + 77.5542988072649, + 12.975567297222799 + ], + [ + 77.554331058892103, + 12.975568109723399 + ], + [ + 77.554472177576798, + 12.9755734993439 + ], + [ + 77.554493490590104, + 12.975574418382701 + ], + [ + 77.554509814351803, + 12.9755750837765 + ], + [ + 77.554630473057898, + 12.9755800030425 + ], + [ + 77.554632491408995, + 12.975580085303701 + ], + [ + 77.555475594422106, + 12.9756144583957 + ], + [ + 77.555596309272104, + 12.975617844386701 + ], + [ + 77.555913079978097, + 12.9756267296557 + ], + [ + 77.555913709359899, + 12.975626746959 + ], + [ + 77.556098047396603, + 12.9756319177368 + ], + [ + 77.556098373610993, + 12.9756319271784 + ], + [ + 77.556098862002202, + 12.9756319404464 + ], + [ + 77.556102942418093, + 12.975632055729101 + ], + [ + 77.556144807137002, + 12.975633229747 + ], + [ + 77.556205300727299, + 12.975634926257699 + ], + [ + 77.556246733456007, + 12.9756360882085 + ], + [ + 77.556361341461098, + 12.9756393016869 + ], + [ + 77.556466822007096, + 12.9756422606365 + ], + [ + 77.556471906848103, + 12.9756424030797 + ], + [ + 77.556690757805896, + 12.9756485414071 + ], + [ + 77.556713376043305, + 12.9756491754859 + ], + [ + 77.556733067600106, + 12.975649728118499 + ], + [ + 77.556757633893, + 12.9756504171219 + ], + [ + 77.556796129012596, + 12.9756525213011 + ], + [ + 77.556827864930796, + 12.975654256472501 + ], + [ + 77.556828117490497, + 12.975654270251299 + ], + [ + 77.556828146985595, + 12.9756542717681 + ], + [ + 77.556833223078499, + 12.975654549809001 + ], + [ + 77.556833816683195, + 12.9756545819171 + ], + [ + 77.556846943349498, + 12.9756552993792 + ], + [ + 77.557563013564604, + 12.9756944454241 + ], + [ + 77.557656919562206, + 12.9756990174713 + ], + [ + 77.557659313204198, + 12.9756991339623 + ], + [ + 77.557755992573405, + 12.9757038404117 + ], + [ + 77.557951314080498, + 12.975710244349701 + ], + [ + 77.558015816710494, + 12.975712359010799 + ], + [ + 77.558042384861693, + 12.9757132305713 + ], + [ + 77.558126915429298, + 12.975716001936799 + ], + [ + 77.558253513125095, + 12.975720375905301 + ], + [ + 77.558253861474398, + 12.9757203878367 + ], + [ + 77.5582751615338, + 12.975721124189 + ], + [ + 77.558275589138304, + 12.9757211389544 + ], + [ + 77.558328313519496, + 12.9757229601551 + ], + [ + 77.558652557570298, + 12.975734160859499 + ], + [ + 77.558701389467601, + 12.9757358473344 + ], + [ + 77.558712107023396, + 12.9757362174782 + ], + [ + 77.558703257461502, + 12.975546579434599 + ], + [ + 77.558683415368506, + 12.9754152484686 + ], + [ + 77.5586831001646, + 12.9754131636804 + ], + [ + 77.558668672168906, + 12.975317666565299 + ], + [ + 77.558667389646402, + 12.9753144990156 + ], + [ + 77.558660006409696, + 12.9752962649113 + ], + [ + 77.558657473506599, + 12.975290009903199 + ], + [ + 77.558610668668393, + 12.9751744222644 + ], + [ + 77.558607619738495, + 12.975166893037301 + ], + [ + 77.558531312344201, + 12.974978444527601 + ], + [ + 77.558530512773899, + 12.974976469305799 + ], + [ + 77.558509912202197, + 12.974925595033699 + ], + [ + 77.558479649770604, + 12.9748508588403 + ], + [ + 77.558472475423102, + 12.9748175602268 + ], + [ + 77.558464514828898, + 12.974780616669801 + ], + [ + 77.558458296049494, + 12.974751754567601 + ], + [ + 77.558451239735504, + 12.9747190068035 + ], + [ + 77.558430504154202, + 12.974675732827301 + ], + [ + 77.558424101260201, + 12.9746623722517 + ], + [ + 77.558412998299005, + 12.974639201196499 + ], + [ + 77.558401634824605, + 12.9746157788319 + ], + [ + 77.558401391074597, + 12.9746152752939 + ], + [ + 77.558368286913193, + 12.9745470412091 + ], + [ + 77.558360651032402, + 12.974531301309099 + ], + [ + 77.558352584477404, + 12.974517506088 + ], + [ + 77.55825399615, + 12.9743489026188 + ], + [ + 77.558175772273799, + 12.9742151229146 + ], + [ + 77.558173821999603, + 12.974211787561799 + ], + [ + 77.558155451924904, + 12.9741803716484 + ], + [ + 77.558155166881804, + 12.9741798838749 + ], + [ + 77.557907517350401, + 12.9737563594466 + ], + [ + 77.557906573155194, + 12.9737547443165 + ], + [ + 77.557897109676105, + 12.973738559798599 + ], + [ + 77.557916751984806, + 12.9737312204656 + ], + [ + 77.557939114728498, + 12.9737228646422 + ], + [ + 77.557949878684198, + 12.9737188422759 + ], + [ + 77.557950932647103, + 12.973693537798599 + ], + [ + 77.557952049696198, + 12.9736667117227 + ], + [ + 77.557953214222806, + 12.973638745480899 + ], + [ + 77.557953408966895, + 12.973634068679299 + ], + [ + 77.557957497950795, + 12.973535871317599 + ], + [ + 77.557957563847495, + 12.9735342977492 + ], + [ + 77.557961615312095, + 12.973437002463999 + ], + [ + 77.557963060459301, + 12.973402296369899 + ], + [ + 77.557967340408794, + 12.9732995076201 + ], + [ + 77.557975805724993, + 12.9730962104748 + ], + [ + 77.557975817534597, + 12.9730959239625 + ], + [ + 77.557979000072294, + 12.973019505293999 + ], + [ + 77.557951031182498, + 12.972987030040301 + ], + [ + 77.557942497810998, + 12.9729408117531 + ], + [ + 77.557927676875806, + 12.9728261090491 + ], + [ + 77.557925161894403, + 12.9728066471007 + ], + [ + 77.557923115047799, + 12.9727908034143 + ], + [ + 77.557910884945301, + 12.972720904807399 + ], + [ + 77.557805648871096, + 12.972301510827 + ], + [ + 77.557800226683298, + 12.9723027662004 + ], + [ + 77.5576313836727, + 12.9723399295622 + ], + [ + 77.557174939204302, + 12.972477779221199 + ], + [ + 77.557235657198206, + 12.9726815065131 + ], + [ + 77.556136605143294, + 12.973047604711301 + ], + [ + 77.555928081684101, + 12.973107023793 + ], + [ + 77.555680253302, + 12.9731540323777 + ], + [ + 77.555601126673807, + 12.973169041233801 + ], + [ + 77.555441878301494, + 12.972458108512299 + ], + [ + 77.555547620382697, + 12.972440970327 + ], + [ + 77.555513494251599, + 12.972285215851 + ], + [ + 77.555500322926505, + 12.972225103490899 + ], + [ + 77.555479916554503, + 12.9721287639228 + ], + [ + 77.555479553614006, + 12.9721270527227 + ], + [ + 77.555247502558402, + 12.972171412170599 + ], + [ + 77.555184245892605, + 12.9721827911305 + ], + [ + 77.554966730186194, + 12.9722446882532 + ], + [ + 77.554942345725394, + 12.9722437325175 + ], + [ + 77.554844969319106, + 12.9722554456698 + ], + [ + 77.554599740682605, + 12.9722291696082 + ], + [ + 77.554460066930602, + 12.9722759593162 + ], + [ + 77.554328472205896, + 12.9722784470394 + ], + [ + 77.554272429755699, + 12.972280192712899 + ], + [ + 77.554081584657595, + 12.972330422833499 + ], + [ + 77.554074312690801, + 12.9723323364016 + ], + [ + 77.553986952954503, + 12.9723702460961 + ], + [ + 77.553764487829795, + 12.972425019223 + ], + [ + 77.553512789676006, + 12.9724812753742 + ], + [ + 77.553373304168503, + 12.9725229048505 + ], + [ + 77.553289621906103, + 12.972350361284001 + ], + [ + 77.553226238532801, + 12.972111885287999 + ], + [ + 77.553211625767702, + 12.972077830932699 + ], + [ + 77.553145964183599, + 12.9719248112385 + ], + [ + 77.553119104747296, + 12.971852492644199 + ], + [ + 77.553060421718001, + 12.971648125758 + ], + [ + 77.553037675552801, + 12.9715860011771 + ], + [ + 77.553024595328196, + 12.9715502784234 + ], + [ + 77.552954931137194, + 12.971448242288499 + ], + [ + 77.552940621606794, + 12.9714272833073 + ], + [ + 77.552865803140904, + 12.971344309675199 + ], + [ + 77.552620942288499, + 12.971476382996901 + ], + [ + 77.552183176515896, + 12.971688124559 + ], + [ + 77.5518954417321, + 12.9717937374309 + ], + [ + 77.551664714230199, + 12.971862039435001 + ], + [ + 77.551417791637803, + 12.9719465072025 + ], + [ + 77.551404000482606, + 12.971951165220901 + ], + [ + 77.551190348481796, + 12.972019467225101 + ], + [ + 77.550984609517997, + 12.9721006799739 + ], + [ + 77.550754714967397, + 12.9721973023213 + ], + [ + 77.550292427012394, + 12.972429695725699 + ], + [ + 77.550027548508496, + 12.9725787940031 + ], + [ + 77.549784326737594, + 12.9727812011617 + ], + [ + 77.549729352237307, + 12.9727474555939 + ], + [ + 77.549228024280097, + 12.972585040449299 + ], + [ + 77.548950368577906, + 12.9725459296334 + ], + [ + 77.548654616487099, + 12.972524924177399 + ], + [ + 77.548546222634002, + 12.97251271357 + ], + [ + 77.548532605034495, + 12.9725111792148 + ], + [ + 77.5482335936711, + 12.9724692891046 + ], + [ + 77.548216752846898, + 12.972467408664601 + ], + [ + 77.547495432685906, + 12.9723868795742 + ], + [ + 77.547281568010902, + 12.972386060600799 + ], + [ + 77.547276055152295, + 12.972386039606601 + ], + [ + 77.547151567441404, + 12.9724227271026 + ], + [ + 77.547437070057896, + 12.9731002214982 + ], + [ + 77.547699631158693, + 12.973771194069499 + ], + [ + 77.547797054905402, + 12.9740630659632 + ], + [ + 77.548045044085796, + 12.974614899740599 + ], + [ + 77.548037197664399, + 12.9746212466326 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "201", + "group": "Bapuji Nagara", + "Corporatio": "West", + "ac_no": "167", + "ac": "Vijayanagar", + "corporat_1": "5", + "ward_id": "72", + "ward_name": "72 - Bapuji Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ವಿಜಯನಗರ", + "ward_name_": "ಬಾಪೂಜಿ ನಗರ", + "dig_ward_n": "Bapuji Nagara", + "Assembly": "167 - Vijayanagar", + "Slno": "72" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.544062367986498, + 12.9600724471559 + ], + [ + 77.544070354743894, + 12.960206498260501 + ], + [ + 77.544105155937203, + 12.961123602505101 + ], + [ + 77.544061951510798, + 12.961119050427 + ], + [ + 77.544101123336404, + 12.961388912678 + ], + [ + 77.544101100220502, + 12.961392258443601 + ], + [ + 77.544097768415497, + 12.9614838830833 + ], + [ + 77.544479260097205, + 12.9613556085877 + ], + [ + 77.544566759727203, + 12.961360020589201 + ], + [ + 77.544587626953302, + 12.9613858906517 + ], + [ + 77.544637339630299, + 12.961481022184801 + ], + [ + 77.544697543173697, + 12.9616489591152 + ], + [ + 77.544861258839305, + 12.9618696682462 + ], + [ + 77.544939906446004, + 12.961993799034 + ], + [ + 77.544977555619994, + 12.962100999467101 + ], + [ + 77.5450558571182, + 12.962191070173599 + ], + [ + 77.545067596641502, + 12.962207091295401 + ], + [ + 77.545139746636707, + 12.962231484978901 + ], + [ + 77.545166144049801, + 12.9622457092388 + ], + [ + 77.545171334176004, + 12.9622380676277 + ], + [ + 77.545175485624299, + 12.9622321409457 + ], + [ + 77.545206551662503, + 12.9621878003798 + ], + [ + 77.5452127616025, + 12.9621789371771 + ], + [ + 77.5454721325316, + 12.9618104967206 + ], + [ + 77.545514121362899, + 12.961745710475601 + ], + [ + 77.545520883693399, + 12.9617352770628 + ], + [ + 77.545522635041394, + 12.961732574832499 + ], + [ + 77.545593466254303, + 12.9616232917588 + ], + [ + 77.545603064660398, + 12.961608483127399 + ], + [ + 77.545651091080302, + 12.961534380906301 + ], + [ + 77.545655071750701, + 12.961528239962201 + ], + [ + 77.545728941153499, + 12.961414266173399 + ], + [ + 77.545739380296496, + 12.961398160070299 + ], + [ + 77.545741249545998, + 12.9613952759928 + ], + [ + 77.545742320674293, + 12.961393623918299 + ], + [ + 77.545744014879602, + 12.9613910098823 + ], + [ + 77.545769729076, + 12.961351335629001 + ], + [ + 77.545820093495394, + 12.961265013730999 + ], + [ + 77.545962343920706, + 12.9610220680352 + ], + [ + 77.546066832697704, + 12.9608436178909 + ], + [ + 77.546096674314498, + 12.9607927689342 + ], + [ + 77.546107671585901, + 12.960774029182 + ], + [ + 77.546174510920906, + 12.960660136749199 + ], + [ + 77.546181489595398, + 12.9606482457285 + ], + [ + 77.546235481705907, + 12.960556247068901 + ], + [ + 77.546256355383207, + 12.9605153507735 + ], + [ + 77.546257496127794, + 12.960513117088301 + ], + [ + 77.546290254236496, + 12.960450681552199 + ], + [ + 77.546317923996497, + 12.9603973340633 + ], + [ + 77.5463700262533, + 12.960296871237 + ], + [ + 77.546370426480195, + 12.9602960984724 + ], + [ + 77.546371095072502, + 12.9602948117208 + ], + [ + 77.546371839530096, + 12.960293376058599 + ], + [ + 77.546378570386295, + 12.960280397879901 + ], + [ + 77.546503229186996, + 12.9600400380151 + ], + [ + 77.546622279429798, + 12.9598104918564 + ], + [ + 77.546626793018902, + 12.959801413042101 + ], + [ + 77.546631211300706, + 12.959793469913199 + ], + [ + 77.546633877251097, + 12.9597886735329 + ], + [ + 77.546718646567001, + 12.959636245381001 + ], + [ + 77.546863079410002, + 12.9593765323956 + ], + [ + 77.546864320571999, + 12.9593743004374 + ], + [ + 77.546865283128, + 12.959372571725 + ], + [ + 77.546868945091305, + 12.9593659857718 + ], + [ + 77.546869914850703, + 12.959364240726501 + ], + [ + 77.546872408900498, + 12.9593597523019 + ], + [ + 77.547083254871495, + 12.9589802106389 + ], + [ + 77.547092862812406, + 12.9589629146493 + ], + [ + 77.547098897541204, + 12.9589520537704 + ], + [ + 77.547122424841206, + 12.9589058986137 + ], + [ + 77.547237758324997, + 12.958679655453199 + ], + [ + 77.5472439750245, + 12.9586683013073 + ], + [ + 77.547591080831495, + 12.9580403844398 + ], + [ + 77.547690550130199, + 12.9578604237677 + ], + [ + 77.547727899941194, + 12.957792851301299 + ], + [ + 77.547788771492904, + 12.957682855020201 + ], + [ + 77.547913898376706, + 12.9574567490062 + ], + [ + 77.548027913443093, + 12.957251155569899 + ], + [ + 77.548068807683606, + 12.957177417482701 + ], + [ + 77.548166338420899, + 12.957001006452501 + ], + [ + 77.548235219974401, + 12.9568764157651 + ], + [ + 77.5482531440705, + 12.9568439947729 + ], + [ + 77.548375782400797, + 12.9566221701541 + ], + [ + 77.548385866535298, + 12.9566038603205 + ], + [ + 77.548016052569906, + 12.9565184823082 + ], + [ + 77.547987805743503, + 12.956511961052 + ], + [ + 77.547785165720398, + 12.956473228373699 + ], + [ + 77.547711141821097, + 12.956459153914301 + ], + [ + 77.547443816674601, + 12.9564083267417 + ], + [ + 77.547220286786299, + 12.956365826332201 + ], + [ + 77.546913850126302, + 12.956294837276699 + ], + [ + 77.546646912338304, + 12.956203991827 + ], + [ + 77.546519207526103, + 12.9561429196931 + ], + [ + 77.546335716256607, + 12.9560551697825 + ], + [ + 77.546304323468206, + 12.9560368463926 + ], + [ + 77.545999766307403, + 12.9558590841624 + ], + [ + 77.545876403609, + 12.9557870797146 + ], + [ + 77.545712377832501, + 12.9556896137126 + ], + [ + 77.545508913636098, + 12.955568713214401 + ], + [ + 77.545364023171999, + 12.955439904011101 + ], + [ + 77.544152568558999, + 12.9557413185559 + ], + [ + 77.543696582452696, + 12.9558669079496 + ], + [ + 77.543113074808204, + 12.9560243777278 + ], + [ + 77.542903747175799, + 12.9551544008914 + ], + [ + 77.542527474112106, + 12.955309679795301 + ], + [ + 77.542132850133697, + 12.955474886670901 + ], + [ + 77.5418341793347, + 12.9556066739919 + ], + [ + 77.541823952816699, + 12.9555839223717 + ], + [ + 77.541725674366205, + 12.9556241871075 + ], + [ + 77.541540300038207, + 12.955706315799199 + ], + [ + 77.541467363791099, + 12.955724238760601 + ], + [ + 77.541297207645798, + 12.955768927169199 + ], + [ + 77.541272837655896, + 12.955769165005 + ], + [ + 77.541231371873494, + 12.955790039588299 + ], + [ + 77.541293221488104, + 12.956118011000299 + ], + [ + 77.541303216903302, + 12.956344573745801 + ], + [ + 77.541314041511399, + 12.9564506031688 + ], + [ + 77.541343920437996, + 12.956731602446601 + ], + [ + 77.541346530369395, + 12.9567510539657 + ], + [ + 77.541392843091799, + 12.957072809210301 + ], + [ + 77.541394841543095, + 12.957077570863699 + ], + [ + 77.541571798658097, + 12.9570410576501 + ], + [ + 77.541681865913702, + 12.9570313776765 + ], + [ + 77.542046792203806, + 12.956965663656 + ], + [ + 77.542171345742801, + 12.956942455354101 + ], + [ + 77.542382069150406, + 12.9569173378608 + ], + [ + 77.542505998537607, + 12.956877662558799 + ], + [ + 77.542628482060195, + 12.9572024397762 + ], + [ + 77.542635105984502, + 12.9572066783106 + ], + [ + 77.542670930718501, + 12.957206328459099 + ], + [ + 77.542851406720004, + 12.957141847132601 + ], + [ + 77.542878399851404, + 12.9571358464823 + ], + [ + 77.542891654975705, + 12.957145039916499 + ], + [ + 77.543029932404906, + 12.9574825395601 + ], + [ + 77.543071572450103, + 12.9575681791618 + ], + [ + 77.5431906844818, + 12.957802238468799 + ], + [ + 77.5433894505708, + 12.9582371712028 + ], + [ + 77.543389759835307, + 12.9582378719831 + ], + [ + 77.543497627025204, + 12.958496503352601 + ], + [ + 77.543524281465906, + 12.9585414827212 + ], + [ + 77.543619237910704, + 12.9586997434625 + ], + [ + 77.543762505529202, + 12.9589512947461 + ], + [ + 77.543805818995196, + 12.959011267237599 + ], + [ + 77.543879118706997, + 12.9591445394408 + ], + [ + 77.543949086613793, + 12.9593111296949 + ], + [ + 77.543982404664604, + 12.959422745165099 + ], + [ + 77.544020720423006, + 12.9597376007452 + ], + [ + 77.544062367986498, + 12.9600724471559 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "202", + "group": "Chamundinagara", + "Corporatio": "West", + "ac_no": "167", + "ac": "Vijayanagar", + "corporat_1": "5", + "ward_id": "73", + "ward_name": "73 - New Timberyard Layout", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ವಿಜಯನಗರ", + "ward_name_": "ನ್ಯೂ ಟಿಂಬರ್‌ ಯಾರ್ಡ್ ಲೇಔಟ್", + "dig_ward_n": "Chamundinagara", + "Assembly": "167 - Vijayanagar", + "Slno": "73" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.549452633208702, + 12.9450450233974 + ], + [ + 77.549459022863104, + 12.945014280425699 + ], + [ + 77.548798002199703, + 12.945098707671599 + ], + [ + 77.548793381364803, + 12.9450415444432 + ], + [ + 77.548741792271002, + 12.944629726755201 + ], + [ + 77.548722862425393, + 12.944485537921601 + ], + [ + 77.548687397953998, + 12.944187348743601 + ], + [ + 77.548298725042798, + 12.9442388664331 + ], + [ + 77.547943666847303, + 12.9442839373752 + ], + [ + 77.547982573988904, + 12.9445527289331 + ], + [ + 77.548007931702003, + 12.9447464071539 + ], + [ + 77.547709800104897, + 12.9447774626982 + ], + [ + 77.547652448958203, + 12.9447804704012 + ], + [ + 77.547051413619698, + 12.944854843924 + ], + [ + 77.546247013216899, + 12.944979273589301 + ], + [ + 77.546250877505898, + 12.9450256450578 + ], + [ + 77.546096305944403, + 12.945035305780401 + ], + [ + 77.545883770047396, + 12.944907784242099 + ], + [ + 77.545688623451099, + 12.9449502914216 + ], + [ + 77.545385276761706, + 12.9450449665029 + ], + [ + 77.545331551532001, + 12.945051522476 + ], + [ + 77.545384201471805, + 12.945322627669199 + ], + [ + 77.544166093570695, + 12.9456806420494 + ], + [ + 77.544496752073798, + 12.9462025590793 + ], + [ + 77.544315585172498, + 12.946301680280399 + ], + [ + 77.544382722850898, + 12.9464494744349 + ], + [ + 77.544686730772, + 12.947027673654601 + ], + [ + 77.544526738319405, + 12.947169615504 + ], + [ + 77.544210216836703, + 12.9473645261013 + ], + [ + 77.543966995065801, + 12.9475011301096 + ], + [ + 77.543658803095795, + 12.947681047584 + ], + [ + 77.543397256396901, + 12.9478126538847 + ], + [ + 77.543182354969204, + 12.947902612621901 + ], + [ + 77.543092396231998, + 12.9479392624777 + ], + [ + 77.543005765226994, + 12.9479400344923 + ], + [ + 77.543012330893603, + 12.947986583977601 + ], + [ + 77.543077770504794, + 12.9480708053529 + ], + [ + 77.543177704654894, + 12.948191742148399 + ], + [ + 77.543208542568095, + 12.948228492377501 + ], + [ + 77.543250499769997, + 12.9482402028416 + ], + [ + 77.543313961269902, + 12.948347408600201 + ], + [ + 77.543317501830302, + 12.948361356117299 + ], + [ + 77.543430574447797, + 12.9486139530066 + ], + [ + 77.543492212841699, + 12.948852177069901 + ], + [ + 77.543525530892495, + 12.949023765031599 + ], + [ + 77.543588835189098, + 12.9492220074339 + ], + [ + 77.543658803095795, + 12.949450236082001 + ], + [ + 77.543743986683893, + 12.9497501595968 + ], + [ + 77.543748761833001, + 12.949766757564699 + ], + [ + 77.543832056959999, + 12.950029970166099 + ], + [ + 77.543922015697206, + 12.9503331644284 + ], + [ + 77.544053621997904, + 12.9507163220128 + ], + [ + 77.544123589904601, + 12.950952880173499 + ], + [ + 77.544228541764596, + 12.951306884463399 + ], + [ + 77.544258819429601, + 12.951408420388599 + ], + [ + 77.544310170989107, + 12.951568431162199 + ], + [ + 77.544317165454501, + 12.9515921204286 + ], + [ + 77.544385136603495, + 12.951814984738199 + ], + [ + 77.544417611520103, + 12.9521025880856 + ], + [ + 77.544455506703898, + 12.952234170245699 + ], + [ + 77.544477876075604, + 12.9522769793628 + ], + [ + 77.544677094236505, + 12.952195834006099 + ], + [ + 77.544816605361504, + 12.952109849487901 + ], + [ + 77.545049831717193, + 12.951989904505 + ], + [ + 77.545201428848301, + 12.9519016116703 + ], + [ + 77.545442984716701, + 12.951778334882301 + ], + [ + 77.5455359262901, + 12.951763784753 + ], + [ + 77.545581254627606, + 12.9517633417595 + ], + [ + 77.545664802955898, + 12.951782604773699 + ], + [ + 77.545750959216207, + 12.9517913458139 + ], + [ + 77.545846133131505, + 12.9518033234204 + ], + [ + 77.545966078114404, + 12.9518566323017 + ], + [ + 77.5461691520822, + 12.951889823272101 + ], + [ + 77.5462409520336, + 12.952109849487901 + ], + [ + 77.546262608766597, + 12.952526325122999 + ], + [ + 77.546264274669198, + 12.9529094827073 + ], + [ + 77.546284265499594, + 12.9532226723849 + ], + [ + 77.546317583550405, + 12.9537124477318 + ], + [ + 77.546320915355494, + 12.953927349159599 + ], + [ + 77.546326733341402, + 12.954140040534799 + ], + [ + 77.546334242575895, + 12.9543938018709 + ], + [ + 77.546344237991093, + 12.954726982379 + ], + [ + 77.546352567503803, + 12.9551034763532 + ], + [ + 77.546367560626706, + 12.9555166201832 + ], + [ + 77.546372558334198, + 12.955916436792901 + ], + [ + 77.546304323468206, + 12.9560368463926 + ], + [ + 77.546335716256607, + 12.9560551697825 + ], + [ + 77.546519207526103, + 12.9561429196931 + ], + [ + 77.546646912338304, + 12.956203991827 + ], + [ + 77.546913850126302, + 12.956294837276699 + ], + [ + 77.547220286786299, + 12.956365826332201 + ], + [ + 77.547443816674601, + 12.9564083267417 + ], + [ + 77.547711141821097, + 12.956459153914301 + ], + [ + 77.547785165720398, + 12.956473228373699 + ], + [ + 77.547987805743503, + 12.956511961052 + ], + [ + 77.548016052569906, + 12.9565184823082 + ], + [ + 77.548385866535298, + 12.9566038603205 + ], + [ + 77.548405175641307, + 12.956568803004201 + ], + [ + 77.5484673509104, + 12.9564552622563 + ], + [ + 77.548913937879206, + 12.9556830859876 + ], + [ + 77.548969195524506, + 12.955587541258501 + ], + [ + 77.549090619787407, + 12.955392530568099 + ], + [ + 77.549190155457296, + 12.9552326720056 + ], + [ + 77.549190343979404, + 12.955232369306399 + ], + [ + 77.549192044306807, + 12.955229639557199 + ], + [ + 77.5491937446251, + 12.955226908904599 + ], + [ + 77.549196925016702, + 12.955221801203299 + ], + [ + 77.549199635010396, + 12.955217448885801 + ], + [ + 77.549215404631397, + 12.9551921221813 + ], + [ + 77.549291824577907, + 12.9550693882858 + ], + [ + 77.5493073775759, + 12.9550444106298 + ], + [ + 77.549356269846896, + 12.954985083922599 + ], + [ + 77.549429314290705, + 12.954896449080801 + ], + [ + 77.549460734992195, + 12.9548583224478 + ], + [ + 77.549509366929399, + 12.9547993090644 + ], + [ + 77.549533224296297, + 12.954770359780699 + ], + [ + 77.549567276491004, + 12.954729041637799 + ], + [ + 77.549569386182, + 12.9547263377448 + ], + [ + 77.549581483433599, + 12.954710833257799 + ], + [ + 77.549577897731297, + 12.9547111430172 + ], + [ + 77.549346219116103, + 12.954731205826199 + ], + [ + 77.549345005413599, + 12.9547231886198 + ], + [ + 77.549294990020201, + 12.954392907267399 + ], + [ + 77.549288185589603, + 12.9543466722275 + ], + [ + 77.549287713140302, + 12.9543350058984 + ], + [ + 77.549284498652696, + 12.954255566823599 + ], + [ + 77.549278090724997, + 12.954097216089 + ], + [ + 77.549277687417501, + 12.9540872746999 + ], + [ + 77.549276840499104, + 12.954066328034999 + ], + [ + 77.549274629153402, + 12.9540116891765 + ], + [ + 77.549274343512195, + 12.954004620556001 + ], + [ + 77.549273221939302, + 12.953976326895701 + ], + [ + 77.549271708959907, + 12.9539381748483 + ], + [ + 77.549271680485404, + 12.9539374586797 + ], + [ + 77.549269677817094, + 12.9538869411896 + ], + [ + 77.549264273424001, + 12.9537506197378 + ], + [ + 77.549263628801498, + 12.953743849160499 + ], + [ + 77.549263129689606, + 12.953737075351899 + ], + [ + 77.549260699343293, + 12.953704092872499 + ], + [ + 77.5492606352542, + 12.9537032261739 + ], + [ + 77.549259375223897, + 12.9536861286968 + ], + [ + 77.549251437653595, + 12.9535784113313 + ], + [ + 77.549250941784393, + 12.9535716844708 + ], + [ + 77.549246390060006, + 12.953509919402601 + ], + [ + 77.549246386846406, + 12.953509875164301 + ], + [ + 77.549242921928396, + 12.953462849419299 + ], + [ + 77.549242010143203, + 12.953450191771299 + ], + [ + 77.549241954406597, + 12.953449421661601 + ], + [ + 77.549238571982301, + 12.9534024457027 + ], + [ + 77.549237558218707, + 12.9533883660961 + ], + [ + 77.549234987049402, + 12.953363450221101 + ], + [ + 77.549234681499399, + 12.953360489848199 + ], + [ + 77.5492294033332, + 12.9533093494036 + ], + [ + 77.549218348097298, + 12.953202214563399 + ], + [ + 77.549216507591893, + 12.9531843774081 + ], + [ + 77.549215204661706, + 12.9531717534023 + ], + [ + 77.549187703987201, + 12.952902112530399 + ], + [ + 77.549187093842605, + 12.9528987296066 + ], + [ + 77.549171689164993, + 12.952766717061699 + ], + [ + 77.549156820212502, + 12.952639280737699 + ], + [ + 77.549132013255502, + 12.952423602707499 + ], + [ + 77.549123344819904, + 12.9523482401157 + ], + [ + 77.549130393354204, + 12.952351122749199 + ], + [ + 77.549131438605002, + 12.952351549795999 + ], + [ + 77.549146450778395, + 12.9523487997718 + ], + [ + 77.549237218551596, + 12.952332172341899 + ], + [ + 77.549461307586398, + 12.9522911209367 + ], + [ + 77.549463265074095, + 12.952290762073201 + ], + [ + 77.549502663127797, + 12.9522835444252 + ], + [ + 77.549474492271102, + 12.9521140700452 + ], + [ + 77.549473696496705, + 12.9521092822451 + ], + [ + 77.549399022831096, + 12.951660039043601 + ], + [ + 77.549387483045507, + 12.951648944514501 + ], + [ + 77.5493792549604, + 12.9516410339046 + ], + [ + 77.549398055602296, + 12.951621651267301 + ], + [ + 77.549392358528706, + 12.951570887147501 + ], + [ + 77.5493702882913, + 12.9514954380054 + ], + [ + 77.549354397205505, + 12.951461006205101 + ], + [ + 77.5493529899734, + 12.9514579563299 + ], + [ + 77.549339675964404, + 12.9514291071096 + ], + [ + 77.549330708762795, + 12.9513964442831 + ], + [ + 77.549323927483002, + 12.9513524667538 + ], + [ + 77.5493046902739, + 12.9513289390867 + ], + [ + 77.549312577216, + 12.9513119219339 + ], + [ + 77.549366321835706, + 12.951275257335 + ], + [ + 77.549506737741297, + 12.951212899138101 + ], + [ + 77.549590221402497, + 12.951156744798499 + ], + [ + 77.5496040904804, + 12.9511477445491 + ], + [ + 77.549689168380993, + 12.9510925337626 + ], + [ + 77.549745077649604, + 12.951042295948801 + ], + [ + 77.549755864922105, + 12.9510275090596 + ], + [ + 77.5498186589206, + 12.9510314117012 + ], + [ + 77.549838105013905, + 12.951018798709301 + ], + [ + 77.549840518437605, + 12.9510172657192 + ], + [ + 77.549840518437605, + 12.9510172657192 + ], + [ + 77.549915924632202, + 12.950969368203699 + ], + [ + 77.5499302004621, + 12.9509603013228 + ], + [ + 77.550009918607799, + 12.950930158336501 + ], + [ + 77.550029330206698, + 12.9509141576803 + ], + [ + 77.550026280603106, + 12.950840781069299 + ], + [ + 77.550029256540398, + 12.9507133047591 + ], + [ + 77.550032295445305, + 12.9505832348898 + ], + [ + 77.550044329035799, + 12.950464537410801 + ], + [ + 77.550054127840895, + 12.9504091043038 + ], + [ + 77.550060390232105, + 12.950402267016999 + ], + [ + 77.550068830869407, + 12.9503265192615 + ], + [ + 77.5500697554737, + 12.9501909905803 + ], + [ + 77.550052801301703, + 12.9501135507806 + ], + [ + 77.5500468108185, + 12.950086187476501 + ], + [ + 77.550017662181702, + 12.9499938677308 + ], + [ + 77.549990906290901, + 12.949910559198001 + ], + [ + 77.5499870874999, + 12.949893477738501 + ], + [ + 77.549971002717697, + 12.9498215369319 + ], + [ + 77.549959524232705, + 12.9497685707637 + ], + [ + 77.549955325706705, + 12.9495822723487 + ], + [ + 77.5499740822804, + 12.949501906293399 + ], + [ + 77.549990352372902, + 12.949403495291399 + ], + [ + 77.549947675591895, + 12.9492830746746 + ], + [ + 77.549896468590802, + 12.949116434987101 + ], + [ + 77.549878897562095, + 12.9490763973842 + ], + [ + 77.5498773472588, + 12.949072864653701 + ], + [ + 77.549814545986806, + 12.9489297679561 + ], + [ + 77.549793674503405, + 12.9488023578803 + ], + [ + 77.549806614748206, + 12.948646635678699 + ], + [ + 77.549807011096505, + 12.9486418624107 + ], + [ + 77.549808231309299, + 12.948600818726501 + ], + [ + 77.549808258925594, + 12.948599821031401 + ], + [ + 77.549808277104901, + 12.9485992074941 + ], + [ + 77.549808277104901, + 12.9485992074941 + ], + [ + 77.549809447241401, + 12.948559716358901 + ], + [ + 77.549809460837196, + 12.948559241907001 + ], + [ + 77.549810490939095, + 12.9485245008444 + ], + [ + 77.549810515005206, + 12.948523697429 + ], + [ + 77.549810755013397, + 12.948515599135 + ], + [ + 77.549810761889503, + 12.9485153695877 + ], + [ + 77.549810953111006, + 12.948508904331399 + ], + [ + 77.549811001998805, + 12.9485072812308 + ], + [ + 77.549811006690703, + 12.948507108623099 + ], + [ + 77.549811098531706, + 12.9485040034204 + ], + [ + 77.549811106347093, + 12.9485037756709 + ], + [ + 77.549811247147403, + 12.9484991449409 + ], + [ + 77.549811251561707, + 12.9484990355785 + ], + [ + 77.549811393629, + 12.948494167225 + ], + [ + 77.549811403917403, + 12.9484937298476 + ], + [ + 77.549811526055194, + 12.9484896187923 + ], + [ + 77.549811728940696, + 12.948482579722 + ], + [ + 77.549811921434596, + 12.9484760584385 + ], + [ + 77.549811967235698, + 12.948474494093199 + ], + [ + 77.549813439212599, + 12.9484249680273 + ], + [ + 77.549803139598495, + 12.948386454759 + ], + [ + 77.549768554222496, + 12.948257137055 + ], + [ + 77.549715435639001, + 12.9481289132145 + ], + [ + 77.549618578849504, + 12.9480022467115 + ], + [ + 77.549617838499401, + 12.948000369329399 + ], + [ + 77.549606168460699, + 12.947970746898299 + ], + [ + 77.549572471651601, + 12.947884118180699 + ], + [ + 77.549560070039206, + 12.9478374518159 + ], + [ + 77.549556347992095, + 12.947823442977199 + ], + [ + 77.549554821214898, + 12.947817693813199 + ], + [ + 77.549549723789099, + 12.947798511642601 + ], + [ + 77.549558959874204, + 12.9477959593201 + ], + [ + 77.549573674155695, + 12.9477918957962 + ], + [ + 77.549659950732007, + 12.947768069474099 + ], + [ + 77.549706863963607, + 12.947755630434401 + ], + [ + 77.549708828981807, + 12.947755109781401 + ], + [ + 77.549823586196197, + 12.947724683748101 + ], + [ + 77.549814012764202, + 12.947667273731 + ], + [ + 77.549810173237304, + 12.9476442530857 + ], + [ + 77.549809478133795, + 12.9476401229243 + ], + [ + 77.549794915487894, + 12.947554247488201 + ], + [ + 77.549790119072497, + 12.947525991594601 + ], + [ + 77.549788294522102, + 12.947515238346201 + ], + [ + 77.549764085835506, + 12.947372596858999 + ], + [ + 77.549759961793697, + 12.9473560152767 + ], + [ + 77.549727756512894, + 12.947207281371 + ], + [ + 77.549711635127494, + 12.947132880717099 + ], + [ + 77.549688407543101, + 12.9470789796446 + ], + [ + 77.549676257442201, + 12.9470507857668 + ], + [ + 77.549673196315695, + 12.947032746429199 + ], + [ + 77.549646144653096, + 12.9468636115219 + ], + [ + 77.549629454010798, + 12.9467659314285 + ], + [ + 77.549625337487498, + 12.9467418455889 + ], + [ + 77.549623587825593, + 12.9467315704401 + ], + [ + 77.549606959774493, + 12.946633611461801 + ], + [ + 77.549581496455701, + 12.946450909015599 + ], + [ + 77.549567485573206, + 12.9464318474837 + ], + [ + 77.549574625392907, + 12.946397897694901 + ], + [ + 77.549568205488299, + 12.9462195262265 + ], + [ + 77.549570081425998, + 12.9461795860199 + ], + [ + 77.549572932491301, + 12.9461188845964 + ], + [ + 77.549573884368499, + 12.946098632251701 + ], + [ + 77.549548618711796, + 12.9459452208866 + ], + [ + 77.5495456587239, + 12.9459272501194 + ], + [ + 77.549515162659802, + 12.945815744732499 + ], + [ + 77.549512412598702, + 12.9458037420056 + ], + [ + 77.549511547975399, + 12.945799969465 + ], + [ + 77.5494788027369, + 12.9456462761966 + ], + [ + 77.549477692280306, + 12.945641065034501 + ], + [ + 77.549463626912996, + 12.9455034242589 + ], + [ + 77.549473738302794, + 12.9454220134959 + ], + [ + 77.549472884563798, + 12.945406540075 + ], + [ + 77.549471619974099, + 12.9453836369649 + ], + [ + 77.549462909198496, + 12.9452064172091 + ], + [ + 77.549452633208702, + 12.9450450233974 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "203", + "group": "DARGA MOHALLA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "22", + "ward_name": "22 - K. S. Nissar Ahmed Ward", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಕೆ. ಎಸ್. ನಿಸಾರ್ ಅಹಮದ್ ವಾರ್ಡ್", + "dig_ward_n": "DARGA MOHALLA", + "Assembly": "151 - K.R. Pura", + "Slno": "22" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.667303133952402, + 12.990816512202599 + ], + [ + 77.666906997227898, + 12.991053386368399 + ], + [ + 77.6668950472164, + 12.9910631409789 + ], + [ + 77.666777692288605, + 12.9911589350507 + ], + [ + 77.666340176498494, + 12.991516065817001 + ], + [ + 77.666307628680201, + 12.9915426334102 + ], + [ + 77.666259722490196, + 12.9915817377802 + ], + [ + 77.666113400751598, + 12.9917428303914 + ], + [ + 77.666083871384203, + 12.9917753407099 + ], + [ + 77.665876293244096, + 12.992003873303799 + ], + [ + 77.665582630550105, + 12.992327178761199 + ], + [ + 77.665531872427195, + 12.9923830603844 + ], + [ + 77.665493867829298, + 12.9924373774559 + ], + [ + 77.664997081311299, + 12.9931473942667 + ], + [ + 77.664790696311996, + 12.9934763785493 + ], + [ + 77.664413910026695, + 12.9940769851559 + ], + [ + 77.664164289015503, + 12.994474885631501 + ], + [ + 77.664160331338195, + 12.9944817016464 + ], + [ + 77.664135421805099, + 12.994521480438101 + ], + [ + 77.663540351445604, + 12.995519053760701 + ], + [ + 77.663535830072504, + 12.995527004789601 + ], + [ + 77.663396262717498, + 12.9957953618094 + ], + [ + 77.663205771593496, + 12.9961616330902 + ], + [ + 77.6630387401527, + 12.9963990760125 + ], + [ + 77.662833703816403, + 12.996690544012401 + ], + [ + 77.662790684155198, + 12.9967598686271 + ], + [ + 77.662817060280503, + 12.9967747411683 + ], + [ + 77.663516491731698, + 12.9971691234368 + ], + [ + 77.663844942605294, + 12.9973543228705 + ], + [ + 77.664070305814903, + 12.9974841306665 + ], + [ + 77.664044245011496, + 12.997526281713601 + ], + [ + 77.664391214081903, + 12.9977556802788 + ], + [ + 77.665504931972094, + 12.9983459792721 + ], + [ + 77.665538218381101, + 12.9983623573504 + ], + [ + 77.665957630899499, + 12.9985687154225 + ], + [ + 77.666626750283598, + 12.9988979318366 + ], + [ + 77.667036388170899, + 12.999105661421099 + ], + [ + 77.667102134005702, + 12.999142917394201 + ], + [ + 77.667134798443797, + 12.9992032318744 + ], + [ + 77.667023239003896, + 12.999392751566599 + ], + [ + 77.667470310680898, + 12.999592180599 + ], + [ + 77.667591763591204, + 12.999630685639399 + ], + [ + 77.667645632907195, + 12.999703948518199 + ], + [ + 77.667623717628899, + 13.0001312964447 + ], + [ + 77.667599610822805, + 13.0003723645059 + ], + [ + 77.6675886531836, + 13.000716434374899 + ], + [ + 77.667544822627093, + 13.0010561211883 + ], + [ + 77.667533864987902, + 13.001465936892201 + ], + [ + 77.667547014154906, + 13.001866986484799 + ], + [ + 77.667593036239296, + 13.0020664155172 + ], + [ + 77.6676313879763, + 13.0023513141349 + ], + [ + 77.667643441379397, + 13.002441166775901 + ], + [ + 77.667668501619801, + 13.0026991653585 + ], + [ + 77.667701248826802, + 13.002798260672799 + ], + [ + 77.667725623672894, + 13.002866323174599 + ], + [ + 77.6677869864521, + 13.0030021978999 + ], + [ + 77.667865881453906, + 13.0031183488748 + ], + [ + 77.667909712010498, + 13.0031994354045 + ], + [ + 77.668014905346197, + 13.003384619506001 + ], + [ + 77.668133247848999, + 13.0033791406864 + ], + [ + 77.668547446608599, + 13.0032783304063 + ], + [ + 77.668868505435398, + 13.0032410744332 + ], + [ + 77.669152308289199, + 13.0032213506828 + ], + [ + 77.669156691344895, + 13.0030098682473 + ], + [ + 77.669500940153895, + 13.003007742144099 + ], + [ + 77.669819076439097, + 13.003011639368999 + ], + [ + 77.670113782092301, + 13.0030132893757 + ], + [ + 77.670134997276804, + 13.0030134080415 + ], + [ + 77.670489709514399, + 13.003045034132199 + ], + [ + 77.6707313040896, + 13.003077805609999 + ], + [ + 77.670825539786307, + 13.0030810929017 + ], + [ + 77.670966893331197, + 13.003110678527401 + ], + [ + 77.6713325006628, + 13.003144442033699 + ], + [ + 77.671433688758597, + 13.003250936308399 + ], + [ + 77.671830075485602, + 13.003306723256401 + ], + [ + 77.672177355214401, + 13.0033364603952 + ], + [ + 77.672593892369903, + 13.003354644076101 + ], + [ + 77.672716006480996, + 13.003365717578699 + ], + [ + 77.672680942035697, + 13.002964667986101 + ], + [ + 77.672661218285299, + 13.002614023533599 + ], + [ + 77.672705048841806, + 13.002593204019201 + ], + [ + 77.672988851695607, + 13.0025526607544 + ], + [ + 77.673304431702903, + 13.0025077344339 + ], + [ + 77.673628777821506, + 13.0024595208217 + ], + [ + 77.673923538314398, + 13.0024343182516 + ], + [ + 77.674161549590096, + 13.0023897821576 + ], + [ + 77.674201033092899, + 13.0023893752874 + ], + [ + 77.674585379718593, + 13.0024047326259 + ], + [ + 77.674718515034201, + 13.0023959665146 + ], + [ + 77.674775494757696, + 13.0023888440492 + ], + [ + 77.674831926599296, + 13.002394322868801 + ], + [ + 77.675152985426195, + 13.002388296167201 + ], + [ + 77.675455416266502, + 13.002364189361099 + ], + [ + 77.675442267099598, + 13.002105041195399 + ], + [ + 77.675376395346404, + 13.001856137904101 + ], + [ + 77.675375425500803, + 13.0017259068811 + ], + [ + 77.675364467861598, + 13.0015889363918 + ], + [ + 77.675356943651494, + 13.0015150505797 + ], + [ + 77.675380904320306, + 13.001439912499499 + ], + [ + 77.675463086613902, + 13.001379645484199 + ], + [ + 77.675527862112503, + 13.001087833774999 + ], + [ + 77.675569588886205, + 13.0009784099457 + ], + [ + 77.675579981755305, + 13.0008937925378 + ], + [ + 77.675590553611798, + 13.000892893997399 + ], + [ + 77.675628555890896, + 13.0007545281448 + ], + [ + 77.677111169989999, + 13.000741079537301 + ], + [ + 77.677547770849699, + 13.0007617374718 + ], + [ + 77.677200233290094, + 13.000563539481799 + ], + [ + 77.677034927724094, + 13.000473499237801 + ], + [ + 77.676671979580206, + 13.0004131884948 + ], + [ + 77.676369977637194, + 13.0002855269741 + ], + [ + 77.675575631502696, + 12.9999497396356 + ], + [ + 77.673916185925606, + 12.9991393292281 + ], + [ + 77.673490764146607, + 12.998931566702399 + ], + [ + 77.673388746137803, + 12.998881744415399 + ], + [ + 77.672843127206903, + 12.9986212116813 + ], + [ + 77.671864732609095, + 12.998154023764799 + ], + [ + 77.671588004714906, + 12.9980218839807 + ], + [ + 77.671335679090205, + 12.997898451580699 + ], + [ + 77.670920677638406, + 12.997695439710199 + ], + [ + 77.670696713120805, + 12.9975858798104 + ], + [ + 77.669685301983904, + 12.9970286084304 + ], + [ + 77.669455677293101, + 12.996922222123001 + ], + [ + 77.668953486744201, + 12.9966895532576 + ], + [ + 77.668796687483393, + 12.9966166007294 + ], + [ + 77.668452970561304, + 12.996456681742 + ], + [ + 77.667591940475504, + 12.996038618225301 + ], + [ + 77.667723432145195, + 12.995893977388601 + ], + [ + 77.668030246041099, + 12.9955038854352 + ], + [ + 77.668301995491902, + 12.9952233698731 + ], + [ + 77.668376507437998, + 12.9950962612591 + ], + [ + 77.668247633459998, + 12.9947037051218 + ], + [ + 77.668135439376897, + 12.994285395962599 + ], + [ + 77.668060927430702, + 12.9940530940128 + ], + [ + 77.668017096874195, + 12.993851473452599 + ], + [ + 77.668212142850905, + 12.9938098344238 + ], + [ + 77.668369932854702, + 12.993784631853799 + ], + [ + 77.668827688231204, + 12.9937432667663 + ], + [ + 77.668925759101597, + 12.9936534141253 + ], + [ + 77.669067112646502, + 12.993806821073299 + ], + [ + 77.669055059243505, + 12.993274279811001 + ], + [ + 77.669070399938306, + 12.9927570792435 + ], + [ + 77.668963015074596, + 12.9927521483059 + ], + [ + 77.668869327259998, + 12.9927329724374 + ], + [ + 77.668788514669799, + 12.992699825578701 + ], + [ + 77.6688564520325, + 12.992515737241201 + ], + [ + 77.668939730090003, + 12.992338223487099 + ], + [ + 77.668703045084499, + 12.992217689456499 + ], + [ + 77.668788514669899, + 12.992020451952 + ], + [ + 77.668915623283894, + 12.9917848627104 + ], + [ + 77.668963836896197, + 12.9916807651386 + ], + [ + 77.669059168356696, + 12.9916774778468 + ], + [ + 77.669053689537094, + 12.991630359998499 + ], + [ + 77.669044923425801, + 12.9914013453404 + ], + [ + 77.668939730090102, + 12.991376142770401 + ], + [ + 77.668854260504801, + 12.9913531317282 + ], + [ + 77.668733726474201, + 12.9913136842273 + ], + [ + 77.668532105913997, + 12.991200820544099 + ], + [ + 77.668666884875407, + 12.9909082515791 + ], + [ + 77.668705236612396, + 12.9908074412989 + ], + [ + 77.668584702581896, + 12.9907592276867 + ], + [ + 77.668373220146407, + 12.9906386936562 + ], + [ + 77.668380890493793, + 12.9905850012244 + ], + [ + 77.668425816814306, + 12.9905302130287 + ], + [ + 77.668475126190501, + 12.9904425519155 + ], + [ + 77.668435678689505, + 12.9903001026067 + ], + [ + 77.668306795713704, + 12.990227471430799 + ], + [ + 77.667871572060903, + 12.990476605483799 + ], + [ + 77.667838609581295, + 12.9904963159831 + ], + [ + 77.667303133952402, + 12.990816512202599 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "205", + "group": "Deepanjali Nagara", + "Corporatio": "West", + "ac_no": "167", + "ac": "Vijayanagar", + "corporat_1": "5", + "ward_id": "92", + "ward_name": "92 - Deepanjali Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ವಿಜಯನಗರ", + "ward_name_": "ದೀಪಾಂಜಲಿ ನಗರ", + "dig_ward_n": "Deepanjali Nagara", + "Assembly": "167 - Vijayanagar", + "Slno": "92" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.526419809959606, + 12.9458329570262 + ], + [ + 77.526420021465995, + 12.945834018370901 + ], + [ + 77.526437830144502, + 12.9458736096454 + ], + [ + 77.526481745593799, + 12.9460172644299 + ], + [ + 77.526602905244502, + 12.9462918297491 + ], + [ + 77.526949484259603, + 12.946982891098701 + ], + [ + 77.527160157802598, + 12.9473252368559 + ], + [ + 77.527703680916204, + 12.9481385919771 + ], + [ + 77.528207287295203, + 12.9488704549674 + ], + [ + 77.528340437847504, + 12.9490639544739 + ], + [ + 77.529140694444294, + 12.950219204476101 + ], + [ + 77.529301901106905, + 12.950441418896199 + ], + [ + 77.529636877013502, + 12.9509031614846 + ], + [ + 77.529945175825901, + 12.951221974985 + ], + [ + 77.530587988188401, + 12.951605280961299 + ], + [ + 77.530651894470395, + 12.951640077262001 + ], + [ + 77.531352013611397, + 12.952021286452799 + ], + [ + 77.531899457423407, + 12.952229910343 + ], + [ + 77.531987645914, + 12.952263517946101 + ], + [ + 77.532219998771296, + 12.952330116574 + ], + [ + 77.532378237339302, + 12.9523754720943 + ], + [ + 77.532940186300493, + 12.952536540814499 + ], + [ + 77.533270825712506, + 12.952614754400701 + ], + [ + 77.533788384212102, + 12.952737182097099 + ], + [ + 77.534530797726603, + 12.953048154805 + ], + [ + 77.534591905322799, + 12.953073750932999 + ], + [ + 77.535294741104593, + 12.953550160916601 + ], + [ + 77.535380163069703, + 12.953608063235601 + ], + [ + 77.535870428781095, + 12.954051359267 + ], + [ + 77.536008285463495, + 12.953915668643299 + ], + [ + 77.536258767277801, + 12.953643985467201 + ], + [ + 77.536374115454805, + 12.953534655901899 + ], + [ + 77.536563868854998, + 12.9533548011521 + ], + [ + 77.536583326617404, + 12.9533282293391 + ], + [ + 77.536622502894005, + 12.9532747290099 + ], + [ + 77.536690387944603, + 12.953169524305499 + ], + [ + 77.536693221205596, + 12.953165132937601 + ], + [ + 77.5367527407398, + 12.9530546168778 + ], + [ + 77.536815060382807, + 12.952857565147699 + ], + [ + 77.536828656389204, + 12.952808490714 + ], + [ + 77.536908325338601, + 12.9525209381137 + ], + [ + 77.536933787593895, + 12.952450923963999 + ], + [ + 77.537156226756295, + 12.9518392784512 + ], + [ + 77.537221478525396, + 12.951625995285101 + ], + [ + 77.537376869492704, + 12.9511180845341 + ], + [ + 77.537390217421105, + 12.951074454131099 + ], + [ + 77.537413083365607, + 12.9510154198686 + ], + [ + 77.537526502729705, + 12.950722601025999 + ], + [ + 77.537555916001097, + 12.950662727802101 + ], + [ + 77.537571762630193, + 12.950614514137101 + ], + [ + 77.537594368550302, + 12.9505886624176 + ], + [ + 77.537676219912001, + 12.950441958827 + ], + [ + 77.537595277809103, + 12.950346070397501 + ], + [ + 77.537391119567701, + 12.9501616050186 + ], + [ + 77.536813007490096, + 12.9496317761489 + ], + [ + 77.536542012182693, + 12.949345171718599 + ], + [ + 77.536367195973796, + 12.949169981007801 + ], + [ + 77.536246864848906, + 12.949080315520201 + ], + [ + 77.535977152661999, + 12.948920390926499 + ], + [ + 77.535430176035106, + 12.9485767092033 + ], + [ + 77.535349781641202, + 12.9485285341466 + ], + [ + 77.535354519522102, + 12.948254533792699 + ], + [ + 77.535327095155793, + 12.9478865213056 + ], + [ + 77.5352956691125, + 12.947492853821601 + ], + [ + 77.535240323775994, + 12.9472009711755 + ], + [ + 77.535909987807301, + 12.947056196672699 + ], + [ + 77.536116363326698, + 12.946986894459499 + ], + [ + 77.5360252876429, + 12.9466158311554 + ], + [ + 77.535934187575506, + 12.9462423209626 + ], + [ + 77.535852893191006, + 12.9458515859875 + ], + [ + 77.535831426215296, + 12.945702525550701 + ], + [ + 77.535665623762398, + 12.945797536792799 + ], + [ + 77.535537693689804, + 12.9457628577452 + ], + [ + 77.535490802843697, + 12.9457532746022 + ], + [ + 77.535443665409304, + 12.945719310900399 + ], + [ + 77.535268548123, + 12.945465714687799 + ], + [ + 77.535143088922297, + 12.945350759348299 + ], + [ + 77.534991180379293, + 12.945223153289099 + ], + [ + 77.534657044323893, + 12.945152200523699 + ], + [ + 77.532925842835496, + 12.944827600244601 + ], + [ + 77.532941299991606, + 12.9439619995005 + ], + [ + 77.533501621901905, + 12.9439040351649 + ], + [ + 77.533636872018207, + 12.943517606261301 + ], + [ + 77.533605722896496, + 12.9434972700894 + ], + [ + 77.533625765683198, + 12.9434798450757 + ], + [ + 77.533795587759599, + 12.943158337428599 + ], + [ + 77.533870190642702, + 12.9430160972643 + ], + [ + 77.533891943012904, + 12.9429499095365 + ], + [ + 77.533897868438203, + 12.9428609274166 + ], + [ + 77.534051173723995, + 12.9425964878412 + ], + [ + 77.534139855800206, + 12.942400564530599 + ], + [ + 77.534142721597902, + 12.942298226285301 + ], + [ + 77.534176730927499, + 12.942190803155199 + ], + [ + 77.534270413120893, + 12.942103836346799 + ], + [ + 77.534296470853903, + 12.9420777662019 + ], + [ + 77.534391843408102, + 12.942061539445 + ], + [ + 77.534436721816803, + 12.9420649283869 + ], + [ + 77.534605714210997, + 12.942137341135499 + ], + [ + 77.534793870110605, + 12.942234476181101 + ], + [ + 77.534884976920196, + 12.9425677744441 + ], + [ + 77.534919027236398, + 12.9426090365275 + ], + [ + 77.535027356704006, + 12.9426208917646 + ], + [ + 77.535303685787696, + 12.942471908983199 + ], + [ + 77.535379341323093, + 12.9424338812745 + ], + [ + 77.535504998930804, + 12.942424053341499 + ], + [ + 77.535859059103402, + 12.9425869844438 + ], + [ + 77.536080946148999, + 12.942693829623201 + ], + [ + 77.536130731694996, + 12.9427005169666 + ], + [ + 77.536256506305605, + 12.9427021616254 + ], + [ + 77.536292598549295, + 12.9427104159968 + ], + [ + 77.536425840102297, + 12.942843031288 + ], + [ + 77.536460995216402, + 12.942878020393101 + ], + [ + 77.536601568219098, + 12.943041593094099 + ], + [ + 77.536658667827197, + 12.9431930693044 + ], + [ + 77.536688839415604, + 12.9432845685135 + ], + [ + 77.536710978121604, + 12.9434492937886 + ], + [ + 77.536760207839393, + 12.9434815417899 + ], + [ + 77.536773627895798, + 12.943496300402201 + ], + [ + 77.536858931996704, + 12.943496665380801 + ], + [ + 77.537372575290505, + 12.943525631484 + ], + [ + 77.537554188323497, + 12.9435230076914 + ], + [ + 77.538082843508406, + 12.9435153681511 + ], + [ + 77.538107177350298, + 12.943514492420499 + ], + [ + 77.538651000551098, + 12.943494919190901 + ], + [ + 77.538652612459003, + 12.943477907864199 + ], + [ + 77.538652639439604, + 12.943476023862701 + ], + [ + 77.538657042213998, + 12.9431763309935 + ], + [ + 77.538658232710404, + 12.9431232404272 + ], + [ + 77.538690941128607, + 12.9426034978042 + ], + [ + 77.538695425808001, + 12.942532233436699 + ], + [ + 77.538724684160499, + 12.941839663150001 + ], + [ + 77.538769293193496, + 12.941241807897001 + ], + [ + 77.538779490446998, + 12.941111833595 + ], + [ + 77.538780246877494, + 12.9411028448138 + ], + [ + 77.538780251006997, + 12.9411027977931 + ], + [ + 77.5387871991136, + 12.9410202828926 + ], + [ + 77.538831303783496, + 12.940713802239999 + ], + [ + 77.538853385605407, + 12.940563384978301 + ], + [ + 77.538887627701996, + 12.9401729115542 + ], + [ + 77.538898286927093, + 12.9400513567298 + ], + [ + 77.538920685501907, + 12.9398184945822 + ], + [ + 77.538925636716399, + 12.939795859565001 + ], + [ + 77.538966572879005, + 12.939589854177299 + ], + [ + 77.538966604193803, + 12.939589853872301 + ], + [ + 77.539005069204194, + 12.9393964281024 + ], + [ + 77.539007258377893, + 12.9393851142872 + ], + [ + 77.539011081109507, + 12.9393681098559 + ], + [ + 77.539100906537897, + 12.938968604288799 + ], + [ + 77.539111500133103, + 12.9389214600491 + ], + [ + 77.539114131116406, + 12.938909750728 + ], + [ + 77.539240880617598, + 12.9383506224589 + ], + [ + 77.539326483604796, + 12.9379353201812 + ], + [ + 77.5393417971585, + 12.9379125851463 + ], + [ + 77.539387429412301, + 12.937898261575601 + ], + [ + 77.539404922794603, + 12.937892771554299 + ], + [ + 77.539805375965798, + 12.9378132052141 + ], + [ + 77.539820255570305, + 12.9378062029205 + ], + [ + 77.539849493178394, + 12.9377924464461 + ], + [ + 77.539866590739805, + 12.937775339803901 + ], + [ + 77.539871172957007, + 12.937773036488201 + ], + [ + 77.539978149705405, + 12.9377629596468 + ], + [ + 77.540090779877403, + 12.9377426636346 + ], + [ + 77.540116284118696, + 12.937734839730901 + ], + [ + 77.540273283028696, + 12.9376866773123 + ], + [ + 77.540345043021901, + 12.937666779390799 + ], + [ + 77.540533393874, + 12.9376197706399 + ], + [ + 77.540577972563, + 12.9376075721724 + ], + [ + 77.540580470135097, + 12.9376068892057 + ], + [ + 77.540569834219795, + 12.9375798887142 + ], + [ + 77.540491768973595, + 12.9373751097189 + ], + [ + 77.540343693951996, + 12.937021940045399 + ], + [ + 77.540198356793098, + 12.936651667117699 + ], + [ + 77.540198341964, + 12.936651670567599 + ], + [ + 77.540198356793098, + 12.936651667117699 + ], + [ + 77.540141003251406, + 12.936505548095701 + ], + [ + 77.540108688957304, + 12.9364148354433 + ], + [ + 77.5399874268887, + 12.9360744222804 + ], + [ + 77.539953461211098, + 12.935979070987701 + ], + [ + 77.539952578589407, + 12.935976594134999 + ], + [ + 77.5399419718768, + 12.9359484585466 + ], + [ + 77.539843137289196, + 12.9356862905677 + ], + [ + 77.5398360239449, + 12.9356660317418 + ], + [ + 77.539819881969706, + 12.9356130169521 + ], + [ + 77.539756824389599, + 12.935405925705901 + ], + [ + 77.539595929086701, + 12.934866538997699 + ], + [ + 77.539503502012195, + 12.934511211894099 + ], + [ + 77.539487511341207, + 12.9344497390853 + ], + [ + 77.539446912964806, + 12.9343631752514 + ], + [ + 77.539402727907401, + 12.934206627261 + ], + [ + 77.539337878720701, + 12.933885396830499 + ], + [ + 77.539315117759799, + 12.9337410629354 + ], + [ + 77.5392515288233, + 12.933658110901 + ], + [ + 77.539250579594693, + 12.9336586983649 + ], + [ + 77.539250495383499, + 12.933658750682699 + ], + [ + 77.539248919135304, + 12.9336597264201 + ], + [ + 77.539248876113305, + 12.933659753039599 + ], + [ + 77.539246926399898, + 12.933660960088 + ], + [ + 77.539246788178701, + 12.933661045456599 + ], + [ + 77.539241644797798, + 12.933664231484601 + ], + [ + 77.539241536777794, + 12.933664297586301 + ], + [ + 77.539235891759105, + 12.9336677920647 + ], + [ + 77.539235801155797, + 12.9336678498656 + ], + [ + 77.539233188713695, + 12.9336694663148 + ], + [ + 77.539181160994403, + 12.9337017109259 + ], + [ + 77.539019333245903, + 12.9337952942135 + ], + [ + 77.539012322386597, + 12.933799349489201 + ], + [ + 77.538890488381199, + 12.933874450425201 + ], + [ + 77.538887601251204, + 12.933876229460299 + ], + [ + 77.538763445155197, + 12.933951974544 + ], + [ + 77.538642770283303, + 12.9340223055168 + ], + [ + 77.538505413200994, + 12.9341023602726 + ], + [ + 77.538276554106602, + 12.934235744008401 + ], + [ + 77.538222727599702, + 12.934267115152201 + ], + [ + 77.538211209049507, + 12.9342738289323 + ], + [ + 77.538016579339796, + 12.934387264050001 + ], + [ + 77.537964335389802, + 12.9344170142789 + ], + [ + 77.537948708726006, + 12.9344259128732 + ], + [ + 77.537908979464305, + 12.9344485366793 + ], + [ + 77.537835590990994, + 12.934490328149799 + ], + [ + 77.537806651931604, + 12.9345068081281 + ], + [ + 77.537613046117698, + 12.934617059141599 + ], + [ + 77.5373463216131, + 12.934769856789501 + ], + [ + 77.537104776038106, + 12.9349077278188 + ], + [ + 77.537049258698502, + 12.9349398894958 + ], + [ + 77.536825432642104, + 12.9350651651731 + ], + [ + 77.536780058132706, + 12.935090470155 + ], + [ + 77.536779988519598, + 12.935090508778 + ], + [ + 77.536673555938606, + 12.935149868736101 + ], + [ + 77.536547217285602, + 12.935220332631101 + ], + [ + 77.536453789233505, + 12.9352728224963 + ], + [ + 77.536422426119302, + 12.9352904435261 + ], + [ + 77.536240391189395, + 12.935392718248099 + ], + [ + 77.5362140491101, + 12.9354065265522 + ], + [ + 77.5359669457888, + 12.935532430972099 + ], + [ + 77.535719202588496, + 12.9356586648655 + ], + [ + 77.535282074380902, + 12.935878383837601 + ], + [ + 77.535077688821303, + 12.9359811182371 + ], + [ + 77.534944154175093, + 12.936048637468501 + ], + [ + 77.534927191193603, + 12.9360572146221 + ], + [ + 77.5345083608767, + 12.936268986573101 + ], + [ + 77.534295618026505, + 12.936466427149 + ], + [ + 77.534248853167696, + 12.9365098021403 + ], + [ + 77.534131778029007, + 12.936660013347201 + ], + [ + 77.533998525162204, + 12.9370893296886 + ], + [ + 77.533971735113596, + 12.9371644167576 + ], + [ + 77.533971247840498, + 12.937165783933599 + ], + [ + 77.533889354848895, + 12.937395313499101 + ], + [ + 77.533876795153205, + 12.9374381365036 + ], + [ + 77.533846503132906, + 12.937541415311699 + ], + [ + 77.533822999332102, + 12.9376082750198 + ], + [ + 77.533711130112493, + 12.937786072877801 + ], + [ + 77.533626388627695, + 12.937920755265299 + ], + [ + 77.533447623226905, + 12.9382330620384 + ], + [ + 77.533444499508306, + 12.9382377823326 + ], + [ + 77.533373671735902, + 12.9383447942625 + ], + [ + 77.533373481204094, + 12.9383450816121 + ], + [ + 77.533371639445903, + 12.9383478641431 + ], + [ + 77.533161259793999, + 12.9386649953945 + ], + [ + 77.533019099476604, + 12.938896762914601 + ], + [ + 77.533016720776303, + 12.9389006474807 + ], + [ + 77.532872978772602, + 12.9391353449448 + ], + [ + 77.532666865985107, + 12.939476150791799 + ], + [ + 77.532559073459495, + 12.9396538961693 + ], + [ + 77.532507529204807, + 12.939738889966801 + ], + [ + 77.532480285651104, + 12.939783811631701 + ], + [ + 77.532269343414001, + 12.940131644509201 + ], + [ + 77.531909102736904, + 12.9407026875016 + ], + [ + 77.531903602302805, + 12.940711406167299 + ], + [ + 77.531877233414804, + 12.940753205025599 + ], + [ + 77.531163362718502, + 12.9420080648898 + ], + [ + 77.531126596152305, + 12.942072794637101 + ], + [ + 77.530870938825501, + 12.942524756871 + ], + [ + 77.530709178692504, + 12.942835397948601 + ], + [ + 77.530703737095806, + 12.9428458470937 + ], + [ + 77.530536455475698, + 12.9431670898372 + ], + [ + 77.530515702936597, + 12.9432069431275 + ], + [ + 77.5304228458767, + 12.9433614357828 + ], + [ + 77.530209780697007, + 12.943527259589599 + ], + [ + 77.530198712447302, + 12.943541418823999 + ], + [ + 77.530113725085997, + 12.943650161535899 + ], + [ + 77.529984265084295, + 12.9438287257257 + ], + [ + 77.529839791857498, + 12.944116982248399 + ], + [ + 77.5296324520083, + 12.9444510228545 + ], + [ + 77.529557582055901, + 12.9445624255839 + ], + [ + 77.529505248362796, + 12.9446250476394 + ], + [ + 77.529444257936404, + 12.9446854950189 + ], + [ + 77.529336544953196, + 12.944752563012999 + ], + [ + 77.529223541857306, + 12.9448229239933 + ], + [ + 77.529210260451805, + 12.9448311932293 + ], + [ + 77.529176910043404, + 12.9448460258554 + ], + [ + 77.529033732839295, + 12.944909702057 + ], + [ + 77.528915085388306, + 12.944961674109599 + ], + [ + 77.528566179274193, + 12.945073477161801 + ], + [ + 77.528313263475496, + 12.945149138144 + ], + [ + 77.528257949950799, + 12.9451656862425 + ], + [ + 77.528107185460101, + 12.9451727956535 + ], + [ + 77.527890263973006, + 12.9451850632374 + ], + [ + 77.528018816723105, + 12.945315950794001 + ], + [ + 77.527966003000998, + 12.9454452088248 + ], + [ + 77.527918219216303, + 12.9454732158189 + ], + [ + 77.527915065444802, + 12.945475065115501 + ], + [ + 77.527732966212895, + 12.945514335875499 + ], + [ + 77.527716491443201, + 12.945517888245901 + ], + [ + 77.527572191997706, + 12.945549006960601 + ], + [ + 77.527301741494696, + 12.9456073295589 + ], + [ + 77.527245177213999, + 12.9456195276051 + ], + [ + 77.527072369335301, + 12.945656793354599 + ], + [ + 77.526908833758498, + 12.945692060935199 + ], + [ + 77.5267622444252, + 12.9457236721529 + ], + [ + 77.526467410240201, + 12.9457872537326 + ], + [ + 77.526413790357296, + 12.9458013321163 + ], + [ + 77.526404566470902, + 12.9458037552322 + ], + [ + 77.526403105706294, + 12.945804138014401 + ], + [ + 77.526387022685796, + 12.945808361408 + ], + [ + 77.526383580105801, + 12.945809524134001 + ], + [ + 77.526384099921799, + 12.945815790147501 + ], + [ + 77.526419809959606, + 12.9458329570262 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "215", + "group": "harinagara", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "57", + "ward_name": "57 - Srinidhi Ward", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಶ್ರೀನಿಧಿ ವಾರ್ಡ್", + "dig_ward_n": "harinagara", + "Assembly": "176 - Bangalore South", + "Slno": "57" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.569880577714002, + 12.8683303523534 + ], + [ + 77.569760850221002, + 12.867960628091801 + ], + [ + 77.569081178081802, + 12.868174358668099 + ], + [ + 77.568808395124293, + 12.868261224692899 + ], + [ + 77.568441668654401, + 12.8684605084959 + ], + [ + 77.568247846553206, + 12.868557977300499 + ], + [ + 77.5680240742915, + 12.868675080871499 + ], + [ + 77.568024092098298, + 12.8686751114146 + ], + [ + 77.567789089014695, + 12.8688298391589 + ], + [ + 77.567565675242307, + 12.8689822084414 + ], + [ + 77.567434279939306, + 12.869060861402501 + ], + [ + 77.567327095061898, + 12.8691256243666 + ], + [ + 77.566847070654802, + 12.869359010566599 + ], + [ + 77.566555351235095, + 12.869408515094101 + ], + [ + 77.566474128313502, + 12.8694036220603 + ], + [ + 77.566217303683203, + 12.869463592844999 + ], + [ + 77.566078006898806, + 12.869791485103599 + ], + [ + 77.566065609138093, + 12.869940648918099 + ], + [ + 77.566092484046194, + 12.8700746376258 + ], + [ + 77.566120393003899, + 12.8704242156728 + ], + [ + 77.566192131428807, + 12.8708638631126 + ], + [ + 77.566276976290695, + 12.8712378615002 + ], + [ + 77.566424257467105, + 12.8718870721092 + ], + [ + 77.566439469976203, + 12.8719999971792 + ], + [ + 77.566532315282601, + 12.872689189447 + ], + [ + 77.566638580839097, + 12.8736254054167 + ], + [ + 77.5666373679001, + 12.8742242137973 + ], + [ + 77.566691016355605, + 12.874841186508499 + ], + [ + 77.566799451751194, + 12.875503334562699 + ], + [ + 77.566977101229199, + 12.876453874626501 + ], + [ + 77.567148982866897, + 12.877658199658899 + ], + [ + 77.567257418262599, + 12.877632821162001 + ], + [ + 77.567621945762795, + 12.878945581589999 + ], + [ + 77.567410603192897, + 12.879042862402001 + ], + [ + 77.567776293935097, + 12.879754204329799 + ], + [ + 77.568097125559206, + 12.880292058247401 + ], + [ + 77.568343329910704, + 12.880704802102001 + ], + [ + 77.568731462844298, + 12.8814063060591 + ], + [ + 77.568736813818902, + 12.8814048342247 + ], + [ + 77.569043832825699, + 12.8820400182101 + ], + [ + 77.569555902579694, + 12.8829421180599 + ], + [ + 77.5699086877475, + 12.8836093108235 + ], + [ + 77.569933119328297, + 12.883700589045301 + ], + [ + 77.569936373017001, + 12.8837000656195 + ], + [ + 77.570309919497504, + 12.883600318992301 + ], + [ + 77.570725367718296, + 12.883543760974 + ], + [ + 77.570747999346807, + 12.8835406801693 + ], + [ + 77.571780193518507, + 12.883395184121101 + ], + [ + 77.571987598388304, + 12.883365947748301 + ], + [ + 77.572061828327307, + 12.883355484538599 + ], + [ + 77.572061298633997, + 12.883332014399 + ], + [ + 77.572013809582401, + 12.8830756724652 + ], + [ + 77.572649372887099, + 12.8830183363869 + ], + [ + 77.572956887156494, + 12.883004660330499 + ], + [ + 77.572859427267701, + 12.8822061506028 + ], + [ + 77.572854995333898, + 12.882162259223801 + ], + [ + 77.573466091623104, + 12.8821108700884 + ], + [ + 77.5735307981994, + 12.882101576171999 + ], + [ + 77.574000555816497, + 12.8820341043334 + ], + [ + 77.574296472827001, + 12.8820043881323 + ], + [ + 77.574437766804493, + 12.881990199410501 + ], + [ + 77.574477511739204, + 12.8819862082802 + ], + [ + 77.574879606621394, + 12.881953669208199 + ], + [ + 77.575594453685397, + 12.8819428211225 + ], + [ + 77.575623866025097, + 12.881757083435099 + ], + [ + 77.575808131078006, + 12.881404852794599 + ], + [ + 77.576065122687993, + 12.8806798722576 + ], + [ + 77.576171282036398, + 12.880401224141 + ], + [ + 77.576350070074, + 12.8799671315165 + ], + [ + 77.576459845952698, + 12.878907972472399 + ], + [ + 77.576439286242106, + 12.8784849432444 + ], + [ + 77.576557265753394, + 12.878001389425201 + ], + [ + 77.577027897294897, + 12.8773027496133 + ], + [ + 77.577151241939504, + 12.877117225302401 + ], + [ + 77.577147154936895, + 12.876944332278001 + ], + [ + 77.577215183922704, + 12.876565940168099 + ], + [ + 77.577259727133907, + 12.8763857422498 + ], + [ + 77.577348611292294, + 12.876232413199199 + ], + [ + 77.577408612007005, + 12.876089607867801 + ], + [ + 77.578159543441998, + 12.876152754846901 + ], + [ + 77.578168962917502, + 12.875939908855599 + ], + [ + 77.578227214168706, + 12.8758528688307 + ], + [ + 77.578337328741199, + 12.875800945374399 + ], + [ + 77.578408389477403, + 12.875717235869001 + ], + [ + 77.578528739163701, + 12.875628045288099 + ], + [ + 77.578726167703806, + 12.8754473128947 + ], + [ + 77.578848029466101, + 12.875367257173 + ], + [ + 77.579012062535995, + 12.875274331183901 + ], + [ + 77.579104610582206, + 12.875223615356999 + ], + [ + 77.579217755513795, + 12.875156810409701 + ], + [ + 77.579247580389705, + 12.875139200276699 + ], + [ + 77.5793820024643, + 12.875046567518501 + ], + [ + 77.579585626153403, + 12.8749930308275 + ], + [ + 77.579807116645895, + 12.874993124648601 + ], + [ + 77.581137362174502, + 12.8753475003486 + ], + [ + 77.581370418742097, + 12.875344634509601 + ], + [ + 77.581517252274395, + 12.8752599504035 + ], + [ + 77.581510772163995, + 12.8750446602296 + ], + [ + 77.581448982604201, + 12.874749972719901 + ], + [ + 77.581436228978006, + 12.874523693054799 + ], + [ + 77.581269003218694, + 12.8745003114374 + ], + [ + 77.581151341405203, + 12.874107821388399 + ], + [ + 77.5809964632072, + 12.874070868709101 + ], + [ + 77.580715379813796, + 12.874102322823401 + ], + [ + 77.580596439122502, + 12.8739358054353 + ], + [ + 77.580438776078196, + 12.873827000265001 + ], + [ + 77.580386919435, + 12.8737455955605 + ], + [ + 77.580339048880305, + 12.8736004394546 + ], + [ + 77.580264237297001, + 12.8733156095964 + ], + [ + 77.580053794251796, + 12.8729217571252 + ], + [ + 77.579845139973997, + 12.8725893234498 + ], + [ + 77.579680012007003, + 12.8722041258905 + ], + [ + 77.579646066290593, + 12.8719846437338 + ], + [ + 77.579537895894106, + 12.8718303345231 + ], + [ + 77.579500680914705, + 12.8717649650632 + ], + [ + 77.579421384569798, + 12.871753794108701 + ], + [ + 77.579351222956902, + 12.8717425331889 + ], + [ + 77.579235566438896, + 12.8717496473287 + ], + [ + 77.579126463789706, + 12.8718238902278 + ], + [ + 77.579185965728698, + 12.871065584581199 + ], + [ + 77.576053975813096, + 12.870842067053299 + ], + [ + 77.576031289031903, + 12.8707871633473 + ], + [ + 77.575861098412801, + 12.870813866567 + ], + [ + 77.575604247406204, + 12.870871002393301 + ], + [ + 77.5753346511259, + 12.8708156289341 + ], + [ + 77.575240908390001, + 12.870657834691199 + ], + [ + 77.575087257440401, + 12.8696979745181 + ], + [ + 77.5746750648659, + 12.869816366330699 + ], + [ + 77.574366141543905, + 12.869884252003599 + ], + [ + 77.574322397511096, + 12.869745310929501 + ], + [ + 77.574218890719294, + 12.869431747880199 + ], + [ + 77.574080573262407, + 12.868888706925 + ], + [ + 77.573985220856898, + 12.868294615100099 + ], + [ + 77.5739383571578, + 12.8680619799949 + ], + [ + 77.573950908983804, + 12.868058897764101 + ], + [ + 77.573744045669997, + 12.867422862028601 + ], + [ + 77.573496764590402, + 12.867461078195401 + ], + [ + 77.573202275304794, + 12.867533014509499 + ], + [ + 77.572208150376298, + 12.8678990718312 + ], + [ + 77.571111626177498, + 12.8680185846294 + ], + [ + 77.569880577714002, + 12.8683303523534 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "206", + "group": "Attigupe", + "Corporatio": "West", + "ac_no": "167", + "ac": "Vijayanagar", + "corporat_1": "5", + "ward_id": "101", + "ward_name": "101 - Attigupe", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ವಿಜಯನಗರ", + "ward_name_": "ಅತ್ತಿಗುಪ್ಪೆ", + "dig_ward_n": "Attigupe", + "Assembly": "167 - Vijayanagar", + "Slno": "101" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.527136289716594, + 12.951412771501699 + ], + [ + 77.527080294350398, + 12.951426773553299 + ], + [ + 77.527112794516398, + 12.9516118220088 + ], + [ + 77.5271451265682, + 12.9517922040448 + ], + [ + 77.527149995756503, + 12.951818131812701 + ], + [ + 77.527190256776606, + 12.9520424814816 + ], + [ + 77.527207929943501, + 12.952139433950199 + ], + [ + 77.5272239111994, + 12.9522397908757 + ], + [ + 77.527228549318494, + 12.9522684701657 + ], + [ + 77.527228848982304, + 12.95227032481 + ], + [ + 77.5272313326156, + 12.952285683336999 + ], + [ + 77.527269179598406, + 12.952519725412101 + ], + [ + 77.527269571603895, + 12.9525221501586 + ], + [ + 77.527295544724694, + 12.9526827633798 + ], + [ + 77.5272957530524, + 12.9526840560429 + ], + [ + 77.527296445089505, + 12.9526894674882 + ], + [ + 77.527297628170402, + 12.9526987202764 + ], + [ + 77.527304808060606, + 12.952743312257301 + ], + [ + 77.527334481120604, + 12.952927620326101 + ], + [ + 77.527339993475906, + 12.952960317928399 + ], + [ + 77.527382323687803, + 12.953104463702299 + ], + [ + 77.527447937904995, + 12.9533308259004 + ], + [ + 77.527474976744301, + 12.953422555662399 + ], + [ + 77.527502529745604, + 12.9535160322721 + ], + [ + 77.527506359331397, + 12.953529024166899 + ], + [ + 77.527508219984597, + 12.9535349473827 + ], + [ + 77.527548970672697, + 12.953664670837099 + ], + [ + 77.527551407132194, + 12.9536724270422 + ], + [ + 77.527551523250494, + 12.953672797244799 + ], + [ + 77.527611050946604, + 12.9538622950651 + ], + [ + 77.527614293088604, + 12.9538713860178 + ], + [ + 77.527698553690996, + 12.9541077321252 + ], + [ + 77.527915598364999, + 12.954716513837001 + ], + [ + 77.527945319908198, + 12.954804300867099 + ], + [ + 77.527957138100305, + 12.9548392094643 + ], + [ + 77.527962778981106, + 12.954855963911999 + ], + [ + 77.527967606996597, + 12.9548703067366 + ], + [ + 77.527985849746202, + 12.954924500039899 + ], + [ + 77.528073470144605, + 12.9551847897658 + ], + [ + 77.528090329997994, + 12.955237770458799 + ], + [ + 77.528090745716199, + 12.955239074658801 + ], + [ + 77.528150511685993, + 12.9554268921292 + ], + [ + 77.528212669465503, + 12.955622224060599 + ], + [ + 77.528309113405996, + 12.955925300666999 + ], + [ + 77.528338578943902, + 12.9560178974866 + ], + [ + 77.528340550167201, + 12.956024092465499 + ], + [ + 77.528355540743306, + 12.956071198788299 + ], + [ + 77.528496231156794, + 12.956513314532099 + ], + [ + 77.528556048447101, + 12.9566563179041 + ], + [ + 77.528570568545007, + 12.9566910294433 + ], + [ + 77.528576826451399, + 12.9567041982916 + ], + [ + 77.5286288030115, + 12.9568135618031 + ], + [ + 77.528631174162399, + 12.9568203157596 + ], + [ + 77.528622309082195, + 12.9568304060902 + ], + [ + 77.528617236503607, + 12.9568361797538 + ], + [ + 77.528604692249004, + 12.9568504581648 + ], + [ + 77.528600814405607, + 12.956854872269 + ], + [ + 77.528507088588697, + 12.956961559802499 + ], + [ + 77.528447107784203, + 12.957033865745201 + ], + [ + 77.528406976455301, + 12.9570822427627 + ], + [ + 77.528385260019903, + 12.9570982645043 + ], + [ + 77.528365069882597, + 12.957112851566899 + ], + [ + 77.528315879306803, + 12.9571483909862 + ], + [ + 77.528044602299005, + 12.957344381984999 + ], + [ + 77.527985106258896, + 12.957387436672301 + ], + [ + 77.527874501969606, + 12.957467474520501 + ], + [ + 77.527794020624299, + 12.957525714392199 + ], + [ + 77.527751959606704, + 12.957556151647299 + ], + [ + 77.527745292752201, + 12.957560329005 + ], + [ + 77.527742805619297, + 12.957561888160701 + ], + [ + 77.527697309178293, + 12.957586272031399 + ], + [ + 77.527467744261699, + 12.9577093110388 + ], + [ + 77.527301794162199, + 12.9577982548908 + ], + [ + 77.526975589026605, + 12.9579730889663 + ], + [ + 77.526952897386096, + 12.957985250837 + ], + [ + 77.526884408761902, + 12.9580219589409 + ], + [ + 77.526784116629301, + 12.9580717861166 + ], + [ + 77.526341897826597, + 12.9582914922507 + ], + [ + 77.526242556223195, + 12.958340507740999 + ], + [ + 77.526215051815797, + 12.958354078352301 + ], + [ + 77.526170064514005, + 12.9583762751633 + ], + [ + 77.526139455468595, + 12.958391377474699 + ], + [ + 77.526094407650405, + 12.958413603773399 + ], + [ + 77.526074246968903, + 12.958421237731701 + ], + [ + 77.525947431675405, + 12.9584692573606 + ], + [ + 77.525803616135093, + 12.958523714178201 + ], + [ + 77.525524610150995, + 12.9586295395112 + ], + [ + 77.525449160944504, + 12.9586581573112 + ], + [ + 77.525269054725598, + 12.9587254066432 + ], + [ + 77.525186967339707, + 12.9587469006843 + ], + [ + 77.525179474780103, + 12.9587488625349 + ], + [ + 77.524965533028706, + 12.9588041561622 + ], + [ + 77.524503007566494, + 12.9589236962576 + ], + [ + 77.5243810692007, + 12.9589437406329 + ], + [ + 77.524214859636999, + 12.9589710634963 + ], + [ + 77.524013856044107, + 12.9590041056322 + ], + [ + 77.523681280265194, + 12.959037843991499 + ], + [ + 77.523644603479497, + 12.9590415659036 + ], + [ + 77.523396708832095, + 12.9590665558695 + ], + [ + 77.522803241218796, + 12.9591366734514 + ], + [ + 77.522729027584504, + 12.9591454408349 + ], + [ + 77.522624426649898, + 12.9591578003606 + ], + [ + 77.522522035777897, + 12.9591698981052 + ], + [ + 77.521715801617901, + 12.959265798471201 + ], + [ + 77.521701462553594, + 12.9592683912244 + ], + [ + 77.521701048764101, + 12.9592684657042 + ], + [ + 77.521049145711899, + 12.959386319888599 + ], + [ + 77.521040870974105, + 12.9593876405033 + ], + [ + 77.520702526206904, + 12.9594416266099 + ], + [ + 77.520653901552095, + 12.9594497774417 + ], + [ + 77.520523768622496, + 12.9594715912599 + ], + [ + 77.520159301306293, + 12.959527070102499 + ], + [ + 77.519782204382807, + 12.959586058769499 + ], + [ + 77.519524114200806, + 12.9596280841896 + ], + [ + 77.519374766439597, + 12.959652035719101 + ], + [ + 77.519321775408201, + 12.959660534092899 + ], + [ + 77.519321736739698, + 12.959660536274001 + ], + [ + 77.519393778888798, + 12.9597784203087 + ], + [ + 77.519848578567405, + 12.960117341775501 + ], + [ + 77.520196044762301, + 12.960355255769301 + ], + [ + 77.520208589571894, + 12.9603638447905 + ], + [ + 77.520274693822699, + 12.960409107116501 + ], + [ + 77.520302272825703, + 12.9604578874496 + ], + [ + 77.520320416530296, + 12.960489977849001 + ], + [ + 77.520332459832403, + 12.960511691633799 + ], + [ + 77.520364893406096, + 12.9605701685631 + ], + [ + 77.520370259161894, + 12.9605798435013 + ], + [ + 77.520369854576899, + 12.9606321735052 + ], + [ + 77.520368700635004, + 12.9607852045886 + ], + [ + 77.520368298933704, + 12.960838477088 + ], + [ + 77.520368034240803, + 12.9608734968212 + ], + [ + 77.520387885879103, + 12.9609191283276 + ], + [ + 77.520401781383498, + 12.960951070115501 + ], + [ + 77.520442406045007, + 12.961044451894599 + ], + [ + 77.520453463760802, + 12.961069870082699 + ], + [ + 77.520468819318594, + 12.9611051676375 + ], + [ + 77.520477328798407, + 12.961142040312501 + ], + [ + 77.520485242273494, + 12.9611763304072 + ], + [ + 77.520512767394607, + 12.9612956027092 + ], + [ + 77.520512940292093, + 12.9612962144994 + ], + [ + 77.520577987869402, + 12.9615256580259 + ], + [ + 77.520601861677406, + 12.9616098684031 + ], + [ + 77.520621801207497, + 12.9616802012918 + ], + [ + 77.520630880144793, + 12.961712225493001 + ], + [ + 77.520636335796297, + 12.961731465617699 + ], + [ + 77.520639035596801, + 12.961752118372001 + ], + [ + 77.520643452014994, + 12.961785895649999 + ], + [ + 77.520644445184402, + 12.9617935005795 + ], + [ + 77.520742186610605, + 12.961787853187801 + ], + [ + 77.520831376803599, + 12.9617826987598 + ], + [ + 77.520879217731704, + 12.961779934247399 + ], + [ + 77.521109935303102, + 12.961767856169001 + ], + [ + 77.521249808774698, + 12.9617605338115 + ], + [ + 77.521270852646296, + 12.9617603299672 + ], + [ + 77.521305075879695, + 12.961759998455699 + ], + [ + 77.521496207932202, + 12.9617581469267 + ], + [ + 77.521662598869995, + 12.961735604902 + ], + [ + 77.521676106539999, + 12.961733775491901 + ], + [ + 77.521729645940397, + 12.9617265222342 + ], + [ + 77.521759609152895, + 12.9617285349107 + ], + [ + 77.521847179472999, + 12.9617344183082 + ], + [ + 77.521876707621104, + 12.961736600931101 + ], + [ + 77.521917389091698, + 12.9617396079651 + ], + [ + 77.521968753347707, + 12.961743404530999 + ], + [ + 77.521983670624707, + 12.961746529690799 + ], + [ + 77.522077613721507, + 12.961766207952 + ], + [ + 77.522118190113801, + 12.961774707738201 + ], + [ + 77.522130942784202, + 12.961784713996799 + ], + [ + 77.5222603730153, + 12.9618862650978 + ], + [ + 77.522268552627494, + 12.961892777630901 + ], + [ + 77.5223822595878, + 12.9619833374843 + ], + [ + 77.522443218346297, + 12.962025542808201 + ], + [ + 77.522465582849406, + 12.9620410267575 + ], + [ + 77.522560662663807, + 12.9621068580631 + ], + [ + 77.522596206745106, + 12.9621314677147 + ], + [ + 77.522675529388493, + 12.962138701938599 + ], + [ + 77.522745819537107, + 12.9621451121492 + ], + [ + 77.522965606388397, + 12.9621651557982 + ], + [ + 77.523086741257003, + 12.962198846868599 + ], + [ + 77.523113105533994, + 12.962206179626399 + ], + [ + 77.523157870948594, + 12.962218630199599 + ], + [ + 77.523162070627805, + 12.962235528843699 + ], + [ + 77.523171515246403, + 12.9621949839433 + ], + [ + 77.523231228470294, + 12.9619386477946 + ], + [ + 77.523280725301305, + 12.9617261716727 + ], + [ + 77.523823697404595, + 12.961687971861901 + ], + [ + 77.523951002587907, + 12.9616790162824 + ], + [ + 77.524002543606201, + 12.9616850396768 + ], + [ + 77.524019249429799, + 12.9616869920178 + ], + [ + 77.524174083099695, + 12.961705086739601 + ], + [ + 77.524347059902894, + 12.9617243726297 + ], + [ + 77.5243977270122, + 12.9617300221829 + ], + [ + 77.524536319954706, + 12.961765310465699 + ], + [ + 77.524833539254203, + 12.9618409886534 + ], + [ + 77.524903452335394, + 12.961859163363 + ], + [ + 77.524910920779902, + 12.9618611038659 + ], + [ + 77.525047128199603, + 12.961896513470901 + ], + [ + 77.525174665834498, + 12.961928966902599 + ], + [ + 77.525360858971496, + 12.961976348542899 + ], + [ + 77.525752510273506, + 12.962076011925801 + ], + [ + 77.526047223604905, + 12.9621516117222 + ], + [ + 77.526232151794204, + 12.9621990492262 + ], + [ + 77.526299741575002, + 12.962216386865901 + ], + [ + 77.526312406927005, + 12.962216263931399 + ], + [ + 77.526312004756306, + 12.9622072655746 + ], + [ + 77.526308400088695, + 12.962126657872201 + ], + [ + 77.526306236186301, + 12.9620782750108 + ], + [ + 77.526304229170904, + 12.962033388895399 + ], + [ + 77.526303838824703, + 12.962025744738 + ], + [ + 77.526302792902001, + 12.9620051691304 + ], + [ + 77.526311589685704, + 12.962004913892899 + ], + [ + 77.526714335728499, + 12.961993268852 + ], + [ + 77.526665850828095, + 12.962323509125699 + ], + [ + 77.526626464642206, + 12.962496480237499 + ], + [ + 77.526602450079196, + 12.962601944200699 + ], + [ + 77.526572045822903, + 12.9627840625733 + ], + [ + 77.526575187385902, + 12.9628100088858 + ], + [ + 77.526589971067594, + 12.962905859943801 + ], + [ + 77.526627175618799, + 12.9629981052906 + ], + [ + 77.526634596763898, + 12.9630183560863 + ], + [ + 77.526650298275399, + 12.9630612037994 + ], + [ + 77.526710064497195, + 12.963224299495399 + ], + [ + 77.526732812027703, + 12.963367505818599 + ], + [ + 77.526738887999898, + 12.9635131326931 + ], + [ + 77.526732051083499, + 12.963597675190099 + ], + [ + 77.526731482759402, + 12.9636047088651 + ], + [ + 77.526728650596894, + 12.963639719039501 + ], + [ + 77.526691543398599, + 12.963728168438999 + ], + [ + 77.526656129991295, + 12.9638132115423 + ], + [ + 77.526622465580701, + 12.9639004999735 + ], + [ + 77.526597116592896, + 12.963956084124799 + ], + [ + 77.5265406813228, + 12.964126034217101 + ], + [ + 77.526473117628896, + 12.964334490178601 + ], + [ + 77.526428868993307, + 12.9644568893423 + ], + [ + 77.526431640405605, + 12.9645370633075 + ], + [ + 77.526433747939706, + 12.964598010469899 + ], + [ + 77.526443441048102, + 12.964598565965 + ], + [ + 77.526501149888006, + 12.9646018734802 + ], + [ + 77.526502428960299, + 12.964601958015001 + ], + [ + 77.526709714003701, + 12.9646156575561 + ], + [ + 77.5267094302217, + 12.964618755627701 + ], + [ + 77.526708658366999, + 12.9646271636623 + ], + [ + 77.526707639192495, + 12.964638266463201 + ], + [ + 77.526737300102596, + 12.9646419700327 + ], + [ + 77.526858678620499, + 12.964657128144999 + ], + [ + 77.526863699189903, + 12.964657761520201 + ], + [ + 77.527007518234896, + 12.9646759026793 + ], + [ + 77.5271905028888, + 12.9646989839827 + ], + [ + 77.527375712379595, + 12.964722348015099 + ], + [ + 77.527449731420901, + 12.9647316848221 + ], + [ + 77.527532023390506, + 12.9647420660832 + ], + [ + 77.527570327652498, + 12.9647461843211 + ], + [ + 77.527645348138904, + 12.964754251895 + ], + [ + 77.527965465232199, + 12.964788674567901 + ], + [ + 77.528002755938999, + 12.9647925884616 + ], + [ + 77.528208522909296, + 12.964814180113001 + ], + [ + 77.528289322650295, + 12.964822658442801 + ], + [ + 77.528289635267399, + 12.9648226906411 + ], + [ + 77.528323584862605, + 12.9648262529706 + ], + [ + 77.528404341275206, + 12.964834728070301 + ], + [ + 77.528507253351194, + 12.9648455266362 + ], + [ + 77.529119753434699, + 12.9649089813422 + ], + [ + 77.529197070863503, + 12.9649169908903 + ], + [ + 77.529224825720306, + 12.964919866131201 + ], + [ + 77.529226945037493, + 12.9649200090618 + ], + [ + 77.529270623774394, + 12.964922951780499 + ], + [ + 77.529326081803106, + 12.9649266870891 + ], + [ + 77.529327379750299, + 12.9649267738556 + ], + [ + 77.5293544495525, + 12.9649284965805 + ], + [ + 77.529401223528893, + 12.964931472595801 + ], + [ + 77.529477334782797, + 12.964936315190201 + ], + [ + 77.529496762794594, + 12.964937551122601 + ], + [ + 77.529523541431104, + 12.9649300612004 + ], + [ + 77.529745393106197, + 12.964868006802 + ], + [ + 77.529783072951304, + 12.964857467354401 + ], + [ + 77.529806349792594, + 12.964850956485099 + ], + [ + 77.529848134007906, + 12.964839268562301 + ], + [ + 77.5299629662955, + 12.9648076616462 + ], + [ + 77.529966017557399, + 12.9648068613159 + ], + [ + 77.529966297778699, + 12.964806787217 + ], + [ + 77.530034945064799, + 12.9647887685437 + ], + [ + 77.530071316658805, + 12.964779222049399 + ], + [ + 77.530134870240005, + 12.9647625412333 + ], + [ + 77.530387325005094, + 12.9646962803508 + ], + [ + 77.530420889014493, + 12.964252344877201 + ], + [ + 77.530379356168893, + 12.9635992739003 + ], + [ + 77.5303793078524, + 12.963594494078899 + ], + [ + 77.530269405505507, + 12.963089024256499 + ], + [ + 77.530110319022995, + 12.9621606935195 + ], + [ + 77.530076551129795, + 12.962028881299 + ], + [ + 77.530025558757401, + 12.9617357314639 + ], + [ + 77.529968793750498, + 12.961550307730599 + ], + [ + 77.5299401887643, + 12.961435574600101 + ], + [ + 77.529865539971894, + 12.9612087248544 + ], + [ + 77.529804107055, + 12.9610551580097 + ], + [ + 77.529778021768095, + 12.9609428473925 + ], + [ + 77.529718836587705, + 12.960764788192799 + ], + [ + 77.529625398584102, + 12.9605132832897 + ], + [ + 77.529751622602404, + 12.960481786556899 + ], + [ + 77.530322836783299, + 12.9603598153441 + ], + [ + 77.530862589206507, + 12.960201554602801 + ], + [ + 77.530970872871606, + 12.960175733113401 + ], + [ + 77.531475641341402, + 12.959955001026801 + ], + [ + 77.531558657439703, + 12.959914415348701 + ], + [ + 77.532223283453106, + 12.959967678025899 + ], + [ + 77.532256910360204, + 12.959970373043101 + ], + [ + 77.532441920293707, + 12.9599832140863 + ], + [ + 77.532747767991495, + 12.960004442611 + ], + [ + 77.533075754989099, + 12.960030977370099 + ], + [ + 77.533076997777997, + 12.9600103163688 + ], + [ + 77.533144915588494, + 12.9597681007475 + ], + [ + 77.533225635653693, + 12.959538048703999 + ], + [ + 77.533315408752699, + 12.9592821956824 + ], + [ + 77.533452700068295, + 12.958890912929901 + ], + [ + 77.533634422196002, + 12.958503583243401 + ], + [ + 77.533931103017594, + 12.957871222903099 + ], + [ + 77.534016595019907, + 12.957689000366599 + ], + [ + 77.534035235730798, + 12.9576492675611 + ], + [ + 77.534038203359501, + 12.957642943271299 + ], + [ + 77.534324971702603, + 12.9570075107934 + ], + [ + 77.534403802497295, + 12.956684673156699 + ], + [ + 77.534433263007401, + 12.9565736322622 + ], + [ + 77.534530616257399, + 12.9562066901586 + ], + [ + 77.534404124704693, + 12.9561750267818 + ], + [ + 77.534197050815294, + 12.956226628773001 + ], + [ + 77.534049015485905, + 12.956267833888599 + ], + [ + 77.533342238638895, + 12.9564460041556 + ], + [ + 77.533268791903694, + 12.956461400985299 + ], + [ + 77.533085786324904, + 12.9564986635081 + ], + [ + 77.532922763451296, + 12.956538178565101 + ], + [ + 77.532694938716006, + 12.956584441470101 + ], + [ + 77.5326844009263, + 12.9560357947484 + ], + [ + 77.5326815494074, + 12.9559483945861 + ], + [ + 77.532668674813607, + 12.9553240117573 + ], + [ + 77.5318551354612, + 12.9554504512411 + ], + [ + 77.531841398876907, + 12.9552022098525 + ], + [ + 77.531828243533198, + 12.955011468335201 + ], + [ + 77.531677422925895, + 12.955023946355301 + ], + [ + 77.531511708013497, + 12.955043910217199 + ], + [ + 77.5312713114687, + 12.9550805057209 + ], + [ + 77.531080859145803, + 12.9551215096626 + ], + [ + 77.531029808179696, + 12.9547616797459 + ], + [ + 77.531027930033503, + 12.9547619663324 + ], + [ + 77.530559811419593, + 12.954828602434 + ], + [ + 77.529898031635597, + 12.954942300282401 + ], + [ + 77.529799743385695, + 12.954469183960899 + ], + [ + 77.529736439089106, + 12.9541260080376 + ], + [ + 77.529544027345693, + 12.9532547410089 + ], + [ + 77.529409922191206, + 12.953266402326699 + ], + [ + 77.529206682081195, + 12.9533047180851 + ], + [ + 77.528940934420305, + 12.9533449430168 + ], + [ + 77.528821576599896, + 12.9527833482429 + ], + [ + 77.528913483234106, + 12.952736645318801 + ], + [ + 77.528920469056999, + 12.952704306177401 + ], + [ + 77.528883496988399, + 12.952523409793599 + ], + [ + 77.528815747184197, + 12.952269925772701 + ], + [ + 77.528809981187095, + 12.952235865918301 + ], + [ + 77.527941429101702, + 12.9524151261285 + ], + [ + 77.527903113343299, + 12.952086943328 + ], + [ + 77.527878124805198, + 12.9518687100952 + ], + [ + 77.527848138559506, + 12.9516621381802 + ], + [ + 77.527771380493803, + 12.95130138585 + ], + [ + 77.527350033699804, + 12.951379767699599 + ], + [ + 77.527136289716594, + 12.951412771501699 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "207", + "group": "Venkateshwara Layout", + "Corporatio": "West", + "ac_no": "167", + "ac": "Vijayanagar", + "corporat_1": "5", + "ward_id": "95", + "ward_name": "95 - Hampi Nagar", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ವಿಜಯನಗರ", + "ward_name_": "ಹಂಪಿ ನಗರ", + "dig_ward_n": "Venkateshwara Layout", + "Assembly": "167 - Vijayanagar", + "Slno": "95" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.526419809959606, + 12.9458329570262 + ], + [ + 77.526384099921799, + 12.945815790147501 + ], + [ + 77.526389084868597, + 12.945875880116199 + ], + [ + 77.526417541827897, + 12.9462188947676 + ], + [ + 77.526419309588505, + 12.946240197934699 + ], + [ + 77.526421271372797, + 12.946263843749501 + ], + [ + 77.526429453016704, + 12.946362460510301 + ], + [ + 77.526451965507505, + 12.9464254857883 + ], + [ + 77.526531292671294, + 12.947152818841399 + ], + [ + 77.526541107212694, + 12.947242801458099 + ], + [ + 77.526545848058504, + 12.9472862688547 + ], + [ + 77.526649935979606, + 12.948017077631601 + ], + [ + 77.526647806732399, + 12.9481137073057 + ], + [ + 77.526647761800504, + 12.948115737859 + ], + [ + 77.526646774564497, + 12.9481605356047 + ], + [ + 77.526643513859099, + 12.948288569440701 + ], + [ + 77.526643063027095, + 12.94830625761 + ], + [ + 77.526643108563206, + 12.948310774564 + ], + [ + 77.526644525483704, + 12.9483388445682 + ], + [ + 77.526648863683306, + 12.948424782990999 + ], + [ + 77.526662261271795, + 12.9486685924197 + ], + [ + 77.526674384908006, + 12.9489022536691 + ], + [ + 77.526687269971902, + 12.949150581832701 + ], + [ + 77.526707360897007, + 12.949258804461 + ], + [ + 77.526713664603605, + 12.9492933619283 + ], + [ + 77.526790849078907, + 12.949716509383199 + ], + [ + 77.526792102899606, + 12.9497266622636 + ], + [ + 77.526842814740704, + 12.950074008858801 + ], + [ + 77.526862113797307, + 12.950203254044499 + ], + [ + 77.526863190558899, + 12.9502104632996 + ], + [ + 77.526868833682499, + 12.950248931093199 + ], + [ + 77.5268699603415, + 12.950256612383599 + ], + [ + 77.526875934819699, + 12.9502973374665 + ], + [ + 77.526897268888604, + 12.950442762277399 + ], + [ + 77.526910807098702, + 12.950536383143399 + ], + [ + 77.526935214843505, + 12.950661497736199 + ], + [ + 77.526938734157, + 12.9506795394969 + ], + [ + 77.526953390843701, + 12.950756366482 + ], + [ + 77.5269843246232, + 12.9509185191081 + ], + [ + 77.527028648139705, + 12.9511462165962 + ], + [ + 77.527034126216293, + 12.9511755274132 + ], + [ + 77.527034757909405, + 12.951181168026899 + ], + [ + 77.527080294350398, + 12.951426773553299 + ], + [ + 77.527136289716594, + 12.951412771501699 + ], + [ + 77.527350033699804, + 12.951379767699599 + ], + [ + 77.527771380493803, + 12.95130138585 + ], + [ + 77.527848138559506, + 12.9516621381802 + ], + [ + 77.527878124805198, + 12.9518687100952 + ], + [ + 77.527903113343299, + 12.952086943328 + ], + [ + 77.527941429101702, + 12.9524151261285 + ], + [ + 77.528809981187095, + 12.952235865918301 + ], + [ + 77.528815747184197, + 12.952269925772701 + ], + [ + 77.528883496988399, + 12.952523409793599 + ], + [ + 77.528920469056999, + 12.952704306177401 + ], + [ + 77.528913483234106, + 12.952736645318801 + ], + [ + 77.528821576599896, + 12.9527833482429 + ], + [ + 77.528940934420305, + 12.9533449430168 + ], + [ + 77.529206682081195, + 12.9533047180851 + ], + [ + 77.529409922191206, + 12.953266402326699 + ], + [ + 77.529544027345693, + 12.9532547410089 + ], + [ + 77.529736439089106, + 12.9541260080376 + ], + [ + 77.529799743385695, + 12.954469183960899 + ], + [ + 77.529898031635597, + 12.954942300282401 + ], + [ + 77.530559811419593, + 12.954828602434 + ], + [ + 77.531027930033503, + 12.9547619663324 + ], + [ + 77.531029808179696, + 12.9547616797459 + ], + [ + 77.531080859145803, + 12.9551215096626 + ], + [ + 77.5312713114687, + 12.9550805057209 + ], + [ + 77.531511708013497, + 12.955043910217199 + ], + [ + 77.531677422925895, + 12.955023946355301 + ], + [ + 77.531828243533198, + 12.955011468335201 + ], + [ + 77.531841398876907, + 12.9552022098525 + ], + [ + 77.5318551354612, + 12.9554504512411 + ], + [ + 77.532668674813607, + 12.9553240117573 + ], + [ + 77.5326815494074, + 12.9559483945861 + ], + [ + 77.5326844009263, + 12.9560357947484 + ], + [ + 77.532694938716006, + 12.956584441470101 + ], + [ + 77.532922763451296, + 12.956538178565101 + ], + [ + 77.533085786324904, + 12.9564986635081 + ], + [ + 77.533268791903694, + 12.956461400985299 + ], + [ + 77.533342238638895, + 12.9564460041556 + ], + [ + 77.534049015485905, + 12.956267833888599 + ], + [ + 77.534197050815294, + 12.956226628773001 + ], + [ + 77.534404124704693, + 12.9561750267818 + ], + [ + 77.534530616257399, + 12.9562066901586 + ], + [ + 77.534433263007401, + 12.9565736322622 + ], + [ + 77.534403802497295, + 12.956684673156699 + ], + [ + 77.534324971702603, + 12.9570075107934 + ], + [ + 77.534038203359501, + 12.957642943271299 + ], + [ + 77.534035235730798, + 12.9576492675611 + ], + [ + 77.534016595019907, + 12.957689000366599 + ], + [ + 77.533931103017594, + 12.957871222903099 + ], + [ + 77.533634422196002, + 12.958503583243401 + ], + [ + 77.533452700068295, + 12.958890912929901 + ], + [ + 77.533315408752699, + 12.9592821956824 + ], + [ + 77.533225635653693, + 12.959538048703999 + ], + [ + 77.533144915588494, + 12.9597681007475 + ], + [ + 77.533076997777997, + 12.9600103163688 + ], + [ + 77.533075754989099, + 12.960030977370099 + ], + [ + 77.532747767991495, + 12.960004442611 + ], + [ + 77.532441920293707, + 12.9599832140863 + ], + [ + 77.532256910360204, + 12.959970373043101 + ], + [ + 77.532223283453106, + 12.959967678025899 + ], + [ + 77.531558657439703, + 12.959914415348701 + ], + [ + 77.531475641341402, + 12.959955001026801 + ], + [ + 77.530970872871606, + 12.960175733113401 + ], + [ + 77.530862589206507, + 12.960201554602801 + ], + [ + 77.530322836783299, + 12.9603598153441 + ], + [ + 77.529751622602404, + 12.960481786556899 + ], + [ + 77.529625398584102, + 12.9605132832897 + ], + [ + 77.529718836587705, + 12.960764788192799 + ], + [ + 77.529778021768095, + 12.9609428473925 + ], + [ + 77.529804107055, + 12.9610551580097 + ], + [ + 77.529865539971894, + 12.9612087248544 + ], + [ + 77.5299401887643, + 12.961435574600101 + ], + [ + 77.529968793750498, + 12.961550307730599 + ], + [ + 77.530025558757401, + 12.9617357314639 + ], + [ + 77.530076551129795, + 12.962028881299 + ], + [ + 77.530110319022995, + 12.9621606935195 + ], + [ + 77.530269405505507, + 12.963089024256499 + ], + [ + 77.5303793078524, + 12.963594494078899 + ], + [ + 77.530379356168893, + 12.9635992739003 + ], + [ + 77.530420889014493, + 12.964252344877201 + ], + [ + 77.530387325005094, + 12.9646962803508 + ], + [ + 77.530387325005094, + 12.9646962803508 + ], + [ + 77.5303873654249, + 12.9646962691161 + ], + [ + 77.530391918874002, + 12.964695073811001 + ], + [ + 77.530422046539002, + 12.9646872675485 + ], + [ + 77.530479042813894, + 12.964672495316201 + ], + [ + 77.530496614978404, + 12.964667941680601 + ], + [ + 77.530509641811094, + 12.964664566105901 + ], + [ + 77.530626719586394, + 12.9646272885584 + ], + [ + 77.530712528015101, + 12.964623392206899 + ], + [ + 77.530817196063495, + 12.964618640225099 + ], + [ + 77.530848283771306, + 12.964617228415101 + ], + [ + 77.530853466004203, + 12.9646171780152 + ], + [ + 77.531034089499798, + 12.9646189502681 + ], + [ + 77.531038119282002, + 12.9646189896759 + ], + [ + 77.531148586388298, + 12.9646200736252 + ], + [ + 77.531315844504206, + 12.9646217154807 + ], + [ + 77.531437509544304, + 12.9646255019953 + ], + [ + 77.531450717436101, + 12.964625912886101 + ], + [ + 77.531455221724499, + 12.9646260515711 + ], + [ + 77.531509360007504, + 12.9646277384303 + ], + [ + 77.531608346377695, + 12.9646314084862 + ], + [ + 77.531701326961993, + 12.964634856855699 + ], + [ + 77.531703927600603, + 12.964634953523699 + ], + [ + 77.531726502996506, + 12.9646357900531 + ], + [ + 77.531732511797401, + 12.964636036968599 + ], + [ + 77.531770853892496, + 12.964637617251199 + ], + [ + 77.531852300267005, + 12.9646455636843 + ], + [ + 77.531958629319107, + 12.9646559377918 + ], + [ + 77.531970840059799, + 12.9646571290219 + ], + [ + 77.5320059298042, + 12.9646575700105 + ], + [ + 77.532007258353801, + 12.9646575859949 + ], + [ + 77.532021513160899, + 12.9646577653184 + ], + [ + 77.532336523400403, + 12.964664864150601 + ], + [ + 77.532344805033404, + 12.9646650401465 + ], + [ + 77.532418062671198, + 12.964666598579001 + ], + [ + 77.532482222304296, + 12.964667963647001 + ], + [ + 77.532500864046995, + 12.9646703408678 + ], + [ + 77.532504749201905, + 12.9646708361078 + ], + [ + 77.532740289346506, + 12.964700872379799 + ], + [ + 77.532753753453903, + 12.964702589327 + ], + [ + 77.532875469065004, + 12.9647179683239 + ], + [ + 77.533049655599299, + 12.9647399770161 + ], + [ + 77.533110602594206, + 12.9647476776394 + ], + [ + 77.533375441692698, + 12.964709902843699 + ], + [ + 77.533398256640595, + 12.964706648673699 + ], + [ + 77.533459010331498, + 12.9646979828595 + ], + [ + 77.533640603817801, + 12.964659914197901 + ], + [ + 77.533645057638196, + 12.9646589809125 + ], + [ + 77.533749756786193, + 12.964637032539599 + ], + [ + 77.533824660852204, + 12.9646213299416 + ], + [ + 77.533840108094495, + 12.964618091458799 + ], + [ + 77.533967475203895, + 12.9645913895577 + ], + [ + 77.534001252586194, + 12.9645844101794 + ], + [ + 77.534256912812296, + 12.964531584412899 + ], + [ + 77.534311634286695, + 12.964520277578099 + ], + [ + 77.534634358725498, + 12.964404166861099 + ], + [ + 77.534689106648401, + 12.964384470044999 + ], + [ + 77.534690844231505, + 12.964388217893401 + ], + [ + 77.534825664820303, + 12.9646790128898 + ], + [ + 77.534898212211701, + 12.964835490633201 + ], + [ + 77.534975796386504, + 12.9650028332257 + ], + [ + 77.535103491272693, + 12.965278259727601 + ], + [ + 77.535106015475606, + 12.965283539617101 + ], + [ + 77.535412250227395, + 12.9659240903216 + ], + [ + 77.535443665608099, + 12.965989756681401 + ], + [ + 77.535444265987806, + 12.9659910048511 + ], + [ + 77.5354934738005, + 12.9660932321188 + ], + [ + 77.535597261859095, + 12.966294389879399 + ], + [ + 77.535598706138401, + 12.966297190121701 + ], + [ + 77.536035031186003, + 12.967142855749801 + ], + [ + 77.536081942597804, + 12.9672337774669 + ], + [ + 77.536173491688302, + 12.967466495848599 + ], + [ + 77.536178866365702, + 12.9674801581619 + ], + [ + 77.536179907519198, + 12.9674828114484 + ], + [ + 77.536246440894402, + 12.967652431204 + ], + [ + 77.536250108137196, + 12.967661779817799 + ], + [ + 77.536443648134195, + 12.9681551808258 + ], + [ + 77.5365021710127, + 12.9683206222899 + ], + [ + 77.536595955557601, + 12.9685857441733 + ], + [ + 77.536602785015702, + 12.968605051630799 + ], + [ + 77.5366561573463, + 12.968755929585001 + ], + [ + 77.536667536815798, + 12.9687880985022 + ], + [ + 77.538789660151394, + 12.9681710073302 + ], + [ + 77.538635286341105, + 12.967279348236399 + ], + [ + 77.538567477660294, + 12.9668855100012 + ], + [ + 77.538564419623199, + 12.96687002002 + ], + [ + 77.539099644318199, + 12.966714400584801 + ], + [ + 77.539057996754707, + 12.966467014057599 + ], + [ + 77.539098994560803, + 12.9664278027647 + ], + [ + 77.539403545030297, + 12.966319608366099 + ], + [ + 77.539711849848501, + 12.966212600524599 + ], + [ + 77.539806243986007, + 12.966171303180101 + ], + [ + 77.540545527080198, + 12.9658753367138 + ], + [ + 77.540644823636896, + 12.965825426648999 + ], + [ + 77.540746652238596, + 12.9657791623696 + ], + [ + 77.540609564907896, + 12.9648717533707 + ], + [ + 77.540591733042703, + 12.964761296733 + ], + [ + 77.540588758469099, + 12.964742873314499 + ], + [ + 77.540551898397297, + 12.9643539833035 + ], + [ + 77.540505587672897, + 12.964361618896699 + ], + [ + 77.540101291612601, + 12.9644629170547 + ], + [ + 77.539490292018897, + 12.964657197753199 + ], + [ + 77.539416933423496, + 12.9646805238712 + ], + [ + 77.538814953606106, + 12.964864876348599 + ], + [ + 77.538188323164107, + 12.9650656925556 + ], + [ + 77.538199074330905, + 12.965108451962401 + ], + [ + 77.538144748314295, + 12.965126941050301 + ], + [ + 77.537603667869703, + 12.965306202933901 + ], + [ + 77.537500711777199, + 12.964995210275299 + ], + [ + 77.537480661061593, + 12.9648632660291 + ], + [ + 77.537326507521797, + 12.9640705539967 + ], + [ + 77.5375110733535, + 12.964052561158899 + ], + [ + 77.537550585837096, + 12.9640432116403 + ], + [ + 77.537619227309406, + 12.964026100242901 + ], + [ + 77.537465071989701, + 12.9633254578728 + ], + [ + 77.5373333624769, + 12.9626391256652 + ], + [ + 77.537209426927703, + 12.9620872233053 + ], + [ + 77.537364255624595, + 12.9620920391753 + ], + [ + 77.537514980761102, + 12.962088259578 + ], + [ + 77.537518746585803, + 12.962088165041701 + ], + [ + 77.537497745706602, + 12.961953258329601 + ], + [ + 77.537470593858302, + 12.961799339291799 + ], + [ + 77.537467248054497, + 12.9617470762658 + ], + [ + 77.537466249981307, + 12.9617314929804 + ], + [ + 77.537434240901703, + 12.961651486407099 + ], + [ + 77.537403581061994, + 12.961512183576501 + ], + [ + 77.5373912822552, + 12.9614530203736 + ], + [ + 77.537258960709195, + 12.961094788147699 + ], + [ + 77.537258360820005, + 12.961093042163499 + ], + [ + 77.537140422331404, + 12.9607498081791 + ], + [ + 77.536944220863006, + 12.960244946783201 + ], + [ + 77.536931980402002, + 12.9601915200024 + ], + [ + 77.536925705183293, + 12.960149509179001 + ], + [ + 77.536862133543494, + 12.960033475121699 + ], + [ + 77.536579864834906, + 12.9596655681654 + ], + [ + 77.536441256430507, + 12.959484906098499 + ], + [ + 77.536261609794096, + 12.959266735842601 + ], + [ + 77.5360697814031, + 12.9590008750158 + ], + [ + 77.536461940452796, + 12.9586394447565 + ], + [ + 77.536459232338302, + 12.958637006468599 + ], + [ + 77.536662387257095, + 12.958471636595799 + ], + [ + 77.536628959832399, + 12.9584352567691 + ], + [ + 77.536570942023602, + 12.958372810896901 + ], + [ + 77.536431848503796, + 12.9582499790179 + ], + [ + 77.536373886545206, + 12.958193038370901 + ], + [ + 77.536184895963501, + 12.958008904767199 + ], + [ + 77.535924458083798, + 12.9577912083921 + ], + [ + 77.535861457272702, + 12.9577294225966 + ], + [ + 77.535797258661503, + 12.957672542519701 + ], + [ + 77.535711817456999, + 12.9576121987559 + ], + [ + 77.5355496388582, + 12.9574962156001 + ], + [ + 77.535635712768993, + 12.957118638472901 + ], + [ + 77.535235867331295, + 12.9569316631913 + ], + [ + 77.5352823230849, + 12.956714648008299 + ], + [ + 77.535330205161202, + 12.956268820914801 + ], + [ + 77.535389552212294, + 12.9559697044582 + ], + [ + 77.535476217504794, + 12.9556580868216 + ], + [ + 77.535579386690898, + 12.955498024806101 + ], + [ + 77.5357000684578, + 12.955342686313999 + ], + [ + 77.535954821760299, + 12.955122419203301 + ], + [ + 77.536155285036202, + 12.9549614095381 + ], + [ + 77.536270571672901, + 12.954889322662099 + ], + [ + 77.536154451514903, + 12.9547558665881 + ], + [ + 77.535966315191203, + 12.954532571393599 + ], + [ + 77.535654170119798, + 12.954259095691899 + ], + [ + 77.535838379116996, + 12.9540829071163 + ], + [ + 77.535870428781095, + 12.954051359267 + ], + [ + 77.535380163069703, + 12.953608063235601 + ], + [ + 77.535294741104593, + 12.953550160916601 + ], + [ + 77.534591905322799, + 12.953073750932999 + ], + [ + 77.534530797726603, + 12.953048154805 + ], + [ + 77.533788384212102, + 12.952737182097099 + ], + [ + 77.533270825712506, + 12.952614754400701 + ], + [ + 77.532940186300493, + 12.952536540814499 + ], + [ + 77.532378237339302, + 12.9523754720943 + ], + [ + 77.532219998771296, + 12.952330116574 + ], + [ + 77.531987645914, + 12.952263517946101 + ], + [ + 77.531899457423407, + 12.952229910343 + ], + [ + 77.531352013611397, + 12.952021286452799 + ], + [ + 77.530651894470395, + 12.951640077262001 + ], + [ + 77.530587988188401, + 12.951605280961299 + ], + [ + 77.529945175825901, + 12.951221974985 + ], + [ + 77.529636877013502, + 12.9509031614846 + ], + [ + 77.529301901106905, + 12.950441418896199 + ], + [ + 77.529140694444294, + 12.950219204476101 + ], + [ + 77.528340437847504, + 12.9490639544739 + ], + [ + 77.528207287295203, + 12.9488704549674 + ], + [ + 77.527703680916204, + 12.9481385919771 + ], + [ + 77.527160157802598, + 12.9473252368559 + ], + [ + 77.526949484259603, + 12.946982891098701 + ], + [ + 77.526602905244502, + 12.9462918297491 + ], + [ + 77.526481745593799, + 12.9460172644299 + ], + [ + 77.526437830144502, + 12.9458736096454 + ], + [ + 77.526420021465995, + 12.945834018370901 + ], + [ + 77.526419809959606, + 12.9458329570262 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "208", + "group": "VIJINAPURA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "20", + "ward_name": "20 - Vijinapura", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ವಿಜಿನಾಪುರ", + "dig_ward_n": "VIJINAPURA", + "Assembly": "151 - K.R. Pura", + "Slno": "20" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6713325006628, + 13.003144442033699 + ], + [ + 77.670966893331197, + 13.003110678527401 + ], + [ + 77.670825539786307, + 13.0030810929017 + ], + [ + 77.670820745578894, + 13.003400037986401 + ], + [ + 77.6708476376009, + 13.0036351962778 + ], + [ + 77.670628478100397, + 13.003668602411899 + ], + [ + 77.670212538385499, + 13.0037536140622 + ], + [ + 77.670086669003595, + 13.003754901728501 + ], + [ + 77.670120148327698, + 13.0040835785545 + ], + [ + 77.6701819563106, + 13.0043527008136 + ], + [ + 77.670207387720296, + 13.0044489538704 + ], + [ + 77.670245051959895, + 13.004709384381901 + ], + [ + 77.670321024272297, + 13.004836863346799 + ], + [ + 77.670415023912994, + 13.0049926709705 + ], + [ + 77.670481660644697, + 13.005101800690399 + ], + [ + 77.670512564636098, + 13.005162321007001 + ], + [ + 77.670585841431702, + 13.0053550769649 + ], + [ + 77.670603373654401, + 13.005408221514701 + ], + [ + 77.670663221594594, + 13.0055511962331 + ], + [ + 77.670700563917606, + 13.005661935535899 + ], + [ + 77.670700575237404, + 13.0056621323568 + ], + [ + 77.670728290740598, + 13.0057889994749 + ], + [ + 77.6707260992128, + 13.005887618227201 + ], + [ + 77.670719524629305, + 13.0060760896204 + ], + [ + 77.670706375462302, + 13.006435500184301 + ], + [ + 77.670712152914305, + 13.0069418758496 + ], + [ + 77.670955521847205, + 13.0069354375181 + ], + [ + 77.671474451370699, + 13.0069341498518 + ], + [ + 77.671499708536203, + 13.0072458175988 + ], + [ + 77.671506283119697, + 13.007395937255099 + ], + [ + 77.671528198397993, + 13.007575642537001 + ], + [ + 77.671557784023705, + 13.008078598173601 + ], + [ + 77.670870740049494, + 13.008138865188901 + ], + [ + 77.670872931577307, + 13.0084319820359 + ], + [ + 77.671779128334407, + 13.008371715020701 + ], + [ + 77.6717878944457, + 13.0086429165894 + ], + [ + 77.672379606959396, + 13.008568404643301 + ], + [ + 77.672334680638897, + 13.0083010382482 + ], + [ + 77.672648069118395, + 13.0082478936984 + ], + [ + 77.672432203627196, + 13.007201987042301 + ], + [ + 77.6725209605044, + 13.0072069179799 + ], + [ + 77.672915435513502, + 13.0072091095077 + ], + [ + 77.673449072539697, + 13.0072222586747 + ], + [ + 77.673882995049695, + 13.0072244502025 + ], + [ + 77.674102147832599, + 13.007234312077699 + ], + [ + 77.674176659778794, + 13.007240886661201 + ], + [ + 77.674433068534697, + 13.007305536732201 + ], + [ + 77.674607650801804, + 13.007224935420201 + ], + [ + 77.674607649494106, + 13.0072248134774 + ], + [ + 77.674517075226603, + 13.007021176870399 + ], + [ + 77.674436279831397, + 13.0068837312316 + ], + [ + 77.674424522272901, + 13.006847617864199 + ], + [ + 77.674464043346106, + 13.0068221226679 + ], + [ + 77.674680716567707, + 13.006616410648 + ], + [ + 77.674765060154996, + 13.0065291309676 + ], + [ + 77.674826424600298, + 13.006419790067 + ], + [ + 77.674906818667296, + 13.006229420335099 + ], + [ + 77.675076254922899, + 13.005594936202099 + ], + [ + 77.675148602370797, + 13.0054712279398 + ], + [ + 77.675247221123001, + 13.005417535508 + ], + [ + 77.675454320502695, + 13.005554505997299 + ], + [ + 77.675677856341196, + 13.005613677248601 + ], + [ + 77.6756888139804, + 13.0054745152315 + ], + [ + 77.675875093845804, + 13.005449312661501 + ], + [ + 77.676025213502001, + 13.005349598145299 + ], + [ + 77.676265185799295, + 13.005271798907399 + ], + [ + 77.676522690319104, + 13.005211531892099 + ], + [ + 77.676748417685403, + 13.0051501691129 + ], + [ + 77.676936889078704, + 13.005123870779 + ], + [ + 77.6770968706101, + 13.005084423278101 + ], + [ + 77.677124654712998, + 13.0049896652718 + ], + [ + 77.677118785888496, + 13.004632968545399 + ], + [ + 77.677156349996693, + 13.004373162778499 + ], + [ + 77.677163524302102, + 13.0041031014586 + ], + [ + 77.677165460002996, + 13.004030221304101 + ], + [ + 77.677152066749798, + 13.003775313161 + ], + [ + 77.677133579765695, + 13.003641710830401 + ], + [ + 77.677104924743304, + 13.0035542043976 + ], + [ + 77.677063500978093, + 13.003468920107499 + ], + [ + 77.676998386168904, + 13.003360883807 + ], + [ + 77.676900933725904, + 13.0032197325755 + ], + [ + 77.676894274668598, + 13.0031415713856 + ], + [ + 77.676892908940005, + 13.0031051224001 + ], + [ + 77.676887496103802, + 13.002960643969599 + ], + [ + 77.676903968501094, + 13.002707518975599 + ], + [ + 77.676983199569406, + 13.0025415486749 + ], + [ + 77.676985624741803, + 13.002370100328701 + ], + [ + 77.676986802409999, + 13.002343851353601 + ], + [ + 77.676995948242705, + 13.0021400360848 + ], + [ + 77.677069978874201, + 13.001591944201399 + ], + [ + 77.677111169989999, + 13.000741079537301 + ], + [ + 77.675628555890896, + 13.0007545281448 + ], + [ + 77.675590553611798, + 13.000892893997399 + ], + [ + 77.675579981755305, + 13.0008937925378 + ], + [ + 77.675569588886205, + 13.0009784099457 + ], + [ + 77.675527862112503, + 13.001087833774999 + ], + [ + 77.675463086613902, + 13.001379645484199 + ], + [ + 77.675380904320306, + 13.001439912499499 + ], + [ + 77.675356943651494, + 13.0015150505797 + ], + [ + 77.675364467861598, + 13.0015889363918 + ], + [ + 77.675375425500803, + 13.0017259068811 + ], + [ + 77.675376395346404, + 13.001856137904101 + ], + [ + 77.675442267099598, + 13.002105041195399 + ], + [ + 77.675455416266502, + 13.002364189361099 + ], + [ + 77.675152985426195, + 13.002388296167201 + ], + [ + 77.674831926599296, + 13.002394322868801 + ], + [ + 77.674775494757696, + 13.0023888440492 + ], + [ + 77.674718515034201, + 13.0023959665146 + ], + [ + 77.674585379718593, + 13.0024047326259 + ], + [ + 77.674201033092899, + 13.0023893752874 + ], + [ + 77.674161549590096, + 13.0023897821576 + ], + [ + 77.673923538314398, + 13.0024343182516 + ], + [ + 77.673628777821506, + 13.0024595208217 + ], + [ + 77.673304431702903, + 13.0025077344339 + ], + [ + 77.672988851695607, + 13.0025526607544 + ], + [ + 77.672705048841806, + 13.002593204019201 + ], + [ + 77.672661218285299, + 13.002614023533599 + ], + [ + 77.672680942035697, + 13.002964667986101 + ], + [ + 77.672716006480996, + 13.003365717578699 + ], + [ + 77.672593892369903, + 13.003354644076101 + ], + [ + 77.672177355214401, + 13.0033364603952 + ], + [ + 77.671830075485602, + 13.003306723256401 + ], + [ + 77.671433688758597, + 13.003250936308399 + ], + [ + 77.6713325006628, + 13.003144442033699 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "209", + "group": "Muneshwara Block", + "Corporatio": "West", + "ac_no": "167", + "ac": "Vijayanagar", + "corporat_1": "5", + "ward_id": "93", + "ward_name": "93 - Avalahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ವಿಜಯನಗರ", + "ward_name_": "ಆವಲಹಳ್ಳಿ", + "dig_ward_n": "Muneshwara Block", + "Assembly": "167 - Vijayanagar", + "Slno": "93" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.550243078578902, + 12.9425550204343 + ], + [ + 77.550164483519296, + 12.942468830981101 + ], + [ + 77.550119763821996, + 12.942434654990899 + ], + [ + 77.550067458719298, + 12.942394681588601 + ], + [ + 77.550065266930901, + 12.9423930072295 + ], + [ + 77.550042760128704, + 12.9423721316015 + ], + [ + 77.550015867473903, + 12.9423471879764 + ], + [ + 77.5500127725292, + 12.942269294427801 + ], + [ + 77.550005723233497, + 12.9422132279799 + ], + [ + 77.550005723233497, + 12.9422132279799 + ], + [ + 77.550005256199199, + 12.942209513428701 + ], + [ + 77.550000203209606, + 12.942165518960699 + ], + [ + 77.549999500319203, + 12.9421531022944 + ], + [ + 77.549929330445195, + 12.9421594363436 + ], + [ + 77.549837837942704, + 12.9421637194048 + ], + [ + 77.549778006976794, + 12.942166821764999 + ], + [ + 77.549762670163005, + 12.942167616871901 + ], + [ + 77.549760707371405, + 12.9421677182882 + ], + [ + 77.549542659331095, + 12.942179029553101 + ], + [ + 77.549518482392102, + 12.9421792660428 + ], + [ + 77.549314302802799, + 12.942198203132801 + ], + [ + 77.549116454289305, + 12.942217078149501 + ], + [ + 77.549027297780398, + 12.9422247260802 + ], + [ + 77.5488981972114, + 12.942245447453701 + ], + [ + 77.548817509912197, + 12.9422583980502 + ], + [ + 77.548728682567798, + 12.942272425647401 + ], + [ + 77.548725563135804, + 12.942272917822001 + ], + [ + 77.548715477418398, + 12.942274510777899 + ], + [ + 77.548456725772297, + 12.9423153694957 + ], + [ + 77.548456605292102, + 12.9423153878395 + ], + [ + 77.548413441849604, + 12.942322204600799 + ], + [ + 77.5483726295531, + 12.9423282502979 + ], + [ + 77.548239030417804, + 12.9423548065623 + ], + [ + 77.548083119823104, + 12.9423857982641 + ], + [ + 77.548082015789007, + 12.942386017758 + ], + [ + 77.547984241171605, + 12.942405454000699 + ], + [ + 77.547643140450504, + 12.9424728205866 + ], + [ + 77.547575163705702, + 12.942486246482201 + ], + [ + 77.547540819549695, + 12.9424934810392 + ], + [ + 77.547315329152894, + 12.942540979313801 + ], + [ + 77.547303003297799, + 12.9425435752766 + ], + [ + 77.547128057977403, + 12.942580426247901 + ], + [ + 77.547116342441399, + 12.94258289427 + ], + [ + 77.547011329070799, + 12.9426050146436 + ], + [ + 77.546810541596599, + 12.942647309271001 + ], + [ + 77.546675868812301, + 12.9426861931474 + ], + [ + 77.546656704895597, + 12.9426917271141 + ], + [ + 77.546386108616403, + 12.942770980435601 + ], + [ + 77.546065301876197, + 12.9428649436745 + ], + [ + 77.546032467538794, + 12.9428745592946 + ], + [ + 77.545866888846106, + 12.9429230513192 + ], + [ + 77.545800079953494, + 12.9429425719163 + ], + [ + 77.545799895358101, + 12.9429426261205 + ], + [ + 77.545757702298005, + 12.9429549549859 + ], + [ + 77.545757408411703, + 12.9429550409755 + ], + [ + 77.545380102562902, + 12.9430652910078 + ], + [ + 77.545159148445507, + 12.9431298558513 + ], + [ + 77.544962173527907, + 12.943172884411499 + ], + [ + 77.544953502867102, + 12.9431747787244 + ], + [ + 77.5449510287621, + 12.943174963700701 + ], + [ + 77.544949351749096, + 12.943175089395901 + ], + [ + 77.544933203013798, + 12.943176310465001 + ], + [ + 77.544932622226995, + 12.9431763540818 + ], + [ + 77.544916600483901, + 12.9431775630683 + ], + [ + 77.544916000373703, + 12.943177608680701 + ], + [ + 77.544901073005207, + 12.9431787347027 + ], + [ + 77.544900483938207, + 12.9431787793038 + ], + [ + 77.544899310400197, + 12.9431788675576 + ], + [ + 77.544885415743096, + 12.943179915734699 + ], + [ + 77.544885054936401, + 12.9431799427479 + ], + [ + 77.544878033971003, + 12.9431804720725 + ], + [ + 77.544877844366496, + 12.9431804865725 + ], + [ + 77.544871635211294, + 12.943180954665401 + ], + [ + 77.544871352646595, + 12.943180976397301 + ], + [ + 77.544858471377296, + 12.9431819487246 + ], + [ + 77.544858081115905, + 12.943181977832401 + ], + [ + 77.544845290964403, + 12.9431829429451 + ], + [ + 77.544845114245206, + 12.9431829564158 + ], + [ + 77.544831487433598, + 12.943183984808799 + ], + [ + 77.544831209464903, + 12.9431840055923 + ], + [ + 77.544818202077494, + 12.943184985473399 + ], + [ + 77.544818000508698, + 12.9431850009936 + ], + [ + 77.544802915751603, + 12.9431861393885 + ], + [ + 77.544802886296907, + 12.943186141483 + ], + [ + 77.544802761118902, + 12.9431861508365 + ], + [ + 77.544798756380104, + 12.9431864537521 + ], + [ + 77.544475337959398, + 12.943197117472 + ], + [ + 77.544360793867995, + 12.943200893735 + ], + [ + 77.5442167877694, + 12.9432101353327 + ], + [ + 77.543759000163803, + 12.943239518776901 + ], + [ + 77.543346663574994, + 12.943275183319701 + ], + [ + 77.543332201688301, + 12.9432764339074 + ], + [ + 77.543302368577798, + 12.943278916850099 + ], + [ + 77.543055521759399, + 12.943299462721299 + ], + [ + 77.542333415006198, + 12.9433301831218 + ], + [ + 77.542332174783397, + 12.943330235875999 + ], + [ + 77.542295370004993, + 12.9433325743976 + ], + [ + 77.541628004163798, + 12.943379632090201 + ], + [ + 77.541621684211094, + 12.9433800767943 + ], + [ + 77.541510077264903, + 12.943387944809601 + ], + [ + 77.541183972767499, + 12.9434126200292 + ], + [ + 77.541166642139004, + 12.943413930996 + ], + [ + 77.541116022620002, + 12.9434177619687 + ], + [ + 77.540737486463001, + 12.9434451685852 + ], + [ + 77.540438286631698, + 12.9434616372927 + ], + [ + 77.540315533667197, + 12.9434682130748 + ], + [ + 77.539974519821101, + 12.9434864855877 + ], + [ + 77.539476685612698, + 12.9435015009716 + ], + [ + 77.539471501026995, + 12.9435016364161 + ], + [ + 77.5393402805976, + 12.9435050887349 + ], + [ + 77.539082987407099, + 12.9435098541986 + ], + [ + 77.538662829362593, + 12.9435161337737 + ], + [ + 77.538648970738393, + 12.943516340889699 + ], + [ + 77.538651000551098, + 12.943494919190901 + ], + [ + 77.538107177350298, + 12.943514492420499 + ], + [ + 77.538082843508406, + 12.9435153681511 + ], + [ + 77.537554188323497, + 12.9435230076914 + ], + [ + 77.537372575290505, + 12.943525631484 + ], + [ + 77.536858931996704, + 12.943496665380801 + ], + [ + 77.536773627895798, + 12.943496300402201 + ], + [ + 77.536760207839393, + 12.9434815417899 + ], + [ + 77.536710978121604, + 12.9434492937886 + ], + [ + 77.536688839415604, + 12.9432845685135 + ], + [ + 77.536658667827197, + 12.9431930693044 + ], + [ + 77.536601568219098, + 12.943041593094099 + ], + [ + 77.536460995216402, + 12.942878020393101 + ], + [ + 77.536425840102297, + 12.942843031288 + ], + [ + 77.536292598549295, + 12.9427104159968 + ], + [ + 77.536256506305605, + 12.9427021616254 + ], + [ + 77.536130731694996, + 12.9427005169666 + ], + [ + 77.536080946148999, + 12.942693829623201 + ], + [ + 77.535859059103402, + 12.9425869844438 + ], + [ + 77.535504998930804, + 12.942424053341499 + ], + [ + 77.535379341323093, + 12.9424338812745 + ], + [ + 77.535303685787696, + 12.942471908983199 + ], + [ + 77.535027356704006, + 12.9426208917646 + ], + [ + 77.534919027236398, + 12.9426090365275 + ], + [ + 77.534884976920196, + 12.9425677744441 + ], + [ + 77.534793870110605, + 12.942234476181101 + ], + [ + 77.534605714210997, + 12.942137341135499 + ], + [ + 77.534436721816803, + 12.9420649283869 + ], + [ + 77.534391843408102, + 12.942061539445 + ], + [ + 77.534296470853903, + 12.9420777662019 + ], + [ + 77.534270413120893, + 12.942103836346799 + ], + [ + 77.534176730927499, + 12.942190803155199 + ], + [ + 77.534142721597902, + 12.942298226285301 + ], + [ + 77.534139855800206, + 12.942400564530599 + ], + [ + 77.534051173723995, + 12.9425964878412 + ], + [ + 77.533897868438203, + 12.9428609274166 + ], + [ + 77.533891943012904, + 12.9429499095365 + ], + [ + 77.533870190642702, + 12.9430160972643 + ], + [ + 77.533795587759599, + 12.943158337428599 + ], + [ + 77.533625765683198, + 12.9434798450757 + ], + [ + 77.533605722896496, + 12.9434972700894 + ], + [ + 77.533636872018207, + 12.943517606261301 + ], + [ + 77.533501621901905, + 12.9439040351649 + ], + [ + 77.532941299991606, + 12.9439619995005 + ], + [ + 77.532925842835496, + 12.944827600244601 + ], + [ + 77.534657044323893, + 12.945152200523699 + ], + [ + 77.534991180379293, + 12.945223153289099 + ], + [ + 77.535143088922297, + 12.945350759348299 + ], + [ + 77.535268548123, + 12.945465714687799 + ], + [ + 77.535443665409304, + 12.945719310900399 + ], + [ + 77.535490802843697, + 12.9457532746022 + ], + [ + 77.535537693689804, + 12.9457628577452 + ], + [ + 77.535665623762398, + 12.945797536792799 + ], + [ + 77.535831426215296, + 12.945702525550701 + ], + [ + 77.535852893191006, + 12.9458515859875 + ], + [ + 77.535934187575506, + 12.9462423209626 + ], + [ + 77.5360252876429, + 12.9466158311554 + ], + [ + 77.536116363326698, + 12.946986894459499 + ], + [ + 77.535909987807301, + 12.947056196672699 + ], + [ + 77.535240323775994, + 12.9472009711755 + ], + [ + 77.5352956691125, + 12.947492853821601 + ], + [ + 77.535327095155793, + 12.9478865213056 + ], + [ + 77.535354519522102, + 12.948254533792699 + ], + [ + 77.535349781641202, + 12.9485285341466 + ], + [ + 77.535430176035106, + 12.9485767092033 + ], + [ + 77.535977152661999, + 12.948920390926499 + ], + [ + 77.536246864848906, + 12.949080315520201 + ], + [ + 77.536367195973796, + 12.949169981007801 + ], + [ + 77.536542012182693, + 12.949345171718599 + ], + [ + 77.536813007490096, + 12.9496317761489 + ], + [ + 77.537391119567701, + 12.9501616050186 + ], + [ + 77.537595277809103, + 12.950346070397501 + ], + [ + 77.537676219912001, + 12.950441958827 + ], + [ + 77.537910509488, + 12.950664701361999 + ], + [ + 77.537931745301606, + 12.9506782913833 + ], + [ + 77.538112537541593, + 12.950780380342 + ], + [ + 77.538170948319106, + 12.950795952625199 + ], + [ + 77.538406856149706, + 12.950862015931801 + ], + [ + 77.538359576195802, + 12.9504950311489 + ], + [ + 77.538317690761801, + 12.950230535083399 + ], + [ + 77.538268390419802, + 12.950094291287501 + ], + [ + 77.538219482355302, + 12.9499964972134 + ], + [ + 77.538175445624404, + 12.9499499285859 + ], + [ + 77.538101008259503, + 12.949912200276801 + ], + [ + 77.538166601345196, + 12.949864137960001 + ], + [ + 77.538341352322902, + 12.9497841882889 + ], + [ + 77.538511892904097, + 12.949777746241001 + ], + [ + 77.538716131859005, + 12.9497047008884 + ], + [ + 77.538637161013398, + 12.9495439662932 + ], + [ + 77.538605836921306, + 12.949407237687099 + ], + [ + 77.5385220999881, + 12.949268572768499 + ], + [ + 77.538490627316193, + 12.9491171633766 + ], + [ + 77.538474073144897, + 12.9489607145421 + ], + [ + 77.538452901422801, + 12.9488410161958 + ], + [ + 77.538442377530203, + 12.9487872840003 + ], + [ + 77.538501629955306, + 12.948725530822999 + ], + [ + 77.538656488887298, + 12.9486537864952 + ], + [ + 77.538744194388997, + 12.948674445316 + ], + [ + 77.538863827466002, + 12.948768495000801 + ], + [ + 77.539121149881296, + 12.9488026926852 + ], + [ + 77.539264593160595, + 12.9488012946083 + ], + [ + 77.539395587888706, + 12.9488024648248 + ], + [ + 77.539558678536594, + 12.9487702871808 + ], + [ + 77.539993902676301, + 12.9486351927737 + ], + [ + 77.540214174920393, + 12.948581592850701 + ], + [ + 77.540501030975605, + 12.9484527737085 + ], + [ + 77.540695919194903, + 12.9483578860871 + ], + [ + 77.540782711336604, + 12.9483056520535 + ], + [ + 77.5408634652388, + 12.9482730531212 + ], + [ + 77.541217980010103, + 12.9481654640442 + ], + [ + 77.541589707540098, + 12.9480987306699 + ], + [ + 77.541872045474506, + 12.9480615540743 + ], + [ + 77.541958438525697, + 12.9480539993151 + ], + [ + 77.542031605307898, + 12.948059022480001 + ], + [ + 77.542199503702804, + 12.948081230437699 + ], + [ + 77.542226844023503, + 12.948084846774201 + ], + [ + 77.542414162044693, + 12.9480987962136 + ], + [ + 77.542531075160994, + 12.9480916788618 + ], + [ + 77.542718430284907, + 12.9480611652966 + ], + [ + 77.542753376898403, + 12.948046481663599 + ], + [ + 77.543005765226994, + 12.9479400344923 + ], + [ + 77.543092396231998, + 12.9479392624777 + ], + [ + 77.543182354969204, + 12.947902612621901 + ], + [ + 77.543397256396901, + 12.9478126538847 + ], + [ + 77.543658803095795, + 12.947681047584 + ], + [ + 77.543966995065801, + 12.9475011301096 + ], + [ + 77.544210216836703, + 12.9473645261013 + ], + [ + 77.544526738319405, + 12.947169615504 + ], + [ + 77.544686730772, + 12.947027673654601 + ], + [ + 77.544382722850898, + 12.9464494744349 + ], + [ + 77.544315585172498, + 12.946301680280399 + ], + [ + 77.544496752073798, + 12.9462025590793 + ], + [ + 77.544166093570695, + 12.9456806420494 + ], + [ + 77.545384201471805, + 12.945322627669199 + ], + [ + 77.545331551532001, + 12.945051522476 + ], + [ + 77.545385276761706, + 12.9450449665029 + ], + [ + 77.545688623451099, + 12.9449502914216 + ], + [ + 77.545883770047396, + 12.944907784242099 + ], + [ + 77.546096305944403, + 12.945035305780401 + ], + [ + 77.546250877505898, + 12.9450256450578 + ], + [ + 77.546247013216899, + 12.944979273589301 + ], + [ + 77.547051413619698, + 12.944854843924 + ], + [ + 77.547652448958203, + 12.9447804704012 + ], + [ + 77.547709800104897, + 12.9447774626982 + ], + [ + 77.548007931702003, + 12.9447464071539 + ], + [ + 77.547982573988904, + 12.9445527289331 + ], + [ + 77.547943666847303, + 12.9442839373752 + ], + [ + 77.548298725042798, + 12.9442388664331 + ], + [ + 77.548687397953998, + 12.944187348743601 + ], + [ + 77.548722862425393, + 12.944485537921601 + ], + [ + 77.548741792271002, + 12.944629726755201 + ], + [ + 77.548793381364803, + 12.9450415444432 + ], + [ + 77.548798002199703, + 12.945098707671599 + ], + [ + 77.549459022863104, + 12.945014280425699 + ], + [ + 77.549465275036098, + 12.944986174501 + ], + [ + 77.549466588935303, + 12.944980323456599 + ], + [ + 77.549471884233, + 12.944956747232499 + ], + [ + 77.549514211845207, + 12.944759829517899 + ], + [ + 77.549532865150894, + 12.944669300540101 + ], + [ + 77.549538391946697, + 12.9446466598481 + ], + [ + 77.549547855479801, + 12.944614945993001 + ], + [ + 77.549597527702005, + 12.9444044044546 + ], + [ + 77.549621038789198, + 12.944338673235301 + ], + [ + 77.549635028931903, + 12.9442990097772 + ], + [ + 77.549647135179399, + 12.944265427342099 + ], + [ + 77.549650145553699, + 12.9442570766362 + ], + [ + 77.549650860807105, + 12.944247671346901 + ], + [ + 77.549650860807105, + 12.944247671346901 + ], + [ + 77.549655732128997, + 12.944183615464899 + ], + [ + 77.549657849159004, + 12.9441579200902 + ], + [ + 77.549659832006995, + 12.9441338847897 + ], + [ + 77.549672218824, + 12.944058389342301 + ], + [ + 77.549680432759999, + 12.944008327502001 + ], + [ + 77.549693983736404, + 12.943925753764001 + ], + [ + 77.549727889259003, + 12.9437772881569 + ], + [ + 77.549731465217803, + 12.9437616340724 + ], + [ + 77.549743787421505, + 12.9437076841834 + ], + [ + 77.549752406760106, + 12.943669952479 + ], + [ + 77.549791406586706, + 12.943485490881701 + ], + [ + 77.549837974339795, + 12.943374487335999 + ], + [ + 77.549849895507094, + 12.9433493989384 + ], + [ + 77.549858899098197, + 12.943328982893901 + ], + [ + 77.5498865075552, + 12.9432699875741 + ], + [ + 77.549977437785998, + 12.9430974378283 + ], + [ + 77.550007940521297, + 12.9430395453244 + ], + [ + 77.550027752647196, + 12.9430177830695 + ], + [ + 77.550054626453701, + 12.9429882686577 + ], + [ + 77.550193010305506, + 12.9429379387362 + ], + [ + 77.550281189023806, + 12.9429058684489 + ], + [ + 77.550293694663296, + 12.9428334698268 + ], + [ + 77.550274194627804, + 12.9427058737142 + ], + [ + 77.550270316497304, + 12.9426804944945 + ], + [ + 77.550243078578902, + 12.9425550204343 + ] + ], + [ + [ + 77.549647135179399, + 12.944265427342099 + ], + [ + 77.549650144387897, + 12.9442510857345 + ], + [ + 77.549647135179399, + 12.944265427342099 + ], + [ + 77.549647135179399, + 12.944265427342099 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "210", + "group": "R M NAGARA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "8", + "ward_name": "8 - Ramamurthy Nagara", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ರಾಮಮೂರ್ತಿ ನಗರ", + "dig_ward_n": "Ramamurthy Nagara", + "Assembly": "151 - K.R. Pura", + "Slno": "8" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.677975197425098, + 13.011675388122001 + ], + [ + 77.677726028730504, + 13.0116291939579 + ], + [ + 77.677379076931103, + 13.0115648719039 + ], + [ + 77.677146748023304, + 13.0115217988109 + ], + [ + 77.676954601011502, + 13.011486174638099 + ], + [ + 77.6768279498461, + 13.0114668966482 + ], + [ + 77.676827456147905, + 13.011466821343401 + ], + [ + 77.6767055131007, + 13.0114482598556 + ], + [ + 77.676348891673499, + 13.0113939769033 + ], + [ + 77.676296898932506, + 13.0113945134538 + ], + [ + 77.675921821731507, + 13.0113983838365 + ], + [ + 77.675920382836196, + 13.0113983986833 + ], + [ + 77.675726071155793, + 13.0114004035511 + ], + [ + 77.675503037563701, + 13.0114140239273 + ], + [ + 77.674996849308002, + 13.0114449358654 + ], + [ + 77.674787728938796, + 13.0114577056857 + ], + [ + 77.674004239923804, + 13.0115055493662 + ], + [ + 77.673916631798903, + 13.0115108991029 + ], + [ + 77.673825865697594, + 13.011516441268199 + ], + [ + 77.673566857129799, + 13.0115244044666 + ], + [ + 77.6735361250648, + 13.0123742123818 + ], + [ + 77.673539224301507, + 13.012909565370499 + ], + [ + 77.673596525452396, + 13.012910209203699 + ], + [ + 77.673564333794602, + 13.0131368384745 + ], + [ + 77.673850195715801, + 13.014729681701899 + ], + [ + 77.673490564053907, + 13.0146319661867 + ], + [ + 77.6734883614822, + 13.014631819062201 + ], + [ + 77.673188508482994, + 13.014509853675801 + ], + [ + 77.673159670376293, + 13.0145483938017 + ], + [ + 77.673146345441197, + 13.014553966819999 + ], + [ + 77.673323540194303, + 13.015124995259599 + ], + [ + 77.673511539475896, + 13.015504856821501 + ], + [ + 77.672822637999104, + 13.015749513420699 + ], + [ + 77.672301133142994, + 13.0159594030295 + ], + [ + 77.672401571115302, + 13.0161989089634 + ], + [ + 77.6723539274617, + 13.0162182239581 + ], + [ + 77.672234174494804, + 13.0161602789741 + ], + [ + 77.671993380894506, + 13.016205347294999 + ], + [ + 77.671592916671599, + 13.0162645799453 + ], + [ + 77.671415218720597, + 13.016304497601 + ], + [ + 77.671292890421, + 13.016334113926099 + ], + [ + 77.6711628361235, + 13.0163495659219 + ], + [ + 77.671041795490197, + 13.016362442585001 + ], + [ + 77.670430214256797, + 13.0163642936747 + ], + [ + 77.670485523643606, + 13.0166740578324 + ], + [ + 77.670611620931496, + 13.0172781811797 + ], + [ + 77.670583929041797, + 13.017592994644 + ], + [ + 77.670274346368501, + 13.0174415069541 + ], + [ + 77.669815937161601, + 13.017946272148199 + ], + [ + 77.669550677901398, + 13.0180261074595 + ], + [ + 77.669242925652895, + 13.018096929106701 + ], + [ + 77.669223380967694, + 13.0180444459155 + ], + [ + 77.668128416240194, + 13.018213539694299 + ], + [ + 77.668213721568804, + 13.0188453774664 + ], + [ + 77.668249867894403, + 13.019004421299201 + ], + [ + 77.668001181174006, + 13.019075268097399 + ], + [ + 77.6682009659187, + 13.019589728247601 + ], + [ + 77.668343697803607, + 13.019539858078501 + ], + [ + 77.669415038243699, + 13.0191524873142 + ], + [ + 77.670139141405798, + 13.018879830224099 + ], + [ + 77.670417777450993, + 13.0187123314413 + ], + [ + 77.6702778603523, + 13.018482051216299 + ], + [ + 77.670543468627599, + 13.018387941693099 + ], + [ + 77.671424232384794, + 13.0193627050909 + ], + [ + 77.672490420090796, + 13.018667365282701 + ], + [ + 77.672069353206894, + 13.0182488737314 + ], + [ + 77.672718337027902, + 13.017996491134401 + ], + [ + 77.673357019518505, + 13.017800765855 + ], + [ + 77.673019650944795, + 13.0169431800915 + ], + [ + 77.673212800891605, + 13.016865920112799 + ], + [ + 77.673132965580294, + 13.016592934854801 + ], + [ + 77.673604535120404, + 13.016535964695301 + ], + [ + 77.674668488058401, + 13.0164951555415 + ], + [ + 77.675029940563306, + 13.016474750964599 + ], + [ + 77.675687988168093, + 13.0164579900622 + ], + [ + 77.675851224783202, + 13.0164426866295 + ], + [ + 77.676496883894799, + 13.0164164521735 + ], + [ + 77.677231448662894, + 13.0163902177175 + ], + [ + 77.678017024873299, + 13.0163494085637 + ], + [ + 77.678515336997705, + 13.016347506611099 + ], + [ + 77.679379759115506, + 13.016326817782099 + ], + [ + 77.679905905705397, + 13.0162991258563 + ], + [ + 77.680219261707705, + 13.0162801787492 + ], + [ + 77.680896985154405, + 13.016264146581699 + ], + [ + 77.681270097417595, + 13.0162408270652 + ], + [ + 77.681659039598998, + 13.0162259285914 + ], + [ + 77.682182473498699, + 13.0161985604416 + ], + [ + 77.682438988179598, + 13.0161956455021 + ], + [ + 77.682838334898804, + 13.016154836348299 + ], + [ + 77.683260453353498, + 13.0161263848199 + ], + [ + 77.683605965526397, + 13.016141691953001 + ], + [ + 77.683848361454906, + 13.0161315168319 + ], + [ + 77.684048763549399, + 13.0161096547852 + ], + [ + 77.6840662531867, + 13.0161679535763 + ], + [ + 77.684429163161397, + 13.0161038249061 + ], + [ + 77.684869319034405, + 13.0159930572029 + ], + [ + 77.685359757614705, + 13.0159303860025 + ], + [ + 77.685595867718803, + 13.0158852044394 + ], + [ + 77.685595046654797, + 13.0158783464127 + ], + [ + 77.6855755702219, + 13.015744361443501 + ], + [ + 77.685562754288796, + 13.015666227836901 + ], + [ + 77.685438670887905, + 13.015479794173499 + ], + [ + 77.685423246674603, + 13.0153972845279 + ], + [ + 77.685396531098803, + 13.0153462505957 + ], + [ + 77.685384229141206, + 13.0152836622925 + ], + [ + 77.685399877142302, + 13.015248576744799 + ], + [ + 77.685409775099899, + 13.0152263840613 + ], + [ + 77.685439467244805, + 13.015193341015999 + ], + [ + 77.685563244800406, + 13.0151475362303 + ], + [ + 77.685714067127705, + 13.0150283774723 + ], + [ + 77.685852680300201, + 13.014862019272501 + ], + [ + 77.685701611118304, + 13.014550948736501 + ], + [ + 77.685533929500195, + 13.0141912914813 + ], + [ + 77.685365986778606, + 13.013807255605199 + ], + [ + 77.685308052887606, + 13.013588437247501 + ], + [ + 77.685287816833593, + 13.0133391127367 + ], + [ + 77.685492057604904, + 13.0128838199137 + ], + [ + 77.685892055834998, + 13.0124078557884 + ], + [ + 77.686217090424506, + 13.012033055935801 + ], + [ + 77.686508664756303, + 13.011810617361499 + ], + [ + 77.686935034487007, + 13.011474922013401 + ], + [ + 77.687077281695295, + 13.011374494685199 + ], + [ + 77.687188856260306, + 13.0113028834911 + ], + [ + 77.686748359166799, + 13.0109610051499 + ], + [ + 77.6861259652635, + 13.0103999740258 + ], + [ + 77.685873939563194, + 13.010167672075999 + ], + [ + 77.685249354132097, + 13.010156714436899 + ], + [ + 77.684407807445993, + 13.0101260330473 + ], + [ + 77.684179888551796, + 13.010090968602 + ], + [ + 77.683434769090198, + 13.0097140258155 + ], + [ + 77.682610754626694, + 13.009266954138599 + ], + [ + 77.682485745851494, + 13.009427021070399 + ], + [ + 77.682304054083204, + 13.0096787572641 + ], + [ + 77.682160132250303, + 13.009876494743301 + ], + [ + 77.682108550124198, + 13.009947366727999 + ], + [ + 77.681798108884493, + 13.0102046131006 + ], + [ + 77.6813073370339, + 13.010611293561199 + ], + [ + 77.681281087701095, + 13.010633044491399 + ], + [ + 77.680992665284606, + 13.0108720429267 + ], + [ + 77.680769420195006, + 13.010979129528501 + ], + [ + 77.680683005229199, + 13.0110205816099 + ], + [ + 77.680204676535297, + 13.011250023289501 + ], + [ + 77.680121510552496, + 13.0112899158378 + ], + [ + 77.679933387818394, + 13.011350205344799 + ], + [ + 77.678957218050101, + 13.0116630567352 + ], + [ + 77.678886979465801, + 13.011685567230399 + ], + [ + 77.678847188730799, + 13.0116983192913 + ], + [ + 77.678542948263996, + 13.011696134608 + ], + [ + 77.678069231779602, + 13.011692733055 + ], + [ + 77.678068757319707, + 13.0116927334377 + ], + [ + 77.677975197425098, + 13.011675388122001 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "211", + "group": "Adichunchanagiri Nagara", + "Corporatio": "West", + "ac_no": "167", + "ac": "Vijayanagar", + "corporat_1": "5", + "ward_id": "67", + "ward_name": "67 - RPC Layout", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ವಿಜಯನಗರ", + "ward_name_": "ಆರ್‌ಪಿಸಿ ಲೇಔಟ್", + "dig_ward_n": "Adichunchanagiri Nagara", + "Assembly": "167 - Vijayanagar", + "Slno": "67" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.541340758512305, + 12.9736281787997 + ], + [ + 77.541633670146197, + 12.9736903686688 + ], + [ + 77.541635821267306, + 12.9736908246763 + ], + [ + 77.542210030538399, + 12.973812737473301 + ], + [ + 77.542294070472593, + 12.973830580654401 + ], + [ + 77.542603307606299, + 12.9738962976995 + ], + [ + 77.543102031280696, + 12.974002282839299 + ], + [ + 77.543267518271094, + 12.974037450019701 + ], + [ + 77.543349467337407, + 12.974054865160801 + ], + [ + 77.543374595938701, + 12.9740602055333 + ], + [ + 77.543386370862194, + 12.9740627068111 + ], + [ + 77.543660434704606, + 12.974118751569801 + ], + [ + 77.544184208783605, + 12.974157671757 + ], + [ + 77.544471563359707, + 12.974161636257699 + ], + [ + 77.544642036109707, + 12.9741655516113 + ], + [ + 77.544705985029196, + 12.974167019176299 + ], + [ + 77.545163611439904, + 12.9741775291556 + ], + [ + 77.5455998065502, + 12.974187545215701 + ], + [ + 77.546117033259094, + 12.9741994206467 + ], + [ + 77.546570298993302, + 12.974209828069799 + ], + [ + 77.546670524557399, + 12.9742121297592 + ], + [ + 77.547195609128806, + 12.9742241853614 + ], + [ + 77.547196464352496, + 12.9742242084561 + ], + [ + 77.547410430792397, + 12.9742299863748 + ], + [ + 77.547738070084193, + 12.9742888897906 + ], + [ + 77.547899591598096, + 12.974431863351899 + ], + [ + 77.547964992118693, + 12.974521567160499 + ], + [ + 77.547999204429004, + 12.9745687975162 + ], + [ + 77.548037197664399, + 12.9746212466326 + ], + [ + 77.548045044085796, + 12.974614899740599 + ], + [ + 77.547797054905402, + 12.9740630659632 + ], + [ + 77.547699631158693, + 12.973771194069499 + ], + [ + 77.547437070057896, + 12.9731002214982 + ], + [ + 77.547151567441404, + 12.9724227271026 + ], + [ + 77.547149475774901, + 12.972418066736299 + ], + [ + 77.547022916601307, + 12.9722634475776 + ], + [ + 77.5470013043508, + 12.9722152958447 + ], + [ + 77.546536744737494, + 12.971107833043 + ], + [ + 77.546307875187395, + 12.9705619419358 + ], + [ + 77.5462664952274, + 12.9704569229622 + ], + [ + 77.546429615496606, + 12.970386882735401 + ], + [ + 77.546212647480303, + 12.9698907422852 + ], + [ + 77.546796547776395, + 12.969667667474701 + ], + [ + 77.546629960365394, + 12.9692071063412 + ], + [ + 77.547304214330396, + 12.9690108472369 + ], + [ + 77.5476224017156, + 12.968919222597201 + ], + [ + 77.547938090247001, + 12.968840925177799 + ], + [ + 77.548042209155795, + 12.9688017764681 + ], + [ + 77.548092186231997, + 12.9687851174427 + ], + [ + 77.548317083075005, + 12.968718481341099 + ], + [ + 77.548419406590796, + 12.9686591241725 + ], + [ + 77.548428892273805, + 12.968694391938 + ], + [ + 77.548457016357204, + 12.9686823885663 + ], + [ + 77.548516371159096, + 12.9686570549108 + ], + [ + 77.548489994898205, + 12.968606584687 + ], + [ + 77.548227059904605, + 12.9682534654682 + ], + [ + 77.548226378372107, + 12.9681865407924 + ], + [ + 77.548097225641101, + 12.968004797631499 + ], + [ + 77.548119673623901, + 12.9679863171745 + ], + [ + 77.548354565882093, + 12.967812230359 + ], + [ + 77.548525879607595, + 12.9677265580831 + ], + [ + 77.548677334499303, + 12.9676418918243 + ], + [ + 77.548873911821502, + 12.967481714735801 + ], + [ + 77.549337173359405, + 12.967120642299401 + ], + [ + 77.549577929433099, + 12.9674260498559 + ], + [ + 77.549800741373701, + 12.9677645009409 + ], + [ + 77.549918509986497, + 12.9679082369366 + ], + [ + 77.550029038247203, + 12.968043137480599 + ], + [ + 77.550163319565499, + 12.9682374519825 + ], + [ + 77.550208298934095, + 12.968297424474001 + ], + [ + 77.550436527582093, + 12.9681624863682 + ], + [ + 77.550541479442202, + 12.968114175194501 + ], + [ + 77.550652261961105, + 12.9680608663132 + ], + [ + 77.550759927448894, + 12.9680064669316 + ], + [ + 77.550876268032397, + 12.967915398652201 + ], + [ + 77.551013184656497, + 12.9678235168281 + ], + [ + 77.551164621062497, + 12.967748621631699 + ], + [ + 77.551123281392904, + 12.967706728927901 + ], + [ + 77.551103505079396, + 12.967686873206301 + ], + [ + 77.551094581158395, + 12.967677912533 + ], + [ + 77.551047076312202, + 12.967630215652299 + ], + [ + 77.551023850696296, + 12.9676068964402 + ], + [ + 77.551018573426106, + 12.967601598782799 + ], + [ + 77.550943905491195, + 12.967506337997801 + ], + [ + 77.550848289924005, + 12.967385291744799 + ], + [ + 77.550825305775206, + 12.967356195205801 + ], + [ + 77.550776464937101, + 12.967294364932799 + ], + [ + 77.550776041234002, + 12.967293827912499 + ], + [ + 77.550775927375199, + 12.967293683571301 + ], + [ + 77.550774734689597, + 12.967292174736601 + ], + [ + 77.550774594717197, + 12.9672919990302 + ], + [ + 77.550772021770499, + 12.967288744685501 + ], + [ + 77.550768791894996, + 12.967284666499101 + ], + [ + 77.5507687013679, + 12.967284551743299 + ], + [ + 77.550765357449507, + 12.9672803111481 + ], + [ + 77.550765237980997, + 12.9672801587307 + ], + [ + 77.550762440015902, + 12.967276609352799 + ], + [ + 77.550758049850899, + 12.9672710373725 + ], + [ + 77.550745626914406, + 12.967255269965801 + ], + [ + 77.550642738333394, + 12.967124683025199 + ], + [ + 77.550614065790896, + 12.9670882915878 + ], + [ + 77.550511136957098, + 12.9669576515975 + ], + [ + 77.550507231170101, + 12.9669526937349 + ], + [ + 77.550437703648001, + 12.966864450133199 + ], + [ + 77.550437054081002, + 12.9668636253146 + ], + [ + 77.550381109542897, + 12.966792619427 + ], + [ + 77.550144881804897, + 12.9664927941771 + ], + [ + 77.550094588441098, + 12.966428961419201 + ], + [ + 77.550063127689, + 12.9663890313105 + ], + [ + 77.550010529509507, + 12.966345721604 + ], + [ + 77.550002568897398, + 12.9663391663937 + ], + [ + 77.549999146461204, + 12.966336348604599 + ], + [ + 77.549987732749997, + 12.966326949704699 + ], + [ + 77.549960832619405, + 12.9663048011182 + ], + [ + 77.549952885946198, + 12.9662982575143 + ], + [ + 77.549826143411394, + 12.966193899162599 + ], + [ + 77.549805109385503, + 12.966176579384699 + ], + [ + 77.549799622326105, + 12.9661720612451 + ], + [ + 77.5497968511268, + 12.966169780052301 + ], + [ + 77.549724389177101, + 12.9661101143764 + ], + [ + 77.5497003968526, + 12.9660903594462 + ], + [ + 77.549654691042605, + 12.9660527254238 + ], + [ + 77.549639557650096, + 12.966040264072401 + ], + [ + 77.549623765603002, + 12.9660272607714 + ], + [ + 77.549585793721604, + 12.9659959944526 + ], + [ + 77.549583815884503, + 12.9659943659149 + ], + [ + 77.549411398562896, + 12.9658523982412 + ], + [ + 77.549406954237398, + 12.9658487384879 + ], + [ + 77.549340569054095, + 12.965794077950299 + ], + [ + 77.549298165933905, + 12.9657591634382 + ], + [ + 77.549217406434906, + 12.9656926664683 + ], + [ + 77.549115856057696, + 12.9656090501266 + ], + [ + 77.549103961198398, + 12.965599255654601 + ], + [ + 77.549090647766505, + 12.965588293348 + ], + [ + 77.549090488903801, + 12.9655881620951 + ], + [ + 77.549050434342803, + 12.965555180521999 + ], + [ + 77.548982863914901, + 12.965499543989001 + ], + [ + 77.548943149406497, + 12.965466843654299 + ], + [ + 77.548860398316606, + 12.9653987054808 + ], + [ + 77.548814787514203, + 12.9653611498386 + ], + [ + 77.548811736321099, + 12.9653590529709 + ], + [ + 77.548790461478603, + 12.965344433706401 + ], + [ + 77.548662712302303, + 12.965256651294 + ], + [ + 77.548626064655394, + 12.9652314693018 + ], + [ + 77.548625717703501, + 12.965231231475 + ], + [ + 77.5485920553851, + 12.9652081009156 + ], + [ + 77.548550076281103, + 12.9651792542751 + ], + [ + 77.548506909747104, + 12.9651495925856 + ], + [ + 77.548502976384896, + 12.965146714725201 + ], + [ + 77.548502911410395, + 12.965146666574499 + ], + [ + 77.5484970772536, + 12.9651423970222 + ], + [ + 77.548494727256198, + 12.9651406772548 + ], + [ + 77.548484429158606, + 12.965135523563101 + ], + [ + 77.5478567735246, + 12.9648213970549 + ], + [ + 77.547788712888902, + 12.9647873342462 + ], + [ + 77.547485212296607, + 12.964683125723599 + ], + [ + 77.547432013972696, + 12.9646648598544 + ], + [ + 77.547253414562505, + 12.9646035372617 + ], + [ + 77.547082796765807, + 12.9645449552189 + ], + [ + 77.547043919785494, + 12.964531606682 + ], + [ + 77.546372021049194, + 12.964300906799799 + ], + [ + 77.546329371231906, + 12.9642939310652 + ], + [ + 77.546206330765301, + 12.9642738086573 + ], + [ + 77.546000619607398, + 12.9642401687539 + ], + [ + 77.545931493282396, + 12.964242857968101 + ], + [ + 77.545819567361207, + 12.9642472126533 + ], + [ + 77.545805248336293, + 12.9642477692319 + ], + [ + 77.545690413486199, + 12.9642522381489 + ], + [ + 77.545387251889593, + 12.9642648697974 + ], + [ + 77.545375004168903, + 12.964265379892099 + ], + [ + 77.544769600585894, + 12.9642906060174 + ], + [ + 77.544715059081597, + 12.964281376502401 + ], + [ + 77.544634626866397, + 12.9642677662626 + ], + [ + 77.544591104409307, + 12.9642604021436 + ], + [ + 77.544584378189995, + 12.964259263592099 + ], + [ + 77.544498212687103, + 12.9642446830296 + ], + [ + 77.544353192573197, + 12.9642201425478 + ], + [ + 77.544284393750203, + 12.964190170497901 + ], + [ + 77.543904422385495, + 12.9640246377264 + ], + [ + 77.543887501992401, + 12.964011246600601 + ], + [ + 77.543864953859597, + 12.9639934021833 + ], + [ + 77.543913931239501, + 12.963930841658099 + ], + [ + 77.543930885128404, + 12.963909186957499 + ], + [ + 77.544088949753203, + 12.963707903232899 + ], + [ + 77.544123223466002, + 12.963664258668301 + ], + [ + 77.544208829027696, + 12.9635552469449 + ], + [ + 77.544222720120302, + 12.963537513409101 + ], + [ + 77.544223273941199, + 12.9635368060008 + ], + [ + 77.544306053012804, + 12.963431131291999 + ], + [ + 77.544373931510805, + 12.9633444783844 + ], + [ + 77.544423674736294, + 12.9632809770363 + ], + [ + 77.5444464372043, + 12.9632866514204 + ], + [ + 77.544495865957401, + 12.9632989748005 + ], + [ + 77.544540700803395, + 12.9633101522601 + ], + [ + 77.544550085105996, + 12.963312491793401 + ], + [ + 77.5445824709509, + 12.963247349583099 + ], + [ + 77.544601427619995, + 12.9632092204305 + ], + [ + 77.544677626792506, + 12.963152438754699 + ], + [ + 77.544696260580295, + 12.9631385527726 + ], + [ + 77.544719588247702, + 12.96312116965 + ], + [ + 77.544748854125203, + 12.963099362910601 + ], + [ + 77.544763902138797, + 12.9630915028752 + ], + [ + 77.544779801441905, + 12.9630831999475 + ], + [ + 77.544799502605699, + 12.963072911066 + ], + [ + 77.544934756078803, + 12.9630022745382 + ], + [ + 77.544951592774794, + 12.9629934817912 + ], + [ + 77.545073112899601, + 12.962942865703299 + ], + [ + 77.545131329235303, + 12.962918617438 + ], + [ + 77.545145949363501, + 12.9629125278459 + ], + [ + 77.545245361669998, + 12.9628630973084 + ], + [ + 77.545255625341198, + 12.962857993535 + ], + [ + 77.545284041552705, + 12.9628438645855 + ], + [ + 77.545354469360703, + 12.9628088485955 + ], + [ + 77.5454304363939, + 12.9627493803028 + ], + [ + 77.5454692410691, + 12.962725572990101 + ], + [ + 77.545524597729695, + 12.962691613253 + ], + [ + 77.545527706694102, + 12.962689703635199 + ], + [ + 77.545530956408697, + 12.962683970074499 + ], + [ + 77.545538317361107, + 12.9626709830275 + ], + [ + 77.545546372408097, + 12.9626567704154 + ], + [ + 77.545523853178693, + 12.962593748020099 + ], + [ + 77.545443960840203, + 12.962494018756599 + ], + [ + 77.545418629894698, + 12.962468477949599 + ], + [ + 77.545396260566406, + 12.9624459239459 + ], + [ + 77.545395728376903, + 12.962445406043599 + ], + [ + 77.545349159884196, + 12.9624000819255 + ], + [ + 77.545266654211602, + 12.962326352804901 + ], + [ + 77.545200192431395, + 12.962264796082801 + ], + [ + 77.545185793603594, + 12.9622514599202 + ], + [ + 77.545171334176004, + 12.9622380676277 + ], + [ + 77.545166144049801, + 12.9622457092388 + ], + [ + 77.545139746636707, + 12.962231484978901 + ], + [ + 77.545067596641502, + 12.962207091295401 + ], + [ + 77.5450558571182, + 12.962191070173599 + ], + [ + 77.544977555619994, + 12.962100999467101 + ], + [ + 77.544939906446004, + 12.961993799034 + ], + [ + 77.544861258839305, + 12.9618696682462 + ], + [ + 77.544697543173697, + 12.9616489591152 + ], + [ + 77.544637339630299, + 12.961481022184801 + ], + [ + 77.544587626953302, + 12.9613858906517 + ], + [ + 77.544566759727203, + 12.961360020589201 + ], + [ + 77.544479260097205, + 12.9613556085877 + ], + [ + 77.544097768415497, + 12.9614838830833 + ], + [ + 77.544101100220502, + 12.961392258443601 + ], + [ + 77.544101123336404, + 12.961388912678 + ], + [ + 77.544061951510798, + 12.961119050427 + ], + [ + 77.543919504887498, + 12.961180795599001 + ], + [ + 77.543767732388801, + 12.9612532425406 + ], + [ + 77.543533243306896, + 12.9613803322328 + ], + [ + 77.543325885888805, + 12.9614765688523 + ], + [ + 77.543234799093597, + 12.961536187435801 + ], + [ + 77.543152887504206, + 12.961577975426 + ], + [ + 77.542806548568706, + 12.961747145061199 + ], + [ + 77.542562041986002, + 12.961870661369 + ], + [ + 77.542269991179296, + 12.961980744840901 + ], + [ + 77.542092168541302, + 12.9620983890952 + ], + [ + 77.542242546703307, + 12.962287788254701 + ], + [ + 77.542564994105703, + 12.962714091256499 + ], + [ + 77.542648714112801, + 12.962850306715 + ], + [ + 77.542800514571596, + 12.9630568206608 + ], + [ + 77.5430315432572, + 12.963448534091301 + ], + [ + 77.542355162618094, + 12.9634574366011 + ], + [ + 77.542399876462397, + 12.9642671178225 + ], + [ + 77.542945139401695, + 12.964297228604099 + ], + [ + 77.543392186796794, + 12.9643334227792 + ], + [ + 77.543541311583496, + 12.9643563037811 + ], + [ + 77.543728186830194, + 12.964803725458999 + ], + [ + 77.543931098557195, + 12.965199508725499 + ], + [ + 77.5442693563771, + 12.965860209057199 + ], + [ + 77.544242196065994, + 12.9658738612984 + ], + [ + 77.543764587907305, + 12.9660301311163 + ], + [ + 77.543419746081497, + 12.9661634033196 + ], + [ + 77.543276478463, + 12.9657719162226 + ], + [ + 77.543175280584293, + 12.9655353675883 + ], + [ + 77.543059911132701, + 12.9655753397228 + ], + [ + 77.542850286226297, + 12.9656341604356 + ], + [ + 77.542979382532195, + 12.9660561311464 + ], + [ + 77.543108475887294, + 12.9664672184688 + ], + [ + 77.543148941506701, + 12.9665814892717 + ], + [ + 77.5432751945511, + 12.966938008520801 + ], + [ + 77.54361548963, + 12.9668189359693 + ], + [ + 77.543617594670295, + 12.966825377892301 + ], + [ + 77.543714610831103, + 12.9671221302316 + ], + [ + 77.543744318076506, + 12.967167257995399 + ], + [ + 77.543877869280095, + 12.967571090966301 + ], + [ + 77.543870803645703, + 12.967573818051701 + ], + [ + 77.543156533480001, + 12.967834303567701 + ], + [ + 77.543025410280805, + 12.96747582373 + ], + [ + 77.542541815442505, + 12.9676660474111 + ], + [ + 77.542396458653798, + 12.9677211871861 + ], + [ + 77.542697143741904, + 12.9683848481985 + ], + [ + 77.542694042435997, + 12.9683861605305 + ], + [ + 77.542868177909497, + 12.9687649120769 + ], + [ + 77.543048089794098, + 12.9691898529965 + ], + [ + 77.543526456361107, + 12.9691215536425 + ], + [ + 77.543540344651802, + 12.9693832491705 + ], + [ + 77.543681247243399, + 12.9696216795281 + ], + [ + 77.543571194766798, + 12.969660601808499 + ], + [ + 77.543121680850206, + 12.9698021126884 + ], + [ + 77.542685673308199, + 12.969954726486201 + ], + [ + 77.542564757502404, + 12.969997201086301 + ], + [ + 77.542150617030799, + 12.970124823427099 + ], + [ + 77.542201707203503, + 12.970702127622101 + ], + [ + 77.542294730277106, + 12.971016884490201 + ], + [ + 77.5424629116049, + 12.9716628712623 + ], + [ + 77.5425110387541, + 12.971784529783999 + ], + [ + 77.542655096815295, + 12.9720756914358 + ], + [ + 77.541050772615606, + 12.972581838588701 + ], + [ + 77.541127309688903, + 12.972816377301299 + ], + [ + 77.541332551434607, + 12.973345047563299 + ], + [ + 77.541327496515706, + 12.9736204976354 + ], + [ + 77.541327235073197, + 12.973625307626801 + ], + [ + 77.541340758512305, + 12.9736281787997 + ] + ], + [ + [ + 77.547196464352396, + 12.9742242084561 + ], + [ + 77.547196464352496, + 12.9742242084561 + ], + [ + 77.547274744396304, + 12.9742259176417 + ], + [ + 77.547196464352396, + 12.9742242084561 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "212", + "group": "Mylasandra", + "Corporatio": "West", + "ac_no": "153", + "ac": "Yeshwanthapura", + "corporat_1": "5", + "ward_id": "106", + "ward_name": "106 - Mylasandra", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಯಶವಂತಪುರ", + "ward_name_": "ಮೈಲಸಂದ್ರ", + "dig_ward_n": "Mylasandra", + "Assembly": "153 - Yeshwanthapura", + "Slno": "106" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.4883395014934, + 12.909187025165499 + ], + [ + 77.488414872961499, + 12.909415797657701 + ], + [ + 77.488329636550503, + 12.909667614965599 + ], + [ + 77.487899548450699, + 12.910532301612401 + ], + [ + 77.487627157670801, + 12.9110799361366 + ], + [ + 77.487432693986406, + 12.911375823822301 + ], + [ + 77.487379563506906, + 12.911467505192601 + ], + [ + 77.487252992000904, + 12.9116859131368 + ], + [ + 77.487269741796496, + 12.911900900973 + ], + [ + 77.486967812231498, + 12.911982314708499 + ], + [ + 77.486994402058002, + 12.9122067707171 + ], + [ + 77.487014794745406, + 12.9122974168561 + ], + [ + 77.487022221820496, + 12.912555523862199 + ], + [ + 77.487200740878194, + 12.912864593054399 + ], + [ + 77.487425202797894, + 12.912891141941101 + ], + [ + 77.487615018135301, + 12.912864234001599 + ], + [ + 77.487757921465501, + 12.912898730433801 + ], + [ + 77.487948588497702, + 12.912957873025601 + ], + [ + 77.488128219619497, + 12.9130099485622 + ], + [ + 77.488190959474494, + 12.913070309507299 + ], + [ + 77.488224742733394, + 12.913159632564099 + ], + [ + 77.488226056061194, + 12.913292294359399 + ], + [ + 77.488285282698101, + 12.9133670318753 + ], + [ + 77.488384751415197, + 12.9134449720032 + ], + [ + 77.488472508773, + 12.9134477219429 + ], + [ + 77.488586419454293, + 12.9135075952336 + ], + [ + 77.488620202932594, + 12.9135969182002 + ], + [ + 77.488412833489605, + 12.9136969052342 + ], + [ + 77.486791356105499, + 12.9142215317703 + ], + [ + 77.487134863746704, + 12.9145804257449 + ], + [ + 77.487444838360005, + 12.914875094747501 + ], + [ + 77.487706729216498, + 12.915112848687601 + ], + [ + 77.488034270019199, + 12.9153356337006 + ], + [ + 77.488299036155695, + 12.9154944717387 + ], + [ + 77.488794464826498, + 12.915690554734701 + ], + [ + 77.489184357403104, + 12.915934258011999 + ], + [ + 77.489556188933193, + 12.916199647896599 + ], + [ + 77.489987604503696, + 12.916575628860301 + ], + [ + 77.490364940064595, + 12.917027425338301 + ], + [ + 77.490646959788904, + 12.9174514439639 + ], + [ + 77.490804542192805, + 12.917721463454001 + ], + [ + 77.490609330714904, + 12.917810390728601 + ], + [ + 77.490590211734897, + 12.9177841465222 + ], + [ + 77.490559854547001, + 12.917741519665499 + ], + [ + 77.4903759624316, + 12.917483516332901 + ], + [ + 77.490332359271406, + 12.917429344307401 + ], + [ + 77.4902343317179, + 12.917307554482299 + ], + [ + 77.490044410746094, + 12.9170801015424 + ], + [ + 77.490000736373702, + 12.9170296959186 + ], + [ + 77.489786472379905, + 12.9167855341344 + ], + [ + 77.4895795636739, + 12.9165864771805 + ], + [ + 77.489468095666695, + 12.9164915425362 + ], + [ + 77.489261791552295, + 12.916353466017901 + ], + [ + 77.489188185801794, + 12.9163033455178 + ], + [ + 77.488938420497902, + 12.916136319054001 + ], + [ + 77.488607461164605, + 12.9159666779 + ], + [ + 77.488203411161507, + 12.9157988620334 + ], + [ + 77.4878597445407, + 12.9156248233081 + ], + [ + 77.487691124678094, + 12.9155134914279 + ], + [ + 77.487485481555495, + 12.9153257140897 + ], + [ + 77.4873505322537, + 12.9151846972896 + ], + [ + 77.487112834554495, + 12.9148989686025 + ], + [ + 77.486913535213105, + 12.914712259615101 + ], + [ + 77.486850777469698, + 12.914652999930301 + ], + [ + 77.486725971765793, + 12.914548026330801 + ], + [ + 77.486533267407594, + 12.9143296314447 + ], + [ + 77.486481887886299, + 12.9142567107201 + ], + [ + 77.486305552543996, + 12.914005407650199 + ], + [ + 77.4861906279219, + 12.9138517761681 + ], + [ + 77.486167290950107, + 12.9138203755838 + ], + [ + 77.485982344549996, + 12.913571412911599 + ], + [ + 77.485818756897004, + 12.913386621616599 + ], + [ + 77.485690403060502, + 12.9132775105103 + ], + [ + 77.4856689779443, + 12.913259297320099 + ], + [ + 77.485611004379194, + 12.9132180618249 + ], + [ + 77.485499717965794, + 12.913141193353599 + ], + [ + 77.485420922232905, + 12.913089991489 + ], + [ + 77.485292166840594, + 12.912992960223299 + ], + [ + 77.485180998423104, + 12.9128697857227 + ], + [ + 77.485164490749696, + 12.912830414347001 + ], + [ + 77.485117923935107, + 12.912720177769501 + ], + [ + 77.485111842909504, + 12.9127052473447 + ], + [ + 77.485027657297195, + 12.9124985479075 + ], + [ + 77.484914374361196, + 12.912103211791599 + ], + [ + 77.484818331286505, + 12.911763051392899 + ], + [ + 77.484459831285207, + 12.910669828916101 + ], + [ + 77.484336924592796, + 12.910465449727401 + ], + [ + 77.484332884020702, + 12.9104634968197 + ], + [ + 77.484229184382201, + 12.910636826113899 + ], + [ + 77.484095645231093, + 12.9106383910636 + ], + [ + 77.484090147204199, + 12.910834749168901 + ], + [ + 77.483860015504803, + 12.9108920857356 + ], + [ + 77.483051868177199, + 12.9111022213695 + ], + [ + 77.483004078154707, + 12.911198296615501 + ], + [ + 77.483130754192601, + 12.9116871527971 + ], + [ + 77.481917190244104, + 12.9118503575639 + ], + [ + 77.482011824905399, + 12.912443646725199 + ], + [ + 77.482032114988698, + 12.912749517605301 + ], + [ + 77.482092827863298, + 12.913184883762799 + ], + [ + 77.482208930582402, + 12.9135745480329 + ], + [ + 77.482250686221604, + 12.913669070233199 + ], + [ + 77.482256625352406, + 12.9136825158257 + ], + [ + 77.482238290794101, + 12.9136994872014 + ], + [ + 77.482243582566596, + 12.913704274297 + ], + [ + 77.482411245191898, + 12.914092480704101 + ], + [ + 77.482834211685599, + 12.9150718108178 + ], + [ + 77.483650219053899, + 12.916961155434199 + ], + [ + 77.484222154374095, + 12.9181667573284 + ], + [ + 77.484307280120603, + 12.918346196209001 + ], + [ + 77.484688133367598, + 12.918898395308799 + ], + [ + 77.485093525030393, + 12.9194861704669 + ], + [ + 77.485335843023904, + 12.919875861767 + ], + [ + 77.485756834801506, + 12.920171184357301 + ], + [ + 77.486105429843093, + 12.920304580184901 + ], + [ + 77.486302704795506, + 12.920410049733199 + ], + [ + 77.48825092093, + 12.921235249561899 + ], + [ + 77.489529285897206, + 12.9217369291965 + ], + [ + 77.490480951325296, + 12.922129229132 + ], + [ + 77.492793477708105, + 12.923082489039601 + ], + [ + 77.493892420764496, + 12.9235730730111 + ], + [ + 77.493903121469202, + 12.923577849671201 + ], + [ + 77.494503344327796, + 12.9238465521466 + ], + [ + 77.496255240295596, + 12.924610200185001 + ], + [ + 77.498876670041398, + 12.926092825632701 + ], + [ + 77.498902103652597, + 12.9259875504679 + ], + [ + 77.498939157314993, + 12.9260086537154 + ], + [ + 77.4990237912494, + 12.925762713477299 + ], + [ + 77.499205478698201, + 12.9252347422028 + ], + [ + 77.499880174161504, + 12.925865856372701 + ], + [ + 77.500027723479207, + 12.9260038741572 + ], + [ + 77.500124174627402, + 12.926075206386701 + ], + [ + 77.500548494203002, + 12.926389016241201 + ], + [ + 77.500644001925906, + 12.9264596498275 + ], + [ + 77.501096578167605, + 12.9267943557835 + ], + [ + 77.502124449025303, + 12.9274576060608 + ], + [ + 77.502520879143702, + 12.927782450748801 + ], + [ + 77.502795468097901, + 12.928127662684499 + ], + [ + 77.5034069652217, + 12.927649376922099 + ], + [ + 77.504068736035606, + 12.9271317664373 + ], + [ + 77.5041762253434, + 12.926884532666101 + ], + [ + 77.504300264960506, + 12.9266814736147 + ], + [ + 77.504379842712794, + 12.9265512003041 + ], + [ + 77.504469070557406, + 12.926405128924801 + ], + [ + 77.504794351408506, + 12.926003340069601 + ], + [ + 77.504947767590707, + 12.9258194222067 + ], + [ + 77.505013755801698, + 12.925730305099 + ], + [ + 77.5050452289574, + 12.9256878016828 + ], + [ + 77.5051540861473, + 12.925540789145201 + ], + [ + 77.505982219171202, + 12.925494590537999 + ], + [ + 77.506123436092693, + 12.9255208867514 + ], + [ + 77.506421703383594, + 12.925576427650199 + ], + [ + 77.506592231496001, + 12.925570008482 + ], + [ + 77.506657391130204, + 12.925375820086099 + ], + [ + 77.507412482979205, + 12.925222678342999 + ], + [ + 77.507849674906794, + 12.925075048045899 + ], + [ + 77.507991438418102, + 12.9251167145334 + ], + [ + 77.508084323426104, + 12.925144507751799 + ], + [ + 77.508274489842805, + 12.925152241738999 + ], + [ + 77.508546265220801, + 12.9250348860363 + ], + [ + 77.508763952652004, + 12.924870239976199 + ], + [ + 77.508879502068197, + 12.924772879317199 + ], + [ + 77.509264226227302, + 12.9247316043525 + ], + [ + 77.510362235829803, + 12.9246138005959 + ], + [ + 77.510429978344504, + 12.9246526766944 + ], + [ + 77.510480429247707, + 12.924516667801401 + ], + [ + 77.510500631859401, + 12.924349327703901 + ], + [ + 77.510452211654098, + 12.92411262717 + ], + [ + 77.510425992284596, + 12.9238508670733 + ], + [ + 77.511011896966394, + 12.9237539060244 + ], + [ + 77.511440374538694, + 12.9236829973939 + ], + [ + 77.511443391828294, + 12.923665667429299 + ], + [ + 77.511516590208302, + 12.923245200706999 + ], + [ + 77.511544861410897, + 12.9230727677419 + ], + [ + 77.511647893227007, + 12.922444348597899 + ], + [ + 77.511657420599306, + 12.9223942279708 + ], + [ + 77.511686175951695, + 12.9222429537057 + ], + [ + 77.511706501738203, + 12.9220304379783 + ], + [ + 77.511694662000494, + 12.9219978003909 + ], + [ + 77.511658826615403, + 12.9218682685131 + ], + [ + 77.511656049878397, + 12.921820862004299 + ], + [ + 77.511664537249104, + 12.921806098626501 + ], + [ + 77.511710685309893, + 12.9213550389471 + ], + [ + 77.511662276697194, + 12.921177065435201 + ], + [ + 77.511539782667697, + 12.9207287576337 + ], + [ + 77.511620945884303, + 12.920695323736201 + ], + [ + 77.511621191720906, + 12.9206952228906 + ], + [ + 77.511722430891197, + 12.920629875181699 + ], + [ + 77.511753897138306, + 12.9205527757789 + ], + [ + 77.511803432789605, + 12.9204404922822 + ], + [ + 77.511819447627303, + 12.920314978956 + ], + [ + 77.511797415613799, + 12.920126587392801 + ], + [ + 77.511743556788701, + 12.919912347795201 + ], + [ + 77.511725474707902, + 12.9198404214447 + ], + [ + 77.511709948516199, + 12.919837116776201 + ], + [ + 77.511623942042604, + 12.919818810998301 + ], + [ + 77.511603095991305, + 12.9198065885552 + ], + [ + 77.511565467014506, + 12.9197854926633 + ], + [ + 77.511535602996602, + 12.9197349586337 + ], + [ + 77.511512657022706, + 12.9195126949016 + ], + [ + 77.511488480888005, + 12.919282537451 + ], + [ + 77.5114975210778, + 12.9192079125412 + ], + [ + 77.511496425999297, + 12.9190983748792 + ], + [ + 77.511553161464406, + 12.918669800601499 + ], + [ + 77.511622243908604, + 12.9181518879024 + ], + [ + 77.511647897546695, + 12.918069197647901 + ], + [ + 77.511784416390299, + 12.917847658670199 + ], + [ + 77.511894805211995, + 12.917678951444101 + ], + [ + 77.511932401894995, + 12.9176214918994 + ], + [ + 77.511989092735803, + 12.917533985605299 + ], + [ + 77.512014610941094, + 12.9174953417862 + ], + [ + 77.512019406586901, + 12.9174888664154 + ], + [ + 77.512089585486706, + 12.917394107235101 + ], + [ + 77.512254319370797, + 12.917173426055401 + ], + [ + 77.512302556666299, + 12.9171040708564 + ], + [ + 77.512337216134, + 12.916943367939 + ], + [ + 77.512430055270102, + 12.916556232802201 + ], + [ + 77.512475538109101, + 12.916384132132301 + ], + [ + 77.512528718491495, + 12.9162910127594 + ], + [ + 77.512564702887701, + 12.9162480001344 + ], + [ + 77.512505145414295, + 12.9162400921038 + ], + [ + 77.512452877560804, + 12.9162331511312 + ], + [ + 77.512407451068398, + 12.9162040847187 + ], + [ + 77.512335156403594, + 12.9161211848447 + ], + [ + 77.512273136705701, + 12.915937381911499 + ], + [ + 77.512204655329498, + 12.915510474895999 + ], + [ + 77.512118235438905, + 12.9149717392099 + ], + [ + 77.512016167964603, + 12.914335451385901 + ], + [ + 77.5120119648181, + 12.9142792902029 + ], + [ + 77.512006513662797, + 12.914206449944 + ], + [ + 77.511965601970402, + 12.9136598089801 + ], + [ + 77.511986664290006, + 12.913605720446199 + ], + [ + 77.512074957135695, + 12.913378982454701 + ], + [ + 77.512441342799804, + 12.912438086605301 + ], + [ + 77.512531053784201, + 12.912207702916 + ], + [ + 77.512513612826993, + 12.9120722224872 + ], + [ + 77.512505073047706, + 12.9120058809422 + ], + [ + 77.512538560723698, + 12.911993526162799 + ], + [ + 77.512731911523701, + 12.911922191587699 + ], + [ + 77.513001703341203, + 12.9118321836379 + ], + [ + 77.512783332976497, + 12.910976064667601 + ], + [ + 77.512760358404094, + 12.9108859935784 + ], + [ + 77.512836000229498, + 12.910857039169199 + ], + [ + 77.513456000635998, + 12.9108310398637 + ], + [ + 77.513487999965193, + 12.9108300399166 + ], + [ + 77.513556006033596, + 12.9108359648092 + ], + [ + 77.513502629734106, + 12.9102140689699 + ], + [ + 77.513483691386497, + 12.9099934121306 + ], + [ + 77.513370701777504, + 12.909595381704399 + ], + [ + 77.513365981602703, + 12.909580646925599 + ], + [ + 77.513344459012302, + 12.909513467196099 + ], + [ + 77.513173105232099, + 12.9091923998357 + ], + [ + 77.513014545119603, + 12.909054081003999 + ], + [ + 77.512705486383794, + 12.908852666811599 + ], + [ + 77.512330245544106, + 12.908612444860401 + ], + [ + 77.512168137611198, + 12.9084849173378 + ], + [ + 77.512078377253005, + 12.9082813936162 + ], + [ + 77.512024485357003, + 12.908009395492501 + ], + [ + 77.512017893944304, + 12.907715428693599 + ], + [ + 77.512039072544198, + 12.907274179837501 + ], + [ + 77.5121162576188, + 12.9069507218361 + ], + [ + 77.512263458765503, + 12.9066839623808 + ], + [ + 77.512338098766605, + 12.9064716861857 + ], + [ + 77.512343213986995, + 12.9063820712891 + ], + [ + 77.512403425790097, + 12.9053272085059 + ], + [ + 77.5123148877571, + 12.904026338433299 + ], + [ + 77.512157168448994, + 12.904033013333899 + ], + [ + 77.512022592401607, + 12.9040387094898 + ], + [ + 77.511535275389207, + 12.9040433926418 + ], + [ + 77.511111976263805, + 12.904026962331701 + ], + [ + 77.511088374724395, + 12.904026046166001 + ], + [ + 77.511088161984802, + 12.9040251248417 + ], + [ + 77.511087940614303, + 12.9040241692677 + ], + [ + 77.511085457946507, + 12.904006123292101 + ], + [ + 77.511082997827202, + 12.903990335828301 + ], + [ + 77.511079168544398, + 12.903962499908401 + ], + [ + 77.511074308496603, + 12.903927174912599 + ], + [ + 77.511068565281604, + 12.9038131643005 + ], + [ + 77.511070089682207, + 12.903735223522 + ], + [ + 77.511086026509304, + 12.9036018054331 + ], + [ + 77.511111488111297, + 12.9034999180383 + ], + [ + 77.511171202649393, + 12.9033118698888 + ], + [ + 77.511207318180794, + 12.903181646035 + ], + [ + 77.511247282288295, + 12.903033315380499 + ], + [ + 77.511265353160098, + 12.9029739929006 + ], + [ + 77.511269019220606, + 12.9029619566042 + ], + [ + 77.511272416868493, + 12.9028986795692 + ], + [ + 77.511269449444498, + 12.902832075593 + ], + [ + 77.511317436422203, + 12.9027954749121 + ], + [ + 77.511337197997094, + 12.9027568866734 + ], + [ + 77.511310586575206, + 12.902743589971401 + ], + [ + 77.511277925747706, + 12.902758585488399 + ], + [ + 77.5112579837851, + 12.902779105630501 + ], + [ + 77.511222479551193, + 12.902739918977399 + ], + [ + 77.511209515322804, + 12.9027321424929 + ], + [ + 77.511176152266103, + 12.902712129935299 + ], + [ + 77.511110526223504, + 12.9027116310219 + ], + [ + 77.511039686246505, + 12.9027077940856 + ], + [ + 77.510993313892797, + 12.902675487981799 + ], + [ + 77.510984319658405, + 12.9026394347206 + ], + [ + 77.510970540529399, + 12.9025853575917 + ], + [ + 77.511002615205697, + 12.902511640796201 + ], + [ + 77.511327937417505, + 12.902290548256101 + ], + [ + 77.511469821223102, + 12.9022033534538 + ], + [ + 77.511614243954298, + 12.902139850839401 + ], + [ + 77.511678188223996, + 12.902144883266599 + ], + [ + 77.511708997681097, + 12.902175080060299 + ], + [ + 77.511772953232693, + 12.902181241717701 + ], + [ + 77.511846778091098, + 12.9021898861842 + ], + [ + 77.511906653830593, + 12.902196897442 + ], + [ + 77.511962190132706, + 12.902224597863601 + ], + [ + 77.512006147452098, + 12.9022456333602 + ], + [ + 77.512061469514904, + 12.902251877907499 + ], + [ + 77.512179664099605, + 12.9022134730458 + ], + [ + 77.512277679981494, + 12.9021718739784 + ], + [ + 77.512343746060594, + 12.9021588160326 + ], + [ + 77.512405331659295, + 12.9021582241304 + ], + [ + 77.512499803483905, + 12.9021652216716 + ], + [ + 77.512561389076794, + 12.902164629732299 + ], + [ + 77.512648593165594, + 12.902135557454001 + ], + [ + 77.512688622148801, + 12.9021228138428 + ], + [ + 77.512736384075097, + 12.902107608872299 + ], + [ + 77.512956205170397, + 12.9021009783201 + ], + [ + 77.512958830805402, + 12.902101427411599 + ], + [ + 77.513037506619796, + 12.9021148784541 + ], + [ + 77.513083811362407, + 12.902140408640699 + ], + [ + 77.513134630389999, + 12.902156860515399 + ], + [ + 77.513178373405395, + 12.902156439968101 + ], + [ + 77.513217963357405, + 12.9021436363528 + ], + [ + 77.513301420415203, + 12.9021428339609 + ], + [ + 77.513375521740798, + 12.902127439783399 + ], + [ + 77.5134392290215, + 12.9021087574388 + ], + [ + 77.513529513859794, + 12.902099983789 + ], + [ + 77.513586359461399, + 12.902085884839 + ], + [ + 77.513647944983305, + 12.9020852926475 + ], + [ + 77.513742495717594, + 12.9021001945141 + ], + [ + 77.513850160334499, + 12.9021025472488 + ], + [ + 77.513990474185704, + 12.902088774877299 + ], + [ + 77.514054339379797, + 12.9020859019417 + ], + [ + 77.514154803749307, + 12.902058960388199 + ], + [ + 77.514199494644402, + 12.901923007125699 + ], + [ + 77.514220418083994, + 12.901827939485001 + ], + [ + 77.514234818442304, + 12.9017137354307 + ], + [ + 77.514236432256396, + 12.901644828832501 + ], + [ + 77.514235890532802, + 12.901590624670501 + ], + [ + 77.514219989153304, + 12.9015546380242 + ], + [ + 77.514191549511494, + 12.901531194945401 + ], + [ + 77.514132221266095, + 12.901527248084401 + ], + [ + 77.514081526482002, + 12.9015232181805 + ], + [ + 77.514030527005801, + 12.9014886984202 + ], + [ + 77.513986332749099, + 12.901443948944401 + ], + [ + 77.513928900538204, + 12.9013993267611 + ], + [ + 77.513703403811704, + 12.901298723173401 + ], + [ + 77.513645836282194, + 12.901240549864999 + ], + [ + 77.513634562086594, + 12.9012067773968 + ], + [ + 77.513537607901597, + 12.901181734276699 + ], + [ + 77.513465775037901, + 12.9011757192243 + ], + [ + 77.5134408229586, + 12.901173629928699 + ], + [ + 77.513347976916407, + 12.9010988552784 + ], + [ + 77.513313065698497, + 12.9010376234815 + ], + [ + 77.513265367210096, + 12.900953961687501 + ], + [ + 77.513169271494903, + 12.900784351714099 + ], + [ + 77.513086030057096, + 12.900633817286 + ], + [ + 77.5128056983053, + 12.9004603312396 + ], + [ + 77.512755849417204, + 12.9004279223998 + ], + [ + 77.512730378972293, + 12.900411363182201 + ], + [ + 77.512650793900903, + 12.900338719466999 + ], + [ + 77.512625740649995, + 12.9002508699134 + ], + [ + 77.512630703780303, + 12.9001765317945 + ], + [ + 77.512631248577605, + 12.9001683734593 + ], + [ + 77.512659338734096, + 12.900099212334201 + ], + [ + 77.512732165217798, + 12.9000358029366 + ], + [ + 77.512962130591305, + 12.899815382545601 + ], + [ + 77.512992308540902, + 12.899779790402199 + ], + [ + 77.513034557036406, + 12.8997459623995 + ], + [ + 77.513066370911005, + 12.899715469185301 + ], + [ + 77.513085343576606, + 12.8996918087186 + ], + [ + 77.513089804521698, + 12.8996862455136 + ], + [ + 77.513098607442203, + 12.899645503833099 + ], + [ + 77.513115355413007, + 12.8995933921546 + ], + [ + 77.513224125609696, + 12.8994760222468 + ], + [ + 77.513369033424397, + 12.899343086536 + ], + [ + 77.513395812449005, + 12.899318519803399 + ], + [ + 77.513615575516397, + 12.899075852902399 + ], + [ + 77.513661247941698, + 12.899038144854901 + ], + [ + 77.513719030081802, + 12.8988873841281 + ], + [ + 77.513741855565996, + 12.898724008845999 + ], + [ + 77.513745890198393, + 12.898695134270399 + ], + [ + 77.513741177451607, + 12.8986554829377 + ], + [ + 77.513735835199597, + 12.898610528749099 + ], + [ + 77.513713467653403, + 12.8985610518336 + ], + [ + 77.513680254771302, + 12.898520714077 + ], + [ + 77.513655438371302, + 12.8984565789812 + ], + [ + 77.513614991701104, + 12.8983835592367 + ], + [ + 77.513587014479697, + 12.898362291691299 + ], + [ + 77.513540169553295, + 12.898326681007701 + ], + [ + 77.513486744561007, + 12.898279761334001 + ], + [ + 77.513466442462203, + 12.8982065479103 + ], + [ + 77.513469715643396, + 12.8981308491419 + ], + [ + 77.513489318715699, + 12.898076451295699 + ], + [ + 77.513695583322303, + 12.897865536417999 + ], + [ + 77.513800934480102, + 12.897774127658799 + ], + [ + 77.513940398513597, + 12.897653121452899 + ], + [ + 77.513979773397395, + 12.897618862031001 + ], + [ + 77.514009538004899, + 12.897592543616399 + ], + [ + 77.514028842457094, + 12.8975754745044 + ], + [ + 77.514033010163701, + 12.897537521288999 + ], + [ + 77.514033063333201, + 12.897537035603699 + ], + [ + 77.514021800631397, + 12.897504392376501 + ], + [ + 77.514086274468596, + 12.8973897069137 + ], + [ + 77.514105335661299, + 12.897338702348801 + ], + [ + 77.514133617000397, + 12.8972887384998 + ], + [ + 77.514139210973795, + 12.8972808071891 + ], + [ + 77.514170509080799, + 12.897236433137101 + ], + [ + 77.5141854623987, + 12.89717756253 + ], + [ + 77.514185033696293, + 12.897134650885601 + ], + [ + 77.514197413843803, + 12.8971062977998 + ], + [ + 77.514217152091106, + 12.897065450984201 + ], + [ + 77.514223054478705, + 12.8970224784698 + ], + [ + 77.5142224339873, + 12.896960369511699 + ], + [ + 77.514219454877306, + 12.896892636418899 + ], + [ + 77.514212570995298, + 12.8968373638525 + ], + [ + 77.514214467075902, + 12.8967966885811 + ], + [ + 77.514214459205903, + 12.896795900813601 + ], + [ + 77.514214139914401, + 12.8967639402206 + ], + [ + 77.514192031985303, + 12.896740436165 + ], + [ + 77.514187431778595, + 12.8967149053056 + ], + [ + 77.514184719222598, + 12.896699849428799 + ], + [ + 77.514184369505003, + 12.8966648425597 + ], + [ + 77.514186619092996, + 12.896642221036799 + ], + [ + 77.514196400135503, + 12.896543885128899 + ], + [ + 77.514245570922398, + 12.8963954659325 + ], + [ + 77.514292619959207, + 12.896265136930699 + ], + [ + 77.514347739437, + 12.896156472816701 + ], + [ + 77.514350762381397, + 12.8961505123425 + ], + [ + 77.514395667074794, + 12.8960360150247 + ], + [ + 77.514418633101698, + 12.8959149524638 + ], + [ + 77.514458786671995, + 12.895785819117799 + ], + [ + 77.514489020287996, + 12.895700826272 + ], + [ + 77.514533642828397, + 12.895558097612399 + ], + [ + 77.514540662683501, + 12.895471374615701 + ], + [ + 77.514540772552394, + 12.8954700192283 + ], + [ + 77.514541328415604, + 12.8954631573006 + ], + [ + 77.514542964996394, + 12.895396509200999 + ], + [ + 77.514540256658194, + 12.895355878204599 + ], + [ + 77.514535945770007, + 12.895327685599099 + ], + [ + 77.514498016091494, + 12.895276099615501 + ], + [ + 77.514460244365296, + 12.895240323175599 + ], + [ + 77.514424831252796, + 12.8952101708634 + ], + [ + 77.514395749193, + 12.8951799576786 + ], + [ + 77.514349468340399, + 12.895156686008299 + ], + [ + 77.514246366021695, + 12.895149771651999 + ], + [ + 77.5142286208348, + 12.895143780441 + ], + [ + 77.514184567908103, + 12.8951289078461 + ], + [ + 77.514109396811406, + 12.895094620226301 + ], + [ + 77.514098224505403, + 12.895071011011 + ], + [ + 77.514102546916007, + 12.8950427353988 + ], + [ + 77.514102231094398, + 12.8950111162852 + ], + [ + 77.514166828544106, + 12.8949088527015 + ], + [ + 77.514187675502995, + 12.8948249439583 + ], + [ + 77.514217737428993, + 12.8947039487197 + ], + [ + 77.514225432190599, + 12.8946843187108 + ], + [ + 77.514239066848504, + 12.8946495342853 + ], + [ + 77.514278159297106, + 12.8945870435569 + ], + [ + 77.514295019670101, + 12.8945462244311 + ], + [ + 77.514298177622706, + 12.8945212342616 + ], + [ + 77.514303021223697, + 12.894482903218799 + ], + [ + 77.514314250187695, + 12.8944545612145 + ], + [ + 77.514328369004701, + 12.894439298357 + ], + [ + 77.514284310210698, + 12.8943580852608 + ], + [ + 77.514165875382503, + 12.8941981368984 + ], + [ + 77.514118067016, + 12.8941335704625 + ], + [ + 77.513846442706395, + 12.893766735940799 + ], + [ + 77.513777049841593, + 12.8936730188433 + ], + [ + 77.513469215132403, + 12.893257278854099 + ], + [ + 77.513266028781601, + 12.893023870094201 + ], + [ + 77.513123640441904, + 12.8928752912077 + ], + [ + 77.512394354940099, + 12.8921142949361 + ], + [ + 77.511401302916894, + 12.8907612490818 + ], + [ + 77.510644162734096, + 12.889606735967 + ], + [ + 77.509683512795206, + 12.888568914074201 + ], + [ + 77.509335522871197, + 12.8888591115627 + ], + [ + 77.508237359875096, + 12.8901605105776 + ], + [ + 77.507169851693206, + 12.891605042816201 + ], + [ + 77.506825853087705, + 12.892296803285101 + ], + [ + 77.506689945953298, + 12.893330802857999 + ], + [ + 77.506582989941805, + 12.8943358381766 + ], + [ + 77.506593415665606, + 12.8953827774895 + ], + [ + 77.5065267474736, + 12.896028852273 + ], + [ + 77.506326935984603, + 12.8965184294872 + ], + [ + 77.506271173066906, + 12.8967914805317 + ], + [ + 77.505336908804097, + 12.8978838484181 + ], + [ + 77.5047234569045, + 12.898881253153601 + ], + [ + 77.504665334905297, + 12.899110599420499 + ], + [ + 77.504662688469494, + 12.899115921967001 + ], + [ + 77.504539665717999, + 12.8992519772563 + ], + [ + 77.5042140907629, + 12.8996516252669 + ], + [ + 77.503887123177407, + 12.9005870536218 + ], + [ + 77.5037351177033, + 12.9007391113716 + ], + [ + 77.503582541175206, + 12.9008338016168 + ], + [ + 77.503644943637298, + 12.901227637929701 + ], + [ + 77.504419592561106, + 12.904139022947399 + ], + [ + 77.504564334418006, + 12.9047256994935 + ], + [ + 77.503819683360504, + 12.9048822888373 + ], + [ + 77.503221989977007, + 12.905060130189099 + ], + [ + 77.502888020521297, + 12.9052928177338 + ], + [ + 77.502408281584295, + 12.905569928895201 + ], + [ + 77.5019714018771, + 12.905746228833999 + ], + [ + 77.5013450355694, + 12.9059817130449 + ], + [ + 77.5002680202264, + 12.9064796833753 + ], + [ + 77.499060705315301, + 12.9071079843996 + ], + [ + 77.499096568398897, + 12.9071070939015 + ], + [ + 77.498892786396695, + 12.9072119566494 + ], + [ + 77.498533021645599, + 12.9073970850305 + ], + [ + 77.497906933084394, + 12.9077655998572 + ], + [ + 77.497418310322203, + 12.908065037167001 + ], + [ + 77.497215663021294, + 12.9081787820598 + ], + [ + 77.497133645696593, + 12.9082089296431 + ], + [ + 77.496772861083599, + 12.908281269237101 + ], + [ + 77.496498358242206, + 12.908347137125 + ], + [ + 77.496391070941499, + 12.908383172817 + ], + [ + 77.496138101969095, + 12.9084905627916 + ], + [ + 77.496067197933598, + 12.908520662638001 + ], + [ + 77.4960505098243, + 12.908525951231001 + ], + [ + 77.4959846488766, + 12.9085468215094 + ], + [ + 77.495876109988799, + 12.908581215566301 + ], + [ + 77.495837980502898, + 12.9085869863349 + ], + [ + 77.495541588287907, + 12.908631844590699 + ], + [ + 77.495342657848596, + 12.908656332029899 + ], + [ + 77.495229379853797, + 12.9086687076055 + ], + [ + 77.495011821119206, + 12.9086979841695 + ], + [ + 77.494976434515493, + 12.908702745617299 + ], + [ + 77.494837041392003, + 12.908758171964401 + ], + [ + 77.494205235744204, + 12.909009393512999 + ], + [ + 77.4937598951323, + 12.909204509210401 + ], + [ + 77.493379947136006, + 12.909376412658901 + ], + [ + 77.493298036414203, + 12.9093981899253 + ], + [ + 77.493190483545803, + 12.9094267839368 + ], + [ + 77.493052493864994, + 12.9095015102411 + ], + [ + 77.492856983030805, + 12.909522575177499 + ], + [ + 77.492621328264605, + 12.9096750308438 + ], + [ + 77.492555437441794, + 12.909706152684601 + ], + [ + 77.492447768935506, + 12.909729333741399 + ], + [ + 77.492357836675097, + 12.9097486954098 + ], + [ + 77.492314413115807, + 12.9097651892885 + ], + [ + 77.4922274543257, + 12.909785706139299 + ], + [ + 77.492181238934094, + 12.909796609552799 + ], + [ + 77.491894203739506, + 12.9099260038578 + ], + [ + 77.490813448728204, + 12.910232322502001 + ], + [ + 77.490653220514304, + 12.9102778775824 + ], + [ + 77.490566822947997, + 12.9102668815285 + ], + [ + 77.490507130083998, + 12.910039106126399 + ], + [ + 77.4903659407764, + 12.909688503007301 + ], + [ + 77.490250538349102, + 12.909354929721401 + ], + [ + 77.490120753002103, + 12.9090453983153 + ], + [ + 77.489996646523693, + 12.908817090101801 + ], + [ + 77.489902775422493, + 12.908688896487 + ], + [ + 77.4897813905269, + 12.9086583159303 + ], + [ + 77.489493922260806, + 12.908612760849801 + ], + [ + 77.489240227588894, + 12.908597837633801 + ], + [ + 77.488788603946801, + 12.9085381447698 + ], + [ + 77.488637800921893, + 12.908502014878501 + ], + [ + 77.488548229219504, + 12.9084836615583 + ], + [ + 77.488510560869003, + 12.9087875195632 + ], + [ + 77.4883395014934, + 12.909187025165499 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "213", + "group": "Kengeri Someshwara", + "Corporatio": "West", + "ac_no": "153", + "ac": "Yeshwanthapura", + "corporat_1": "5", + "ward_id": "107", + "ward_name": "107 - Hemmigepura", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಯಶವಂತಪುರ", + "ward_name_": "ಹೆಮ್ಮಿಗೆಪುರ", + "dig_ward_n": "Kengeri Someshwara", + "Assembly": "153 - Yeshwanthapura", + "Slno": "107" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.475897298995307, + 12.8783202431921 + ], + [ + 77.475897326582398, + 12.8783202000141 + ], + [ + 77.475668569292694, + 12.8783788427468 + ], + [ + 77.475668588797603, + 12.878378873832499 + ], + [ + 77.4756685695654, + 12.878378878762801 + ], + [ + 77.475708068858196, + 12.878441830081201 + ], + [ + 77.475827387356205, + 12.878429702182199 + ], + [ + 77.475827387356205, + 12.878429702182199 + ], + [ + 77.475708068585504, + 12.8784417940618 + ], + [ + 77.475668569292694, + 12.8783788427468 + ], + [ + 77.475897326855204, + 12.878320236050101 + ], + [ + 77.475897298995307, + 12.8783202431921 + ] + ] + ], + [ + [ + [ + 77.475454242304707, + 12.879102314539301 + ], + [ + 77.475113208929798, + 12.879559769831101 + ], + [ + 77.475454242313504, + 12.879102315442699 + ], + [ + 77.475649710302605, + 12.878825695896399 + ], + [ + 77.475454242304707, + 12.879102314539301 + ] + ] + ], + [ + [ + [ + 77.474958179798904, + 12.879779041168099 + ], + [ + 77.475044019599494, + 12.879657631257 + ], + [ + 77.475113208929798, + 12.879559769831101 + ], + [ + 77.474958179798904, + 12.879779041168099 + ] + ] + ], + [ + [ + [ + 77.478801586489197, + 12.8857606380036 + ], + [ + 77.478835336168103, + 12.8857052632994 + ], + [ + 77.478838971353696, + 12.8856992983212 + ], + [ + 77.478838971353696, + 12.8856992983212 + ], + [ + 77.478801586489197, + 12.8857606380036 + ] + ] + ], + [ + [ + [ + 77.4883395014934, + 12.909187025165499 + ], + [ + 77.488510560869003, + 12.9087875195632 + ], + [ + 77.488548229219504, + 12.9084836615583 + ], + [ + 77.488637800921893, + 12.908502014878501 + ], + [ + 77.488788603946801, + 12.9085381447698 + ], + [ + 77.489240227588894, + 12.908597837633801 + ], + [ + 77.489493922260806, + 12.908612760849801 + ], + [ + 77.4897813905269, + 12.9086583159303 + ], + [ + 77.489902775422493, + 12.908688896487 + ], + [ + 77.489996646523693, + 12.908817090101801 + ], + [ + 77.490120753002103, + 12.9090453983153 + ], + [ + 77.490250538349102, + 12.909354929721401 + ], + [ + 77.4903659407764, + 12.909688503007301 + ], + [ + 77.490507130083998, + 12.910039106126399 + ], + [ + 77.490566822947997, + 12.9102668815285 + ], + [ + 77.490653220514304, + 12.9102778775824 + ], + [ + 77.490813448728204, + 12.910232322502001 + ], + [ + 77.491894203739506, + 12.9099260038578 + ], + [ + 77.492181238934094, + 12.909796609552799 + ], + [ + 77.4922274543257, + 12.909785706139299 + ], + [ + 77.492314413115807, + 12.9097651892885 + ], + [ + 77.492357836675097, + 12.9097486954098 + ], + [ + 77.492447768935506, + 12.909729333741399 + ], + [ + 77.492555437441794, + 12.909706152684601 + ], + [ + 77.492621328264605, + 12.9096750308438 + ], + [ + 77.492856983030805, + 12.909522575177499 + ], + [ + 77.493052493864994, + 12.9095015102411 + ], + [ + 77.493190483545803, + 12.9094267839368 + ], + [ + 77.493298036414203, + 12.9093981899253 + ], + [ + 77.493379947136006, + 12.909376412658901 + ], + [ + 77.4937598951323, + 12.909204509210401 + ], + [ + 77.494205235744204, + 12.909009393512999 + ], + [ + 77.494837041392003, + 12.908758171964401 + ], + [ + 77.494976434515493, + 12.908702745617299 + ], + [ + 77.495011821119206, + 12.9086979841695 + ], + [ + 77.495229379853797, + 12.9086687076055 + ], + [ + 77.495342657848596, + 12.908656332029899 + ], + [ + 77.495541588287907, + 12.908631844590699 + ], + [ + 77.495837980502898, + 12.9085869863349 + ], + [ + 77.495876109988799, + 12.908581215566301 + ], + [ + 77.4959846488766, + 12.9085468215094 + ], + [ + 77.4960505098243, + 12.908525951231001 + ], + [ + 77.496067197933598, + 12.908520662638001 + ], + [ + 77.496138101969095, + 12.9084905627916 + ], + [ + 77.496391070941499, + 12.908383172817 + ], + [ + 77.496498358242206, + 12.908347137125 + ], + [ + 77.496772861083599, + 12.908281269237101 + ], + [ + 77.497133645696593, + 12.9082089296431 + ], + [ + 77.497215663021294, + 12.9081787820598 + ], + [ + 77.497418310322203, + 12.908065037167001 + ], + [ + 77.497906933084394, + 12.9077655998572 + ], + [ + 77.498533021645599, + 12.9073970850305 + ], + [ + 77.498892786396695, + 12.9072119566494 + ], + [ + 77.499096568398897, + 12.9071070939015 + ], + [ + 77.499060705315301, + 12.9071079843996 + ], + [ + 77.5002680202264, + 12.9064796833753 + ], + [ + 77.5013450355694, + 12.9059817130449 + ], + [ + 77.5019714018771, + 12.905746228833999 + ], + [ + 77.502408281584295, + 12.905569928895201 + ], + [ + 77.502888020521297, + 12.9052928177338 + ], + [ + 77.503221989977007, + 12.905060130189099 + ], + [ + 77.503819683360504, + 12.9048822888373 + ], + [ + 77.504564334418006, + 12.9047256994935 + ], + [ + 77.504419592561106, + 12.904139022947399 + ], + [ + 77.503644943637298, + 12.901227637929701 + ], + [ + 77.503582541175206, + 12.9008338016168 + ], + [ + 77.5037351177033, + 12.9007391113716 + ], + [ + 77.503887123177407, + 12.9005870536218 + ], + [ + 77.5042140907629, + 12.8996516252669 + ], + [ + 77.504539665717999, + 12.8992519772563 + ], + [ + 77.504662688469494, + 12.899115921967001 + ], + [ + 77.504665334905297, + 12.899110599420499 + ], + [ + 77.5047234569045, + 12.898881253153601 + ], + [ + 77.505336908804097, + 12.8978838484181 + ], + [ + 77.506271173066906, + 12.8967914805317 + ], + [ + 77.506326935984603, + 12.8965184294872 + ], + [ + 77.5065267474736, + 12.896028852273 + ], + [ + 77.506593415665606, + 12.8953827774895 + ], + [ + 77.506582989941805, + 12.8943358381766 + ], + [ + 77.506689945953298, + 12.893330802857999 + ], + [ + 77.506825853087705, + 12.892296803285101 + ], + [ + 77.507169851693206, + 12.891605042816201 + ], + [ + 77.508237359875096, + 12.8901605105776 + ], + [ + 77.509335522871197, + 12.8888591115627 + ], + [ + 77.509683512795206, + 12.888568914074201 + ], + [ + 77.508445492275797, + 12.8876031435515 + ], + [ + 77.507221086627098, + 12.8869933474591 + ], + [ + 77.505874865531595, + 12.8863847110044 + ], + [ + 77.504013436447096, + 12.885422420103501 + ], + [ + 77.502102816409902, + 12.884412773224801 + ], + [ + 77.501655519302005, + 12.8841756077897 + ], + [ + 77.505754891809801, + 12.8803498360836 + ], + [ + 77.505398350637293, + 12.8797794884153 + ], + [ + 77.505776284824705, + 12.8795607267128 + ], + [ + 77.5047218598759, + 12.877907022776901 + ], + [ + 77.503783899765295, + 12.8766791969139 + ], + [ + 77.503805585773506, + 12.8766640421193 + ], + [ + 77.504000955523395, + 12.876747330605401 + ], + [ + 77.504546653361103, + 12.877009172276599 + ], + [ + 77.504000955523395, + 12.876747330605401 + ], + [ + 77.503959317211397, + 12.8767295792721 + ], + [ + 77.503805585773506, + 12.8766640421193 + ], + [ + 77.503577960474999, + 12.876567040128799 + ], + [ + 77.503185882394007, + 12.8763998904498 + ], + [ + 77.502689142881906, + 12.8761881208295 + ], + [ + 77.502531061516905, + 12.876073312329501 + ], + [ + 77.502500598447398, + 12.8760511885228 + ], + [ + 77.502498102653306, + 12.876049411698499 + ], + [ + 77.502292360623798, + 12.8759071086966 + ], + [ + 77.501971445433, + 12.8756851438247 + ], + [ + 77.501265446117898, + 12.875196828441799 + ], + [ + 77.501165638943903, + 12.875127794715301 + ], + [ + 77.500854817028696, + 12.8749128088416 + ], + [ + 77.500445665363799, + 12.8746138747124 + ], + [ + 77.500413815333701, + 12.874593472356 + ], + [ + 77.500312872294899, + 12.8745288111588 + ], + [ + 77.499660541174805, + 12.8741109416013 + ], + [ + 77.498115652605605, + 12.873312048196601 + ], + [ + 77.497913428988397, + 12.8732074737032 + ], + [ + 77.497759988260796, + 12.873063672766399 + ], + [ + 77.4974571609864, + 12.872779869951 + ], + [ + 77.497239059434506, + 12.8725754691938 + ], + [ + 77.497181779467297, + 12.8725217879435 + ], + [ + 77.497026038230999, + 12.872375938430499 + ], + [ + 77.496897721947406, + 12.8724813424845 + ], + [ + 77.496889691669494, + 12.872487938693901 + ], + [ + 77.496884422801998, + 12.872492266995 + ], + [ + 77.496883679239303, + 12.872492877621401 + ], + [ + 77.496633139133806, + 12.872698679942699 + ], + [ + 77.496630470737301, + 12.8727008557088 + ], + [ + 77.496381624544696, + 12.8729036700951 + ], + [ + 77.496292402311397, + 12.872941699456799 + ], + [ + 77.496273237340105, + 12.8729498681425 + ], + [ + 77.4962369393524, + 12.8729500658582 + ], + [ + 77.496220103488099, + 12.8729501576223 + ], + [ + 77.496160178385395, + 12.872950484698899 + ], + [ + 77.496117744789899, + 12.8729507164685 + ], + [ + 77.495828826845894, + 12.8729522929483 + ], + [ + 77.495734743777902, + 12.8729528062276 + ], + [ + 77.495590093233602, + 12.872953595217499 + ], + [ + 77.495173831001196, + 12.8729558645924 + ], + [ + 77.495092213413898, + 12.8729563095022 + ], + [ + 77.494978075857603, + 12.872580717999799 + ], + [ + 77.494942857863194, + 12.8724648276647 + ], + [ + 77.494779028711406, + 12.871925714330599 + ], + [ + 77.494740872485494, + 12.8718001537066 + ], + [ + 77.494554003435695, + 12.8717221185233 + ], + [ + 77.492942493446506, + 12.8719030876389 + ], + [ + 77.492861522383706, + 12.871912180311099 + ], + [ + 77.492754023254506, + 12.872082553389999 + ], + [ + 77.492712040825396, + 12.8722642500961 + ], + [ + 77.492710302854704, + 12.872271772046 + ], + [ + 77.492522419052307, + 12.8721948635575 + ], + [ + 77.492375431812803, + 12.8719219516162 + ], + [ + 77.492208235257607, + 12.8716115167726 + ], + [ + 77.4919696652629, + 12.8711685595822 + ], + [ + 77.491882127946596, + 12.871005936348499 + ], + [ + 77.491803914658206, + 12.870860634932599 + ], + [ + 77.491803354928706, + 12.870860932088201 + ], + [ + 77.491780996979102, + 12.8708197768349 + ], + [ + 77.490693215054804, + 12.8713200307894 + ], + [ + 77.490609803355397, + 12.8713651849947 + ], + [ + 77.490563184531695, + 12.8713904212813 + ], + [ + 77.490357951311907, + 12.871501522085399 + ], + [ + 77.490145627284093, + 12.8716017414676 + ], + [ + 77.490062470336298, + 12.871640634520899 + ], + [ + 77.489652280133896, + 12.871828996410001 + ], + [ + 77.489049032294801, + 12.872104435236899 + ], + [ + 77.488848100602098, + 12.872196178120101 + ], + [ + 77.488363825377604, + 12.8724030936242 + ], + [ + 77.488421549437604, + 12.8719825101981 + ], + [ + 77.488337267299499, + 12.871978723637801 + ], + [ + 77.487846040706899, + 12.871953658147101 + ], + [ + 77.487668174299202, + 12.8719445818741 + ], + [ + 77.487471221630997, + 12.871933670071201 + ], + [ + 77.487357493216393, + 12.871892675328199 + ], + [ + 77.487273644493001, + 12.871862434104299 + ], + [ + 77.486088902242699, + 12.871392929703401 + ], + [ + 77.485990540957303, + 12.8713628365664 + ], + [ + 77.485973523478606, + 12.871371037464099 + ], + [ + 77.485383667257196, + 12.871474155902099 + ], + [ + 77.485333968326103, + 12.8714828619553 + ], + [ + 77.485220177954403, + 12.8715118860349 + ], + [ + 77.484735157925599, + 12.8716456621672 + ], + [ + 77.484676954066302, + 12.8717572401567 + ], + [ + 77.484638520783193, + 12.8718309434422 + ], + [ + 77.484386854394202, + 12.8721970117999 + ], + [ + 77.483960892892995, + 12.872951839810099 + ], + [ + 77.483815163751103, + 12.8731883212547 + ], + [ + 77.483728899044607, + 12.8733283059493 + ], + [ + 77.483609923397594, + 12.873521372996001 + ], + [ + 77.483398289993204, + 12.873859139255 + ], + [ + 77.483135505637094, + 12.874347980239101 + ], + [ + 77.483134150037799, + 12.8743505030422 + ], + [ + 77.483120717882997, + 12.8743754949865 + ], + [ + 77.483085284794498, + 12.874363889190199 + ], + [ + 77.482961708798399, + 12.874323415126 + ], + [ + 77.482942499254804, + 12.8743171235653 + ], + [ + 77.482844054773196, + 12.8742734513085 + ], + [ + 77.482562690117504, + 12.874148631884999 + ], + [ + 77.482492744492305, + 12.8741570812536 + ], + [ + 77.481348428674195, + 12.8742953036719 + ], + [ + 77.4813305435448, + 12.8742880886993 + ], + [ + 77.481326347892505, + 12.874288652481599 + ], + [ + 77.481204775097595, + 12.8742398543787 + ], + [ + 77.481116835042997, + 12.874251986697001 + ], + [ + 77.481080465975793, + 12.8742569987316 + ], + [ + 77.480914224585405, + 12.8742799106654 + ], + [ + 77.480876785156298, + 12.874285084600899 + ], + [ + 77.480862604673106, + 12.874624322267801 + ], + [ + 77.480885877944502, + 12.8746863655449 + ], + [ + 77.480950812281705, + 12.874858820895801 + ], + [ + 77.481070556324795, + 12.874855296865301 + ], + [ + 77.481072520444798, + 12.8748594886248 + ], + [ + 77.481089914228804, + 12.874859069072 + ], + [ + 77.481238993764094, + 12.8751703938549 + ], + [ + 77.481253419861801, + 12.875200519408301 + ], + [ + 77.481263773064299, + 12.875222161623499 + ], + [ + 77.481293156175795, + 12.875283581355699 + ], + [ + 77.481177710195794, + 12.875306321349701 + ], + [ + 77.481178538552797, + 12.875369341569 + ], + [ + 77.481206449206994, + 12.8754739992543 + ], + [ + 77.481246447028596, + 12.8757760943199 + ], + [ + 77.481260843838697, + 12.875884828356901 + ], + [ + 77.481271115943002, + 12.8759624122501 + ], + [ + 77.481357309433605, + 12.8761818265593 + ], + [ + 77.481414635601396, + 12.87633375097 + ], + [ + 77.4815118113208, + 12.876616306917199 + ], + [ + 77.481533532328299, + 12.8769756443929 + ], + [ + 77.481538625679406, + 12.877059902768901 + ], + [ + 77.4816277243673, + 12.877632788102201 + ], + [ + 77.481649809864606, + 12.877771493653499 + ], + [ + 77.481667025281595, + 12.877881830827899 + ], + [ + 77.481673062542697, + 12.8779205215935 + ], + [ + 77.481674507200296, + 12.8779841909832 + ], + [ + 77.481676549770199, + 12.878003735352999 + ], + [ + 77.481682563684103, + 12.878061286230301 + ], + [ + 77.481686332702694, + 12.8780973566237 + ], + [ + 77.4806308302433, + 12.8780655845543 + ], + [ + 77.480629683343395, + 12.8780655493398 + ], + [ + 77.479994630593794, + 12.878046431401501 + ], + [ + 77.479706765411805, + 12.877972942593599 + ], + [ + 77.479560993516301, + 12.8778271570028 + ], + [ + 77.479543289512804, + 12.8778094513524 + ], + [ + 77.479521103410505, + 12.8778095376423 + ], + [ + 77.479411388483001, + 12.877809965685801 + ], + [ + 77.479137166799404, + 12.8778524501886 + ], + [ + 77.478630806025606, + 12.8779308978553 + ], + [ + 77.478550346552495, + 12.8779433626152 + ], + [ + 77.478385579353997, + 12.877968888663901 + ], + [ + 77.478140084982897, + 12.878006920639301 + ], + [ + 77.478137671227898, + 12.878007294948301 + ], + [ + 77.477970507611204, + 12.878033192183899 + ], + [ + 77.477714619626397, + 12.878072834615001 + ], + [ + 77.477714575488093, + 12.8780728413572 + ], + [ + 77.477485586399595, + 12.8781078542494 + ], + [ + 77.477253407298406, + 12.8781433543076 + ], + [ + 77.477075520730196, + 12.878159382164499 + ], + [ + 77.477060196230795, + 12.8781607631323 + ], + [ + 77.476989393446303, + 12.8781671430819 + ], + [ + 77.476962610764403, + 12.878169556723 + ], + [ + 77.476528880715193, + 12.8782086367718 + ], + [ + 77.476226310085806, + 12.8782358993389 + ], + [ + 77.4759144893751, + 12.878315836293201 + ], + [ + 77.475897326855204, + 12.878320236050101 + ], + [ + 77.475668569292694, + 12.8783788427468 + ], + [ + 77.475708068585504, + 12.8784417940618 + ], + [ + 77.475827387356205, + 12.878429702182199 + ], + [ + 77.4756497112066, + 12.878825731017301 + ], + [ + 77.475454242585997, + 12.879102351439901 + ], + [ + 77.475649710575297, + 12.8788257319107 + ], + [ + 77.4754542425772, + 12.879102350536501 + ], + [ + 77.475113209202107, + 12.879559805798401 + ], + [ + 77.474958180070999, + 12.879779077121899 + ], + [ + 77.474824146296001, + 12.880048406530401 + ], + [ + 77.474824143309803, + 12.880048412531 + ], + [ + 77.474865336280899, + 12.880416528609601 + ], + [ + 77.474849751283699, + 12.880277255374899 + ], + [ + 77.474824143318699, + 12.8800484134344 + ], + [ + 77.474865337343402, + 12.8804165381042 + ], + [ + 77.4748653464341, + 12.880416619342601 + ], + [ + 77.4748653519664, + 12.8804166378915 + ], + [ + 77.474943081441694, + 12.880677253409401 + ], + [ + 77.475157606556905, + 12.880949982767699 + ], + [ + 77.475157616951805, + 12.8809499959831 + ], + [ + 77.475649793825198, + 12.881310587392999 + ], + [ + 77.4758636450795, + 12.8814648143893 + ], + [ + 77.476068168562506, + 12.8816123141763 + ], + [ + 77.476182823700299, + 12.8816823815043 + ], + [ + 77.476526703923298, + 12.8820010065222 + ], + [ + 77.476934382481005, + 12.882368718749801 + ], + [ + 77.477354835079396, + 12.882747604061599 + ], + [ + 77.477546740933704, + 12.8830055479763 + ], + [ + 77.477695278395998, + 12.8831507841149 + ], + [ + 77.477763303456598, + 12.8832172974729 + ], + [ + 77.477944849469097, + 12.8833948079851 + ], + [ + 77.478264708098607, + 12.883787066816 + ], + [ + 77.478507297851294, + 12.8841066463335 + ], + [ + 77.478711013282904, + 12.884277514070099 + ], + [ + 77.478749266014702, + 12.8843119731948 + ], + [ + 77.478711015895499, + 12.8842775164236 + ], + [ + 77.478766126932996, + 12.884327162303 + ], + [ + 77.478844826360302, + 12.884398058405001 + ], + [ + 77.478902077289703, + 12.884449631710799 + ], + [ + 77.478979748854201, + 12.8846216919474 + ], + [ + 77.479018344840796, + 12.884683442876 + ], + [ + 77.479006283947697, + 12.8847445441976 + ], + [ + 77.479007017395702, + 12.884819077026201 + ], + [ + 77.478958069998399, + 12.8849923373773 + ], + [ + 77.478884532131602, + 12.885240370409701 + ], + [ + 77.478897805269, + 12.885302361179001 + ], + [ + 77.478900360891501, + 12.885562060702799 + ], + [ + 77.478875648717604, + 12.885624409960901 + ], + [ + 77.478900360900397, + 12.885562061606199 + ], + [ + 77.478900361255697, + 12.885562097705501 + ], + [ + 77.478900361246801, + 12.885562096802101 + ], + [ + 77.478875650460097, + 12.8856244425581 + ], + [ + 77.478875648561399, + 12.8856244473485 + ], + [ + 77.478838971695197, + 12.885699334508001 + ], + [ + 77.478838971629003, + 12.885699334616801 + ], + [ + 77.478838971629003, + 12.885699334616801 + ], + [ + 77.478801586764405, + 12.8857606742959 + ], + [ + 77.478835336443296, + 12.885705299594701 + ], + [ + 77.478801585913104, + 12.8857606756926 + ], + [ + 77.478751549263094, + 12.8858232660833 + ], + [ + 77.478739620731304, + 12.885897918843201 + ], + [ + 77.478727817133404, + 12.8859849728791 + ], + [ + 77.478727814227199, + 12.885984956966601 + ], + [ + 77.478727814160706, + 12.8859849574572 + ], + [ + 77.478727817066897, + 12.885984973369499 + ], + [ + 77.478727814427003, + 12.8859849928396 + ], + [ + 77.478727814502406, + 12.8859849932524 + ], + [ + 77.4787278144358, + 12.885984993743 + ], + [ + 77.478741197171004, + 12.8860582687915 + ], + [ + 77.478741198738007, + 12.886058277370999 + ], + [ + 77.478767133901698, + 12.8861201482169 + ], + [ + 77.4788562567404, + 12.886168997272399 + ], + [ + 77.478944682733598, + 12.8862054295967 + ], + [ + 77.478856257872707, + 12.886168997739 + ], + [ + 77.478944681812806, + 12.8862054296055 + ], + [ + 77.479108945908806, + 12.8862287186098 + ], + [ + 77.479108956538298, + 12.8862287201169 + ], + [ + 77.479129691798406, + 12.886228523696399 + ], + [ + 77.479336296633306, + 12.886226566486 + ], + [ + 77.4794998376846, + 12.886175323949599 + ], + [ + 77.479776393960606, + 12.886085740638 + ], + [ + 77.480141105602002, + 12.8859467588271 + ], + [ + 77.480570460971293, + 12.885942688789999 + ], + [ + 77.480696627284502, + 12.885953916219499 + ], + [ + 77.480759937043004, + 12.8859533161228 + ], + [ + 77.480924089204507, + 12.8859641833744 + ], + [ + 77.481125982493396, + 12.885949846172799 + ], + [ + 77.481453552511795, + 12.8858970474224 + ], + [ + 77.4818133647466, + 12.885845071927699 + ], + [ + 77.481965062251305, + 12.885818786824199 + ], + [ + 77.482077832088095, + 12.8857556010159 + ], + [ + 77.482494524583402, + 12.885751648869499 + ], + [ + 77.4826333526334, + 12.885762755263 + ], + [ + 77.482849855264206, + 12.8859459209992 + ], + [ + 77.482926720664693, + 12.8860942709158 + ], + [ + 77.482966654549898, + 12.88629153484 + ], + [ + 77.482967745484999, + 12.886402204450899 + ], + [ + 77.482866663449997, + 12.886658405016901 + ], + [ + 77.482707019148094, + 12.887104898262599 + ], + [ + 77.482509388367006, + 12.887551751863301 + ], + [ + 77.482456271663494, + 12.887779420792 + ], + [ + 77.482376291595699, + 12.8881222258793 + ], + [ + 77.482243464850598, + 12.8887785308192 + ], + [ + 77.482231853407598, + 12.888804385978601 + ], + [ + 77.482231841209099, + 12.888804376315999 + ], + [ + 77.482009155988493, + 12.8893002353398 + ], + [ + 77.481841872807706, + 12.8895559344419 + ], + [ + 77.481729223792399, + 12.889631542570401 + ], + [ + 77.481591728981201, + 12.889755950009899 + ], + [ + 77.481404197512305, + 12.8899429483148 + ], + [ + 77.481341743635099, + 12.8900305035332 + ], + [ + 77.481254173745299, + 12.8900810271194 + ], + [ + 77.481128041791393, + 12.8901319163775 + ], + [ + 77.481052766789801, + 12.8901450534905 + ], + [ + 77.481000900669898, + 12.8901455453287 + ], + [ + 77.480787436971596, + 12.8901475694631 + ], + [ + 77.480699132633603, + 12.890123560188799 + ], + [ + 77.4805599349218, + 12.890075186850799 + ], + [ + 77.480470810334793, + 12.890026338708999 + ], + [ + 77.480344274858894, + 12.889977845192799 + ], + [ + 77.480216807938206, + 12.889893219980801 + ], + [ + 77.479988694508094, + 12.8897587261784 + ], + [ + 77.479684766806699, + 12.889699490381 + ], + [ + 77.4795460587017, + 12.889700804936499 + ], + [ + 77.479420135044094, + 12.8897144215571 + ], + [ + 77.479307485041602, + 12.8897900287862 + ], + [ + 77.479271566624803, + 12.8900004356822 + ], + [ + 77.479261584077307, + 12.890272713258 + ], + [ + 77.479261584417699, + 12.8902727478263 + ], + [ + 77.479261584352898, + 12.8902727495914 + ], + [ + 77.479265609110797, + 12.890681515131799 + ], + [ + 77.4792170778084, + 12.891247798533801 + ], + [ + 77.479217078157703, + 12.891247834003799 + ], + [ + 77.479217078084005, + 12.8912478348633 + ], + [ + 77.479217522529794, + 12.8912929719703 + ], + [ + 77.479212317225006, + 12.8914658159021 + ], + [ + 77.479203894726794, + 12.891721137838999 + ], + [ + 77.479202523893306, + 12.891757291307 + ], + [ + 77.479202524786899, + 12.8917573113371 + ], + [ + 77.479202524168898, + 12.8917573276353 + ], + [ + 77.479204740119599, + 12.891806999790299 + ], + [ + 77.479205240168895, + 12.8918577818561 + ], + [ + 77.4791988228381, + 12.8919075352376 + ], + [ + 77.479181469834998, + 12.8919573928479 + ], + [ + 77.479091148640904, + 12.892137821812 + ], + [ + 77.479070186582305, + 12.892171902163399 + ], + [ + 77.479042239981794, + 12.892198142974401 + ], + [ + 77.479005682239404, + 12.892226724167299 + ], + [ + 77.478942693277503, + 12.8922600733884 + ], + [ + 77.478895188782403, + 12.8922876289139 + ], + [ + 77.478847706513605, + 12.892317443002099 + ], + [ + 77.478805979819498, + 12.8923472025447 + ], + [ + 77.4787746020546, + 12.8923757346284 + ], + [ + 77.478737457575406, + 12.8924031919626 + ], + [ + 77.478704364236904, + 12.892432869686701 + ], + [ + 77.478671259772199, + 12.892461418123 + ], + [ + 77.478615399767094, + 12.892517287538301 + ], + [ + 77.478558088438703, + 12.8925426771579 + ], + [ + 77.4785232016756, + 12.8925655955161 + ], + [ + 77.478480832633593, + 12.8925885847638 + ], + [ + 77.478430439102098, + 12.892615038205999 + ], + [ + 77.478391567867007, + 12.8926425118635 + ], + [ + 77.478354943276699, + 12.8926643172786 + ], + [ + 77.478314211943896, + 12.8926782558641 + ], + [ + 77.478274145098297, + 12.8927012232731 + ], + [ + 77.478228433810997, + 12.892735538057901 + ], + [ + 77.478179911408503, + 12.892776655812201 + ], + [ + 77.478130780081301, + 12.892814391156801 + ], + [ + 77.478097686611804, + 12.892844068826101 + ], + [ + 77.478012837174802, + 12.8928787543538 + ], + [ + 77.4778323717061, + 12.893023896513601 + ], + [ + 77.477794808504896, + 12.893062824192899 + ], + [ + 77.477717236828994, + 12.8932062733344 + ], + [ + 77.477588828701698, + 12.893372099718199 + ], + [ + 77.477504461664694, + 12.8934482490832 + ], + [ + 77.477435312390995, + 12.893509182797301 + ], + [ + 77.477401500539997, + 12.8935570323383 + ], + [ + 77.477295214720897, + 12.8937001778386 + ], + [ + 77.477214437377299, + 12.893839676390501 + ], + [ + 77.477160468655896, + 12.8939207429282 + ], + [ + 77.477083858862301, + 12.894019924282601 + ], + [ + 77.4770480102313, + 12.8940873929989 + ], + [ + 77.477016726493801, + 12.8941548184828 + ], + [ + 77.476994437708996, + 12.8942087334798 + ], + [ + 77.476949331704304, + 12.894262862750599 + ], + [ + 77.476863418553606, + 12.8943442317704 + ], + [ + 77.476791195489895, + 12.8944254711322 + ], + [ + 77.476737963223798, + 12.8944698309071 + ], + [ + 77.476736874287397, + 12.894470738344699 + ], + [ + 77.476641348688403, + 12.8945029695104 + ], + [ + 77.476572588840497, + 12.894472293974699 + ], + [ + 77.476421685359895, + 12.8944423961795 + ], + [ + 77.476219659962297, + 12.894319000606201 + ], + [ + 77.476146116105397, + 12.894265992908799 + ], + [ + 77.476022417904403, + 12.8942179368851 + ], + [ + 77.475862476463703, + 12.8941970744938 + ], + [ + 77.475739350450198, + 12.8942071901657 + ], + [ + 77.475662035801903, + 12.894234773498701 + ], + [ + 77.475584852230995, + 12.8942757808857 + ], + [ + 77.475521623762006, + 12.8943435095156 + ], + [ + 77.475490471586099, + 12.894424359865001 + ], + [ + 77.475468709585101, + 12.894531971971199 + ], + [ + 77.475455856475406, + 12.8946171242332 + ], + [ + 77.475455859195193, + 12.8946171440193 + ], + [ + 77.475455856748098, + 12.894617160232 + ], + [ + 77.475465687027395, + 12.894688671586399 + ], + [ + 77.475487337340297, + 12.8947662964337 + ], + [ + 77.475545776757002, + 12.894777020821101 + ], + [ + 77.475554599233405, + 12.894760289167699 + ], + [ + 77.475726764427193, + 12.8952409137232 + ], + [ + 77.476240722236497, + 12.8956568405762 + ], + [ + 77.477093804564404, + 12.896347202861801 + ], + [ + 77.477268420858394, + 12.8964143070797 + ], + [ + 77.4772250805308, + 12.896447607300001 + ], + [ + 77.477067398376093, + 12.896568760349799 + ], + [ + 77.476961030038098, + 12.8966504867991 + ], + [ + 77.475413868159507, + 12.897557838899299 + ], + [ + 77.474886989382, + 12.897895569498999 + ], + [ + 77.474516212081397, + 12.8980939475734 + ], + [ + 77.473440386002395, + 12.898430388209301 + ], + [ + 77.473419261566306, + 12.8983974732998 + ], + [ + 77.472558574660098, + 12.8970563789248 + ], + [ + 77.472513564146197, + 12.8969964478388 + ], + [ + 77.471967119038396, + 12.896272220625701 + ], + [ + 77.471899172997396, + 12.8961821670033 + ], + [ + 77.471836764307298, + 12.8960994544905 + ], + [ + 77.471260200294395, + 12.895383102896799 + ], + [ + 77.470756294181697, + 12.8947570192272 + ], + [ + 77.470384429569293, + 12.894330450398501 + ], + [ + 77.470275039573494, + 12.894192767445 + ], + [ + 77.470239941772704, + 12.8941485916561 + ], + [ + 77.470115424783003, + 12.893991867985999 + ], + [ + 77.469897312556398, + 12.893479033791399 + ], + [ + 77.4698093238365, + 12.893283666655201 + ], + [ + 77.469420976270897, + 12.8924551895358 + ], + [ + 77.469407389708707, + 12.8923902888956 + ], + [ + 77.469362968898096, + 12.8921780941759 + ], + [ + 77.469231662561796, + 12.891646615744 + ], + [ + 77.4691696996899, + 12.8913980256425 + ], + [ + 77.469032936361501, + 12.8908535480297 + ], + [ + 77.469021709704194, + 12.890808850315899 + ], + [ + 77.468765053113103, + 12.8897870465289 + ], + [ + 77.468743472011795, + 12.8897044869613 + ], + [ + 77.468598419915196, + 12.8891451924479 + ], + [ + 77.468570656813696, + 12.8890381470839 + ], + [ + 77.468471935366694, + 12.888657482731899 + ], + [ + 77.4684719323118, + 12.888657452944599 + ], + [ + 77.468484129079002, + 12.888408021832801 + ], + [ + 77.468488637110397, + 12.8883158330455 + ], + [ + 77.468487668453804, + 12.888317451350201 + ], + [ + 77.468483990436198, + 12.8883235938334 + ], + [ + 77.468482082121795, + 12.8883267822827 + ], + [ + 77.468451562518595, + 12.8883777584931 + ], + [ + 77.468450596571003, + 12.888379371351 + ], + [ + 77.468408341568306, + 12.888449948970299 + ], + [ + 77.468398886931496, + 12.888465741314899 + ], + [ + 77.468376149218003, + 12.8885037201799 + ], + [ + 77.468375255762894, + 12.888505212185899 + ], + [ + 77.468234887734994, + 12.8886742763555 + ], + [ + 77.468184749620306, + 12.8887346643416 + ], + [ + 77.468171043396495, + 12.8887511726178 + ], + [ + 77.468000143260397, + 12.8889570106086 + ], + [ + 77.467941489835894, + 12.8890276552185 + ], + [ + 77.467821602376304, + 12.889172051560999 + ], + [ + 77.467760558679004, + 12.889245960517099 + ], + [ + 77.467691120380806, + 12.889330032813101 + ], + [ + 77.467529035011694, + 12.889526277044199 + ], + [ + 77.467403074436106, + 12.8896787836131 + ], + [ + 77.467274964775399, + 12.8898338917665 + ], + [ + 77.467144380183697, + 12.8899919967025 + ], + [ + 77.466984507561193, + 12.89018556081 + ], + [ + 77.466906918981294, + 12.890279500369299 + ], + [ + 77.466874028581202, + 12.8903193223006 + ], + [ + 77.466865193432895, + 12.8903300201529 + ], + [ + 77.466852063117997, + 12.890345917599699 + ], + [ + 77.466840300807306, + 12.890360158645599 + ], + [ + 77.466837902464803, + 12.890363061679199 + ], + [ + 77.466837661268698, + 12.8903633539831 + ], + [ + 77.466780044767106, + 12.890433112247001 + ], + [ + 77.466715828330095, + 12.8905111276529 + ], + [ + 77.466578564687495, + 12.8906940184033 + ], + [ + 77.466527784761695, + 12.8907641802041 + ], + [ + 77.465749034408603, + 12.8917701592033 + ], + [ + 77.465705507286302, + 12.8918230639861 + ], + [ + 77.464931715467102, + 12.892875668032101 + ], + [ + 77.464235219952002, + 12.8938070499592 + ], + [ + 77.464120763496695, + 12.893959486081901 + ], + [ + 77.464073807166599, + 12.894022022926199 + ], + [ + 77.463739418303703, + 12.894467368809201 + ], + [ + 77.463703166085097, + 12.8945156493202 + ], + [ + 77.463579234798701, + 12.894680703688399 + ], + [ + 77.463197423947904, + 12.895180175864301 + ], + [ + 77.462912401466497, + 12.895550496716 + ], + [ + 77.462455411255903, + 12.8961481599175 + ], + [ + 77.462432342405194, + 12.8961783306891 + ], + [ + 77.462259024789901, + 12.8964049982725 + ], + [ + 77.462251986411005, + 12.8964141241563 + ], + [ + 77.461670149674902, + 12.897159424751299 + ], + [ + 77.461549789872194, + 12.897348160617 + ], + [ + 77.461495423950097, + 12.8974334119339 + ], + [ + 77.461481006545398, + 12.897456019152701 + ], + [ + 77.461479093998804, + 12.8974589781212 + ], + [ + 77.461398811142203, + 12.8975804227357 + ], + [ + 77.461214482928199, + 12.8978650090824 + ], + [ + 77.461143550004905, + 12.8980246939915 + ], + [ + 77.461072378793901, + 12.898183282454299 + ], + [ + 77.460992682876693, + 12.8983592264986 + ], + [ + 77.460977104955703, + 12.898393422368301 + ], + [ + 77.460965313982399, + 12.8984193045208 + ], + [ + 77.460922932827003, + 12.8984074579473 + ], + [ + 77.460290240432599, + 12.8982306054875 + ], + [ + 77.460224177161095, + 12.8982119603314 + ], + [ + 77.460221895088594, + 12.898243257260001 + ], + [ + 77.460204246898201, + 12.898485300998299 + ], + [ + 77.460202295341006, + 12.8985120627447 + ], + [ + 77.460188202522303, + 12.898705333374201 + ], + [ + 77.460150403951602, + 12.899223727684699 + ], + [ + 77.460110757015897, + 12.899767469665299 + ], + [ + 77.460146922781803, + 12.8999522043536 + ], + [ + 77.460185544547201, + 12.900149987184999 + ], + [ + 77.460176382787594, + 12.900235948754901 + ], + [ + 77.460079819209795, + 12.9011419969885 + ], + [ + 77.460018157097807, + 12.901720567340501 + ], + [ + 77.460002985682294, + 12.902328805598399 + ], + [ + 77.460003004261196, + 12.9023563240283 + ], + [ + 77.460003017834097, + 12.9023777735403 + ], + [ + 77.4600032030406, + 12.902657980527501 + ], + [ + 77.460003297925496, + 12.9028005754629 + ], + [ + 77.460003247098697, + 12.902930340836299 + ], + [ + 77.459984601227305, + 12.903215184825701 + ], + [ + 77.459982616191994, + 12.9032453007657 + ], + [ + 77.459981442158096, + 12.903261811050401 + ], + [ + 77.4598797303818, + 12.904692533990699 + ], + [ + 77.459883683321806, + 12.904765314423701 + ], + [ + 77.4599257566245, + 12.9051628381222 + ], + [ + 77.459949466920094, + 12.9053868603347 + ], + [ + 77.459997516881103, + 12.9058408430756 + ], + [ + 77.460052823242506, + 12.9063633809254 + ], + [ + 77.460075947604693, + 12.906595159006001 + ], + [ + 77.460079321904104, + 12.906630707068301 + ], + [ + 77.460316783357101, + 12.9066110986144 + ], + [ + 77.460790225288093, + 12.9065784058046 + ], + [ + 77.461083460117493, + 12.9065504975708 + ], + [ + 77.462225714600805, + 12.906441779804799 + ], + [ + 77.462371695075205, + 12.906445817350701 + ], + [ + 77.462804620924203, + 12.9064577906347 + ], + [ + 77.463718206253901, + 12.906483054106801 + ], + [ + 77.4650805340452, + 12.9065869517372 + ], + [ + 77.466671544262994, + 12.906877826226999 + ], + [ + 77.466675895417097, + 12.907363190685 + ], + [ + 77.466623476048795, + 12.9079464542107 + ], + [ + 77.466610540482904, + 12.9081425522518 + ], + [ + 77.466596414973694, + 12.9083566813046 + ], + [ + 77.466566615280598, + 12.908906574884099 + ], + [ + 77.466499419699602, + 12.9101465640907 + ], + [ + 77.467214355392798, + 12.911257917405401 + ], + [ + 77.4681893179838, + 12.912292270596 + ], + [ + 77.468698502670705, + 12.9130260842959 + ], + [ + 77.4689676972624, + 12.913414311071699 + ], + [ + 77.469174977490397, + 12.9138290319831 + ], + [ + 77.469321597203106, + 12.914038932361199 + ], + [ + 77.469373780062696, + 12.9141205722918 + ], + [ + 77.469413649703796, + 12.9141829499977 + ], + [ + 77.469462350899406, + 12.914259142989099 + ], + [ + 77.469662259831395, + 12.914571901518 + ], + [ + 77.4697585171143, + 12.9147226347929 + ], + [ + 77.469859607701096, + 12.914880993157301 + ], + [ + 77.470020175786104, + 12.915107600751201 + ], + [ + 77.470038718983005, + 12.9151337701028 + ], + [ + 77.470080240954601, + 12.9151920752315 + ], + [ + 77.4701021992432, + 12.9152955279664 + ], + [ + 77.470239139558402, + 12.9152619193855 + ], + [ + 77.470900492863194, + 12.915023680894 + ], + [ + 77.471581965884695, + 12.9149335625752 + ], + [ + 77.472715046095203, + 12.914964472954701 + ], + [ + 77.474668960918706, + 12.914520184604401 + ], + [ + 77.475073646919995, + 12.914428163360901 + ], + [ + 77.475237568250606, + 12.9149883890354 + ], + [ + 77.476239357569099, + 12.9147101500352 + ], + [ + 77.476975258485496, + 12.914505757096 + ], + [ + 77.477009924534102, + 12.914314184648999 + ], + [ + 77.477075347013397, + 12.914041162547599 + ], + [ + 77.477162070528493, + 12.9136792469856 + ], + [ + 77.477630637796594, + 12.913005449573401 + ], + [ + 77.477737817141801, + 12.9127534256346 + ], + [ + 77.477854705643495, + 12.912250302318 + ], + [ + 77.4779560251297, + 12.9117129625392 + ], + [ + 77.478942781139807, + 12.9116916480074 + ], + [ + 77.478948774751004, + 12.910723583918401 + ], + [ + 77.479022880872293, + 12.910711959986701 + ], + [ + 77.479460829256595, + 12.9106408681728 + ], + [ + 77.479924855932396, + 12.910599017794 + ], + [ + 77.480155127163698, + 12.910578249339 + ], + [ + 77.480171783271402, + 12.910576746792 + ], + [ + 77.480186122072396, + 12.910582717492501 + ], + [ + 77.480583665688002, + 12.9106400285077 + ], + [ + 77.480805884494103, + 12.910700034729199 + ], + [ + 77.481135536715598, + 12.910855018339699 + ], + [ + 77.4814748975014, + 12.9111770584865 + ], + [ + 77.481682119044294, + 12.9114088739652 + ], + [ + 77.481917190244104, + 12.9118503575639 + ], + [ + 77.483130754192601, + 12.9116871527971 + ], + [ + 77.483004078154707, + 12.911198296615501 + ], + [ + 77.483051868177199, + 12.9111022213695 + ], + [ + 77.483860015504803, + 12.9108920857356 + ], + [ + 77.484090147204199, + 12.910834749168901 + ], + [ + 77.484095645231093, + 12.9106383910636 + ], + [ + 77.484229184382201, + 12.910636826113899 + ], + [ + 77.484332884020702, + 12.9104634968197 + ], + [ + 77.484336924592796, + 12.910465449727401 + ], + [ + 77.484459831285207, + 12.910669828916101 + ], + [ + 77.484818331286505, + 12.911763051392899 + ], + [ + 77.484914374361196, + 12.912103211791599 + ], + [ + 77.485027657297195, + 12.9124985479075 + ], + [ + 77.485111842909504, + 12.9127052473447 + ], + [ + 77.485117923935107, + 12.912720177769501 + ], + [ + 77.485164490749696, + 12.912830414347001 + ], + [ + 77.485180998423104, + 12.9128697857227 + ], + [ + 77.485292166840594, + 12.912992960223299 + ], + [ + 77.485420922232905, + 12.913089991489 + ], + [ + 77.485499717965794, + 12.913141193353599 + ], + [ + 77.485611004379194, + 12.9132180618249 + ], + [ + 77.4856689779443, + 12.913259297320099 + ], + [ + 77.485690403060502, + 12.9132775105103 + ], + [ + 77.485818756897004, + 12.913386621616599 + ], + [ + 77.485982344549996, + 12.913571412911599 + ], + [ + 77.486167290950107, + 12.9138203755838 + ], + [ + 77.4861906279219, + 12.9138517761681 + ], + [ + 77.486305552543996, + 12.914005407650199 + ], + [ + 77.486481887886299, + 12.9142567107201 + ], + [ + 77.486533267407594, + 12.9143296314447 + ], + [ + 77.486725971765793, + 12.914548026330801 + ], + [ + 77.486850777469698, + 12.914652999930301 + ], + [ + 77.486913535213105, + 12.914712259615101 + ], + [ + 77.487112834554495, + 12.9148989686025 + ], + [ + 77.4873505322537, + 12.9151846972896 + ], + [ + 77.487485481555495, + 12.9153257140897 + ], + [ + 77.487691124678094, + 12.9155134914279 + ], + [ + 77.4878597445407, + 12.9156248233081 + ], + [ + 77.488203411161507, + 12.9157988620334 + ], + [ + 77.488607461164605, + 12.9159666779 + ], + [ + 77.488938420497902, + 12.916136319054001 + ], + [ + 77.489188185801794, + 12.9163033455178 + ], + [ + 77.489261791552295, + 12.916353466017901 + ], + [ + 77.489468095666695, + 12.9164915425362 + ], + [ + 77.4895795636739, + 12.9165864771805 + ], + [ + 77.489786472379905, + 12.9167855341344 + ], + [ + 77.490000736373702, + 12.9170296959186 + ], + [ + 77.490044410746094, + 12.9170801015424 + ], + [ + 77.4902343317179, + 12.917307554482299 + ], + [ + 77.490332359271406, + 12.917429344307401 + ], + [ + 77.4903759624316, + 12.917483516332901 + ], + [ + 77.490559854547001, + 12.917741519665499 + ], + [ + 77.490590211734897, + 12.9177841465222 + ], + [ + 77.490609330714904, + 12.917810390728601 + ], + [ + 77.490804542192805, + 12.917721463454001 + ], + [ + 77.490646959788904, + 12.9174514439639 + ], + [ + 77.490364940064595, + 12.917027425338301 + ], + [ + 77.489987604503696, + 12.916575628860301 + ], + [ + 77.489556188933193, + 12.916199647896599 + ], + [ + 77.489184357403104, + 12.915934258011999 + ], + [ + 77.488794464826498, + 12.915690554734701 + ], + [ + 77.488299036155695, + 12.9154944717387 + ], + [ + 77.488034270019199, + 12.9153356337006 + ], + [ + 77.487706729216498, + 12.915112848687601 + ], + [ + 77.487444838360005, + 12.914875094747501 + ], + [ + 77.487134863746704, + 12.9145804257449 + ], + [ + 77.486791356105499, + 12.9142215317703 + ], + [ + 77.488412833489605, + 12.9136969052342 + ], + [ + 77.488620202932594, + 12.9135969182002 + ], + [ + 77.488586419454293, + 12.9135075952336 + ], + [ + 77.488472508773, + 12.9134477219429 + ], + [ + 77.488384751415197, + 12.9134449720032 + ], + [ + 77.488285282698101, + 12.9133670318753 + ], + [ + 77.488226056061194, + 12.913292294359399 + ], + [ + 77.488224742733394, + 12.913159632564099 + ], + [ + 77.488190959474494, + 12.913070309507299 + ], + [ + 77.488128219619497, + 12.9130099485622 + ], + [ + 77.487948588497702, + 12.912957873025601 + ], + [ + 77.487757921465501, + 12.912898730433801 + ], + [ + 77.487615018135301, + 12.912864234001599 + ], + [ + 77.487425202797894, + 12.912891141941101 + ], + [ + 77.487200740878194, + 12.912864593054399 + ], + [ + 77.487022221820496, + 12.912555523862199 + ], + [ + 77.487014794745406, + 12.9122974168561 + ], + [ + 77.486994402058002, + 12.9122067707171 + ], + [ + 77.486967812231498, + 12.911982314708499 + ], + [ + 77.487269741796496, + 12.911900900973 + ], + [ + 77.487252992000904, + 12.9116859131368 + ], + [ + 77.487379563506906, + 12.911467505192601 + ], + [ + 77.487432693986406, + 12.911375823822301 + ], + [ + 77.487627157670801, + 12.9110799361366 + ], + [ + 77.487899548450699, + 12.910532301612401 + ], + [ + 77.488329636550503, + 12.909667614965599 + ], + [ + 77.488414872961499, + 12.909415797657701 + ], + [ + 77.4883395014934, + 12.909187025165499 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "214", + "group": "Ullal", + "Corporatio": "West", + "ac_no": "153", + "ac": "Yeshwanthapura", + "corporat_1": "5", + "ward_id": "47", + "ward_name": "47 - Ullal", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಯಶವಂತಪುರ", + "ward_name_": "ಉಳ್ಳಾಲ", + "dig_ward_n": "Ullal", + "Assembly": "153 - Yeshwanthapura", + "Slno": "47" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.479439162078407, + 12.939547398607701 + ], + [ + 77.479402886933201, + 12.9393139606142 + ], + [ + 77.479390005361395, + 12.9392338966839 + ], + [ + 77.479132767908297, + 12.9383712327274 + ], + [ + 77.478850676557997, + 12.9375406368982 + ], + [ + 77.478839664644894, + 12.9375075836886 + ], + [ + 77.478356954175894, + 12.9375622628506 + ], + [ + 77.476965026575797, + 12.9380199994627 + ], + [ + 77.476272886658407, + 12.938309402623201 + ], + [ + 77.476403474179705, + 12.9386286575784 + ], + [ + 77.4754866423838, + 12.939352255085099 + ], + [ + 77.475403243612604, + 12.9393793969688 + ], + [ + 77.475293450947802, + 12.939467860489399 + ], + [ + 77.474735835672405, + 12.9399146426553 + ], + [ + 77.474098461836704, + 12.9401416371647 + ], + [ + 77.473956499038707, + 12.9401883931338 + ], + [ + 77.473875269852996, + 12.940215146283199 + ], + [ + 77.473737956578603, + 12.9402271215805 + ], + [ + 77.473634546859799, + 12.9402361404678 + ], + [ + 77.473251571470001, + 12.940333500014701 + ], + [ + 77.473594663257302, + 12.9409270546457 + ], + [ + 77.473704677622905, + 12.941117380078699 + ], + [ + 77.474257564107305, + 12.9421822978584 + ], + [ + 77.4744856113292, + 12.942816842463101 + ], + [ + 77.4745401374919, + 12.942968562046 + ], + [ + 77.474744964624804, + 12.9434217604966 + ], + [ + 77.474771729738293, + 12.943662694302301 + ], + [ + 77.474835954712802, + 12.9442408342878 + ], + [ + 77.474925972590398, + 12.9447135668147 + ], + [ + 77.474928570775106, + 12.944712214882101 + ], + [ + 77.474932308551004, + 12.944732241860301 + ], + [ + 77.474969999457599, + 12.944934181058899 + ], + [ + 77.475069732136902, + 12.945468519252101 + ], + [ + 77.475155922454405, + 12.9456845433607 + ], + [ + 77.475360882009497, + 12.9463839471355 + ], + [ + 77.475536166550796, + 12.946993281347201 + ], + [ + 77.475820569290903, + 12.947633201325401 + ], + [ + 77.476205839352204, + 12.9486325833091 + ], + [ + 77.476279095128604, + 12.9488226072871 + ], + [ + 77.476211250568397, + 12.9488555300335 + ], + [ + 77.476129543147096, + 12.9488951801477 + ], + [ + 77.475778225197999, + 12.9490001638564 + ], + [ + 77.475523745518203, + 12.9491166502801 + ], + [ + 77.475179980379195, + 12.949112010776799 + ], + [ + 77.474944712620101, + 12.949133446385799 + ], + [ + 77.474186554400802, + 12.9492016337447 + ], + [ + 77.4737030296575, + 12.949211872228 + ], + [ + 77.4730576092403, + 12.949327550609601 + ], + [ + 77.473017333002105, + 12.9493200055154 + ], + [ + 77.472730556893794, + 12.949266279714699 + ], + [ + 77.472559896393193, + 12.949429091557899 + ], + [ + 77.472432819866299, + 12.9495503238462 + ], + [ + 77.471157702147494, + 12.9495833854123 + ], + [ + 77.471058863820105, + 12.949585947443101 + ], + [ + 77.4710814152903, + 12.949993339276601 + ], + [ + 77.471115700150705, + 12.950612685270899 + ], + [ + 77.471118586413994, + 12.9506648267672 + ], + [ + 77.471121912066494, + 12.950724905979399 + ], + [ + 77.471230575548205, + 12.950732538046401 + ], + [ + 77.471674438593595, + 12.9507637103153 + ], + [ + 77.472142408312195, + 12.9508688206048 + ], + [ + 77.4722520131522, + 12.9510654238571 + ], + [ + 77.472272776167102, + 12.951108103003399 + ], + [ + 77.472279286581497, + 12.9511214845819 + ], + [ + 77.472374250966894, + 12.951316681687601 + ], + [ + 77.4725123505292, + 12.9516005429965 + ], + [ + 77.472512588206101, + 12.951656184472901 + ], + [ + 77.472512926859594, + 12.9517355955058 + ], + [ + 77.4725129447977, + 12.9517399340035 + ], + [ + 77.472513227216396, + 12.951806083810601 + ], + [ + 77.472318758777305, + 12.9518927433278 + ], + [ + 77.471603830878095, + 12.952211329629 + ], + [ + 77.4715488175909, + 12.9522356239823 + ], + [ + 77.471548835353005, + 12.952235837042799 + ], + [ + 77.4715529504317, + 12.9522859926739 + ], + [ + 77.471576190214805, + 12.952569197022999 + ], + [ + 77.471579790492399, + 12.952645420277801 + ], + [ + 77.471596274756394, + 12.952994413876301 + ], + [ + 77.471602344282999, + 12.9531200738124 + ], + [ + 77.471623536638504, + 12.953558856309099 + ], + [ + 77.471629634145799, + 12.953685103253401 + ], + [ + 77.471636702921103, + 12.9537671203359 + ], + [ + 77.471721960625601, + 12.953989125658801 + ], + [ + 77.471763754679898, + 12.9540979555933 + ], + [ + 77.471798883187205, + 12.9541667617136 + ], + [ + 77.471814813900494, + 12.9541979660275 + ], + [ + 77.471890569117505, + 12.954346347423201 + ], + [ + 77.471918248765505, + 12.9544831177892 + ], + [ + 77.471921017543707, + 12.954496802316701 + ], + [ + 77.471947915735399, + 12.954629713054899 + ], + [ + 77.471965622542896, + 12.954717204702201 + ], + [ + 77.471995325509994, + 12.9550433167646 + ], + [ + 77.472099649832799, + 12.9550547497506 + ], + [ + 77.472345145315501, + 12.9556410991903 + ], + [ + 77.472352370304506, + 12.9556583545445 + ], + [ + 77.472474085017396, + 12.9559490605628 + ], + [ + 77.472522997024399, + 12.955963987477601 + ], + [ + 77.472564770963601, + 12.956053618609699 + ], + [ + 77.472593484561997, + 12.956115226623099 + ], + [ + 77.472645281502196, + 12.9562043062851 + ], + [ + 77.472703376929204, + 12.956304217960399 + ], + [ + 77.472752046756298, + 12.9563879197612 + ], + [ + 77.472817221363897, + 12.956500005856 + ], + [ + 77.472822670780801, + 12.9565093777375 + ], + [ + 77.472919478364005, + 12.956675866527499 + ], + [ + 77.472978867284695, + 12.9567780029122 + ], + [ + 77.473097293849406, + 12.956981669983501 + ], + [ + 77.4731186558367, + 12.957018407174999 + ], + [ + 77.473121993121794, + 12.9570160444161 + ], + [ + 77.4735493599091, + 12.957759118604599 + ], + [ + 77.474123737297703, + 12.9587469047765 + ], + [ + 77.474537668206494, + 12.959458757523899 + ], + [ + 77.474609078586496, + 12.9595989993446 + ], + [ + 77.474625253317001, + 12.9596307648278 + ], + [ + 77.474864109391703, + 12.960099845858799 + ], + [ + 77.474992931104097, + 12.9603528346986 + ], + [ + 77.475040504877299, + 12.960446261654599 + ], + [ + 77.474342989839798, + 12.9612394206316 + ], + [ + 77.473950022521194, + 12.961686269305501 + ], + [ + 77.473666342518001, + 12.9620088445637 + ], + [ + 77.473502696085902, + 12.962482317346 + ], + [ + 77.473464111948701, + 12.962593951460301 + ], + [ + 77.473312675201896, + 12.963032094740999 + ], + [ + 77.473211027812795, + 12.96332618604 + ], + [ + 77.473187218021295, + 12.9633950737595 + ], + [ + 77.473187748405707, + 12.9634179871949 + ], + [ + 77.473189600332802, + 12.9634979231455 + ], + [ + 77.473189961406604, + 12.963513489929801 + ], + [ + 77.473190641117995, + 12.963542845790601 + ], + [ + 77.473200933127202, + 12.9639872368342 + ], + [ + 77.473218554906794, + 12.9647480926204 + ], + [ + 77.473230529256696, + 12.965265075613001 + ], + [ + 77.473233170616098, + 12.965379112508099 + ], + [ + 77.473240691642303, + 12.9657038280967 + ], + [ + 77.473353502010994, + 12.9664142014894 + ], + [ + 77.473367496160407, + 12.9665023216481 + ], + [ + 77.473495418073, + 12.9673078535315 + ], + [ + 77.473593011847001, + 12.9674789036535 + ], + [ + 77.473593766544496, + 12.967481438958901 + ], + [ + 77.473603156537493, + 12.9674966831746 + ], + [ + 77.473608046746804, + 12.967504621913999 + ], + [ + 77.474149969094199, + 12.9684513864648 + ], + [ + 77.474790610306698, + 12.9695364409683 + ], + [ + 77.474822856805503, + 12.9695910558804 + ], + [ + 77.475006323272893, + 12.970106914238 + ], + [ + 77.475080576312095, + 12.971593423206899 + ], + [ + 77.475084690719996, + 12.9715094299083 + ], + [ + 77.475085072487801, + 12.9715016443441 + ], + [ + 77.475203372076194, + 12.9715184361641 + ], + [ + 77.476610866974596, + 12.971376272895901 + ], + [ + 77.477983802846595, + 12.9712718103839 + ], + [ + 77.478825393685696, + 12.9711748094799 + ], + [ + 77.479097268078803, + 12.9711541590808 + ], + [ + 77.478872519630997, + 12.9714701320702 + ], + [ + 77.4791126139515, + 12.971439044143001 + ], + [ + 77.479378736231794, + 12.971485184951201 + ], + [ + 77.479739637023798, + 12.9714449982327 + ], + [ + 77.480619584434805, + 12.971335797064301 + ], + [ + 77.481131423273794, + 12.971244712965399 + ], + [ + 77.481567099113093, + 12.9711683034584 + ], + [ + 77.481647054928004, + 12.9713406526594 + ], + [ + 77.482498140157801, + 12.9710634725011 + ], + [ + 77.482800195458495, + 12.971550314573999 + ], + [ + 77.483446949161205, + 12.9712340449062 + ], + [ + 77.483379430917495, + 12.970484237041999 + ], + [ + 77.483169769002899, + 12.969755750728501 + ], + [ + 77.483532235363796, + 12.969720214810801 + ], + [ + 77.484225185759598, + 12.9696491429753 + ], + [ + 77.484780542301905, + 12.9690172266194 + ], + [ + 77.485036593271204, + 12.968712478840001 + ], + [ + 77.485248660024794, + 12.9684312940333 + ], + [ + 77.485368045752793, + 12.968189380847701 + ], + [ + 77.485421455157507, + 12.967834365393401 + ], + [ + 77.485872149251705, + 12.9666863049715 + ], + [ + 77.485859726448396, + 12.9666530750322 + ], + [ + 77.487706633524695, + 12.966129710146699 + ], + [ + 77.487706135871207, + 12.9661307114677 + ], + [ + 77.487785606744794, + 12.966321622550501 + ], + [ + 77.487839016149394, + 12.966510126331601 + ], + [ + 77.487937980634399, + 12.9667897402734 + ], + [ + 77.488040086849196, + 12.9671007715122 + ], + [ + 77.488120200956104, + 12.967386668913401 + ], + [ + 77.488156330847502, + 12.967576743559301 + ], + [ + 77.488161043442005, + 12.967795093772301 + ], + [ + 77.488137480469305, + 12.9679788849588 + ], + [ + 77.488054224632705, + 12.9681391131727 + ], + [ + 77.487947405823405, + 12.968335471277999 + ], + [ + 77.487883000364903, + 12.968501982951199 + ], + [ + 77.487813882311897, + 12.9686465025167 + ], + [ + 77.487777752420499, + 12.968776884298601 + ], + [ + 77.487766756366597, + 12.9689496794312 + ], + [ + 77.487755478287497, + 12.9691327343883 + ], + [ + 77.487793461068904, + 12.9693706712089 + ], + [ + 77.487837445284498, + 12.9697225449335 + ], + [ + 77.487868862581394, + 12.9699833084972 + ], + [ + 77.487893719871593, + 12.970288424606601 + ], + [ + 77.487950547553098, + 12.9705331111919 + ], + [ + 77.488025949065502, + 12.9708048708096 + ], + [ + 77.488057366362398, + 12.971082913886599 + ], + [ + 77.488055795497601, + 12.9712290043169 + ], + [ + 77.488027135312393, + 12.9713628680216 + ], + [ + 77.488078171870399, + 12.9713446522256 + ], + [ + 77.4882351337953, + 12.9712841267947 + ], + [ + 77.488426519600296, + 12.9712227208576 + ], + [ + 77.488454142393095, + 12.971210363225801 + ], + [ + 77.488588318679007, + 12.971164598858399 + ], + [ + 77.488756401217103, + 12.9710986225351 + ], + [ + 77.489177392994804, + 12.9709383943212 + ], + [ + 77.489991100982905, + 12.970611654434 + ], + [ + 77.490550328866703, + 12.9703948750858 + ], + [ + 77.490921052969398, + 12.9702802019524 + ], + [ + 77.491172391344193, + 12.9701985169806 + ], + [ + 77.491560394960203, + 12.9700916981713 + ], + [ + 77.491869855334002, + 12.9700241509831 + ], + [ + 77.492194175852205, + 12.9699914741567 + ], + [ + 77.492428152829305, + 12.969989232462799 + ], + [ + 77.492727547537797, + 12.970021009253401 + ], + [ + 77.493136293982005, + 12.970116315320301 + ], + [ + 77.493242730759107, + 12.970144446587801 + ], + [ + 77.493319589145003, + 12.9701647596399 + ], + [ + 77.493453047415201, + 12.9701974275866 + ], + [ + 77.493673945511503, + 12.970251499581201 + ], + [ + 77.493686107219304, + 12.970254476574601 + ], + [ + 77.493842608131004, + 12.970299353740399 + ], + [ + 77.493928111199594, + 12.9703238717224 + ], + [ + 77.494096640030705, + 12.9703581130701 + ], + [ + 77.494235707303503, + 12.9703711226958 + ], + [ + 77.494269506070594, + 12.970374694498201 + ], + [ + 77.494360151015798, + 12.97038427247 + ], + [ + 77.494623446592399, + 12.9703889195653 + ], + [ + 77.494718357176296, + 12.9703736663261 + ], + [ + 77.494929755617093, + 12.9703070947805 + ], + [ + 77.495192408298607, + 12.9702472034152 + ], + [ + 77.495352981194699, + 12.9702169770892 + ], + [ + 77.495462300588599, + 12.970180070392599 + ], + [ + 77.4958683115441, + 12.970141350780899 + ], + [ + 77.497328281563696, + 12.969888288159099 + ], + [ + 77.497766223791004, + 12.9698075872166 + ], + [ + 77.498047692556796, + 12.969764517194401 + ], + [ + 77.498134277914005, + 12.969728675260001 + ], + [ + 77.498512126169103, + 12.969569193499799 + ], + [ + 77.498509191151498, + 12.969563574841599 + ], + [ + 77.498194951298402, + 12.9691159742144 + ], + [ + 77.497858054015893, + 12.968821055495299 + ], + [ + 77.497694416076399, + 12.968578682638601 + ], + [ + 77.497558196420201, + 12.9684873820277 + ], + [ + 77.497300748766193, + 12.968306895376699 + ], + [ + 77.497038775575106, + 12.9680767595279 + ], + [ + 77.496860779664104, + 12.9678379118268 + ], + [ + 77.496782923950505, + 12.967709910699099 + ], + [ + 77.496777745771396, + 12.967537166636101 + ], + [ + 77.496834755836403, + 12.967422553079899 + ], + [ + 77.496971770316804, + 12.967298237056999 + ], + [ + 77.496994527234307, + 12.967277589697201 + ], + [ + 77.496832735668605, + 12.966816100270901 + ], + [ + 77.496682832863101, + 12.9668536785769 + ], + [ + 77.496592461798599, + 12.966567685442801 + ], + [ + 77.496456296182004, + 12.9661353133354 + ], + [ + 77.496368952082307, + 12.965806374867901 + ], + [ + 77.496316778217505, + 12.965713137566899 + ], + [ + 77.496316275144807, + 12.9656626983399 + ], + [ + 77.496315415388494, + 12.9655764966958 + ], + [ + 77.496368758398404, + 12.9653828624476 + ], + [ + 77.496395719695201, + 12.9651996456306 + ], + [ + 77.496450166401004, + 12.965116679193301 + ], + [ + 77.496566575282202, + 12.965069258186499 + ], + [ + 77.496789332900207, + 12.965062603509599 + ], + [ + 77.496877169835699, + 12.9650369145648 + ], + [ + 77.496899691599396, + 12.964985876770999 + ], + [ + 77.496926728971104, + 12.9649257606806 + ], + [ + 77.496921697559301, + 12.9647676970131 + ], + [ + 77.496934907652005, + 12.964648986304001 + ], + [ + 77.496868172046305, + 12.9645389482534 + ], + [ + 77.496801042260898, + 12.9643893859662 + ], + [ + 77.496708602337804, + 12.9642999231435 + ], + [ + 77.496621487756798, + 12.9643402868879 + ], + [ + 77.496490403417994, + 12.9644172123005 + ], + [ + 77.496387531769699, + 12.964378671134501 + ], + [ + 77.4962222026641, + 12.9642548967787 + ], + [ + 77.496117468506995, + 12.9641324845249 + ], + [ + 77.496103360289794, + 12.964115994587599 + ], + [ + 77.495973794856397, + 12.963941055262399 + ], + [ + 77.495814338979301, + 12.963713322008701 + ], + [ + 77.495742646963706, + 12.963561330171601 + ], + [ + 77.495679640674396, + 12.9634277532199 + ], + [ + 77.495492748974002, + 12.962989090129399 + ], + [ + 77.495425215301694, + 12.9627988737269 + ], + [ + 77.495365355717993, + 12.9626853810345 + ], + [ + 77.495281437607801, + 12.962524341482601 + ], + [ + 77.495238536848902, + 12.9624392643096 + ], + [ + 77.495237321281493, + 12.9623173037316 + ], + [ + 77.495200409901003, + 12.962253283356199 + ], + [ + 77.495177970114199, + 12.9621970298486 + ], + [ + 77.495146441033498, + 12.962210884571499 + ], + [ + 77.495111446424204, + 12.962223643140099 + ], + [ + 77.495014680093604, + 12.9622776512667 + ], + [ + 77.494952253865307, + 12.9623110014823 + ], + [ + 77.494882952834899, + 12.962347805702301 + ], + [ + 77.494827378846196, + 12.962375443347399 + ], + [ + 77.494766589674001, + 12.9623997428519 + ], + [ + 77.494667916002598, + 12.962435699187999 + ], + [ + 77.494570879415505, + 12.9624626048167 + ], + [ + 77.494545548067507, + 12.962462847599999 + ], + [ + 77.494387045220705, + 12.9625038947442 + ], + [ + 77.494241783699096, + 12.9625448149073 + ], + [ + 77.494198220789102, + 12.9625644317195 + ], + [ + 77.494098959971396, + 12.962599264117401 + ], + [ + 77.494043826525697, + 12.9626133449161 + ], + [ + 77.493980678087794, + 12.962632019999401 + ], + [ + 77.493937013888498, + 12.9626414733827 + ], + [ + 77.493837087280099, + 12.962667277082801 + ], + [ + 77.493753755091703, + 12.962682757388301 + ], + [ + 77.493580825309905, + 12.9627205541943 + ], + [ + 77.493498711986504, + 12.962742798989099 + ], + [ + 77.493448737380504, + 12.962754571500801 + ], + [ + 77.493376919390201, + 12.962769941385201 + ], + [ + 77.493247732451096, + 12.9628061895552 + ], + [ + 77.493119595676205, + 12.962832263240401 + ], + [ + 77.493042573709602, + 12.962845424140299 + ], + [ + 77.492993084795401, + 12.962848156925199 + ], + [ + 77.492935513391004, + 12.9628487083693 + ], + [ + 77.492885957000794, + 12.9628446655346 + ], + [ + 77.492811532457296, + 12.9628295671309 + ], + [ + 77.492729578658796, + 12.9628100233182 + ], + [ + 77.492655187858901, + 12.9627983126666 + ], + [ + 77.492599853920893, + 12.9627866309047 + ], + [ + 77.492560057879601, + 12.9627782300114 + ], + [ + 77.492534152096994, + 12.962580790569399 + ], + [ + 77.492465277471197, + 12.962055873504999 + ], + [ + 77.492451909014093, + 12.9616222891033 + ], + [ + 77.492450655835, + 12.961581633674299 + ], + [ + 77.492441467974899, + 12.9612836091828 + ], + [ + 77.492242181705606, + 12.9608598739997 + ], + [ + 77.492190300345598, + 12.9607495609651 + ], + [ + 77.492149537364796, + 12.960761244977601 + ], + [ + 77.492115615456498, + 12.960766087239501 + ], + [ + 77.491865025228094, + 12.9607885809527 + ], + [ + 77.491719011841894, + 12.9608016871278 + ], + [ + 77.490453714631599, + 12.960915258952401 + ], + [ + 77.489835173586698, + 12.960956186760001 + ], + [ + 77.488203939522407, + 12.961096523923899 + ], + [ + 77.488127166686695, + 12.9607911023389 + ], + [ + 77.486528206546296, + 12.9614759122801 + ], + [ + 77.486431936190797, + 12.961276557699801 + ], + [ + 77.486407601158405, + 12.9611997619565 + ], + [ + 77.486387017679206, + 12.9610950726476 + ], + [ + 77.486400789157301, + 12.961050826637599 + ], + [ + 77.486423963556703, + 12.960999525702 + ], + [ + 77.4864206270056, + 12.960902040625699 + ], + [ + 77.486403380685104, + 12.9608348735633 + ], + [ + 77.486287298109403, + 12.9606488947373 + ], + [ + 77.486109561891297, + 12.960399836548801 + ], + [ + 77.486082595423298, + 12.960367326715 + ], + [ + 77.4859777206903, + 12.960240890860099 + ], + [ + 77.485852523449097, + 12.960035446043401 + ], + [ + 77.485731094976998, + 12.959732448142001 + ], + [ + 77.485697517507305, + 12.959473452237299 + ], + [ + 77.485649277049205, + 12.959385684759001 + ], + [ + 77.485561286309206, + 12.9593493754913 + ], + [ + 77.4855056656166, + 12.9592338161725 + ], + [ + 77.485520906788693, + 12.959099006066401 + ], + [ + 77.485566818854096, + 12.958952293109 + ], + [ + 77.485546719931904, + 12.958836394644599 + ], + [ + 77.485484318214901, + 12.958753405408901 + ], + [ + 77.485461784289299, + 12.958657248251299 + ], + [ + 77.485439801571104, + 12.958563441261701 + ], + [ + 77.4852757704749, + 12.958263171613501 + ], + [ + 77.485208079651997, + 12.9581245100215 + ], + [ + 77.485117290456998, + 12.958126232240099 + ], + [ + 77.485098079104006, + 12.9580821068456 + ], + [ + 77.485029387236906, + 12.957895184098099 + ], + [ + 77.485016508803596, + 12.9578738487818 + ], + [ + 77.484855117972302, + 12.957739863412 + ], + [ + 77.484692860313601, + 12.957576522276399 + ], + [ + 77.484672782175295, + 12.9575258917341 + ], + [ + 77.484675833089796, + 12.9574852049016 + ], + [ + 77.4846852167626, + 12.9574444576365 + ], + [ + 77.484732473736102, + 12.9573909257567 + ], + [ + 77.484802344352502, + 12.9572953909689 + ], + [ + 77.4848144496749, + 12.9572388063966 + ], + [ + 77.484811044580596, + 12.9571857579867 + ], + [ + 77.484794644763298, + 12.9571576799682 + ], + [ + 77.484758727013499, + 12.9571354351125 + ], + [ + 77.484717097037105, + 12.957117762285399 + ], + [ + 77.484549515389702, + 12.957056116080899 + ], + [ + 77.484436233660404, + 12.956954423305801 + ], + [ + 77.484413321929495, + 12.956908337286 + ], + [ + 77.484419027387602, + 12.956845037495 + ], + [ + 77.484447252505603, + 12.956788299120999 + ], + [ + 77.484494827503795, + 12.9567087884916 + ], + [ + 77.4845355948502, + 12.9566395072464 + ], + [ + 77.484534430613706, + 12.9565221386021 + ], + [ + 77.484533600933304, + 12.9564384964129 + ], + [ + 77.484530229545598, + 12.956388835806701 + ], + [ + 77.484507586706201, + 12.956369852372401 + ], + [ + 77.484471859523396, + 12.956366805115801 + ], + [ + 77.484440195864394, + 12.9563671072272 + ], + [ + 77.484410801413105, + 12.956363999540001 + ], + [ + 77.484385257667199, + 12.956342785008101 + ], + [ + 77.484381456222096, + 12.956307810455399 + ], + [ + 77.484367715486201, + 12.956199520942199 + ], + [ + 77.484374110614397, + 12.956152997177499 + ], + [ + 77.484385436784507, + 12.9560706023895 + ], + [ + 77.484391471558396, + 12.9559824530656 + ], + [ + 77.484409752881305, + 12.9559099982398 + ], + [ + 77.484453291129, + 12.9557717983239 + ], + [ + 77.484478413640801, + 12.9556925019396 + ], + [ + 77.484486874409995, + 12.955616752667201 + ], + [ + 77.484486314374394, + 12.955560288943699 + ], + [ + 77.484489208546606, + 12.955503792264199 + ], + [ + 77.484507713844593, + 12.9554539229298 + ], + [ + 77.484539605861997, + 12.9554186078309 + ], + [ + 77.484577673763894, + 12.9553674224672 + ], + [ + 77.484693969695698, + 12.9553087144154 + ], + [ + 77.485043364192407, + 12.9552014403602 + ], + [ + 77.485077405963395, + 12.9551909881223 + ], + [ + 77.485457952072395, + 12.955072159527701 + ], + [ + 77.485557111080695, + 12.9550271672713 + ], + [ + 77.485582860678306, + 12.955011110173499 + ], + [ + 77.485614300033006, + 12.954988222483401 + ], + [ + 77.485623840403207, + 12.954963285051599 + ], + [ + 77.485626790360996, + 12.954912434772501 + ], + [ + 77.485626297331194, + 12.954862746736399 + ], + [ + 77.485622092392703, + 12.9547871183774 + ], + [ + 77.4856210406153, + 12.954779343822301 + ], + [ + 77.485604695459898, + 12.954658535044601 + ], + [ + 77.485584016697302, + 12.9544893253293 + ], + [ + 77.485575979891806, + 12.954027485376599 + ], + [ + 77.485562787962493, + 12.9539745303909 + ], + [ + 77.485555962317505, + 12.953924902786699 + ], + [ + 77.485580318218695, + 12.953826414224499 + ], + [ + 77.485616436184998, + 12.9535787351683 + ], + [ + 77.485634889443901, + 12.9534656209942 + ], + [ + 77.485594883751205, + 12.953321442077399 + ], + [ + 77.485537985631694, + 12.953099497086599 + ], + [ + 77.485512027682802, + 12.9530364994867 + ], + [ + 77.485450410289204, + 12.952977230316201 + ], + [ + 77.485376318084107, + 12.9529372796405 + ], + [ + 77.485259964959496, + 12.952874015196199 + ], + [ + 77.485218201309806, + 12.9528427910333 + ], + [ + 77.485185592773604, + 12.9528058326022 + ], + [ + 77.485152917040097, + 12.952762098520401 + ], + [ + 77.485126959231906, + 12.952699100856799 + ], + [ + 77.485103140655497, + 12.952561543626899 + ], + [ + 77.485105391881902, + 12.9524982768078 + ], + [ + 77.485110951662506, + 12.952420296467499 + ], + [ + 77.485110447632394, + 12.9523694791281 + ], + [ + 77.485097345554905, + 12.952325558272801 + ], + [ + 77.485082888236803, + 12.9521449952321 + ], + [ + 77.485049428620201, + 12.952022211916301 + ], + [ + 77.4850345794014, + 12.9518021242583 + ], + [ + 77.485016410489493, + 12.951595620836899 + ], + [ + 77.484943346636896, + 12.9514273696575 + ], + [ + 77.484942171068198, + 12.951424663129099 + ], + [ + 77.484974432180493, + 12.951426614126699 + ], + [ + 77.485006117601102, + 12.9514285706123 + ], + [ + 77.4852525134567, + 12.9514262198801 + ], + [ + 77.485631221769296, + 12.9513548435262 + ], + [ + 77.485853023909897, + 12.9513109398371 + ], + [ + 77.486081162819701, + 12.9512093770931 + ], + [ + 77.486396646756802, + 12.9509748429954 + ], + [ + 77.486524196319607, + 12.9508900513736 + ], + [ + 77.486801048070404, + 12.9507078371481 + ], + [ + 77.487108616693504, + 12.950488059899699 + ], + [ + 77.487514720993602, + 12.950218778181201 + ], + [ + 77.487801742956904, + 12.950017266574999 + ], + [ + 77.488112763861295, + 12.949797455456901 + ], + [ + 77.488182515452806, + 12.949748225971 + ], + [ + 77.488298662108505, + 12.949674836379501 + ], + [ + 77.488340522269894, + 12.9496479928249 + ], + [ + 77.488570408362193, + 12.9495005751217 + ], + [ + 77.488643645357101, + 12.949478508585701 + ], + [ + 77.488721376232803, + 12.9494550872156 + ], + [ + 77.488813572074505, + 12.949463817018 + ], + [ + 77.488883887658901, + 12.9494704753811 + ], + [ + 77.488904668398405, + 12.9494759237419 + ], + [ + 77.488904591791893, + 12.9494758160535 + ], + [ + 77.488740296446196, + 12.9492445186214 + ], + [ + 77.4886861813347, + 12.949168335408 + ], + [ + 77.488617862964404, + 12.949072156000099 + ], + [ + 77.488616220570805, + 12.949069844265299 + ], + [ + 77.488611536602093, + 12.949061983357501 + ], + [ + 77.488419056290994, + 12.9487691579511 + ], + [ + 77.488295797603101, + 12.9485816394841 + ], + [ + 77.487941495470096, + 12.9480426238202 + ], + [ + 77.487571679769502, + 12.9474808833099 + ], + [ + 77.487331326109697, + 12.9470958132998 + ], + [ + 77.486995567042896, + 12.946550936435701 + ], + [ + 77.486962832270095, + 12.946501733228599 + ], + [ + 77.486634472626605, + 12.946008183535699 + ], + [ + 77.486318418982506, + 12.9456341180137 + ], + [ + 77.4862894004997, + 12.945583523058099 + ], + [ + 77.486181753741207, + 12.9454047717468 + ], + [ + 77.485775685179505, + 12.944685315649201 + ], + [ + 77.485717976926196, + 12.944583131249599 + ], + [ + 77.485496071237606, + 12.944195205818501 + ], + [ + 77.485477387169396, + 12.944162120562799 + ], + [ + 77.485430094914307, + 12.9440663949014 + ], + [ + 77.485363252974494, + 12.944003485293401 + ], + [ + 77.485230375069406, + 12.943777498259401 + ], + [ + 77.4850784681189, + 12.943205219922399 + ], + [ + 77.484983969299094, + 12.9426997424889 + ], + [ + 77.484880292219501, + 12.9421939240098 + ], + [ + 77.484774892919006, + 12.9420845652401 + ], + [ + 77.484469438798101, + 12.942003808610799 + ], + [ + 77.483225023603097, + 12.9420066922251 + ], + [ + 77.483171786587505, + 12.941553246025901 + ], + [ + 77.483167171202197, + 12.941087136561 + ], + [ + 77.483262301432205, + 12.940915240028399 + ], + [ + 77.483424100511002, + 12.9407738621926 + ], + [ + 77.483837237964394, + 12.9405696497631 + ], + [ + 77.484302213957605, + 12.940417275873401 + ], + [ + 77.484515851576205, + 12.9402680437135 + ], + [ + 77.484672938060399, + 12.9401298076074 + ], + [ + 77.483948769368197, + 12.9401470871206 + ], + [ + 77.483607891697503, + 12.9401455162558 + ], + [ + 77.483583543292397, + 12.9398195618011 + ], + [ + 77.483366763944204, + 12.939732378802301 + ], + [ + 77.483129563353003, + 12.939675042235599 + ], + [ + 77.482476083578703, + 12.9395902155341 + ], + [ + 77.4821210681244, + 12.939638912344201 + ], + [ + 77.481838312452894, + 12.9397535854777 + ], + [ + 77.481448737972002, + 12.9399452309884 + ], + [ + 77.480760699171199, + 12.940138447363999 + ], + [ + 77.4800556287978, + 12.9403027744212 + ], + [ + 77.480038101343894, + 12.940306529902101 + ], + [ + 77.479898294372902, + 12.940326951145 + ], + [ + 77.4796076843772, + 12.9403882148739 + ], + [ + 77.479536439106496, + 12.940293686232399 + ], + [ + 77.479523318116193, + 12.940293401741 + ], + [ + 77.479536061704707, + 12.9402060386077 + ], + [ + 77.479517139316698, + 12.9400390694165 + ], + [ + 77.479489337752199, + 12.9398624809797 + ], + [ + 77.479486424526897, + 12.939843977716601 + ], + [ + 77.479451581414494, + 12.939625332836201 + ], + [ + 77.479448974966502, + 12.939608975198301 + ], + [ + 77.479439162078407, + 12.939547398607701 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "216", + "group": "Gavipuram", + "Corporatio": "West", + "ac_no": "170", + "ac": "Basavanagudi", + "corporat_1": "5", + "ward_id": "76", + "ward_name": "76 - Gavipuram", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಬಸವನಗುಡಿ", + "ward_name_": "ಗವಿಪುರಂ", + "dig_ward_n": "Gavipuram", + "Assembly": "170 - Basavanagudi", + "Slno": "76" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.564238680883406, + 12.946198663425401 + ], + [ + 77.564243713390098, + 12.945837170307399 + ], + [ + 77.564244986093101, + 12.945745744358 + ], + [ + 77.564247926007894, + 12.945526627489301 + ], + [ + 77.564248723433096, + 12.945276353454499 + ], + [ + 77.564248883031695, + 12.945226219141899 + ], + [ + 77.564249822972599, + 12.944755283740101 + ], + [ + 77.564249774910706, + 12.944694300969299 + ], + [ + 77.564249238048106, + 12.9444729596615 + ], + [ + 77.564251250014394, + 12.944388240913 + ], + [ + 77.564254670874703, + 12.944246460490699 + ], + [ + 77.563845488573705, + 12.9442060902972 + ], + [ + 77.563578856208196, + 12.943979328192 + ], + [ + 77.563477934611896, + 12.943914539019101 + ], + [ + 77.5633882265263, + 12.943894603888999 + ], + [ + 77.563294780603897, + 12.9438871282152 + ], + [ + 77.563212080960994, + 12.943881677202899 + ], + [ + 77.563198998531902, + 12.9440561095915 + ], + [ + 77.563189030966797, + 12.9441601460519 + ], + [ + 77.563148537733795, + 12.944198147393699 + ], + [ + 77.562894487542806, + 12.944214827905 + ], + [ + 77.562564039755003, + 12.9442173600745 + ], + [ + 77.562522339613807, + 12.9442149016353 + ], + [ + 77.562403929476204, + 12.9442179267808 + ], + [ + 77.562018932275606, + 12.944222287590501 + ], + [ + 77.562007718764903, + 12.944348128099399 + ], + [ + 77.561934673836106, + 12.9449263100122 + ], + [ + 77.5619312488503, + 12.9452391349701 + ], + [ + 77.561923773176503, + 12.9454459619452 + ], + [ + 77.561910067774505, + 12.945682691615501 + ], + [ + 77.561498282742704, + 12.9456565267571 + ], + [ + 77.561512611117607, + 12.945438486271399 + ], + [ + 77.561526316519505, + 12.9451880511991 + ], + [ + 77.561524688280997, + 12.9450516529234 + ], + [ + 77.561535427496295, + 12.9447444166821 + ], + [ + 77.560719449285202, + 12.9447008200917 + ], + [ + 77.560719333106604, + 12.9447008085849 + ], + [ + 77.560719535434401, + 12.9448862539362 + ], + [ + 77.560708231133304, + 12.945020227635901 + ], + [ + 77.560694840290594, + 12.945140835306599 + ], + [ + 77.5606870163938, + 12.9455859750858 + ], + [ + 77.560684524502506, + 12.945731750724899 + ], + [ + 77.560416283823201, + 12.945719181667799 + ], + [ + 77.560241694369495, + 12.945710379040101 + ], + [ + 77.559988286173194, + 12.9457157380774 + ], + [ + 77.559823531826893, + 12.945715443983101 + ], + [ + 77.559909546318806, + 12.9451735670813 + ], + [ + 77.559940694959707, + 12.9446440401872 + ], + [ + 77.559688279924799, + 12.9446402495758 + ], + [ + 77.559310675598198, + 12.944607385330499 + ], + [ + 77.559113126251603, + 12.9445935482499 + ], + [ + 77.558979296541196, + 12.944590560157801 + ], + [ + 77.558830663437007, + 12.944569788207801 + ], + [ + 77.558614076628899, + 12.9445532700854 + ], + [ + 77.558418386023405, + 12.944542044182599 + ], + [ + 77.558443770543093, + 12.944736851809299 + ], + [ + 77.558481088312007, + 12.9450979151682 + ], + [ + 77.558481275031397, + 12.945099603707 + ], + [ + 77.558265804779495, + 12.9451087841498 + ], + [ + 77.557741951307705, + 12.945121815379901 + ], + [ + 77.557465522281603, + 12.9451400661255 + ], + [ + 77.557344859245603, + 12.9451698151942 + ], + [ + 77.557332182210502, + 12.944926596288401 + ], + [ + 77.557258766179203, + 12.9448608872405 + ], + [ + 77.556111904029294, + 12.9462999019335 + ], + [ + 77.556048864265605, + 12.946325239878201 + ], + [ + 77.556026663541402, + 12.9463198516818 + ], + [ + 77.555934504014701, + 12.9463164525117 + ], + [ + 77.555574069216803, + 12.9463185539901 + ], + [ + 77.554946477631603, + 12.946357994148601 + ], + [ + 77.554888385417698, + 12.945666961552 + ], + [ + 77.553956418084198, + 12.945863820962 + ], + [ + 77.553552264468607, + 12.9458839118352 + ], + [ + 77.5534799996218, + 12.945886403726499 + ], + [ + 77.553486331351905, + 12.945734342531001 + ], + [ + 77.553487942526203, + 12.945226519770699 + ], + [ + 77.553439973619305, + 12.9446621063989 + ], + [ + 77.5534345441976, + 12.9446629799417 + ], + [ + 77.553190161519794, + 12.944673319909599 + ], + [ + 77.553253704747107, + 12.944254682176901 + ], + [ + 77.5533821928896, + 12.944269789267601 + ], + [ + 77.553744607326493, + 12.944299536219701 + ], + [ + 77.553721327008006, + 12.944163570357899 + ], + [ + 77.553694769501206, + 12.943822339042301 + ], + [ + 77.553198092294295, + 12.9438189323338 + ], + [ + 77.5530618291195, + 12.9438447660637 + ], + [ + 77.552985826435901, + 12.943855979574399 + ], + [ + 77.552928512936802, + 12.9438721768676 + ], + [ + 77.552761088990806, + 12.9439209244903 + ], + [ + 77.552570459308996, + 12.9439520731312 + ], + [ + 77.552534794116795, + 12.9434772121019 + ], + [ + 77.552408953607795, + 12.941982077342301 + ], + [ + 77.551976745647806, + 12.9420150832785 + ], + [ + 77.551752759508403, + 12.9420375950831 + ], + [ + 77.551485910096901, + 12.942049517585801 + ], + [ + 77.551478707478694, + 12.9420498392547 + ], + [ + 77.551213135424106, + 12.9420572199133 + ], + [ + 77.551043881307294, + 12.942069633143801 + ], + [ + 77.551037767246299, + 12.942070297400999 + ], + [ + 77.550833611097204, + 12.942090007382699 + ], + [ + 77.551101956638703, + 12.943046114912899 + ], + [ + 77.550792962121704, + 12.9430859851731 + ], + [ + 77.550665875667093, + 12.942634952854 + ], + [ + 77.550664716864205, + 12.942630693518799 + ], + [ + 77.550364668310394, + 12.9426718639934 + ], + [ + 77.550258838363405, + 12.942627619402399 + ], + [ + 77.550270316497304, + 12.9426804944945 + ], + [ + 77.550274194627804, + 12.9427058737142 + ], + [ + 77.550293694663296, + 12.9428334698268 + ], + [ + 77.550281189023806, + 12.9429058684489 + ], + [ + 77.550193010305506, + 12.9429379387362 + ], + [ + 77.550054626453701, + 12.9429882686577 + ], + [ + 77.550027752647196, + 12.9430177830695 + ], + [ + 77.550007940521297, + 12.9430395453244 + ], + [ + 77.549977437785998, + 12.9430974378283 + ], + [ + 77.5498865075552, + 12.9432699875741 + ], + [ + 77.549858899098197, + 12.943328982893901 + ], + [ + 77.549849895507094, + 12.9433493989384 + ], + [ + 77.549837974339795, + 12.943374487335999 + ], + [ + 77.549791406586706, + 12.943485490881701 + ], + [ + 77.549752406760106, + 12.943669952479 + ], + [ + 77.549743787421505, + 12.9437076841834 + ], + [ + 77.549731465217803, + 12.9437616340724 + ], + [ + 77.549727889259003, + 12.9437772881569 + ], + [ + 77.549693983736404, + 12.943925753764001 + ], + [ + 77.549680432759999, + 12.944008327502001 + ], + [ + 77.549672218824, + 12.944058389342301 + ], + [ + 77.549659832006995, + 12.9441338847897 + ], + [ + 77.549657849159004, + 12.9441579200902 + ], + [ + 77.549655732128997, + 12.944183615464899 + ], + [ + 77.549650145553699, + 12.9442570766362 + ], + [ + 77.549635028931903, + 12.9442990097772 + ], + [ + 77.549621038789198, + 12.944338673235301 + ], + [ + 77.549597527702005, + 12.9444044044546 + ], + [ + 77.549547855479801, + 12.944614945993001 + ], + [ + 77.549538391946697, + 12.9446466598481 + ], + [ + 77.549532865150894, + 12.944669300540101 + ], + [ + 77.549514211845207, + 12.944759829517899 + ], + [ + 77.549471884233, + 12.944956747232499 + ], + [ + 77.549466588935303, + 12.944980323456599 + ], + [ + 77.549465275036098, + 12.944986174501 + ], + [ + 77.549464158182403, + 12.9449895725174 + ], + [ + 77.549459030125703, + 12.945014245482501 + ], + [ + 77.5494746403036, + 12.945012285705801 + ], + [ + 77.550310205163399, + 12.9448909011853 + ], + [ + 77.550726349452802, + 12.9448304458049 + ], + [ + 77.551047556710998, + 12.944793354884199 + ], + [ + 77.551255027839105, + 12.9447693976655 + ], + [ + 77.551343865546698, + 12.9447591391371 + ], + [ + 77.551699543311798, + 12.9447282972606 + ], + [ + 77.552433561034107, + 12.944640458093501 + ], + [ + 77.552489005614703, + 12.946078279353999 + ], + [ + 77.552719323450702, + 12.9460686740545 + ], + [ + 77.553088772692703, + 12.9460228347733 + ], + [ + 77.553021533346396, + 12.946709377422501 + ], + [ + 77.553016488439198, + 12.9467790277986 + ], + [ + 77.5530119176413, + 12.9468421396886 + ], + [ + 77.552998530351601, + 12.947035177272999 + ], + [ + 77.552993869386995, + 12.947120998577001 + ], + [ + 77.552992373078297, + 12.9471485435479 + ], + [ + 77.552916832195393, + 12.947326093905399 + ], + [ + 77.552861543359001, + 12.9475310519621 + ], + [ + 77.552878583488294, + 12.9477090614538 + ], + [ + 77.552878091782901, + 12.9477214690056 + ], + [ + 77.552875611630597, + 12.947869448311 + ], + [ + 77.552900015828399, + 12.9481176507441 + ], + [ + 77.552927756259706, + 12.9483744337681 + ], + [ + 77.552929274411298, + 12.9483744450923 + ], + [ + 77.553113820797805, + 12.9483656879192 + ], + [ + 77.553168918339594, + 12.9484058051878 + ], + [ + 77.553226790494193, + 12.9486051205091 + ], + [ + 77.553241301462094, + 12.948605146341601 + ], + [ + 77.553326407128594, + 12.9485719534223 + ], + [ + 77.553449053402204, + 12.9485535404317 + ], + [ + 77.553618294905306, + 12.9485155470968 + ], + [ + 77.5537727456407, + 12.948479273378201 + ], + [ + 77.553779736925904, + 12.9484776310171 + ], + [ + 77.5540112758123, + 12.948430421308 + ], + [ + 77.554163019879098, + 12.9483973802958 + ], + [ + 77.554338147774004, + 12.948363153173901 + ], + [ + 77.554387158246499, + 12.948351446240199 + ], + [ + 77.554504322676493, + 12.948356335200801 + ], + [ + 77.555226348170805, + 12.9474623692091 + ], + [ + 77.555358418407906, + 12.9481999690239 + ], + [ + 77.556879718025897, + 12.947937697468101 + ], + [ + 77.556592527557498, + 12.946307377607299 + ], + [ + 77.557090905810696, + 12.9462513100538 + ], + [ + 77.557629149713506, + 12.9461869121733 + ], + [ + 77.558102613664701, + 12.946061926317601 + ], + [ + 77.558598344281805, + 12.9459655212741 + ], + [ + 77.558623263194406, + 12.9461150347501 + ], + [ + 77.558759071268398, + 12.9460913617831 + ], + [ + 77.558916026077299, + 12.946064192469001 + ], + [ + 77.559095028771793, + 12.946051677964601 + ], + [ + 77.559328824845593, + 12.946035038440799 + ], + [ + 77.559420172249304, + 12.946030556297799 + ], + [ + 77.559527994531905, + 12.946002132367999 + ], + [ + 77.559693348477794, + 12.9461028889032 + ], + [ + 77.559694639458002, + 12.9461142119127 + ], + [ + 77.559712622193203, + 12.946271939892901 + ], + [ + 77.559734395548503, + 12.9463993738113 + ], + [ + 77.559769942856704, + 12.946586910486101 + ], + [ + 77.5598199515007, + 12.946758527982301 + ], + [ + 77.559879873815106, + 12.946939564181299 + ], + [ + 77.560168479884396, + 12.9469287329672 + ], + [ + 77.560440241284795, + 12.946890558034999 + ], + [ + 77.560703123479797, + 12.9468584518828 + ], + [ + 77.560860860083693, + 12.9468396907737 + ], + [ + 77.560914184593699, + 12.9468348644122 + ], + [ + 77.561007001152007, + 12.946831083666799 + ], + [ + 77.561221658208893, + 12.946801722754101 + ], + [ + 77.561229124636895, + 12.9468884210119 + ], + [ + 77.561252553363701, + 12.947106194946601 + ], + [ + 77.561255741438302, + 12.947131980801901 + ], + [ + 77.561359501940998, + 12.9471259402971 + ], + [ + 77.561508310805493, + 12.947115992125999 + ], + [ + 77.561619813505999, + 12.947104377869801 + ], + [ + 77.561650319247605, + 12.9473025539007 + ], + [ + 77.561730943708199, + 12.9472859606543 + ], + [ + 77.561780548989603, + 12.9472757508307 + ], + [ + 77.562169434712999, + 12.9471959119084 + ], + [ + 77.562386840119103, + 12.947149313032799 + ], + [ + 77.562301125152302, + 12.946989520492901 + ], + [ + 77.562234966950697, + 12.9468832731914 + ], + [ + 77.562074125511103, + 12.9466697182609 + ], + [ + 77.562014833243794, + 12.946591465629 + ], + [ + 77.561977738196006, + 12.9465061838072 + ], + [ + 77.562144694910799, + 12.9465036919159 + ], + [ + 77.562424750469106, + 12.946494926226199 + ], + [ + 77.562425166637297, + 12.9464949085817 + ], + [ + 77.562579685939298, + 12.946488382924001 + ], + [ + 77.5626852532002, + 12.94651602942 + ], + [ + 77.562792586640001, + 12.9465211351548 + ], + [ + 77.563070432516199, + 12.946527364883 + ], + [ + 77.563335818935997, + 12.9465298567742 + ], + [ + 77.563332367643994, + 12.946235007229999 + ], + [ + 77.563552068377106, + 12.9462045870926 + ], + [ + 77.564178156057693, + 12.9461946195275 + ], + [ + 77.564238680883406, + 12.946198663425401 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "217", + "group": "Hanumanthanagar", + "Corporatio": "West", + "ac_no": "170", + "ac": "Basavanagudi", + "corporat_1": "5", + "ward_id": "77", + "ward_name": "77 - Hanumanthanagar", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಬಸವನಗುಡಿ", + "ward_name_": "ಹನುಮಂತನಗರ", + "dig_ward_n": "Hanumanthanagar", + "Assembly": "170 - Basavanagudi", + "Slno": "77" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.564255284669798, + 12.944221021293201 + ], + [ + 77.564256101849793, + 12.9441871743271 + ], + [ + 77.564261999118202, + 12.9439199988424 + ], + [ + 77.564262578880204, + 12.943893738721 + ], + [ + 77.564263183308796, + 12.943866377948099 + ], + [ + 77.564263643454296, + 12.943855080226699 + ], + [ + 77.564269895510705, + 12.9435957504698 + ], + [ + 77.564270765470596, + 12.9435596777729 + ], + [ + 77.564271323712802, + 12.943536536591401 + ], + [ + 77.564278578527706, + 12.9432326782914 + ], + [ + 77.564281430014105, + 12.9431174596556 + ], + [ + 77.564282551016206, + 12.9428893261029 + ], + [ + 77.564284567489096, + 12.942579872736999 + ], + [ + 77.564284750344896, + 12.942561905724199 + ], + [ + 77.564285428281806, + 12.9424951653092 + ], + [ + 77.564289217938594, + 12.942190211769701 + ], + [ + 77.564295535913104, + 12.941738421818 + ], + [ + 77.565098717964901, + 12.9417474586281 + ], + [ + 77.565031734840602, + 12.941333657764099 + ], + [ + 77.564987198826998, + 12.9410581343835 + ], + [ + 77.564978880931605, + 12.941006675364299 + ], + [ + 77.564917427999504, + 12.9409027652746 + ], + [ + 77.564822113730003, + 12.940741599182401 + ], + [ + 77.564719785142003, + 12.9405685723157 + ], + [ + 77.564715934962294, + 12.9405620620607 + ], + [ + 77.564401849300694, + 12.940030974157899 + ], + [ + 77.564289377139204, + 12.939841225532 + ], + [ + 77.564203834361905, + 12.9396952554123 + ], + [ + 77.564044492593894, + 12.939425785923699 + ], + [ + 77.563973019173702, + 12.939304522334901 + ], + [ + 77.564029983285096, + 12.939301703442499 + ], + [ + 77.564338519992802, + 12.9392986687104 + ], + [ + 77.564477868172304, + 12.939301815256 + ], + [ + 77.564523452026194, + 12.9393027715127 + ], + [ + 77.564530758671694, + 12.938929666284601 + ], + [ + 77.5644335749123, + 12.938924682502 + ], + [ + 77.564166942546805, + 12.938920944665099 + ], + [ + 77.563735935089895, + 12.9388878673688 + ], + [ + 77.563627410582598, + 12.938880568546899 + ], + [ + 77.563403075971806, + 12.938868432041099 + ], + [ + 77.563142155514498, + 12.938861355717099 + ], + [ + 77.562955656394607, + 12.9391175276045 + ], + [ + 77.562868116062901, + 12.939235060585199 + ], + [ + 77.562451627950097, + 12.939212919129 + ], + [ + 77.562053682630605, + 12.939191969825 + ], + [ + 77.5615484188056, + 12.939162513096401 + ], + [ + 77.561528568905103, + 12.9391637543358 + ], + [ + 77.561258104275396, + 12.9391806645902 + ], + [ + 77.560885970672899, + 12.9392053555466 + ], + [ + 77.560786684613007, + 12.939219717356201 + ], + [ + 77.560079773640197, + 12.939266694578199 + ], + [ + 77.560127119574304, + 12.9400603619465 + ], + [ + 77.559844289915503, + 12.940064099783401 + ], + [ + 77.559848027752494, + 12.9404005051043 + ], + [ + 77.559200096454404, + 12.940408833342801 + ], + [ + 77.558772816474601, + 12.9404423703281 + ], + [ + 77.558726704175697, + 12.940445989577899 + ], + [ + 77.5583175956384, + 12.940477733893101 + ], + [ + 77.557805262255897, + 12.9405200517743 + ], + [ + 77.5577224405545, + 12.940524797180201 + ], + [ + 77.557806499253104, + 12.941063254777101 + ], + [ + 77.557765971663301, + 12.9410671632969 + ], + [ + 77.557677386522101, + 12.941079506452899 + ], + [ + 77.557510910340397, + 12.941101219269401 + ], + [ + 77.557364785785396, + 12.941111258375001 + ], + [ + 77.557336264273701, + 12.9408954449974 + ], + [ + 77.557323485163906, + 12.9407894363925 + ], + [ + 77.557074175860393, + 12.940813874147199 + ], + [ + 77.556969985409793, + 12.940825413368501 + ], + [ + 77.556782074057907, + 12.940848292724199 + ], + [ + 77.556778855023694, + 12.940848767897 + ], + [ + 77.556625846786702, + 12.9408713382262 + ], + [ + 77.556614062317706, + 12.9408726219808 + ], + [ + 77.556322033233698, + 12.940904437383701 + ], + [ + 77.5560575947584, + 12.9409271099411 + ], + [ + 77.556002009822805, + 12.940926236551601 + ], + [ + 77.555325245104498, + 12.941011018464501 + ], + [ + 77.555301572137395, + 12.940856521205999 + ], + [ + 77.5552815426107, + 12.940612895902101 + ], + [ + 77.555255679327701, + 12.9403707615635 + ], + [ + 77.555241468721306, + 12.940267635214299 + ], + [ + 77.555206730631696, + 12.940015547675101 + ], + [ + 77.555189258893094, + 12.9398794651882 + ], + [ + 77.5551746831038, + 12.9397404858206 + ], + [ + 77.555164417360302, + 12.9396780099833 + ], + [ + 77.554821895419593, + 12.9397032258428 + ], + [ + 77.554788711658901, + 12.939706659857 + ], + [ + 77.554800252942101, + 12.9397866675492 + ], + [ + 77.5548482807949, + 12.940194958187799 + ], + [ + 77.554883529939801, + 12.9404972389604 + ], + [ + 77.554898095959004, + 12.940635262591901 + ], + [ + 77.554911984839705, + 12.9407546463106 + ], + [ + 77.554935407140803, + 12.940948519148501 + ], + [ + 77.554952707360201, + 12.941115677897701 + ], + [ + 77.555021234369207, + 12.941862622304599 + ], + [ + 77.554734541689498, + 12.9418661418825 + ], + [ + 77.554691729763604, + 12.941869988321599 + ], + [ + 77.554286521391006, + 12.9419063892758 + ], + [ + 77.553972225494803, + 12.941915445463399 + ], + [ + 77.553858947730006, + 12.941920140318 + ], + [ + 77.553855046792904, + 12.9419195958061 + ], + [ + 77.553786950566206, + 12.9419100891119 + ], + [ + 77.553669939142907, + 12.941897291488599 + ], + [ + 77.553512332224898, + 12.941898046828999 + ], + [ + 77.553431113253197, + 12.941898435929801 + ], + [ + 77.553070577238302, + 12.941913919512 + ], + [ + 77.552913035258101, + 12.941927665650899 + ], + [ + 77.552690552707901, + 12.941934164082401 + ], + [ + 77.552618027282307, + 12.941938727619201 + ], + [ + 77.552547634254594, + 12.941954513852 + ], + [ + 77.552408953607795, + 12.941982077342301 + ], + [ + 77.552534794116795, + 12.9434772121019 + ], + [ + 77.552570459308996, + 12.9439520731312 + ], + [ + 77.552761088990806, + 12.9439209244903 + ], + [ + 77.552928512936802, + 12.9438721768676 + ], + [ + 77.552985826435901, + 12.943855979574399 + ], + [ + 77.5530618291195, + 12.9438447660637 + ], + [ + 77.553198092294295, + 12.9438189323338 + ], + [ + 77.553694769501206, + 12.943822339042301 + ], + [ + 77.553721327008006, + 12.944163570357899 + ], + [ + 77.553744607326493, + 12.944299536219701 + ], + [ + 77.5533821928896, + 12.944269789267601 + ], + [ + 77.553253704747107, + 12.944254682176901 + ], + [ + 77.553190161519794, + 12.944673319909599 + ], + [ + 77.5534345441976, + 12.9446629799417 + ], + [ + 77.553439973619305, + 12.9446621063989 + ], + [ + 77.553487942526203, + 12.945226519770699 + ], + [ + 77.553486331351905, + 12.945734342531001 + ], + [ + 77.5534799996218, + 12.945886403726499 + ], + [ + 77.553552264468607, + 12.9458839118352 + ], + [ + 77.553956418084198, + 12.945863820962 + ], + [ + 77.554888385417698, + 12.945666961552 + ], + [ + 77.554946477631603, + 12.946357994148601 + ], + [ + 77.555574069216803, + 12.9463185539901 + ], + [ + 77.555934504014701, + 12.9463164525117 + ], + [ + 77.556026663541402, + 12.9463198516818 + ], + [ + 77.556048864265605, + 12.946325239878201 + ], + [ + 77.556111904029294, + 12.9462999019335 + ], + [ + 77.557258766179203, + 12.9448608872405 + ], + [ + 77.557332182210502, + 12.944926596288401 + ], + [ + 77.557344859245603, + 12.9451698151942 + ], + [ + 77.557465522281603, + 12.9451400661255 + ], + [ + 77.557741951307705, + 12.945121815379901 + ], + [ + 77.558265804779495, + 12.9451087841498 + ], + [ + 77.558481275031397, + 12.945099603707 + ], + [ + 77.558481088312007, + 12.9450979151682 + ], + [ + 77.558443770543093, + 12.944736851809299 + ], + [ + 77.558418386023405, + 12.944542044182599 + ], + [ + 77.558614076628899, + 12.9445532700854 + ], + [ + 77.558830663437007, + 12.944569788207801 + ], + [ + 77.558979296541196, + 12.944590560157801 + ], + [ + 77.559113126251603, + 12.9445935482499 + ], + [ + 77.559310675598198, + 12.944607385330499 + ], + [ + 77.559688279924799, + 12.9446402495758 + ], + [ + 77.559940694959707, + 12.9446440401872 + ], + [ + 77.559909546318806, + 12.9451735670813 + ], + [ + 77.559823531826893, + 12.945715443983101 + ], + [ + 77.559988286173194, + 12.9457157380774 + ], + [ + 77.560241694369495, + 12.945710379040101 + ], + [ + 77.560416283823201, + 12.945719181667799 + ], + [ + 77.560684524502506, + 12.945731750724899 + ], + [ + 77.5606870163938, + 12.9455859750858 + ], + [ + 77.560694840290594, + 12.945140835306599 + ], + [ + 77.560708231133304, + 12.945020227635901 + ], + [ + 77.560719535434401, + 12.9448862539362 + ], + [ + 77.560719333106604, + 12.9447008085849 + ], + [ + 77.560719449285202, + 12.9447008200917 + ], + [ + 77.561535427496295, + 12.9447444166821 + ], + [ + 77.561524688280997, + 12.9450516529234 + ], + [ + 77.561526316519505, + 12.9451880511991 + ], + [ + 77.561512611117607, + 12.945438486271399 + ], + [ + 77.561498282742704, + 12.9456565267571 + ], + [ + 77.561910067774505, + 12.945682691615501 + ], + [ + 77.561923773176503, + 12.9454459619452 + ], + [ + 77.5619312488503, + 12.9452391349701 + ], + [ + 77.561934673836106, + 12.9449263100122 + ], + [ + 77.562007718764903, + 12.944348128099399 + ], + [ + 77.562018932275606, + 12.944222287590501 + ], + [ + 77.562403929476204, + 12.9442179267808 + ], + [ + 77.562522339613807, + 12.9442149016353 + ], + [ + 77.562564039755003, + 12.9442173600745 + ], + [ + 77.562894487542806, + 12.944214827905 + ], + [ + 77.563148537733795, + 12.944198147393699 + ], + [ + 77.563189030966797, + 12.9441601460519 + ], + [ + 77.563198998531902, + 12.9440561095915 + ], + [ + 77.563212080960994, + 12.943881677202899 + ], + [ + 77.563294780603897, + 12.9438871282152 + ], + [ + 77.5633882265263, + 12.943894603888999 + ], + [ + 77.563477934611896, + 12.943914539019101 + ], + [ + 77.563578856208196, + 12.943979328192 + ], + [ + 77.563845488573705, + 12.9442060902972 + ], + [ + 77.564254670874703, + 12.944246460490699 + ], + [ + 77.564255284669798, + 12.944221021293201 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "218", + "group": "konanakunte", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "70", + "ward_name": "70 - Konanakunte", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಕೋಣನಕುಂಟೆ", + "dig_ward_n": "konanakunte", + "Assembly": "176 - Bangalore South", + "Slno": "70" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.568408216548804, + 12.8941239906235 + ], + [ + 77.568413626702295, + 12.8941197144849 + ], + [ + 77.568413626702295, + 12.8941197144849 + ], + [ + 77.568869255292199, + 12.894009808337399 + ], + [ + 77.568885184204305, + 12.8940059658915 + ], + [ + 77.568891907771402, + 12.8940043440012 + ], + [ + 77.568903431153203, + 12.8940054983676 + ], + [ + 77.569039796108996, + 12.8940191608416 + ], + [ + 77.5690622013243, + 12.894021405889299 + ], + [ + 77.569063009737704, + 12.8940214868939 + ], + [ + 77.569116959460004, + 12.894026892665799 + ], + [ + 77.570287965775407, + 12.894144215633199 + ], + [ + 77.571028180338104, + 12.894202440679001 + ], + [ + 77.571876051990799, + 12.894262992891299 + ], + [ + 77.571881362701404, + 12.894444760655199 + ], + [ + 77.571881858830395, + 12.894493316393699 + ], + [ + 77.571889214826101, + 12.8944940674688 + ], + [ + 77.571883599097305, + 12.8942203815357 + ], + [ + 77.571877476573405, + 12.8938938984584 + ], + [ + 77.571899616556607, + 12.893576173809601 + ], + [ + 77.571920203354097, + 12.893417218359801 + ], + [ + 77.571925132717993, + 12.8933827528333 + ], + [ + 77.5719616621993, + 12.893127318941699 + ], + [ + 77.572002502410896, + 12.892839067186699 + ], + [ + 77.572022730484505, + 12.892696292507001 + ], + [ + 77.5720901491337, + 12.8922204447575 + ], + [ + 77.572093816965193, + 12.8921862635774 + ], + [ + 77.572096885331604, + 12.8921154912041 + ], + [ + 77.572086867743806, + 12.892066562001199 + ], + [ + 77.572036740503094, + 12.891849971292499 + ], + [ + 77.572001268381996, + 12.8916967058772 + ], + [ + 77.571912335262098, + 12.8913565608949 + ], + [ + 77.571900678732106, + 12.8913119780365 + ], + [ + 77.571786952728701, + 12.890931134888801 + ], + [ + 77.5717605439864, + 12.8908242385794 + ], + [ + 77.571723840814997, + 12.890709410976401 + ], + [ + 77.5714999923985, + 12.890763804405299 + ], + [ + 77.571222003800997, + 12.890740511356 + ], + [ + 77.570143509225801, + 12.8906305103969 + ], + [ + 77.570041569380393, + 12.890641751372501 + ], + [ + 77.569342343725097, + 12.890535984860399 + ], + [ + 77.569469290953805, + 12.8900773730089 + ], + [ + 77.569662384780301, + 12.888941165760601 + ], + [ + 77.5690858985501, + 12.888859008820299 + ], + [ + 77.568915149021606, + 12.8888322422325 + ], + [ + 77.568735412913199, + 12.888834006871001 + ], + [ + 77.568726163392, + 12.888239121840099 + ], + [ + 77.568734587532902, + 12.888092017081901 + ], + [ + 77.568739865894599, + 12.887676401832699 + ], + [ + 77.568747122524897, + 12.8875672337997 + ], + [ + 77.568763264572894, + 12.887324399901599 + ], + [ + 77.568764875701405, + 12.887300157920301 + ], + [ + 77.568772163572802, + 12.8871905306258 + ], + [ + 77.568801068614306, + 12.886926767567701 + ], + [ + 77.568808480240705, + 12.8866132950509 + ], + [ + 77.568810697626603, + 12.8863307241734 + ], + [ + 77.569161382310398, + 12.886306499244601 + ], + [ + 77.569185607239206, + 12.8863411062858 + ], + [ + 77.569800459003801, + 12.8862753529076 + ], + [ + 77.570492599827006, + 12.886180760328401 + ], + [ + 77.570650934294505, + 12.8861736381226 + ], + [ + 77.5706399450074, + 12.8860897925508 + ], + [ + 77.570631301639196, + 12.8860238502798 + ], + [ + 77.570504126352304, + 12.885499810114499 + ], + [ + 77.570496610874798, + 12.885464070081801 + ], + [ + 77.570434866853304, + 12.8851704339425 + ], + [ + 77.570346595944898, + 12.8847506432576 + ], + [ + 77.5703216687387, + 12.884632095488399 + ], + [ + 77.570269287968301, + 12.8845728499636 + ], + [ + 77.570231717734501, + 12.884577215798 + ], + [ + 77.570195206635404, + 12.8844397965547 + ], + [ + 77.570153434197593, + 12.884288895206801 + ], + [ + 77.569933119328297, + 12.883700589045301 + ], + [ + 77.5699086877475, + 12.8836093108235 + ], + [ + 77.569555902579694, + 12.8829421180599 + ], + [ + 77.569043832825699, + 12.8820400182101 + ], + [ + 77.568736813818902, + 12.8814048342247 + ], + [ + 77.568731462844298, + 12.8814063060591 + ], + [ + 77.568343329910704, + 12.880704802102001 + ], + [ + 77.568097125559206, + 12.880292058247401 + ], + [ + 77.567776293935097, + 12.879754204329799 + ], + [ + 77.567410603192897, + 12.879042862402001 + ], + [ + 77.567621945762795, + 12.878945581589999 + ], + [ + 77.567257418262599, + 12.877632821162001 + ], + [ + 77.567148982866897, + 12.877658199658899 + ], + [ + 77.566977101229199, + 12.876453874626501 + ], + [ + 77.566799451751194, + 12.875503334562699 + ], + [ + 77.566691016355605, + 12.874841186508499 + ], + [ + 77.5666373679001, + 12.8742242137973 + ], + [ + 77.566638580839097, + 12.8736254054167 + ], + [ + 77.566532315282601, + 12.872689189447 + ], + [ + 77.566439469976203, + 12.8719999971792 + ], + [ + 77.566424257467105, + 12.8718870721092 + ], + [ + 77.566276976290695, + 12.8712378615002 + ], + [ + 77.566192131428807, + 12.8708638631126 + ], + [ + 77.566120393003899, + 12.8704242156728 + ], + [ + 77.566092484046194, + 12.8700746376258 + ], + [ + 77.566065609138093, + 12.869940648918099 + ], + [ + 77.566078006898806, + 12.869791485103599 + ], + [ + 77.566217303683203, + 12.869463592844999 + ], + [ + 77.5662682484855, + 12.869341925837301 + ], + [ + 77.566248008573695, + 12.869062242965301 + ], + [ + 77.566119920694206, + 12.8686736738589 + ], + [ + 77.565801766482394, + 12.867771878083699 + ], + [ + 77.565331321760596, + 12.867920975569 + ], + [ + 77.564319552021502, + 12.868148184972 + ], + [ + 77.563897121916497, + 12.8682296841975 + ], + [ + 77.563025256796706, + 12.8683599506967 + ], + [ + 77.561827115887297, + 12.868562806205301 + ], + [ + 77.562018097607293, + 12.869555316274001 + ], + [ + 77.562017802624197, + 12.8695553760764 + ], + [ + 77.5606792056942, + 12.8698300833601 + ], + [ + 77.559824724076094, + 12.8699601705509 + ], + [ + 77.558908031459595, + 12.870130683396299 + ], + [ + 77.558387197772106, + 12.8702290639593 + ], + [ + 77.558390289422505, + 12.870076577367399 + ], + [ + 77.558362841460195, + 12.8698857060128 + ], + [ + 77.557463961002497, + 12.8699832249421 + ], + [ + 77.556093127893106, + 12.8701968438346 + ], + [ + 77.556363285763197, + 12.8707653514673 + ], + [ + 77.556761283912707, + 12.871183806009 + ], + [ + 77.557063722640294, + 12.871455752198401 + ], + [ + 77.557643911447798, + 12.8722078516079 + ], + [ + 77.557910579549301, + 12.8724600661787 + ], + [ + 77.558059960703901, + 12.8726833485412 + ], + [ + 77.558131750891505, + 12.872790652912499 + ], + [ + 77.558596137217293, + 12.873463084150901 + ], + [ + 77.558872180592004, + 12.8738705832705 + ], + [ + 77.559145263382703, + 12.874130382972901 + ], + [ + 77.559361266392301, + 12.8743404209517 + ], + [ + 77.559677305248798, + 12.8744010456428 + ], + [ + 77.559805136039301, + 12.874884470569601 + ], + [ + 77.560297698814196, + 12.874733913833399 + ], + [ + 77.5616207393781, + 12.8754145653641 + ], + [ + 77.561745955610107, + 12.8766645001903 + ], + [ + 77.562498511806993, + 12.8773527468355 + ], + [ + 77.561998730673494, + 12.8778022534214 + ], + [ + 77.562411554494105, + 12.879583850005799 + ], + [ + 77.5624431941865, + 12.8798331166163 + ], + [ + 77.562650754015806, + 12.8798310851152 + ], + [ + 77.562722996907596, + 12.880206966683801 + ], + [ + 77.562794727550099, + 12.8803043937609 + ], + [ + 77.562960652770201, + 12.880883580631 + ], + [ + 77.562953752048401, + 12.880946223334 + ], + [ + 77.562953064436599, + 12.881106649984201 + ], + [ + 77.562491861212607, + 12.881140745745 + ], + [ + 77.562777834007804, + 12.881151883606 + ], + [ + 77.563194036193806, + 12.8811920628676 + ], + [ + 77.563199647123596, + 12.881226823652201 + ], + [ + 77.563229779502393, + 12.8812802447215 + ], + [ + 77.563251746507703, + 12.881334309492701 + ], + [ + 77.563254564931398, + 12.881369664988499 + ], + [ + 77.563257883644994, + 12.8814112910158 + ], + [ + 77.563241372609895, + 12.8815427768559 + ], + [ + 77.563205161720802, + 12.8816674492549 + ], + [ + 77.563097762998197, + 12.881812081323 + ], + [ + 77.562966703488698, + 12.8819114178772 + ], + [ + 77.562738006169695, + 12.882062489210799 + ], + [ + 77.562671710054502, + 12.882104728099099 + ], + [ + 77.562642192242393, + 12.882117709771499 + ], + [ + 77.562626414754305, + 12.8821458778063 + ], + [ + 77.562616207252901, + 12.8821950057928 + ], + [ + 77.562625680876195, + 12.882249192925499 + ], + [ + 77.562671683434004, + 12.882385319520299 + ], + [ + 77.562745679104097, + 12.8825354629711 + ], + [ + 77.562809306907994, + 12.882580078983199 + ], + [ + 77.562859917033904, + 12.882642620584599 + ], + [ + 77.562969485530601, + 12.8828866826343 + ], + [ + 77.562976851607004, + 12.8829602659657 + ], + [ + 77.562994776760902, + 12.8829784614035 + ], + [ + 77.563026485262796, + 12.8830674805043 + ], + [ + 77.563040037916593, + 12.883139071655799 + ], + [ + 77.563043902778901, + 12.883171103918899 + ], + [ + 77.562860835996901, + 12.883210225540299 + ], + [ + 77.562843536192403, + 12.8833060107787 + ], + [ + 77.562708865746501, + 12.883540393935499 + ], + [ + 77.562584248115499, + 12.8835655186432 + ], + [ + 77.562703984477494, + 12.8839587634968 + ], + [ + 77.563501977512601, + 12.8837328889504 + ], + [ + 77.564083375804103, + 12.883848245754301 + ], + [ + 77.564489431753699, + 12.884434258317899 + ], + [ + 77.564401760582797, + 12.884503472400199 + ], + [ + 77.564378689221996, + 12.884628057748399 + ], + [ + 77.5645078888423, + 12.885075642147401 + ], + [ + 77.564853959253895, + 12.8853571127488 + ], + [ + 77.565218486754105, + 12.886072324932799 + ], + [ + 77.5655691714379, + 12.886831372702201 + ], + [ + 77.565150426239796, + 12.887057472037799 + ], + [ + 77.564971449265997, + 12.8871884162754 + ], + [ + 77.564970469625806, + 12.8871889787942 + ], + [ + 77.564795127283901, + 12.887348171183501 + ], + [ + 77.564631320622397, + 12.8875373563419 + ], + [ + 77.564460592552706, + 12.8879249552029 + ], + [ + 77.564052229466995, + 12.888672467291901 + ], + [ + 77.563604645067997, + 12.889539950456999 + ], + [ + 77.563499326195299, + 12.889624264860499 + ], + [ + 77.563525384726404, + 12.8896490805237 + ], + [ + 77.563713533190906, + 12.889828253966 + ], + [ + 77.563927953966797, + 12.890067584039899 + ], + [ + 77.564156117017006, + 12.8902207247487 + ], + [ + 77.564279370991301, + 12.8903605501912 + ], + [ + 77.564313284560399, + 12.8903410942801 + ], + [ + 77.565444309719098, + 12.8913411467312 + ], + [ + 77.566529344982698, + 12.8923703286045 + ], + [ + 77.568160542585204, + 12.8938438790488 + ], + [ + 77.568361431426595, + 12.894080032082901 + ], + [ + 77.568408216548804, + 12.8941239906235 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "219", + "group": "Srinagar", + "Corporatio": "West", + "ac_no": "170", + "ac": "Basavanagudi", + "corporat_1": "5", + "ward_id": "74", + "ward_name": "74 - Srinagar", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಬಸವನಗುಡಿ", + "ward_name_": "ಶ್ರೀನಗರ", + "dig_ward_n": "Srinagar", + "Assembly": "170 - Basavanagudi", + "Slno": "74" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.549452633208702, + 12.9450450233974 + ], + [ + 77.549462909198496, + 12.9452064172091 + ], + [ + 77.549471619974099, + 12.9453836369649 + ], + [ + 77.549472884563798, + 12.945406540075 + ], + [ + 77.549473738302794, + 12.9454220134959 + ], + [ + 77.549463626912996, + 12.9455034242589 + ], + [ + 77.549477692280306, + 12.945641065034501 + ], + [ + 77.5494788027369, + 12.9456462761966 + ], + [ + 77.549511547975399, + 12.945799969465 + ], + [ + 77.549512412598702, + 12.9458037420056 + ], + [ + 77.549515162659802, + 12.945815744732499 + ], + [ + 77.5495456587239, + 12.9459272501194 + ], + [ + 77.549548618711796, + 12.9459452208866 + ], + [ + 77.549572546252506, + 12.946090507309201 + ], + [ + 77.549573884368499, + 12.946098632251701 + ], + [ + 77.549572932491301, + 12.9461188845964 + ], + [ + 77.549568205488299, + 12.9462195262265 + ], + [ + 77.549574625392907, + 12.946397897694901 + ], + [ + 77.549567485573206, + 12.9464318474837 + ], + [ + 77.549581496455701, + 12.946450909015599 + ], + [ + 77.549606959774493, + 12.946633611461801 + ], + [ + 77.549623587825593, + 12.9467315704401 + ], + [ + 77.549625337487498, + 12.9467418455889 + ], + [ + 77.549629454010798, + 12.9467659314285 + ], + [ + 77.549646144653096, + 12.9468636115219 + ], + [ + 77.549673196315695, + 12.947032746429199 + ], + [ + 77.549676257442201, + 12.9470507857668 + ], + [ + 77.549678004768595, + 12.9470548403762 + ], + [ + 77.549688407543101, + 12.9470789796446 + ], + [ + 77.549711635127494, + 12.947132880717099 + ], + [ + 77.549727756512894, + 12.947207281371 + ], + [ + 77.549759961793697, + 12.9473560152767 + ], + [ + 77.549764085835506, + 12.947372596858999 + ], + [ + 77.549788294522102, + 12.947515238346201 + ], + [ + 77.549790119072497, + 12.947525991594601 + ], + [ + 77.549794915487894, + 12.947554247488201 + ], + [ + 77.549809478133795, + 12.9476401229243 + ], + [ + 77.549810173237304, + 12.9476442530857 + ], + [ + 77.549814012764202, + 12.947667273731 + ], + [ + 77.549823586196197, + 12.947724683748101 + ], + [ + 77.549708828981807, + 12.947755109781401 + ], + [ + 77.549706863963607, + 12.947755630434401 + ], + [ + 77.549659950732007, + 12.947768069474099 + ], + [ + 77.549558959874204, + 12.9477959593201 + ], + [ + 77.549549723789099, + 12.947798511642601 + ], + [ + 77.549554821214898, + 12.947817693813199 + ], + [ + 77.549556347992095, + 12.947823442977199 + ], + [ + 77.549560070039206, + 12.9478374518159 + ], + [ + 77.549572471651601, + 12.947884118180699 + ], + [ + 77.549574669761398, + 12.9478897691464 + ], + [ + 77.549575921740697, + 12.9478929877717 + ], + [ + 77.549577424115895, + 12.947896850122101 + ], + [ + 77.549606168460699, + 12.947970746898299 + ], + [ + 77.549617838499401, + 12.948000369329399 + ], + [ + 77.549618578849504, + 12.9480022467115 + ], + [ + 77.549715435639001, + 12.9481289132145 + ], + [ + 77.549768554222496, + 12.948257137055 + ], + [ + 77.549803139598495, + 12.948386454759 + ], + [ + 77.549813439212599, + 12.9484249680273 + ], + [ + 77.549811967235698, + 12.948474494093199 + ], + [ + 77.549811921434596, + 12.9484760584385 + ], + [ + 77.549811728940696, + 12.948482579722 + ], + [ + 77.549811526055194, + 12.9484896187923 + ], + [ + 77.549811403917403, + 12.9484937298476 + ], + [ + 77.549811393629, + 12.948494167225 + ], + [ + 77.549811251561707, + 12.9484990355785 + ], + [ + 77.549811247147403, + 12.9484991449409 + ], + [ + 77.549811106347093, + 12.9485037756709 + ], + [ + 77.549811098531706, + 12.9485040034204 + ], + [ + 77.549811006690703, + 12.948507108623099 + ], + [ + 77.549811001998805, + 12.9485072812308 + ], + [ + 77.549810953111006, + 12.948508904331399 + ], + [ + 77.549810761889503, + 12.9485153695877 + ], + [ + 77.549810755013397, + 12.948515599135 + ], + [ + 77.549810515005206, + 12.948523697429 + ], + [ + 77.549810490939095, + 12.9485245008444 + ], + [ + 77.549809460837196, + 12.948559241907001 + ], + [ + 77.549809447241401, + 12.948559716358901 + ], + [ + 77.549808258925594, + 12.948599821031401 + ], + [ + 77.549808231309299, + 12.948600818726501 + ], + [ + 77.549807011096505, + 12.9486418624107 + ], + [ + 77.549806614748206, + 12.948646635678699 + ], + [ + 77.549802631199398, + 12.9486945734849 + ], + [ + 77.549793674503405, + 12.9488023578803 + ], + [ + 77.549814545986806, + 12.9489297679561 + ], + [ + 77.5498773472588, + 12.949072864653701 + ], + [ + 77.549878897562095, + 12.9490763973842 + ], + [ + 77.549896468590802, + 12.949116434987101 + ], + [ + 77.549947675591895, + 12.9492830746746 + ], + [ + 77.549990352372902, + 12.949403495291399 + ], + [ + 77.5499740822804, + 12.949501906293399 + ], + [ + 77.549955325706705, + 12.9495822723487 + ], + [ + 77.549959524232705, + 12.9497685707637 + ], + [ + 77.549971002717697, + 12.9498215369319 + ], + [ + 77.5499870874999, + 12.949893477738501 + ], + [ + 77.549990906290901, + 12.949910559198001 + ], + [ + 77.550017662181702, + 12.9499938677308 + ], + [ + 77.5500468108185, + 12.950086187476501 + ], + [ + 77.550052801301703, + 12.9501135507806 + ], + [ + 77.5500697554737, + 12.9501909905803 + ], + [ + 77.550068830869407, + 12.9503265192615 + ], + [ + 77.550060390232105, + 12.950402267016999 + ], + [ + 77.550054127840895, + 12.9504091043038 + ], + [ + 77.550044329035799, + 12.950464537410801 + ], + [ + 77.550032295445305, + 12.9505832348898 + ], + [ + 77.550029256540398, + 12.9507133047591 + ], + [ + 77.550026280603106, + 12.950840781069299 + ], + [ + 77.550029330206698, + 12.9509141576803 + ], + [ + 77.550009918607799, + 12.950930158336501 + ], + [ + 77.5499302004621, + 12.9509603013228 + ], + [ + 77.549915924632202, + 12.950969368203699 + ], + [ + 77.549838105013905, + 12.951018798709301 + ], + [ + 77.5498186589206, + 12.9510314117012 + ], + [ + 77.549808210865095, + 12.951030762356501 + ], + [ + 77.549755864922105, + 12.9510275090596 + ], + [ + 77.549745077649604, + 12.951042295948801 + ], + [ + 77.549689168380993, + 12.9510925337626 + ], + [ + 77.549590221402497, + 12.951156744798499 + ], + [ + 77.549506737741297, + 12.951212899138101 + ], + [ + 77.549366321835706, + 12.951275257335 + ], + [ + 77.549312577216, + 12.9513119219339 + ], + [ + 77.5493046902739, + 12.9513289390867 + ], + [ + 77.549304703203106, + 12.9513289548995 + ], + [ + 77.549323927483002, + 12.9513524667538 + ], + [ + 77.549330708762795, + 12.9513964442831 + ], + [ + 77.549339675964404, + 12.9514291071096 + ], + [ + 77.5493529899734, + 12.9514579563299 + ], + [ + 77.549354397205505, + 12.951461006205101 + ], + [ + 77.5493702882913, + 12.9514954380054 + ], + [ + 77.549392358528706, + 12.951570887147501 + ], + [ + 77.549398055602296, + 12.951621651267301 + ], + [ + 77.549398051579303, + 12.9516216554149 + ], + [ + 77.5493792549604, + 12.9516410339046 + ], + [ + 77.549379276712401, + 12.9516410548173 + ], + [ + 77.549387483045507, + 12.951648944514501 + ], + [ + 77.549399022831096, + 12.951660039043601 + ], + [ + 77.549473696496705, + 12.9521092822451 + ], + [ + 77.549474492271102, + 12.9521140700452 + ], + [ + 77.549502663127797, + 12.9522835444252 + ], + [ + 77.549694793526399, + 12.952255350263901 + ], + [ + 77.549849924746098, + 12.952232585720401 + ], + [ + 77.549976233666897, + 12.952214050507299 + ], + [ + 77.550323754363205, + 12.9521630543345 + ], + [ + 77.550483954308604, + 12.9521395459407 + ], + [ + 77.550718323275206, + 12.9521328292742 + ], + [ + 77.550723384456802, + 12.952132683941899 + ], + [ + 77.550824817073703, + 12.9520865173904 + ], + [ + 77.550898226095697, + 12.952058695440201 + ], + [ + 77.550990108630401, + 12.9520790766252 + ], + [ + 77.551027505328605, + 12.952087371856299 + ], + [ + 77.551053584051402, + 12.952093156987701 + ], + [ + 77.551093260233898, + 12.9521019584085 + ], + [ + 77.551105509746407, + 12.9521063390888 + ], + [ + 77.551105660818706, + 12.9521063931154 + ], + [ + 77.551160865803595, + 12.9521261405696 + ], + [ + 77.551211593179502, + 12.952132419671001 + ], + [ + 77.551282996505904, + 12.9521157167329 + ], + [ + 77.551296643340294, + 12.952112524411 + ], + [ + 77.551322443258002, + 12.952106488620601 + ], + [ + 77.551368911007401, + 12.9520902228347 + ], + [ + 77.551463044510001, + 12.9520057303705 + ], + [ + 77.551469825975801, + 12.951993241320199 + ], + [ + 77.551477194603294, + 12.9519818758471 + ], + [ + 77.551583460911402, + 12.952071181154301 + ], + [ + 77.551590743774497, + 12.952062158295099 + ], + [ + 77.551783861144202, + 12.9518242329689 + ], + [ + 77.552166840652006, + 12.9513474961868 + ], + [ + 77.552308987286906, + 12.9511617863318 + ], + [ + 77.552490349949196, + 12.950924463633999 + ], + [ + 77.552762788427799, + 12.9505683647323 + ], + [ + 77.552945582165094, + 12.950655209279599 + ], + [ + 77.553128478664306, + 12.9508070052779 + ], + [ + 77.553197178665002, + 12.9508255295721 + ], + [ + 77.553265884779904, + 12.9508290138522 + ], + [ + 77.553361835944898, + 12.950703156701 + ], + [ + 77.553534106919201, + 12.950472037225 + ], + [ + 77.554124932231204, + 12.9496670700068 + ], + [ + 77.554332226434497, + 12.9493557393416 + ], + [ + 77.553979730166503, + 12.949113823559101 + ], + [ + 77.554445763231698, + 12.948467224362201 + ], + [ + 77.554504322676493, + 12.948356335200801 + ], + [ + 77.554387158246499, + 12.948351446240199 + ], + [ + 77.554338147774004, + 12.948363153173901 + ], + [ + 77.554163019879098, + 12.9483973802958 + ], + [ + 77.5540112758123, + 12.948430421308 + ], + [ + 77.553779736925904, + 12.9484776310171 + ], + [ + 77.5537727456407, + 12.948479273378201 + ], + [ + 77.553618294905306, + 12.9485155470968 + ], + [ + 77.553449053402204, + 12.9485535404317 + ], + [ + 77.553326407128594, + 12.9485719534223 + ], + [ + 77.553241301462094, + 12.948605146341601 + ], + [ + 77.553226790494193, + 12.9486051205091 + ], + [ + 77.553168918339594, + 12.9484058051878 + ], + [ + 77.553113820797805, + 12.9483656879192 + ], + [ + 77.552929274411298, + 12.9483744450923 + ], + [ + 77.552927756259706, + 12.9483744337681 + ], + [ + 77.552900015828399, + 12.9481176507441 + ], + [ + 77.552875611630597, + 12.947869448311 + ], + [ + 77.552878091782901, + 12.9477214690056 + ], + [ + 77.552878583488294, + 12.9477090614538 + ], + [ + 77.552861543359001, + 12.9475310519621 + ], + [ + 77.552916832195393, + 12.947326093905399 + ], + [ + 77.552992373078297, + 12.9471485435479 + ], + [ + 77.552993869386995, + 12.947120998577001 + ], + [ + 77.552998530351601, + 12.947035177272999 + ], + [ + 77.5530119176413, + 12.9468421396886 + ], + [ + 77.553016488439198, + 12.9467790277986 + ], + [ + 77.553021533346396, + 12.946709377422501 + ], + [ + 77.553088772692703, + 12.9460228347733 + ], + [ + 77.552719323450702, + 12.9460686740545 + ], + [ + 77.552489005614703, + 12.946078279353999 + ], + [ + 77.552433561034107, + 12.944640458093501 + ], + [ + 77.551699543311798, + 12.9447282972606 + ], + [ + 77.551343865546698, + 12.9447591391371 + ], + [ + 77.551255027839105, + 12.9447693976655 + ], + [ + 77.551047556710998, + 12.944793354884199 + ], + [ + 77.550726349452802, + 12.9448304458049 + ], + [ + 77.550310205163399, + 12.9448909011853 + ], + [ + 77.5494746403036, + 12.945012285705801 + ], + [ + 77.549459030125703, + 12.945014245482501 + ], + [ + 77.549452633208702, + 12.9450450233974 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "220", + "group": "vasantapura", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "68", + "ward_name": "68 - Vasantapura", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ವಸಂತಪುರ", + "dig_ward_n": "vasantapura", + "Assembly": "176 - Bangalore South", + "Slno": "68" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.556090292541896, + 12.8959588719219 + ], + [ + 77.556090292541896, + 12.8959588719219 + ], + [ + 77.556207151112403, + 12.8960947865727 + ], + [ + 77.556498539363801, + 12.8958818829844 + ], + [ + 77.556819565993393, + 12.8956969226042 + ], + [ + 77.5576834511577, + 12.895293210323601 + ], + [ + 77.557884050245207, + 12.8951996506427 + ], + [ + 77.558042069024395, + 12.8951259503282 + ], + [ + 77.558325072276006, + 12.8949944387542 + ], + [ + 77.558331438964601, + 12.895009051388501 + ], + [ + 77.558422820001397, + 12.895218786172 + ], + [ + 77.558429143320396, + 12.8952332992304 + ], + [ + 77.558450011463293, + 12.895281195038599 + ], + [ + 77.558462960085393, + 12.895309301548799 + ], + [ + 77.558626515494197, + 12.8952613990421 + ], + [ + 77.558785615692798, + 12.8952233350164 + ], + [ + 77.558858531116201, + 12.895205890286 + ], + [ + 77.558936578314203, + 12.895187217774399 + ], + [ + 77.558953165346395, + 12.8951768915339 + ], + [ + 77.558998138506595, + 12.8951278904253 + ], + [ + 77.559041629134001, + 12.894989686991799 + ], + [ + 77.559076394949301, + 12.8948425343146 + ], + [ + 77.559091279815803, + 12.8947780170347 + ], + [ + 77.559119889975804, + 12.894534931806399 + ], + [ + 77.559121467310305, + 12.894520235122901 + ], + [ + 77.5591186041448, + 12.8944381647529 + ], + [ + 77.559114968785707, + 12.8943339597711 + ], + [ + 77.559137724836503, + 12.894319885390299 + ], + [ + 77.559218125442598, + 12.8942701584257 + ], + [ + 77.559259681715801, + 12.8942444562737 + ], + [ + 77.559539677817298, + 12.8941570168254 + ], + [ + 77.559712037329007, + 12.8941259675426 + ], + [ + 77.559841134563001, + 12.8948214983998 + ], + [ + 77.559846601424496, + 12.8948496780485 + ], + [ + 77.559998155683104, + 12.8956025844794 + ], + [ + 77.559986904275505, + 12.895854534342201 + ], + [ + 77.559925735978396, + 12.8958957888578 + ], + [ + 77.560111788388994, + 12.896135643311601 + ], + [ + 77.560118021126399, + 12.896143973669099 + ], + [ + 77.560146851273203, + 12.8959530338935 + ], + [ + 77.5601650705932, + 12.8957319819598 + ], + [ + 77.560622953287705, + 12.8956156280902 + ], + [ + 77.561192685428693, + 12.8955178086798 + ], + [ + 77.561413606590705, + 12.895459896227401 + ], + [ + 77.561601350053493, + 12.895446680051601 + ], + [ + 77.561674464308297, + 12.895451652539199 + ], + [ + 77.561672379061505, + 12.895441584932 + ], + [ + 77.561774216921705, + 12.8953391778906 + ], + [ + 77.561708935053204, + 12.8950212529715 + ], + [ + 77.561596530435594, + 12.894460315309701 + ], + [ + 77.561477492982306, + 12.8939312988952 + ], + [ + 77.561880136879594, + 12.893838612391299 + ], + [ + 77.561986189398695, + 12.894231228105401 + ], + [ + 77.562402249310907, + 12.8942032599064 + ], + [ + 77.562833349286294, + 12.8941717304986 + ], + [ + 77.563421774822999, + 12.8941561701641 + ], + [ + 77.564449028830595, + 12.894038349176901 + ], + [ + 77.565785486241694, + 12.893888105419901 + ], + [ + 77.567482259616995, + 12.893822478581299 + ], + [ + 77.568160542585204, + 12.8938438790488 + ], + [ + 77.566529344982698, + 12.8923703286045 + ], + [ + 77.565444309719098, + 12.8913411467312 + ], + [ + 77.564313284560399, + 12.8903410942801 + ], + [ + 77.564279370991301, + 12.8903605501912 + ], + [ + 77.564156117017006, + 12.8902207247487 + ], + [ + 77.563927953966797, + 12.890067584039899 + ], + [ + 77.563713533190906, + 12.889828253966 + ], + [ + 77.563525384726404, + 12.8896490805237 + ], + [ + 77.563499326195299, + 12.889624264860499 + ], + [ + 77.563206680931998, + 12.8893455771174 + ], + [ + 77.562693081501806, + 12.8889179450379 + ], + [ + 77.5627220500172, + 12.888891366117001 + ], + [ + 77.562341877329203, + 12.8885625286179 + ], + [ + 77.562088628808496, + 12.888228699366801 + ], + [ + 77.561603309583006, + 12.887489375264 + ], + [ + 77.560660660168793, + 12.886481469664201 + ], + [ + 77.560163607829296, + 12.8859561498437 + ], + [ + 77.559527263913793, + 12.8855547922652 + ], + [ + 77.558938872821699, + 12.8848053652939 + ], + [ + 77.557651490389304, + 12.884108003216401 + ], + [ + 77.557326023832601, + 12.8837739353414 + ], + [ + 77.557280896269802, + 12.883645396020199 + ], + [ + 77.557235696710705, + 12.8835166532026 + ], + [ + 77.557198364653999, + 12.8832839596142 + ], + [ + 77.557160264880494, + 12.883046477017601 + ], + [ + 77.557079003938597, + 12.8827221739823 + ], + [ + 77.556976835028195, + 12.882498473397 + ], + [ + 77.556836317589898, + 12.882337297469199 + ], + [ + 77.556810952493095, + 12.8821888928634 + ], + [ + 77.556891485996999, + 12.8818968461684 + ], + [ + 77.556856470711494, + 12.8816821256196 + ], + [ + 77.556822979846601, + 12.881503171194201 + ], + [ + 77.556774915224494, + 12.8813803153765 + ], + [ + 77.556338578776007, + 12.88146535572 + ], + [ + 77.555496785990002, + 12.8815930367016 + ], + [ + 77.555310390043601, + 12.8815095259971 + ], + [ + 77.5550545456029, + 12.8823539479784 + ], + [ + 77.554750425310303, + 12.883328696123399 + ], + [ + 77.554618451284398, + 12.8837212124948 + ], + [ + 77.553702073580496, + 12.8836994358012 + ], + [ + 77.552904122295303, + 12.8836912914221 + ], + [ + 77.552416458255806, + 12.8837472455621 + ], + [ + 77.551890907962203, + 12.883841113581401 + ], + [ + 77.551627134328101, + 12.883903985297399 + ], + [ + 77.550955134350502, + 12.884027859487 + ], + [ + 77.550896669927596, + 12.8841204465229 + ], + [ + 77.555719587945106, + 12.885560282778201 + ], + [ + 77.555725541580799, + 12.8855620053665 + ], + [ + 77.556292191787094, + 12.8857259338965 + ], + [ + 77.556662635252394, + 12.8859147162496 + ], + [ + 77.556633891433094, + 12.885996345084401 + ], + [ + 77.556334020487995, + 12.886044783831901 + ], + [ + 77.556105989237807, + 12.886144287529 + ], + [ + 77.555572856981598, + 12.886405484769201 + ], + [ + 77.555199403169397, + 12.886507490329301 + ], + [ + 77.553949276828504, + 12.887335292978401 + ], + [ + 77.554323920862402, + 12.8890467255221 + ], + [ + 77.554296027228304, + 12.8890549058601 + ], + [ + 77.554011771904698, + 12.8891365649626 + ], + [ + 77.553707797427407, + 12.8892395901659 + ], + [ + 77.553004309620306, + 12.8893994811949 + ], + [ + 77.552268019702296, + 12.8895841518382 + ], + [ + 77.550931201979296, + 12.8899612656909 + ], + [ + 77.552891578984301, + 12.892249830988501 + ], + [ + 77.553053256014607, + 12.892410949477499 + ], + [ + 77.5521191785176, + 12.8927056366957 + ], + [ + 77.551361776629804, + 12.8928260668749 + ], + [ + 77.551270345573002, + 12.8928299494406 + ], + [ + 77.551222442929699, + 12.8926099521158 + ], + [ + 77.551005020846404, + 12.892704274171001 + ], + [ + 77.550682742692402, + 12.8928314305266 + ], + [ + 77.5506408440732, + 12.8927717323007 + ], + [ + 77.550600425732796, + 12.892750612156901 + ], + [ + 77.550488845376194, + 12.8925019546888 + ], + [ + 77.550277475927402, + 12.892587070498401 + ], + [ + 77.550214951954402, + 12.892611430383599 + ], + [ + 77.550207654799095, + 12.892592302174499 + ], + [ + 77.550119573565496, + 12.8926267242063 + ], + [ + 77.549823712679995, + 12.8927285917439 + ], + [ + 77.549934282964998, + 12.893018859358399 + ], + [ + 77.550072551213006, + 12.8932941112632 + ], + [ + 77.549852030691994, + 12.8933918312194 + ], + [ + 77.549744120506702, + 12.893500968432299 + ], + [ + 77.549677760923103, + 12.8935903590083 + ], + [ + 77.549468820633194, + 12.8935719163588 + ], + [ + 77.549132436530599, + 12.8935660930232 + ], + [ + 77.548962386697298, + 12.893565830320499 + ], + [ + 77.548857865935702, + 12.8934800250685 + ], + [ + 77.548742794184193, + 12.893340066574501 + ], + [ + 77.548434050749705, + 12.893212761611601 + ], + [ + 77.547963283132304, + 12.8931444848773 + ], + [ + 77.546661101569597, + 12.8929556202444 + ], + [ + 77.546709461404006, + 12.8932669326758 + ], + [ + 77.546821830251304, + 12.8932544611614 + ], + [ + 77.547100557531607, + 12.8940379266568 + ], + [ + 77.547160476194506, + 12.894183642657 + ], + [ + 77.547394666895102, + 12.894114449949999 + ], + [ + 77.547669663551105, + 12.8940133221474 + ], + [ + 77.548068852245294, + 12.8949696008416 + ], + [ + 77.548122077404599, + 12.8952570167014 + ], + [ + 77.548185947595599, + 12.8955958835485 + ], + [ + 77.548502668716296, + 12.896267199925299 + ], + [ + 77.548813695548304, + 12.8967956264996 + ], + [ + 77.548932748512996, + 12.8967660134683 + ], + [ + 77.548989647499994, + 12.897609568739201 + ], + [ + 77.549420193171102, + 12.897348413268199 + ], + [ + 77.549422325556606, + 12.897347359815001 + ], + [ + 77.549861863615504, + 12.897066989339301 + ], + [ + 77.550143964491298, + 12.8968657029022 + ], + [ + 77.550700430404703, + 12.8963194415474 + ], + [ + 77.550701897874305, + 12.8963178452638 + ], + [ + 77.550830874613197, + 12.896255077322699 + ], + [ + 77.551101664731902, + 12.8962868426408 + ], + [ + 77.551548048541207, + 12.896477546935699 + ], + [ + 77.551801917299301, + 12.896587849435701 + ], + [ + 77.552120945352797, + 12.896481967036401 + ], + [ + 77.552537224162094, + 12.896277227239 + ], + [ + 77.552610273265401, + 12.896172680586 + ], + [ + 77.552708670420301, + 12.8959040521951 + ], + [ + 77.552645241626195, + 12.8952238783849 + ], + [ + 77.553006457027195, + 12.8949434400167 + ], + [ + 77.553365919294706, + 12.8949376553315 + ], + [ + 77.554042347518205, + 12.895081231602701 + ], + [ + 77.554483376310699, + 12.895113331789799 + ], + [ + 77.555251321316604, + 12.895018224169 + ], + [ + 77.555454179981993, + 12.8951957692967 + ], + [ + 77.555683033882005, + 12.8954463450457 + ], + [ + 77.556090292541896, + 12.8959588719219 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "224", + "group": "KEMPEGOWDA LAYOUT", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "21", + "ward_name": "21 - Dooravaninagar", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ದೂರವಾಣಿನಗರ", + "dig_ward_n": "KEMPEGOWDA LAYOUT", + "Assembly": "151 - K.R. Pura", + "Slno": "21" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.663504332790097, + 12.9994482143174 + ], + [ + 77.663469060883102, + 12.999926375844201 + ], + [ + 77.663449230115702, + 13.000195213449 + ], + [ + 77.663442563678402, + 13.0002855873438 + ], + [ + 77.663297277298099, + 13.002255175344301 + ], + [ + 77.663301931300694, + 13.002691219858299 + ], + [ + 77.663304291195999, + 13.0029123179562 + ], + [ + 77.663268841207596, + 13.0034142562195 + ], + [ + 77.663246268329999, + 13.003733867083 + ], + [ + 77.663194153773802, + 13.0044803328454 + ], + [ + 77.663188833408498, + 13.004556539426099 + ], + [ + 77.663169383527503, + 13.004689194674601 + ], + [ + 77.663163474480697, + 13.0047294994427 + ], + [ + 77.663135869207395, + 13.004917778531301 + ], + [ + 77.663127647328196, + 13.004973855042801 + ], + [ + 77.663070787029497, + 13.005310950607001 + ], + [ + 77.663036673229797, + 13.0055134337723 + ], + [ + 77.662957090344094, + 13.005987399985999 + ], + [ + 77.662956011190602, + 13.0059941864713 + ], + [ + 77.662725171837707, + 13.0072940466688 + ], + [ + 77.662707972210001, + 13.007391206418401 + ], + [ + 77.662664892798404, + 13.007634565089701 + ], + [ + 77.662602563843294, + 13.007998818494 + ], + [ + 77.6625839476702, + 13.0081065479736 + ], + [ + 77.662568941088594, + 13.008193392016899 + ], + [ + 77.662562245582194, + 13.008375267565199 + ], + [ + 77.662548953261606, + 13.008743472186501 + ], + [ + 77.662532027034899, + 13.009212340814701 + ], + [ + 77.662521439751202, + 13.0095150844425 + ], + [ + 77.662504491809003, + 13.009977115479201 + ], + [ + 77.662493580804906, + 13.010067020628201 + ], + [ + 77.662474853910794, + 13.0102213344568 + ], + [ + 77.662450982626098, + 13.0104124202014 + ], + [ + 77.662418209464406, + 13.010794438026201 + ], + [ + 77.662363370733303, + 13.011433634120699 + ], + [ + 77.6623398608141, + 13.0117076641253 + ], + [ + 77.662306931625494, + 13.0122387886535 + ], + [ + 77.662297616993001, + 13.012389027342101 + ], + [ + 77.662327773062799, + 13.0124090439726 + ], + [ + 77.662310610850696, + 13.012689270410201 + ], + [ + 77.662289845200505, + 13.0130632603357 + ], + [ + 77.662282630701299, + 13.0131965841157 + ], + [ + 77.662282666862495, + 13.0131999705455 + ], + [ + 77.662279538348798, + 13.0132567643318 + ], + [ + 77.662278984835396, + 13.0132668142104 + ], + [ + 77.662650108845895, + 13.013150507905999 + ], + [ + 77.663089655058599, + 13.0130513011205 + ], + [ + 77.663110752718495, + 13.0132967381137 + ], + [ + 77.663536333893703, + 13.013360866784 + ], + [ + 77.663732829423495, + 13.013503908266999 + ], + [ + 77.663944425431495, + 13.0137470962751 + ], + [ + 77.664358346848502, + 13.013975919030299 + ], + [ + 77.664579882254699, + 13.0140983464916 + ], + [ + 77.665120603542306, + 13.0145385023646 + ], + [ + 77.665378575693097, + 13.0147206860868 + ], + [ + 77.665503918094004, + 13.014802304394401 + ], + [ + 77.665696304104699, + 13.014907242218399 + ], + [ + 77.665932414208697, + 13.015001977754 + ], + [ + 77.666118970340307, + 13.0150894259406 + ], + [ + 77.666563498622494, + 13.015249747616201 + ], + [ + 77.666904546550597, + 13.015354685440199 + ], + [ + 77.667006569435102, + 13.0153342808633 + ], + [ + 77.667051750998198, + 13.015287641830399 + ], + [ + 77.668193678569295, + 13.0151280488898 + ], + [ + 77.668174731462599, + 13.014972828358401 + ], + [ + 77.669860295260804, + 13.0148292675853 + ], + [ + 77.669832354907001, + 13.014488566185101 + ], + [ + 77.669898025888898, + 13.014484703186101 + ], + [ + 77.6699456695424, + 13.014464100525201 + ], + [ + 77.669882157307498, + 13.013861507652701 + ], + [ + 77.669736410329705, + 13.011791900567999 + ], + [ + 77.669577584746307, + 13.011802096135201 + ], + [ + 77.669577546123904, + 13.0118021028565 + ], + [ + 77.669434193558203, + 13.010967031851401 + ], + [ + 77.669311467999805, + 13.010789518097299 + ], + [ + 77.669274212026707, + 13.010627345037999 + ], + [ + 77.669241339109305, + 13.010487087256999 + ], + [ + 77.669173934268102, + 13.0103532802878 + ], + [ + 77.669153110927695, + 13.0101877607045 + ], + [ + 77.669131220600406, + 13.010189048370799 + ], + [ + 77.669115124771494, + 13.010057706407 + ], + [ + 77.669256124232604, + 13.010034528413399 + ], + [ + 77.669207370427898, + 13.0098071657482 + ], + [ + 77.669151486468294, + 13.0094159780309 + ], + [ + 77.669115326259103, + 13.0091913464285 + ], + [ + 77.669115326259103, + 13.0089963004518 + ], + [ + 77.669093410980807, + 13.0088932986438 + ], + [ + 77.669054174941706, + 13.0088014557357 + ], + [ + 77.669040570542506, + 13.0086918852016 + ], + [ + 77.669012324451202, + 13.0084922490512 + ], + [ + 77.669494460573404, + 13.0083629489093 + ], + [ + 77.669634718354402, + 13.008355278562 + ], + [ + 77.6696971768975, + 13.008358565853699 + ], + [ + 77.669873594887704, + 13.008322405644501 + ], + [ + 77.669811136344606, + 13.008050656193801 + ], + [ + 77.669776071899406, + 13.0078895788984 + ], + [ + 77.669758539676707, + 13.0078227372997 + ], + [ + 77.669723475231507, + 13.007659468476399 + ], + [ + 77.670139865518905, + 13.0076353616703 + ], + [ + 77.670407231913899, + 13.0076298828508 + ], + [ + 77.670834579840502, + 13.007601392989001 + ], + [ + 77.670808281506595, + 13.0073910063175 + ], + [ + 77.6706987051151, + 13.0070535110319 + ], + [ + 77.670712152914305, + 13.0069418758496 + ], + [ + 77.670706375462302, + 13.006435500184301 + ], + [ + 77.670719524629305, + 13.0060760896204 + ], + [ + 77.6707260992128, + 13.005887618227201 + ], + [ + 77.670728290740598, + 13.0057889994749 + ], + [ + 77.670700575237404, + 13.0056621323568 + ], + [ + 77.670700563917606, + 13.005661935535899 + ], + [ + 77.670663221594594, + 13.0055511962331 + ], + [ + 77.670603373654401, + 13.005408221514701 + ], + [ + 77.670585841431702, + 13.0053550769649 + ], + [ + 77.670512564636098, + 13.005162321007001 + ], + [ + 77.670481660644697, + 13.005101800690399 + ], + [ + 77.670415023912994, + 13.0049926709705 + ], + [ + 77.670321024272297, + 13.004836863346799 + ], + [ + 77.670245051959895, + 13.004709384381901 + ], + [ + 77.670207387720296, + 13.0044489538704 + ], + [ + 77.6701819563106, + 13.0043527008136 + ], + [ + 77.670120148327698, + 13.0040835785545 + ], + [ + 77.670086669003595, + 13.003754901728501 + ], + [ + 77.670212538385499, + 13.0037536140622 + ], + [ + 77.670628478100397, + 13.003668602411899 + ], + [ + 77.6708476376009, + 13.0036351962778 + ], + [ + 77.670820745578894, + 13.003400037986401 + ], + [ + 77.670825539786307, + 13.0030810929017 + ], + [ + 77.6707313040896, + 13.003077805609999 + ], + [ + 77.670489709514399, + 13.003045034132199 + ], + [ + 77.670134997276804, + 13.0030134080415 + ], + [ + 77.670113782092301, + 13.0030132893757 + ], + [ + 77.669819076439097, + 13.003011639368999 + ], + [ + 77.669500940153895, + 13.003007742144099 + ], + [ + 77.669156691344895, + 13.0030098682473 + ], + [ + 77.669152308289199, + 13.0032213506828 + ], + [ + 77.668868505435398, + 13.0032410744332 + ], + [ + 77.668547446608599, + 13.0032783304063 + ], + [ + 77.668133247848999, + 13.0033791406864 + ], + [ + 77.668014905346197, + 13.003384619506001 + ], + [ + 77.667909712010498, + 13.0031994354045 + ], + [ + 77.667865881453906, + 13.0031183488748 + ], + [ + 77.6677869864521, + 13.0030021978999 + ], + [ + 77.667725623672894, + 13.002866323174599 + ], + [ + 77.667701248826802, + 13.002798260672799 + ], + [ + 77.667668501619801, + 13.0026991653585 + ], + [ + 77.667643441379397, + 13.002441166775901 + ], + [ + 77.6676313879763, + 13.0023513141349 + ], + [ + 77.667593036239296, + 13.0020664155172 + ], + [ + 77.667547014154906, + 13.001866986484799 + ], + [ + 77.667533864987902, + 13.001465936892201 + ], + [ + 77.667544822627093, + 13.0010561211883 + ], + [ + 77.6675886531836, + 13.000716434374899 + ], + [ + 77.667599610822805, + 13.0003723645059 + ], + [ + 77.667623717628899, + 13.0001312964447 + ], + [ + 77.667645632907195, + 12.999703948518199 + ], + [ + 77.667591763591204, + 12.999630685639399 + ], + [ + 77.667470310680898, + 12.999592180599 + ], + [ + 77.667023239003896, + 12.999392751566599 + ], + [ + 77.667134798443797, + 12.9992032318744 + ], + [ + 77.667102134005702, + 12.999142917394201 + ], + [ + 77.667036388170899, + 12.999105661421099 + ], + [ + 77.666626750283598, + 12.9988979318366 + ], + [ + 77.665957630899499, + 12.9985687154225 + ], + [ + 77.665538218381101, + 12.9983623573504 + ], + [ + 77.665504931972094, + 12.9983459792721 + ], + [ + 77.664391214081903, + 12.9977556802788 + ], + [ + 77.664044245011496, + 12.997526281713601 + ], + [ + 77.663866542351997, + 12.9978136996976 + ], + [ + 77.663799656048397, + 12.997922247471999 + ], + [ + 77.663592042652496, + 12.9982591764372 + ], + [ + 77.663571365961701, + 12.998539484894501 + ], + [ + 77.663504332790097, + 12.9994482143174 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "221", + "group": "Ashoka Nagara", + "Corporatio": "West", + "ac_no": "170", + "ac": "Basavanagudi", + "corporat_1": "5", + "ward_id": "86", + "ward_name": "86 - Ashoka Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಬಸವನಗುಡಿ", + "ward_name_": "ಅಶೋಕ ನಗರ", + "dig_ward_n": "Ashoka Nagara", + "Assembly": "170 - Basavanagudi", + "Slno": "86" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.549057531379205, + 12.9387807456778 + ], + [ + 77.549512292915793, + 12.938971233307401 + ], + [ + 77.549422421924902, + 12.9391860195985 + ], + [ + 77.549418684087996, + 12.939605903276901 + ], + [ + 77.5486486896868, + 12.939896208609399 + ], + [ + 77.548758332902494, + 12.9403721598412 + ], + [ + 77.548346777753295, + 12.940473960168299 + ], + [ + 77.548339564774096, + 12.940476069803101 + ], + [ + 77.548012335186399, + 12.9405387364551 + ], + [ + 77.548005365188004, + 12.9405410090407 + ], + [ + 77.547743834380896, + 12.9405622109817 + ], + [ + 77.5474958272343, + 12.9406191363763 + ], + [ + 77.547368840631904, + 12.940641891582599 + ], + [ + 77.547256407725001, + 12.940643620888 + ], + [ + 77.546873008840706, + 12.9406495155123 + ], + [ + 77.546857125794006, + 12.9406497601362 + ], + [ + 77.546519388438696, + 12.940654493474099 + ], + [ + 77.546577105379598, + 12.9408662000998 + ], + [ + 77.546616475011902, + 12.9409992006292 + ], + [ + 77.546302574059794, + 12.941135924514199 + ], + [ + 77.546434644296795, + 12.941416262281599 + ], + [ + 77.546803444204201, + 12.941326554196101 + ], + [ + 77.546894398235395, + 12.941628073039301 + ], + [ + 77.546384806471494, + 12.9417763405696 + ], + [ + 77.546328738918007, + 12.941686632484 + ], + [ + 77.546023609893794, + 12.9417563680539 + ], + [ + 77.546023482237999, + 12.9417564054395 + ], + [ + 77.5463978889007, + 12.942725751142 + ], + [ + 77.5464115943862, + 12.942763129486501 + ], + [ + 77.546656704895597, + 12.9426917271141 + ], + [ + 77.546675868812301, + 12.9426861931474 + ], + [ + 77.546810541596599, + 12.942647309271001 + ], + [ + 77.547011329070799, + 12.9426050146436 + ], + [ + 77.547116342441399, + 12.94258289427 + ], + [ + 77.547128057977403, + 12.942580426247901 + ], + [ + 77.547303003297799, + 12.9425435752766 + ], + [ + 77.547315329152894, + 12.942540979313801 + ], + [ + 77.547540819549695, + 12.9424934810392 + ], + [ + 77.547575163705702, + 12.942486246482201 + ], + [ + 77.547643140450504, + 12.9424728205866 + ], + [ + 77.547984241171605, + 12.942405454000699 + ], + [ + 77.548082015789007, + 12.942386017758 + ], + [ + 77.548083119823104, + 12.9423857982641 + ], + [ + 77.548239030417804, + 12.9423548065623 + ], + [ + 77.5483726295531, + 12.9423282502979 + ], + [ + 77.548413441849604, + 12.942322204600799 + ], + [ + 77.548456605292102, + 12.9423153878395 + ], + [ + 77.548456725772297, + 12.9423153694957 + ], + [ + 77.548715477418398, + 12.942274510777899 + ], + [ + 77.548725563135804, + 12.942272917822001 + ], + [ + 77.548728682567798, + 12.942272425647401 + ], + [ + 77.548817509912197, + 12.9422583980502 + ], + [ + 77.5488981972114, + 12.942245447453701 + ], + [ + 77.549027297780398, + 12.9422247260802 + ], + [ + 77.549116454289305, + 12.942217078149501 + ], + [ + 77.549314302802799, + 12.942198203132801 + ], + [ + 77.549518482392102, + 12.9421792660428 + ], + [ + 77.549542659331095, + 12.942179029553101 + ], + [ + 77.549760707371405, + 12.9421677182882 + ], + [ + 77.549762670163005, + 12.942167616871901 + ], + [ + 77.549778006976794, + 12.942166821764999 + ], + [ + 77.549837837942704, + 12.9421637194048 + ], + [ + 77.549929330445195, + 12.9421594363436 + ], + [ + 77.549999500319203, + 12.9421531022944 + ], + [ + 77.550000203209606, + 12.942165518960699 + ], + [ + 77.550005256199199, + 12.942209513428701 + ], + [ + 77.5500127725292, + 12.942269294427801 + ], + [ + 77.550015867473903, + 12.9423471879764 + ], + [ + 77.550065266930901, + 12.9423930072295 + ], + [ + 77.550067458719298, + 12.942394681588601 + ], + [ + 77.550119763821996, + 12.942434654990899 + ], + [ + 77.550164483519296, + 12.942468830981101 + ], + [ + 77.550243078578902, + 12.9425550204343 + ], + [ + 77.550258838363405, + 12.942627619402399 + ], + [ + 77.550364668310394, + 12.9426718639934 + ], + [ + 77.550664716864205, + 12.942630693518799 + ], + [ + 77.550665875667093, + 12.942634952854 + ], + [ + 77.550792962121704, + 12.9430859851731 + ], + [ + 77.551101956638703, + 12.943046114912899 + ], + [ + 77.550833611097204, + 12.942090007382699 + ], + [ + 77.551037767246299, + 12.942070297400999 + ], + [ + 77.551043881307294, + 12.942069633143801 + ], + [ + 77.551213135424106, + 12.9420572199133 + ], + [ + 77.551478707478694, + 12.9420498392547 + ], + [ + 77.551485910096901, + 12.942049517585801 + ], + [ + 77.551752759508403, + 12.9420375950831 + ], + [ + 77.551976745647806, + 12.9420150832785 + ], + [ + 77.552408953607795, + 12.941982077342301 + ], + [ + 77.552547634254594, + 12.941954513852 + ], + [ + 77.552618027282307, + 12.941938727619201 + ], + [ + 77.552690552707901, + 12.941934164082401 + ], + [ + 77.552913035258101, + 12.941927665650899 + ], + [ + 77.553070577238302, + 12.941913919512 + ], + [ + 77.553431113253197, + 12.941898435929801 + ], + [ + 77.553512332224898, + 12.941898046828999 + ], + [ + 77.553669939142907, + 12.941897291488599 + ], + [ + 77.553786950566206, + 12.9419100891119 + ], + [ + 77.553855046792904, + 12.9419195958061 + ], + [ + 77.553858947730006, + 12.941920140318 + ], + [ + 77.553972225494803, + 12.941915445463399 + ], + [ + 77.554286521391006, + 12.9419063892758 + ], + [ + 77.554691729763604, + 12.941869988321599 + ], + [ + 77.554734541689498, + 12.9418661418825 + ], + [ + 77.555021234369207, + 12.941862622304599 + ], + [ + 77.554952707360201, + 12.941115677897701 + ], + [ + 77.554935407140803, + 12.940948519148501 + ], + [ + 77.554911984839705, + 12.9407546463106 + ], + [ + 77.554898095959004, + 12.940635262591901 + ], + [ + 77.554883529939801, + 12.9404972389604 + ], + [ + 77.5548482807949, + 12.940194958187799 + ], + [ + 77.554800252942101, + 12.9397866675492 + ], + [ + 77.554788711658901, + 12.939706659857 + ], + [ + 77.554821895419593, + 12.9397032258428 + ], + [ + 77.555164417360302, + 12.9396780099833 + ], + [ + 77.5551746831038, + 12.9397404858206 + ], + [ + 77.555189258893094, + 12.9398794651882 + ], + [ + 77.555206730631696, + 12.940015547675101 + ], + [ + 77.555241468721306, + 12.940267635214299 + ], + [ + 77.555255679327701, + 12.9403707615635 + ], + [ + 77.5552815426107, + 12.940612895902101 + ], + [ + 77.555301572137395, + 12.940856521205999 + ], + [ + 77.555325245104498, + 12.941011018464501 + ], + [ + 77.556002009822805, + 12.940926236551601 + ], + [ + 77.5560575947584, + 12.9409271099411 + ], + [ + 77.556322033233698, + 12.940904437383701 + ], + [ + 77.556614062317706, + 12.9408726219808 + ], + [ + 77.556625846786702, + 12.9408713382262 + ], + [ + 77.556778855023694, + 12.940848767897 + ], + [ + 77.556782074057907, + 12.940848292724199 + ], + [ + 77.556969985409793, + 12.940825413368501 + ], + [ + 77.557074175860393, + 12.940813874147199 + ], + [ + 77.557323485163906, + 12.9407894363925 + ], + [ + 77.557336264273701, + 12.9408954449974 + ], + [ + 77.557364785785396, + 12.941111258375001 + ], + [ + 77.557510910340397, + 12.941101219269401 + ], + [ + 77.557677386522101, + 12.941079506452899 + ], + [ + 77.557765971663301, + 12.9410671632969 + ], + [ + 77.557806499253104, + 12.941063254777101 + ], + [ + 77.5577224405545, + 12.940524797180201 + ], + [ + 77.557805262255897, + 12.9405200517743 + ], + [ + 77.5583175956384, + 12.940477733893101 + ], + [ + 77.558726704175697, + 12.940445989577899 + ], + [ + 77.558772816474601, + 12.9404423703281 + ], + [ + 77.559200096454404, + 12.940408833342801 + ], + [ + 77.559848027752494, + 12.9404005051043 + ], + [ + 77.559844289915503, + 12.940064099783401 + ], + [ + 77.560127119574304, + 12.9400603619465 + ], + [ + 77.560079773640197, + 12.939266694578199 + ], + [ + 77.560786684613007, + 12.939219717356201 + ], + [ + 77.560885970672899, + 12.9392053555466 + ], + [ + 77.561258104275396, + 12.9391806645902 + ], + [ + 77.561528568905103, + 12.9391637543358 + ], + [ + 77.5615484188056, + 12.939162513096401 + ], + [ + 77.562053682630605, + 12.939191969825 + ], + [ + 77.562451627950097, + 12.939212919129 + ], + [ + 77.562868116062901, + 12.939235060585199 + ], + [ + 77.562955656394607, + 12.9391175276045 + ], + [ + 77.563142155514498, + 12.938861355717099 + ], + [ + 77.563403075971806, + 12.938868432041099 + ], + [ + 77.563627410582598, + 12.938880568546899 + ], + [ + 77.563735935089895, + 12.9388878673688 + ], + [ + 77.564166942546805, + 12.938920944665099 + ], + [ + 77.5644335749123, + 12.938924682502 + ], + [ + 77.564530758671694, + 12.938929666284601 + ], + [ + 77.564538665302194, + 12.938601343850401 + ], + [ + 77.564542176457095, + 12.9384716137411 + ], + [ + 77.564527799550007, + 12.938095505683201 + ], + [ + 77.564528439983206, + 12.9380718387836 + ], + [ + 77.564530267848298, + 12.9380043118876 + ], + [ + 77.564517713333302, + 12.937644154373499 + ], + [ + 77.564496679639404, + 12.9374471513333 + ], + [ + 77.564249792166393, + 12.9369166832973 + ], + [ + 77.564218726992607, + 12.9368768934276 + ], + [ + 77.564043352009406, + 12.9366522661664 + ], + [ + 77.563967250735999, + 12.936623692819699 + ], + [ + 77.563838637736296, + 12.936623277921701 + ], + [ + 77.563706831859406, + 12.936212012379199 + ], + [ + 77.563652281033796, + 12.9360418008806 + ], + [ + 77.563609054118103, + 12.935890066643401 + ], + [ + 77.563511403800305, + 12.9355472967032 + ], + [ + 77.563202196231401, + 12.934825008667399 + ], + [ + 77.5631501593937, + 12.934690456958901 + ], + [ + 77.562899928885003, + 12.934043437340099 + ], + [ + 77.562680407603494, + 12.9334380711277 + ], + [ + 77.562503643216303, + 12.9338114197498 + ], + [ + 77.562638750913493, + 12.9339640340821 + ], + [ + 77.562722891558096, + 12.93413775938 + ], + [ + 77.562749056416394, + 12.934248648541301 + ], + [ + 77.562274148661999, + 12.934388546230799 + ], + [ + 77.562207182314907, + 12.934241515992801 + ], + [ + 77.562184403552706, + 12.934191502134199 + ], + [ + 77.562157919442896, + 12.9341755082239 + ], + [ + 77.562085123136299, + 12.934107233711901 + ], + [ + 77.5620607962218, + 12.934087632774 + ], + [ + 77.561945385126705, + 12.9338170506481 + ], + [ + 77.561929175066894, + 12.9337569709484 + ], + [ + 77.561873388592701, + 12.933544295724399 + ], + [ + 77.561797309695095, + 12.933169036650201 + ], + [ + 77.561731274576502, + 12.9329298150887 + ], + [ + 77.561693896207899, + 12.9327715799933 + ], + [ + 77.561458412483304, + 12.932924831306201 + ], + [ + 77.561092104467093, + 12.9330132934461 + ], + [ + 77.560855374796802, + 12.9330674920812 + ], + [ + 77.560776880221894, + 12.933071229918101 + ], + [ + 77.560677204571306, + 12.933080574510299 + ], + [ + 77.560563048796993, + 12.933060238053301 + ], + [ + 77.560519113721398, + 12.933053497727199 + ], + [ + 77.560322489784298, + 12.933010010199601 + ], + [ + 77.560252906954503, + 12.9329975461202 + ], + [ + 77.5601919021437, + 12.932989778922799 + ], + [ + 77.560087193923906, + 12.932997977469 + ], + [ + 77.5600701485549, + 12.9329993400549 + ], + [ + 77.560110450904801, + 12.9330418325534 + ], + [ + 77.560120564398105, + 12.933077589752701 + ], + [ + 77.560138706207198, + 12.933183784003599 + ], + [ + 77.560161552122196, + 12.9332732000187 + ], + [ + 77.560198227029304, + 12.9334043131268 + ], + [ + 77.5602203535489, + 12.9335427388841 + ], + [ + 77.5602626350029, + 12.933865028402799 + ], + [ + 77.560279390924094, + 12.9339429841695 + ], + [ + 77.560305587613399, + 12.9341220066045 + ], + [ + 77.560327800621593, + 12.9342687984054 + ], + [ + 77.560338304525004, + 12.9344025580251 + ], + [ + 77.560346827851006, + 12.9345213974958 + ], + [ + 77.560324908474897, + 12.934566763032301 + ], + [ + 77.560246193645497, + 12.9345487989848 + ], + [ + 77.5600343329005, + 12.9345048638399 + ], + [ + 77.559893132774206, + 12.934459636832599 + ], + [ + 77.559575276927902, + 12.9343575786858 + ], + [ + 77.5593938387794, + 12.9343097585535 + ], + [ + 77.559344231869105, + 12.9342845482948 + ], + [ + 77.559324694605806, + 12.934280557009901 + ], + [ + 77.559477436797394, + 12.9350481562795 + ], + [ + 77.5591472612046, + 12.9351216670719 + ], + [ + 77.558872218705702, + 12.9351814724623 + ], + [ + 77.558935450446995, + 12.9355839129017 + ], + [ + 77.559046962581206, + 12.935932154706199 + ], + [ + 77.559497994900298, + 12.9358611358051 + ], + [ + 77.559652950707701, + 12.935817250475701 + ], + [ + 77.559774771538102, + 12.9358141420416 + ], + [ + 77.559818812202906, + 12.935821822680101 + ], + [ + 77.559821905221, + 12.9359029066582 + ], + [ + 77.559786750487902, + 12.936080554735399 + ], + [ + 77.559933452899102, + 12.936177605995899 + ], + [ + 77.559831908329997, + 12.936279150564999 + ], + [ + 77.559800264482007, + 12.936330219390699 + ], + [ + 77.559819736237799, + 12.936592889562201 + ], + [ + 77.559821255128298, + 12.936610131616501 + ], + [ + 77.559851160204403, + 12.936949707455801 + ], + [ + 77.559871251671098, + 12.937199068985899 + ], + [ + 77.559892162795606, + 12.937528739929901 + ], + [ + 77.559892542456097, + 12.9375357063858 + ], + [ + 77.559908350696801, + 12.937825469245601 + ], + [ + 77.559937190735994, + 12.9379773744628 + ], + [ + 77.559992012343898, + 12.938267679795301 + ], + [ + 77.559785378730396, + 12.9382411725979 + ], + [ + 77.559219151589303, + 12.9382080072187 + ], + [ + 77.558388123699004, + 12.9381616620168 + ], + [ + 77.557846752419096, + 12.938128248775399 + ], + [ + 77.557684954983202, + 12.938125428979401 + ], + [ + 77.557425550789702, + 12.938120906737399 + ], + [ + 77.557301806949297, + 12.938118298873301 + ], + [ + 77.557269665382805, + 12.9379518037415 + ], + [ + 77.557203622985, + 12.9379736051153 + ], + [ + 77.556592866180395, + 12.9382335972844 + ], + [ + 77.556435192515806, + 12.9382580912691 + ], + [ + 77.556305328369902, + 12.9382851809867 + ], + [ + 77.556034569308494, + 12.938347357407499 + ], + [ + 77.556028134667102, + 12.9383482769725 + ], + [ + 77.555808250285807, + 12.9383796947838 + ], + [ + 77.555060559528201, + 12.9384371284014 + ], + [ + 77.554285581344502, + 12.938506901356799 + ], + [ + 77.554051343565504, + 12.938541787834501 + ], + [ + 77.553545701849799, + 12.9385663038823 + ], + [ + 77.553530351027604, + 12.9385675058645 + ], + [ + 77.553259594217806, + 12.938588700280601 + ], + [ + 77.553181751386305, + 12.9385945069093 + ], + [ + 77.553104004931996, + 12.9386008794117 + ], + [ + 77.552811745200799, + 12.938654962206 + ], + [ + 77.552477397598096, + 12.938803566912901 + ], + [ + 77.552473358663903, + 12.938804753854299 + ], + [ + 77.552330535453706, + 12.9388466968459 + ], + [ + 77.552293410153695, + 12.9388554561831 + ], + [ + 77.552268211467407, + 12.9388594341759 + ], + [ + 77.552109392848905, + 12.938884505167 + ], + [ + 77.552117558329897, + 12.938927402994 + ], + [ + 77.552059053388106, + 12.938941697507 + ], + [ + 77.5520223917257, + 12.9389312997465 + ], + [ + 77.551976444130204, + 12.938966409992799 + ], + [ + 77.551875703272003, + 12.9390056433224 + ], + [ + 77.551756638064901, + 12.939040273941799 + ], + [ + 77.551616738575703, + 12.9390631574061 + ], + [ + 77.551502242435404, + 12.939067863842499 + ], + [ + 77.551355727625705, + 12.9390394174634 + ], + [ + 77.551168724565599, + 12.938983877497501 + ], + [ + 77.5510303615754, + 12.9389182991784 + ], + [ + 77.550883154058994, + 12.938821732655899 + ], + [ + 77.550733801324697, + 12.9387538711093 + ], + [ + 77.550383254657604, + 12.938505111926499 + ], + [ + 77.550061933730106, + 12.938254391270799 + ], + [ + 77.549769812710295, + 12.9379990831443 + ], + [ + 77.549730189649495, + 12.937985128126799 + ], + [ + 77.549489214876104, + 12.938158160919601 + ], + [ + 77.549390530059895, + 12.9383022751546 + ], + [ + 77.549319834718204, + 12.9383961932035 + ], + [ + 77.549179890032093, + 12.9385825804286 + ], + [ + 77.549057531379205, + 12.9387807456778 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "228", + "group": "Kodigehalli", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "17", + "ward_name": "17 - Kodigehalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ಕೊಡಿಗೆಹಳ್ಳಿ", + "dig_ward_n": "Kodigehalli", + "Assembly": "152 - Byatarayanapura", + "Slno": "17" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.5740491143154, + 13.047307663028 + ], + [ + 77.573925887309898, + 13.0473011050723 + ], + [ + 77.573387806789995, + 13.0472724662293 + ], + [ + 77.572761169986407, + 13.0472391128441 + ], + [ + 77.572690729229805, + 13.0472353630184 + ], + [ + 77.572611109975, + 13.0472311253424 + ], + [ + 77.572462441266097, + 13.0472235693145 + ], + [ + 77.572103331040793, + 13.047200829065201 + ], + [ + 77.571670398702196, + 13.047173413253701 + ], + [ + 77.571561400497302, + 13.047166510325001 + ], + [ + 77.571308755406605, + 13.047150510943601 + ], + [ + 77.570901111466, + 13.0471246945165 + ], + [ + 77.570845026815206, + 13.0471211430075 + ], + [ + 77.570165845773801, + 13.047078129840999 + ], + [ + 77.570126796813994, + 13.047071018287401 + ], + [ + 77.569918881613006, + 13.047033152410499 + ], + [ + 77.569431241367795, + 13.0469386171061 + ], + [ + 77.569114223058605, + 13.0468901941372 + ], + [ + 77.569028604751097, + 13.0468771159503 + ], + [ + 77.568481571577294, + 13.046828495373701 + ], + [ + 77.567954349322093, + 13.0467816338173 + ], + [ + 77.567260566350498, + 13.046719965973899 + ], + [ + 77.566773214059793, + 13.0466766462041 + ], + [ + 77.566662803541007, + 13.046666831596401 + ], + [ + 77.566629223048196, + 13.046662690878399 + ], + [ + 77.566487629520097, + 13.0466452297951 + ], + [ + 77.566128809580306, + 13.046600982349499 + ], + [ + 77.565750080471105, + 13.0465121361299 + ], + [ + 77.565465014322001, + 13.046401798020399 + ], + [ + 77.565439944510302, + 13.046392094227 + ], + [ + 77.565360345079597, + 13.046361284511301 + ], + [ + 77.565308688459695, + 13.0463356906657 + ], + [ + 77.565193089768499, + 13.046278415345 + ], + [ + 77.564941666536598, + 13.046153844320999 + ], + [ + 77.564929070788494, + 13.0461476034931 + ], + [ + 77.564569747124494, + 13.045893342792301 + ], + [ + 77.564508421259802, + 13.0458499481662 + ], + [ + 77.564466482233001, + 13.0458202717729 + ], + [ + 77.564406605425305, + 13.0457779026236 + ], + [ + 77.564385323091699, + 13.0457628425591 + ], + [ + 77.564356537606599, + 13.045742474107399 + ], + [ + 77.564155063421296, + 13.0455999072399 + ], + [ + 77.564145266533401, + 13.045592975493999 + ], + [ + 77.564583352420598, + 13.046420568639499 + ], + [ + 77.5646545087519, + 13.0465549903997 + ], + [ + 77.564706345574905, + 13.046652914568901 + ], + [ + 77.565101517291495, + 13.0473994296204 + ], + [ + 77.566438877519602, + 13.0497293018303 + ], + [ + 77.567028119769503, + 13.0507558260304 + ], + [ + 77.567975630196301, + 13.0523129916917 + ], + [ + 77.568952379455098, + 13.0539181801654 + ], + [ + 77.569038323404499, + 13.0540594194155 + ], + [ + 77.569289155081094, + 13.054533494966901 + ], + [ + 77.569290591076296, + 13.0545361946497 + ], + [ + 77.569394294428903, + 13.054731208316401 + ], + [ + 77.569559895580895, + 13.055030214959199 + ], + [ + 77.571558037719896, + 13.0586379454423 + ], + [ + 77.571565093073204, + 13.0586506842865 + ], + [ + 77.571982611935397, + 13.059404513521899 + ], + [ + 77.573034737569401, + 13.060779698223101 + ], + [ + 77.573262749863503, + 13.060988365793399 + ], + [ + 77.573913105992403, + 13.0615835425893 + ], + [ + 77.574140709453502, + 13.0617918337384 + ], + [ + 77.575783790188098, + 13.0628864899902 + ], + [ + 77.576061204555899, + 13.0618471397385 + ], + [ + 77.576423633537203, + 13.0608710130979 + ], + [ + 77.576535120520802, + 13.060278304533799 + ], + [ + 77.5766612980551, + 13.059981641865599 + ], + [ + 77.576999921873494, + 13.0598463749741 + ], + [ + 77.577547455951702, + 13.0597554035319 + ], + [ + 77.578925197680405, + 13.059402145074101 + ], + [ + 77.580709553380302, + 13.0589581017901 + ], + [ + 77.581047319124295, + 13.058883479842599 + ], + [ + 77.5840282197493, + 13.0585739815132 + ], + [ + 77.583867268779699, + 13.058142863062301 + ], + [ + 77.581969523792694, + 13.0583957304205 + ], + [ + 77.581633799073003, + 13.057463696693601 + ], + [ + 77.580703456716293, + 13.057846917439299 + ], + [ + 77.579791966542302, + 13.058195162861001 + ], + [ + 77.579578530891993, + 13.057750531859201 + ], + [ + 77.579268434551594, + 13.0570731578071 + ], + [ + 77.578955569079397, + 13.0563780561745 + ], + [ + 77.576822692333096, + 13.0573390477921 + ], + [ + 77.576695846229498, + 13.056886137004501 + ], + [ + 77.576129038378099, + 13.055199017081399 + ], + [ + 77.575460405727995, + 13.0539721627192 + ], + [ + 77.575251311173602, + 13.0534800192898 + ], + [ + 77.574903054796195, + 13.0525888413085 + ], + [ + 77.574791200626805, + 13.0519588993859 + ], + [ + 77.574750271805598, + 13.051397093521899 + ], + [ + 77.5748385395311, + 13.050879896266199 + ], + [ + 77.575142310123695, + 13.050305827387801 + ], + [ + 77.575154612857901, + 13.0502911269433 + ], + [ + 77.575726329497598, + 13.049607953385999 + ], + [ + 77.575745760395705, + 13.049604680049701 + ], + [ + 77.575752312232794, + 13.049596851523701 + ], + [ + 77.575954525402295, + 13.0488000163786 + ], + [ + 77.576009805790903, + 13.048469861235199 + ], + [ + 77.5760097398217, + 13.0484685636458 + ], + [ + 77.575957732899894, + 13.0474422498833 + ], + [ + 77.575838980208403, + 13.047431641541399 + ], + [ + 77.575838816952995, + 13.047431626905 + ], + [ + 77.575024442490999, + 13.047359570299999 + ], + [ + 77.574860202242803, + 13.047350829068201 + ], + [ + 77.574676026537105, + 13.0473410276467 + ], + [ + 77.574479781854706, + 13.047330583695301 + ], + [ + 77.5740491143154, + 13.047307663028 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "222", + "group": "Dodda Ganapathi", + "Corporatio": "West", + "ac_no": "170", + "ac": "Basavanagudi", + "corporat_1": "5", + "ward_id": "78", + "ward_name": "78 - NR Colony", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಬಸವನಗುಡಿ", + "ward_name_": "ಎನ್.ಆರ್. ಕಾಲೋನಿ", + "dig_ward_n": "Dodda Ganapathi", + "Assembly": "170 - Basavanagudi", + "Slno": "78" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.565907026714299, + 12.939331796102399 + ], + [ + 77.565911039894601, + 12.9394394347584 + ], + [ + 77.565922894663203, + 12.9397573929388 + ], + [ + 77.565949781993695, + 12.939909586259899 + ], + [ + 77.5659875580657, + 12.9400006892033 + ], + [ + 77.566028959193204, + 12.940052230314601 + ], + [ + 77.566075748973205, + 12.9401240460991 + ], + [ + 77.566169601735197, + 12.940181846762201 + ], + [ + 77.566324526895798, + 12.9401882268376 + ], + [ + 77.566494913142904, + 12.9401865493743 + ], + [ + 77.566647938040006, + 12.9401760081979 + ], + [ + 77.566671755279003, + 12.9407031650533 + ], + [ + 77.566721240566807, + 12.941094551008 + ], + [ + 77.566727540098199, + 12.9411475669041 + ], + [ + 77.566758781262607, + 12.9412750276803 + ], + [ + 77.566771997677705, + 12.9413289492541 + ], + [ + 77.566848887240099, + 12.9415292106021 + ], + [ + 77.566939851262603, + 12.9416588205248 + ], + [ + 77.566998445362998, + 12.941742308051101 + ], + [ + 77.567492603025002, + 12.942269349179 + ], + [ + 77.567648045723601, + 12.942494810585099 + ], + [ + 77.567685441342306, + 12.942548649384401 + ], + [ + 77.567781267694102, + 12.9426866112684 + ], + [ + 77.567844638896702, + 12.942803435846599 + ], + [ + 77.567843802466697, + 12.9428723359587 + ], + [ + 77.567834958945198, + 12.943600828713301 + ], + [ + 77.5687120095252, + 12.94361468438 + ], + [ + 77.5690013523174, + 12.9436192551257 + ], + [ + 77.570344239622898, + 12.943640463737101 + ], + [ + 77.570363822801298, + 12.9436413999093 + ], + [ + 77.570390093646694, + 12.943620813145699 + ], + [ + 77.570711931618703, + 12.9436232852989 + ], + [ + 77.571061411579194, + 12.9436266136693 + ], + [ + 77.571071900386201, + 12.9436389326465 + ], + [ + 77.571111630781701, + 12.9436396700003 + ], + [ + 77.571543449610203, + 12.9436444440113 + ], + [ + 77.571843424811306, + 12.9436482597928 + ], + [ + 77.572067545946396, + 12.9436512870911 + ], + [ + 77.572374862953694, + 12.9436554372539 + ], + [ + 77.572638665531301, + 12.943658122070801 + ], + [ + 77.572712829859398, + 12.943658877029399 + ], + [ + 77.572843498842502, + 12.9436575870666 + ], + [ + 77.572866744381798, + 12.9436788145176 + ], + [ + 77.572886315947599, + 12.9436786212996 + ], + [ + 77.573772969417305, + 12.943681065745301 + ], + [ + 77.573780391580001, + 12.943681086194999 + ], + [ + 77.573771269673202, + 12.9432972102731 + ], + [ + 77.573778512174897, + 12.9421520165474 + ], + [ + 77.573787699467104, + 12.9407011792104 + ], + [ + 77.573787709354704, + 12.9406996296968 + ], + [ + 77.573787732471303, + 12.940695958752899 + ], + [ + 77.573787737608299, + 12.940695113073399 + ], + [ + 77.573787912119997, + 12.9406886028996 + ], + [ + 77.573842997801904, + 12.940694567441399 + ], + [ + 77.573844440371602, + 12.940629963783 + ], + [ + 77.573844616531005, + 12.9406279220545 + ], + [ + 77.5738452202377, + 12.940595023302601 + ], + [ + 77.573846276927398, + 12.940547686496799 + ], + [ + 77.573862716401507, + 12.939811250803301 + ], + [ + 77.573825503736401, + 12.939748575803799 + ], + [ + 77.573824053016295, + 12.9397461324444 + ], + [ + 77.573824443224794, + 12.9397280595997 + ], + [ + 77.573830602378393, + 12.939566126819701 + ], + [ + 77.573830832343504, + 12.939560079810301 + ], + [ + 77.573832209758507, + 12.9395238602254 + ], + [ + 77.573833254913097, + 12.9394963678727 + ], + [ + 77.573833266376496, + 12.9394960488418 + ], + [ + 77.573837590286303, + 12.9393823603213 + ], + [ + 77.573847746758005, + 12.9391030037695 + ], + [ + 77.573850491419805, + 12.9390275006833 + ], + [ + 77.573850609936798, + 12.939024239867001 + ], + [ + 77.573852978181904, + 12.9389745267562 + ], + [ + 77.573859820459703, + 12.938687613945699 + ], + [ + 77.573866604848604, + 12.938395055143999 + ], + [ + 77.573865113820304, + 12.9383058542107 + ], + [ + 77.573858875422104, + 12.937978415292999 + ], + [ + 77.573852359042803, + 12.937623875618799 + ], + [ + 77.573851540102595, + 12.937600168148499 + ], + [ + 77.573848284292694, + 12.9372828635767 + ], + [ + 77.573845179188197, + 12.9369802385679 + ], + [ + 77.573843550295194, + 12.936909458518199 + ], + [ + 77.573843405380302, + 12.936903144835 + ], + [ + 77.573843380855095, + 12.9369007545491 + ], + [ + 77.573843016973299, + 12.9368849495773 + ], + [ + 77.573842092406593, + 12.936844751576301 + ], + [ + 77.573842062013995, + 12.936844751876301 + ], + [ + 77.573832518330207, + 12.9364069837321 + ], + [ + 77.573832411859698, + 12.9364020826645 + ], + [ + 77.573832048427505, + 12.936385423024101 + ], + [ + 77.573830099598496, + 12.9362960242215 + ], + [ + 77.573824201311396, + 12.935974294401801 + ], + [ + 77.573817059612097, + 12.935584685300901 + ], + [ + 77.573814410830195, + 12.935440160373499 + ], + [ + 77.573814417638701, + 12.935439477298299 + ], + [ + 77.573815278099403, + 12.935352764723399 + ], + [ + 77.573815543260295, + 12.935326088652699 + ], + [ + 77.573816702871, + 12.9352267862613 + ], + [ + 77.573818427267398, + 12.935079105782499 + ], + [ + 77.573821406363294, + 12.934823879797801 + ], + [ + 77.573821978087295, + 12.934774920723401 + ], + [ + 77.573821868703604, + 12.934774942582299 + ], + [ + 77.573611755065798, + 12.9348173765457 + ], + [ + 77.573545652387907, + 12.9348307264212 + ], + [ + 77.573541505436793, + 12.934831508175099 + ], + [ + 77.573501595064101, + 12.934839032965399 + ], + [ + 77.573482031496695, + 12.934842721476301 + ], + [ + 77.573375281765706, + 12.934862849450599 + ], + [ + 77.573363466035701, + 12.9348650774115 + ], + [ + 77.573324446448296, + 12.934872434378899 + ], + [ + 77.573073157927496, + 12.934899758820601 + ], + [ + 77.572956377747602, + 12.934907686931799 + ], + [ + 77.572940351212694, + 12.9349086030515 + ], + [ + 77.572860872106901, + 12.9349131455663 + ], + [ + 77.572644237339802, + 12.934918130493299 + ], + [ + 77.572629196945599, + 12.9349184758227 + ], + [ + 77.572603031666503, + 12.934919078162199 + ], + [ + 77.572546981422803, + 12.934921593393099 + ], + [ + 77.572533218585306, + 12.934922210701 + ], + [ + 77.572297656742805, + 12.9349327837865 + ], + [ + 77.572276386899702, + 12.9349337380339 + ], + [ + 77.572062228316696, + 12.934943349021999 + ], + [ + 77.572035632495997, + 12.9349445427947 + ], + [ + 77.571976396762594, + 12.9349472013509 + ], + [ + 77.571958125480904, + 12.9349480211983 + ], + [ + 77.571957999352406, + 12.9349480269595 + ], + [ + 77.571710655444207, + 12.9349591873255 + ], + [ + 77.571703609702197, + 12.9349595052577 + ], + [ + 77.571669807672293, + 12.9349610299244 + ], + [ + 77.571669721453205, + 12.9349610338134 + ], + [ + 77.571661773072904, + 12.9348689764306 + ], + [ + 77.571660939024497, + 12.9348593150167 + ], + [ + 77.5716534338126, + 12.934772391188901 + ], + [ + 77.571651651905597, + 12.934751759478701 + ], + [ + 77.571644930601394, + 12.934673917542 + ], + [ + 77.5716374724405, + 12.934587538028101 + ], + [ + 77.571636998949202, + 12.9345820506168 + ], + [ + 77.571629874249595, + 12.9344995372948 + ], + [ + 77.571622556884194, + 12.934412334248499 + ], + [ + 77.571621752077803, + 12.934402739400699 + ], + [ + 77.571612168408194, + 12.934288530147301 + ], + [ + 77.571608177604105, + 12.934253772168701 + ], + [ + 77.571607568741101, + 12.934248466782201 + ], + [ + 77.571595801327803, + 12.9341459498426 + ], + [ + 77.571592907530203, + 12.9341207178778 + ], + [ + 77.571588449847795, + 12.9340819251704 + ], + [ + 77.571587754041801, + 12.9340758653556 + ], + [ + 77.571585233026497, + 12.9340539336361 + ], + [ + 77.571579802006596, + 12.9340065361169 + ], + [ + 77.571568698727702, + 12.9339081531394 + ], + [ + 77.571567975302401, + 12.9339017349266 + ], + [ + 77.571567341135605, + 12.9338961171949 + ], + [ + 77.571566876150698, + 12.9338919984278 + ], + [ + 77.571556296642996, + 12.933798255829799 + ], + [ + 77.571555855937902, + 12.9337943491342 + ], + [ + 77.5715467504358, + 12.9337136649415 + ], + [ + 77.571546096027305, + 12.9337078694293 + ], + [ + 77.571543486335798, + 12.9336847433157 + ], + [ + 77.571542336500301, + 12.933674554687 + ], + [ + 77.571529864559906, + 12.9335640382915 + ], + [ + 77.5715296386104, + 12.9335620330503 + ], + [ + 77.571529567679804, + 12.933561403140599 + ], + [ + 77.571529212078204, + 12.933558250891 + ], + [ + 77.571520044827196, + 12.9334770207139 + ], + [ + 77.571519956730995, + 12.933476243710899 + ], + [ + 77.571518216291494, + 12.933460822693499 + ], + [ + 77.571517285221404, + 12.9334525671 + ], + [ + 77.571516736169897, + 12.933447704717301 + ], + [ + 77.571513757107795, + 12.933421307351299 + ], + [ + 77.571511544201599, + 12.9334016988588 + ], + [ + 77.571511303067794, + 12.933399560056399 + ], + [ + 77.571508382393205, + 12.9333736796734 + ], + [ + 77.571500335407507, + 12.9333748883294 + ], + [ + 77.571465852312897, + 12.9333776712558 + ], + [ + 77.571462460971205, + 12.9333779450113 + ], + [ + 77.571454338315604, + 12.933378600596299 + ], + [ + 77.571440396536801, + 12.9333797255289 + ], + [ + 77.571432698146396, + 12.9333803471162 + ], + [ + 77.571338924065998, + 12.9333879147469 + ], + [ + 77.571327102682105, + 12.933388868795401 + ], + [ + 77.571165572578906, + 12.933401904410401 + ], + [ + 77.571116185108096, + 12.933406076472499 + ], + [ + 77.571100642578898, + 12.933407388824 + ], + [ + 77.571054899392394, + 12.933411253009499 + ], + [ + 77.571049318845795, + 12.933411724514301 + ], + [ + 77.570877986615201, + 12.933426196405 + ], + [ + 77.570803253436694, + 12.9334366072344 + ], + [ + 77.570782607602595, + 12.933439483153499 + ], + [ + 77.570736925921395, + 12.9334458465302 + ], + [ + 77.570733445555703, + 12.933446331658301 + ], + [ + 77.570729675460996, + 12.9334468566837 + ], + [ + 77.5707191956119, + 12.933449114715 + ], + [ + 77.570710202778301, + 12.9334510527219 + ], + [ + 77.570641791946997, + 12.9334657919658 + ], + [ + 77.570511457324699, + 12.9335197225427 + ], + [ + 77.5705068081202, + 12.9335216466425 + ], + [ + 77.570482431193298, + 12.9335317336266 + ], + [ + 77.570438956460293, + 12.933547906569499 + ], + [ + 77.570429133808304, + 12.933551560270701 + ], + [ + 77.570332751645395, + 12.9335874159546 + ], + [ + 77.570225659034307, + 12.9336148015913 + ], + [ + 77.570220597177098, + 12.933616095529899 + ], + [ + 77.570176578348693, + 12.9336273517885 + ], + [ + 77.570149480005796, + 12.933633969204299 + ], + [ + 77.570146676822901, + 12.933634653638901 + ], + [ + 77.569969997281703, + 12.933677796325901 + ], + [ + 77.5698668380914, + 12.933702986527001 + ], + [ + 77.569857253424104, + 12.933705326954501 + ], + [ + 77.569828573844205, + 12.9337123303364 + ], + [ + 77.569808249610404, + 12.9337172936043 + ], + [ + 77.569539259548307, + 12.9337829778614 + ], + [ + 77.569534034464596, + 12.9337842535201 + ], + [ + 77.569528809380699, + 12.933785529178699 + ], + [ + 77.569521001617403, + 12.933787435596299 + ], + [ + 77.569405721836802, + 12.9338155853819 + ], + [ + 77.569287927261101, + 12.9338443491903 + ], + [ + 77.569280705672895, + 12.933846112501699 + ], + [ + 77.569280197591198, + 12.9338462367629 + ], + [ + 77.569277752940096, + 12.9338380394257 + ], + [ + 77.569277724320798, + 12.933837943038199 + ], + [ + 77.569271285061006, + 12.933816351613601 + ], + [ + 77.569256829829499, + 12.9337678774141 + ], + [ + 77.569255774890607, + 12.933764339044 + ], + [ + 77.569241039241604, + 12.9337149244001 + ], + [ + 77.5692386699412, + 12.9337069792865 + ], + [ + 77.5692333466707, + 12.9336891307124 + ], + [ + 77.569232619844101, + 12.933686692225599 + ], + [ + 77.569213793275594, + 12.933623561001699 + ], + [ + 77.569212966324102, + 12.9336207892236 + ], + [ + 77.569199309472395, + 12.9335749922134 + ], + [ + 77.569198263120398, + 12.933571482668601 + ], + [ + 77.569197977933399, + 12.933570526914499 + ], + [ + 77.569197930219403, + 12.933570364763 + ], + [ + 77.569187800548804, + 12.933573182137399 + ], + [ + 77.569109589801997, + 12.933594934229999 + ], + [ + 77.569109528642699, + 12.933594951239799 + ], + [ + 77.568992659249005, + 12.933622309832 + ], + [ + 77.568979766563999, + 12.933625327878699 + ], + [ + 77.568913119894404, + 12.9336409292799 + ], + [ + 77.568886783857593, + 12.933647249052999 + ], + [ + 77.568866378786097, + 12.933652146190401 + ], + [ + 77.568824216137003, + 12.9336622645703 + ], + [ + 77.568805158960004, + 12.933666837639 + ], + [ + 77.568599896227397, + 12.9336914456554 + ], + [ + 77.568249729071894, + 12.9337321616298 + ], + [ + 77.568193512944802, + 12.933735923378901 + ], + [ + 77.568127205310702, + 12.9337403949833 + ], + [ + 77.568115577870898, + 12.933793489027099 + ], + [ + 77.567716870195994, + 12.9338235491212 + ], + [ + 77.567577839297201, + 12.9331762163633 + ], + [ + 77.567030611426304, + 12.933292508306099 + ], + [ + 77.5668321759983, + 12.9333335014738 + ], + [ + 77.566502000405606, + 12.933400782538 + ], + [ + 77.566257795061503, + 12.933420717668101 + ], + [ + 77.566100805911702, + 12.9334306852331 + ], + [ + 77.565915160012395, + 12.933468063602101 + ], + [ + 77.565304646652507, + 12.9335801987091 + ], + [ + 77.564801284616706, + 12.9337421716414 + ], + [ + 77.564440777300604, + 12.933889493636499 + ], + [ + 77.564426159819902, + 12.9338913882666 + ], + [ + 77.564425965499197, + 12.9338748984924 + ], + [ + 77.564417106698599, + 12.9337830752181 + ], + [ + 77.564399771379598, + 12.9336447612295 + ], + [ + 77.564369132669398, + 12.933567972392501 + ], + [ + 77.564278731408606, + 12.9333426105456 + ], + [ + 77.5642106728709, + 12.933169257772301 + ], + [ + 77.564167771441802, + 12.933048965165099 + ], + [ + 77.563990150680098, + 12.932599523470699 + ], + [ + 77.563941877431404, + 12.932471802070101 + ], + [ + 77.563617951515894, + 12.9326819390502 + ], + [ + 77.563489554918405, + 12.932740380788401 + ], + [ + 77.563482440497296, + 12.932722343634699 + ], + [ + 77.563400160638594, + 12.9325484047432 + ], + [ + 77.563397571118003, + 12.9325457523473 + ], + [ + 77.561852598532994, + 12.933153773816301 + ], + [ + 77.561797309695095, + 12.933169036650201 + ], + [ + 77.561873388592701, + 12.933544295724399 + ], + [ + 77.561929175066894, + 12.9337569709484 + ], + [ + 77.561945385126705, + 12.9338170506481 + ], + [ + 77.5620607962218, + 12.934087632774 + ], + [ + 77.562085123136299, + 12.934107233711901 + ], + [ + 77.562157919442896, + 12.9341755082239 + ], + [ + 77.562184403552706, + 12.934191502134199 + ], + [ + 77.562207182314907, + 12.934241515992801 + ], + [ + 77.562274148661999, + 12.934388546230799 + ], + [ + 77.562749056416394, + 12.934248648541301 + ], + [ + 77.562722891558096, + 12.93413775938 + ], + [ + 77.562638750913493, + 12.9339640340821 + ], + [ + 77.562503643216303, + 12.9338114197498 + ], + [ + 77.562680407603494, + 12.9334380711277 + ], + [ + 77.562899928885003, + 12.934043437340099 + ], + [ + 77.5631501593937, + 12.934690456958901 + ], + [ + 77.563202196231401, + 12.934825008667399 + ], + [ + 77.563511403800305, + 12.9355472967032 + ], + [ + 77.563609054118103, + 12.935890066643401 + ], + [ + 77.563652281033796, + 12.9360418008806 + ], + [ + 77.563706831859406, + 12.936212012379199 + ], + [ + 77.563838637736296, + 12.936623277921701 + ], + [ + 77.563967250735999, + 12.936623692819699 + ], + [ + 77.564043352009406, + 12.9366522661664 + ], + [ + 77.564218726992607, + 12.9368768934276 + ], + [ + 77.564249792166393, + 12.9369166832973 + ], + [ + 77.564496679639404, + 12.9374471513333 + ], + [ + 77.564517713333302, + 12.937644154373499 + ], + [ + 77.564530267848298, + 12.9380043118876 + ], + [ + 77.564528439983206, + 12.9380718387836 + ], + [ + 77.564527799550007, + 12.938095505683201 + ], + [ + 77.564542176457095, + 12.9384716137411 + ], + [ + 77.564538665302194, + 12.938601343850401 + ], + [ + 77.564530758671694, + 12.938929666284601 + ], + [ + 77.564523452026194, + 12.9393027715127 + ], + [ + 77.565907026714299, + 12.939331796102399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "223", + "group": "Kattigenahalli", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "3", + "ward_name": "3 - Kattigenahalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ಕಟ್ಟಿಗೇನಹಳ್ಳಿ", + "dig_ward_n": "Kattigenahalli", + "Assembly": "152 - Byatarayanapura", + "Slno": "3" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.623273273534707, + 13.098614913050101 + ], + [ + 77.623272865808104, + 13.0986194035282 + ], + [ + 77.622535220623604, + 13.098576176145899 + ], + [ + 77.620790875221203, + 13.0982772828912 + ], + [ + 77.619919130745203, + 13.098165197527001 + ], + [ + 77.619677387499706, + 13.098134190456999 + ], + [ + 77.619239617132607, + 13.098098004839301 + ], + [ + 77.619121886726703, + 13.098088273501199 + ], + [ + 77.618415560528106, + 13.098029888250601 + ], + [ + 77.618388738763599, + 13.098030160719899 + ], + [ + 77.6183303971073, + 13.0980474854703 + ], + [ + 77.618250136713598, + 13.0980674232878 + ], + [ + 77.617342872956698, + 13.098009310800901 + ], + [ + 77.617336315859106, + 13.097929422443199 + ], + [ + 77.617316771104399, + 13.0978956633213 + ], + [ + 77.617268797615495, + 13.0978370290571 + ], + [ + 77.617203056167597, + 13.097785501976301 + ], + [ + 77.616887978890901, + 13.097785930705101 + ], + [ + 77.616391186012507, + 13.0977241709944 + ], + [ + 77.615669766135397, + 13.0976454425781 + ], + [ + 77.614197013216298, + 13.0975029741286 + ], + [ + 77.614078560600902, + 13.097484335073601 + ], + [ + 77.614084779386502, + 13.0974257008093 + ], + [ + 77.610655870684297, + 13.097345277354499 + ], + [ + 77.607317981455793, + 13.097275621061501 + ], + [ + 77.607314790439801, + 13.097430118161 + ], + [ + 77.607310554544597, + 13.0976351540686 + ], + [ + 77.607502224179697, + 13.0980874679243 + ], + [ + 77.607525121314197, + 13.098192195522699 + ], + [ + 77.6076767707399, + 13.0988857338341 + ], + [ + 77.607776244963901, + 13.0991288040708 + ], + [ + 77.608007878476002, + 13.0994315556392 + ], + [ + 77.608028015977098, + 13.099663374179 + ], + [ + 77.608044310070397, + 13.0998509008468 + ], + [ + 77.608019061536197, + 13.100138839188499 + ], + [ + 77.608016608721101, + 13.1001668157841 + ], + [ + 77.608049437511596, + 13.1006546385989 + ], + [ + 77.6081162901624, + 13.100978681380999 + ], + [ + 77.608124262631506, + 13.1010095707858 + ], + [ + 77.608136570775798, + 13.1010402112334 + ], + [ + 77.608180885555399, + 13.101304178872599 + ], + [ + 77.608225130935395, + 13.1015613697402 + ], + [ + 77.6082515520458, + 13.1017422530725 + ], + [ + 77.608288984307606, + 13.1019985353583 + ], + [ + 77.608860556223803, + 13.102048714170801 + ], + [ + 77.6089323111825, + 13.1020550135714 + ], + [ + 77.609132260765605, + 13.102085205865 + ], + [ + 77.609231559595102, + 13.102533885632001 + ], + [ + 77.6094204194345, + 13.1025433010988 + ], + [ + 77.609424294340499, + 13.1025434940364 + ], + [ + 77.609521767381594, + 13.1025483538389 + ], + [ + 77.609742898117105, + 13.1025593773668 + ], + [ + 77.609864023574403, + 13.1025654158466 + ], + [ + 77.610051157601006, + 13.1029674806678 + ], + [ + 77.610118912642704, + 13.1030984258188 + ], + [ + 77.610189126204503, + 13.1032341223987 + ], + [ + 77.610265240862404, + 13.1033812235244 + ], + [ + 77.610267087895707, + 13.1034105920653 + ], + [ + 77.610643761597004, + 13.1034245198025 + ], + [ + 77.610638249621601, + 13.103704672798001 + ], + [ + 77.610635129940903, + 13.103863222432301 + ], + [ + 77.610633310155904, + 13.103955733583501 + ], + [ + 77.6104882752809, + 13.1039423988296 + ], + [ + 77.610457937291201, + 13.1045457776235 + ], + [ + 77.610546069067297, + 13.104924941226299 + ], + [ + 77.610587095759001, + 13.104999819866499 + ], + [ + 77.610638906708402, + 13.1050566618133 + ], + [ + 77.611271861427895, + 13.1054159617062 + ], + [ + 77.6116452547123, + 13.105606046141199 + ], + [ + 77.611689054284298, + 13.1056283428975 + ], + [ + 77.611876831169397, + 13.105723934903301 + ], + [ + 77.611925227957599, + 13.1057485727298 + ], + [ + 77.612051305016493, + 13.1058127550178 + ], + [ + 77.612169914855002, + 13.105878528880799 + ], + [ + 77.612269441103194, + 13.1059337202518 + ], + [ + 77.612425042777303, + 13.106020006730001 + ], + [ + 77.6124834781114, + 13.1060573413159 + ], + [ + 77.612508648529101, + 13.1062112024022 + ], + [ + 77.612534356959401, + 13.1063683527787 + ], + [ + 77.612205736741302, + 13.1065311643946 + ], + [ + 77.612064456964902, + 13.1066122078084 + ], + [ + 77.612002124599101, + 13.106647963755 + ], + [ + 77.6118642721203, + 13.106756924014601 + ], + [ + 77.611755755667403, + 13.106872759002099 + ], + [ + 77.611723607306899, + 13.1069276178475 + ], + [ + 77.611329501044693, + 13.1080674251586 + ], + [ + 77.611468497562896, + 13.1081239908544 + ], + [ + 77.611844655203797, + 13.1082770693802 + ], + [ + 77.611543771933199, + 13.108942694549899 + ], + [ + 77.611505319964294, + 13.1090229762191 + ], + [ + 77.611681028426801, + 13.109093878860801 + ], + [ + 77.6117753455041, + 13.1091319382506 + ], + [ + 77.612060038924895, + 13.1092468185337 + ], + [ + 77.612275786053303, + 13.109366773919101 + ], + [ + 77.612246043862797, + 13.109472414729201 + ], + [ + 77.612112623949102, + 13.1101978626837 + ], + [ + 77.612076406160099, + 13.1105209191984 + ], + [ + 77.612029313430796, + 13.111141077534599 + ], + [ + 77.611383037875896, + 13.1111386683195 + ], + [ + 77.611143239103697, + 13.1111386832885 + ], + [ + 77.610331781749395, + 13.1111387313394 + ], + [ + 77.610580580299697, + 13.1116856806523 + ], + [ + 77.610661024360795, + 13.1118814322316 + ], + [ + 77.610868498016899, + 13.112386294229401 + ], + [ + 77.610872658548004, + 13.112396418185201 + ], + [ + 77.610986485610297, + 13.1126470912288 + ], + [ + 77.61116698088, + 13.1130439835263 + ], + [ + 77.611210507020402, + 13.113139692668399 + ], + [ + 77.611243620405801, + 13.113212506431401 + ], + [ + 77.611414211513207, + 13.1136015036122 + ], + [ + 77.611417847899901, + 13.1136098188083 + ], + [ + 77.611417884729804, + 13.113609902452399 + ], + [ + 77.611433274669807, + 13.1136450934015 + ], + [ + 77.611466549957896, + 13.113721179445999 + ], + [ + 77.6115251742157, + 13.113855227179901 + ], + [ + 77.611611379448306, + 13.1140523408123 + ], + [ + 77.611687740874601, + 13.114519083744099 + ], + [ + 77.611805223556999, + 13.1152248144917 + ], + [ + 77.611866799161405, + 13.115592432714999 + ], + [ + 77.611982913449197, + 13.1162856538957 + ], + [ + 77.612034766333096, + 13.116580381899499 + ], + [ + 77.612034773280698, + 13.1165804288066 + ], + [ + 77.612034805640803, + 13.116580612775 + ], + [ + 77.612034815496301, + 13.116580673203799 + ], + [ + 77.612037452212306, + 13.1165956503676 + ], + [ + 77.612039379107202, + 13.116606604598999 + ], + [ + 77.612068401984999, + 13.116771578151599 + ], + [ + 77.612070885687601, + 13.1167856814576 + ], + [ + 77.612158809581601, + 13.1172855305252 + ], + [ + 77.612178423035004, + 13.117397129094099 + ], + [ + 77.612142745716, + 13.1174008789604 + ], + [ + 77.612095571893903, + 13.1174070040258 + ], + [ + 77.611861558445696, + 13.1175042372712 + ], + [ + 77.611861277076798, + 13.1175866767647 + ], + [ + 77.611861489621404, + 13.117824950368901 + ], + [ + 77.611861306961003, + 13.1179467497559 + ], + [ + 77.611860198181304, + 13.1186843371612 + ], + [ + 77.611901042575596, + 13.1189515594008 + ], + [ + 77.612159953768298, + 13.1206654200692 + ], + [ + 77.612179170735203, + 13.120793961619899 + ], + [ + 77.612206413000706, + 13.120973238783399 + ], + [ + 77.612449107883904, + 13.121642689718501 + ], + [ + 77.612494432468395, + 13.121768599194001 + ], + [ + 77.612509052873406, + 13.1218092128231 + ], + [ + 77.612968374797006, + 13.1230794923784 + ], + [ + 77.613208710969403, + 13.1237433193913 + ], + [ + 77.613525484947303, + 13.124335225604799 + ], + [ + 77.613769991609203, + 13.125175174833499 + ], + [ + 77.613848318612796, + 13.1254454030651 + ], + [ + 77.614170241516007, + 13.126360225674301 + ], + [ + 77.614345689495295, + 13.1269343684842 + ], + [ + 77.614418511085105, + 13.1271741620676 + ], + [ + 77.614799570733197, + 13.128559285777801 + ], + [ + 77.614848768584906, + 13.1286897804403 + ], + [ + 77.615063036911707, + 13.129260217303599 + ], + [ + 77.615128570706503, + 13.129434683772701 + ], + [ + 77.615446196680693, + 13.130280275549101 + ], + [ + 77.615492505770604, + 13.1304035593873 + ], + [ + 77.615563062684899, + 13.130591396530299 + ], + [ + 77.615662414748698, + 13.130855893381501 + ], + [ + 77.615679642611497, + 13.130901756023301 + ], + [ + 77.615709536976198, + 13.130981340669299 + ], + [ + 77.615750755567205, + 13.1311125593611 + ], + [ + 77.615782436749797, + 13.131213415618401 + ], + [ + 77.618403498671299, + 13.1316007975629 + ], + [ + 77.625213238214798, + 13.1279480707851 + ], + [ + 77.625869886967195, + 13.1274616504391 + ], + [ + 77.628473845701805, + 13.1266741121867 + ], + [ + 77.628654231675, + 13.1265550100117 + ], + [ + 77.629099389459995, + 13.1264154740244 + ], + [ + 77.629463900384494, + 13.126313737123199 + ], + [ + 77.6296983348482, + 13.1262483056883 + ], + [ + 77.630164970969702, + 13.1261180631233 + ], + [ + 77.630277356699693, + 13.126086695185499 + ], + [ + 77.630281783612006, + 13.1260854601391 + ], + [ + 77.630352201468, + 13.1260658056924 + ], + [ + 77.630407489771201, + 13.1260389666917 + ], + [ + 77.6304722956977, + 13.1260075079239 + ], + [ + 77.630548388152505, + 13.125970571130001 + ], + [ + 77.630602884123704, + 13.1259441178192 + ], + [ + 77.630822971845404, + 13.1255758517927 + ], + [ + 77.631016556281807, + 13.125251931030199 + ], + [ + 77.631063582803193, + 13.1251732416367 + ], + [ + 77.631566418518403, + 13.1243318535925 + ], + [ + 77.631826397406996, + 13.1239228151608 + ], + [ + 77.632252484117501, + 13.1232533267719 + ], + [ + 77.6325317929996, + 13.122822615496499 + ], + [ + 77.632688901021197, + 13.1225803446097 + ], + [ + 77.632742705562293, + 13.122498070596199 + ], + [ + 77.632756369836301, + 13.1224771769452 + ], + [ + 77.632791501872404, + 13.1224234580746 + ], + [ + 77.633055040740999, + 13.1220169501131 + ], + [ + 77.633067022685296, + 13.121998467682401 + ], + [ + 77.633252851021197, + 13.1217118267054 + ], + [ + 77.633419849945398, + 13.1214525300785 + ], + [ + 77.6335413044944, + 13.121263948867201 + ], + [ + 77.634219634206005, + 13.120206787447099 + ], + [ + 77.634425306716693, + 13.1198862488242 + ], + [ + 77.634564143750893, + 13.1196702699993 + ], + [ + 77.635125418268103, + 13.118822103176701 + ], + [ + 77.6354101128873, + 13.118378943368601 + ], + [ + 77.635521460310102, + 13.1182056170364 + ], + [ + 77.635654121582903, + 13.1179991127946 + ], + [ + 77.636299707551402, + 13.1169547212564 + ], + [ + 77.636410138604901, + 13.1167762972195 + ], + [ + 77.636832616322806, + 13.116148625431601 + ], + [ + 77.636998208630402, + 13.115903011471 + ], + [ + 77.6372034826245, + 13.1155971407794 + ], + [ + 77.637218587374406, + 13.1155749151058 + ], + [ + 77.637273811136794, + 13.115493658696201 + ], + [ + 77.637302705581007, + 13.115448192749 + ], + [ + 77.637369014048204, + 13.115345881085499 + ], + [ + 77.637963578894102, + 13.114429069754999 + ], + [ + 77.638106918869596, + 13.114208039983801 + ], + [ + 77.638151460077694, + 13.114139357132499 + ], + [ + 77.638251097387297, + 13.1139857169506 + ], + [ + 77.638482404588402, + 13.113629042010301 + ], + [ + 77.638616059320597, + 13.113422945156501 + ], + [ + 77.638609769759498, + 13.1133687795356 + ], + [ + 77.638598476572994, + 13.1132715225165 + ], + [ + 77.638595730918595, + 13.113260297025199 + ], + [ + 77.6385860193502, + 13.1132205819923 + ], + [ + 77.638580552713904, + 13.113217637829299 + ], + [ + 77.638564861535599, + 13.113193679710401 + ], + [ + 77.638536600811705, + 13.1130840555904 + ], + [ + 77.638523318020603, + 13.1130325326963 + ], + [ + 77.638333613600395, + 13.112296657770299 + ], + [ + 77.638329538908394, + 13.1122808530124 + ], + [ + 77.638250965848599, + 13.1119760601216 + ], + [ + 77.638209445595095, + 13.111805633928601 + ], + [ + 77.638149989566799, + 13.111561590147 + ], + [ + 77.638126343685499, + 13.111464532777401 + ], + [ + 77.638117766367898, + 13.1114327180393 + ], + [ + 77.637997879125507, + 13.1109880422845 + ], + [ + 77.637977349641105, + 13.110911991298 + ], + [ + 77.637956918710998, + 13.110823831046799 + ], + [ + 77.637855611756194, + 13.110386694256 + ], + [ + 77.637851599667201, + 13.1103715663854 + ], + [ + 77.637790963147495, + 13.110142923862499 + ], + [ + 77.637701232085305, + 13.109804576037901 + ], + [ + 77.637648429189696, + 13.1094765823087 + ], + [ + 77.637622698041994, + 13.109316750007601 + ], + [ + 77.637615677221802, + 13.109273138058301 + ], + [ + 77.637608217155105, + 13.109226796018399 + ], + [ + 77.637605111188506, + 13.109207524000199 + ], + [ + 77.637540513469403, + 13.1088066780289 + ], + [ + 77.637475944114101, + 13.108454031653901 + ], + [ + 77.637470555271094, + 13.108417041153499 + ], + [ + 77.637450059559399, + 13.1083690998636 + ], + [ + 77.637242694575804, + 13.107884060680799 + ], + [ + 77.637033005612295, + 13.1074026079694 + ], + [ + 77.6370233964183, + 13.107204555632601 + ], + [ + 77.637012954671604, + 13.106989346321599 + ], + [ + 77.636998368480704, + 13.106688701586 + ], + [ + 77.636991407237701, + 13.1065452136466 + ], + [ + 77.636988614352006, + 13.106489487134599 + ], + [ + 77.636958888221798, + 13.106404157297799 + ], + [ + 77.636952130306, + 13.106384759121401 + ], + [ + 77.636950550169104, + 13.1063802239702 + ], + [ + 77.636960575599005, + 13.106377928792901 + ], + [ + 77.636991331348298, + 13.106370888145699 + ], + [ + 77.637013792948295, + 13.1063657464275 + ], + [ + 77.637025666427903, + 13.106363028510099 + ], + [ + 77.637022300406699, + 13.1062956377523 + ], + [ + 77.637020955336496, + 13.1062687031169 + ], + [ + 77.637209362703103, + 13.1062397934309 + ], + [ + 77.637282960208196, + 13.106228500907401 + ], + [ + 77.637368388325299, + 13.106215486417399 + ], + [ + 77.637474633886498, + 13.1062021006663 + ], + [ + 77.637728686162603, + 13.1061700937798 + ], + [ + 77.637834992027507, + 13.1061619397555 + ], + [ + 77.6381141333584, + 13.1061405272182 + ], + [ + 77.638341246690501, + 13.106124930329299 + ], + [ + 77.638958682983201, + 13.106062107375401 + ], + [ + 77.639278129902095, + 13.1060296034485 + ], + [ + 77.639321377341503, + 13.106025202570001 + ], + [ + 77.639472964208906, + 13.1059849641263 + ], + [ + 77.639523713578697, + 13.105970067463 + ], + [ + 77.639969480814301, + 13.1058568488803 + ], + [ + 77.639994255520605, + 13.105854892987301 + ], + [ + 77.640125880158607, + 13.105844586867899 + ], + [ + 77.640257928383605, + 13.105834247432799 + ], + [ + 77.640327022054095, + 13.1058289012343 + ], + [ + 77.640333006066498, + 13.105828521906099 + ], + [ + 77.640594460072194, + 13.1058122549389 + ], + [ + 77.640681017440301, + 13.1058069970428 + ], + [ + 77.640761218279295, + 13.1058021900299 + ], + [ + 77.640818172399094, + 13.1057861951366 + ], + [ + 77.640853661673702, + 13.105776229119201 + ], + [ + 77.641152426216607, + 13.1056923275501 + ], + [ + 77.641170162105894, + 13.1056873468694 + ], + [ + 77.6412796683788, + 13.105662270566899 + ], + [ + 77.641683457991903, + 13.1055827770222 + ], + [ + 77.641810477615493, + 13.105568498089299 + ], + [ + 77.641923437763097, + 13.105538898944801 + ], + [ + 77.642035010672998, + 13.1055092904943 + ], + [ + 77.642237559088002, + 13.1054858170936 + ], + [ + 77.642962040787594, + 13.1055323967121 + ], + [ + 77.643229613346094, + 13.105597655433399 + ], + [ + 77.643853769802703, + 13.1057352155578 + ], + [ + 77.643929857011102, + 13.1057188492944 + ], + [ + 77.6440566428344, + 13.1056932358625 + ], + [ + 77.644226529588494, + 13.105667052592301 + ], + [ + 77.644275245647506, + 13.105659008297501 + ], + [ + 77.644698631614801, + 13.1055896059268 + ], + [ + 77.645483594279497, + 13.105463410246401 + ], + [ + 77.645701860985398, + 13.105428320442201 + ], + [ + 77.647147762408295, + 13.1052043433401 + ], + [ + 77.649368752734901, + 13.1048602842595 + ], + [ + 77.6493853804011, + 13.1048577084355 + ], + [ + 77.649472442071897, + 13.104838875352399 + ], + [ + 77.650274730678703, + 13.1046653261891 + ], + [ + 77.650303406045097, + 13.1046591230232 + ], + [ + 77.650319860269306, + 13.1046559319112 + ], + [ + 77.650237547946503, + 13.1044883098357 + ], + [ + 77.650228464730503, + 13.104464780506801 + ], + [ + 77.650134699744299, + 13.104221889116101 + ], + [ + 77.649870650035396, + 13.103537882393599 + ], + [ + 77.649635571824803, + 13.1029289200201 + ], + [ + 77.649618338097099, + 13.1028842456689 + ], + [ + 77.649563603992704, + 13.102703049782701 + ], + [ + 77.649531979733794, + 13.1025983575297 + ], + [ + 77.649239175621503, + 13.1019509072765 + ], + [ + 77.649119533691803, + 13.1016863540465 + ], + [ + 77.649057866533695, + 13.1013186426626 + ], + [ + 77.649029620189694, + 13.101150256233099 + ], + [ + 77.649022963437602, + 13.101110570906201 + ], + [ + 77.648932281623502, + 13.100694788271801 + ], + [ + 77.648869072754493, + 13.1004908748238 + ], + [ + 77.648860444258702, + 13.100463038764399 + ], + [ + 77.6488581112513, + 13.1004555121945 + ], + [ + 77.648855648463694, + 13.1003842508487 + ], + [ + 77.648855293248005, + 13.1003739630585 + ], + [ + 77.648854374939901, + 13.1003473956091 + ], + [ + 77.648835223147302, + 13.1003030154864 + ], + [ + 77.648810244088807, + 13.1002451326311 + ], + [ + 77.648788993332303, + 13.100195889434801 + ], + [ + 77.648775941963507, + 13.1001656452147 + ], + [ + 77.648756088972604, + 13.100119640761401 + ], + [ + 77.648748692897598, + 13.1001025026424 + ], + [ + 77.648747896483997, + 13.100044853636801 + ], + [ + 77.648747529506295, + 13.1000183021991 + ], + [ + 77.648721774395895, + 13.099950071718 + ], + [ + 77.648638947036304, + 13.0997306416482 + ], + [ + 77.648635758124897, + 13.0997221933759 + ], + [ + 77.648608070964997, + 13.0996488442324 + ], + [ + 77.648579357733098, + 13.099556079081699 + ], + [ + 77.648567718968707, + 13.099518479356901 + ], + [ + 77.648541884919098, + 13.0994350157456 + ], + [ + 77.648493977578596, + 13.099379371272599 + ], + [ + 77.648489183581702, + 13.0993738032445 + ], + [ + 77.648457060531598, + 13.099241326554599 + ], + [ + 77.648455232108603, + 13.0991884273335 + ], + [ + 77.648454173569206, + 13.099157789724099 + ], + [ + 77.648340306922805, + 13.098973414753001 + ], + [ + 77.648183940802099, + 13.0987010992935 + ], + [ + 77.648065388401506, + 13.098483310603701 + ], + [ + 77.647919459642097, + 13.0982152293375 + ], + [ + 77.647913225857494, + 13.0982037778323 + ], + [ + 77.647907290080695, + 13.098192873431501 + ], + [ + 77.647890379607006, + 13.0981618078364 + ], + [ + 77.647830248330195, + 13.0979945508008 + ], + [ + 77.647715693889594, + 13.097675912950701 + ], + [ + 77.647456099498896, + 13.0967760084381 + ], + [ + 77.647430297249599, + 13.096700874443 + ], + [ + 77.647376087083998, + 13.0965343694089 + ], + [ + 77.647349775336494, + 13.0964535537682 + ], + [ + 77.6470711561347, + 13.095843197892201 + ], + [ + 77.646828080508996, + 13.095359162115001 + ], + [ + 77.6468056478747, + 13.0953173837246 + ], + [ + 77.646804056819505, + 13.095314419764399 + ], + [ + 77.646727611555093, + 13.0951555017748 + ], + [ + 77.646662232003706, + 13.095019586179999 + ], + [ + 77.646341456707006, + 13.0943660448565 + ], + [ + 77.646024646841795, + 13.093720576391901 + ], + [ + 77.645876996411502, + 13.0934197526703 + ], + [ + 77.643268606070507, + 13.088105227264601 + ], + [ + 77.643261731177404, + 13.088090557903399 + ], + [ + 77.642697353769904, + 13.0868863024685 + ], + [ + 77.643023334761693, + 13.086790259711201 + ], + [ + 77.643463623140406, + 13.0866863456434 + ], + [ + 77.643746506461994, + 13.086648400256401 + ], + [ + 77.643788717619103, + 13.0866427378835 + ], + [ + 77.645871433173994, + 13.086363352807201 + ], + [ + 77.645871751584593, + 13.086363309792 + ], + [ + 77.646009777508795, + 13.086344793701601 + ], + [ + 77.646157509493307, + 13.086324975559799 + ], + [ + 77.646189178766804, + 13.0863207272577 + ], + [ + 77.646273275847193, + 13.0863094457325 + ], + [ + 77.6464587020198, + 13.0862845701974 + ], + [ + 77.646524037514595, + 13.0862758055017 + ], + [ + 77.646529794404799, + 13.086131974855 + ], + [ + 77.646531776557097, + 13.086086726988601 + ], + [ + 77.6465355667588, + 13.086000208880201 + ], + [ + 77.646543560726101, + 13.085817741501 + ], + [ + 77.646554125999003, + 13.085576582221099 + ], + [ + 77.646561877958604, + 13.085436012234901 + ], + [ + 77.646563705543102, + 13.085402872341099 + ], + [ + 77.646565757048407, + 13.085365673006301 + ], + [ + 77.646566056664, + 13.0853602441465 + ], + [ + 77.646602556161, + 13.085152308546499 + ], + [ + 77.646495235565197, + 13.0850269342837 + ], + [ + 77.646370317301603, + 13.0848086528949 + ], + [ + 77.646356242071803, + 13.084784057814399 + ], + [ + 77.646353750634006, + 13.084779703713901 + ], + [ + 77.646270396200094, + 13.0846340506979 + ], + [ + 77.646101400953498, + 13.084338747871 + ], + [ + 77.645519914132507, + 13.0833916292423 + ], + [ + 77.645122017147003, + 13.0829699835926 + ], + [ + 77.644895133419993, + 13.0827106489745 + ], + [ + 77.644712019502094, + 13.082501343592799 + ], + [ + 77.644551167920994, + 13.082317485276 + ], + [ + 77.644518257861193, + 13.082247348650901 + ], + [ + 77.644513852129705, + 13.0822379596404 + ], + [ + 77.643642327589504, + 13.082658679717801 + ], + [ + 77.643604717128795, + 13.0826642116985 + ], + [ + 77.643556889291901, + 13.0829878456976 + ], + [ + 77.642576489534804, + 13.0834281320748 + ], + [ + 77.642446957723195, + 13.083171312053 + ], + [ + 77.642301784135, + 13.0828558472552 + ], + [ + 77.641882873123706, + 13.0818627344253 + ], + [ + 77.639391805290501, + 13.0830034373845 + ], + [ + 77.638745051587804, + 13.083316153460601 + ], + [ + 77.638007193499305, + 13.0835095376463 + ], + [ + 77.635832232776096, + 13.0837851281476 + ], + [ + 77.634640014107802, + 13.083936186815301 + ], + [ + 77.634649260802405, + 13.0840002267228 + ], + [ + 77.635110136029397, + 13.086994889113599 + ], + [ + 77.635246461689505, + 13.087880682917699 + ], + [ + 77.635646108537102, + 13.0900737076112 + ], + [ + 77.635851200209402, + 13.091700027143199 + ], + [ + 77.635874287791395, + 13.092602720521899 + ], + [ + 77.635932854154206, + 13.094404319766101 + ], + [ + 77.635928020105695, + 13.0949316824154 + ], + [ + 77.635919632484203, + 13.0958467776146 + ], + [ + 77.6359057317609, + 13.0963667192479 + ], + [ + 77.635518390257602, + 13.096439567879299 + ], + [ + 77.6351795352533, + 13.0968612632435 + ], + [ + 77.634664093301893, + 13.0976451583767 + ], + [ + 77.634285789877396, + 13.098186831656401 + ], + [ + 77.633469157157606, + 13.098911127366 + ], + [ + 77.633361201518895, + 13.0990206955817 + ], + [ + 77.632866700886893, + 13.0995317270886 + ], + [ + 77.632400136143701, + 13.100013886273899 + ], + [ + 77.632271952241297, + 13.1001463533915 + ], + [ + 77.632357383528401, + 13.1003173902117 + ], + [ + 77.631964217272994, + 13.1005165084028 + ], + [ + 77.631467610578497, + 13.0993607533704 + ], + [ + 77.630265471368105, + 13.0998474754255 + ], + [ + 77.629762893993401, + 13.100040051605101 + ], + [ + 77.629226190188405, + 13.0988245063434 + ], + [ + 77.629151746912498, + 13.098820509311899 + ], + [ + 77.628008858698394, + 13.0986390071279 + ], + [ + 77.627745491444202, + 13.0985856540906 + ], + [ + 77.627582795514499, + 13.098552695144299 + ], + [ + 77.6266268183943, + 13.0983590299046 + ], + [ + 77.626606800534205, + 13.0983549743375 + ], + [ + 77.626066446087805, + 13.098256206372399 + ], + [ + 77.625301589055596, + 13.098100680839799 + ], + [ + 77.625287934494693, + 13.098100819916199 + ], + [ + 77.625260964792602, + 13.098168414734699 + ], + [ + 77.625211197676805, + 13.0983461214062 + ], + [ + 77.625122151715402, + 13.098322813403099 + ], + [ + 77.624155755004494, + 13.098069859038601 + ], + [ + 77.624088559365603, + 13.098052270804899 + ], + [ + 77.623771870560802, + 13.0983132103547 + ], + [ + 77.623273273534707, + 13.098614913050101 + ] + ], + [ + [ + 77.622493299351504, + 13.1101141201015 + ], + [ + 77.622346891800404, + 13.110127660613299 + ], + [ + 77.622085234326406, + 13.110151859385001 + ], + [ + 77.622078406660293, + 13.110152490821701 + ], + [ + 77.622078029448105, + 13.1101525551907 + ], + [ + 77.622044388946406, + 13.1100837119291 + ], + [ + 77.621981926050196, + 13.109955886725899 + ], + [ + 77.621694739936601, + 13.109368180416 + ], + [ + 77.621655998105993, + 13.1092888967951 + ], + [ + 77.621655978321897, + 13.109288856343101 + ], + [ + 77.621655959488095, + 13.109288818591599 + ], + [ + 77.621637623035099, + 13.1092512942278 + ], + [ + 77.621636360596, + 13.109248710679999 + ], + [ + 77.621630626862796, + 13.1092369768427 + ], + [ + 77.621609186683798, + 13.109194977862799 + ], + [ + 77.621579785636897, + 13.109137384856799 + ], + [ + 77.621470617821402, + 13.108923541508 + ], + [ + 77.621119974992297, + 13.1083963570252 + ], + [ + 77.620979415525198, + 13.1082329151096 + ], + [ + 77.620918523683599, + 13.108205275167601 + ], + [ + 77.620848019451003, + 13.1081732719801 + ], + [ + 77.6208188431862, + 13.108157060847301 + ], + [ + 77.620742488353102, + 13.1081146376013 + ], + [ + 77.620749418313395, + 13.1081073081907 + ], + [ + 77.620768325998597, + 13.108087311253399 + ], + [ + 77.620770333062296, + 13.1080851876933 + ], + [ + 77.620780976382306, + 13.108073931319 + ], + [ + 77.620816979715002, + 13.1080358530391 + ], + [ + 77.620876560198397, + 13.1079728392397 + ], + [ + 77.621060982459696, + 13.1078649592309 + ], + [ + 77.621043110654497, + 13.107778432725301 + ], + [ + 77.621562679979604, + 13.107687137875899 + ], + [ + 77.621782348312394, + 13.1076962289969 + ], + [ + 77.621936156145395, + 13.1076701204817 + ], + [ + 77.622072172586599, + 13.1076007733427 + ], + [ + 77.622434996503102, + 13.107428589381801 + ], + [ + 77.622449221030394, + 13.107411995293001 + ], + [ + 77.622544688875905, + 13.1073628481375 + ], + [ + 77.622734234146506, + 13.1073597438111 + ], + [ + 77.622817028729401, + 13.1073600752082 + ], + [ + 77.622903012097794, + 13.107321600714499 + ], + [ + 77.622951615401306, + 13.1072658813346 + ], + [ + 77.622953079477199, + 13.1072116610086 + ], + [ + 77.622953875013295, + 13.107182193657801 + ], + [ + 77.622953024419004, + 13.1071724653817 + ], + [ + 77.6229417214535, + 13.107043206947701 + ], + [ + 77.622899303825307, + 13.1068091031497 + ], + [ + 77.622870498479301, + 13.1066501255085 + ], + [ + 77.622847533514999, + 13.1065233789261 + ], + [ + 77.622817171775296, + 13.1063558121432 + ], + [ + 77.622803592970797, + 13.1062808717131 + ], + [ + 77.622796445926895, + 13.1062223078345 + ], + [ + 77.622783002688294, + 13.106112149340399 + ], + [ + 77.622684212154994, + 13.1061287172643 + ], + [ + 77.622640451219695, + 13.1061360557998 + ], + [ + 77.622637466831193, + 13.1061127466161 + ], + [ + 77.622622980802007, + 13.105999587653899 + ], + [ + 77.622603502707193, + 13.1058474350816 + ], + [ + 77.622566830021199, + 13.105682772783 + ], + [ + 77.622525472675306, + 13.1054970744005 + ], + [ + 77.622474254439794, + 13.1052671018321 + ], + [ + 77.622469501406002, + 13.105240226821101 + ], + [ + 77.622417995872894, + 13.104949023175299 + ], + [ + 77.622386893594495, + 13.1047731731918 + ], + [ + 77.622368821858203, + 13.1046709954708 + ], + [ + 77.622346527591702, + 13.1045449456785 + ], + [ + 77.622346990319201, + 13.1044585624095 + ], + [ + 77.622347550235304, + 13.104354296070801 + ], + [ + 77.622347847741594, + 13.1042987731316 + ], + [ + 77.622361701556599, + 13.104205614409 + ], + [ + 77.6223752163271, + 13.1041147303083 + ], + [ + 77.622338089659394, + 13.103931341221999 + ], + [ + 77.622342798732603, + 13.103822179535401 + ], + [ + 77.622326883594795, + 13.10367264662 + ], + [ + 77.622323261292905, + 13.1036386150237 + ], + [ + 77.622328746347804, + 13.1036041808651 + ], + [ + 77.622334257374604, + 13.1035695883457 + ], + [ + 77.622333860841394, + 13.103566435869901 + ], + [ + 77.622328684462204, + 13.103525256055599 + ], + [ + 77.622402433371704, + 13.1035184462831 + ], + [ + 77.622465226314603, + 13.1035189364292 + ], + [ + 77.622590251860203, + 13.10352105164 + ], + [ + 77.622658815643106, + 13.1035226122598 + ], + [ + 77.622765971968207, + 13.1035237800138 + ], + [ + 77.622911528478696, + 13.1035064886358 + ], + [ + 77.623020256257405, + 13.103492959895499 + ], + [ + 77.623210571651896, + 13.103459403037199 + ], + [ + 77.623258870233101, + 13.1034510064742 + ], + [ + 77.623411228833902, + 13.103423482227299 + ], + [ + 77.623875111235805, + 13.103335033460199 + ], + [ + 77.624555875307294, + 13.103205230150101 + ], + [ + 77.624634897716305, + 13.103190162202401 + ], + [ + 77.624916101759794, + 13.1031365441423 + ], + [ + 77.624930541789993, + 13.1031337907033 + ], + [ + 77.624930918913606, + 13.103133719105699 + ], + [ + 77.624967687225805, + 13.1031267080921 + ], + [ + 77.625225845287702, + 13.1038072453607 + ], + [ + 77.625359896389497, + 13.103774836574701 + ], + [ + 77.625395489746893, + 13.1038634251628 + ], + [ + 77.625574812585995, + 13.104309739200399 + ], + [ + 77.625578254590195, + 13.1043208205465 + ], + [ + 77.625594984701905, + 13.1043746891471 + ], + [ + 77.625605508300296, + 13.104408573492 + ], + [ + 77.625561901695093, + 13.104427114937399 + ], + [ + 77.625587132842796, + 13.1045162174069 + ], + [ + 77.625649872806093, + 13.104737779982999 + ], + [ + 77.625767748349205, + 13.1051540492578 + ], + [ + 77.626030022406496, + 13.105081270692899 + ], + [ + 77.626057277514505, + 13.1051267359663 + ], + [ + 77.626063529260804, + 13.105137164404599 + ], + [ + 77.626067249540796, + 13.105143370828999 + ], + [ + 77.626068328555604, + 13.105145170257099 + ], + [ + 77.626070895684506, + 13.1051494524355 + ], + [ + 77.6260726615198, + 13.105152397609301 + ], + [ + 77.626071814908599, + 13.105159211601499 + ], + [ + 77.626071189928197, + 13.105164241816601 + ], + [ + 77.626070101303299, + 13.105173003310201 + ], + [ + 77.626069833798795, + 13.105175154338101 + ], + [ + 77.626065909724005, + 13.105206725940199 + ], + [ + 77.626065215942404, + 13.1052123079347 + ], + [ + 77.626061286836304, + 13.105243926565301 + ], + [ + 77.626092928437004, + 13.1054989347421 + ], + [ + 77.626112079021894, + 13.105723136688701 + ], + [ + 77.626135989559003, + 13.1058856127274 + ], + [ + 77.626141370601104, + 13.105898236279399 + ], + [ + 77.626239313615898, + 13.106128003054 + ], + [ + 77.626455778126598, + 13.106381230675501 + ], + [ + 77.626628218693, + 13.1065869107689 + ], + [ + 77.626657200370005, + 13.1066691910932 + ], + [ + 77.626900864218598, + 13.106893819941501 + ], + [ + 77.627043203507696, + 13.1072277379031 + ], + [ + 77.627147635146798, + 13.1074727253249 + ], + [ + 77.627212888510002, + 13.107625804081099 + ], + [ + 77.627275424445699, + 13.107772507182901 + ], + [ + 77.627354538774696, + 13.1079581016988 + ], + [ + 77.627524120984106, + 13.1081248596678 + ], + [ + 77.627778136024006, + 13.108277990964201 + ], + [ + 77.627894232496402, + 13.1083479785562 + ], + [ + 77.628164135653094, + 13.1086137202413 + ], + [ + 77.628469020896304, + 13.109132715570301 + ], + [ + 77.628583137575106, + 13.109326971818399 + ], + [ + 77.628809601210406, + 13.109614271120099 + ], + [ + 77.6294774561227, + 13.110357381678799 + ], + [ + 77.629475008344201, + 13.110359831408401 + ], + [ + 77.629475243733594, + 13.110359951867901 + ], + [ + 77.629482454235202, + 13.110368028757399 + ], + [ + 77.629834349068005, + 13.110762234044399 + ], + [ + 77.630074737084001, + 13.111031523796701 + ], + [ + 77.630189295458706, + 13.1112039093366 + ], + [ + 77.630240898485695, + 13.1112860292401 + ], + [ + 77.630084658792597, + 13.1112531791614 + ], + [ + 77.629779792170197, + 13.111189080380999 + ], + [ + 77.629641649872099, + 13.1111600355308 + ], + [ + 77.629059841369298, + 13.1110326056255 + ], + [ + 77.628944059884105, + 13.111007246531001 + ], + [ + 77.628884997712206, + 13.1109943101584 + ], + [ + 77.628801366883096, + 13.1109759927522 + ], + [ + 77.628487887670701, + 13.110908617762201 + ], + [ + 77.628472695751697, + 13.110905352535299 + ], + [ + 77.628253088718196, + 13.110858152415901 + ], + [ + 77.627956008999703, + 13.1107943015651 + ], + [ + 77.627896892205598, + 13.1107815967757 + ], + [ + 77.627689376005705, + 13.1107369947122 + ], + [ + 77.627475574983293, + 13.1106200269643 + ], + [ + 77.627191468605403, + 13.110556107820701 + ], + [ + 77.626980779824393, + 13.1104863008528 + ], + [ + 77.626818415309103, + 13.1104150079366 + ], + [ + 77.626519378708096, + 13.1103548195603 + ], + [ + 77.626142603519995, + 13.1102793058842 + ], + [ + 77.626127979273804, + 13.1102763753014 + ], + [ + 77.625892458072201, + 13.1102302187939 + ], + [ + 77.625820867868796, + 13.110215139134 + ], + [ + 77.625794898467205, + 13.1102650912804 + ], + [ + 77.6257909855603, + 13.110330628151299 + ], + [ + 77.625583303792496, + 13.1103022556375 + ], + [ + 77.625556735597698, + 13.110299349224899 + ], + [ + 77.625432201361093, + 13.1102857279889 + ], + [ + 77.625262908557104, + 13.110266346620399 + ], + [ + 77.625187655005405, + 13.1102577309601 + ], + [ + 77.6248312236782, + 13.110217322970399 + ], + [ + 77.624801708156795, + 13.1101614436161 + ], + [ + 77.624800939700805, + 13.1101599888321 + ], + [ + 77.624560902159004, + 13.1101271951007 + ], + [ + 77.624508889705098, + 13.1101274993117 + ], + [ + 77.624354716807304, + 13.110128401916 + ], + [ + 77.624268332914596, + 13.110128909078499 + ], + [ + 77.623995145575904, + 13.110130508356001 + ], + [ + 77.623916428723206, + 13.110130968900201 + ], + [ + 77.623694458627, + 13.1101155127491 + ], + [ + 77.623474061617401, + 13.110108292105499 + ], + [ + 77.623424386159101, + 13.110095782741 + ], + [ + 77.623117826092297, + 13.1100786094337 + ], + [ + 77.6230362391738, + 13.1100740389482 + ], + [ + 77.623009186179004, + 13.1100725239318 + ], + [ + 77.622679131996804, + 13.110097769526 + ], + [ + 77.622626819488303, + 13.1101017713519 + ], + [ + 77.622571905393897, + 13.110106850324801 + ], + [ + 77.622531095041595, + 13.1101106247843 + ], + [ + 77.622493299351504, + 13.1101141201015 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "229", + "group": "HOYSALA NAGARA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "6", + "ward_name": "6 - Sarojini Nagar", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಸರೋಜಿನಿ ನಗರ", + "dig_ward_n": "HOYSALA NAGARA", + "Assembly": "151 - K.R. Pura", + "Slno": "6" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.662796365509706, + 13.019143634338301 + ], + [ + 77.662677950945294, + 13.019907235567601 + ], + [ + 77.662596741664601, + 13.020110767361 + ], + [ + 77.661994203806501, + 13.0216208747735 + ], + [ + 77.661492298097997, + 13.022558215002199 + ], + [ + 77.661479714927097, + 13.022573009837901 + ], + [ + 77.660048989309999, + 13.024255196995799 + ], + [ + 77.659472741284205, + 13.0249327170439 + ], + [ + 77.659575362926503, + 13.0250607443951 + ], + [ + 77.6599985704933, + 13.025463166613299 + ], + [ + 77.660234238715901, + 13.0257469067696 + ], + [ + 77.660265936888393, + 13.025783129676199 + ], + [ + 77.660829477298293, + 13.026482974837201 + ], + [ + 77.661099012620198, + 13.026767449340101 + ], + [ + 77.661322536754696, + 13.027153563816499 + ], + [ + 77.661401148303497, + 13.0272733685995 + ], + [ + 77.661486617888798, + 13.0273917111023 + ], + [ + 77.661771020409205, + 13.0274895619683 + ], + [ + 77.662053056891594, + 13.0276480033358 + ], + [ + 77.662323781519305, + 13.0278343997236 + ], + [ + 77.662722130987405, + 13.028095268270601 + ], + [ + 77.663206349345401, + 13.028353213712499 + ], + [ + 77.663642905665199, + 13.028713232152301 + ], + [ + 77.663826370379496, + 13.028785269444199 + ], + [ + 77.664125151684004, + 13.0284106997112 + ], + [ + 77.664294946913202, + 13.028229973458799 + ], + [ + 77.665187647152194, + 13.027356949061801 + ], + [ + 77.666032979623395, + 13.026520361409201 + ], + [ + 77.665875054299406, + 13.026307786394099 + ], + [ + 77.667344040973305, + 13.0249645889334 + ], + [ + 77.668153718667597, + 13.023969842051899 + ], + [ + 77.668425539036406, + 13.0237413972739 + ], + [ + 77.668489156569507, + 13.023426201314299 + ], + [ + 77.668876645180404, + 13.022735083568101 + ], + [ + 77.669512820511599, + 13.022093124824799 + ], + [ + 77.669786910422502, + 13.0217967494011 + ], + [ + 77.670486446411203, + 13.0226587559547 + ], + [ + 77.670580353778703, + 13.022550228826701 + ], + [ + 77.6708433586262, + 13.0223705805839 + ], + [ + 77.671146512340002, + 13.0221432152986 + ], + [ + 77.671910226503698, + 13.0216593353323 + ], + [ + 77.672272769978406, + 13.021427468117301 + ], + [ + 77.672926811673605, + 13.020976875108699 + ], + [ + 77.673990764611602, + 13.0202889493735 + ], + [ + 77.674325982660505, + 13.0201227978189 + ], + [ + 77.674541823394094, + 13.019994259047801 + ], + [ + 77.675128330738801, + 13.019771768843 + ], + [ + 77.675502933645205, + 13.0195785823332 + ], + [ + 77.675554135520798, + 13.0195491890365 + ], + [ + 77.676143529416805, + 13.019273856115399 + ], + [ + 77.676091930005995, + 13.0191448225171 + ], + [ + 77.675832326762304, + 13.018517029364499 + ], + [ + 77.675726025537699, + 13.0183139405414 + ], + [ + 77.675660872001203, + 13.018150038250001 + ], + [ + 77.675589832902801, + 13.017715779878399 + ], + [ + 77.675502250266007, + 13.017247471014301 + ], + [ + 77.675951667136403, + 13.0171543573666 + ], + [ + 77.675933639807994, + 13.0170024127418 + ], + [ + 77.675896406346297, + 13.0167589575713 + ], + [ + 77.675851224783202, + 13.0164426866295 + ], + [ + 77.675687988168093, + 13.0164579900622 + ], + [ + 77.675029940563306, + 13.016474750964599 + ], + [ + 77.674668488058401, + 13.0164951555415 + ], + [ + 77.673604535120404, + 13.016535964695301 + ], + [ + 77.673132965580294, + 13.016592934854801 + ], + [ + 77.673212800891605, + 13.016865920112799 + ], + [ + 77.673019650944795, + 13.0169431800915 + ], + [ + 77.673357019518505, + 13.017800765855 + ], + [ + 77.672718337027902, + 13.017996491134401 + ], + [ + 77.672069353206894, + 13.0182488737314 + ], + [ + 77.672490420090796, + 13.018667365282701 + ], + [ + 77.671424232384794, + 13.0193627050909 + ], + [ + 77.670543468627599, + 13.018387941693099 + ], + [ + 77.6702778603523, + 13.018482051216299 + ], + [ + 77.670417777450993, + 13.0187123314413 + ], + [ + 77.670139141405798, + 13.018879830224099 + ], + [ + 77.669415038243699, + 13.0191524873142 + ], + [ + 77.668343697803607, + 13.019539858078501 + ], + [ + 77.6682009659187, + 13.019589728247601 + ], + [ + 77.668001181174006, + 13.019075268097399 + ], + [ + 77.668249867894403, + 13.019004421299201 + ], + [ + 77.668213721568804, + 13.0188453774664 + ], + [ + 77.668128416240194, + 13.018213539694299 + ], + [ + 77.669223380967694, + 13.0180444459155 + ], + [ + 77.669242925652895, + 13.018096929106701 + ], + [ + 77.669550677901398, + 13.0180261074595 + ], + [ + 77.669815937161601, + 13.017946272148199 + ], + [ + 77.670274346368501, + 13.0174415069541 + ], + [ + 77.670583929041797, + 13.017592994644 + ], + [ + 77.670611620931496, + 13.0172781811797 + ], + [ + 77.670485523643606, + 13.0166740578324 + ], + [ + 77.670430214256797, + 13.0163642936747 + ], + [ + 77.671041795490197, + 13.016362442585001 + ], + [ + 77.6711628361235, + 13.0163495659219 + ], + [ + 77.671292890421, + 13.016334113926099 + ], + [ + 77.671415218720597, + 13.016304497601 + ], + [ + 77.671592916671599, + 13.0162645799453 + ], + [ + 77.671993380894506, + 13.016205347294999 + ], + [ + 77.672234174494804, + 13.0161602789741 + ], + [ + 77.6723539274617, + 13.0162182239581 + ], + [ + 77.672401571115302, + 13.0161989089634 + ], + [ + 77.672301133142994, + 13.0159594030295 + ], + [ + 77.672822637999104, + 13.015749513420699 + ], + [ + 77.673511539475896, + 13.015504856821501 + ], + [ + 77.673323540194303, + 13.015124995259599 + ], + [ + 77.673146345441197, + 13.014553966819999 + ], + [ + 77.673159670376293, + 13.0145483938017 + ], + [ + 77.673188508482994, + 13.014509853675801 + ], + [ + 77.6734883614822, + 13.014631819062201 + ], + [ + 77.673490564053907, + 13.0146319661867 + ], + [ + 77.673850195715801, + 13.014729681701899 + ], + [ + 77.673564333794602, + 13.0131368384745 + ], + [ + 77.673596525452396, + 13.012910209203699 + ], + [ + 77.673539224301507, + 13.012909565370499 + ], + [ + 77.6735361250648, + 13.0123742123818 + ], + [ + 77.673566857129799, + 13.0115244044666 + ], + [ + 77.673251192967896, + 13.011534109552301 + ], + [ + 77.672467418496495, + 13.011558202626899 + ], + [ + 77.672252768110695, + 13.0115648013198 + ], + [ + 77.671712768600599, + 13.0115908392245 + ], + [ + 77.670868072706796, + 13.0116315657631 + ], + [ + 77.670762598333695, + 13.0116433480509 + ], + [ + 77.670392832413995, + 13.0116846552065 + ], + [ + 77.670024796233903, + 13.0117257687904 + ], + [ + 77.669736410329705, + 13.011791900567999 + ], + [ + 77.669882157307498, + 13.013861507652701 + ], + [ + 77.6699456695424, + 13.014464100525201 + ], + [ + 77.669898025888898, + 13.014484703186101 + ], + [ + 77.669832354907001, + 13.014488566185101 + ], + [ + 77.669860295260804, + 13.0148292675853 + ], + [ + 77.668174731462599, + 13.014972828358401 + ], + [ + 77.668193678569295, + 13.0151280488898 + ], + [ + 77.667051750998198, + 13.015287641830399 + ], + [ + 77.667006569435102, + 13.0153342808633 + ], + [ + 77.666904546550597, + 13.015354685440199 + ], + [ + 77.666563498622494, + 13.015249747616201 + ], + [ + 77.666118970340307, + 13.0150894259406 + ], + [ + 77.665932414208697, + 13.015001977754 + ], + [ + 77.665696304104699, + 13.014907242218399 + ], + [ + 77.665503918094004, + 13.014802304394401 + ], + [ + 77.665378575693097, + 13.0147206860868 + ], + [ + 77.665120603542306, + 13.0145385023646 + ], + [ + 77.664579882254699, + 13.0140983464916 + ], + [ + 77.664358346848502, + 13.013975919030299 + ], + [ + 77.663944425431495, + 13.0137470962751 + ], + [ + 77.663732829423495, + 13.013503908266999 + ], + [ + 77.663536333893703, + 13.013360866784 + ], + [ + 77.663110752718495, + 13.0132967381137 + ], + [ + 77.662987278946503, + 13.016083496081601 + ], + [ + 77.662903929346399, + 13.0179155307902 + ], + [ + 77.662869517097903, + 13.0186719154846 + ], + [ + 77.662796365509706, + 13.019143634338301 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "225", + "group": "Thyagarajnagar", + "Corporatio": "West", + "ac_no": "170", + "ac": "Basavanagudi", + "corporat_1": "5", + "ward_id": "83", + "ward_name": "83 - Thyagarajnagar", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಬಸವನಗುಡಿ", + "ward_name_": "ತ್ಯಾಗರಾಜನಗರ", + "dig_ward_n": "Thyagarajnagar", + "Assembly": "170 - Basavanagudi", + "Slno": "83" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.568127205310702, + 12.9337403949833 + ], + [ + 77.568150782240906, + 12.933738782580599 + ], + [ + 77.568114034585705, + 12.933552539711201 + ], + [ + 77.568112594857098, + 12.933545241334601 + ], + [ + 77.568110646091895, + 12.933535364093 + ], + [ + 77.568110174933494, + 12.933532976387299 + ], + [ + 77.568079943917994, + 12.9333797583218 + ], + [ + 77.568078991912401, + 12.9333749360258 + ], + [ + 77.568078414857794, + 12.9333720109043 + ], + [ + 77.568078237072896, + 12.9333711092012 + ], + [ + 77.568074279343506, + 12.9333510517487 + ], + [ + 77.568028248634505, + 12.9332140652938 + ], + [ + 77.568024063848597, + 12.9332016108307 + ], + [ + 77.568022910545807, + 12.933198179124499 + ], + [ + 77.567996519403906, + 12.9331196424568 + ], + [ + 77.567996478562904, + 12.933119521796099 + ], + [ + 77.567991157574596, + 12.9331036860503 + ], + [ + 77.567987696693507, + 12.9330933855196 + ], + [ + 77.567983726617797, + 12.933081570393099 + ], + [ + 77.567983071099107, + 12.933079618159701 + ], + [ + 77.567970990833501, + 12.933043667615999 + ], + [ + 77.567968139897602, + 12.933035186055699 + ], + [ + 77.567967996447706, + 12.933034759231001 + ], + [ + 77.567967729770203, + 12.933034081556 + ], + [ + 77.567966223387501, + 12.933030259419899 + ], + [ + 77.5679643875919, + 12.933024849544999 + ], + [ + 77.567963040901603, + 12.9330208812839 + ], + [ + 77.567953408899001, + 12.932992495644299 + ], + [ + 77.567952208477394, + 12.9329889596006 + ], + [ + 77.567943995352806, + 12.9329647556293 + ], + [ + 77.567942745533699, + 12.932961072809 + ], + [ + 77.567942202306, + 12.932959472720199 + ], + [ + 77.567941488134196, + 12.9329573692838 + ], + [ + 77.567927880657194, + 12.932917269754 + ], + [ + 77.567927469430202, + 12.932916057754101 + ], + [ + 77.567912295877605, + 12.9328713425377 + ], + [ + 77.5679119843672, + 12.9328704240818 + ], + [ + 77.567899387403799, + 12.9328333032246 + ], + [ + 77.567894352037001, + 12.932818464785701 + ], + [ + 77.567888376448096, + 12.932800854772699 + ], + [ + 77.567886843600704, + 12.932796336333301 + ], + [ + 77.567876003601995, + 12.932764392131199 + ], + [ + 77.567870633001604, + 12.932748566806399 + ], + [ + 77.567869734577997, + 12.932745919497499 + ], + [ + 77.567869182785302, + 12.932744292389099 + ], + [ + 77.5678560236002, + 12.9327055138041 + ], + [ + 77.567834720588394, + 12.932642736394101 + ], + [ + 77.567832216278404, + 12.932635356491501 + ], + [ + 77.567828943575904, + 12.9326257118177 + ], + [ + 77.5678192062215, + 12.932597018222999 + ], + [ + 77.567817565122695, + 12.9325921819292 + ], + [ + 77.567790724444095, + 12.932513084078501 + ], + [ + 77.567789719665498, + 12.9325101243176 + ], + [ + 77.567774933663699, + 12.932466551750901 + ], + [ + 77.567771634375205, + 12.932456828736701 + ], + [ + 77.567771354219701, + 12.932456003931 + ], + [ + 77.567770352260098, + 12.9324530495629 + ], + [ + 77.567751161519496, + 12.932396496165699 + ], + [ + 77.567750311538703, + 12.932393992028199 + ], + [ + 77.5677466029436, + 12.9323830642216 + ], + [ + 77.567727066415301, + 12.9323479857105 + ], + [ + 77.567726440569302, + 12.9323468625542 + ], + [ + 77.567714641334206, + 12.9323256761721 + ], + [ + 77.567712546090803, + 12.9323219140371 + ], + [ + 77.567703406034795, + 12.932305503333501 + ], + [ + 77.567687344072596, + 12.9322766632928 + ], + [ + 77.567685552846498, + 12.932273447464601 + ], + [ + 77.5676493970373, + 12.932208528843001 + ], + [ + 77.567648947607694, + 12.9322077237725 + ], + [ + 77.567641234718096, + 12.932193874763099 + ], + [ + 77.567636969171801, + 12.9321862157119 + ], + [ + 77.567633770491199, + 12.9321804732256 + ], + [ + 77.567633494622001, + 12.9321799772346 + ], + [ + 77.567632793712505, + 12.9321787192989 + ], + [ + 77.567629079895795, + 12.9321720513259 + ], + [ + 77.567627761568801, + 12.9321696837023 + ], + [ + 77.567627740928401, + 12.932169646863899 + ], + [ + 77.567627312111696, + 12.9321688759217 + ], + [ + 77.5676271619826, + 12.932168606363399 + ], + [ + 77.567610112006705, + 12.9321379926223 + ], + [ + 77.567585868055801, + 12.9320944634478 + ], + [ + 77.567551757815707, + 12.932033217986699 + ], + [ + 77.567522606534297, + 12.931980876030799 + ], + [ + 77.567497782724203, + 12.931936303639899 + ], + [ + 77.567492683982294, + 12.931927149438399 + ], + [ + 77.567485550986703, + 12.931914341816301 + ], + [ + 77.567484691504106, + 12.931912799045801 + ], + [ + 77.567483877060198, + 12.9319113371428 + ], + [ + 77.567477240067404, + 12.931906767753301 + ], + [ + 77.567477024866903, + 12.9319066198982 + ], + [ + 77.567453150243395, + 12.931890182559799 + ], + [ + 77.567442727682902, + 12.9318825542939 + ], + [ + 77.567440970019007, + 12.9318812679105 + ], + [ + 77.567439853943696, + 12.931880753085901 + ], + [ + 77.567431623157702, + 12.9318769600912 + ], + [ + 77.567376189820394, + 12.9318514139648 + ], + [ + 77.567373837790797, + 12.9318445184635 + ], + [ + 77.567373553888999, + 12.9318436873697 + ], + [ + 77.567367736955006, + 12.9318266332027 + ], + [ + 77.567366368648294, + 12.931822620878901 + ], + [ + 77.5673620007354, + 12.9318098158494 + ], + [ + 77.567361390175805, + 12.931808025792099 + ], + [ + 77.567345973318893, + 12.931762826846199 + ], + [ + 77.5673448490693, + 12.931759532172901 + ], + [ + 77.567335094361397, + 12.931730932672799 + ], + [ + 77.567333647267802, + 12.9317266916467 + ], + [ + 77.567331855463607, + 12.931721437627401 + ], + [ + 77.567331410135395, + 12.931720132905401 + ], + [ + 77.567316315196805, + 12.9316758785105 + ], + [ + 77.567316001858003, + 12.9316749609747 + ], + [ + 77.567303319732304, + 12.931637781269799 + ], + [ + 77.567302848678693, + 12.9316363927797 + ], + [ + 77.567301646609494, + 12.9316328739118 + ], + [ + 77.567298305172201, + 12.931623079024501 + ], + [ + 77.567290513202394, + 12.931600235082 + ], + [ + 77.567289957714806, + 12.9315986062006 + ], + [ + 77.567279359839304, + 12.9315675359162 + ], + [ + 77.567277890881897, + 12.931563228249001 + ], + [ + 77.567252440248794, + 12.9314886149056 + ], + [ + 77.567251460315205, + 12.931485741627601 + ], + [ + 77.567234322962804, + 12.9314355011598 + ], + [ + 77.567233374364406, + 12.9314327197257 + ], + [ + 77.567227229858304, + 12.931414704790001 + ], + [ + 77.567218060962006, + 12.931390425253699 + ], + [ + 77.567217979327907, + 12.931390188448701 + ], + [ + 77.567208131752494, + 12.9313641222345 + ], + [ + 77.567195878117403, + 12.931331639877101 + ], + [ + 77.567195180379301, + 12.931329791048899 + ], + [ + 77.567134797546004, + 12.931169733967099 + ], + [ + 77.567131109093197, + 12.931159959655901 + ], + [ + 77.567129729700994, + 12.931156303399399 + ], + [ + 77.567128041672106, + 12.931151828940401 + ], + [ + 77.567119320394994, + 12.9311287158685 + ], + [ + 77.567084627231694, + 12.931036657399 + ], + [ + 77.567079046369003, + 12.931021967041801 + ], + [ + 77.567077316057706, + 12.931017410783801 + ], + [ + 77.567036394755903, + 12.930909689872101 + ], + [ + 77.567034459070101, + 12.930904595368901 + ], + [ + 77.566994738966997, + 12.9308000346513 + ], + [ + 77.566992759726602, + 12.930794824030301 + ], + [ + 77.5669876057664, + 12.9307812569792 + ], + [ + 77.566953296594207, + 12.93069124915 + ], + [ + 77.566933290666796, + 12.9306376254233 + ], + [ + 77.566932370166995, + 12.9306351590159 + ], + [ + 77.566878925806506, + 12.930491912774 + ], + [ + 77.566876744821997, + 12.9304860681044 + ], + [ + 77.566858002275396, + 12.9304358316334 + ], + [ + 77.566839691313206, + 12.930386996688201 + ], + [ + 77.566836300496206, + 12.930377953044699 + ], + [ + 77.566820210940193, + 12.930335041873199 + ], + [ + 77.566817309662497, + 12.9303273034215 + ], + [ + 77.566772782198001, + 12.9302085478772 + ], + [ + 77.566761745543801, + 12.930178901877801 + ], + [ + 77.566757626095395, + 12.930167836459599 + ], + [ + 77.566754492219204, + 12.930159419090201 + ], + [ + 77.566716844959998, + 12.930058297216499 + ], + [ + 77.566713615427204, + 12.930049622399199 + ], + [ + 77.566701438852206, + 12.930016914274701 + ], + [ + 77.566700500296093, + 12.930014392932501 + ], + [ + 77.566691485080099, + 12.929990177797601 + ], + [ + 77.566691096785206, + 12.929989135417401 + ], + [ + 77.566676290929195, + 12.9299486247246 + ], + [ + 77.566676034440704, + 12.929948672420799 + ], + [ + 77.566598485140503, + 12.92996294386 + ], + [ + 77.566586692876001, + 12.929965114334699 + ], + [ + 77.5660342320909, + 12.930066783372499 + ], + [ + 77.565985671090203, + 12.9300757200868 + ], + [ + 77.565963348767696, + 12.9300798281255 + ], + [ + 77.565944928086594, + 12.930083217483601 + ], + [ + 77.565318172375697, + 12.930198557862299 + ], + [ + 77.565255258647795, + 12.930210135452599 + ], + [ + 77.565253182788496, + 12.9302105172479 + ], + [ + 77.565243687905607, + 12.930212264843499 + ], + [ + 77.565195017534705, + 12.9302212212654 + ], + [ + 77.565165711788694, + 12.930226614164599 + ], + [ + 77.564809762397303, + 12.93029181106 + ], + [ + 77.564806376459302, + 12.9302924315966 + ], + [ + 77.564681462497802, + 12.9303153110314 + ], + [ + 77.564640946100994, + 12.930322731926299 + ], + [ + 77.564608223837595, + 12.930328725443101 + ], + [ + 77.564120598189305, + 12.9304180400484 + ], + [ + 77.564109401488295, + 12.9304200907288 + ], + [ + 77.564104918762894, + 12.930420911763401 + ], + [ + 77.564082796566794, + 12.930424963477 + ], + [ + 77.563686716899795, + 12.9304975090949 + ], + [ + 77.563686334424403, + 12.9304954123171 + ], + [ + 77.563682381696594, + 12.9304737284527 + ], + [ + 77.563678202337698, + 12.9304508001721 + ], + [ + 77.563667811893296, + 12.9303937973761 + ], + [ + 77.563618401876198, + 12.930403317520099 + ], + [ + 77.563429372809694, + 12.930439054749201 + ], + [ + 77.563010734514606, + 12.930539160565999 + ], + [ + 77.562671011848906, + 12.930644137123901 + ], + [ + 77.5626709046022, + 12.9306441878676 + ], + [ + 77.562525498907604, + 12.930713325896599 + ], + [ + 77.562505271878806, + 12.930705619343099 + ], + [ + 77.562394293749804, + 12.9306615366266 + ], + [ + 77.562378360327997, + 12.930623296197499 + ], + [ + 77.562305798993194, + 12.930620620978599 + ], + [ + 77.561995453414198, + 12.930614634597999 + ], + [ + 77.5619134748395, + 12.9305917239591 + ], + [ + 77.561896114350702, + 12.9305828598786 + ], + [ + 77.561817980637997, + 12.9305418422899 + ], + [ + 77.561789625951505, + 12.9305274395591 + ], + [ + 77.561618312098602, + 12.9304376467731 + ], + [ + 77.561614259785301, + 12.930435427920999 + ], + [ + 77.561475940137697, + 12.930363380184099 + ], + [ + 77.561347808663001, + 12.930274292485899 + ], + [ + 77.561188824330003, + 12.930151627938001 + ], + [ + 77.560952800322696, + 12.929982288003201 + ], + [ + 77.5609487374048, + 12.9299790339849 + ], + [ + 77.560948781363194, + 12.930053054655399 + ], + [ + 77.560905630135593, + 12.9301097308946 + ], + [ + 77.560700178768499, + 12.930298437009199 + ], + [ + 77.560542408826706, + 12.930469617564601 + ], + [ + 77.560420306154597, + 12.930590474291 + ], + [ + 77.560119020927402, + 12.9309369250487 + ], + [ + 77.560021523430095, + 12.931022010351301 + ], + [ + 77.559904851680699, + 12.931147456837801 + ], + [ + 77.559817148762903, + 12.931245845907201 + ], + [ + 77.559599993066598, + 12.931459307680999 + ], + [ + 77.559599030066494, + 12.9314602540178 + ], + [ + 77.559445607264706, + 12.9316076608978 + ], + [ + 77.559274413343303, + 12.931787426014299 + ], + [ + 77.559363900965593, + 12.931863997028699 + ], + [ + 77.559534631710207, + 12.9319732367334 + ], + [ + 77.559846850583298, + 12.9321920027168 + ], + [ + 77.559879017348194, + 12.932242818442599 + ], + [ + 77.559644583813295, + 12.932737447439299 + ], + [ + 77.558971582870399, + 12.9323513069569 + ], + [ + 77.558596073388102, + 12.9321307540605 + ], + [ + 77.558410587514402, + 12.9324321686054 + ], + [ + 77.558060480021695, + 12.9323818397529 + ], + [ + 77.558017485356004, + 12.9323717442351 + ], + [ + 77.557911729599198, + 12.932324972979099 + ], + [ + 77.557699252612593, + 12.932232396548599 + ], + [ + 77.557555161804999, + 12.9321544476759 + ], + [ + 77.557386634575593, + 12.932070045461201 + ], + [ + 77.557318122810997, + 12.9320429881684 + ], + [ + 77.557178433490904, + 12.9319673220872 + ], + [ + 77.557092463242199, + 12.931921222098801 + ], + [ + 77.557180631156896, + 12.9317517494933 + ], + [ + 77.557201646668403, + 12.9317094729155 + ], + [ + 77.557061493774398, + 12.93163530943 + ], + [ + 77.556858686425301, + 12.931534987755001 + ], + [ + 77.556631424225301, + 12.9314263001145 + ], + [ + 77.556509206805003, + 12.931390207607 + ], + [ + 77.556478220939994, + 12.931314974708 + ], + [ + 77.556358775051706, + 12.9308810898731 + ], + [ + 77.556331969175602, + 12.9307923953552 + ], + [ + 77.556209944374501, + 12.9301503439961 + ], + [ + 77.556173981886104, + 12.929843268074601 + ], + [ + 77.556276773787204, + 12.929499352800301 + ], + [ + 77.556308649997405, + 12.928686371530199 + ], + [ + 77.555997264093307, + 12.928659327041601 + ], + [ + 77.555931553398693, + 12.9288571303008 + ], + [ + 77.555929953895401, + 12.928856715923001 + ], + [ + 77.555706877011005, + 12.9287815335008 + ], + [ + 77.555498431547207, + 12.928701698583 + ], + [ + 77.555114680292206, + 12.928552185107099 + ], + [ + 77.555013758695907, + 12.9285384797051 + ], + [ + 77.554886672241295, + 12.9285260202488 + ], + [ + 77.554701026342002, + 12.9285197905206 + ], + [ + 77.554640753722794, + 12.9285210364663 + ], + [ + 77.554674394254903, + 12.928800128288101 + ], + [ + 77.554690591548095, + 12.928943412035901 + ], + [ + 77.553759558673505, + 12.9292682923597 + ], + [ + 77.553659931831604, + 12.9291394829913 + ], + [ + 77.553621748337406, + 12.9290992198691 + ], + [ + 77.553574452168505, + 12.929061435592301 + ], + [ + 77.553475794555894, + 12.929054301197199 + ], + [ + 77.553275119436094, + 12.9290663712954 + ], + [ + 77.553298792403197, + 12.929172276674199 + ], + [ + 77.553343646445896, + 12.929311822585101 + ], + [ + 77.553306268076994, + 12.929450122550399 + ], + [ + 77.553520570725794, + 12.9304188452801 + ], + [ + 77.553544989802205, + 12.930471965751 + ], + [ + 77.5537875501375, + 12.930599390903 + ], + [ + 77.5538242844178, + 12.930616958696399 + ], + [ + 77.553842292511305, + 12.930618155662399 + ], + [ + 77.554248091897904, + 12.930844214115201 + ], + [ + 77.554298611255604, + 12.9308784575781 + ], + [ + 77.554765742884697, + 12.931195085585401 + ], + [ + 77.555007528967707, + 12.931376743857101 + ], + [ + 77.555262208429198, + 12.931657021688199 + ], + [ + 77.555396678212901, + 12.931782138433499 + ], + [ + 77.555504454523401, + 12.931884380759501 + ], + [ + 77.556024888626496, + 12.9323780897078 + ], + [ + 77.556160054, + 12.9325063133317 + ], + [ + 77.556258043987299, + 12.9325676376125 + ], + [ + 77.5563871038797, + 12.932648406086599 + ], + [ + 77.556611138868206, + 12.9327792892818 + ], + [ + 77.556786808566798, + 12.932898548647399 + ], + [ + 77.556860039850704, + 12.9329443779671 + ], + [ + 77.557144870407996, + 12.933129013901899 + ], + [ + 77.557915504394302, + 12.933527312240599 + ], + [ + 77.558015319596606, + 12.933581678269499 + ], + [ + 77.557721977273303, + 12.935518267141401 + ], + [ + 77.557634761078901, + 12.935697683312499 + ], + [ + 77.557572019563906, + 12.9358126732972 + ], + [ + 77.557685740477993, + 12.935791941075999 + ], + [ + 77.5581040681774, + 12.9357116786795 + ], + [ + 77.558240913629405, + 12.9356964373669 + ], + [ + 77.558493741010807, + 12.935652850575099 + ], + [ + 77.558452335027397, + 12.9352749183847 + ], + [ + 77.558543289058605, + 12.935240031907 + ], + [ + 77.558682834969503, + 12.935217604885599 + ], + [ + 77.558872218705702, + 12.9351814724623 + ], + [ + 77.5591472612046, + 12.9351216670719 + ], + [ + 77.559477436797394, + 12.9350481562795 + ], + [ + 77.559324694605806, + 12.934280557009901 + ], + [ + 77.559344231869105, + 12.9342845482948 + ], + [ + 77.5593938387794, + 12.9343097585535 + ], + [ + 77.559575276927902, + 12.9343575786858 + ], + [ + 77.559893132774206, + 12.934459636832599 + ], + [ + 77.5600343329005, + 12.9345048638399 + ], + [ + 77.560246193645497, + 12.9345487989848 + ], + [ + 77.560324908474897, + 12.934566763032301 + ], + [ + 77.560346827851006, + 12.9345213974958 + ], + [ + 77.560338304525004, + 12.9344025580251 + ], + [ + 77.560327800621593, + 12.9342687984054 + ], + [ + 77.560305587613399, + 12.9341220066045 + ], + [ + 77.560279390924094, + 12.9339429841695 + ], + [ + 77.5602626350029, + 12.933865028402799 + ], + [ + 77.5602203535489, + 12.9335427388841 + ], + [ + 77.560198227029304, + 12.9334043131268 + ], + [ + 77.560161552122196, + 12.9332732000187 + ], + [ + 77.560138706207198, + 12.933183784003599 + ], + [ + 77.560120564398105, + 12.933077589752701 + ], + [ + 77.560110450904801, + 12.9330418325534 + ], + [ + 77.5600701485549, + 12.9329993400549 + ], + [ + 77.560087193923906, + 12.932997977469 + ], + [ + 77.5601919021437, + 12.932989778922799 + ], + [ + 77.560252906954503, + 12.9329975461202 + ], + [ + 77.560322489784298, + 12.933010010199601 + ], + [ + 77.560519113721398, + 12.933053497727199 + ], + [ + 77.560563048796993, + 12.933060238053301 + ], + [ + 77.560677204571306, + 12.933080574510299 + ], + [ + 77.560776880221894, + 12.933071229918101 + ], + [ + 77.560855374796802, + 12.9330674920812 + ], + [ + 77.561092104467093, + 12.9330132934461 + ], + [ + 77.561458412483304, + 12.932924831306201 + ], + [ + 77.561693896207899, + 12.9327715799933 + ], + [ + 77.561731274576502, + 12.9329298150887 + ], + [ + 77.561797309695095, + 12.933169036650201 + ], + [ + 77.561852598532994, + 12.933153773816301 + ], + [ + 77.563397571118003, + 12.9325457523473 + ], + [ + 77.563400160638594, + 12.9325484047432 + ], + [ + 77.563482440497296, + 12.932722343634699 + ], + [ + 77.563489554918405, + 12.932740380788401 + ], + [ + 77.563617951515894, + 12.9326819390502 + ], + [ + 77.563941877431404, + 12.932471802070101 + ], + [ + 77.563990150680098, + 12.932599523470699 + ], + [ + 77.564167771441802, + 12.933048965165099 + ], + [ + 77.5642106728709, + 12.933169257772301 + ], + [ + 77.564278731408606, + 12.9333426105456 + ], + [ + 77.564369132669398, + 12.933567972392501 + ], + [ + 77.564399771379598, + 12.9336447612295 + ], + [ + 77.564417106698599, + 12.9337830752181 + ], + [ + 77.564425965499197, + 12.9338748984924 + ], + [ + 77.564426159819902, + 12.9338913882666 + ], + [ + 77.564440777300604, + 12.933889493636499 + ], + [ + 77.564801284616706, + 12.9337421716414 + ], + [ + 77.565304646652507, + 12.9335801987091 + ], + [ + 77.565915160012395, + 12.933468063602101 + ], + [ + 77.566100805911702, + 12.9334306852331 + ], + [ + 77.566257795061503, + 12.933420717668101 + ], + [ + 77.566502000405606, + 12.933400782538 + ], + [ + 77.5668321759983, + 12.9333335014738 + ], + [ + 77.567030611426304, + 12.933292508306099 + ], + [ + 77.567577839297201, + 12.9331762163633 + ], + [ + 77.567716870195994, + 12.9338235491212 + ], + [ + 77.568115577870898, + 12.933793489027099 + ], + [ + 77.568127205310702, + 12.9337403949833 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "226", + "group": "Amruthahalli", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "13", + "ward_name": "13 - Amruthahalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ಅಮೃತಹಳ್ಳಿ", + "dig_ward_n": "Amruthahalli", + "Assembly": "152 - Byatarayanapura", + "Slno": "13" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.599286301945199, + 13.0604235581793 + ], + [ + 77.598362206802804, + 13.060680624591599 + ], + [ + 77.5973278202774, + 13.060923665509099 + ], + [ + 77.5962044582446, + 13.061217362033201 + ], + [ + 77.596166428969497, + 13.062384274402399 + ], + [ + 77.595653040762798, + 13.0625139314458 + ], + [ + 77.595748112863205, + 13.0634493089022 + ], + [ + 77.5958051559155, + 13.064162415531101 + ], + [ + 77.595677468218, + 13.064312395383901 + ], + [ + 77.594847704538907, + 13.0644758606054 + ], + [ + 77.594714444847398, + 13.0644865213808 + ], + [ + 77.594771302315806, + 13.064719281641899 + ], + [ + 77.594850369732796, + 13.0649396043318 + ], + [ + 77.594960531077803, + 13.0653011822948 + ], + [ + 77.595074246014505, + 13.0655730320654 + ], + [ + 77.595214612889507, + 13.0655854696366 + ], + [ + 77.595569122873201, + 13.0667306487912 + ], + [ + 77.596821266591206, + 13.0664105136842 + ], + [ + 77.598237837367606, + 13.0660585937352 + ], + [ + 77.598656154164701, + 13.0659567222169 + ], + [ + 77.599255106984998, + 13.066040071787601 + ], + [ + 77.599636186337904, + 13.066062838749 + ], + [ + 77.599743142680097, + 13.066711111565599 + ], + [ + 77.599891692758803, + 13.0673420182253 + ], + [ + 77.599899838474002, + 13.0674047731159 + ], + [ + 77.599957054372595, + 13.067845583940001 + ], + [ + 77.5994398335081, + 13.0679752601042 + ], + [ + 77.599711683278699, + 13.0692492227549 + ], + [ + 77.599777424726497, + 13.0692332315919 + ], + [ + 77.599924898785204, + 13.069609023921901 + ], + [ + 77.6000128501815, + 13.069991035037599 + ], + [ + 77.599155993703206, + 13.070133232760099 + ], + [ + 77.599077322011297, + 13.070142297157201 + ], + [ + 77.598238805079205, + 13.070325162410599 + ], + [ + 77.598023275845307, + 13.070372164987999 + ], + [ + 77.5978033588177, + 13.070420123996399 + ], + [ + 77.597626728523494, + 13.070488439826301 + ], + [ + 77.597156870627103, + 13.070670167482801 + ], + [ + 77.596805104538404, + 13.070734993280499 + ], + [ + 77.596852640221101, + 13.071086906239 + ], + [ + 77.597014262675998, + 13.071522166730499 + ], + [ + 77.597068864307204, + 13.071729005694801 + ], + [ + 77.597185391675396, + 13.072170424587499 + ], + [ + 77.597216902311999, + 13.0723614499337 + ], + [ + 77.597231136880694, + 13.0724477430641 + ], + [ + 77.597280262273401, + 13.072745548858199 + ], + [ + 77.597347180936396, + 13.0727339027298 + ], + [ + 77.597454114019797, + 13.072714758565301 + ], + [ + 77.5976429332663, + 13.0727049541697 + ], + [ + 77.597782246946693, + 13.072697906250999 + ], + [ + 77.597967705179897, + 13.072697170604901 + ], + [ + 77.598201527933497, + 13.072694817099499 + ], + [ + 77.598282816382394, + 13.072701904150099 + ], + [ + 77.598585391359407, + 13.0727274013355 + ], + [ + 77.598641969432094, + 13.072732168498099 + ], + [ + 77.598968835465996, + 13.0727593694511 + ], + [ + 77.599074999780896, + 13.0727682991061 + ], + [ + 77.599208654768205, + 13.0727795412179 + ], + [ + 77.599311263160601, + 13.0727875426106 + ], + [ + 77.599647320237494, + 13.0728123915917 + ], + [ + 77.599963796021299, + 13.0728374372841 + ], + [ + 77.600294163940902, + 13.072869118369301 + ], + [ + 77.600537427824904, + 13.072888124891 + ], + [ + 77.600611169214901, + 13.072889640784201 + ], + [ + 77.600778245087199, + 13.072893604445699 + ], + [ + 77.600904108859496, + 13.0728923367072 + ], + [ + 77.600919612614106, + 13.0728921805444 + ], + [ + 77.601086937967295, + 13.072890495087201 + ], + [ + 77.601224677406904, + 13.0728981418115 + ], + [ + 77.601261031351001, + 13.0729045512709 + ], + [ + 77.601305460004895, + 13.072912008659999 + ], + [ + 77.601727567946696, + 13.0728594643085 + ], + [ + 77.601893534357103, + 13.072822569203201 + ], + [ + 77.601747837094393, + 13.072307298396099 + ], + [ + 77.601487536497004, + 13.071292747944799 + ], + [ + 77.601521295618795, + 13.0711985777628 + ], + [ + 77.601715632668899, + 13.0711701490286 + ], + [ + 77.601738064716997, + 13.071241220864099 + ], + [ + 77.601918915519605, + 13.071222455042999 + ], + [ + 77.601924150065898, + 13.071221759065301 + ], + [ + 77.602312265814803, + 13.0712193074172 + ], + [ + 77.602398013667198, + 13.0712268894482 + ], + [ + 77.602739365015097, + 13.0712570720935 + ], + [ + 77.603406079335599, + 13.071357916039499 + ], + [ + 77.603875824261806, + 13.0714167123576 + ], + [ + 77.603856764710798, + 13.0712928817265 + ], + [ + 77.603813765823006, + 13.071178274292899 + ], + [ + 77.603795139987795, + 13.0711286283722 + ], + [ + 77.603736477856998, + 13.0709722500695 + ], + [ + 77.603694438920101, + 13.0708631338589 + ], + [ + 77.603661851554506, + 13.0707765079244 + ], + [ + 77.603622477376305, + 13.0704821630759 + ], + [ + 77.6034492372317, + 13.068847687010299 + ], + [ + 77.603441574675401, + 13.0687753873848 + ], + [ + 77.603894860626994, + 13.068610460520199 + ], + [ + 77.603971748051293, + 13.0685825827091 + ], + [ + 77.604015351238104, + 13.0685663332233 + ], + [ + 77.604246589255496, + 13.068482693831999 + ], + [ + 77.604264947227605, + 13.068475733068301 + ], + [ + 77.604499040881393, + 13.0683898061314 + ], + [ + 77.604800842562398, + 13.068279481384799 + ], + [ + 77.604974114778898, + 13.0682156236973 + ], + [ + 77.605064776268705, + 13.068183089579501 + ], + [ + 77.605476736549605, + 13.0680321284139 + ], + [ + 77.605720714398402, + 13.0679551350332 + ], + [ + 77.605846434785306, + 13.0679154713453 + ], + [ + 77.606011186312102, + 13.067862991781 + ], + [ + 77.606268373996798, + 13.067782476838399 + ], + [ + 77.606418775093502, + 13.0677346589425 + ], + [ + 77.606434277108605, + 13.0677299854156 + ], + [ + 77.606769431782197, + 13.0676148050058 + ], + [ + 77.6070047344664, + 13.067534510266601 + ], + [ + 77.607022528211303, + 13.067528684302999 + ], + [ + 77.607213640244595, + 13.067463515977501 + ], + [ + 77.607310071929405, + 13.067432052205801 + ], + [ + 77.607602246317398, + 13.067337631634301 + ], + [ + 77.6081200030399, + 13.0671697889232 + ], + [ + 77.608146411538101, + 13.0671616173617 + ], + [ + 77.608300831161102, + 13.0671126286478 + ], + [ + 77.608533900206993, + 13.0670391308863 + ], + [ + 77.608892688215803, + 13.0669259679508 + ], + [ + 77.609337493151699, + 13.066776928228 + ], + [ + 77.6094986449652, + 13.0667109317616 + ], + [ + 77.609578998160998, + 13.0666841467552 + ], + [ + 77.609773846213997, + 13.066602451003099 + ], + [ + 77.609701168105204, + 13.066306864254701 + ], + [ + 77.609660940378902, + 13.065877017096399 + ], + [ + 77.609655104530901, + 13.065814965955701 + ], + [ + 77.609642303361696, + 13.065678267861299 + ], + [ + 77.609562978499497, + 13.0648311691795 + ], + [ + 77.609514236772199, + 13.064577574702399 + ], + [ + 77.609449465612002, + 13.064258867299101 + ], + [ + 77.609432242781395, + 13.064174122494601 + ], + [ + 77.609424941798295, + 13.0641384596546 + ], + [ + 77.609417543653606, + 13.064102319886199 + ], + [ + 77.609383378842494, + 13.0639354328863 + ], + [ + 77.609374566391693, + 13.0638923862979 + ], + [ + 77.609342082781495, + 13.063724470471699 + ], + [ + 77.609285114026804, + 13.063429978906401 + ], + [ + 77.609283210931807, + 13.0634201427167 + ], + [ + 77.609099917478801, + 13.0634360444847 + ], + [ + 77.608988590554304, + 13.063445703198701 + ], + [ + 77.608700364194704, + 13.063476845176799 + ], + [ + 77.6084496894388, + 13.063518900517099 + ], + [ + 77.608346147050199, + 13.063531238521399 + ], + [ + 77.608253155268599, + 13.063506203887201 + ], + [ + 77.608191713883897, + 13.0634142234777 + ], + [ + 77.608124051110494, + 13.063278264085399 + ], + [ + 77.608085906481406, + 13.0632108925507 + ], + [ + 77.607922953810302, + 13.0631052560363 + ], + [ + 77.607864807140302, + 13.063052766915799 + ], + [ + 77.607821555836594, + 13.063047557044801 + ], + [ + 77.6077431394543, + 13.0630393142263 + ], + [ + 77.607650913482701, + 13.063032340021 + ], + [ + 77.607535848267204, + 13.062989459416 + ], + [ + 77.6074289760017, + 13.0629589181202 + ], + [ + 77.607382785965797, + 13.0629480914428 + ], + [ + 77.607258191427505, + 13.062930150937699 + ], + [ + 77.607148558274105, + 13.062910930138401 + ], + [ + 77.607064418543601, + 13.062906132677799 + ], + [ + 77.607032566592594, + 13.0628895148881 + ], + [ + 77.606991341335601, + 13.0628029765021 + ], + [ + 77.606967973711406, + 13.0627715925052 + ], + [ + 77.606921665186505, + 13.0627494741624 + ], + [ + 77.6068868745337, + 13.0627272396124 + ], + [ + 77.606845156435398, + 13.0626486110983 + ], + [ + 77.606821859959496, + 13.0626240020258 + ], + [ + 77.606703114476602, + 13.0625597018522 + ], + [ + 77.606575166613396, + 13.0624966237152 + ], + [ + 77.606374241560104, + 13.062394756875101 + ], + [ + 77.606249161455395, + 13.0623305203433 + ], + [ + 77.606139007217095, + 13.062261616098599 + ], + [ + 77.606069722384404, + 13.062245375679399 + ], + [ + 77.605895964054497, + 13.0622076032453 + ], + [ + 77.605745241455196, + 13.062169598401701 + ], + [ + 77.605763940502897, + 13.062030508676999 + ], + [ + 77.605734885264297, + 13.062005957544599 + ], + [ + 77.605715970074101, + 13.0620024469538 + ], + [ + 77.605561762238295, + 13.061973824829501 + ], + [ + 77.605415165808296, + 13.0619448123793 + ], + [ + 77.605305331733305, + 13.061906394987901 + ], + [ + 77.604913143365707, + 13.061690139322 + ], + [ + 77.604608507267997, + 13.0615294644725 + ], + [ + 77.604445734499507, + 13.061440762657501 + ], + [ + 77.604277131883407, + 13.0613453437937 + ], + [ + 77.604036096169494, + 13.061204252130899 + ], + [ + 77.603985059577099, + 13.061174377932399 + ], + [ + 77.603700580741105, + 13.0610134986793 + ], + [ + 77.603674428926595, + 13.0609911765631 + ], + [ + 77.603625572040102, + 13.0609016980069 + ], + [ + 77.603469651958704, + 13.0607414101784 + ], + [ + 77.603335481171996, + 13.0605790161712 + ], + [ + 77.603265275052095, + 13.0605144941762 + ], + [ + 77.603203087196107, + 13.0604789582584 + ], + [ + 77.603130238564702, + 13.060425654381801 + ], + [ + 77.602959578522203, + 13.0602784502048 + ], + [ + 77.602809968517093, + 13.060267763775901 + ], + [ + 77.602135232868207, + 13.0602124388754 + ], + [ + 77.602133456072295, + 13.0592227635666 + ], + [ + 77.602112134521605, + 13.0588114353188 + ], + [ + 77.602003195053399, + 13.058610032631501 + ], + [ + 77.601912910638404, + 13.058503400477599 + ], + [ + 77.601518839656507, + 13.057954091293301 + ], + [ + 77.6010317972395, + 13.057293585294 + ], + [ + 77.600899556242695, + 13.0571100794792 + ], + [ + 77.600751313976204, + 13.056708293414999 + ], + [ + 77.600344368614898, + 13.056795922406501 + ], + [ + 77.599584033131606, + 13.056983433488501 + ], + [ + 77.598847941221905, + 13.057220029528899 + ], + [ + 77.598468683374094, + 13.0573488014135 + ], + [ + 77.598730003551296, + 13.0582393070433 + ], + [ + 77.598906014202001, + 13.0589695362873 + ], + [ + 77.599267287446807, + 13.05899732015 + ], + [ + 77.599485952858899, + 13.059182546860701 + ], + [ + 77.599653937412398, + 13.0594901713475 + ], + [ + 77.599845831368199, + 13.0597566907305 + ], + [ + 77.600040404076907, + 13.0601273616094 + ], + [ + 77.599286301945199, + 13.0604235581793 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "227", + "group": "swamy vivekananda", + "Corporatio": "West", + "ac_no": "170", + "ac": "Basavanagudi", + "corporat_1": "5", + "ward_id": "87", + "ward_name": "87 - Swamy Vivekananda Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಬಸವನಗುಡಿ", + "ward_name_": "ಸ್ವಾಮಿ ವಿವೇಕಾನಂದ ವಾರ್ಡ್", + "dig_ward_n": "swamy vivekananda", + "Assembly": "170 - Basavanagudi", + "Slno": "87" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.545554673327203, + 12.928628474203601 + ], + [ + 77.545550322741704, + 12.928632151374 + ], + [ + 77.544962956009996, + 12.929129328932399 + ], + [ + 77.544943950255899, + 12.929145416335899 + ], + [ + 77.544608013425702, + 12.9294297692574 + ], + [ + 77.544492111646306, + 12.929527873544201 + ], + [ + 77.544177199914003, + 12.9298312726515 + ], + [ + 77.544095232290999, + 12.929910243519799 + ], + [ + 77.543601606776804, + 12.9303858187325 + ], + [ + 77.543447373804497, + 12.9305231311791 + ], + [ + 77.543441288796004, + 12.930528548986 + ], + [ + 77.543085859942195, + 12.930845969923499 + ], + [ + 77.542868482905305, + 12.931038947028 + ], + [ + 77.542483947645906, + 12.931381496555099 + ], + [ + 77.542382688735799, + 12.931454538860599 + ], + [ + 77.541587261233104, + 12.932028311121201 + ], + [ + 77.541547645070295, + 12.9320569333051 + ], + [ + 77.541213910429803, + 12.93229804734 + ], + [ + 77.541085646231494, + 12.932390714457201 + ], + [ + 77.541078628224994, + 12.932395784443701 + ], + [ + 77.540433219768801, + 12.932843643001901 + ], + [ + 77.539664952273597, + 12.933381914554399 + ], + [ + 77.5395927616525, + 12.9334323292329 + ], + [ + 77.539427149037607, + 12.933547984348801 + ], + [ + 77.539251739337402, + 12.9336579787514 + ], + [ + 77.5392515288233, + 12.933658110901 + ], + [ + 77.539264067095004, + 12.933674467135599 + ], + [ + 77.539315117759799, + 12.9337410629354 + ], + [ + 77.539337878720701, + 12.933885396830499 + ], + [ + 77.539402727907401, + 12.934206627261 + ], + [ + 77.539446912964806, + 12.9343631752514 + ], + [ + 77.539487511341207, + 12.9344497390853 + ], + [ + 77.539503502012195, + 12.934511211894099 + ], + [ + 77.539595929086701, + 12.934866538997699 + ], + [ + 77.539756824389599, + 12.935405925705901 + ], + [ + 77.539819881969706, + 12.9356130169521 + ], + [ + 77.5398360239449, + 12.9356660317418 + ], + [ + 77.539843137289196, + 12.9356862905677 + ], + [ + 77.5399419718768, + 12.9359484585466 + ], + [ + 77.539952578589407, + 12.935976594134999 + ], + [ + 77.539953461211098, + 12.935979070987701 + ], + [ + 77.5399874268887, + 12.9360744222804 + ], + [ + 77.540108688957304, + 12.9364148354433 + ], + [ + 77.540141003251406, + 12.936505548095701 + ], + [ + 77.540343693951996, + 12.937021940045399 + ], + [ + 77.540491768973595, + 12.9373751097189 + ], + [ + 77.540569834219795, + 12.9375798887142 + ], + [ + 77.540580470135097, + 12.9376068892057 + ], + [ + 77.540577972563, + 12.9376075721724 + ], + [ + 77.540533393874, + 12.9376197706399 + ], + [ + 77.540345043021901, + 12.937666779390799 + ], + [ + 77.540273283028696, + 12.9376866773123 + ], + [ + 77.540090779877403, + 12.9377426636346 + ], + [ + 77.539978149705405, + 12.9377629596468 + ], + [ + 77.539892296176305, + 12.937771046757099 + ], + [ + 77.539871172957007, + 12.937773036488201 + ], + [ + 77.539866590739805, + 12.937775339803901 + ], + [ + 77.539849493178394, + 12.9377924464461 + ], + [ + 77.539825904150106, + 12.9378035452294 + ], + [ + 77.539820255570305, + 12.9378062029205 + ], + [ + 77.539805375965798, + 12.9378132052141 + ], + [ + 77.5397788147082, + 12.937818482710099 + ], + [ + 77.539404922794603, + 12.937892771554299 + ], + [ + 77.539387429412301, + 12.937898261575601 + ], + [ + 77.5393417971585, + 12.9379125851463 + ], + [ + 77.539326483604796, + 12.9379353201812 + ], + [ + 77.539240880617598, + 12.9383506224589 + ], + [ + 77.539114131116406, + 12.938909750728 + ], + [ + 77.539111500133103, + 12.9389214600491 + ], + [ + 77.539100906537897, + 12.938968604288799 + ], + [ + 77.539011081109507, + 12.9393681098559 + ], + [ + 77.539007258377893, + 12.9393851142872 + ], + [ + 77.539005069204194, + 12.9393964281024 + ], + [ + 77.538966604193803, + 12.939589853872301 + ], + [ + 77.538966572879005, + 12.939589854177299 + ], + [ + 77.538925636716399, + 12.939795859565001 + ], + [ + 77.538920685501907, + 12.9398184945822 + ], + [ + 77.538898286927093, + 12.9400513567298 + ], + [ + 77.538887627701996, + 12.9401729115542 + ], + [ + 77.538853385605407, + 12.940563384978301 + ], + [ + 77.538831303783496, + 12.940713802239999 + ], + [ + 77.5387871991136, + 12.9410202828926 + ], + [ + 77.538780251006997, + 12.9411027977931 + ], + [ + 77.538780246877494, + 12.9411028448138 + ], + [ + 77.538779490446998, + 12.941111833595 + ], + [ + 77.538769293193496, + 12.941241807897001 + ], + [ + 77.538724684160499, + 12.941839663150001 + ], + [ + 77.538695425808001, + 12.942532233436699 + ], + [ + 77.538690941128607, + 12.9426034978042 + ], + [ + 77.538658232710404, + 12.9431232404272 + ], + [ + 77.538657042213998, + 12.9431763309935 + ], + [ + 77.538652639439604, + 12.943476023862701 + ], + [ + 77.538652612459003, + 12.943477907864199 + ], + [ + 77.538648970738393, + 12.943516340889699 + ], + [ + 77.538724727712307, + 12.9435152086992 + ], + [ + 77.5388485244018, + 12.943513358506401 + ], + [ + 77.539082987407099, + 12.9435098541986 + ], + [ + 77.5393402805976, + 12.9435050887349 + ], + [ + 77.539471501026995, + 12.9435016364161 + ], + [ + 77.539476685612698, + 12.9435015009716 + ], + [ + 77.539974519821101, + 12.9434864855877 + ], + [ + 77.540315533667197, + 12.9434682130748 + ], + [ + 77.540438286631698, + 12.9434616372927 + ], + [ + 77.540737486463001, + 12.9434451685852 + ], + [ + 77.541116022620002, + 12.9434177619687 + ], + [ + 77.541166642139004, + 12.943413930996 + ], + [ + 77.541183972767499, + 12.9434126200292 + ], + [ + 77.541510077264903, + 12.943387944809601 + ], + [ + 77.541621684211094, + 12.9433800767943 + ], + [ + 77.541628004163798, + 12.943379632090201 + ], + [ + 77.542295370004993, + 12.9433325743976 + ], + [ + 77.542332174783397, + 12.943330235875999 + ], + [ + 77.542333415006198, + 12.9433301831218 + ], + [ + 77.543055521759399, + 12.943299462721299 + ], + [ + 77.543302368577798, + 12.943278916850099 + ], + [ + 77.543332201688301, + 12.9432764339074 + ], + [ + 77.543346663574994, + 12.943275183319701 + ], + [ + 77.543666811223702, + 12.943247492601801 + ], + [ + 77.543759000163803, + 12.943239518776901 + ], + [ + 77.5442167877694, + 12.9432101353327 + ], + [ + 77.544360793867995, + 12.943200893735 + ], + [ + 77.544475337959398, + 12.943197117472 + ], + [ + 77.544798756380104, + 12.9431864537521 + ], + [ + 77.544802761118902, + 12.9431861508365 + ], + [ + 77.544802886296907, + 12.943186141483 + ], + [ + 77.544802915751603, + 12.9431861393885 + ], + [ + 77.544818000508698, + 12.9431850009936 + ], + [ + 77.544818202077494, + 12.943184985473399 + ], + [ + 77.544831209464903, + 12.9431840055923 + ], + [ + 77.544831487433598, + 12.943183984808799 + ], + [ + 77.544845114245206, + 12.9431829564158 + ], + [ + 77.544845290964403, + 12.9431829429451 + ], + [ + 77.544858081115905, + 12.943181977832401 + ], + [ + 77.544858471377296, + 12.9431819487246 + ], + [ + 77.544871352646595, + 12.943180976397301 + ], + [ + 77.544871635211294, + 12.943180954665401 + ], + [ + 77.544877844366496, + 12.9431804865725 + ], + [ + 77.544878033971003, + 12.9431804720725 + ], + [ + 77.544885054936401, + 12.9431799427479 + ], + [ + 77.544885415743096, + 12.943179915734699 + ], + [ + 77.544899310400197, + 12.9431788675576 + ], + [ + 77.544900483938207, + 12.9431787793038 + ], + [ + 77.544901073005207, + 12.9431787347027 + ], + [ + 77.544916000373703, + 12.943177608680701 + ], + [ + 77.544916600483901, + 12.9431775630683 + ], + [ + 77.544932622226995, + 12.9431763540818 + ], + [ + 77.544933203013798, + 12.943176310465001 + ], + [ + 77.544949351749096, + 12.943175089395901 + ], + [ + 77.5449510287621, + 12.943174963700701 + ], + [ + 77.544953502867102, + 12.9431747787244 + ], + [ + 77.544962173527907, + 12.943172884411499 + ], + [ + 77.545159148445507, + 12.9431298558513 + ], + [ + 77.545380102562902, + 12.9430652910078 + ], + [ + 77.545757408411703, + 12.9429550409755 + ], + [ + 77.545757702298005, + 12.9429549549859 + ], + [ + 77.545799895358101, + 12.9429426261205 + ], + [ + 77.545800079953494, + 12.9429425719163 + ], + [ + 77.545866888846106, + 12.9429230513192 + ], + [ + 77.546032467538794, + 12.9428745592946 + ], + [ + 77.546065301876197, + 12.9428649436745 + ], + [ + 77.546386108616403, + 12.942770980435601 + ], + [ + 77.546411594302597, + 12.942763129510899 + ], + [ + 77.5464115943862, + 12.942763129486501 + ], + [ + 77.5463978889007, + 12.942725751142 + ], + [ + 77.546023482237999, + 12.9417564054395 + ], + [ + 77.546023609893794, + 12.9417563680539 + ], + [ + 77.546328738918007, + 12.941686632484 + ], + [ + 77.546384806471494, + 12.9417763405696 + ], + [ + 77.546894398235395, + 12.941628073039301 + ], + [ + 77.546803444204201, + 12.941326554196101 + ], + [ + 77.546434644296795, + 12.941416262281599 + ], + [ + 77.546302574059794, + 12.941135924514199 + ], + [ + 77.546616475011902, + 12.9409992006292 + ], + [ + 77.546577105379598, + 12.9408662000998 + ], + [ + 77.546519388438696, + 12.940654493474099 + ], + [ + 77.546857125794006, + 12.9406497601362 + ], + [ + 77.546873008840706, + 12.9406495155123 + ], + [ + 77.547256407725001, + 12.940643620888 + ], + [ + 77.547368840631904, + 12.940641891582599 + ], + [ + 77.5474958272343, + 12.9406191363763 + ], + [ + 77.547743834380896, + 12.9405622109817 + ], + [ + 77.548005365188004, + 12.9405410090407 + ], + [ + 77.548012335186399, + 12.9405387364551 + ], + [ + 77.548339564774096, + 12.940476069803101 + ], + [ + 77.548346777753295, + 12.940473960168299 + ], + [ + 77.548758332902494, + 12.9403721598412 + ], + [ + 77.5486486896868, + 12.939896208609399 + ], + [ + 77.549418684087996, + 12.939605903276901 + ], + [ + 77.549422421924902, + 12.9391860195985 + ], + [ + 77.549512292915793, + 12.938971233307401 + ], + [ + 77.549057531379205, + 12.9387807456778 + ], + [ + 77.549179890032093, + 12.9385825804286 + ], + [ + 77.549319834718204, + 12.9383961932035 + ], + [ + 77.549390530059895, + 12.9383022751546 + ], + [ + 77.549489214876104, + 12.938158160919601 + ], + [ + 77.549730189649495, + 12.937985128126799 + ], + [ + 77.549769812710295, + 12.9379990831443 + ], + [ + 77.550061933730106, + 12.938254391270799 + ], + [ + 77.550383254657604, + 12.938505111926499 + ], + [ + 77.550733801324697, + 12.9387538711093 + ], + [ + 77.550883154058994, + 12.938821732655899 + ], + [ + 77.5510303615754, + 12.9389182991784 + ], + [ + 77.551168724565599, + 12.938983877497501 + ], + [ + 77.551355727625705, + 12.9390394174634 + ], + [ + 77.551502242435404, + 12.939067863842499 + ], + [ + 77.551616738575703, + 12.9390631574061 + ], + [ + 77.551756638064901, + 12.939040273941799 + ], + [ + 77.551875703272003, + 12.9390056433224 + ], + [ + 77.551976444130204, + 12.938966409992799 + ], + [ + 77.5520223917257, + 12.9389312997465 + ], + [ + 77.552059053388106, + 12.938941697507 + ], + [ + 77.552117558329897, + 12.938927402994 + ], + [ + 77.552109392848905, + 12.938884505167 + ], + [ + 77.552268211467407, + 12.9388594341759 + ], + [ + 77.552293410153695, + 12.9388554561831 + ], + [ + 77.552330535453706, + 12.9388466968459 + ], + [ + 77.552473358663903, + 12.938804753854299 + ], + [ + 77.552477397598096, + 12.938803566912901 + ], + [ + 77.552811745200799, + 12.938654962206 + ], + [ + 77.553104004931996, + 12.9386008794117 + ], + [ + 77.553181751386305, + 12.9385945069093 + ], + [ + 77.553158078419301, + 12.9380824232541 + ], + [ + 77.553008564943397, + 12.9373622666782 + ], + [ + 77.552927223539399, + 12.9372671497037 + ], + [ + 77.552916364966507, + 12.937253869408099 + ], + [ + 77.552899687198604, + 12.937243514583001 + ], + [ + 77.552848339874103, + 12.9371789986898 + ], + [ + 77.5528433686098, + 12.9371694851081 + ], + [ + 77.552826656880896, + 12.9370470424331 + ], + [ + 77.552736948795399, + 12.936809066817201 + ], + [ + 77.552541335331, + 12.936298229107599 + ], + [ + 77.552162567858502, + 12.935560629292899 + ], + [ + 77.551885967928001, + 12.935712634660099 + ], + [ + 77.551743930125795, + 12.935444756349 + ], + [ + 77.551659205822702, + 12.9354634455335 + ], + [ + 77.551044954625596, + 12.935763718431 + ], + [ + 77.550778789489399, + 12.934884703786899 + ], + [ + 77.550822241843704, + 12.934821472046099 + ], + [ + 77.550915687766206, + 12.9347180585585 + ], + [ + 77.5507570464395, + 12.934561031673701 + ], + [ + 77.550674731127799, + 12.9344649555477 + ], + [ + 77.550641795509605, + 12.9344265136153 + ], + [ + 77.550351869576801, + 12.9341981180276 + ], + [ + 77.549406224631795, + 12.9333076481019 + ], + [ + 77.548996308518497, + 12.9328067779575 + ], + [ + 77.548830597749301, + 12.932573786124101 + ], + [ + 77.548587526324297, + 12.932272697679499 + ], + [ + 77.547049332677801, + 12.9303702790099 + ], + [ + 77.546518663221804, + 12.9297286402239 + ], + [ + 77.546200913385803, + 12.9293656682429 + ], + [ + 77.5459438747978, + 12.9290720470424 + ], + [ + 77.545560330439599, + 12.928633913210501 + ], + [ + 77.545554673327203, + 12.928628474203601 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "230", + "group": "VIJNANA NAGARA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "35", + "ward_name": "35 - Vignana Nagara", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ವಿಜ್ಞಾನ ನಗರ", + "dig_ward_n": "VIJNANA NAGARA", + "Assembly": "151 - K.R. Pura", + "Slno": "35" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.666522454686898, + 12.971955221587599 + ], + [ + 77.666528032797103, + 12.9719924291204 + ], + [ + 77.666546375855305, + 12.972146946115901 + ], + [ + 77.666550383489195, + 12.972198849791701 + ], + [ + 77.666558194139199, + 12.972283462260901 + ], + [ + 77.666568116959496, + 12.972404188560599 + ], + [ + 77.6665726400837, + 12.9724504407779 + ], + [ + 77.666709072956706, + 12.972503245045001 + ], + [ + 77.666885491071397, + 12.9725804823322 + ], + [ + 77.666964765435793, + 12.9726180633168 + ], + [ + 77.666846379258402, + 12.972799954770901 + ], + [ + 77.666660917791006, + 12.9730085064003 + ], + [ + 77.666731959070404, + 12.9731918430283 + ], + [ + 77.666796324489994, + 12.9731810198658 + ], + [ + 77.666815417536696, + 12.9731898579366 + ], + [ + 77.666829860767294, + 12.973227057163699 + ], + [ + 77.6668420565654, + 12.973258468009501 + ], + [ + 77.666845741490604, + 12.973334088880801 + ], + [ + 77.666791761977706, + 12.973347064021899 + ], + [ + 77.6668049923165, + 12.9734000023308 + ], + [ + 77.666862979042605, + 12.9738810195184 + ], + [ + 77.666913625714699, + 12.9743011459428 + ], + [ + 77.666913622310602, + 12.974301170272 + ], + [ + 77.666902391708405, + 12.974381436749001 + ], + [ + 77.666610964789797, + 12.9744250779575 + ], + [ + 77.666597518915495, + 12.974553417893199 + ], + [ + 77.666515861925404, + 12.9753328280696 + ], + [ + 77.666560992452602, + 12.975353820673501 + ], + [ + 77.666598027573102, + 12.975371508592 + ], + [ + 77.666646708417801, + 12.975401498637099 + ], + [ + 77.666886810692503, + 12.975457756175 + ], + [ + 77.666984962545001, + 12.975483851016699 + ], + [ + 77.667273600386395, + 12.975563086104099 + ], + [ + 77.667314090495097, + 12.975574201168801 + ], + [ + 77.667424931827796, + 12.975576197212799 + ], + [ + 77.667526073848506, + 12.9755780185489 + ], + [ + 77.667633680266704, + 12.9755799562506 + ], + [ + 77.667868814651399, + 12.9755613161248 + ], + [ + 77.667928203233302, + 12.9755566080999 + ], + [ + 77.667931370204101, + 12.975556461220799 + ], + [ + 77.668022000248499, + 12.9755522579262 + ], + [ + 77.668134782099898, + 12.975546583667301 + ], + [ + 77.668525437936196, + 12.9754680451888 + ], + [ + 77.668659568650099, + 12.9754421939866 + ], + [ + 77.668742041146501, + 12.975426298910101 + ], + [ + 77.668846570777504, + 12.975402641345401 + ], + [ + 77.669026066296595, + 12.975336432638199 + ], + [ + 77.669079987699504, + 12.9753141135427 + ], + [ + 77.669213500452599, + 12.975258850010899 + ], + [ + 77.669244263616207, + 12.975246564563401 + ], + [ + 77.669259936262307, + 12.9752403055996 + ], + [ + 77.669442897530701, + 12.9751751902969 + ], + [ + 77.669818593904495, + 12.9750437297673 + ], + [ + 77.669884712500604, + 12.9750226855659 + ], + [ + 77.6701008910387, + 12.9749538802096 + ], + [ + 77.670142141028904, + 12.9749251050499 + ], + [ + 77.670192897346496, + 12.974889698451999 + ], + [ + 77.670213464412697, + 12.974874807240599 + ], + [ + 77.670294701892999, + 12.974826545276599 + ], + [ + 77.670419747303995, + 12.974791093262599 + ], + [ + 77.670522000379705, + 12.9747621032165 + ], + [ + 77.670749753790204, + 12.9746863640017 + ], + [ + 77.671122835427497, + 12.974579771757901 + ], + [ + 77.671617510138404, + 12.974430148256999 + ], + [ + 77.671651917008901, + 12.974417373216101 + ], + [ + 77.671848068657795, + 12.9743476039943 + ], + [ + 77.672105658816093, + 12.974262523313699 + ], + [ + 77.672345463670695, + 12.9741832713362 + ], + [ + 77.672469137048395, + 12.9741469038673 + ], + [ + 77.672524526092801, + 12.974130615731299 + ], + [ + 77.672685706822406, + 12.974074756124301 + ], + [ + 77.672701776977803, + 12.974070074034399 + ], + [ + 77.672857052885107, + 12.9740149778586 + ], + [ + 77.672954137218895, + 12.9739805294554 + ], + [ + 77.673214532300094, + 12.973888643606999 + ], + [ + 77.6732736077537, + 12.9738677101814 + ], + [ + 77.673456027022795, + 12.973805985674201 + ], + [ + 77.673620661172706, + 12.973750090056701 + ], + [ + 77.673690098362599, + 12.973729050012199 + ], + [ + 77.673956945716398, + 12.973648389451199 + ], + [ + 77.674207159187006, + 12.9735735458449 + ], + [ + 77.674386011329105, + 12.9735197584262 + ], + [ + 77.674483192454105, + 12.9734905318822 + ], + [ + 77.674490651830396, + 12.9734881967091 + ], + [ + 77.674862026283094, + 12.9733838757101 + ], + [ + 77.674965944915897, + 12.9733635538943 + ], + [ + 77.674974183935404, + 12.973361941524599 + ], + [ + 77.675000190702093, + 12.973356855364701 + ], + [ + 77.675142390497598, + 12.973329047245301 + ], + [ + 77.675396886298699, + 12.9732778723195 + ], + [ + 77.675769676871894, + 12.9731983785559 + ], + [ + 77.675773694373405, + 12.9731972079913 + ], + [ + 77.676248697309603, + 12.9730929481037 + ], + [ + 77.676257883609907, + 12.9730905951126 + ], + [ + 77.676292494836602, + 12.97308164415 + ], + [ + 77.676717186241206, + 12.972971816083801 + ], + [ + 77.677192799934204, + 12.9728709360051 + ], + [ + 77.677973618861103, + 12.9727339959429 + ], + [ + 77.678044468350805, + 12.9727215702917 + ], + [ + 77.678116241843995, + 12.9727089824357 + ], + [ + 77.678239771131203, + 12.973169563006399 + ], + [ + 77.678360265573303, + 12.973615494766101 + ], + [ + 77.678370462808203, + 12.973653783356401 + ], + [ + 77.678442366087907, + 12.973863078425 + ], + [ + 77.6785385969484, + 12.9741398762923 + ], + [ + 77.678676113362002, + 12.9745364930431 + ], + [ + 77.678695431622501, + 12.974592208676301 + ], + [ + 77.678702229106904, + 12.974613564993399 + ], + [ + 77.678714555358795, + 12.9746522941478 + ], + [ + 77.678809494458093, + 12.974950581585899 + ], + [ + 77.678916462870504, + 12.975286662504301 + ], + [ + 77.679061290184094, + 12.9756928199348 + ], + [ + 77.679154907809803, + 12.9758778179655 + ], + [ + 77.679298913195794, + 12.9761623866398 + ], + [ + 77.679377523743895, + 12.976513894129001 + ], + [ + 77.679344968333893, + 12.9766994222301 + ], + [ + 77.679314236678294, + 12.9768939653234 + ], + [ + 77.679333694097195, + 12.9775814616518 + ], + [ + 77.679337235151195, + 12.977911893634399 + ], + [ + 77.679337916978, + 12.9779755169696 + ], + [ + 77.679371234451494, + 12.978237153304001 + ], + [ + 77.679505418159707, + 12.979046552219801 + ], + [ + 77.679640163092301, + 12.9794320077918 + ], + [ + 77.6796533096649, + 12.979469615400999 + ], + [ + 77.6796549146422, + 12.9794785008111 + ], + [ + 77.680557421838103, + 12.9793462292321 + ], + [ + 77.680886431963998, + 12.9793159215399 + ], + [ + 77.6810359032539, + 12.9792948056621 + ], + [ + 77.681601711378093, + 12.9792437037438 + ], + [ + 77.681533954161495, + 12.9787315930728 + ], + [ + 77.681511750484205, + 12.978532619724 + ], + [ + 77.681302197546799, + 12.978534781304701 + ], + [ + 77.681186058344906, + 12.977708968395101 + ], + [ + 77.681425312252102, + 12.9776665265339 + ], + [ + 77.681435627924401, + 12.9776639114547 + ], + [ + 77.681635362195394, + 12.977612579871 + ], + [ + 77.681792158897494, + 12.9775767075306 + ], + [ + 77.682169602302693, + 12.9775263248165 + ], + [ + 77.6827926444019, + 12.977232812215499 + ], + [ + 77.682880964087005, + 12.9771954613087 + ], + [ + 77.683018564224, + 12.977124857061501 + ], + [ + 77.683179929520406, + 12.9770497884373 + ], + [ + 77.683080734466898, + 12.9768734210628 + ], + [ + 77.683500441089805, + 12.9766929214738 + ], + [ + 77.683815778601101, + 12.976551423719901 + ], + [ + 77.682909202713404, + 12.9748382512373 + ], + [ + 77.682491599309998, + 12.9749820260572 + ], + [ + 77.682294847347904, + 12.9742851205942 + ], + [ + 77.682325100499199, + 12.974272055552801 + ], + [ + 77.682263015699505, + 12.9741411318135 + ], + [ + 77.682249119073603, + 12.974111825982 + ], + [ + 77.682239179461703, + 12.9740372346141 + ], + [ + 77.682154113512496, + 12.9737751914724 + ], + [ + 77.682032978346598, + 12.973274504825699 + ], + [ + 77.681975455923705, + 12.9730241246164 + ], + [ + 77.681951601329899, + 12.972788339012901 + ], + [ + 77.681838732296598, + 12.9722830490488 + ], + [ + 77.681779977758794, + 12.9720200160613 + ], + [ + 77.681760236209797, + 12.971931637178299 + ], + [ + 77.681728764115107, + 12.9717240151216 + ], + [ + 77.681730349372401, + 12.971721091707799 + ], + [ + 77.681771782965797, + 12.971644694970999 + ], + [ + 77.681849057896102, + 12.9706687007483 + ], + [ + 77.681930156730004, + 12.970486573007801 + ], + [ + 77.681959722582107, + 12.970420175274899 + ], + [ + 77.682200403571699, + 12.9700233116082 + ], + [ + 77.682293481730298, + 12.9698395028839 + ], + [ + 77.682437389886104, + 12.9696229013521 + ], + [ + 77.682521854377697, + 12.9692618693475 + ], + [ + 77.682520929700999, + 12.969261366668601 + ], + [ + 77.682567393508194, + 12.969048758386799 + ], + [ + 77.682574708886904, + 12.968889974106499 + ], + [ + 77.6826074062038, + 12.9678168273306 + ], + [ + 77.682620288824097, + 12.967394002681401 + ], + [ + 77.682624194268101, + 12.9671851197609 + ], + [ + 77.682623939145699, + 12.9671851223916 + ], + [ + 77.682624254989705, + 12.967181848007399 + ], + [ + 77.682634907216894, + 12.9670714747055 + ], + [ + 77.682988646544501, + 12.966308942728 + ], + [ + 77.6830111186853, + 12.966131837079899 + ], + [ + 77.682988241391996, + 12.9658165677996 + ], + [ + 77.682896503573801, + 12.9655569826289 + ], + [ + 77.682744936138207, + 12.965309963228201 + ], + [ + 77.682650938484699, + 12.965156768391299 + ], + [ + 77.682277694895404, + 12.964531517945201 + ], + [ + 77.682114890151198, + 12.964116863826 + ], + [ + 77.681692708527393, + 12.964174834041501 + ], + [ + 77.681142289914504, + 12.9642399020266 + ], + [ + 77.681090176767, + 12.9642460624965 + ], + [ + 77.680681114374394, + 12.9643080346807 + ], + [ + 77.680434567493705, + 12.9643639186403 + ], + [ + 77.680300884296202, + 12.9644011746134 + ], + [ + 77.679597403863198, + 12.964707988509399 + ], + [ + 77.679449475734799, + 12.9647814046916 + ], + [ + 77.679242688447502, + 12.9648904801144 + ], + [ + 77.679449445430194, + 12.965483279854899 + ], + [ + 77.679557884407103, + 12.9654760505897 + ], + [ + 77.679628731205298, + 12.966012462062199 + ], + [ + 77.678992555874103, + 12.9661874102783 + ], + [ + 77.678699425335594, + 12.9662508241005 + ], + [ + 77.678714766030396, + 12.9664327209103 + ], + [ + 77.678694710150793, + 12.9664259760275 + ], + [ + 77.678240712300806, + 12.9664823642955 + ], + [ + 77.677994917286398, + 12.9664982686788 + ], + [ + 77.678011285597407, + 12.965958803017401 + ], + [ + 77.677968800780505, + 12.965902936827501 + ], + [ + 77.677868836288496, + 12.9658733334321 + ], + [ + 77.677720739507905, + 12.965952097972201 + ], + [ + 77.677616270024899, + 12.966096585620299 + ], + [ + 77.677507339418597, + 12.9661658269273 + ], + [ + 77.677401373905397, + 12.966170502904699 + ], + [ + 77.677392344471897, + 12.9661701883976 + ], + [ + 77.676987774700507, + 12.966465167589201 + ], + [ + 77.6769571019003, + 12.9666734305641 + ], + [ + 77.676932204348404, + 12.966738222444199 + ], + [ + 77.676720847901905, + 12.966801347229101 + ], + [ + 77.6764982572045, + 12.9668394897057 + ], + [ + 77.676089206462294, + 12.966875965379399 + ], + [ + 77.675986589362296, + 12.966851924042199 + ], + [ + 77.675949154059893, + 12.9667698466323 + ], + [ + 77.675437884044797, + 12.9668359620307 + ], + [ + 77.675072994661406, + 12.966876505295501 + ], + [ + 77.6751146336901, + 12.964848794172299 + ], + [ + 77.674502101662, + 12.964751271183999 + ], + [ + 77.674348694713998, + 12.9647205897944 + ], + [ + 77.673965177344002, + 12.964687716876901 + ], + [ + 77.673679182962402, + 12.9646537481956 + ], + [ + 77.673489264506699, + 12.9646489612806 + ], + [ + 77.673341687676896, + 12.964641694792499 + ], + [ + 77.673489264506699, + 12.9646489612806 + ], + [ + 77.673516643108599, + 12.9653435693064 + ], + [ + 77.673497238196106, + 12.9658624888836 + ], + [ + 77.673447133714404, + 12.966095292519199 + ], + [ + 77.673435949783794, + 12.9670817823986 + ], + [ + 77.673434230349699, + 12.9672334681267 + ], + [ + 77.673567804186405, + 12.9673580586715 + ], + [ + 77.673667252497097, + 12.9674144553533 + ], + [ + 77.673825658497904, + 12.967412827337 + ], + [ + 77.673970206152006, + 12.967531635539199 + ], + [ + 77.674156662088194, + 12.967858035821701 + ], + [ + 77.674124971287995, + 12.967874233484601 + ], + [ + 77.674086807138707, + 12.967914193722301 + ], + [ + 77.674097764777898, + 12.967972269209699 + ], + [ + 77.674166889254195, + 12.9681675419074 + ], + [ + 77.674489926924096, + 12.9688728505922 + ], + [ + 77.674131889619602, + 12.969104083110301 + ], + [ + 77.674508676245694, + 12.9700399757158 + ], + [ + 77.674204713808905, + 12.9701271078881 + ], + [ + 77.674034907024904, + 12.9701648958847 + ], + [ + 77.673397571636698, + 12.9703445980839 + ], + [ + 77.673442080455899, + 12.970702570896099 + ], + [ + 77.672628345368906, + 12.9709165868471 + ], + [ + 77.672285645204695, + 12.9709261747814 + ], + [ + 77.671646540901804, + 12.971032737822 + ], + [ + 77.671311237143996, + 12.9698295890443 + ], + [ + 77.671171527244894, + 12.9698405466834 + ], + [ + 77.671109616583706, + 12.9694416886187 + ], + [ + 77.670285602120302, + 12.969518392092599 + ], + [ + 77.670282957781794, + 12.969518588171301 + ], + [ + 77.670285876061399, + 12.969371285787201 + ], + [ + 77.669470079827207, + 12.969563592354101 + ], + [ + 77.669752786917101, + 12.9710089049569 + ], + [ + 77.669363790727502, + 12.9710823211392 + ], + [ + 77.669396663645003, + 12.971206142461501 + ], + [ + 77.6690723175264, + 12.9712587391294 + ], + [ + 77.6689517834958, + 12.971225866212 + ], + [ + 77.668844398632203, + 12.9709563082891 + ], + [ + 77.668480860207396, + 12.9709430620197 + ], + [ + 77.668272071511097, + 12.9709130001328 + ], + [ + 77.668272164704504, + 12.970913533078001 + ], + [ + 77.667570025200007, + 12.970842348842 + ], + [ + 77.667447256746001, + 12.9708072633717 + ], + [ + 77.666889543491607, + 12.9707343182251 + ], + [ + 77.666889588968402, + 12.970735300644 + ], + [ + 77.666648487748105, + 12.9707338682145 + ], + [ + 77.666652296231902, + 12.9707481704408 + ], + [ + 77.666769021778705, + 12.971005617665201 + ], + [ + 77.667095559425107, + 12.9713453044786 + ], + [ + 77.666669985549305, + 12.9713972516673 + ], + [ + 77.666197777674796, + 12.9714949188694 + ], + [ + 77.6663152664363, + 12.971637772506799 + ], + [ + 77.6664560093689, + 12.9718249116811 + ], + [ + 77.666476175140502, + 12.971855689071701 + ], + [ + 77.666487612333896, + 12.9718731447326 + ], + [ + 77.666508382242398, + 12.971912840582201 + ], + [ + 77.666512295405497, + 12.971920319493099 + ], + [ + 77.666522454686898, + 12.971955221587599 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "249", + "group": "UDAY NAGARA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "34", + "ward_name": "34 - Uday Nagar", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಉದಯ್ ನಗರ", + "dig_ward_n": "UDAY NAGARA", + "Assembly": "151 - K.R. Pura", + "Slno": "34" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6749429074234, + 12.9863981048415 + ], + [ + 77.674924392102199, + 12.9863682106279 + ], + [ + 77.674711869551501, + 12.9863710156829 + ], + [ + 77.674362037815996, + 12.9863756315271 + ], + [ + 77.673367211089499, + 12.9863887556123 + ], + [ + 77.6729328901597, + 12.9863695106345 + ], + [ + 77.672138942898101, + 12.985993740130199 + ], + [ + 77.671712231390302, + 12.985878430245799 + ], + [ + 77.671353385312202, + 12.9860255322063 + ], + [ + 77.671282950980597, + 12.985899782731099 + ], + [ + 77.670814961844599, + 12.9860163877257 + ], + [ + 77.670451671118897, + 12.986070937409799 + ], + [ + 77.669795645044104, + 12.986155596473001 + ], + [ + 77.669479770393195, + 12.986121577620199 + ], + [ + 77.668884044977801, + 12.985976380937499 + ], + [ + 77.668712197592598, + 12.985896841514499 + ], + [ + 77.668353954173497, + 12.9857232316715 + ], + [ + 77.668264180132098, + 12.9856733382257 + ], + [ + 77.668195215240502, + 12.9856311356654 + ], + [ + 77.667973208172, + 12.985491132247599 + ], + [ + 77.667950614731694, + 12.9855320166008 + ], + [ + 77.667925890252207, + 12.9855952183926 + ], + [ + 77.667859744741705, + 12.9857643018969 + ], + [ + 77.667816666430895, + 12.9858744201089 + ], + [ + 77.667785035058003, + 12.9858812580928 + ], + [ + 77.667526007480703, + 12.985937253815701 + ], + [ + 77.6675238909407, + 12.9860181931758 + ], + [ + 77.667492483427395, + 12.987219276681 + ], + [ + 77.667417206154795, + 12.9876841073637 + ], + [ + 77.667366090011598, + 12.9879997447725 + ], + [ + 77.667410107796798, + 12.9886711859847 + ], + [ + 77.667433633012294, + 12.9887631383915 + ], + [ + 77.667628812383299, + 12.9895260271811 + ], + [ + 77.667714085692097, + 12.9896028985592 + ], + [ + 77.667885190574495, + 12.9897571449764 + ], + [ + 77.667889232508102, + 12.989758232691999 + ], + [ + 77.668055684290593, + 12.9898175014575 + ], + [ + 77.668163616902604, + 12.989842365069901 + ], + [ + 77.6682547161153, + 12.9899622570028 + ], + [ + 77.668212609089693, + 12.9900089880528 + ], + [ + 77.668363716857897, + 12.990194888111301 + ], + [ + 77.668306795713704, + 12.990227471430799 + ], + [ + 77.668435678689505, + 12.9903001026067 + ], + [ + 77.668475126190501, + 12.9904425519155 + ], + [ + 77.668425816814306, + 12.9905302130287 + ], + [ + 77.668380890493793, + 12.9905850012244 + ], + [ + 77.668373220146407, + 12.9906386936562 + ], + [ + 77.668584702581896, + 12.9907592276867 + ], + [ + 77.668705236612396, + 12.9908074412989 + ], + [ + 77.668666884875407, + 12.9909082515791 + ], + [ + 77.668532105913997, + 12.991200820544099 + ], + [ + 77.668733726474201, + 12.9913136842273 + ], + [ + 77.668854260504801, + 12.9913531317282 + ], + [ + 77.668939730090102, + 12.991376142770401 + ], + [ + 77.669044923425801, + 12.9914013453404 + ], + [ + 77.669053689537094, + 12.991630359998499 + ], + [ + 77.669059168356696, + 12.9916774778468 + ], + [ + 77.668963836896197, + 12.9916807651386 + ], + [ + 77.668915623283894, + 12.9917848627104 + ], + [ + 77.668788514669899, + 12.992020451952 + ], + [ + 77.668703045084499, + 12.992217689456499 + ], + [ + 77.668939730090003, + 12.992338223487099 + ], + [ + 77.6688564520325, + 12.992515737241201 + ], + [ + 77.668788514669799, + 12.992699825578701 + ], + [ + 77.668869327259998, + 12.9927329724374 + ], + [ + 77.668963015074596, + 12.9927521483059 + ], + [ + 77.669070399938306, + 12.9927570792435 + ], + [ + 77.669055059243505, + 12.993274279811001 + ], + [ + 77.669067112646502, + 12.993806821073299 + ], + [ + 77.668925759101597, + 12.9936534141253 + ], + [ + 77.668827688231204, + 12.9937432667663 + ], + [ + 77.668369932854702, + 12.993784631853799 + ], + [ + 77.668411571883397, + 12.9939840608862 + ], + [ + 77.668451019384307, + 12.9941725322794 + ], + [ + 77.668477317718299, + 12.9943259392274 + ], + [ + 77.668699209910898, + 12.9954627942884 + ], + [ + 77.668772078211205, + 12.9954699167538 + ], + [ + 77.669086562454495, + 12.995489640504299 + ], + [ + 77.669469531942497, + 12.995531827415 + ], + [ + 77.669375296245903, + 12.9948393046212 + ], + [ + 77.669619103716897, + 12.994795474064601 + ], + [ + 77.669631705001905, + 12.9946004280879 + ], + [ + 77.6698968798691, + 12.9947384943411 + ], + [ + 77.670054669872798, + 12.9948699860108 + ], + [ + 77.670162054736394, + 12.994948881012601 + ], + [ + 77.670216842932007, + 12.995021201430999 + ], + [ + 77.670326419323601, + 12.995034350598001 + ], + [ + 77.670389973630705, + 12.995023392958799 + ], + [ + 77.6704354478331, + 12.994997368565899 + ], + [ + 77.670468594691499, + 12.9949940812741 + ], + [ + 77.670516534362704, + 12.9949817539301 + ], + [ + 77.670677997318705, + 12.994952836951899 + ], + [ + 77.670649080258201, + 12.9947460799692 + ], + [ + 77.670876079183202, + 12.994722946320801 + ], + [ + 77.671935654693996, + 12.9951153824548 + ], + [ + 77.672094933283702, + 12.9951726066117 + ], + [ + 77.672115253913404, + 12.995428825607 + ], + [ + 77.672113062385705, + 12.9955077206089 + ], + [ + 77.672358513502502, + 12.9955756579715 + ], + [ + 77.672294959195497, + 12.995838641311 + ], + [ + 77.672526165381399, + 12.995921919368399 + ], + [ + 77.672770520734304, + 12.996012867773301 + ], + [ + 77.672867018799295, + 12.9960285516028 + ], + [ + 77.672926298773405, + 12.9957711897643 + ], + [ + 77.673371621505197, + 12.9955514201044 + ], + [ + 77.673443914156493, + 12.9957119097903 + ], + [ + 77.674514568321896, + 12.9951762212443 + ], + [ + 77.674576740001996, + 12.995273093397 + ], + [ + 77.675275809939805, + 12.9950424798394 + ], + [ + 77.675276046891796, + 12.9950435298359 + ], + [ + 77.675420395242398, + 12.994994766689601 + ], + [ + 77.675441445275197, + 12.995317605569801 + ], + [ + 77.675448019858607, + 12.995397596335501 + ], + [ + 77.675517052985199, + 12.995515938838199 + ], + [ + 77.675651010124994, + 12.995473477986801 + ], + [ + 77.675794281255506, + 12.9953625318902 + ], + [ + 77.676056417887594, + 12.995106704846499 + ], + [ + 77.676274225849994, + 12.994880395768 + ], + [ + 77.676732255166101, + 12.9944694843002 + ], + [ + 77.676517697758101, + 12.994221068641 + ], + [ + 77.676501772369605, + 12.994203177854899 + ], + [ + 77.676287310631807, + 12.993969358783 + ], + [ + 77.676191766783603, + 12.9938651901182 + ], + [ + 77.676013825327701, + 12.9936633118316 + ], + [ + 77.675960466912002, + 12.993602775164799 + ], + [ + 77.675921739063696, + 12.9935403161865 + ], + [ + 77.675879750841105, + 12.9934786397808 + ], + [ + 77.675845010654896, + 12.993388869278901 + ], + [ + 77.675806334658603, + 12.9932674312863 + ], + [ + 77.675795423758402, + 12.9931814872247 + ], + [ + 77.675818935943695, + 12.993078138070199 + ], + [ + 77.6758474258055, + 12.992965274387 + ], + [ + 77.675879202958996, + 12.9928293996617 + ], + [ + 77.675901118237306, + 12.992752696187701 + ], + [ + 77.675914267404195, + 12.992718727506301 + ], + [ + 77.675933443272697, + 12.9927017431657 + ], + [ + 77.676079179873199, + 12.9926790060644 + ], + [ + 77.676352785699095, + 12.992648259173 + ], + [ + 77.676629637394996, + 12.992567231849399 + ], + [ + 77.676326439664095, + 12.991458887172699 + ], + [ + 77.676288470780904, + 12.991336969210501 + ], + [ + 77.675932895390801, + 12.991445449838 + ], + [ + 77.675562527187793, + 12.991546260118101 + ], + [ + 77.6755063692883, + 12.9912328716389 + ], + [ + 77.675241194421105, + 12.9913040962933 + ], + [ + 77.675018754346496, + 12.991320532752001 + ], + [ + 77.6748091894966, + 12.990175185520499 + ], + [ + 77.674926710177701, + 12.9900976602238 + ], + [ + 77.674960404916803, + 12.9895243017555 + ], + [ + 77.6749976608899, + 12.988879992574001 + ], + [ + 77.675048066030001, + 12.9871968992018 + ], + [ + 77.674909999776801, + 12.987066503296001 + ], + [ + 77.674713230343102, + 12.987054052720399 + ], + [ + 77.674707283452705, + 12.987051162601199 + ], + [ + 77.674651399493101, + 12.986883510722301 + ], + [ + 77.6746321481763, + 12.986874639875101 + ], + [ + 77.674548397685101, + 12.986932272216499 + ], + [ + 77.674465119627598, + 12.986954187494799 + ], + [ + 77.674407044140196, + 12.9869750070091 + ], + [ + 77.674141656276504, + 12.986922640328199 + ], + [ + 77.674360399882602, + 12.9867476010432 + ], + [ + 77.674356091118199, + 12.9867435268823 + ], + [ + 77.674481371750105, + 12.986623842469699 + ], + [ + 77.674888145416702, + 12.9864313512489 + ], + [ + 77.6749429074234, + 12.9863981048415 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "231", + "group": "Sampigehalli", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "4", + "ward_name": "4 - Sampigehalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ಸಂಪಿಗೆಹಳ್ಳಿ", + "dig_ward_n": "Sampigehalli", + "Assembly": "152 - Byatarayanapura", + "Slno": "4" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.630455864499893, + 13.0678946736712 + ], + [ + 77.6301404410289, + 13.067947016438801 + ], + [ + 77.630140258891799, + 13.067947047202299 + ], + [ + 77.629948327847998, + 13.0679885254597 + ], + [ + 77.629569086452406, + 13.0680725637978 + ], + [ + 77.629567321762906, + 13.0682125419995 + ], + [ + 77.629564180660907, + 13.068337676791399 + ], + [ + 77.629524888263305, + 13.069903130779499 + ], + [ + 77.6300510672244, + 13.0699200120862 + ], + [ + 77.630059671577797, + 13.071589993275699 + ], + [ + 77.630063683547604, + 13.071968550846799 + ], + [ + 77.629656237471494, + 13.0720037522245 + ], + [ + 77.628183654747502, + 13.0722156323717 + ], + [ + 77.628245842603505, + 13.0726687153228 + ], + [ + 77.628125020483196, + 13.0726740457105 + ], + [ + 77.625898695237197, + 13.072970770623501 + ], + [ + 77.625879150482405, + 13.0728108589937 + ], + [ + 77.622703728053594, + 13.073158804650401 + ], + [ + 77.621557384050007, + 13.073264184711901 + ], + [ + 77.618892197055004, + 13.073560501676599 + ], + [ + 77.618816579868195, + 13.0719517134046 + ], + [ + 77.617932338244501, + 13.0726570206793 + ], + [ + 77.615939972252406, + 13.074336582519299 + ], + [ + 77.612621320396698, + 13.077055804892501 + ], + [ + 77.612335743136995, + 13.0773235805765 + ], + [ + 77.610490679061698, + 13.0790536139996 + ], + [ + 77.611074554213999, + 13.079275736926901 + ], + [ + 77.611294163174506, + 13.079881592939 + ], + [ + 77.611698422682295, + 13.0814547037703 + ], + [ + 77.611859887712001, + 13.0820611461673 + ], + [ + 77.612189193736896, + 13.082038810372399 + ], + [ + 77.6127874548731, + 13.081785722413899 + ], + [ + 77.613992496059893, + 13.0811050185909 + ], + [ + 77.614426034256297, + 13.0801206736697 + ], + [ + 77.614845358085503, + 13.0802308350146 + ], + [ + 77.613616758618306, + 13.082731971303399 + ], + [ + 77.613419022401104, + 13.083707195342299 + ], + [ + 77.613217224617401, + 13.084286683903001 + ], + [ + 77.6131140236607, + 13.0854539410083 + ], + [ + 77.612918669178697, + 13.0862406315677 + ], + [ + 77.612817713005995, + 13.086647178719399 + ], + [ + 77.612750942620096, + 13.0868614298547 + ], + [ + 77.612616763495495, + 13.087318140541701 + ], + [ + 77.612618000255594, + 13.0873257429121 + ], + [ + 77.612541868052404, + 13.087519203687499 + ], + [ + 77.612427754955505, + 13.087681704189499 + ], + [ + 77.612342985519405, + 13.0877363449037 + ], + [ + 77.6121971983073, + 13.087785626529399 + ], + [ + 77.612142779283204, + 13.0878280076269 + ], + [ + 77.612088801968397, + 13.087912215147 + ], + [ + 77.612052985297296, + 13.0879842865528 + ], + [ + 77.611986879185807, + 13.088074592085 + ], + [ + 77.611908645205204, + 13.088170995616601 + ], + [ + 77.611816699010404, + 13.088235710607499 + ], + [ + 77.611687375391597, + 13.0883267321059 + ], + [ + 77.611654695694696, + 13.088349733346201 + ], + [ + 77.611551152226298, + 13.0884849933731 + ], + [ + 77.611420006340694, + 13.0886563099673 + ], + [ + 77.611322756384595, + 13.088783348368001 + ], + [ + 77.611171325108103, + 13.089011590415399 + ], + [ + 77.610793480202403, + 13.0895810893684 + ], + [ + 77.610497395806703, + 13.0899462159687 + ], + [ + 77.609981496255202, + 13.0906255028146 + ], + [ + 77.609729751501405, + 13.0910332045705 + ], + [ + 77.609550535516703, + 13.0913283516965 + ], + [ + 77.609437035562493, + 13.0915152737194 + ], + [ + 77.609398975115894, + 13.091577954056399 + ], + [ + 77.609052791370402, + 13.0922103128646 + ], + [ + 77.609043693783704, + 13.0922269302442 + ], + [ + 77.6090311244714, + 13.092261059380601 + ], + [ + 77.608939607059199, + 13.092509549108099 + ], + [ + 77.6088978947122, + 13.092622806308301 + ], + [ + 77.608842112908604, + 13.0927306642877 + ], + [ + 77.608776235450705, + 13.092858041580399 + ], + [ + 77.608664884775195, + 13.0930733443069 + ], + [ + 77.608468824848003, + 13.09355936421 + ], + [ + 77.608317289897997, + 13.0939194316146 + ], + [ + 77.608310751293999, + 13.0939349679056 + ], + [ + 77.608290372127598, + 13.093983393145299 + ], + [ + 77.608271140255994, + 13.094029091101101 + ], + [ + 77.608253046693093, + 13.094072083546299 + ], + [ + 77.608251679100803, + 13.094075334331 + ], + [ + 77.608247578071598, + 13.0940850776331 + ], + [ + 77.608200996299303, + 13.0941821478292 + ], + [ + 77.608193111373296, + 13.094198579475901 + ], + [ + 77.608122037822099, + 13.094346686735401 + ], + [ + 77.608001543023406, + 13.0944162836026 + ], + [ + 77.607859786994794, + 13.094452549726 + ], + [ + 77.608017914751997, + 13.0944469769795 + ], + [ + 77.608097737518307, + 13.094447159658801 + ], + [ + 77.608078664372201, + 13.094495596075699 + ], + [ + 77.608069204097802, + 13.094519620632299 + ], + [ + 77.608056668415898, + 13.0945318388006 + ], + [ + 77.607822569817202, + 13.0947599938126 + ], + [ + 77.607725722495402, + 13.095109588408199 + ], + [ + 77.607680911762699, + 13.0954558172161 + ], + [ + 77.607532985298903, + 13.095870888841899 + ], + [ + 77.607447861078498, + 13.0961361969204 + ], + [ + 77.607433471091994, + 13.0962372941522 + ], + [ + 77.607422667892294, + 13.096334425231801 + ], + [ + 77.6074027251084, + 13.0965137198798 + ], + [ + 77.607323033248093, + 13.0972302029568 + ], + [ + 77.607317981455793, + 13.097275621061501 + ], + [ + 77.610655870684297, + 13.097345277354499 + ], + [ + 77.614084779386502, + 13.0974257008093 + ], + [ + 77.614078560600902, + 13.097484335073601 + ], + [ + 77.614197013216298, + 13.0975029741286 + ], + [ + 77.615669766135397, + 13.0976454425781 + ], + [ + 77.616391186012507, + 13.0977241709944 + ], + [ + 77.616887978890901, + 13.097785930705101 + ], + [ + 77.617203056167597, + 13.097785501976301 + ], + [ + 77.617268797615495, + 13.0978370290571 + ], + [ + 77.617316771104399, + 13.0978956633213 + ], + [ + 77.617336315859106, + 13.097929422443199 + ], + [ + 77.617342872956698, + 13.098009310800901 + ], + [ + 77.618250136713598, + 13.0980674232878 + ], + [ + 77.6183303971073, + 13.0980474854703 + ], + [ + 77.618388738763599, + 13.098030160719899 + ], + [ + 77.618415560528106, + 13.098029888250601 + ], + [ + 77.619121886726703, + 13.098088273501199 + ], + [ + 77.619239617132607, + 13.098098004839301 + ], + [ + 77.619677387499706, + 13.098134190456999 + ], + [ + 77.619919130745203, + 13.098165197527001 + ], + [ + 77.620790875221203, + 13.0982772828912 + ], + [ + 77.622535220623604, + 13.098576176145899 + ], + [ + 77.623272865808104, + 13.0986194035282 + ], + [ + 77.623273273534707, + 13.098614913050101 + ], + [ + 77.623771870560802, + 13.0983132103547 + ], + [ + 77.624088559365603, + 13.098052270804899 + ], + [ + 77.624155755004494, + 13.098069859038601 + ], + [ + 77.625122151715402, + 13.098322813403099 + ], + [ + 77.625211197676805, + 13.0983461214062 + ], + [ + 77.625260964792602, + 13.098168414734699 + ], + [ + 77.625287934494693, + 13.098100819916199 + ], + [ + 77.625301589055596, + 13.098100680839799 + ], + [ + 77.626066446087805, + 13.098256206372399 + ], + [ + 77.626606800534205, + 13.0983549743375 + ], + [ + 77.6266268183943, + 13.0983590299046 + ], + [ + 77.627582795514499, + 13.098552695144299 + ], + [ + 77.627745491444202, + 13.0985856540906 + ], + [ + 77.628008858698394, + 13.0986390071279 + ], + [ + 77.629151746912498, + 13.098820509311899 + ], + [ + 77.629226190188405, + 13.0988245063434 + ], + [ + 77.629762893993401, + 13.100040051605101 + ], + [ + 77.630265471368105, + 13.0998474754255 + ], + [ + 77.631467610578497, + 13.0993607533704 + ], + [ + 77.631964217272994, + 13.1005165084028 + ], + [ + 77.632357383528401, + 13.1003173902117 + ], + [ + 77.632271952241297, + 13.1001463533915 + ], + [ + 77.632400136143701, + 13.100013886273899 + ], + [ + 77.632866700886893, + 13.0995317270886 + ], + [ + 77.633361201518895, + 13.0990206955817 + ], + [ + 77.633469157157606, + 13.098911127366 + ], + [ + 77.634285789877396, + 13.098186831656401 + ], + [ + 77.634664093301893, + 13.0976451583767 + ], + [ + 77.6351795352533, + 13.0968612632435 + ], + [ + 77.635518390257602, + 13.096439567879299 + ], + [ + 77.6359057317609, + 13.0963667192479 + ], + [ + 77.635919632484203, + 13.0958467776146 + ], + [ + 77.635928020105695, + 13.0949316824154 + ], + [ + 77.635932854154206, + 13.094404319766101 + ], + [ + 77.635874287791395, + 13.092602720521899 + ], + [ + 77.635851200209402, + 13.091700027143199 + ], + [ + 77.635646108537102, + 13.0900737076112 + ], + [ + 77.635246461689505, + 13.087880682917699 + ], + [ + 77.635110136029397, + 13.086994889113599 + ], + [ + 77.634649260802405, + 13.0840002267228 + ], + [ + 77.634640014107802, + 13.083936186815301 + ], + [ + 77.635832232776096, + 13.0837851281476 + ], + [ + 77.638007193499305, + 13.0835095376463 + ], + [ + 77.638745051587804, + 13.083316153460601 + ], + [ + 77.639391805290501, + 13.0830034373845 + ], + [ + 77.641882873123706, + 13.0818627344253 + ], + [ + 77.642301784135, + 13.0828558472552 + ], + [ + 77.642446957723195, + 13.083171312053 + ], + [ + 77.642576489534804, + 13.0834281320748 + ], + [ + 77.643556889291901, + 13.0829878456976 + ], + [ + 77.643604717128795, + 13.0826642116985 + ], + [ + 77.643642327589504, + 13.082658679717801 + ], + [ + 77.644513852129705, + 13.0822379596404 + ], + [ + 77.644460992780495, + 13.082125308571801 + ], + [ + 77.643800525611098, + 13.080954273354999 + ], + [ + 77.643286764235796, + 13.080036942308 + ], + [ + 77.642809195107006, + 13.079164408762001 + ], + [ + 77.6425284461708, + 13.0786546053997 + ], + [ + 77.642298511157705, + 13.078156703050601 + ], + [ + 77.642146389610403, + 13.0778262616383 + ], + [ + 77.641730857714407, + 13.0774767043529 + ], + [ + 77.641690162040504, + 13.077442470106501 + ], + [ + 77.641575673429003, + 13.077346526474001 + ], + [ + 77.641419922501498, + 13.0772159983304 + ], + [ + 77.641062465017001, + 13.077010693512801 + ], + [ + 77.640973694151199, + 13.0769597078208 + ], + [ + 77.640237295792801, + 13.076931104831299 + ], + [ + 77.639558880825206, + 13.0766681522196 + ], + [ + 77.639120002473106, + 13.0761298959049 + ], + [ + 77.639015561131899, + 13.076001803629699 + ], + [ + 77.638308529206299, + 13.075159834123401 + ], + [ + 77.639490912006295, + 13.0749354494613 + ], + [ + 77.639440391757105, + 13.073218377462601 + ], + [ + 77.6394810472096, + 13.0715715159724 + ], + [ + 77.639491383278795, + 13.0711439306119 + ], + [ + 77.639495985185107, + 13.070953543576 + ], + [ + 77.639497208201902, + 13.070902954241401 + ], + [ + 77.639497947878496, + 13.0708723376913 + ], + [ + 77.639502531989606, + 13.0706827006577 + ], + [ + 77.639503845970907, + 13.070628359477199 + ], + [ + 77.639527269194502, + 13.069689713574199 + ], + [ + 77.639499374834301, + 13.069552485844399 + ], + [ + 77.639362569118404, + 13.0688794660814 + ], + [ + 77.639234806577207, + 13.0683908080997 + ], + [ + 77.639186149908795, + 13.068204708880801 + ], + [ + 77.639022761288999, + 13.067579783492301 + ], + [ + 77.638746199245602, + 13.066704493680099 + ], + [ + 77.638742802538999, + 13.0666937444854 + ], + [ + 77.638727411462298, + 13.066645033156099 + ], + [ + 77.638727400030803, + 13.0666449980402 + ], + [ + 77.63869555654, + 13.066544215628801 + ], + [ + 77.638668747819906, + 13.0662811662782 + ], + [ + 77.638648817789402, + 13.0660856101733 + ], + [ + 77.638567599217794, + 13.0652886664974 + ], + [ + 77.638526243031095, + 13.064811415748601 + ], + [ + 77.638361312770698, + 13.063653359214999 + ], + [ + 77.638358164403101, + 13.063483748937101 + ], + [ + 77.638345153151405, + 13.0627828715861 + ], + [ + 77.638302018240594, + 13.0624717172653 + ], + [ + 77.638003432282801, + 13.062574887452399 + ], + [ + 77.637815656460006, + 13.0626153432191 + ], + [ + 77.636211928802695, + 13.0627847994494 + ], + [ + 77.635898969097994, + 13.0630221908352 + ], + [ + 77.635413499897595, + 13.063251949057401 + ], + [ + 77.635477618471199, + 13.0633893460009 + ], + [ + 77.634558585582297, + 13.0638564956088 + ], + [ + 77.634514586917703, + 13.063393644689899 + ], + [ + 77.634498595754707, + 13.0633030280997 + ], + [ + 77.634484381387594, + 13.063230179468301 + ], + [ + 77.634484381387594, + 13.063159107632901 + ], + [ + 77.634387025781393, + 13.0631663255836 + ], + [ + 77.633540321567594, + 13.063293168140399 + ], + [ + 77.6335997254006, + 13.063969746021399 + ], + [ + 77.633610738595195, + 13.064252493163499 + ], + [ + 77.632601247942603, + 13.064356232846 + ], + [ + 77.632566320472094, + 13.064168293904901 + ], + [ + 77.632501577672102, + 13.063580949114501 + ], + [ + 77.632117480840606, + 13.0636283778516 + ], + [ + 77.631984221149096, + 13.0629691865776 + ], + [ + 77.631650183522396, + 13.0629709633735 + ], + [ + 77.6314796111173, + 13.0630331512296 + ], + [ + 77.631257511631503, + 13.063416939141099 + ], + [ + 77.631044296125097, + 13.063519993302499 + ], + [ + 77.630998099432006, + 13.063637261830999 + ], + [ + 77.630555677256197, + 13.063722548033599 + ], + [ + 77.630547847502001, + 13.063842379822599 + ], + [ + 77.631275279590398, + 13.067238827093201 + ], + [ + 77.631122475144096, + 13.0672565950521 + ], + [ + 77.631230859693204, + 13.067814508960501 + ], + [ + 77.630455864499893, + 13.0678946736712 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "256", + "group": "BHATTARAHALLI", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "11", + "ward_name": "11 - Bhattarahalli", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಭಟ್ಟರಹಳ್ಳಿ", + "dig_ward_n": "BHATTARAHALLI", + "Assembly": "151 - K.R. Pura", + "Slno": "11" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.697178387982902, + 13.007697272331299 + ], + [ + 77.696551943369997, + 13.0080841276323 + ], + [ + 77.6965505152601, + 13.008084624875 + ], + [ + 77.696219594558002, + 13.0082161165447 + ], + [ + 77.696027835872997, + 13.008251180989999 + ], + [ + 77.695963978687402, + 13.0082798064826 + ], + [ + 77.695901823022893, + 13.008316926824801 + ], + [ + 77.695764787812095, + 13.0083102058645 + ], + [ + 77.695670616837006, + 13.0083388421031 + ], + [ + 77.695728018399194, + 13.008347804852599 + ], + [ + 77.695783428661002, + 13.008384357334601 + ], + [ + 77.695957346524906, + 13.008498868076 + ], + [ + 77.696228459801404, + 13.008782781957001 + ], + [ + 77.696529815844201, + 13.0090983646776 + ], + [ + 77.696717968671805, + 13.0092954000205 + ], + [ + 77.696808521856298, + 13.009433665274299 + ], + [ + 77.696845033933201, + 13.009489416226099 + ], + [ + 77.697205806762696, + 13.009919109159901 + ], + [ + 77.697560206626207, + 13.010345651656101 + ], + [ + 77.697881415453793, + 13.0107308303762 + ], + [ + 77.6981019122437, + 13.0110143989042 + ], + [ + 77.698279312177604, + 13.0112304374122 + ], + [ + 77.698601026013307, + 13.0116222212646 + ], + [ + 77.698601384619707, + 13.0116219871752 + ], + [ + 77.698999256080697, + 13.0121211086048 + ], + [ + 77.699261835809807, + 13.0124639915143 + ], + [ + 77.699442151239793, + 13.0127733131747 + ], + [ + 77.699641834583701, + 13.013115415664799 + ], + [ + 77.699694709718301, + 13.013272567038101 + ], + [ + 77.699694725906397, + 13.0132726156512 + ], + [ + 77.699707231788693, + 13.0133082170622 + ], + [ + 77.699707685441098, + 13.0133095285387 + ], + [ + 77.700070000084096, + 13.014068468361099 + ], + [ + 77.7001457885126, + 13.0142695991905 + ], + [ + 77.700247811397006, + 13.014421176047399 + ], + [ + 77.700376068737498, + 13.0147068401239 + ], + [ + 77.700757925819303, + 13.0151644856342 + ], + [ + 77.701128123142993, + 13.0154967887435 + ], + [ + 77.701472086010597, + 13.015729983908001 + ], + [ + 77.702000040523899, + 13.016048614576199 + ], + [ + 77.703035764098104, + 13.016475214144499 + ], + [ + 77.7043553576016, + 13.0170182889904 + ], + [ + 77.704369338670503, + 13.017368484638 + ], + [ + 77.7043386572809, + 13.017445188111999 + ], + [ + 77.704373721726199, + 13.017712554507 + ], + [ + 77.704384679365305, + 13.0180610074318 + ], + [ + 77.704369338670503, + 13.018310841604199 + ], + [ + 77.704340848808798, + 13.0185475266097 + ], + [ + 77.704347423392207, + 13.0188346167552 + ], + [ + 77.704364955614807, + 13.0191063662059 + ], + [ + 77.704417552282706, + 13.0192729223208 + ], + [ + 77.704485489645407, + 13.0195709701055 + ], + [ + 77.704568767702895, + 13.019899699279801 + ], + [ + 77.704779154374407, + 13.020483741446 + ], + [ + 77.704933657086301, + 13.0207752146472 + ], + [ + 77.704956464144203, + 13.0208441694254 + ], + [ + 77.705037754658207, + 13.020974643679599 + ], + [ + 77.705283205775004, + 13.0210513471536 + ], + [ + 77.705492496682595, + 13.021083124307101 + ], + [ + 77.705734660507602, + 13.021102848057501 + ], + [ + 77.705981207388305, + 13.021121476044099 + ], + [ + 77.706098454127201, + 13.021410757717399 + ], + [ + 77.706153242322898, + 13.0218030411987 + ], + [ + 77.706178911616306, + 13.0220317354533 + ], + [ + 77.706181354502107, + 13.022051204408699 + ], + [ + 77.7062029292928, + 13.022223173594 + ], + [ + 77.706234328852503, + 13.0230807019226 + ], + [ + 77.706188484941094, + 13.023227182812199 + ], + [ + 77.706234328852503, + 13.0233590259568 + ], + [ + 77.706524367347299, + 13.023355765457801 + ], + [ + 77.706723039558298, + 13.023422580263899 + ], + [ + 77.706953149980293, + 13.024237828616 + ], + [ + 77.707029853454301, + 13.0243846609805 + ], + [ + 77.707223963543598, + 13.024480271513299 + ], + [ + 77.707252494399398, + 13.0244836175413 + ], + [ + 77.7074036042535, + 13.0245013396902 + ], + [ + 77.707581510227598, + 13.024901023663601 + ], + [ + 77.7077306869962, + 13.025348809689 + ], + [ + 77.707787484285802, + 13.025371161332901 + ], + [ + 77.707944760319805, + 13.025774890105501 + ], + [ + 77.708483981563703, + 13.025562616035399 + ], + [ + 77.708982192308099, + 13.0253664853809 + ], + [ + 77.709152801281803, + 13.0252993209895 + ], + [ + 77.709170227610599, + 13.0253067368877 + ], + [ + 77.709170705651999, + 13.0253069403274 + ], + [ + 77.709650445747798, + 13.025511102325 + ], + [ + 77.709653829695199, + 13.025512542419699 + ], + [ + 77.710153506504, + 13.025725187867099 + ], + [ + 77.710624041265206, + 13.0259254296134 + ], + [ + 77.710655652596103, + 13.0259388822445 + ], + [ + 77.710643768378205, + 13.025952247063801 + ], + [ + 77.710656261757606, + 13.0259735204307 + ], + [ + 77.710665939938494, + 13.0259900011452 + ], + [ + 77.710700844247796, + 13.026049434398301 + ], + [ + 77.710715418775706, + 13.026074251525401 + ], + [ + 77.710735195677202, + 13.0261079271397 + ], + [ + 77.710764136181098, + 13.026071287249801 + ], + [ + 77.710911155755099, + 13.025885144710999 + ], + [ + 77.711045671036402, + 13.025714835087401 + ], + [ + 77.7111380344747, + 13.0255978922706 + ], + [ + 77.711225597605093, + 13.025487028659001 + ], + [ + 77.711378074732906, + 13.0252939760173 + ], + [ + 77.711629448880004, + 13.024975711386499 + ], + [ + 77.711774708718394, + 13.0247917947994 + ], + [ + 77.711964876044803, + 13.0245510207594 + ], + [ + 77.712011100541602, + 13.0244924955194 + ], + [ + 77.712050311929104, + 13.024442850481901 + ], + [ + 77.712235547815396, + 13.0242131542922 + ], + [ + 77.712507370935796, + 13.023876086829601 + ], + [ + 77.712661671580705, + 13.023684751839101 + ], + [ + 77.712771873052603, + 13.0235347435015 + ], + [ + 77.712786908007004, + 13.023514279608699 + ], + [ + 77.713204290136702, + 13.022946131221699 + ], + [ + 77.7132843713798, + 13.0228371242821 + ], + [ + 77.713474107654605, + 13.022578854409799 + ], + [ + 77.713559907174201, + 13.022464514675899 + ], + [ + 77.713275299452903, + 13.022274521458201 + ], + [ + 77.7127867016506, + 13.0219835094529 + ], + [ + 77.711981797627004, + 13.021504099573001 + ], + [ + 77.710732942468596, + 13.0207140813863 + ], + [ + 77.710027766525897, + 13.020276792145699 + ], + [ + 77.709880855740707, + 13.020185690963601 + ], + [ + 77.709555610746605, + 13.0199927226912 + ], + [ + 77.709453900080604, + 13.0199323767688 + ], + [ + 77.708946588148805, + 13.019631385936099 + ], + [ + 77.708620936965005, + 13.019453138844201 + ], + [ + 77.708573119017601, + 13.0194065348379 + ], + [ + 77.708669814959194, + 13.0191545782116 + ], + [ + 77.709021404367903, + 13.0180100544097 + ], + [ + 77.709260280901205, + 13.016771841186699 + ], + [ + 77.709339175902997, + 13.016322577981899 + ], + [ + 77.709339175902997, + 13.016055211586799 + ], + [ + 77.709450943822304, + 13.0151610682328 + ], + [ + 77.709624074520704, + 13.014032431401199 + ], + [ + 77.709622974428598, + 13.0140320842651 + ], + [ + 77.709718310217298, + 13.0135568698625 + ], + [ + 77.709993346959905, + 13.011474918425501 + ], + [ + 77.708744021260699, + 13.011549145912401 + ], + [ + 77.708734318934205, + 13.011451968213199 + ], + [ + 77.7084110638677, + 13.0114606734946 + ], + [ + 77.708218209418803, + 13.0100449465175 + ], + [ + 77.707424876344902, + 13.010173150895501 + ], + [ + 77.707122490118294, + 13.010216893494601 + ], + [ + 77.706918021776403, + 13.010242928659199 + ], + [ + 77.706459508336394, + 13.0103079298569 + ], + [ + 77.706217344511401, + 13.0103594307609 + ], + [ + 77.706105576592194, + 13.0103703884 + ], + [ + 77.705508385260202, + 13.010419971717299 + ], + [ + 77.705421819909702, + 13.0103901121505 + ], + [ + 77.705391138520099, + 13.0100416592258 + ], + [ + 77.705327584213094, + 13.0098049742203 + ], + [ + 77.705279370600906, + 13.009546373936599 + ], + [ + 77.704939683788695, + 13.0096102021847 + ], + [ + 77.704461930720896, + 13.0096647164393 + ], + [ + 77.704441557170796, + 13.0089508630181 + ], + [ + 77.704259379689603, + 13.0089501400915 + ], + [ + 77.704343962091599, + 13.0087556728596 + ], + [ + 77.704175936340505, + 13.008704005427701 + ], + [ + 77.703683938343005, + 13.0085516942436 + ], + [ + 77.703631341675205, + 13.0084782780614 + ], + [ + 77.703561212784606, + 13.0084410220883 + ], + [ + 77.7034907099099, + 13.008445799035799 + ], + [ + 77.703371645626305, + 13.008441296029099 + ], + [ + 77.703125017310995, + 13.008439572039199 + ], + [ + 77.703102864244102, + 13.008419725701099 + ], + [ + 77.703009305859098, + 13.008423568819101 + ], + [ + 77.703007852006607, + 13.0082829581435 + ], + [ + 77.702976074853098, + 13.00827638356 + ], + [ + 77.7029640214501, + 13.008239127586901 + ], + [ + 77.702885126448294, + 13.008240223350899 + ], + [ + 77.702867868166194, + 13.007853966571 + ], + [ + 77.702531468644594, + 13.007833147056701 + ], + [ + 77.702399155152193, + 13.0078769776133 + ], + [ + 77.702401620621004, + 13.007994772236399 + ], + [ + 77.702033170004896, + 13.008057778659101 + ], + [ + 77.701716494233693, + 13.008126811785701 + ], + [ + 77.701649652634899, + 13.007866019974101 + ], + [ + 77.701716494233693, + 13.008126811785701 + ], + [ + 77.701844805137, + 13.008846038673701 + ], + [ + 77.701340202431098, + 13.008919777178001 + ], + [ + 77.701319279814797, + 13.008825909163001 + ], + [ + 77.701146149116298, + 13.008860973608201 + ], + [ + 77.700841526748206, + 13.0089157618039 + ], + [ + 77.700724280009297, + 13.0089376770822 + ], + [ + 77.700692354321703, + 13.0085906333154 + ], + [ + 77.700678257925006, + 13.0084862223496 + ], + [ + 77.700619086673598, + 13.0081925576206 + ], + [ + 77.6992953738647, + 13.0084010823445 + ], + [ + 77.699295403865193, + 13.0084013006462 + ], + [ + 77.699145284208996, + 13.0084232159245 + ], + [ + 77.699119362494301, + 13.0083482123511 + ], + [ + 77.699051048512402, + 13.0082100898432 + ], + [ + 77.698416601206006, + 13.007023377524099 + ], + [ + 77.6981645755058, + 13.0071340496795 + ], + [ + 77.697898304874599, + 13.007252392182201 + ], + [ + 77.697589299450698, + 13.0074310017002 + ], + [ + 77.6973361779866, + 13.007597557815201 + ], + [ + 77.697178387982902, + 13.007697272331299 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "232", + "group": "Thanisandra", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "14", + "ward_name": "14 - Thanisandra", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ಥಣಿಸಂದ್ರ", + "dig_ward_n": "Thanisandra", + "Assembly": "152 - Byatarayanapura", + "Slno": "14" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.631410257069007, + 13.042931225126599 + ], + [ + 77.631346879264299, + 13.042928481842599 + ], + [ + 77.631315736334997, + 13.042924281496999 + ], + [ + 77.631271327774598, + 13.0428637531236 + ], + [ + 77.631183519063995, + 13.0427291349868 + ], + [ + 77.631071575688694, + 13.0425450748193 + ], + [ + 77.631043577291393, + 13.0425114817366 + ], + [ + 77.630980271239295, + 13.042515513164499 + ], + [ + 77.630866458866507, + 13.0425358676891 + ], + [ + 77.630634851874305, + 13.0425811341163 + ], + [ + 77.630442351988705, + 13.0426214857864 + ], + [ + 77.630335906863493, + 13.042630472612601 + ], + [ + 77.630276967702102, + 13.042611874303301 + ], + [ + 77.630155674791197, + 13.042523895678 + ], + [ + 77.629925817281404, + 13.042353455148501 + ], + [ + 77.629790585195096, + 13.0422543262749 + ], + [ + 77.629695742352297, + 13.0422168952588 + ], + [ + 77.629585757811896, + 13.042218011995001 + ], + [ + 77.629526804864099, + 13.042252488837599 + ], + [ + 77.629453417293107, + 13.042337929036 + ], + [ + 77.629379585130494, + 13.0424357955989 + ], + [ + 77.629297643465506, + 13.042529227508799 + ], + [ + 77.629239397522994, + 13.0425761189822 + ], + [ + 77.629168438377505, + 13.0425644180915 + ], + [ + 77.629076692440194, + 13.0424930775829 + ], + [ + 77.628949930975594, + 13.0423780516153 + ], + [ + 77.628803552359898, + 13.0423140415649 + ], + [ + 77.628681475152902, + 13.042315281671801 + ], + [ + 77.628595350336397, + 13.0423398709981 + ], + [ + 77.628540630875506, + 13.042393502072199 + ], + [ + 77.628510105338506, + 13.0425022211592 + ], + [ + 77.628515556093305, + 13.0426365478063 + ], + [ + 77.628532416228893, + 13.0427605961141 + ], + [ + 77.628521949511807, + 13.042860076463 + ], + [ + 77.628498996453402, + 13.042922418950999 + ], + [ + 77.628448355455106, + 13.042980525644399 + ], + [ + 77.628374105087303, + 13.043038872144599 + ], + [ + 77.628252803021496, + 13.0431135070951 + ], + [ + 77.628151317972694, + 13.0432105241367 + ], + [ + 77.628128722725705, + 13.0433067408055 + ], + [ + 77.628145872268504, + 13.0434036830565 + ], + [ + 77.6281861269849, + 13.0435071670914 + ], + [ + 77.628337467842897, + 13.0436592084155 + ], + [ + 77.628400678019105, + 13.0436946285931 + ], + [ + 77.628527488653503, + 13.043765687165701 + ], + [ + 77.628642447597997, + 13.0438537308923 + ], + [ + 77.628670815860104, + 13.0439223275791 + ], + [ + 77.628675503105896, + 13.0439843892818 + ], + [ + 77.628667966444496, + 13.044034153306599 + ], + [ + 77.628644965639296, + 13.0440919792595 + ], + [ + 77.628601559808999, + 13.0441262980417 + ], + [ + 77.628499835929006, + 13.0442007333838 + ], + [ + 77.628327152331906, + 13.0442634676614 + ], + [ + 77.628135104814007, + 13.044346725223001 + ], + [ + 77.628080769812001, + 13.044382284211601 + ], + [ + 77.628053618639697, + 13.0444288596891 + ], + [ + 77.628003215920799, + 13.044509550064999 + ], + [ + 77.6279690290323, + 13.044653312537299 + ], + [ + 77.627954495477098, + 13.0447494473347 + ], + [ + 77.6279550681882, + 13.044803646042199 + ], + [ + 77.627944159863205, + 13.044861350050301 + ], + [ + 77.627917247247197, + 13.044930507418499 + ], + [ + 77.627886351456993, + 13.0450042231908 + ], + [ + 77.627863636763294, + 13.0450891484771 + ], + [ + 77.627845084204694, + 13.0451864533599 + ], + [ + 77.627798509366599, + 13.045247906511101 + ], + [ + 77.627706645712294, + 13.0453290170781 + ], + [ + 77.627578262058705, + 13.0454421178401 + ], + [ + 77.627545677168897, + 13.0454663909193 + ], + [ + 77.627490651932305, + 13.045507380918201 + ], + [ + 77.627489408545102, + 13.0455083068923 + ], + [ + 77.627489122386294, + 13.045508520292801 + ], + [ + 77.627487192531603, + 13.045505784494599 + ], + [ + 77.627451484210198, + 13.045455169575099 + ], + [ + 77.627243504948396, + 13.0455791145147 + ], + [ + 77.627052044193604, + 13.0457820438615 + ], + [ + 77.626789078402396, + 13.045993482572101 + ], + [ + 77.626831721503606, + 13.0463950384424 + ], + [ + 77.626726890546294, + 13.0467166384979 + ], + [ + 77.626586523671307, + 13.046823246251099 + ], + [ + 77.626717118168898, + 13.047390932536899 + ], + [ + 77.627067146958595, + 13.047358950210899 + ], + [ + 77.627074254142101, + 13.0478617834469 + ], + [ + 77.627147102773506, + 13.0478635602427 + ], + [ + 77.627223504996607, + 13.048094543708 + ], + [ + 77.626815891942499, + 13.0481492557041 + ], + [ + 77.626840658259297, + 13.048253415725201 + ], + [ + 77.626944548042403, + 13.048825695215401 + ], + [ + 77.627007624296397, + 13.048837244388601 + ], + [ + 77.627038078100597, + 13.0489398094505 + ], + [ + 77.627355391439195, + 13.049897476513999 + ], + [ + 77.628081697409897, + 13.0497043207813 + ], + [ + 77.628122563715294, + 13.049814482126299 + ], + [ + 77.628248716223297, + 13.050175171691301 + ], + [ + 77.628438315064898, + 13.050681655358501 + ], + [ + 77.627393334977796, + 13.050764093524601 + ], + [ + 77.626235384070498, + 13.0508610347014 + ], + [ + 77.626075850952802, + 13.0508713394722 + ], + [ + 77.626411328489894, + 13.0520063908889 + ], + [ + 77.625046900509105, + 13.052337670186001 + ], + [ + 77.625357869315593, + 13.0530020539469 + ], + [ + 77.625524888128993, + 13.0532845644929 + ], + [ + 77.625761201981902, + 13.0537589689946 + ], + [ + 77.6259878424368, + 13.0541187533869 + ], + [ + 77.626308488718095, + 13.0545909313021 + ], + [ + 77.626473730735597, + 13.054814807583799 + ], + [ + 77.626594457247805, + 13.0549969931068 + ], + [ + 77.626618850877506, + 13.055052184788201 + ], + [ + 77.627013402078603, + 13.0558065687863 + ], + [ + 77.627030574543895, + 13.0558472364943 + ], + [ + 77.627640163782502, + 13.0572908220129 + ], + [ + 77.627626366760694, + 13.0572932207793 + ], + [ + 77.626581703884298, + 13.057539525211199 + ], + [ + 77.626234718085698, + 13.057576859156001 + ], + [ + 77.625989773695096, + 13.0577132065036 + ], + [ + 77.625596657742804, + 13.057889299338299 + ], + [ + 77.625364744321502, + 13.058092437695 + ], + [ + 77.625190883855296, + 13.058251962329701 + ], + [ + 77.624827021689498, + 13.0584277571278 + ], + [ + 77.624507494229903, + 13.0586461271581 + ], + [ + 77.624216463258605, + 13.0587924984669 + ], + [ + 77.624014611625299, + 13.0588499334088 + ], + [ + 77.6240519243389, + 13.059120006383599 + ], + [ + 77.624166527673594, + 13.0594638163877 + ], + [ + 77.624328219621503, + 13.0601394805435 + ], + [ + 77.624371063783897, + 13.0605023672746 + ], + [ + 77.624354389505001, + 13.060770247759899 + ], + [ + 77.624202063591397, + 13.061354327211101 + ], + [ + 77.624283796202207, + 13.0616741504706 + ], + [ + 77.624638749075999, + 13.0618382044042 + ], + [ + 77.625090461534697, + 13.0620259560562 + ], + [ + 77.625774527951094, + 13.062285368255701 + ], + [ + 77.625886466091998, + 13.0622711538886 + ], + [ + 77.626070775835103, + 13.0626076658654 + ], + [ + 77.626733079303193, + 13.062524445323501 + ], + [ + 77.627567216634304, + 13.0623704827621 + ], + [ + 77.6279829868717, + 13.063735062003101 + ], + [ + 77.6289363058726, + 13.0629161623763 + ], + [ + 77.629628989701004, + 13.062313606447701 + ], + [ + 77.629683019274694, + 13.0622679648854 + ], + [ + 77.631092610690203, + 13.0609347769718 + ], + [ + 77.631090701244105, + 13.060927896198301 + ], + [ + 77.632190435171296, + 13.059989162260001 + ], + [ + 77.632829140029898, + 13.0594451415874 + ], + [ + 77.632830222266605, + 13.059454308251899 + ], + [ + 77.632837200418393, + 13.0594494066628 + ], + [ + 77.633289953803796, + 13.061714629922699 + ], + [ + 77.633540321567594, + 13.063293168140399 + ], + [ + 77.634387025781393, + 13.0631663255836 + ], + [ + 77.634484381387594, + 13.063159107632901 + ], + [ + 77.634484381387594, + 13.063230179468301 + ], + [ + 77.634498595754707, + 13.0633030280997 + ], + [ + 77.634514586917703, + 13.063393644689899 + ], + [ + 77.634558585582297, + 13.0638564956088 + ], + [ + 77.635477618471199, + 13.0633893460009 + ], + [ + 77.635413499897595, + 13.063251949057401 + ], + [ + 77.635898969097994, + 13.0630221908352 + ], + [ + 77.636211928802695, + 13.0627847994494 + ], + [ + 77.637815656460006, + 13.0626153432191 + ], + [ + 77.638003432282801, + 13.062574887452399 + ], + [ + 77.638302018240594, + 13.0624717172653 + ], + [ + 77.638291661196106, + 13.062397007857101 + ], + [ + 77.638282779163802, + 13.0623329371954 + ], + [ + 77.638234886153697, + 13.0619991677827 + ], + [ + 77.638227277752904, + 13.061909425712299 + ], + [ + 77.638218318863196, + 13.0618037614325 + ], + [ + 77.638195379966206, + 13.0615331902981 + ], + [ + 77.638182089294901, + 13.0608241560876 + ], + [ + 77.638172792633199, + 13.0604911218085 + ], + [ + 77.638156406700503, + 13.059924404818499 + ], + [ + 77.638157427804202, + 13.0596409522591 + ], + [ + 77.638171564042096, + 13.058965515531501 + ], + [ + 77.638354193376898, + 13.057669529182199 + ], + [ + 77.638358765256299, + 13.057503482544099 + ], + [ + 77.638336192593798, + 13.0565167470508 + ], + [ + 77.638308641534493, + 13.055603463629399 + ], + [ + 77.638298165844006, + 13.0552389216019 + ], + [ + 77.638296767532196, + 13.0551902786724 + ], + [ + 77.638185965142796, + 13.0548435997871 + ], + [ + 77.638153250873998, + 13.0546372805067 + ], + [ + 77.638339338442606, + 13.0545348782434 + ], + [ + 77.638312958593303, + 13.054328494357099 + ], + [ + 77.638197881759595, + 13.053976402464199 + ], + [ + 77.638182002260294, + 13.0539278169424 + ], + [ + 77.638120218643095, + 13.053804229617301 + ], + [ + 77.638095616969906, + 13.0536832902058 + ], + [ + 77.638068038420201, + 13.053547714433201 + ], + [ + 77.638031504935, + 13.0533681141995 + ], + [ + 77.637885017402795, + 13.052643499493801 + ], + [ + 77.637807918527997, + 13.0521620952424 + ], + [ + 77.637794195886599, + 13.0520086568997 + ], + [ + 77.637779981987407, + 13.051808924214599 + ], + [ + 77.637796263710499, + 13.0516608260737 + ], + [ + 77.638428059609197, + 13.0515538774372 + ], + [ + 77.638362453535194, + 13.0510700976925 + ], + [ + 77.638315931135594, + 13.0508702818475 + ], + [ + 77.638135567806899, + 13.050095609131599 + ], + [ + 77.638333924300397, + 13.0500642251899 + ], + [ + 77.638288331621993, + 13.049941038080799 + ], + [ + 77.638259810124396, + 13.0498639743486 + ], + [ + 77.638159496726601, + 13.049528480431301 + ], + [ + 77.638090134937798, + 13.0492333238121 + ], + [ + 77.638030046143598, + 13.0487777882849 + ], + [ + 77.638003707004998, + 13.0485781096754 + ], + [ + 77.637876080951301, + 13.048056567339099 + ], + [ + 77.637855213247505, + 13.0479081759237 + ], + [ + 77.6377807773721, + 13.0473788583596 + ], + [ + 77.637722379672894, + 13.0472186057846 + ], + [ + 77.637557744612295, + 13.0467668189574 + ], + [ + 77.637314441095995, + 13.0460352849529 + ], + [ + 77.637230869961698, + 13.0455403947041 + ], + [ + 77.637101407825597, + 13.0446823525069 + ], + [ + 77.637099901924998, + 13.044614372343901 + ], + [ + 77.637089254935901, + 13.0441336591878 + ], + [ + 77.637117664564201, + 13.043499858428801 + ], + [ + 77.637177854204495, + 13.0433648638277 + ], + [ + 77.637277494855894, + 13.0429313442392 + ], + [ + 77.637290190745702, + 13.0428103232978 + ], + [ + 77.637019744397506, + 13.042629072584599 + ], + [ + 77.636939740815606, + 13.0425790714428 + ], + [ + 77.636814475202598, + 13.0424967831231 + ], + [ + 77.636718541212105, + 13.0424108080979 + ], + [ + 77.636694021122807, + 13.042379438829499 + ], + [ + 77.636647884071706, + 13.0423189301139 + ], + [ + 77.636610900497004, + 13.0422526800462 + ], + [ + 77.636575044681607, + 13.042184160874401 + ], + [ + 77.636555491698601, + 13.0421324144042 + ], + [ + 77.636553512875807, + 13.042108720230001 + ], + [ + 77.636555013901202, + 13.042087249109599 + ], + [ + 77.636559836426798, + 13.042053322353601 + ], + [ + 77.636568775840999, + 13.041973054236299 + ], + [ + 77.636628917727293, + 13.041833543234199 + ], + [ + 77.636729968828504, + 13.041641669732901 + ], + [ + 77.636768554869704, + 13.0414244598298 + ], + [ + 77.636786998812894, + 13.041208584406901 + ], + [ + 77.636775772178893, + 13.0411273925072 + ], + [ + 77.636743672101204, + 13.0410328631292 + ], + [ + 77.636681627545499, + 13.0409928421121 + ], + [ + 77.636563056013202, + 13.040944362023399 + ], + [ + 77.636496200005496, + 13.040939396849501 + ], + [ + 77.636378155034905, + 13.0409405993926 + ], + [ + 77.636326858375895, + 13.0409366049258 + ], + [ + 77.636259475881602, + 13.040881957859201 + ], + [ + 77.636196845132702, + 13.040786609207499 + ], + [ + 77.636119157612697, + 13.040737713331501 + ], + [ + 77.636062511028896, + 13.0407179637329 + ], + [ + 77.635960013500593, + 13.0407190077064 + ], + [ + 77.635882671404502, + 13.040757060841401 + ], + [ + 77.6358163537774, + 13.0408029064607 + ], + [ + 77.635653570332707, + 13.040929911596301 + ], + [ + 77.635546476370294, + 13.0409863357257 + ], + [ + 77.635448800640404, + 13.041007657003201 + ], + [ + 77.635335985851299, + 13.041013322835701 + ], + [ + 77.6352960246398, + 13.0410464781557 + ], + [ + 77.635274910311793, + 13.041064761241399 + ], + [ + 77.635194001929094, + 13.0412010957288 + ], + [ + 77.635006380173905, + 13.0414841907187 + ], + [ + 77.634956639933307, + 13.041572779092499 + ], + [ + 77.634880483181206, + 13.041668412864199 + ], + [ + 77.634826279720798, + 13.041770596832601 + ], + [ + 77.634811174773205, + 13.041812533077801 + ], + [ + 77.6348114498483, + 13.041838503154001 + ], + [ + 77.634820338484502, + 13.0418621270197 + ], + [ + 77.634829934514201, + 13.0418981654927 + ], + [ + 77.634877484147694, + 13.042037709031201 + ], + [ + 77.634895357139101, + 13.0420939898207 + ], + [ + 77.634902901034906, + 13.0421537635457 + ], + [ + 77.634907782788702, + 13.042179686713601 + ], + [ + 77.6348988684788, + 13.0422080088657 + ], + [ + 77.634885732890694, + 13.042218305912501 + ], + [ + 77.634802834217297, + 13.042275612755301 + ], + [ + 77.634765799754206, + 13.042313255262499 + ], + [ + 77.634739694150397, + 13.042349657237599 + ], + [ + 77.634726653305805, + 13.0423689873585 + ], + [ + 77.634724649892306, + 13.0423972391451 + ], + [ + 77.6347382878171, + 13.042434365721601 + ], + [ + 77.634747499402593, + 13.042488476197301 + ], + [ + 77.634745471151604, + 13.0425144697255 + ], + [ + 77.634733077895604, + 13.0425405687875 + ], + [ + 77.6346941125679, + 13.042559033608001 + ], + [ + 77.634636720553601, + 13.042577686033299 + ], + [ + 77.634515867214603, + 13.0425856919934 + ], + [ + 77.634399501862902, + 13.0425823596504 + ], + [ + 77.634253239128896, + 13.0425838486321 + ], + [ + 77.634084591514707, + 13.042592340929801 + ], + [ + 77.634034446124005, + 13.042588334343399 + ], + [ + 77.633958988868301, + 13.0425868439039 + ], + [ + 77.633890415872798, + 13.0425830257619 + ], + [ + 77.633826498275198, + 13.042583675435701 + ], + [ + 77.633714929912898, + 13.042598362058801 + ], + [ + 77.633648756795907, + 13.0426035525747 + ], + [ + 77.633635488697195, + 13.042601429098699 + ], + [ + 77.633630714650806, + 13.042585668096599 + ], + [ + 77.6336036086105, + 13.0424188140107 + ], + [ + 77.633576096172902, + 13.0422135693287 + ], + [ + 77.633540552165599, + 13.0418480519381 + ], + [ + 77.633523169602597, + 13.041838065523899 + ], + [ + 77.633455089868704, + 13.041826336508 + ], + [ + 77.633348513027201, + 13.041822904013401 + ], + [ + 77.633097545610795, + 13.0418344926572 + ], + [ + 77.632987200836098, + 13.041855941102099 + ], + [ + 77.632788091910299, + 13.041924593027501 + ], + [ + 77.6327126666894, + 13.04195702294 + ], + [ + 77.632704763597999, + 13.0419604215514 + ], + [ + 77.632508329001993, + 13.042044882787801 + ], + [ + 77.632367834360707, + 13.042101645585401 + ], + [ + 77.632309145742795, + 13.0421609639669 + ], + [ + 77.632145336753894, + 13.042354603996101 + ], + [ + 77.631947359743407, + 13.0425847277386 + ], + [ + 77.631782756951097, + 13.042812253445501 + ], + [ + 77.631700565364198, + 13.0428819741003 + ], + [ + 77.631618506629295, + 13.0429099108378 + ], + [ + 77.631543731569394, + 13.0429185751885 + ], + [ + 77.6314751100264, + 13.042925078327601 + ], + [ + 77.631410257069007, + 13.042931225126599 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "257", + "group": "JAGADISH NAGARA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "50", + "ward_name": "50 - Jagadish Nagar", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಜಗದೀಶ್ ನಗರ", + "dig_ward_n": "JAGADISH NAGARA", + "Assembly": "151 - K.R. Pura", + "Slno": "50" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.660163811663793, + 12.960870225834499 + ], + [ + 77.659773412627203, + 12.9610255337992 + ], + [ + 77.659864663607294, + 12.9613238499839 + ], + [ + 77.659967559769001, + 12.9616886722497 + ], + [ + 77.659979771474795, + 12.961687659496301 + ], + [ + 77.659998620086398, + 12.9616860963232 + ], + [ + 77.660820446715604, + 12.961606553564399 + ], + [ + 77.660947198867902, + 12.9622116036014 + ], + [ + 77.661045483550694, + 12.9621966457533 + ], + [ + 77.661351259274596, + 12.9621499364697 + ], + [ + 77.661385218498296, + 12.962145168606 + ], + [ + 77.661446682771, + 12.962136539031 + ], + [ + 77.6614485557688, + 12.9621445209167 + ], + [ + 77.661450732166102, + 12.9621537957551 + ], + [ + 77.661520835360307, + 12.962452529800499 + ], + [ + 77.661538944719396, + 12.9625296998935 + ], + [ + 77.661680386437993, + 12.962783461301701 + ], + [ + 77.6617075507463, + 12.9629017535391 + ], + [ + 77.661790975743997, + 12.9642503403983 + ], + [ + 77.661791203892506, + 12.964271793597 + ], + [ + 77.661791203755897, + 12.9642717936133 + ], + [ + 77.661780854371301, + 12.9642730287023 + ], + [ + 77.661608341618205, + 12.9642375284223 + ], + [ + 77.661341867423701, + 12.9641905673869 + ], + [ + 77.661087014127503, + 12.9641536503723 + ], + [ + 77.661059804686602, + 12.964301858955199 + ], + [ + 77.660935816028498, + 12.9644984852709 + ], + [ + 77.660889091454393, + 12.964616797838101 + ], + [ + 77.660795662828704, + 12.964853370362601 + ], + [ + 77.660676048527606, + 12.9648747418239 + ], + [ + 77.660534213660597, + 12.9649000840902 + ], + [ + 77.660545811024804, + 12.9649620736842 + ], + [ + 77.660560757156802, + 12.9649819965655 + ], + [ + 77.660719837304896, + 12.9651940467822 + ], + [ + 77.660936560290594, + 12.9651813492921 + ], + [ + 77.661000031407397, + 12.965177630575999 + ], + [ + 77.661068584058199, + 12.9654524638302 + ], + [ + 77.661140491475194, + 12.965447211449099 + ], + [ + 77.661205402942599, + 12.9654487328134 + ], + [ + 77.661252438073404, + 12.9654498351903 + ], + [ + 77.661274664429698, + 12.965450356113299 + ], + [ + 77.661393247674795, + 12.9655033466746 + ], + [ + 77.661507896789701, + 12.9655112078665 + ], + [ + 77.661558781565901, + 12.965532142896601 + ], + [ + 77.661630366256304, + 12.965604811142001 + ], + [ + 77.661646208845895, + 12.965632880044 + ], + [ + 77.661652469640799, + 12.965680244018699 + ], + [ + 77.661683639241005, + 12.9657420332824 + ], + [ + 77.661706306296296, + 12.965816331143801 + ], + [ + 77.661763454720003, + 12.9659792873427 + ], + [ + 77.661767681021999, + 12.9659913396052 + ], + [ + 77.661771021024506, + 12.9660008642135 + ], + [ + 77.661786230412602, + 12.966185903719101 + ], + [ + 77.6617868661057, + 12.9661915434077 + ], + [ + 77.661952536316207, + 12.9662981275786 + ], + [ + 77.6619648261604, + 12.9663060342591 + ], + [ + 77.661645422379095, + 12.9668039084592 + ], + [ + 77.661640183487293, + 12.966802635662701 + ], + [ + 77.661547298288895, + 12.9667800690465 + ], + [ + 77.660535684821497, + 12.9669338293593 + ], + [ + 77.660441731473995, + 12.9669480998044 + ], + [ + 77.660330085400702, + 12.966965057579101 + ], + [ + 77.659929864666907, + 12.9670258461771 + ], + [ + 77.659704199150397, + 12.9670812275725 + ], + [ + 77.659627655396207, + 12.9670443053579 + ], + [ + 77.659584991642205, + 12.967023725736301 + ], + [ + 77.6594821066723, + 12.967039457600899 + ], + [ + 77.658988944504003, + 12.967114511311101 + ], + [ + 77.658461266921506, + 12.9671921753172 + ], + [ + 77.658462845778303, + 12.967204557460599 + ], + [ + 77.658492040824299, + 12.9674335184444 + ], + [ + 77.658492035241593, + 12.967433526453901 + ], + [ + 77.658336663997105, + 12.9676564374347 + ], + [ + 77.657951734615494, + 12.968165141439 + ], + [ + 77.657273809037804, + 12.968244338574699 + ], + [ + 77.6572738173559, + 12.9682443928418 + ], + [ + 77.657375255235294, + 12.9689061673221 + ], + [ + 77.657397128490103, + 12.968972047372899 + ], + [ + 77.657446624238901, + 12.9691211234279 + ], + [ + 77.657526376487994, + 12.969529094179199 + ], + [ + 77.657585375337504, + 12.9698857870832 + ], + [ + 77.657629119699394, + 12.9701502566085 + ], + [ + 77.657629743334098, + 12.970154767203001 + ], + [ + 77.657648873450299, + 12.9702845598897 + ], + [ + 77.657657662996698, + 12.9703441945181 + ], + [ + 77.657688724911395, + 12.9705584330265 + ], + [ + 77.657702445090607, + 12.970711869679199 + ], + [ + 77.657752647367303, + 12.970776852704899 + ], + [ + 77.658077318255494, + 12.970968811828801 + ], + [ + 77.658103739202105, + 12.970984432973101 + ], + [ + 77.658128677776205, + 12.9709915042614 + ], + [ + 77.658361286409701, + 12.971057459884101 + ], + [ + 77.658427755847896, + 12.9710923584301 + ], + [ + 77.658725977911701, + 12.9712489340363 + ], + [ + 77.658734709680999, + 12.971253518470499 + ], + [ + 77.658637232913406, + 12.971453261271501 + ], + [ + 77.659041969220794, + 12.971507844123 + ], + [ + 77.659281402469105, + 12.971539443385399 + ], + [ + 77.659288147448194, + 12.9715403335522 + ], + [ + 77.659596065193398, + 12.9715857422692 + ], + [ + 77.660156612191599, + 12.971566458594801 + ], + [ + 77.660802752541898, + 12.9715835629416 + ], + [ + 77.661023889183198, + 12.9715892051307 + ], + [ + 77.661434556526999, + 12.971615024806299 + ], + [ + 77.661518187800894, + 12.9716202828309 + ], + [ + 77.661573740265993, + 12.971701019481401 + ], + [ + 77.661566333885702, + 12.971978887880599 + ], + [ + 77.661983994069402, + 12.971787159742499 + ], + [ + 77.662630237404599, + 12.9715976079156 + ], + [ + 77.662806441107406, + 12.97157297707 + ], + [ + 77.663057361427406, + 12.971537902153701 + ], + [ + 77.6630854866508, + 12.9715409935548 + ], + [ + 77.663507518561104, + 12.9715873810663 + ], + [ + 77.663611852306303, + 12.9715988488813 + ], + [ + 77.663902931549501, + 12.971630873940899 + ], + [ + 77.663961472847902, + 12.971643446628701 + ], + [ + 77.664234151998301, + 12.9717020107175 + ], + [ + 77.664310713034894, + 12.9717184043506 + ], + [ + 77.664505935613406, + 12.9717602051509 + ], + [ + 77.664731732694193, + 12.971776478676199 + ], + [ + 77.664794016393898, + 12.971780967518001 + ], + [ + 77.664917902792794, + 12.9717909904736 + ], + [ + 77.665335291469503, + 12.971844304263399 + ], + [ + 77.665406237863905, + 12.9717487214252 + ], + [ + 77.665531077406001, + 12.9715780567259 + ], + [ + 77.665716988157996, + 12.9715196895337 + ], + [ + 77.666053768558001, + 12.9714642926634 + ], + [ + 77.666141699361305, + 12.9714498404691 + ], + [ + 77.666157781596596, + 12.9714462879033 + ], + [ + 77.666197777674796, + 12.9714949188694 + ], + [ + 77.666669985549305, + 12.9713972516673 + ], + [ + 77.667095559425107, + 12.9713453044786 + ], + [ + 77.666769021778705, + 12.971005617665201 + ], + [ + 77.666652296231902, + 12.9707481704408 + ], + [ + 77.666648487748105, + 12.9707338682145 + ], + [ + 77.666889588968402, + 12.970735300644 + ], + [ + 77.666889543491607, + 12.9707343182251 + ], + [ + 77.667447256746001, + 12.9708072633717 + ], + [ + 77.667570025200007, + 12.970842348842 + ], + [ + 77.668272164704504, + 12.970913533078001 + ], + [ + 77.668272071511097, + 12.9709130001328 + ], + [ + 77.668480860207396, + 12.9709430620197 + ], + [ + 77.668844398632203, + 12.9709563082891 + ], + [ + 77.6689517834958, + 12.971225866212 + ], + [ + 77.6690723175264, + 12.9712587391294 + ], + [ + 77.669396663645003, + 12.971206142461501 + ], + [ + 77.669363790727502, + 12.9710823211392 + ], + [ + 77.669752786917101, + 12.9710089049569 + ], + [ + 77.669470079827207, + 12.969563592354101 + ], + [ + 77.670285876061399, + 12.969371285787201 + ], + [ + 77.670239580035798, + 12.9688138158958 + ], + [ + 77.670150811753302, + 12.9680230122945 + ], + [ + 77.670074686109601, + 12.9676453132007 + ], + [ + 77.670050666501993, + 12.967650562669499 + ], + [ + 77.670033850360994, + 12.9676558673795 + ], + [ + 77.669961906571103, + 12.967288880084199 + ], + [ + 77.669759483277403, + 12.9661512499881 + ], + [ + 77.669553631825494, + 12.9661149493752 + ], + [ + 77.668573744945405, + 12.9659618163682 + ], + [ + 77.668685786805497, + 12.9649359074035 + ], + [ + 77.668615657914998, + 12.9637634400154 + ], + [ + 77.668554295135806, + 12.962847381383099 + ], + [ + 77.668405271243401, + 12.9620365160866 + ], + [ + 77.668392122076497, + 12.9618129802481 + ], + [ + 77.668273779573695, + 12.9615149324634 + ], + [ + 77.668174963029998, + 12.961278446071899 + ], + [ + 77.668129866907705, + 12.961048850076899 + ], + [ + 77.668105853754, + 12.9606462656205 + ], + [ + 77.668086628180902, + 12.9604218613346 + ], + [ + 77.668122290212693, + 12.9602967169319 + ], + [ + 77.668131056324, + 12.959720345113 + ], + [ + 77.668074076600504, + 12.959076035931499 + ], + [ + 77.668064214725305, + 12.958395566540799 + ], + [ + 77.6679412117916, + 12.958153363408799 + ], + [ + 77.666378572411006, + 12.958337883762599 + ], + [ + 77.665150815593705, + 12.9586293610285 + ], + [ + 77.664552146690198, + 12.958766951521399 + ], + [ + 77.663755721625904, + 12.958964651461599 + ], + [ + 77.663561617468105, + 12.9589320169855 + ], + [ + 77.663559797160801, + 12.9588968422013 + ], + [ + 77.663476869018197, + 12.958915511058899 + ], + [ + 77.6630773250602, + 12.959022359417499 + ], + [ + 77.662199901649302, + 12.959178135221901 + ], + [ + 77.662152784135301, + 12.9591865217586 + ], + [ + 77.661488292916204, + 12.9592271937193 + ], + [ + 77.661442965071302, + 12.9592297756133 + ], + [ + 77.661439964078298, + 12.9592299463215 + ], + [ + 77.661375949871498, + 12.9592328005601 + ], + [ + 77.661165004936194, + 12.9592422059615 + ], + [ + 77.661144198697698, + 12.9592431332469 + ], + [ + 77.660888703278502, + 12.959253649724699 + ], + [ + 77.660850064116204, + 12.9592472692536 + ], + [ + 77.660574558354199, + 12.959195010902601 + ], + [ + 77.660386849899297, + 12.9591594060653 + ], + [ + 77.659775159428705, + 12.9590764468235 + ], + [ + 77.659664470653297, + 12.9590617684037 + ], + [ + 77.659666017690299, + 12.959099017539399 + ], + [ + 77.659669114373301, + 12.959197521633399 + ], + [ + 77.659669495557793, + 12.9592096475901 + ], + [ + 77.659728930058606, + 12.9597104231466 + ], + [ + 77.659747338445598, + 12.9598175129039 + ], + [ + 77.659754222131397, + 12.959869387631199 + ], + [ + 77.659764607588997, + 12.959925743537999 + ], + [ + 77.659807612623595, + 12.9601805124511 + ], + [ + 77.659790727499697, + 12.9602168206874 + ], + [ + 77.659828203006498, + 12.9602450522806 + ], + [ + 77.659836574285507, + 12.9602513586523 + ], + [ + 77.659853303604095, + 12.960254575421301 + ], + [ + 77.659899941804596, + 12.960255228073001 + ], + [ + 77.659916312094396, + 12.9602933821976 + ], + [ + 77.660163811663793, + 12.960870225834499 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "233", + "group": "Singapura", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "20", + "ward_name": "20 - Singapura", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ಸಿಂಗಾಪುರ", + "dig_ward_n": "Singapura", + "Assembly": "152 - Byatarayanapura", + "Slno": "20" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.537194054434906, + 13.0769080602683 + ], + [ + 77.537194054434906, + 13.0770141612413 + ], + [ + 77.536620040537599, + 13.0770981260402 + ], + [ + 77.536683395794896, + 13.0774198638829 + ], + [ + 77.536276166520594, + 13.077522911590499 + ], + [ + 77.536240743035506, + 13.0774649599513 + ], + [ + 77.5360353402112, + 13.077515660085201 + ], + [ + 77.536013204037005, + 13.077403452581301 + ], + [ + 77.5333299274767, + 13.0781208943932 + ], + [ + 77.533156715505598, + 13.0784960476599 + ], + [ + 77.532703478061507, + 13.0781045299934 + ], + [ + 77.532692777902, + 13.077655156148699 + ], + [ + 77.532560724172896, + 13.0776704224757 + ], + [ + 77.532200460402905, + 13.077744316476601 + ], + [ + 77.532209300888198, + 13.0776026779413 + ], + [ + 77.532129935791403, + 13.077591504472901 + ], + [ + 77.532100133577899, + 13.0775968869465 + ], + [ + 77.531528150151303, + 13.077638449549999 + ], + [ + 77.531524090162605, + 13.0774760510901 + ], + [ + 77.531529982883001, + 13.0771956286702 + ], + [ + 77.531158627826102, + 13.0772077231456 + ], + [ + 77.530895218346998, + 13.0771980375585 + ], + [ + 77.530891632230905, + 13.0772510593817 + ], + [ + 77.530888231110694, + 13.077301346396601 + ], + [ + 77.530873728060598, + 13.077374491612099 + ], + [ + 77.530812793436795, + 13.077681808705201 + ], + [ + 77.530775377820802, + 13.0778705091234 + ], + [ + 77.530704205477804, + 13.0778645302542 + ], + [ + 77.530570715139007, + 13.077853316845401 + ], + [ + 77.530405321598906, + 13.077902370339601 + ], + [ + 77.530403524960604, + 13.077913807806199 + ], + [ + 77.530373529034705, + 13.078104761019899 + ], + [ + 77.530350610651595, + 13.0782506629157 + ], + [ + 77.530295519743802, + 13.078601376908299 + ], + [ + 77.530265942107903, + 13.0785997018016 + ], + [ + 77.5302615147816, + 13.0785994515733 + ], + [ + 77.530256937354295, + 13.078599032964 + ], + [ + 77.530228074264997, + 13.078596391363799 + ], + [ + 77.530123120610796, + 13.0785893828801 + ], + [ + 77.530051114833697, + 13.078584573894901 + ], + [ + 77.529904911885495, + 13.078595041598 + ], + [ + 77.529809428051394, + 13.078777800744099 + ], + [ + 77.5296827156494, + 13.0787790426161 + ], + [ + 77.529526536863798, + 13.0787715384939 + ], + [ + 77.5294394850755, + 13.078877419970601 + ], + [ + 77.529421940678105, + 13.079021017773 + ], + [ + 77.529632857474695, + 13.079990180940101 + ], + [ + 77.529787158714399, + 13.080942958507601 + ], + [ + 77.529839756352501, + 13.0813557803045 + ], + [ + 77.529934711097994, + 13.081516344651799 + ], + [ + 77.529949800603703, + 13.0819306679159 + ], + [ + 77.529955515771903, + 13.0820875852068 + ], + [ + 77.529946138979497, + 13.0821283332658 + ], + [ + 77.529979194369204, + 13.082152315235801 + ], + [ + 77.530003701796801, + 13.082170096471399 + ], + [ + 77.530010870920293, + 13.0821752979294 + ], + [ + 77.530043807477696, + 13.0821991943208 + ], + [ + 77.5300981845715, + 13.082238646940199 + ], + [ + 77.530629429451807, + 13.082647904269299 + ], + [ + 77.530840190729904, + 13.08281072037 + ], + [ + 77.531196696507394, + 13.082917898519399 + ], + [ + 77.531716629884897, + 13.0830652581466 + ], + [ + 77.531747250666598, + 13.0830723724787 + ], + [ + 77.533036571613906, + 13.08337190602 + ], + [ + 77.533178388274195, + 13.083382936489899 + ], + [ + 77.534347898740805, + 13.0836337198326 + ], + [ + 77.534399691358502, + 13.0836453889503 + ], + [ + 77.534546770885996, + 13.0836785235498 + ], + [ + 77.534982684971098, + 13.0837767296194 + ], + [ + 77.535069983103298, + 13.0837963968892 + ], + [ + 77.536626852952097, + 13.0837887620589 + ], + [ + 77.536884620273, + 13.0837874972132 + ], + [ + 77.536892945171104, + 13.083802863713199 + ], + [ + 77.537244316999903, + 13.0844514710149 + ], + [ + 77.537953530936505, + 13.085760612982799 + ], + [ + 77.538415821520999, + 13.0862649355029 + ], + [ + 77.538469055853994, + 13.086323009463401 + ], + [ + 77.538678644521099, + 13.0865516537781 + ], + [ + 77.538823803897301, + 13.086710010943801 + ], + [ + 77.5390944619609, + 13.0870052741684 + ], + [ + 77.539260091659401, + 13.0873084489339 + ], + [ + 77.539481498987897, + 13.0877137204848 + ], + [ + 77.539662724630702, + 13.0880454388743 + ], + [ + 77.539767682967806, + 13.088235857418301 + ], + [ + 77.539927495831094, + 13.088525790649699 + ], + [ + 77.540064870526905, + 13.0887750178129 + ], + [ + 77.540242722083505, + 13.0890976762813 + ], + [ + 77.540254865066004, + 13.089119706883601 + ], + [ + 77.540573889008002, + 13.0896984785585 + ], + [ + 77.540575745676804, + 13.0897018464469 + ], + [ + 77.540590515480105, + 13.0897286413048 + ], + [ + 77.540600736111102, + 13.089747183574 + ], + [ + 77.540642803836406, + 13.089823502051001 + ], + [ + 77.540643316603294, + 13.0898244320835 + ], + [ + 77.540710098644894, + 13.089965625943799 + ], + [ + 77.5407136051126, + 13.089973039544899 + ], + [ + 77.540713742654603, + 13.0899733300083 + ], + [ + 77.540714414893202, + 13.0899726439823 + ], + [ + 77.540721197482497, + 13.0899657225977 + ], + [ + 77.540758776255103, + 13.089927373557099 + ], + [ + 77.540767940400102, + 13.089918020983299 + ], + [ + 77.540846671617601, + 13.0898376756417 + ], + [ + 77.541565583224795, + 13.0890758420725 + ], + [ + 77.542180294240197, + 13.088269954187499 + ], + [ + 77.542274395272599, + 13.0881465860397 + ], + [ + 77.542433527057497, + 13.087937961431001 + ], + [ + 77.542928991185306, + 13.0874086852 + ], + [ + 77.542976975067603, + 13.0873574268229 + ], + [ + 77.543350969338306, + 13.086957909118199 + ], + [ + 77.543440717350293, + 13.0868620352941 + ], + [ + 77.544025525510705, + 13.086237311587199 + ], + [ + 77.544297781409099, + 13.0860812254067 + ], + [ + 77.544654883692402, + 13.0858764964368 + ], + [ + 77.545259272652999, + 13.085271992269901 + ], + [ + 77.545214990274999, + 13.0847179306973 + ], + [ + 77.545194905079995, + 13.0846131016326 + ], + [ + 77.545176265967598, + 13.084424688264001 + ], + [ + 77.5451640821464, + 13.0843039706981 + ], + [ + 77.5451691158936, + 13.0841209704249 + ], + [ + 77.545178104666803, + 13.0838182227068 + ], + [ + 77.545186645025296, + 13.083527901982899 + ], + [ + 77.546433378847993, + 13.0835483516598 + ], + [ + 77.5463908846706, + 13.0833929243258 + ], + [ + 77.546419072346296, + 13.0833892581821 + ], + [ + 77.546539793815299, + 13.0833654803237 + ], + [ + 77.546663982659695, + 13.0833427975149 + ], + [ + 77.546799702436104, + 13.0833211301631 + ], + [ + 77.547006784238604, + 13.083293111733401 + ], + [ + 77.547495096642393, + 13.0832216611612 + ], + [ + 77.547446146173897, + 13.0829985384594 + ], + [ + 77.547412823099407, + 13.0828453833876 + ], + [ + 77.547402012380701, + 13.0827956959962 + ], + [ + 77.547369089900997, + 13.082643489197901 + ], + [ + 77.547354237283798, + 13.082574820285201 + ], + [ + 77.547338502372597, + 13.0825024441544 + ], + [ + 77.547307688438707, + 13.0823607074786 + ], + [ + 77.547259920581993, + 13.0821409618702 + ], + [ + 77.547217015495406, + 13.0819449120337 + ], + [ + 77.547217008747694, + 13.0819448831896 + ], + [ + 77.547225613424402, + 13.0819414102852 + ], + [ + 77.547721201808002, + 13.081849560119799 + ], + [ + 77.5478172022504, + 13.0818305431624 + ], + [ + 77.548202030051897, + 13.081774699786401 + ], + [ + 77.548244422923602, + 13.0817685478337 + ], + [ + 77.548268131678896, + 13.081765107346399 + ], + [ + 77.548264501836499, + 13.0817482033519 + ], + [ + 77.548303518218006, + 13.081742986383199 + ], + [ + 77.548574551841995, + 13.081706744578099 + ], + [ + 77.548596979614601, + 13.081703135118 + ], + [ + 77.548835829068807, + 13.081963908197499 + ], + [ + 77.548903739203595, + 13.0820140569302 + ], + [ + 77.548950002068807, + 13.0820316691252 + ], + [ + 77.549014777053401, + 13.0820570037067 + ], + [ + 77.549116297693104, + 13.0820706820738 + ], + [ + 77.549323923480799, + 13.082095734748499 + ], + [ + 77.549722897145799, + 13.0821313192313 + ], + [ + 77.549881092133205, + 13.0821450109986 + ], + [ + 77.550097645474594, + 13.0821637545091 + ], + [ + 77.550151581753894, + 13.082199359775 + ], + [ + 77.550248441352494, + 13.082263903177299 + ], + [ + 77.550350396497294, + 13.0823758276488 + ], + [ + 77.550376284799, + 13.082428649866999 + ], + [ + 77.5504421981897, + 13.0825646462267 + ], + [ + 77.550543919221298, + 13.082765789228 + ], + [ + 77.550620076151006, + 13.0828690161752 + ], + [ + 77.550637386247303, + 13.0828924785892 + ], + [ + 77.550770885431604, + 13.0830470051853 + ], + [ + 77.550937651420796, + 13.0831876509636 + ], + [ + 77.551109310835997, + 13.083300015215499 + ], + [ + 77.551243852918205, + 13.083387901279099 + ], + [ + 77.551251386958697, + 13.0833923440675 + ], + [ + 77.551356581994497, + 13.0835307198465 + ], + [ + 77.551512987364802, + 13.0837364585785 + ], + [ + 77.551683791097304, + 13.083933529768 + ], + [ + 77.552067944904394, + 13.0843758115575 + ], + [ + 77.552154380270494, + 13.084434810510899 + ], + [ + 77.552309832557398, + 13.084539428788 + ], + [ + 77.552357905335597, + 13.0845649275726 + ], + [ + 77.552408857966498, + 13.0845903978569 + ], + [ + 77.552718583352899, + 13.084629118443001 + ], + [ + 77.552823031352304, + 13.0846472834377 + ], + [ + 77.553002337471995, + 13.084718914963201 + ], + [ + 77.553308437632495, + 13.0849089993199 + ], + [ + 77.553706396123602, + 13.0852370801316 + ], + [ + 77.553860336904904, + 13.085306703373 + ], + [ + 77.553899113004704, + 13.0853243886163 + ], + [ + 77.554101045518905, + 13.0854116056992 + ], + [ + 77.5542430878142, + 13.085464300999099 + ], + [ + 77.554379756690594, + 13.0855150021856 + ], + [ + 77.554557289275095, + 13.0855821327262 + ], + [ + 77.554952998453999, + 13.085747611753099 + ], + [ + 77.555556965429702, + 13.085999113872299 + ], + [ + 77.555607680216696, + 13.086057335943501 + ], + [ + 77.555653827166395, + 13.0859518523788 + ], + [ + 77.555708974524094, + 13.0858812884566 + ], + [ + 77.556305514919799, + 13.085635963221799 + ], + [ + 77.556596605206806, + 13.085516092510501 + ], + [ + 77.556861899160495, + 13.085406845194701 + ], + [ + 77.557417374868194, + 13.085201450761501 + ], + [ + 77.558068110467502, + 13.084961231371 + ], + [ + 77.558715400390398, + 13.0847221740366 + ], + [ + 77.558793320863899, + 13.084849013742399 + ], + [ + 77.558842884068994, + 13.0849072465092 + ], + [ + 77.558909127022801, + 13.084963055202 + ], + [ + 77.559564744887098, + 13.0845437868915 + ], + [ + 77.559682232963695, + 13.084468652215101 + ], + [ + 77.559940878596507, + 13.084302335706001 + ], + [ + 77.559997182808303, + 13.0842616756103 + ], + [ + 77.560094682074606, + 13.084191266305799 + ], + [ + 77.560104744259803, + 13.084184101484199 + ], + [ + 77.560120413910795, + 13.084172941979601 + ], + [ + 77.560135825026407, + 13.0841592373097 + ], + [ + 77.560201123482003, + 13.084123580685301 + ], + [ + 77.5603342969669, + 13.084022879696599 + ], + [ + 77.561313891458695, + 13.082008629806399 + ], + [ + 77.561669382748505, + 13.081212299648101 + ], + [ + 77.560723285541002, + 13.081227486683201 + ], + [ + 77.560499066912698, + 13.081277540456499 + ], + [ + 77.559720790136794, + 13.081508463435 + ], + [ + 77.559218701304303, + 13.0795635740131 + ], + [ + 77.558942243089604, + 13.0784906667946 + ], + [ + 77.558879763013294, + 13.078314765336099 + ], + [ + 77.5588189876798, + 13.0780875730402 + ], + [ + 77.559299428440198, + 13.0779371486903 + ], + [ + 77.559107720388297, + 13.077340461304599 + ], + [ + 77.558782213446193, + 13.076529144278499 + ], + [ + 77.558737511822699, + 13.0764955272439 + ], + [ + 77.5583499698553, + 13.076621839626901 + ], + [ + 77.558192574356596, + 13.0761262665809 + ], + [ + 77.558073057633294, + 13.0757911977351 + ], + [ + 77.557896916156906, + 13.0754132087798 + ], + [ + 77.557288202264104, + 13.074163361692699 + ], + [ + 77.557176520508094, + 13.073942714492601 + ], + [ + 77.553588534468901, + 13.075488832001801 + ], + [ + 77.553565641664605, + 13.0755629763872 + ], + [ + 77.553338744535395, + 13.075639863169 + ], + [ + 77.553359599665995, + 13.075688931216501 + ], + [ + 77.553475742365606, + 13.075952862556299 + ], + [ + 77.552980832077907, + 13.076279975383001 + ], + [ + 77.551778309490302, + 13.077073524697401 + ], + [ + 77.550994084616804, + 13.077640628988 + ], + [ + 77.550719418028507, + 13.0777141082431 + ], + [ + 77.549980218932305, + 13.0779118575108 + ], + [ + 77.5475938391955, + 13.078536310181001 + ], + [ + 77.5475658746943, + 13.078539879121401 + ], + [ + 77.5476099544005, + 13.0787543615095 + ], + [ + 77.547778286324302, + 13.0795734179584 + ], + [ + 77.548186332447898, + 13.081476897027301 + ], + [ + 77.548115990388396, + 13.081468634701199 + ], + [ + 77.547678699807307, + 13.081417272839101 + ], + [ + 77.547616010114396, + 13.0814099096568 + ], + [ + 77.547418825794693, + 13.081398649404001 + ], + [ + 77.547028745920997, + 13.0814003981843 + ], + [ + 77.546347527536497, + 13.081435977123601 + ], + [ + 77.546307088476397, + 13.081438089090501 + ], + [ + 77.546154699314997, + 13.0814460478594 + ], + [ + 77.546084984950198, + 13.0814764829731 + ], + [ + 77.545785192319798, + 13.081792229103099 + ], + [ + 77.545593950118899, + 13.0819936474311 + ], + [ + 77.545510926076105, + 13.0820810892209 + ], + [ + 77.545196932647599, + 13.082399024940401 + ], + [ + 77.545169660762397, + 13.0824447754337 + ], + [ + 77.544971198510595, + 13.082285242316001 + ], + [ + 77.544550611200194, + 13.082544006559599 + ], + [ + 77.544341462519498, + 13.082236390069401 + ], + [ + 77.543780268916606, + 13.0827796632173 + ], + [ + 77.543322244359302, + 13.082731209895099 + ], + [ + 77.543224914256797, + 13.082721207693201 + ], + [ + 77.542975972905595, + 13.082578311319001 + ], + [ + 77.541896915566099, + 13.0819274151904 + ], + [ + 77.541644475015701, + 13.08180721545 + ], + [ + 77.541677264191804, + 13.081227178537 + ], + [ + 77.541730348105403, + 13.080904212204601 + ], + [ + 77.541773093821206, + 13.080594305765301 + ], + [ + 77.541624842836299, + 13.0804647685124 + ], + [ + 77.541294087989201, + 13.0799303042453 + ], + [ + 77.541132381478803, + 13.0797262652437 + ], + [ + 77.541120466188005, + 13.0796785487256 + ], + [ + 77.5410659477933, + 13.0793850065626 + ], + [ + 77.541291473608098, + 13.0793259755213 + ], + [ + 77.541657679420297, + 13.0792301216193 + ], + [ + 77.542517829725796, + 13.079004975547701 + ], + [ + 77.542692279790501, + 13.0788956882219 + ], + [ + 77.5427356166294, + 13.078841477328799 + ], + [ + 77.542750590765493, + 13.0787778688609 + ], + [ + 77.5427210373945, + 13.0783326169487 + ], + [ + 77.542670467783594, + 13.077570717127401 + ], + [ + 77.542577473844005, + 13.077062475419799 + ], + [ + 77.542532634623399, + 13.0768178412597 + ], + [ + 77.542528307117394, + 13.0767942330547 + ], + [ + 77.542469446869305, + 13.076473105306301 + ], + [ + 77.542413203089296, + 13.0761662535488 + ], + [ + 77.542350472078397, + 13.076179105097699 + ], + [ + 77.5422854777092, + 13.076192420713999 + ], + [ + 77.5419168002541, + 13.076267953070801 + ], + [ + 77.541675131486997, + 13.0763117824257 + ], + [ + 77.541300245225401, + 13.076362997858 + ], + [ + 77.541137353711306, + 13.0763852508322 + ], + [ + 77.540927681086302, + 13.076400974962899 + ], + [ + 77.540638340143005, + 13.0764226724732 + ], + [ + 77.540156597021394, + 13.0765166697803 + ], + [ + 77.539640309849105, + 13.0765805783244 + ], + [ + 77.538680001727997, + 13.0766653770738 + ], + [ + 77.538664106316006, + 13.0765399509571 + ], + [ + 77.537179074351499, + 13.076712842111 + ], + [ + 77.537194054434906, + 13.0769080602683 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "234", + "group": "DEVASANDRA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "17", + "ward_name": "17 - Devasandra", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ದೇವಸಂದ್ರ", + "dig_ward_n": "DEVASANDRA", + "Assembly": "151 - K.R. Pura", + "Slno": "17" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.695189576478597, + 13.0020047787972 + ], + [ + 77.695233725537605, + 13.002444709801599 + ], + [ + 77.695249857589602, + 13.0025521991855 + ], + [ + 77.695316209518396, + 13.003150963370601 + ], + [ + 77.695441140595406, + 13.0031754518883 + ], + [ + 77.695435027595394, + 13.003269290354099 + ], + [ + 77.694983846803694, + 13.003336131952899 + ], + [ + 77.694803867580802, + 13.0033525684116 + ], + [ + 77.694819208275604, + 13.00347529397 + ], + [ + 77.694811537928203, + 13.0036100729314 + ], + [ + 77.694790718413799, + 13.0037580010599 + ], + [ + 77.694921388260596, + 13.0041469972494 + ], + [ + 77.695239159795705, + 13.004394639894 + ], + [ + 77.695405715910695, + 13.0045699621203 + ], + [ + 77.695327642731897, + 13.004717342366799 + ], + [ + 77.695016445780198, + 13.0046609105251 + ], + [ + 77.694808250636598, + 13.0046866609772 + ], + [ + 77.694684703255106, + 13.0047671996248 + ], + [ + 77.694586084502802, + 13.004841711571 + ], + [ + 77.694680046258497, + 13.005288235366001 + ], + [ + 77.694709631884194, + 13.005400551167201 + ], + [ + 77.694814825220007, + 13.0057577702032 + ], + [ + 77.694890432930094, + 13.005905150449699 + ], + [ + 77.695003296613194, + 13.005961582291301 + ], + [ + 77.695042744114104, + 13.006233331741999 + ], + [ + 77.695097532309802, + 13.0065949338337 + ], + [ + 77.695143554394207, + 13.0069324291192 + ], + [ + 77.695222449396695, + 13.007012967767 + ], + [ + 77.695307666576596, + 13.007064426373899 + ], + [ + 77.695781801206195, + 13.0076913443013 + ], + [ + 77.695716719741995, + 13.007699544095701 + ], + [ + 77.695800597295602, + 13.0079270183444 + ], + [ + 77.695963978687402, + 13.0082798064826 + ], + [ + 77.696027835872997, + 13.008251180989999 + ], + [ + 77.696219594558002, + 13.0082161165447 + ], + [ + 77.6965505152601, + 13.008084624875 + ], + [ + 77.696551943369997, + 13.0080841276323 + ], + [ + 77.697178387982902, + 13.007697272331299 + ], + [ + 77.6973361779866, + 13.007597557815201 + ], + [ + 77.697589299450698, + 13.0074310017002 + ], + [ + 77.697898304874599, + 13.007252392182201 + ], + [ + 77.6981645755058, + 13.0071340496795 + ], + [ + 77.698416601206006, + 13.007023377524099 + ], + [ + 77.699051048512402, + 13.0082100898432 + ], + [ + 77.699119362494301, + 13.0083482123511 + ], + [ + 77.699145284208996, + 13.0084232159245 + ], + [ + 77.699295403865193, + 13.0084013006462 + ], + [ + 77.6992953738647, + 13.0084010823445 + ], + [ + 77.700619086673598, + 13.0081925576206 + ], + [ + 77.700678257925006, + 13.0084862223496 + ], + [ + 77.700692354321703, + 13.0085906333154 + ], + [ + 77.700724280009297, + 13.0089376770822 + ], + [ + 77.700841526748206, + 13.0089157618039 + ], + [ + 77.701146149116298, + 13.008860973608201 + ], + [ + 77.701319279814797, + 13.008825909163001 + ], + [ + 77.701340202431098, + 13.008919777178001 + ], + [ + 77.701844805137, + 13.008846038673701 + ], + [ + 77.701716494233693, + 13.008126811785701 + ], + [ + 77.701649652634899, + 13.007866019974101 + ], + [ + 77.701632394352998, + 13.0077821940347 + ], + [ + 77.701590755324304, + 13.007589339585801 + ], + [ + 77.701546707021706, + 13.0073198363255 + ], + [ + 77.701546924767698, + 13.0073197816629 + ], + [ + 77.701545975974895, + 13.0073151979482 + ], + [ + 77.701457072126701, + 13.0068288794293 + ], + [ + 77.701224770176907, + 13.005871181768301 + ], + [ + 77.701018492620307, + 13.0059681568748 + ], + [ + 77.700705104140795, + 13.006073350210499 + ], + [ + 77.700441025037506, + 13.006148957920599 + ], + [ + 77.7001889993372, + 13.0062168952833 + ], + [ + 77.699990940009499, + 13.005658603569 + ], + [ + 77.699988748481601, + 13.005564367872401 + ], + [ + 77.700072026539104, + 13.0053101506443 + ], + [ + 77.700047919732995, + 13.0051786589746 + ], + [ + 77.700039153621702, + 13.0048060992437 + ], + [ + 77.700023812926901, + 13.004668032990599 + ], + [ + 77.700004089176403, + 13.004448880207701 + ], + [ + 77.699942726397296, + 13.004122342561301 + ], + [ + 77.699936151813802, + 13.003933871168 + ], + [ + 77.699885746673701, + 13.0037519743583 + ], + [ + 77.699798085560602, + 13.0033531162935 + ], + [ + 77.699780553338002, + 13.003136155038501 + ], + [ + 77.699769595698797, + 13.0030309617028 + ], + [ + 77.699769595698797, + 13.002811808919899 + ], + [ + 77.699738914309194, + 13.002544442524901 + ], + [ + 77.699681934585698, + 13.0022814591855 + ], + [ + 77.699560304791206, + 13.001460184131799 + ], + [ + 77.699173500129405, + 13.0014990837507 + ], + [ + 77.699165829782103, + 13.001192817736699 + ], + [ + 77.699162542490299, + 13.0008169707141 + ], + [ + 77.699148145342704, + 13.0005023218195 + ], + [ + 77.699154050320999, + 13.000358393516199 + ], + [ + 77.699182540182804, + 12.999832426837401 + ], + [ + 77.6989283229547, + 13.0007221871357 + ], + [ + 77.698908599204202, + 13.0008010821375 + ], + [ + 77.698877917814698, + 13.000884360195 + ], + [ + 77.698689278866397, + 13.0014319517025 + ], + [ + 77.698644210545496, + 13.0014783076897 + ], + [ + 77.698554296748, + 13.001877804558401 + ], + [ + 77.697790487780907, + 13.0018620322505 + ], + [ + 77.697284677082607, + 13.0018973939336 + ], + [ + 77.696447513452199, + 13.0019280753232 + ], + [ + 77.695382430927495, + 13.001985055046701 + ], + [ + 77.695189576478597, + 13.0020047787972 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "235", + "group": "Thindlu", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "11", + "ward_name": "11 - Thindlu", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ತಿಂಡ್ಲು", + "dig_ward_n": "Thindlu", + "Assembly": "152 - Byatarayanapura", + "Slno": "11" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.566134857579698, + 13.063918893640899 + ], + [ + 77.566007778620701, + 13.0642745866199 + ], + [ + 77.565829195702406, + 13.0644380236755 + ], + [ + 77.565715015891499, + 13.0645362781675 + ], + [ + 77.565542160377305, + 13.0649761668666 + ], + [ + 77.565400462307196, + 13.065421392716599 + ], + [ + 77.565305279829801, + 13.0654629929868 + ], + [ + 77.565185017832604, + 13.065474350862999 + ], + [ + 77.565083379210407, + 13.0655600582639 + ], + [ + 77.564823989799606, + 13.066042590422899 + ], + [ + 77.564496522614704, + 13.066681643164801 + ], + [ + 77.564414088228702, + 13.066865527262999 + ], + [ + 77.564133944302895, + 13.0674904409137 + ], + [ + 77.563902588015296, + 13.0680664273097 + ], + [ + 77.563780255004502, + 13.0683793313896 + ], + [ + 77.563711461420795, + 13.068522307392501 + ], + [ + 77.563687773971196, + 13.068571102876 + ], + [ + 77.563587001118904, + 13.068685034171301 + ], + [ + 77.563502347002995, + 13.0687423399047 + ], + [ + 77.563411630392196, + 13.0687703436869 + ], + [ + 77.563297795044704, + 13.0687906716876 + ], + [ + 77.563158607207797, + 13.0688101219113 + ], + [ + 77.5631351184891, + 13.068812219715101 + ], + [ + 77.562802975527902, + 13.0688418835029 + ], + [ + 77.5624707235702, + 13.068850826435 + ], + [ + 77.562162543925396, + 13.068848237035199 + ], + [ + 77.561919683609005, + 13.068824277872 + ], + [ + 77.561902509086096, + 13.068822583496001 + ], + [ + 77.561297155463706, + 13.068767604043799 + ], + [ + 77.5611339483373, + 13.0687547364364 + ], + [ + 77.560762780790299, + 13.068725471211801 + ], + [ + 77.560747230728794, + 13.068725625373901 + ], + [ + 77.5606591835991, + 13.0687332741301 + ], + [ + 77.560603761180701, + 13.0687767374753 + ], + [ + 77.560579765024997, + 13.068851510057501 + ], + [ + 77.560733427965104, + 13.068895159240901 + ], + [ + 77.560880476141705, + 13.0689117703841 + ], + [ + 77.561051030230402, + 13.0689357147736 + ], + [ + 77.561767053149197, + 13.069036236854201 + ], + [ + 77.562070457692897, + 13.069078400891501 + ], + [ + 77.562235569507493, + 13.069115159668399 + ], + [ + 77.562277055680795, + 13.0691309054214 + ], + [ + 77.562284548960804, + 13.069173751277299 + ], + [ + 77.562320639286, + 13.0693801034658 + ], + [ + 77.562356277212402, + 13.0695838672235 + ], + [ + 77.562407567191002, + 13.0699946303685 + ], + [ + 77.562428598397204, + 13.0701298488175 + ], + [ + 77.562475454341893, + 13.070431107201101 + ], + [ + 77.562525156342801, + 13.0707506655929 + ], + [ + 77.562577433570596, + 13.071003827378 + ], + [ + 77.562653442680798, + 13.0711504140226 + ], + [ + 77.562659800772295, + 13.0711570247124 + ], + [ + 77.562710773575304, + 13.071210022081599 + ], + [ + 77.563060309174404, + 13.071116022283199 + ], + [ + 77.563109417529105, + 13.0711036843577 + ], + [ + 77.563261566508103, + 13.0710654572019 + ], + [ + 77.563310954389095, + 13.0710579679884 + ], + [ + 77.563470455123095, + 13.071033782332799 + ], + [ + 77.563561227425694, + 13.0710200179987 + ], + [ + 77.563610053067706, + 13.071012613815499 + ], + [ + 77.563617811290797, + 13.0711904593089 + ], + [ + 77.563663050051204, + 13.072227477515399 + ], + [ + 77.563404847986206, + 13.0722635198369 + ], + [ + 77.563417576797804, + 13.072314024231799 + ], + [ + 77.5631697137716, + 13.0723850960673 + ], + [ + 77.563220443580093, + 13.0725232036847 + ], + [ + 77.563233203735294, + 13.072557267149699 + ], + [ + 77.563250947049099, + 13.0726046350286 + ], + [ + 77.563265234247098, + 13.0726533264335 + ], + [ + 77.563313320047897, + 13.0728172108669 + ], + [ + 77.563602982193899, + 13.073366100369499 + ], + [ + 77.563688737906105, + 13.0734704157989 + ], + [ + 77.563694495591207, + 13.073477419987601 + ], + [ + 77.563725816214799, + 13.0734694125346 + ], + [ + 77.5637758951991, + 13.073456609432601 + ], + [ + 77.563973885589704, + 13.0734059928146 + ], + [ + 77.565381957892498, + 13.0730460075841 + ], + [ + 77.565592374963103, + 13.0740161946912 + ], + [ + 77.565789599306498, + 13.073993096344701 + ], + [ + 77.565894430263896, + 13.0742738300948 + ], + [ + 77.565619026901402, + 13.074302258829 + ], + [ + 77.565905091039198, + 13.075720141946499 + ], + [ + 77.565734518634102, + 13.075826749699701 + ], + [ + 77.565880215896797, + 13.076299377405601 + ], + [ + 77.565647684976895, + 13.076446445856201 + ], + [ + 77.565573583656501, + 13.076485777558499 + ], + [ + 77.565455534721707, + 13.0765445454815 + ], + [ + 77.565082606676896, + 13.076679635114299 + ], + [ + 77.565042245882097, + 13.076694255510899 + ], + [ + 77.565018235807301, + 13.076702953058099 + ], + [ + 77.564997255678804, + 13.076710552622799 + ], + [ + 77.564968231484599, + 13.076721066226501 + ], + [ + 77.564634922679602, + 13.0768418024692 + ], + [ + 77.564024805174896, + 13.077052268247201 + ], + [ + 77.563982465272701, + 13.077079792232199 + ], + [ + 77.563941993249898, + 13.077120849384301 + ], + [ + 77.563922348649101, + 13.077170734155199 + ], + [ + 77.563912977711695, + 13.0772114824032 + ], + [ + 77.563913177190997, + 13.077224897533 + ], + [ + 77.563899991309796, + 13.0772307419042 + ], + [ + 77.563914321036094, + 13.077301683796399 + ], + [ + 77.563914852212406, + 13.077337382798 + ], + [ + 77.563914860812503, + 13.0773379473678 + ], + [ + 77.563916631948103, + 13.0773497875355 + ], + [ + 77.563927854359207, + 13.077424774308099 + ], + [ + 77.563975533573199, + 13.0777467197381 + ], + [ + 77.563982965257793, + 13.077796900229499 + ], + [ + 77.564004029812494, + 13.0779401134039 + ], + [ + 77.563998931614194, + 13.078059870933901 + ], + [ + 77.563932677805795, + 13.078170071227801 + ], + [ + 77.563756413636398, + 13.0783367013091 + ], + [ + 77.563239123805303, + 13.0788906837572 + ], + [ + 77.562803927803003, + 13.0793625400179 + ], + [ + 77.562728196091598, + 13.0795033265625 + ], + [ + 77.562609139340907, + 13.0797992598152 + ], + [ + 77.562603546670701, + 13.079811809140701 + ], + [ + 77.562584369091894, + 13.079854841105 + ], + [ + 77.562582341038606, + 13.079937300964399 + ], + [ + 77.562600883973005, + 13.080003746216599 + ], + [ + 77.562625610731502, + 13.080055449019399 + ], + [ + 77.562759822035602, + 13.080307262758 + ], + [ + 77.562811044445098, + 13.080403368941401 + ], + [ + 77.562842949328399, + 13.0804632299426 + ], + [ + 77.562920880948695, + 13.080610487934701 + ], + [ + 77.563090868639605, + 13.080931691425199 + ], + [ + 77.5632682619474, + 13.0812642055183 + ], + [ + 77.563498227312294, + 13.081667343729499 + ], + [ + 77.563748441532695, + 13.0821346511048 + ], + [ + 77.564116810440595, + 13.0827758279436 + ], + [ + 77.564275049773002, + 13.083096042808601 + ], + [ + 77.564295074680203, + 13.0831365630997 + ], + [ + 77.564347548187598, + 13.0832373949039 + ], + [ + 77.564359098120406, + 13.0832595889534 + ], + [ + 77.564382590103307, + 13.083304730242 + ], + [ + 77.564399903266093, + 13.083337999294001 + ], + [ + 77.564522514446097, + 13.083573604136101 + ], + [ + 77.564732680799096, + 13.083955481268699 + ], + [ + 77.564797901925004, + 13.0840683500377 + ], + [ + 77.564834597475297, + 13.084185383370301 + ], + [ + 77.564786620366803, + 13.0842641257021 + ], + [ + 77.564688108297005, + 13.0843172818964 + ], + [ + 77.564604305077594, + 13.084363045057 + ], + [ + 77.564405847298801, + 13.0844737196309 + ], + [ + 77.564358928674594, + 13.0845118693197 + ], + [ + 77.564284115549796, + 13.084569137922401 + ], + [ + 77.564186412625403, + 13.084700551360401 + ], + [ + 77.563877608408703, + 13.085044728943901 + ], + [ + 77.563811345919206, + 13.085136038485 + ], + [ + 77.563806617104404, + 13.0851425550676 + ], + [ + 77.563719589197802, + 13.085264351813599 + ], + [ + 77.563687550351503, + 13.085309189391999 + ], + [ + 77.563456854258604, + 13.085632051317599 + ], + [ + 77.563454678402607, + 13.0856350949716 + ], + [ + 77.563450440286303, + 13.0856410266613 + ], + [ + 77.563426050878206, + 13.085675160051601 + ], + [ + 77.563380932363302, + 13.085738304046 + ], + [ + 77.563370182158806, + 13.0857533493768 + ], + [ + 77.563368960239998, + 13.0857550600004 + ], + [ + 77.563367351290907, + 13.0857573111179 + ], + [ + 77.563301924253693, + 13.085848876095699 + ], + [ + 77.5631263829506, + 13.0860945467251 + ], + [ + 77.563088916919497, + 13.086147996551601 + ], + [ + 77.563059628664902, + 13.0861859414573 + ], + [ + 77.563070389598906, + 13.086194482352999 + ], + [ + 77.563058271495606, + 13.086201669521801 + ], + [ + 77.563002244625096, + 13.086234900267399 + ], + [ + 77.562742323055005, + 13.086389063052 + ], + [ + 77.561135848587497, + 13.087341877824899 + ], + [ + 77.560071800520205, + 13.0879995362467 + ], + [ + 77.560099161767496, + 13.088157042319001 + ], + [ + 77.560476021855294, + 13.090326424694901 + ], + [ + 77.560739135879601, + 13.0915954176293 + ], + [ + 77.5610965622772, + 13.0933502062791 + ], + [ + 77.561241348256502, + 13.0940707947232 + ], + [ + 77.561325511596706, + 13.0944896658381 + ], + [ + 77.561509108162795, + 13.095198178544999 + ], + [ + 77.5621207277823, + 13.0964094978264 + ], + [ + 77.562587720960593, + 13.097290905551199 + ], + [ + 77.562806598897495, + 13.0977040147396 + ], + [ + 77.562847548242701, + 13.0977813023139 + ], + [ + 77.562849259126807, + 13.0977845313915 + ], + [ + 77.563410308034406, + 13.097687477572901 + ], + [ + 77.563824550542407, + 13.097631491744499 + ], + [ + 77.5642999878186, + 13.097583767467 + ], + [ + 77.564329328416605, + 13.0975800876584 + ], + [ + 77.564500503725895, + 13.097588548502999 + ], + [ + 77.564571359563104, + 13.097595264473901 + ], + [ + 77.564608331436403, + 13.0975987688077 + ], + [ + 77.564850505944094, + 13.097621204024501 + ], + [ + 77.565104212014901, + 13.0976446535609 + ], + [ + 77.565450758276299, + 13.097677342627801 + ], + [ + 77.566120775982299, + 13.097739561105399 + ], + [ + 77.566415424368699, + 13.097767118939601 + ], + [ + 77.566454627000397, + 13.097770116541501 + ], + [ + 77.5667579386878, + 13.0977998463267 + ], + [ + 77.567055187384696, + 13.0978291157375 + ], + [ + 77.567091237124401, + 13.097832665022899 + ], + [ + 77.567244039106001, + 13.0978469535044 + ], + [ + 77.567536971228506, + 13.097875656407499 + ], + [ + 77.567817795800394, + 13.0979033502737 + ], + [ + 77.567939979014, + 13.0979151065303 + ], + [ + 77.568104956296196, + 13.0979309806968 + ], + [ + 77.568119367822106, + 13.097931966419299 + ], + [ + 77.568396137032906, + 13.097957441423899 + ], + [ + 77.568686741776503, + 13.0979839075501 + ], + [ + 77.568974454844295, + 13.0980092728517 + ], + [ + 77.569256407985804, + 13.0980346952334 + ], + [ + 77.5695372091416, + 13.0980601287794 + ], + [ + 77.569751124892903, + 13.098079453008999 + ], + [ + 77.5697949003047, + 13.0980790165841 + ], + [ + 77.569836371746007, + 13.098078603122101 + ], + [ + 77.569931960332198, + 13.098064740796101 + ], + [ + 77.569958902811706, + 13.097865592680201 + ], + [ + 77.569535525708304, + 13.094380711301801 + ], + [ + 77.570242616492393, + 13.092449337137399 + ], + [ + 77.570294154457102, + 13.0923085647443 + ], + [ + 77.573331309345804, + 13.0908271488765 + ], + [ + 77.574174453826203, + 13.0904375165521 + ], + [ + 77.5751232609976, + 13.090230724937999 + ], + [ + 77.576217540343293, + 13.0900033159696 + ], + [ + 77.576602963036905, + 13.089923217228201 + ], + [ + 77.577221134327104, + 13.0897686553614 + ], + [ + 77.577298136784506, + 13.089749402429501 + ], + [ + 77.578800940528694, + 13.0893401400761 + ], + [ + 77.579350715372797, + 13.089243195688301 + ], + [ + 77.580205756039504, + 13.089092418866199 + ], + [ + 77.579865176479302, + 13.087873008633199 + ], + [ + 77.579637310136505, + 13.0868133914091 + ], + [ + 77.579365616500198, + 13.085587241072499 + ], + [ + 77.579318648976795, + 13.0854543406162 + ], + [ + 77.579165598607503, + 13.085138538094499 + ], + [ + 77.580555372690995, + 13.084736162849699 + ], + [ + 77.581627872495204, + 13.084455531749899 + ], + [ + 77.582350036733501, + 13.084274393302101 + ], + [ + 77.5829672700917, + 13.084084139838099 + ], + [ + 77.583166561313604, + 13.0840279385306 + ], + [ + 77.583265342950199, + 13.083999846474899 + ], + [ + 77.5844647895496, + 13.0836309780337 + ], + [ + 77.584259116626001, + 13.082798490019901 + ], + [ + 77.583995897210599, + 13.081915759569901 + ], + [ + 77.583805121662394, + 13.0811858871841 + ], + [ + 77.583802136043801, + 13.081175753428701 + ], + [ + 77.583772350464201, + 13.081081190928201 + ], + [ + 77.583633472876599, + 13.080633122168001 + ], + [ + 77.583505104087493, + 13.0801984995705 + ], + [ + 77.583273980933498, + 13.079465642208 + ], + [ + 77.583156509903105, + 13.0790817283858 + ], + [ + 77.583136786453295, + 13.079013038791601 + ], + [ + 77.583115335192602, + 13.0789443664855 + ], + [ + 77.582998840049797, + 13.078488167843499 + ], + [ + 77.582910426062995, + 13.0781841429132 + ], + [ + 77.583137745724301, + 13.078109593254601 + ], + [ + 77.583455757882305, + 13.0780047740729 + ], + [ + 77.583721629768803, + 13.0779264502206 + ], + [ + 77.584883294594505, + 13.0775828076164 + ], + [ + 77.5855529665007, + 13.0773965432195 + ], + [ + 77.586307616660093, + 13.077184581436301 + ], + [ + 77.586458664031696, + 13.0771424135238 + ], + [ + 77.587016465770702, + 13.0769651174194 + ], + [ + 77.587060313585695, + 13.0769511806942 + ], + [ + 77.5900917831665, + 13.076069297999499 + ], + [ + 77.589999086699507, + 13.0758522751066 + ], + [ + 77.589553038338494, + 13.074781665577699 + ], + [ + 77.589162769478307, + 13.073867466562 + ], + [ + 77.588801784590601, + 13.0730546089725 + ], + [ + 77.588692259403402, + 13.0728253316875 + ], + [ + 77.588442215836295, + 13.0723772511533 + ], + [ + 77.587946716620493, + 13.071534119565699 + ], + [ + 77.586973402580995, + 13.070534178567501 + ], + [ + 77.586701354697695, + 13.070254686033 + ], + [ + 77.586526456251903, + 13.0701315415183 + ], + [ + 77.584112404378004, + 13.0684318019388 + ], + [ + 77.583544887589298, + 13.068032207338399 + ], + [ + 77.581318480360395, + 13.0665671814126 + ], + [ + 77.581276721062807, + 13.066539366241299 + ], + [ + 77.579445441073901, + 13.0653224560743 + ], + [ + 77.577615642012503, + 13.064106503217801 + ], + [ + 77.577455018195394, + 13.0639997622702 + ], + [ + 77.577387408601595, + 13.0639548337249 + ], + [ + 77.575783790188098, + 13.0628864899902 + ], + [ + 77.574140709453502, + 13.0617918337384 + ], + [ + 77.573913105992403, + 13.0615835425893 + ], + [ + 77.573262749863503, + 13.060988365793399 + ], + [ + 77.573034737569401, + 13.060779698223101 + ], + [ + 77.571982611935397, + 13.059404513521899 + ], + [ + 77.571565093073204, + 13.0586506842865 + ], + [ + 77.570780252372302, + 13.059226709506 + ], + [ + 77.570024386186503, + 13.0598307651639 + ], + [ + 77.570617673821801, + 13.0608005585902 + ], + [ + 77.568829330488697, + 13.061774634807399 + ], + [ + 77.568356702782793, + 13.062076690108199 + ], + [ + 77.568193237561303, + 13.062300566389901 + ], + [ + 77.568179023194205, + 13.062392959776 + ], + [ + 77.568384895212105, + 13.0628327299193 + ], + [ + 77.568417216301, + 13.062839184514001 + ], + [ + 77.568482092049194, + 13.0628746775238 + ], + [ + 77.568531184638701, + 13.0628877412442 + ], + [ + 77.568493015351805, + 13.0629841117997 + ], + [ + 77.568411158504404, + 13.063088821749901 + ], + [ + 77.568182891496605, + 13.063182564481799 + ], + [ + 77.567344472235803, + 13.063479999012101 + ], + [ + 77.566556096683598, + 13.063771287539501 + ], + [ + 77.5664549225191, + 13.063790361422599 + ], + [ + 77.5663501061331, + 13.063791402493401 + ], + [ + 77.566200422629294, + 13.0638538718392 + ], + [ + 77.566134857579698, + 13.063918893640899 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "361", + "group": "GarveBavi Palya", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "39", + "ward_name": "39 - Garvebavi Palya", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಗಾರ್ವೆಬಾವಿ ಪಾಳ್ಯ", + "dig_ward_n": "GarveBavi Palya", + "Assembly": "175 - Bommanahalli", + "Slno": "39" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.638928462576104, + 12.885218174361 + ], + [ + 77.638211135239004, + 12.8854173814108 + ], + [ + 77.638269841519602, + 12.885630823736401 + ], + [ + 77.638307464321002, + 12.885767611182199 + ], + [ + 77.6383074508352, + 12.885767613443001 + ], + [ + 77.638020776979303, + 12.885815671845499 + ], + [ + 77.637507302108403, + 12.8859710395701 + ], + [ + 77.637507312482398, + 12.8859710893087 + ], + [ + 77.6375460833533, + 12.8861569772432 + ], + [ + 77.637051601792905, + 12.886367486761801 + ], + [ + 77.637032735312204, + 12.8863466377009 + ], + [ + 77.636981729239807, + 12.886290271638201 + ], + [ + 77.636838723826102, + 12.8863741489627 + ], + [ + 77.636844131475797, + 12.886450884454799 + ], + [ + 77.636554083843393, + 12.8866728843172 + ], + [ + 77.636534432047, + 12.886687210791401 + ], + [ + 77.636397010313104, + 12.886787393357899 + ], + [ + 77.636074309760602, + 12.886969068268201 + ], + [ + 77.635715857154096, + 12.887309200130099 + ], + [ + 77.6353959557688, + 12.887758482148 + ], + [ + 77.635305013287507, + 12.8877839067778 + ], + [ + 77.635173872146595, + 12.8878205699523 + ], + [ + 77.635029908171603, + 12.8878129856681 + ], + [ + 77.634945932238907, + 12.8877630143757 + ], + [ + 77.634979345085299, + 12.887380986025001 + ], + [ + 77.635103153078404, + 12.886782357615401 + ], + [ + 77.635195320383005, + 12.8863816034254 + ], + [ + 77.635161720093194, + 12.8863771943507 + ], + [ + 77.634788187740895, + 12.8863281763842 + ], + [ + 77.634644772090994, + 12.886282998554201 + ], + [ + 77.634569338756293, + 12.8862592360138 + ], + [ + 77.634095409433897, + 12.8862325112609 + ], + [ + 77.633242812198503, + 12.886150248307899 + ], + [ + 77.6323371225145, + 12.886098249707601 + ], + [ + 77.632330754646304, + 12.886097883736801 + ], + [ + 77.632166046314495, + 12.8866551910784 + ], + [ + 77.632053650827999, + 12.8870354928889 + ], + [ + 77.6319106875019, + 12.887368075737299 + ], + [ + 77.631809006780401, + 12.887647493858699 + ], + [ + 77.631665737279405, + 12.8880050230477 + ], + [ + 77.631506517342004, + 12.8885734477357 + ], + [ + 77.631495261586295, + 12.8886136310088 + ], + [ + 77.631484957609601, + 12.888927302744101 + ], + [ + 77.631474179333395, + 12.889255415818999 + ], + [ + 77.632645972588506, + 12.889404406077601 + ], + [ + 77.632856376969102, + 12.889409130020001 + ], + [ + 77.632874001958896, + 12.889409525723799 + ], + [ + 77.632839066725396, + 12.8896588049498 + ], + [ + 77.632777125537601, + 12.890100783937401 + ], + [ + 77.632761945784594, + 12.890209097945799 + ], + [ + 77.6327236632237, + 12.8907007733141 + ], + [ + 77.632751647137994, + 12.8914603522921 + ], + [ + 77.632784977158906, + 12.8920921427954 + ], + [ + 77.632800547066594, + 12.892406991150001 + ], + [ + 77.632691221957202, + 12.892425475018999 + ], + [ + 77.631580799573996, + 12.892613210612501 + ], + [ + 77.631192961493397, + 12.8926562464437 + ], + [ + 77.6310883656339, + 12.892667853194 + ], + [ + 77.630276004773293, + 12.8927579951394 + ], + [ + 77.630302638764206, + 12.8931414297128 + ], + [ + 77.629639796549, + 12.8931941689696 + ], + [ + 77.629416679952001, + 12.893250600256501 + ], + [ + 77.629453940087103, + 12.893468056678101 + ], + [ + 77.629560022364302, + 12.893685393775201 + ], + [ + 77.629560022364302, + 12.893685393775201 + ], + [ + 77.629732040586902, + 12.8942610037553 + ], + [ + 77.630593977491202, + 12.8939867913619 + ], + [ + 77.630662326939699, + 12.894279439197399 + ], + [ + 77.630682573455402, + 12.894378903020399 + ], + [ + 77.630691606127002, + 12.894423279162099 + ], + [ + 77.630728412857806, + 12.8945878382068 + ], + [ + 77.630759847923201, + 12.894588239313499 + ], + [ + 77.630766729171896, + 12.8946871283782 + ], + [ + 77.630765683401606, + 12.894796853240999 + ], + [ + 77.630767554748004, + 12.8948261131964 + ], + [ + 77.630779663295698, + 12.8950154239842 + ], + [ + 77.630789651362804, + 12.8952017666966 + ], + [ + 77.630789965142299, + 12.8952035053244 + ], + [ + 77.630799737628195, + 12.8952575974651 + ], + [ + 77.630811555025602, + 12.8953392268055 + ], + [ + 77.630813383779696, + 12.895514177314499 + ], + [ + 77.630832880919002, + 12.8955613092796 + ], + [ + 77.6308568580898, + 12.895687275141499 + ], + [ + 77.630860576115396, + 12.8957632492671 + ], + [ + 77.630855073831995, + 12.8957962901095 + ], + [ + 77.630740391799904, + 12.895943730204801 + ], + [ + 77.630721186232705, + 12.8960643938094 + ], + [ + 77.630722672548899, + 12.8961138155356 + ], + [ + 77.630722718987599, + 12.896115350874 + ], + [ + 77.630727910464302, + 12.8962880568996 + ], + [ + 77.630743962894201, + 12.8963553019145 + ], + [ + 77.630794633984493, + 12.8963777388855 + ], + [ + 77.631036310394805, + 12.896491475699101 + ], + [ + 77.631072866335899, + 12.8965571899718 + ], + [ + 77.631088201065197, + 12.896584756057599 + ], + [ + 77.631190552608103, + 12.896763499405701 + ], + [ + 77.6313569720174, + 12.896998249297299 + ], + [ + 77.631384116120401, + 12.8970775723863 + ], + [ + 77.631448981252404, + 12.8972690993812 + ], + [ + 77.631483279929398, + 12.8973626921514 + ], + [ + 77.631512021247801, + 12.897594739419 + ], + [ + 77.631554011878293, + 12.897882107610799 + ], + [ + 77.631597175921399, + 12.8981885856315 + ], + [ + 77.631626158462694, + 12.8983853737628 + ], + [ + 77.631628713642101, + 12.898396701252601 + ], + [ + 77.631670094288793, + 12.8985325503401 + ], + [ + 77.631764667153305, + 12.8988387502128 + ], + [ + 77.631407305018897, + 12.8989164461266 + ], + [ + 77.6314595493089, + 12.8991358276286 + ], + [ + 77.631809528253996, + 12.8990510346101 + ], + [ + 77.631839499535801, + 12.8990564460993 + ], + [ + 77.631897229539305, + 12.8991247051139 + ], + [ + 77.631897762370201, + 12.8993154447988 + ], + [ + 77.631907891912206, + 12.899584966761999 + ], + [ + 77.631855913362102, + 12.8999268233681 + ], + [ + 77.631810465027002, + 12.9001940374068 + ], + [ + 77.631406930696301, + 12.900705641991401 + ], + [ + 77.632105532279496, + 12.9010534274716 + ], + [ + 77.632350966157404, + 12.9010534904968 + ], + [ + 77.632644194893601, + 12.9009722169705 + ], + [ + 77.632945517082803, + 12.9004918709993 + ], + [ + 77.633635365882597, + 12.8993455991769 + ], + [ + 77.634031851228002, + 12.8987011530124 + ], + [ + 77.634411728067903, + 12.898083700766801 + ], + [ + 77.634581567809704, + 12.8978086710864 + ], + [ + 77.635229209709806, + 12.8967599116008 + ], + [ + 77.635773489784995, + 12.8958749681616 + ], + [ + 77.636071276397701, + 12.8953907950941 + ], + [ + 77.636163379944804, + 12.8952415021134 + ], + [ + 77.636462410185302, + 12.8947331464525 + ], + [ + 77.636775737584898, + 12.894218341607001 + ], + [ + 77.636822125239306, + 12.894142124713399 + ], + [ + 77.636910328727296, + 12.8939972046057 + ], + [ + 77.637210354769195, + 12.893513393266099 + ], + [ + 77.637346652832605, + 12.8932936022057 + ], + [ + 77.637439849664403, + 12.893143316003201 + ], + [ + 77.637976325894101, + 12.892255893568199 + ], + [ + 77.638179026437996, + 12.8919307707396 + ], + [ + 77.638637678186399, + 12.8911951105685 + ], + [ + 77.638791163518903, + 12.890950418584101 + ], + [ + 77.638996043583901, + 12.8906237900972 + ], + [ + 77.639248767534596, + 12.8902208836996 + ], + [ + 77.639360930147305, + 12.890031398443501 + ], + [ + 77.639580103773099, + 12.889681344687901 + ], + [ + 77.639716067528695, + 12.889464189006899 + ], + [ + 77.640173181389798, + 12.888723849076699 + ], + [ + 77.640376147295598, + 12.8883935191998 + ], + [ + 77.640487958977999, + 12.888211544614 + ], + [ + 77.640795517560804, + 12.8877079169146 + ], + [ + 77.641031357442202, + 12.887335522067801 + ], + [ + 77.641048476520993, + 12.887296130502801 + ], + [ + 77.641157799297602, + 12.8871215427944 + ], + [ + 77.641070124765903, + 12.887095293833999 + ], + [ + 77.640610210325605, + 12.886957596956901 + ], + [ + 77.640410405055306, + 12.8869036623153 + ], + [ + 77.640324094038405, + 12.8868803634029 + ], + [ + 77.640262345434195, + 12.886863695188501 + ], + [ + 77.639691200761106, + 12.8867137708384 + ], + [ + 77.6396279485203, + 12.8867019409309 + ], + [ + 77.639577863154599, + 12.8866457682745 + ], + [ + 77.639515194125195, + 12.8865497646549 + ], + [ + 77.6394734996436, + 12.886456706687801 + ], + [ + 77.639287185528602, + 12.8860217447472 + ], + [ + 77.639231183417195, + 12.885787069232601 + ], + [ + 77.639140513331995, + 12.885595061993399 + ], + [ + 77.639089844755006, + 12.8854403894952 + ], + [ + 77.6390578435485, + 12.885331052039501 + ], + [ + 77.638928462576104, + 12.885218174361 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "236", + "group": "Kuvempunagara", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "30", + "ward_name": "30 - Kuvempunagara", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ಕುವೆಂಪುನಗರ", + "dig_ward_n": "Kuvempunagara", + "Assembly": "152 - Byatarayanapura", + "Slno": "30" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.531531001623804, + 13.071940564334 + ], + [ + 77.531593659728003, + 13.0721815738725 + ], + [ + 77.5316192295017, + 13.072279926011101 + ], + [ + 77.531782108203799, + 13.0724364362546 + ], + [ + 77.531788998645297, + 13.072442896262499 + ], + [ + 77.531805952556397, + 13.0724587892024 + ], + [ + 77.531830349822002, + 13.0724788780539 + ], + [ + 77.531792360240999, + 13.0725379759982 + ], + [ + 77.531737781978094, + 13.0726136408642 + ], + [ + 77.531607768400406, + 13.0727938863988 + ], + [ + 77.531540255090107, + 13.0729087503813 + ], + [ + 77.531497666416698, + 13.072981207815801 + ], + [ + 77.531376766049107, + 13.073186901410301 + ], + [ + 77.531350974948197, + 13.073368977415999 + ], + [ + 77.531247683659998, + 13.0739154595238 + ], + [ + 77.531242914798298, + 13.0740690960395 + ], + [ + 77.5312615458256, + 13.0744091960284 + ], + [ + 77.531269812125004, + 13.074560093721599 + ], + [ + 77.531276775482993, + 13.074591492382201 + ], + [ + 77.531367022385595, + 13.0749984525287 + ], + [ + 77.531521287858197, + 13.0756090402288 + ], + [ + 77.531308748229094, + 13.075741803749899 + ], + [ + 77.531117196398895, + 13.075861456216099 + ], + [ + 77.530955801704906, + 13.076302350414201 + ], + [ + 77.530922295454403, + 13.0767977204272 + ], + [ + 77.530905459449102, + 13.077046629545 + ], + [ + 77.530895218346998, + 13.0771980375585 + ], + [ + 77.531158627826102, + 13.0772077231456 + ], + [ + 77.531529982883001, + 13.0771956286702 + ], + [ + 77.531524090162605, + 13.0774760510901 + ], + [ + 77.531528150151303, + 13.077638449549999 + ], + [ + 77.532100133577899, + 13.0775968869465 + ], + [ + 77.532129935791403, + 13.077591504472901 + ], + [ + 77.532209300888198, + 13.0776026779413 + ], + [ + 77.532200460402905, + 13.077744316476601 + ], + [ + 77.532560724172896, + 13.0776704224757 + ], + [ + 77.532692777902, + 13.077655156148699 + ], + [ + 77.532703478061507, + 13.0781045299934 + ], + [ + 77.533156715505598, + 13.0784960476599 + ], + [ + 77.5333299274767, + 13.0781208943932 + ], + [ + 77.536013204037005, + 13.077403452581301 + ], + [ + 77.5360353402112, + 13.077515660085201 + ], + [ + 77.536240743035506, + 13.0774649599513 + ], + [ + 77.536276166520594, + 13.077522911590499 + ], + [ + 77.536683395794896, + 13.0774198638829 + ], + [ + 77.536620040537599, + 13.0770981260402 + ], + [ + 77.537194054434906, + 13.0770141612413 + ], + [ + 77.537194054434906, + 13.0769080602683 + ], + [ + 77.537179074351499, + 13.076712842111 + ], + [ + 77.538664106316006, + 13.0765399509571 + ], + [ + 77.538680001727997, + 13.0766653770738 + ], + [ + 77.539640309849105, + 13.0765805783244 + ], + [ + 77.540156597021394, + 13.0765166697803 + ], + [ + 77.540638340143005, + 13.0764226724732 + ], + [ + 77.540927681086302, + 13.076400974962899 + ], + [ + 77.541137353711306, + 13.0763852508322 + ], + [ + 77.541300245225401, + 13.076362997858 + ], + [ + 77.541675131486997, + 13.0763117824257 + ], + [ + 77.5419168002541, + 13.076267953070801 + ], + [ + 77.5422854777092, + 13.076192420713999 + ], + [ + 77.542350472078397, + 13.076179105097699 + ], + [ + 77.542413203089296, + 13.0761662535488 + ], + [ + 77.542469446869305, + 13.076473105306301 + ], + [ + 77.542528307117394, + 13.0767942330547 + ], + [ + 77.542532634623399, + 13.0768178412597 + ], + [ + 77.542577473844005, + 13.077062475419799 + ], + [ + 77.542670467783594, + 13.077570717127401 + ], + [ + 77.5427210373945, + 13.0783326169487 + ], + [ + 77.542750590765493, + 13.0787778688609 + ], + [ + 77.5427356166294, + 13.078841477328799 + ], + [ + 77.542692279790501, + 13.0788956882219 + ], + [ + 77.542517829725796, + 13.079004975547701 + ], + [ + 77.541657679420297, + 13.0792301216193 + ], + [ + 77.541291473608098, + 13.0793259755213 + ], + [ + 77.5410659477933, + 13.0793850065626 + ], + [ + 77.541120466188005, + 13.0796785487256 + ], + [ + 77.541132381478803, + 13.0797262652437 + ], + [ + 77.541294087989201, + 13.0799303042453 + ], + [ + 77.541624842836299, + 13.0804647685124 + ], + [ + 77.541773093821206, + 13.080594305765301 + ], + [ + 77.541730348105403, + 13.080904212204601 + ], + [ + 77.541677264191804, + 13.081227178537 + ], + [ + 77.541644475015701, + 13.08180721545 + ], + [ + 77.541896915566099, + 13.0819274151904 + ], + [ + 77.542975972905595, + 13.082578311319001 + ], + [ + 77.543224914256797, + 13.082721207693201 + ], + [ + 77.543322244359302, + 13.082731209895099 + ], + [ + 77.543780268916606, + 13.0827796632173 + ], + [ + 77.544341462519498, + 13.082236390069401 + ], + [ + 77.544550611200194, + 13.082544006559599 + ], + [ + 77.544971198510595, + 13.082285242316001 + ], + [ + 77.545169660762397, + 13.0824447754337 + ], + [ + 77.545196932647599, + 13.082399024940401 + ], + [ + 77.545510926076105, + 13.0820810892209 + ], + [ + 77.545593950118899, + 13.0819936474311 + ], + [ + 77.545785192319798, + 13.081792229103099 + ], + [ + 77.546084984950198, + 13.0814764829731 + ], + [ + 77.546154699314997, + 13.0814460478594 + ], + [ + 77.546307088476397, + 13.081438089090501 + ], + [ + 77.546347527536497, + 13.081435977123601 + ], + [ + 77.547028745920997, + 13.0814003981843 + ], + [ + 77.547418825794693, + 13.081398649404001 + ], + [ + 77.547616010114396, + 13.0814099096568 + ], + [ + 77.547678699807307, + 13.081417272839101 + ], + [ + 77.548115990388396, + 13.081468634701199 + ], + [ + 77.548186332447898, + 13.081476897027301 + ], + [ + 77.547778286324302, + 13.0795734179584 + ], + [ + 77.5476099544005, + 13.0787543615095 + ], + [ + 77.5475658746943, + 13.078539879121401 + ], + [ + 77.5475938391955, + 13.078536310181001 + ], + [ + 77.549980218932305, + 13.0779118575108 + ], + [ + 77.550719418028507, + 13.0777141082431 + ], + [ + 77.550994084616804, + 13.077640628988 + ], + [ + 77.551778309490302, + 13.077073524697401 + ], + [ + 77.552980832077907, + 13.076279975383001 + ], + [ + 77.553475742365606, + 13.075952862556299 + ], + [ + 77.553359599665995, + 13.075688931216501 + ], + [ + 77.553338744535395, + 13.075639863169 + ], + [ + 77.551547259197093, + 13.0715564012256 + ], + [ + 77.555174249946106, + 13.069872120224501 + ], + [ + 77.555038072834705, + 13.0696246335306 + ], + [ + 77.554895517640702, + 13.069373076444499 + ], + [ + 77.554463037358602, + 13.0685783705677 + ], + [ + 77.554170687195494, + 13.0686976387478 + ], + [ + 77.553230090619707, + 13.0666639731547 + ], + [ + 77.552936977140206, + 13.0665029134043 + ], + [ + 77.551792384269007, + 13.066705955554101 + ], + [ + 77.551505110914306, + 13.0658340528224 + ], + [ + 77.551239743229502, + 13.0650373460068 + ], + [ + 77.5509931920475, + 13.064567143133401 + ], + [ + 77.550708475047898, + 13.064406083383 + ], + [ + 77.551053367879405, + 13.0642119765192 + ], + [ + 77.550823448009595, + 13.0636924754118 + ], + [ + 77.551060524161201, + 13.0633149056211 + ], + [ + 77.551018052278906, + 13.0631052710985 + ], + [ + 77.551000397196603, + 13.063042225062899 + ], + [ + 77.550960652999393, + 13.062900301202101 + ], + [ + 77.550912166985796, + 13.0626658809206 + ], + [ + 77.550833642489096, + 13.062280282655401 + ], + [ + 77.550871588855799, + 13.062268313077899 + ], + [ + 77.551146050546393, + 13.062145305522201 + ], + [ + 77.551312751416603, + 13.062188833601599 + ], + [ + 77.551454985664606, + 13.062283931887499 + ], + [ + 77.551592751813203, + 13.062418450514601 + ], + [ + 77.551687046612301, + 13.0625794673506 + ], + [ + 77.552045212610494, + 13.0626046077331 + ], + [ + 77.552052627609797, + 13.0624269536259 + ], + [ + 77.552037402176794, + 13.062240134694299 + ], + [ + 77.551919272258303, + 13.0616858505736 + ], + [ + 77.551872873226998, + 13.061486418917401 + ], + [ + 77.551860879253994, + 13.0614402351857 + ], + [ + 77.5518453137812, + 13.0613827935074 + ], + [ + 77.551775964905801, + 13.0611933629181 + ], + [ + 77.551641512467697, + 13.0608260971375 + ], + [ + 77.551633162012806, + 13.0608032877869 + ], + [ + 77.551526068149002, + 13.060526532034901 + ], + [ + 77.551456865281693, + 13.0603499126538 + ], + [ + 77.551396538695997, + 13.060148416552099 + ], + [ + 77.551446096022403, + 13.0600304200773 + ], + [ + 77.551519316848498, + 13.059862799800101 + ], + [ + 77.551537259645301, + 13.059821724971 + ], + [ + 77.551549742157405, + 13.0597758868117 + ], + [ + 77.551570561690596, + 13.0596994294977 + ], + [ + 77.551577951729996, + 13.059633855899699 + ], + [ + 77.551585836489807, + 13.059560372168001 + ], + [ + 77.551577085411694, + 13.059437362519599 + ], + [ + 77.551571817018399, + 13.059373043204801 + ], + [ + 77.551569168726601, + 13.059336998820299 + ], + [ + 77.551563112364306, + 13.0592545503798 + ], + [ + 77.551551709756495, + 13.0590976872541 + ], + [ + 77.551544435314895, + 13.0590062840212 + ], + [ + 77.551524080982304, + 13.058819017571 + ], + [ + 77.551490967623707, + 13.058511039645699 + ], + [ + 77.551465530705102, + 13.0582775211531 + ], + [ + 77.551451557967894, + 13.058094708965299 + ], + [ + 77.551436944745902, + 13.0578948413009 + ], + [ + 77.551429445181995, + 13.0577922690163 + ], + [ + 77.551303193973496, + 13.057781092557001 + ], + [ + 77.5512061980764, + 13.0577583340899 + ], + [ + 77.551004684741102, + 13.057709503296399 + ], + [ + 77.550830320241801, + 13.0576683096919 + ], + [ + 77.550812735248698, + 13.0576640833753 + ], + [ + 77.550311246721705, + 13.057543559127501 + ], + [ + 77.550148423689606, + 13.057504509803 + ], + [ + 77.550051347617497, + 13.0574900878637 + ], + [ + 77.5500486295211, + 13.0574896837268 + ], + [ + 77.550004342628895, + 13.057495767206699 + ], + [ + 77.550002951237502, + 13.0574957809319 + ], + [ + 77.549996855837406, + 13.057495841059 + ], + [ + 77.549965163442494, + 13.0574961536815 + ], + [ + 77.549959068042298, + 13.0574962138078 + ], + [ + 77.549915413365397, + 13.0574966444221 + ], + [ + 77.549909317965003, + 13.0574967045472 + ], + [ + 77.549704352969002, + 13.0575043728556 + ], + [ + 77.549589135400296, + 13.057510968844801 + ], + [ + 77.549585198113505, + 13.0575111946933 + ], + [ + 77.549506805200707, + 13.057505191911901 + ], + [ + 77.549442833143502, + 13.0575013055317 + ], + [ + 77.549290747262503, + 13.0574982880938 + ], + [ + 77.549227374279397, + 13.0574966543983 + ], + [ + 77.549198916161302, + 13.057496935032299 + ], + [ + 77.549108497775094, + 13.057497826654499 + ], + [ + 77.549102402370806, + 13.057497886760499 + ], + [ + 77.548881590222706, + 13.057500064066801 + ], + [ + 77.548875494817196, + 13.0575001241675 + ], + [ + 77.548675894880105, + 13.057506355568499 + ], + [ + 77.548561707721603, + 13.0575099197768 + ], + [ + 77.548558239213307, + 13.057510028055701 + ], + [ + 77.548398090529005, + 13.0575070895793 + ], + [ + 77.548362948571807, + 13.0575063066875 + ], + [ + 77.548077804695396, + 13.0575023415365 + ], + [ + 77.548072360499702, + 13.057364617625399 + ], + [ + 77.548072186790904, + 13.0573476794718 + ], + [ + 77.548060609863796, + 13.057117411405001 + ], + [ + 77.548027089164506, + 13.0564322418552 + ], + [ + 77.548020551220503, + 13.0563001753272 + ], + [ + 77.547994776008593, + 13.0557766188283 + ], + [ + 77.547988541917803, + 13.055649999865601 + ], + [ + 77.547388957058004, + 13.0561906011733 + ], + [ + 77.547311837409893, + 13.056260134232399 + ], + [ + 77.547206659897498, + 13.056354964147401 + ], + [ + 77.547113831111901, + 13.0564386600924 + ], + [ + 77.547095514261898, + 13.056455175117099 + ], + [ + 77.546959639860304, + 13.0565776831456 + ], + [ + 77.546793362567001, + 13.0567276025785 + ], + [ + 77.546791808461705, + 13.0567290037968 + ], + [ + 77.546737754494501, + 13.0566818110025 + ], + [ + 77.546723547088703, + 13.056669406413601 + ], + [ + 77.546505294130597, + 13.0564788581526 + ], + [ + 77.546140241520604, + 13.056109688487499 + ], + [ + 77.546128161176, + 13.056097471605799 + ], + [ + 77.545955434171105, + 13.055925355780699 + ], + [ + 77.545670267874499, + 13.0556411974672 + ], + [ + 77.545452658707703, + 13.0554243572668 + ], + [ + 77.545311170024505, + 13.055283367423 + ], + [ + 77.545157200299499, + 13.055161104413999 + ], + [ + 77.545033021219496, + 13.0550624988125 + ], + [ + 77.544974056015405, + 13.0550350899838 + ], + [ + 77.544861721134197, + 13.0549828733813 + ], + [ + 77.544706422415004, + 13.054947134093 + ], + [ + 77.544459808505394, + 13.054937138562501 + ], + [ + 77.544250681470501, + 13.054935567310199 + ], + [ + 77.543939099063294, + 13.0549332277677 + ], + [ + 77.543501130773905, + 13.0549329190038 + ], + [ + 77.5434034505938, + 13.0549328499552 + ], + [ + 77.5433486558548, + 13.0549333889654 + ], + [ + 77.543218009470905, + 13.0549346740736 + ], + [ + 77.542838243470896, + 13.0549384092817 + ], + [ + 77.542757286071605, + 13.054939206373801 + ], + [ + 77.542587861864106, + 13.0549274931362 + ], + [ + 77.542563030002, + 13.054925776812601 + ], + [ + 77.542528466243198, + 13.054923387339199 + ], + [ + 77.542227347363905, + 13.054877787094 + ], + [ + 77.542031835325105, + 13.054842744166599 + ], + [ + 77.541683794254695, + 13.0547803619645 + ], + [ + 77.541446578745493, + 13.054731873898801 + ], + [ + 77.5412664089598, + 13.0546965033724 + ], + [ + 77.540712481041098, + 13.054587758238601 + ], + [ + 77.540453933268694, + 13.0545372201492 + ], + [ + 77.540393717381903, + 13.0545267904178 + ], + [ + 77.539641909425896, + 13.0543965736482 + ], + [ + 77.539499789608996, + 13.054371957854899 + ], + [ + 77.539324775285493, + 13.054341644338599 + ], + [ + 77.539196639836504, + 13.054327217637701 + ], + [ + 77.539158707098693, + 13.0543229472371 + ], + [ + 77.538956519358294, + 13.0543204153423 + ], + [ + 77.538924309188999, + 13.0543226207697 + ], + [ + 77.538706150772001, + 13.0543375549949 + ], + [ + 77.538530302524094, + 13.054360835464401 + ], + [ + 77.538281339460895, + 13.0543937959636 + ], + [ + 77.538062193898199, + 13.0544228090281 + ], + [ + 77.5378105608428, + 13.0544561223575 + ], + [ + 77.537701876522505, + 13.054470510682 + ], + [ + 77.537694029512807, + 13.054471675470401 + ], + [ + 77.5376050623711, + 13.054484880944299 + ], + [ + 77.537555229062704, + 13.054492277918801 + ], + [ + 77.5375391171724, + 13.0544947480115 + ], + [ + 77.536508612261201, + 13.0546527478296 + ], + [ + 77.535374571533694, + 13.054825365252199 + ], + [ + 77.535304379948599, + 13.0548328295377 + ], + [ + 77.535319442347998, + 13.0550971284055 + ], + [ + 77.535355264467796, + 13.055221148426799 + ], + [ + 77.535342732868401, + 13.0552912900568 + ], + [ + 77.535286535891601, + 13.0553720238794 + ], + [ + 77.535250656982001, + 13.055468369146899 + ], + [ + 77.535182247737495, + 13.0555745251493 + ], + [ + 77.535124698177796, + 13.05573805917 + ], + [ + 77.535097849619206, + 13.055929180004799 + ], + [ + 77.535145544382402, + 13.0559896527527 + ], + [ + 77.535252870055501, + 13.056006865360599 + ], + [ + 77.535238188713393, + 13.056089890881299 + ], + [ + 77.535199141207499, + 13.056147277689901 + ], + [ + 77.535203310976598, + 13.056217255548599 + ], + [ + 77.535200219725297, + 13.056255941922601 + ], + [ + 77.535191613421304, + 13.056351623772599 + ], + [ + 77.535231024931804, + 13.0566190268987 + ], + [ + 77.535222832910094, + 13.056651507391701 + ], + [ + 77.535203899804799, + 13.0567265796883 + ], + [ + 77.535143519369697, + 13.0567571325657 + ], + [ + 77.535160985104199, + 13.057099359711801 + ], + [ + 77.535157694458604, + 13.057209722903901 + ], + [ + 77.534985918212797, + 13.057208684504999 + ], + [ + 77.534949889276803, + 13.0572903499052 + ], + [ + 77.534939246735107, + 13.0574327504454 + ], + [ + 77.534910819853593, + 13.057525634649 + ], + [ + 77.534956205694996, + 13.057526637391399 + ], + [ + 77.534993110266797, + 13.057530792837699 + ], + [ + 77.535063275718898, + 13.0575083289484 + ], + [ + 77.535488784034897, + 13.057639025596201 + ], + [ + 77.535395544342805, + 13.057727549217001 + ], + [ + 77.535281064405893, + 13.0577975614067 + ], + [ + 77.535223634506195, + 13.0578704020554 + ], + [ + 77.535187398193401, + 13.0579317415008 + ], + [ + 77.535079299640998, + 13.058119141841299 + ], + [ + 77.535068736408903, + 13.058132925742401 + ], + [ + 77.535015638246506, + 13.0582022075896 + ], + [ + 77.534941518330996, + 13.058332807949 + ], + [ + 77.5347672351744, + 13.058525374602199 + ], + [ + 77.534680260681498, + 13.0586944983627 + ], + [ + 77.534452994915398, + 13.0591283687616 + ], + [ + 77.534328284178699, + 13.0593665159483 + ], + [ + 77.533883581780799, + 13.060013985802501 + ], + [ + 77.534115017446894, + 13.0605451726369 + ], + [ + 77.534196335161695, + 13.060724804211899 + ], + [ + 77.534261246626897, + 13.0608234846425 + ], + [ + 77.534507285692101, + 13.0615312265674 + ], + [ + 77.535019949832702, + 13.063135871228701 + ], + [ + 77.535007451386704, + 13.0631566782435 + ], + [ + 77.535200214857397, + 13.0632507805214 + ], + [ + 77.535186530938404, + 13.0632644667844 + ], + [ + 77.535097643063693, + 13.0633590735883 + ], + [ + 77.535061705452193, + 13.063393306187001 + ], + [ + 77.535007499525705, + 13.0634435286828 + ], + [ + 77.534953927137806, + 13.0634993916272 + ], + [ + 77.5348795956576, + 13.063580570995001 + ], + [ + 77.534756456809703, + 13.0637150539805 + ], + [ + 77.5347306299591, + 13.063743259715199 + ], + [ + 77.534206249824905, + 13.065259134221 + ], + [ + 77.533938403541995, + 13.0660334159885 + ], + [ + 77.533952087888196, + 13.067020624041501 + ], + [ + 77.533956196550704, + 13.0673169907732 + ], + [ + 77.533930191144407, + 13.0673392091647 + ], + [ + 77.5333080609295, + 13.067870752657401 + ], + [ + 77.533065071324799, + 13.068060307976801 + ], + [ + 77.532801111770894, + 13.068304824359901 + ], + [ + 77.532471808648197, + 13.0686098694382 + ], + [ + 77.532403082574405, + 13.068629311893799 + ], + [ + 77.532343399824995, + 13.068646195591 + ], + [ + 77.532320622334794, + 13.0686869195951 + ], + [ + 77.532320282013899, + 13.0686875273521 + ], + [ + 77.532310734211606, + 13.068704597134801 + ], + [ + 77.532205421436203, + 13.0688928816221 + ], + [ + 77.532118559727607, + 13.0690481766429 + ], + [ + 77.531847791819004, + 13.069156039853301 + ], + [ + 77.531123052333996, + 13.0696694218866 + ], + [ + 77.530976189524495, + 13.0697734545505 + ], + [ + 77.530986006328106, + 13.0698123990821 + ], + [ + 77.531010365355399, + 13.0699090312929 + ], + [ + 77.531018155589294, + 13.069939934021299 + ], + [ + 77.531250520347996, + 13.070861705494 + ], + [ + 77.531456203481696, + 13.0716528577902 + ], + [ + 77.531498387219202, + 13.0718151130073 + ], + [ + 77.531505830969806, + 13.071843745061001 + ], + [ + 77.531509927930799, + 13.071859505671901 + ], + [ + 77.531527898441695, + 13.0719286264983 + ], + [ + 77.531531001623804, + 13.071940564334 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "237", + "group": "Byatarayanapura", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "12", + "ward_name": "12 - Byatarayanapura", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ಬ್ಯಾಟರಾಯನಪುರ", + "dig_ward_n": "Byatarayanapura", + "Assembly": "152 - Byatarayanapura", + "Slno": "12" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.5840282197493, + 13.0585739815132 + ], + [ + 77.581047319124295, + 13.058883479842599 + ], + [ + 77.580709553380302, + 13.0589581017901 + ], + [ + 77.578925197680405, + 13.059402145074101 + ], + [ + 77.577547455951702, + 13.0597554035319 + ], + [ + 77.576999921873494, + 13.0598463749741 + ], + [ + 77.5766612980551, + 13.059981641865599 + ], + [ + 77.576535120520802, + 13.060278304533799 + ], + [ + 77.576423633537203, + 13.0608710130979 + ], + [ + 77.576061204555899, + 13.0618471397385 + ], + [ + 77.575783790188098, + 13.0628864899902 + ], + [ + 77.577387408601595, + 13.0639548337249 + ], + [ + 77.577455018195394, + 13.0639997622702 + ], + [ + 77.577615642012503, + 13.064106503217801 + ], + [ + 77.579445441073901, + 13.0653224560743 + ], + [ + 77.581276721062807, + 13.066539366241299 + ], + [ + 77.581318480360395, + 13.0665671814126 + ], + [ + 77.583544887589298, + 13.068032207338399 + ], + [ + 77.584112404378004, + 13.0684318019388 + ], + [ + 77.586526456251903, + 13.0701315415183 + ], + [ + 77.586701354697695, + 13.070254686033 + ], + [ + 77.586973402580995, + 13.070534178567501 + ], + [ + 77.587946716620493, + 13.071534119565699 + ], + [ + 77.588442215836295, + 13.0723772511533 + ], + [ + 77.588692259403402, + 13.0728253316875 + ], + [ + 77.588801784590601, + 13.0730546089725 + ], + [ + 77.589162769478307, + 13.073867466562 + ], + [ + 77.589553038338494, + 13.074781665577699 + ], + [ + 77.589999086699507, + 13.0758522751066 + ], + [ + 77.5900917831665, + 13.076069297999499 + ], + [ + 77.590294303179306, + 13.0765438261532 + ], + [ + 77.590710760455096, + 13.0775379384988 + ], + [ + 77.591010308119195, + 13.078257676690001 + ], + [ + 77.591415510884104, + 13.079221408972 + ], + [ + 77.591719047804503, + 13.079936588334901 + ], + [ + 77.592230124534694, + 13.0811646375323 + ], + [ + 77.593073482618294, + 13.0831561314802 + ], + [ + 77.593537315245996, + 13.0842163866555 + ], + [ + 77.593635943997597, + 13.084449157430599 + ], + [ + 77.593706853574801, + 13.0846200960661 + ], + [ + 77.593715717280205, + 13.084641463392799 + ], + [ + 77.593715741825704, + 13.0846415191586 + ], + [ + 77.593721618542503, + 13.084654955498699 + ], + [ + 77.593712251011098, + 13.0848130584621 + ], + [ + 77.593771132978603, + 13.0854046297042 + ], + [ + 77.593784504948104, + 13.0855389751432 + ], + [ + 77.593797085917203, + 13.0856653666136 + ], + [ + 77.593913887905799, + 13.086838813812401 + ], + [ + 77.593915418320606, + 13.0868541874251 + ], + [ + 77.593968089784298, + 13.0873833469425 + ], + [ + 77.594701198378601, + 13.087198944336899 + ], + [ + 77.59479787718, + 13.0872175428145 + ], + [ + 77.594917391027593, + 13.0872405343836 + ], + [ + 77.595132911736897, + 13.0871856367832 + ], + [ + 77.595189092592406, + 13.087171326827599 + ], + [ + 77.595819856968902, + 13.0870106585557 + ], + [ + 77.596431513323594, + 13.0868909185322 + ], + [ + 77.596499728420596, + 13.086877564072701 + ], + [ + 77.597626361952095, + 13.086683186487001 + ], + [ + 77.597835705127693, + 13.086647610059799 + ], + [ + 77.602143876464694, + 13.0859083134262 + ], + [ + 77.602220410875901, + 13.085953324215399 + ], + [ + 77.6025253951358, + 13.0861326867076 + ], + [ + 77.602704115319995, + 13.0859767308035 + ], + [ + 77.602861464364395, + 13.085839423875401 + ], + [ + 77.602844857070195, + 13.085736397960799 + ], + [ + 77.602754335983903, + 13.0853038200221 + ], + [ + 77.602485241960494, + 13.084017875670799 + ], + [ + 77.602253877323093, + 13.0829141805966 + ], + [ + 77.602145073238106, + 13.082395144455701 + ], + [ + 77.601967400606796, + 13.0815465886096 + ], + [ + 77.601849981750405, + 13.0807950814139 + ], + [ + 77.601811412743103, + 13.0805482284677 + ], + [ + 77.601752832323598, + 13.080173292859 + ], + [ + 77.601811745684202, + 13.080169377054199 + ], + [ + 77.601962482639493, + 13.0801593579785 + ], + [ + 77.601922381399305, + 13.0797497542458 + ], + [ + 77.601906158352094, + 13.0795840537095 + ], + [ + 77.601874396110603, + 13.0792853234662 + ], + [ + 77.601837493990502, + 13.0789382440797 + ], + [ + 77.601836431688298, + 13.0789282565964 + ], + [ + 77.601749439372199, + 13.078110053230899 + ], + [ + 77.602167588327703, + 13.078042400625399 + ], + [ + 77.602092183113896, + 13.0775987431525 + ], + [ + 77.602076526772393, + 13.0775066288854 + ], + [ + 77.602023973950594, + 13.077197424293599 + ], + [ + 77.602011878129105, + 13.0771262552369 + ], + [ + 77.601987277948297, + 13.0769815154172 + ], + [ + 77.601623859481904, + 13.076784022794801 + ], + [ + 77.601558693957799, + 13.076071017800199 + ], + [ + 77.601541555557503, + 13.0758834969026 + ], + [ + 77.601668792974806, + 13.0758216771312 + ], + [ + 77.601727458212196, + 13.075794050403299 + ], + [ + 77.6016910338965, + 13.075706987404899 + ], + [ + 77.601659051570607, + 13.075551517764801 + ], + [ + 77.6016332880302, + 13.075417369675399 + ], + [ + 77.601608412887799, + 13.075295659157099 + ], + [ + 77.601529212806497, + 13.0748058162735 + ], + [ + 77.601492769934296, + 13.0744064182215 + ], + [ + 77.601442334617602, + 13.0738562287119 + ], + [ + 77.601437254458006, + 13.0738008078314 + ], + [ + 77.601386760362601, + 13.073249973793899 + ], + [ + 77.601351620520603, + 13.0729747833443 + ], + [ + 77.601349737956994, + 13.072960121661801 + ], + [ + 77.601320691004503, + 13.072928558636599 + ], + [ + 77.601305460004895, + 13.072912008659999 + ], + [ + 77.601261031351001, + 13.0729045512709 + ], + [ + 77.601224677406904, + 13.0728981418115 + ], + [ + 77.601086937967295, + 13.072890495087201 + ], + [ + 77.600919612614106, + 13.0728921805444 + ], + [ + 77.600904108859496, + 13.0728923367072 + ], + [ + 77.600778245087199, + 13.072893604445699 + ], + [ + 77.600611169214901, + 13.072889640784201 + ], + [ + 77.600537427824904, + 13.072888124891 + ], + [ + 77.600294163940902, + 13.072869118369301 + ], + [ + 77.599963796021299, + 13.0728374372841 + ], + [ + 77.599647320237494, + 13.0728123915917 + ], + [ + 77.599311263160601, + 13.0727875426106 + ], + [ + 77.599208654768205, + 13.0727795412179 + ], + [ + 77.599074999780896, + 13.0727682991061 + ], + [ + 77.598968835465996, + 13.0727593694511 + ], + [ + 77.598641969432094, + 13.072732168498099 + ], + [ + 77.598585391359407, + 13.0727274013355 + ], + [ + 77.598282816382394, + 13.072701904150099 + ], + [ + 77.598201527933497, + 13.072694817099499 + ], + [ + 77.597967705179897, + 13.072697170604901 + ], + [ + 77.597782246946693, + 13.072697906250999 + ], + [ + 77.5976429332663, + 13.0727049541697 + ], + [ + 77.597454114019797, + 13.072714758565301 + ], + [ + 77.597347180936396, + 13.0727339027298 + ], + [ + 77.597280262273401, + 13.072745548858199 + ], + [ + 77.597231136880694, + 13.0724477430641 + ], + [ + 77.597216902311999, + 13.0723614499337 + ], + [ + 77.597185391675396, + 13.072170424587499 + ], + [ + 77.597068864307204, + 13.071729005694801 + ], + [ + 77.597014262675998, + 13.071522166730499 + ], + [ + 77.596852640221101, + 13.071086906239 + ], + [ + 77.596805104538404, + 13.070734993280499 + ], + [ + 77.597156870627103, + 13.070670167482801 + ], + [ + 77.597626728523494, + 13.070488439826301 + ], + [ + 77.5978033588177, + 13.070420123996399 + ], + [ + 77.598023275845307, + 13.070372164987999 + ], + [ + 77.598238805079205, + 13.070325162410599 + ], + [ + 77.599077322011297, + 13.070142297157201 + ], + [ + 77.599155993703206, + 13.070133232760099 + ], + [ + 77.6000128501815, + 13.069991035037599 + ], + [ + 77.599924898785204, + 13.069609023921901 + ], + [ + 77.599777424726497, + 13.0692332315919 + ], + [ + 77.599711683278699, + 13.0692492227549 + ], + [ + 77.5994398335081, + 13.0679752601042 + ], + [ + 77.599957054372595, + 13.067845583940001 + ], + [ + 77.599899838474002, + 13.0674047731159 + ], + [ + 77.599891692758803, + 13.0673420182253 + ], + [ + 77.599743142680097, + 13.066711111565599 + ], + [ + 77.599636186337904, + 13.066062838749 + ], + [ + 77.599255106984998, + 13.066040071787601 + ], + [ + 77.598656154164701, + 13.0659567222169 + ], + [ + 77.598237837367606, + 13.0660585937352 + ], + [ + 77.596821266591206, + 13.0664105136842 + ], + [ + 77.595569122873201, + 13.0667306487912 + ], + [ + 77.595214612889507, + 13.0655854696366 + ], + [ + 77.595074246014505, + 13.0655730320654 + ], + [ + 77.594960531077803, + 13.0653011822948 + ], + [ + 77.594850369732796, + 13.0649396043318 + ], + [ + 77.594771302315806, + 13.064719281641899 + ], + [ + 77.594714444847398, + 13.0644865213808 + ], + [ + 77.594847704538907, + 13.0644758606054 + ], + [ + 77.595677468218, + 13.064312395383901 + ], + [ + 77.5958051559155, + 13.064162415531101 + ], + [ + 77.595748112863205, + 13.0634493089022 + ], + [ + 77.595653040762798, + 13.0625139314458 + ], + [ + 77.596166428969497, + 13.062384274402399 + ], + [ + 77.5962044582446, + 13.061217362033201 + ], + [ + 77.5973278202774, + 13.060923665509099 + ], + [ + 77.598362206802804, + 13.060680624591599 + ], + [ + 77.599286301945199, + 13.0604235581793 + ], + [ + 77.600040404076907, + 13.0601273616094 + ], + [ + 77.599845831368199, + 13.0597566907305 + ], + [ + 77.599653937412398, + 13.0594901713475 + ], + [ + 77.599485952858899, + 13.059182546860701 + ], + [ + 77.599267287446807, + 13.05899732015 + ], + [ + 77.598906014202001, + 13.0589695362873 + ], + [ + 77.598730003551296, + 13.0582393070433 + ], + [ + 77.598468683374094, + 13.0573488014135 + ], + [ + 77.598847941221905, + 13.057220029528899 + ], + [ + 77.599584033131606, + 13.056983433488501 + ], + [ + 77.600344368614898, + 13.056795922406501 + ], + [ + 77.600751313976204, + 13.056708293414999 + ], + [ + 77.600899556242695, + 13.0571100794792 + ], + [ + 77.6010317972395, + 13.057293585294 + ], + [ + 77.601518839656507, + 13.057954091293301 + ], + [ + 77.601912910638404, + 13.058503400477599 + ], + [ + 77.602003195053399, + 13.058610032631501 + ], + [ + 77.602112134521605, + 13.0588114353188 + ], + [ + 77.602133456072295, + 13.0592227635666 + ], + [ + 77.602135232868207, + 13.0602124388754 + ], + [ + 77.602809968517093, + 13.060267763775901 + ], + [ + 77.602959578522203, + 13.0602784502048 + ], + [ + 77.603130238564702, + 13.060425654381801 + ], + [ + 77.603203087196107, + 13.0604789582584 + ], + [ + 77.603265275052095, + 13.0605144941762 + ], + [ + 77.603335481171996, + 13.0605790161712 + ], + [ + 77.603469651958704, + 13.0607414101784 + ], + [ + 77.603625572040102, + 13.0609016980069 + ], + [ + 77.603395182692793, + 13.058431422413801 + ], + [ + 77.604098266502803, + 13.058272906445501 + ], + [ + 77.604646289654994, + 13.058128701499401 + ], + [ + 77.604561003452503, + 13.057991888216099 + ], + [ + 77.604348610188296, + 13.057732564561 + ], + [ + 77.603738346956902, + 13.056848520063101 + ], + [ + 77.603852061893704, + 13.056763233860501 + ], + [ + 77.603427407676804, + 13.0561018215917 + ], + [ + 77.603300366770895, + 13.056113814963901 + ], + [ + 77.603155250432593, + 13.0555335435819 + ], + [ + 77.6028156211988, + 13.054533030701799 + ], + [ + 77.602601630739898, + 13.0538737180078 + ], + [ + 77.602281075947403, + 13.0539957637094 + ], + [ + 77.602009921708898, + 13.054065211408499 + ], + [ + 77.601917481130101, + 13.053591542588199 + ], + [ + 77.601803074768995, + 13.053612153575401 + ], + [ + 77.600529431389106, + 13.053841603192801 + ], + [ + 77.600009932283697, + 13.0539524136697 + ], + [ + 77.599093802509202, + 13.0541264687647 + ], + [ + 77.598926783695802, + 13.0533997592471 + ], + [ + 77.597986059972698, + 13.053520922833201 + ], + [ + 77.597993913666897, + 13.0536736604256 + ], + [ + 77.597060207428399, + 13.0537091963434 + ], + [ + 77.595528609374099, + 13.053737625077501 + ], + [ + 77.593479652376104, + 13.0543451957495 + ], + [ + 77.593467932362799, + 13.0548427322646 + ], + [ + 77.593470181759002, + 13.055908089232799 + ], + [ + 77.593471311568194, + 13.055961155346401 + ], + [ + 77.593471991985297, + 13.056005862911499 + ], + [ + 77.593472364081506, + 13.0560303005884 + ], + [ + 77.593478395223102, + 13.0564263473883 + ], + [ + 77.593478635820205, + 13.0564421586222 + ], + [ + 77.593479287110696, + 13.0564859278134 + ], + [ + 77.593480851389899, + 13.0565910334862 + ], + [ + 77.593481012959401, + 13.056601921816499 + ], + [ + 77.593482597147997, + 13.0567084041166 + ], + [ + 77.5934865991522, + 13.0569773043791 + ], + [ + 77.593486682312303, + 13.0569828876486 + ], + [ + 77.593490212849105, + 13.0572201219771 + ], + [ + 77.593484619739399, + 13.0572913232388 + ], + [ + 77.593470459690707, + 13.0574699994211 + ], + [ + 77.593451031264493, + 13.057715143247 + ], + [ + 77.593449487696802, + 13.058102504534901 + ], + [ + 77.593448187231701, + 13.0584288402647 + ], + [ + 77.593449420081697, + 13.0585953376468 + ], + [ + 77.592951537507602, + 13.058714331857701 + ], + [ + 77.592038829499202, + 13.058876665537801 + ], + [ + 77.591753331145597, + 13.0589685993433 + ], + [ + 77.591316714191706, + 13.0591556118498 + ], + [ + 77.590954397806101, + 13.059434387526601 + ], + [ + 77.590011189584203, + 13.0602128946944 + ], + [ + 77.590002190574694, + 13.060129648079499 + ], + [ + 77.589935111592993, + 13.0595574979096 + ], + [ + 77.589076889016496, + 13.0601800440602 + ], + [ + 77.588343152995904, + 13.060703686611699 + ], + [ + 77.587996851607897, + 13.0609633657564 + ], + [ + 77.587292892037595, + 13.061417699861501 + ], + [ + 77.587256641444, + 13.0615184209344 + ], + [ + 77.587242382989203, + 13.0615943690431 + ], + [ + 77.587109367724693, + 13.062316189552099 + ], + [ + 77.5856708447877, + 13.063410718858799 + ], + [ + 77.585283080080401, + 13.062896243637001 + ], + [ + 77.585703899543105, + 13.0626161096452 + ], + [ + 77.585523806004701, + 13.0623510822179 + ], + [ + 77.585895474409199, + 13.062077732157199 + ], + [ + 77.585174015964895, + 13.0611053843047 + ], + [ + 77.585477541642803, + 13.0608653807524 + ], + [ + 77.585342880271497, + 13.0604268531029 + ], + [ + 77.585177495113996, + 13.059131347612199 + ], + [ + 77.585103066102207, + 13.058371912785899 + ], + [ + 77.5840282197493, + 13.0585739815132 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "238", + "group": "KOTHUR", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "19", + "ward_name": "19 - Kotthur", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಕೊತ್ತೂರ್", + "dig_ward_n": "KOTHUR", + "Assembly": "151 - K.R. Pura", + "Slno": "19" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.670712152914305, + 13.0069418758496 + ], + [ + 77.6706987051151, + 13.0070535110319 + ], + [ + 77.670808281506595, + 13.0073910063175 + ], + [ + 77.670834579840502, + 13.007601392989001 + ], + [ + 77.670407231913899, + 13.0076298828508 + ], + [ + 77.670139865518905, + 13.0076353616703 + ], + [ + 77.669723475231507, + 13.007659468476399 + ], + [ + 77.669758539676707, + 13.0078227372997 + ], + [ + 77.669776071899406, + 13.0078895788984 + ], + [ + 77.669811136344606, + 13.008050656193801 + ], + [ + 77.669873594887704, + 13.008322405644501 + ], + [ + 77.6696971768975, + 13.008358565853699 + ], + [ + 77.669634718354402, + 13.008355278562 + ], + [ + 77.669494460573404, + 13.0083629489093 + ], + [ + 77.669012324451202, + 13.0084922490512 + ], + [ + 77.669040570542506, + 13.0086918852016 + ], + [ + 77.669054174941706, + 13.0088014557357 + ], + [ + 77.669093410980807, + 13.0088932986438 + ], + [ + 77.669115326259103, + 13.0089963004518 + ], + [ + 77.669115326259103, + 13.0091913464285 + ], + [ + 77.669151486468294, + 13.0094159780309 + ], + [ + 77.669207370427898, + 13.0098071657482 + ], + [ + 77.669256124232604, + 13.010034528413399 + ], + [ + 77.669115124771494, + 13.010057706407 + ], + [ + 77.669131220600406, + 13.010189048370799 + ], + [ + 77.669153110927695, + 13.0101877607045 + ], + [ + 77.669173934268102, + 13.0103532802878 + ], + [ + 77.669241339109305, + 13.010487087256999 + ], + [ + 77.669274212026707, + 13.010627345037999 + ], + [ + 77.669311467999805, + 13.010789518097299 + ], + [ + 77.669434193558203, + 13.010967031851401 + ], + [ + 77.669577546123904, + 13.0118021028565 + ], + [ + 77.669577584746307, + 13.011802096135201 + ], + [ + 77.669736410329705, + 13.011791900567999 + ], + [ + 77.670024796233903, + 13.0117257687904 + ], + [ + 77.670392832413995, + 13.0116846552065 + ], + [ + 77.670762598333695, + 13.0116433480509 + ], + [ + 77.670868072706796, + 13.0116315657631 + ], + [ + 77.671712768600599, + 13.0115908392245 + ], + [ + 77.672252768110695, + 13.0115648013198 + ], + [ + 77.672467418496495, + 13.011558202626899 + ], + [ + 77.673251192967896, + 13.011534109552301 + ], + [ + 77.673566857129799, + 13.0115244044666 + ], + [ + 77.673825865697594, + 13.011516441268199 + ], + [ + 77.673916631798903, + 13.0115108991029 + ], + [ + 77.674004239923804, + 13.0115055493662 + ], + [ + 77.674787728938796, + 13.0114577056857 + ], + [ + 77.674996849308002, + 13.0114449358654 + ], + [ + 77.675503037563701, + 13.0114140239273 + ], + [ + 77.675726071155793, + 13.0114004035511 + ], + [ + 77.675920382836196, + 13.0113983986833 + ], + [ + 77.675921821731507, + 13.0113983838365 + ], + [ + 77.676296898932506, + 13.0113945134538 + ], + [ + 77.676348891673499, + 13.0113939769033 + ], + [ + 77.6767055131007, + 13.0114482598556 + ], + [ + 77.676827456147905, + 13.011466821343401 + ], + [ + 77.6768279498461, + 13.0114668966482 + ], + [ + 77.676954601011502, + 13.011486174638099 + ], + [ + 77.677146748023304, + 13.0115217988109 + ], + [ + 77.677379076931103, + 13.0115648719039 + ], + [ + 77.677726028730504, + 13.0116291939579 + ], + [ + 77.677975197425098, + 13.011675388122001 + ], + [ + 77.678068757319707, + 13.0116927334377 + ], + [ + 77.678069231779602, + 13.011692733055 + ], + [ + 77.678542948263996, + 13.011696134608 + ], + [ + 77.678847188730799, + 13.0116983192913 + ], + [ + 77.678886979465801, + 13.011685567230399 + ], + [ + 77.678957218050101, + 13.0116630567352 + ], + [ + 77.679933387818394, + 13.011350205344799 + ], + [ + 77.680121510552496, + 13.0112899158378 + ], + [ + 77.680204676535297, + 13.011250023289501 + ], + [ + 77.680683005229199, + 13.0110205816099 + ], + [ + 77.680769420195006, + 13.010979129528501 + ], + [ + 77.680992665284606, + 13.0108720429267 + ], + [ + 77.681281087701095, + 13.010633044491399 + ], + [ + 77.6813073370339, + 13.010611293561199 + ], + [ + 77.681798108884493, + 13.0102046131006 + ], + [ + 77.682108550124198, + 13.009947366727999 + ], + [ + 77.682160132250303, + 13.009876494743301 + ], + [ + 77.682304054083204, + 13.0096787572641 + ], + [ + 77.682485745851494, + 13.009427021070399 + ], + [ + 77.682610754626694, + 13.009266954138599 + ], + [ + 77.682749340579804, + 13.008989858435999 + ], + [ + 77.682973184996399, + 13.008618622261199 + ], + [ + 77.683166517984105, + 13.008297987036499 + ], + [ + 77.683413508857498, + 13.0078883590784 + ], + [ + 77.683457351127103, + 13.0078156473677 + ], + [ + 77.685032392877105, + 13.0086840077362 + ], + [ + 77.686636591247506, + 13.006010343785601 + ], + [ + 77.6869740844012, + 13.006248867484 + ], + [ + 77.687202652918302, + 13.0063670920725 + ], + [ + 77.688185783071802, + 13.004571334500699 + ], + [ + 77.686685554618904, + 13.0037837736489 + ], + [ + 77.688073737900297, + 13.000958551451101 + ], + [ + 77.688162321051095, + 13.0007645076217 + ], + [ + 77.6882293041499, + 13.000126963290899 + ], + [ + 77.686390675015005, + 13.000217395444199 + ], + [ + 77.686383678284699, + 13.0002176611842 + ], + [ + 77.685964476793202, + 13.0002335990122 + ], + [ + 77.684791012533097, + 13.0002782092325 + ], + [ + 77.683920103147102, + 13.000311314135001 + ], + [ + 77.683586636992501, + 13.0003218510265 + ], + [ + 77.680368599878904, + 13.000423515141 + ], + [ + 77.678847068783895, + 13.0003698535391 + ], + [ + 77.678153478869604, + 13.0003602835324 + ], + [ + 77.677610005142498, + 13.000352782856799 + ], + [ + 77.677588198723299, + 13.000351363674101 + ], + [ + 77.677200504172006, + 13.000456194529001 + ], + [ + 77.677144733101699, + 13.000465419654599 + ], + [ + 77.677034927724094, + 13.000473499237801 + ], + [ + 77.677200233290094, + 13.000563539481799 + ], + [ + 77.677547770849699, + 13.0007617374718 + ], + [ + 77.677111169989999, + 13.000741079537301 + ], + [ + 77.677069978874201, + 13.001591944201399 + ], + [ + 77.676995948242705, + 13.0021400360848 + ], + [ + 77.676986802409999, + 13.002343851353601 + ], + [ + 77.676985624741803, + 13.002370100328701 + ], + [ + 77.676983199569406, + 13.0025415486749 + ], + [ + 77.676903968501094, + 13.002707518975599 + ], + [ + 77.676887496103802, + 13.002960643969599 + ], + [ + 77.676892908940005, + 13.0031051224001 + ], + [ + 77.676894274668598, + 13.0031415713856 + ], + [ + 77.676900933725904, + 13.0032197325755 + ], + [ + 77.676998386168904, + 13.003360883807 + ], + [ + 77.677063500978093, + 13.003468920107499 + ], + [ + 77.677104924743304, + 13.0035542043976 + ], + [ + 77.677133579765695, + 13.003641710830401 + ], + [ + 77.677152066749798, + 13.003775313161 + ], + [ + 77.677165460002996, + 13.004030221304101 + ], + [ + 77.677163524302102, + 13.0041031014586 + ], + [ + 77.677156349996693, + 13.004373162778499 + ], + [ + 77.677118785888496, + 13.004632968545399 + ], + [ + 77.677124654712998, + 13.0049896652718 + ], + [ + 77.6770968706101, + 13.005084423278101 + ], + [ + 77.676936889078704, + 13.005123870779 + ], + [ + 77.676748417685403, + 13.0051501691129 + ], + [ + 77.676522690319104, + 13.005211531892099 + ], + [ + 77.676265185799295, + 13.005271798907399 + ], + [ + 77.676025213502001, + 13.005349598145299 + ], + [ + 77.675875093845804, + 13.005449312661501 + ], + [ + 77.6756888139804, + 13.0054745152315 + ], + [ + 77.675677856341196, + 13.005613677248601 + ], + [ + 77.675454320502695, + 13.005554505997299 + ], + [ + 77.675247221123001, + 13.005417535508 + ], + [ + 77.675148602370797, + 13.0054712279398 + ], + [ + 77.675076254922899, + 13.005594936202099 + ], + [ + 77.674906818667296, + 13.006229420335099 + ], + [ + 77.674826424600298, + 13.006419790067 + ], + [ + 77.674765060154996, + 13.0065291309676 + ], + [ + 77.674680716567707, + 13.006616410648 + ], + [ + 77.674464043346106, + 13.0068221226679 + ], + [ + 77.674424522272901, + 13.006847617864199 + ], + [ + 77.674436279831397, + 13.0068837312316 + ], + [ + 77.674517075226603, + 13.007021176870399 + ], + [ + 77.674607649494106, + 13.0072248134774 + ], + [ + 77.674607650801804, + 13.007224935420201 + ], + [ + 77.674433068534697, + 13.007305536732201 + ], + [ + 77.674176659778794, + 13.007240886661201 + ], + [ + 77.674102147832599, + 13.007234312077699 + ], + [ + 77.673882995049695, + 13.0072244502025 + ], + [ + 77.673449072539697, + 13.0072222586747 + ], + [ + 77.672915435513502, + 13.0072091095077 + ], + [ + 77.6725209605044, + 13.0072069179799 + ], + [ + 77.672432203627196, + 13.007201987042301 + ], + [ + 77.672648069118395, + 13.0082478936984 + ], + [ + 77.672334680638897, + 13.0083010382482 + ], + [ + 77.672379606959396, + 13.008568404643301 + ], + [ + 77.6717878944457, + 13.0086429165894 + ], + [ + 77.671779128334407, + 13.008371715020701 + ], + [ + 77.670872931577307, + 13.0084319820359 + ], + [ + 77.670870740049494, + 13.008138865188901 + ], + [ + 77.671557784023705, + 13.008078598173601 + ], + [ + 77.671528198397993, + 13.007575642537001 + ], + [ + 77.671506283119697, + 13.007395937255099 + ], + [ + 77.671499708536203, + 13.0072458175988 + ], + [ + 77.671474451370699, + 13.0069341498518 + ], + [ + 77.670955521847205, + 13.0069354375181 + ], + [ + 77.670712152914305, + 13.0069418758496 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "239", + "group": "Dasarahalli", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "5", + "ward_name": "5 - Jakkur", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ಜಕ್ಕೂರ್", + "dig_ward_n": "Dasarahalli", + "Assembly": "152 - Byatarayanapura", + "Slno": "5" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.611936529886606, + 13.0533110481247 + ], + [ + 77.610267227872995, + 13.053669109278299 + ], + [ + 77.609208893001906, + 13.053882966705199 + ], + [ + 77.607985725335595, + 13.0541836008451 + ], + [ + 77.607131086514102, + 13.054412807514501 + ], + [ + 77.607029809148599, + 13.053973938930501 + ], + [ + 77.607217261114698, + 13.0538735499629 + ], + [ + 77.607096438994404, + 13.052878544266299 + ], + [ + 77.607009375995901, + 13.052015021465399 + ], + [ + 77.606783722918294, + 13.0523330679291 + ], + [ + 77.606247130560504, + 13.052672435943499 + ], + [ + 77.605834913914805, + 13.0527825972885 + ], + [ + 77.605388636046101, + 13.052879232619199 + ], + [ + 77.604967824269195, + 13.053007692902501 + ], + [ + 77.604354276157096, + 13.053210367735 + ], + [ + 77.604322709665993, + 13.053220849181301 + ], + [ + 77.604100134829196, + 13.053305528216599 + ], + [ + 77.603789218430705, + 13.053423845799999 + ], + [ + 77.603512712139803, + 13.0535282652314 + ], + [ + 77.603479602569095, + 13.0535408192217 + ], + [ + 77.603237357314697, + 13.053632672814301 + ], + [ + 77.602935042557306, + 13.053747515068601 + ], + [ + 77.602801960055302, + 13.053798543091499 + ], + [ + 77.602643621779393, + 13.0538577302388 + ], + [ + 77.602601630739898, + 13.0538737180078 + ], + [ + 77.6028156211988, + 13.054533030701799 + ], + [ + 77.603155250432593, + 13.0555335435819 + ], + [ + 77.603300366770895, + 13.056113814963901 + ], + [ + 77.603427407676804, + 13.0561018215917 + ], + [ + 77.603852061893704, + 13.056763233860501 + ], + [ + 77.603738346956902, + 13.056848520063101 + ], + [ + 77.604348610188296, + 13.057732564561 + ], + [ + 77.604561003452503, + 13.057991888216099 + ], + [ + 77.604646289654994, + 13.058128701499401 + ], + [ + 77.604098266502803, + 13.058272906445501 + ], + [ + 77.603395182692793, + 13.058431422413801 + ], + [ + 77.603625572040102, + 13.0609016980069 + ], + [ + 77.603674428926595, + 13.0609911765631 + ], + [ + 77.603700580741105, + 13.0610134986793 + ], + [ + 77.603985059577099, + 13.061174377932399 + ], + [ + 77.604036096169494, + 13.061204252130899 + ], + [ + 77.604277131883407, + 13.0613453437937 + ], + [ + 77.604445734499507, + 13.061440762657501 + ], + [ + 77.604608507267997, + 13.0615294644725 + ], + [ + 77.604913143365707, + 13.061690139322 + ], + [ + 77.605305331733305, + 13.061906394987901 + ], + [ + 77.605415165808296, + 13.0619448123793 + ], + [ + 77.605561762238295, + 13.061973824829501 + ], + [ + 77.605715970074101, + 13.0620024469538 + ], + [ + 77.605734885264297, + 13.062005957544599 + ], + [ + 77.605763940502897, + 13.062030508676999 + ], + [ + 77.605745241455196, + 13.062169598401701 + ], + [ + 77.605895964054497, + 13.0622076032453 + ], + [ + 77.606069722384404, + 13.062245375679399 + ], + [ + 77.606139007217095, + 13.062261616098599 + ], + [ + 77.606249161455395, + 13.0623305203433 + ], + [ + 77.606374241560104, + 13.062394756875101 + ], + [ + 77.606575166613396, + 13.0624966237152 + ], + [ + 77.606703114476602, + 13.0625597018522 + ], + [ + 77.606821859959496, + 13.0626240020258 + ], + [ + 77.606845156435398, + 13.0626486110983 + ], + [ + 77.6068868745337, + 13.0627272396124 + ], + [ + 77.606921665186505, + 13.0627494741624 + ], + [ + 77.606967973711406, + 13.0627715925052 + ], + [ + 77.606991341335601, + 13.0628029765021 + ], + [ + 77.607032566592594, + 13.0628895148881 + ], + [ + 77.607064418543601, + 13.062906132677799 + ], + [ + 77.607148558274105, + 13.062910930138401 + ], + [ + 77.607258191427505, + 13.062930150937699 + ], + [ + 77.607382785965797, + 13.0629480914428 + ], + [ + 77.6074289760017, + 13.0629589181202 + ], + [ + 77.607535848267204, + 13.062989459416 + ], + [ + 77.607650913482701, + 13.063032340021 + ], + [ + 77.6077431394543, + 13.0630393142263 + ], + [ + 77.607821555836594, + 13.063047557044801 + ], + [ + 77.607864807140302, + 13.063052766915799 + ], + [ + 77.607922953810302, + 13.0631052560363 + ], + [ + 77.608085906481406, + 13.0632108925507 + ], + [ + 77.608124051110494, + 13.063278264085399 + ], + [ + 77.608191713883897, + 13.0634142234777 + ], + [ + 77.608253155268599, + 13.063506203887201 + ], + [ + 77.608346147050199, + 13.063531238521399 + ], + [ + 77.6084496894388, + 13.063518900517099 + ], + [ + 77.608700364194704, + 13.063476845176799 + ], + [ + 77.608988590554304, + 13.063445703198701 + ], + [ + 77.609099917478801, + 13.0634360444847 + ], + [ + 77.609283210931807, + 13.0634201427167 + ], + [ + 77.609285114026804, + 13.063429978906401 + ], + [ + 77.609342082781495, + 13.063724470471699 + ], + [ + 77.609374566391693, + 13.0638923862979 + ], + [ + 77.609383378842494, + 13.0639354328863 + ], + [ + 77.609417543653606, + 13.064102319886199 + ], + [ + 77.609424941798295, + 13.0641384596546 + ], + [ + 77.609432242781395, + 13.064174122494601 + ], + [ + 77.609449465612002, + 13.064258867299101 + ], + [ + 77.609514236772199, + 13.064577574702399 + ], + [ + 77.609562978499497, + 13.0648311691795 + ], + [ + 77.609642303361696, + 13.065678267861299 + ], + [ + 77.609655104530901, + 13.065814965955701 + ], + [ + 77.609660940378902, + 13.065877017096399 + ], + [ + 77.609701168105204, + 13.066306864254701 + ], + [ + 77.609773846213997, + 13.066602451003099 + ], + [ + 77.609578998160998, + 13.0666841467552 + ], + [ + 77.6094986449652, + 13.0667109317616 + ], + [ + 77.609337493151699, + 13.066776928228 + ], + [ + 77.608892688215803, + 13.0669259679508 + ], + [ + 77.608533900206993, + 13.0670391308863 + ], + [ + 77.608300831161102, + 13.0671126286478 + ], + [ + 77.608146411538101, + 13.0671616173617 + ], + [ + 77.6081200030399, + 13.0671697889232 + ], + [ + 77.607602246317398, + 13.067337631634301 + ], + [ + 77.607310071929405, + 13.067432052205801 + ], + [ + 77.607213640244595, + 13.067463515977501 + ], + [ + 77.607022528211303, + 13.067528684302999 + ], + [ + 77.6070047344664, + 13.067534510266601 + ], + [ + 77.606769431782197, + 13.0676148050058 + ], + [ + 77.606434277108605, + 13.0677299854156 + ], + [ + 77.606418775093502, + 13.0677346589425 + ], + [ + 77.606268373996798, + 13.067782476838399 + ], + [ + 77.606011186312102, + 13.067862991781 + ], + [ + 77.605846434785306, + 13.0679154713453 + ], + [ + 77.605720714398402, + 13.0679551350332 + ], + [ + 77.605476736549605, + 13.0680321284139 + ], + [ + 77.605064776268705, + 13.068183089579501 + ], + [ + 77.604974114778898, + 13.0682156236973 + ], + [ + 77.604800842562398, + 13.068279481384799 + ], + [ + 77.604499040881393, + 13.0683898061314 + ], + [ + 77.604264947227605, + 13.068475733068301 + ], + [ + 77.604246589255496, + 13.068482693831999 + ], + [ + 77.604015351238104, + 13.0685663332233 + ], + [ + 77.603971748051293, + 13.0685825827091 + ], + [ + 77.603894860626994, + 13.068610460520199 + ], + [ + 77.603441574675401, + 13.0687753873848 + ], + [ + 77.6034492372317, + 13.068847687010299 + ], + [ + 77.603622477376305, + 13.0704821630759 + ], + [ + 77.603661851554506, + 13.0707765079244 + ], + [ + 77.603694438920101, + 13.0708631338589 + ], + [ + 77.603736477856998, + 13.0709722500695 + ], + [ + 77.603795139987795, + 13.0711286283722 + ], + [ + 77.603813765823006, + 13.071178274292899 + ], + [ + 77.603856764710798, + 13.0712928817265 + ], + [ + 77.603875824261806, + 13.0714167123576 + ], + [ + 77.603406079335599, + 13.071357916039499 + ], + [ + 77.602739365015097, + 13.0712570720935 + ], + [ + 77.602398013667198, + 13.0712268894482 + ], + [ + 77.602312265814803, + 13.0712193074172 + ], + [ + 77.601924150065898, + 13.071221759065301 + ], + [ + 77.601918915519605, + 13.071222455042999 + ], + [ + 77.601738064716997, + 13.071241220864099 + ], + [ + 77.601715632668899, + 13.0711701490286 + ], + [ + 77.601521295618795, + 13.0711985777628 + ], + [ + 77.601487536497004, + 13.071292747944799 + ], + [ + 77.601747837094393, + 13.072307298396099 + ], + [ + 77.601893534357103, + 13.072822569203201 + ], + [ + 77.601727567946696, + 13.0728594643085 + ], + [ + 77.601305460004895, + 13.072912008659999 + ], + [ + 77.601320691004503, + 13.072928558636599 + ], + [ + 77.601349737956994, + 13.072960121661801 + ], + [ + 77.601351620520603, + 13.0729747833443 + ], + [ + 77.601386760362601, + 13.073249973793899 + ], + [ + 77.601437254458006, + 13.0738008078314 + ], + [ + 77.601442334617602, + 13.0738562287119 + ], + [ + 77.601492769934296, + 13.0744064182215 + ], + [ + 77.601529212806497, + 13.0748058162735 + ], + [ + 77.601608412887799, + 13.075295659157099 + ], + [ + 77.6016332880302, + 13.075417369675399 + ], + [ + 77.601659051570607, + 13.075551517764801 + ], + [ + 77.6016910338965, + 13.075706987404899 + ], + [ + 77.601727458212196, + 13.075794050403299 + ], + [ + 77.601668792974806, + 13.0758216771312 + ], + [ + 77.601541555557503, + 13.0758834969026 + ], + [ + 77.601558693957799, + 13.076071017800199 + ], + [ + 77.601623859481904, + 13.076784022794801 + ], + [ + 77.601987277948297, + 13.0769815154172 + ], + [ + 77.602011878129105, + 13.0771262552369 + ], + [ + 77.602023973950594, + 13.077197424293599 + ], + [ + 77.602076526772393, + 13.0775066288854 + ], + [ + 77.602092183113896, + 13.0775987431525 + ], + [ + 77.602167588327703, + 13.078042400625399 + ], + [ + 77.601749439372199, + 13.078110053230899 + ], + [ + 77.601836431688298, + 13.0789282565964 + ], + [ + 77.601837493990502, + 13.0789382440797 + ], + [ + 77.601874396110603, + 13.0792853234662 + ], + [ + 77.601906158352094, + 13.0795840537095 + ], + [ + 77.601922381399305, + 13.0797497542458 + ], + [ + 77.601962482639493, + 13.0801593579785 + ], + [ + 77.601811745684202, + 13.080169377054199 + ], + [ + 77.601752832323598, + 13.080173292859 + ], + [ + 77.601811412743103, + 13.0805482284677 + ], + [ + 77.601849981750405, + 13.0807950814139 + ], + [ + 77.601967400606796, + 13.0815465886096 + ], + [ + 77.602145073238106, + 13.082395144455701 + ], + [ + 77.602253877323093, + 13.0829141805966 + ], + [ + 77.602485241960494, + 13.084017875670799 + ], + [ + 77.602754335983903, + 13.0853038200221 + ], + [ + 77.602844857070195, + 13.085736397960799 + ], + [ + 77.602861464364395, + 13.085839423875401 + ], + [ + 77.602704115319995, + 13.0859767308035 + ], + [ + 77.6025253951358, + 13.0861326867076 + ], + [ + 77.602548435891407, + 13.0861462368853 + ], + [ + 77.602572634901094, + 13.0861604683008 + ], + [ + 77.603396830779801, + 13.086484235699199 + ], + [ + 77.603470615781106, + 13.086513220877499 + ], + [ + 77.604124141598305, + 13.086825474625201 + ], + [ + 77.604144873327499, + 13.086835380048999 + ], + [ + 77.604161060788101, + 13.0868431143486 + ], + [ + 77.605035062373503, + 13.0871475573409 + ], + [ + 77.605371141120798, + 13.087285503366299 + ], + [ + 77.605630981632402, + 13.087385983517301 + ], + [ + 77.605929439616801, + 13.0876946125535 + ], + [ + 77.607018611312398, + 13.0881907243841 + ], + [ + 77.607400924985399, + 13.088235159495801 + ], + [ + 77.607710231541304, + 13.0882856397154 + ], + [ + 77.607946083431699, + 13.088344999344899 + ], + [ + 77.608044318104803, + 13.0883654893918 + ], + [ + 77.607942778924695, + 13.0887973215305 + ], + [ + 77.607871749038395, + 13.088896956015301 + ], + [ + 77.607838018211396, + 13.0891163238755 + ], + [ + 77.607748565765405, + 13.0895199573532 + ], + [ + 77.607516233052294, + 13.090045148703901 + ], + [ + 77.6070895353118, + 13.091278846985199 + ], + [ + 77.606808087179104, + 13.091246364861499 + ], + [ + 77.606715806778197, + 13.0913815386574 + ], + [ + 77.606504870725601, + 13.0918853173975 + ], + [ + 77.606635786585997, + 13.0919970408357 + ], + [ + 77.606327219705804, + 13.0928126841762 + ], + [ + 77.605980758244002, + 13.093452073724899 + ], + [ + 77.605980935028597, + 13.0934688800741 + ], + [ + 77.606046436393697, + 13.0935043024585 + ], + [ + 77.606109713934501, + 13.093608157897201 + ], + [ + 77.606042591227506, + 13.093983278759 + ], + [ + 77.606016768153296, + 13.094061911479001 + ], + [ + 77.606097260940203, + 13.0941133453848 + ], + [ + 77.606284163975104, + 13.094146287482101 + ], + [ + 77.606774176530493, + 13.0942806608589 + ], + [ + 77.607530761005606, + 13.094421045377199 + ], + [ + 77.607590849009895, + 13.0944255555287 + ], + [ + 77.607735245610499, + 13.0944363933164 + ], + [ + 77.607859786994794, + 13.094452549726 + ], + [ + 77.608001543023406, + 13.0944162836026 + ], + [ + 77.608122037822099, + 13.094346686735401 + ], + [ + 77.608193111373296, + 13.094198579475901 + ], + [ + 77.608200996299303, + 13.0941821478292 + ], + [ + 77.608247578071598, + 13.0940850776331 + ], + [ + 77.608251679100803, + 13.094075334331 + ], + [ + 77.608253046693093, + 13.094072083546299 + ], + [ + 77.608271140255994, + 13.094029091101101 + ], + [ + 77.608290372127598, + 13.093983393145299 + ], + [ + 77.608310751293999, + 13.0939349679056 + ], + [ + 77.608317289897997, + 13.0939194316146 + ], + [ + 77.608468824848003, + 13.09355936421 + ], + [ + 77.608664884775195, + 13.0930733443069 + ], + [ + 77.608776235450705, + 13.092858041580399 + ], + [ + 77.608842112908604, + 13.0927306642877 + ], + [ + 77.6088978947122, + 13.092622806308301 + ], + [ + 77.608939607059199, + 13.092509549108099 + ], + [ + 77.6090311244714, + 13.092261059380601 + ], + [ + 77.609043693783704, + 13.0922269302442 + ], + [ + 77.609052791370402, + 13.0922103128646 + ], + [ + 77.609398975115894, + 13.091577954056399 + ], + [ + 77.609437035562493, + 13.0915152737194 + ], + [ + 77.609550535516703, + 13.0913283516965 + ], + [ + 77.609729751501405, + 13.0910332045705 + ], + [ + 77.609981496255202, + 13.0906255028146 + ], + [ + 77.610497395806703, + 13.0899462159687 + ], + [ + 77.610793480202403, + 13.0895810893684 + ], + [ + 77.611171325108103, + 13.089011590415399 + ], + [ + 77.611322756384595, + 13.088783348368001 + ], + [ + 77.611420006340694, + 13.0886563099673 + ], + [ + 77.611551152226298, + 13.0884849933731 + ], + [ + 77.611654695694696, + 13.088349733346201 + ], + [ + 77.611687375391597, + 13.0883267321059 + ], + [ + 77.611816699010404, + 13.088235710607499 + ], + [ + 77.611908645205204, + 13.088170995616601 + ], + [ + 77.611986879185807, + 13.088074592085 + ], + [ + 77.612052985297296, + 13.0879842865528 + ], + [ + 77.612088801968397, + 13.087912215147 + ], + [ + 77.612142779283204, + 13.0878280076269 + ], + [ + 77.6121971983073, + 13.087785626529399 + ], + [ + 77.612342985519405, + 13.0877363449037 + ], + [ + 77.612427754955505, + 13.087681704189499 + ], + [ + 77.612541868052404, + 13.087519203687499 + ], + [ + 77.612618000255594, + 13.0873257429121 + ], + [ + 77.612616763495495, + 13.087318140541701 + ], + [ + 77.612750942620096, + 13.0868614298547 + ], + [ + 77.612817713005995, + 13.086647178719399 + ], + [ + 77.612918669178697, + 13.0862406315677 + ], + [ + 77.6131140236607, + 13.0854539410083 + ], + [ + 77.613217224617401, + 13.084286683903001 + ], + [ + 77.613419022401104, + 13.083707195342299 + ], + [ + 77.613616758618306, + 13.082731971303399 + ], + [ + 77.614845358085503, + 13.0802308350146 + ], + [ + 77.614426034256297, + 13.0801206736697 + ], + [ + 77.613992496059893, + 13.0811050185909 + ], + [ + 77.6127874548731, + 13.081785722413899 + ], + [ + 77.612189193736896, + 13.082038810372399 + ], + [ + 77.611859887712001, + 13.0820611461673 + ], + [ + 77.611698422682295, + 13.0814547037703 + ], + [ + 77.611294163174506, + 13.079881592939 + ], + [ + 77.611074554213999, + 13.079275736926901 + ], + [ + 77.610490679061698, + 13.0790536139996 + ], + [ + 77.612335743136995, + 13.0773235805765 + ], + [ + 77.612621320396698, + 13.077055804892501 + ], + [ + 77.615939972252406, + 13.074336582519299 + ], + [ + 77.617932338244501, + 13.0726570206793 + ], + [ + 77.618816579868195, + 13.0719517134046 + ], + [ + 77.618892197055004, + 13.073560501676599 + ], + [ + 77.621557384050007, + 13.073264184711901 + ], + [ + 77.622703728053594, + 13.073158804650401 + ], + [ + 77.625879150482405, + 13.0728108589937 + ], + [ + 77.625898695237197, + 13.072970770623501 + ], + [ + 77.628125020483196, + 13.0726740457105 + ], + [ + 77.628245842603505, + 13.0726687153228 + ], + [ + 77.628183654747502, + 13.0722156323717 + ], + [ + 77.629656237471494, + 13.0720037522245 + ], + [ + 77.630063683547604, + 13.071968550846799 + ], + [ + 77.630059671577797, + 13.071589993275699 + ], + [ + 77.6300510672244, + 13.0699200120862 + ], + [ + 77.629524888263305, + 13.069903130779499 + ], + [ + 77.629564180660907, + 13.068337676791399 + ], + [ + 77.629567321762906, + 13.0682125419995 + ], + [ + 77.629569086452406, + 13.0680725637978 + ], + [ + 77.629948327847998, + 13.0679885254597 + ], + [ + 77.630140258891799, + 13.067947047202299 + ], + [ + 77.6301404410289, + 13.067947016438801 + ], + [ + 77.630455864499893, + 13.0678946736712 + ], + [ + 77.631230859693204, + 13.067814508960501 + ], + [ + 77.631122475144096, + 13.0672565950521 + ], + [ + 77.631275279590398, + 13.067238827093201 + ], + [ + 77.630547847502001, + 13.063842379822599 + ], + [ + 77.630555677256197, + 13.063722548033599 + ], + [ + 77.630998099432006, + 13.063637261830999 + ], + [ + 77.631044296125097, + 13.063519993302499 + ], + [ + 77.631257511631503, + 13.063416939141099 + ], + [ + 77.6314796111173, + 13.0630331512296 + ], + [ + 77.631650183522396, + 13.0629709633735 + ], + [ + 77.631984221149096, + 13.0629691865776 + ], + [ + 77.632117480840606, + 13.0636283778516 + ], + [ + 77.632501577672102, + 13.063580949114501 + ], + [ + 77.632566320472094, + 13.064168293904901 + ], + [ + 77.632601247942603, + 13.064356232846 + ], + [ + 77.633610738595195, + 13.064252493163499 + ], + [ + 77.6335997254006, + 13.063969746021399 + ], + [ + 77.633540321567594, + 13.063293168140399 + ], + [ + 77.633289953803796, + 13.061714629922699 + ], + [ + 77.632837200418393, + 13.0594494066628 + ], + [ + 77.632830222266605, + 13.059454308251899 + ], + [ + 77.632829140029898, + 13.0594451415874 + ], + [ + 77.632190435171296, + 13.059989162260001 + ], + [ + 77.631090701244105, + 13.060927896198301 + ], + [ + 77.631092610690203, + 13.0609347769718 + ], + [ + 77.629683019274694, + 13.0622679648854 + ], + [ + 77.629628989701004, + 13.062313606447701 + ], + [ + 77.6289363058726, + 13.0629161623763 + ], + [ + 77.6279829868717, + 13.063735062003101 + ], + [ + 77.627567216634304, + 13.0623704827621 + ], + [ + 77.626733079303193, + 13.062524445323501 + ], + [ + 77.626070775835103, + 13.0626076658654 + ], + [ + 77.625886466091998, + 13.0622711538886 + ], + [ + 77.625774527951094, + 13.062285368255701 + ], + [ + 77.625090461534697, + 13.0620259560562 + ], + [ + 77.624638749075999, + 13.0618382044042 + ], + [ + 77.624283796202207, + 13.0616741504706 + ], + [ + 77.624202063591397, + 13.061354327211101 + ], + [ + 77.624354389505001, + 13.060770247759899 + ], + [ + 77.624371063783897, + 13.0605023672746 + ], + [ + 77.624328219621503, + 13.0601394805435 + ], + [ + 77.624166527673594, + 13.0594638163877 + ], + [ + 77.6240519243389, + 13.059120006383599 + ], + [ + 77.624014611625299, + 13.0588499334088 + ], + [ + 77.624216463258605, + 13.0587924984669 + ], + [ + 77.624507494229903, + 13.0586461271581 + ], + [ + 77.624827021689498, + 13.0584277571278 + ], + [ + 77.625190883855296, + 13.058251962329701 + ], + [ + 77.625364744321502, + 13.058092437695 + ], + [ + 77.625596657742804, + 13.057889299338299 + ], + [ + 77.625989773695096, + 13.0577132065036 + ], + [ + 77.626234718085698, + 13.057576859156001 + ], + [ + 77.626072231611303, + 13.057210411129599 + ], + [ + 77.625965901002004, + 13.0568386081806 + ], + [ + 77.625874046359698, + 13.056452316457399 + ], + [ + 77.625691702049906, + 13.055808793517899 + ], + [ + 77.625517103382407, + 13.055255828603 + ], + [ + 77.625283528578507, + 13.0551459110482 + ], + [ + 77.625037740712798, + 13.0551840768658 + ], + [ + 77.624726307640898, + 13.0552023964583 + ], + [ + 77.624032453076097, + 13.055372616005 + ], + [ + 77.6234508060152, + 13.0555061963667 + ], + [ + 77.623424853259195, + 13.055581001369299 + ], + [ + 77.623021822224899, + 13.0555851996093 + ], + [ + 77.622534444733503, + 13.055568024991301 + ], + [ + 77.622019587853501, + 13.055585962925599 + ], + [ + 77.621315810176199, + 13.055640921703001 + ], + [ + 77.620950397138103, + 13.0556561208509 + ], + [ + 77.620263829269504, + 13.05574913037 + ], + [ + 77.619865323334594, + 13.0557950792779 + ], + [ + 77.619854722472098, + 13.0557963015164 + ], + [ + 77.6196030367567, + 13.0555120180874 + ], + [ + 77.619424488048907, + 13.055226992413701 + ], + [ + 77.619112934819896, + 13.0548142386683 + ], + [ + 77.618756595744301, + 13.0543158877609 + ], + [ + 77.618479037643496, + 13.0541707190749 + ], + [ + 77.618125455262003, + 13.0541742726667 + ], + [ + 77.618020624304705, + 13.054181379850201 + ], + [ + 77.617357879438998, + 13.054232906930901 + ], + [ + 77.616958100364499, + 13.0542560052775 + ], + [ + 77.616631169921305, + 13.0542613356651 + ], + [ + 77.616258931183097, + 13.0543270771129 + ], + [ + 77.615924005158405, + 13.0544940959263 + ], + [ + 77.615887580842696, + 13.0544407920497 + ], + [ + 77.615875813868399, + 13.0542475671998 + ], + [ + 77.615887580842696, + 13.0540392361793 + ], + [ + 77.615882250455101, + 13.0539326284261 + ], + [ + 77.615754321151201, + 13.0532023653167 + ], + [ + 77.615331443730199, + 13.0532716603563 + ], + [ + 77.6145709750907, + 13.053433348781899 + ], + [ + 77.613792311055605, + 13.053579131708201 + ], + [ + 77.613458700865607, + 13.053669662634899 + ], + [ + 77.613095346106803, + 13.053764721214799 + ], + [ + 77.612851036672296, + 13.053826020672901 + ], + [ + 77.612698232226094, + 13.0537531720415 + ], + [ + 77.6125774101058, + 13.0535381797393 + ], + [ + 77.612490347107297, + 13.053198811724901 + ], + [ + 77.611936529886606, + 13.0533110481247 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "240", + "group": "Vidyaranyapura", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "19", + "ward_name": "19 - Vidyaranyapura", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ವಿದ್ಯಾರಣ್ಯಪುರ", + "dig_ward_n": "Vidyaranyapura", + "Assembly": "152 - Byatarayanapura", + "Slno": "19" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.555393544331906, + 13.063430429018601 + ], + [ + 77.555389806027804, + 13.063067126390401 + ], + [ + 77.555472952151106, + 13.062616909602699 + ], + [ + 77.555559049395796, + 13.062453511343399 + ], + [ + 77.555574105081106, + 13.062198010985499 + ], + [ + 77.555589390684602, + 13.061938611755201 + ], + [ + 77.554574421836506, + 13.0621135843916 + ], + [ + 77.553447055237996, + 13.062265760277599 + ], + [ + 77.552045212610494, + 13.0626046077331 + ], + [ + 77.551687046612301, + 13.0625794673506 + ], + [ + 77.551592751813203, + 13.062418450514601 + ], + [ + 77.551454985664606, + 13.062283931887499 + ], + [ + 77.551312751416603, + 13.062188833601599 + ], + [ + 77.551146050546393, + 13.062145305522201 + ], + [ + 77.550871588855799, + 13.062268313077899 + ], + [ + 77.550833642489096, + 13.062280282655401 + ], + [ + 77.550912166985796, + 13.0626658809206 + ], + [ + 77.550960652999393, + 13.062900301202101 + ], + [ + 77.551000397196603, + 13.063042225062899 + ], + [ + 77.551018052278906, + 13.0631052710985 + ], + [ + 77.551060524161201, + 13.0633149056211 + ], + [ + 77.550823448009595, + 13.0636924754118 + ], + [ + 77.551053367879405, + 13.0642119765192 + ], + [ + 77.550708475047898, + 13.064406083383 + ], + [ + 77.5509931920475, + 13.064567143133401 + ], + [ + 77.551239743229502, + 13.0650373460068 + ], + [ + 77.551505110914306, + 13.0658340528224 + ], + [ + 77.551792384269007, + 13.066705955554101 + ], + [ + 77.552936977140206, + 13.0665029134043 + ], + [ + 77.553230090619707, + 13.0666639731547 + ], + [ + 77.554170687195494, + 13.0686976387478 + ], + [ + 77.554463037358602, + 13.0685783705677 + ], + [ + 77.554895517640702, + 13.069373076444499 + ], + [ + 77.555038072834705, + 13.0696246335306 + ], + [ + 77.555174249946106, + 13.069872120224501 + ], + [ + 77.551547259197093, + 13.0715564012256 + ], + [ + 77.553338744535395, + 13.075639863169 + ], + [ + 77.553565641664605, + 13.0755629763872 + ], + [ + 77.553588534468901, + 13.075488832001801 + ], + [ + 77.557176520508094, + 13.073942714492601 + ], + [ + 77.557288202264104, + 13.074163361692699 + ], + [ + 77.557896916156906, + 13.0754132087798 + ], + [ + 77.558073057633294, + 13.0757911977351 + ], + [ + 77.558192574356596, + 13.0761262665809 + ], + [ + 77.5583499698553, + 13.076621839626901 + ], + [ + 77.558737511822699, + 13.0764955272439 + ], + [ + 77.558782213446193, + 13.076529144278499 + ], + [ + 77.559107720388297, + 13.077340461304599 + ], + [ + 77.559299428440198, + 13.0779371486903 + ], + [ + 77.5588189876798, + 13.0780875730402 + ], + [ + 77.558879763013294, + 13.078314765336099 + ], + [ + 77.558942243089604, + 13.0784906667946 + ], + [ + 77.559218701304303, + 13.0795635740131 + ], + [ + 77.559720790136794, + 13.081508463435 + ], + [ + 77.560499066912698, + 13.081277540456499 + ], + [ + 77.560723285541002, + 13.081227486683201 + ], + [ + 77.561669382748505, + 13.081212299648101 + ], + [ + 77.561313891458695, + 13.082008629806399 + ], + [ + 77.5603342969669, + 13.084022879696599 + ], + [ + 77.560393470890205, + 13.0840698465068 + ], + [ + 77.563059628664902, + 13.0861859414573 + ], + [ + 77.563088916919497, + 13.086147996551601 + ], + [ + 77.5631263829506, + 13.0860945467251 + ], + [ + 77.563301924253693, + 13.085848876095699 + ], + [ + 77.563367351290907, + 13.0857573111179 + ], + [ + 77.563368960239998, + 13.0857550600004 + ], + [ + 77.563370182158806, + 13.0857533493768 + ], + [ + 77.563380932363302, + 13.085738304046 + ], + [ + 77.563426050878206, + 13.085675160051601 + ], + [ + 77.563450440286303, + 13.0856410266613 + ], + [ + 77.563454678402607, + 13.0856350949716 + ], + [ + 77.563456854258604, + 13.085632051317599 + ], + [ + 77.563687550351503, + 13.085309189391999 + ], + [ + 77.563719589197802, + 13.085264351813599 + ], + [ + 77.563806617104404, + 13.0851425550676 + ], + [ + 77.563811345919206, + 13.085136038485 + ], + [ + 77.563877608408703, + 13.085044728943901 + ], + [ + 77.564186412625403, + 13.084700551360401 + ], + [ + 77.564284115549796, + 13.084569137922401 + ], + [ + 77.564358928674594, + 13.0845118693197 + ], + [ + 77.564405847298801, + 13.0844737196309 + ], + [ + 77.564604305077594, + 13.084363045057 + ], + [ + 77.564688108297005, + 13.0843172818964 + ], + [ + 77.564786620366803, + 13.0842641257021 + ], + [ + 77.564834597475297, + 13.084185383370301 + ], + [ + 77.564797901925004, + 13.0840683500377 + ], + [ + 77.564732680799096, + 13.083955481268699 + ], + [ + 77.564522514446097, + 13.083573604136101 + ], + [ + 77.564399903266093, + 13.083337999294001 + ], + [ + 77.564382590103307, + 13.083304730242 + ], + [ + 77.564359098120406, + 13.0832595889534 + ], + [ + 77.564347548187598, + 13.0832373949039 + ], + [ + 77.564295074680203, + 13.0831365630997 + ], + [ + 77.564275049773002, + 13.083096042808601 + ], + [ + 77.564116810440595, + 13.0827758279436 + ], + [ + 77.563748441532695, + 13.0821346511048 + ], + [ + 77.563498227312294, + 13.081667343729499 + ], + [ + 77.5632682619474, + 13.0812642055183 + ], + [ + 77.563090868639605, + 13.080931691425199 + ], + [ + 77.562920880948695, + 13.080610487934701 + ], + [ + 77.562842949328399, + 13.0804632299426 + ], + [ + 77.562811044445098, + 13.080403368941401 + ], + [ + 77.562759822035602, + 13.080307262758 + ], + [ + 77.562625610731502, + 13.080055449019399 + ], + [ + 77.562600883973005, + 13.080003746216599 + ], + [ + 77.562582341038606, + 13.079937300964399 + ], + [ + 77.562584369091894, + 13.079854841105 + ], + [ + 77.562603546670701, + 13.079811809140701 + ], + [ + 77.562609139340907, + 13.0797992598152 + ], + [ + 77.562728196091598, + 13.0795033265625 + ], + [ + 77.562803927803003, + 13.0793625400179 + ], + [ + 77.563239123805303, + 13.0788906837572 + ], + [ + 77.563756413636398, + 13.0783367013091 + ], + [ + 77.563932677805795, + 13.078170071227801 + ], + [ + 77.563998931614194, + 13.078059870933901 + ], + [ + 77.564004029812494, + 13.0779401134039 + ], + [ + 77.563982965257793, + 13.077796900229499 + ], + [ + 77.563975533573199, + 13.0777467197381 + ], + [ + 77.563927854359207, + 13.077424774308099 + ], + [ + 77.563916631948103, + 13.0773497875355 + ], + [ + 77.563914860812503, + 13.0773379473678 + ], + [ + 77.563914852212406, + 13.077337382798 + ], + [ + 77.563914321036094, + 13.077301683796399 + ], + [ + 77.563899991309796, + 13.0772307419042 + ], + [ + 77.563913177190997, + 13.077224897533 + ], + [ + 77.563912977711695, + 13.0772114824032 + ], + [ + 77.563922348649101, + 13.077170734155199 + ], + [ + 77.563941993249898, + 13.077120849384301 + ], + [ + 77.563982465272701, + 13.077079792232199 + ], + [ + 77.564024805174896, + 13.077052268247201 + ], + [ + 77.564634922679602, + 13.0768418024692 + ], + [ + 77.564968231484599, + 13.076721066226501 + ], + [ + 77.564997255678804, + 13.076710552622799 + ], + [ + 77.565018235807301, + 13.076702953058099 + ], + [ + 77.565042245882097, + 13.076694255510899 + ], + [ + 77.565082606676896, + 13.076679635114299 + ], + [ + 77.565455534721707, + 13.0765445454815 + ], + [ + 77.565573583656501, + 13.076485777558499 + ], + [ + 77.565647684976895, + 13.076446445856201 + ], + [ + 77.565880215896797, + 13.076299377405601 + ], + [ + 77.565734518634102, + 13.075826749699701 + ], + [ + 77.565905091039198, + 13.075720141946499 + ], + [ + 77.565619026901402, + 13.074302258829 + ], + [ + 77.565894430263896, + 13.0742738300948 + ], + [ + 77.565789599306498, + 13.073993096344701 + ], + [ + 77.565592374963103, + 13.0740161946912 + ], + [ + 77.565381957892498, + 13.0730460075841 + ], + [ + 77.563973885589704, + 13.0734059928146 + ], + [ + 77.5637758951991, + 13.073456609432601 + ], + [ + 77.563725816214799, + 13.0734694125346 + ], + [ + 77.563694495591207, + 13.073477419987601 + ], + [ + 77.563688737906105, + 13.0734704157989 + ], + [ + 77.563602982193899, + 13.073366100369499 + ], + [ + 77.563313320047897, + 13.0728172108669 + ], + [ + 77.563265234247098, + 13.0726533264335 + ], + [ + 77.563250947049099, + 13.0726046350286 + ], + [ + 77.563233203735294, + 13.072557267149699 + ], + [ + 77.563220443580093, + 13.0725232036847 + ], + [ + 77.5631697137716, + 13.0723850960673 + ], + [ + 77.563417576797804, + 13.072314024231799 + ], + [ + 77.563404847986206, + 13.0722635198369 + ], + [ + 77.563663050051204, + 13.072227477515399 + ], + [ + 77.563617811290797, + 13.0711904593089 + ], + [ + 77.563610053067706, + 13.071012613815499 + ], + [ + 77.563561227425694, + 13.0710200179987 + ], + [ + 77.563470455123095, + 13.071033782332799 + ], + [ + 77.563310954389095, + 13.0710579679884 + ], + [ + 77.563261566508103, + 13.0710654572019 + ], + [ + 77.563109417529105, + 13.0711036843577 + ], + [ + 77.563060309174404, + 13.071116022283199 + ], + [ + 77.562710773575304, + 13.071210022081599 + ], + [ + 77.562659800772295, + 13.0711570247124 + ], + [ + 77.562653442680798, + 13.0711504140226 + ], + [ + 77.562577433570596, + 13.071003827378 + ], + [ + 77.562525156342801, + 13.0707506655929 + ], + [ + 77.562475454341893, + 13.070431107201101 + ], + [ + 77.562428598397204, + 13.0701298488175 + ], + [ + 77.562407567191002, + 13.0699946303685 + ], + [ + 77.562356277212402, + 13.0695838672235 + ], + [ + 77.562320639286, + 13.0693801034658 + ], + [ + 77.562284548960804, + 13.069173751277299 + ], + [ + 77.562277055680795, + 13.0691309054214 + ], + [ + 77.562235569507493, + 13.069115159668399 + ], + [ + 77.562070457692897, + 13.069078400891501 + ], + [ + 77.561767053149197, + 13.069036236854201 + ], + [ + 77.561051030230402, + 13.0689357147736 + ], + [ + 77.560880476141705, + 13.0689117703841 + ], + [ + 77.560733427965104, + 13.068895159240901 + ], + [ + 77.560579765024997, + 13.068851510057501 + ], + [ + 77.560511479316204, + 13.068820566203801 + ], + [ + 77.560467574182198, + 13.068752113295799 + ], + [ + 77.560429363693203, + 13.0686214916692 + ], + [ + 77.560403881708297, + 13.068507004171201 + ], + [ + 77.560370174112094, + 13.0683555603195 + ], + [ + 77.560368119608199, + 13.0681318807754 + ], + [ + 77.560353495018404, + 13.06792975297 + ], + [ + 77.5601682422582, + 13.066898192636099 + ], + [ + 77.560161209567198, + 13.0668590326706 + ], + [ + 77.560113150922803, + 13.0665670987879 + ], + [ + 77.560105025186104, + 13.066517741552101 + ], + [ + 77.559990380338704, + 13.0658206271263 + ], + [ + 77.559980384292999, + 13.065757990506301 + ], + [ + 77.5599592652067, + 13.065625661631 + ], + [ + 77.559958309570703, + 13.065619675796 + ], + [ + 77.559955273195101, + 13.065620141346001 + ], + [ + 77.559859149387094, + 13.065628491245 + ], + [ + 77.559799187787306, + 13.065633700184399 + ], + [ + 77.5597008486411, + 13.065642241824699 + ], + [ + 77.558602189013698, + 13.0659782175095 + ], + [ + 77.557657000457198, + 13.0662461597112 + ], + [ + 77.557525150245198, + 13.0659329520768 + ], + [ + 77.556587535121196, + 13.066263992341399 + ], + [ + 77.556451274195496, + 13.0658812578323 + ], + [ + 77.556366166613898, + 13.0656204887625 + ], + [ + 77.556330196026096, + 13.0655012716811 + ], + [ + 77.556280585559705, + 13.065331890098699 + ], + [ + 77.556176547803901, + 13.065000222910401 + ], + [ + 77.5559422194207, + 13.064438839625099 + ], + [ + 77.555629783059601, + 13.0639327758016 + ], + [ + 77.555589347790601, + 13.0637945334304 + ], + [ + 77.555539307309502, + 13.063670727476101 + ], + [ + 77.555393544331906, + 13.063430429018601 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "241", + "group": "Nagadevanahalli", + "Corporatio": "West", + "ac_no": "153", + "ac": "Yeshwanthapura", + "corporat_1": "5", + "ward_id": "110", + "ward_name": "110 - Nagadevanahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಯಶವಂತಪುರ", + "ward_name_": "ನಾಗದೇವನಹಳ್ಳಿ", + "dig_ward_n": "Nagadevanahalli", + "Assembly": "153 - Yeshwanthapura", + "Slno": "110" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.493259285286896, + 12.931844280998201 + ], + [ + 77.493077064965306, + 12.931676198460099 + ], + [ + 77.492854002157699, + 12.9318725565654 + ], + [ + 77.492714195186693, + 12.931924395105201 + ], + [ + 77.492104699628101, + 12.931990371428499 + ], + [ + 77.491444936394402, + 12.9320626312113 + ], + [ + 77.4914575033131, + 12.9325605953662 + ], + [ + 77.491482637150597, + 12.933019287900001 + ], + [ + 77.491452790718597, + 12.933286334923199 + ], + [ + 77.491419802556905, + 12.933358594705901 + ], + [ + 77.4913576156993, + 12.9334537230965 + ], + [ + 77.491676302551696, + 12.9342009674825 + ], + [ + 77.492057106588106, + 12.9347211395268 + ], + [ + 77.491978245008397, + 12.9348187135766 + ], + [ + 77.491440223799898, + 12.9351226759235 + ], + [ + 77.491096204399497, + 12.9353253174881 + ], + [ + 77.490935976185597, + 12.9354101441896 + ], + [ + 77.490761610188201, + 12.935465124459 + ], + [ + 77.490668929162496, + 12.9355036106477 + ], + [ + 77.490760039323305, + 12.9357557344548 + ], + [ + 77.4903791045991, + 12.9358334922645 + ], + [ + 77.489817059333404, + 12.9359186716473 + ], + [ + 77.489235514994107, + 12.9360502716127 + ], + [ + 77.488858507432099, + 12.936106822747 + ], + [ + 77.488648011543205, + 12.936139810908699 + ], + [ + 77.488663720191695, + 12.936191649448499 + ], + [ + 77.488724983920505, + 12.936347165067801 + ], + [ + 77.488817664946197, + 12.9366063577668 + ], + [ + 77.489020306510795, + 12.937055625111601 + ], + [ + 77.489152259157507, + 12.937383935863499 + ], + [ + 77.489500991152497, + 12.9382887540125 + ], + [ + 77.489676928014703, + 12.938896678706399 + ], + [ + 77.489105133212206, + 12.939047481731199 + ], + [ + 77.488096637983602, + 12.9392909657817 + ], + [ + 77.487406322215605, + 12.939451217675501 + ], + [ + 77.487369720277201, + 12.9394421615225 + ], + [ + 77.486922809229696, + 12.9395430895886 + ], + [ + 77.486439375575301, + 12.939674256803199 + ], + [ + 77.485381398104096, + 12.939949158150499 + ], + [ + 77.485244732862895, + 12.939979004582501 + ], + [ + 77.484672938060399, + 12.9401298076074 + ], + [ + 77.484515851576205, + 12.9402680437135 + ], + [ + 77.484302213957605, + 12.940417275873401 + ], + [ + 77.483837237964394, + 12.9405696497631 + ], + [ + 77.483424100511002, + 12.9407738621926 + ], + [ + 77.483262301432205, + 12.940915240028399 + ], + [ + 77.483167171202197, + 12.941087136561 + ], + [ + 77.483171786587505, + 12.941553246025901 + ], + [ + 77.483225023603097, + 12.9420066922251 + ], + [ + 77.484469438798101, + 12.942003808610799 + ], + [ + 77.484774892919006, + 12.9420845652401 + ], + [ + 77.484880292219501, + 12.9421939240098 + ], + [ + 77.484983969299094, + 12.9426997424889 + ], + [ + 77.4850784681189, + 12.943205219922399 + ], + [ + 77.485230375069406, + 12.943777498259401 + ], + [ + 77.485363252974494, + 12.944003485293401 + ], + [ + 77.485430094914307, + 12.9440663949014 + ], + [ + 77.485477387169396, + 12.944162120562799 + ], + [ + 77.485496071237606, + 12.944195205818501 + ], + [ + 77.485717976926196, + 12.944583131249599 + ], + [ + 77.485775685179505, + 12.944685315649201 + ], + [ + 77.486181753741207, + 12.9454047717468 + ], + [ + 77.4862894004997, + 12.945583523058099 + ], + [ + 77.486318418982506, + 12.9456341180137 + ], + [ + 77.486634472626605, + 12.946008183535699 + ], + [ + 77.486962832270095, + 12.946501733228599 + ], + [ + 77.486995567042896, + 12.946550936435701 + ], + [ + 77.487331326109697, + 12.9470958132998 + ], + [ + 77.487571679769502, + 12.9474808833099 + ], + [ + 77.487941495470096, + 12.9480426238202 + ], + [ + 77.488295797603101, + 12.9485816394841 + ], + [ + 77.488419056290994, + 12.9487691579511 + ], + [ + 77.488611536602093, + 12.949061983357501 + ], + [ + 77.489007450182001, + 12.9486945413861 + ], + [ + 77.489223106892993, + 12.948495969221799 + ], + [ + 77.489457570087794, + 12.9482780178145 + ], + [ + 77.489542572754203, + 12.948199278527699 + ], + [ + 77.489685868634595, + 12.948077065837801 + ], + [ + 77.490443759470395, + 12.9474275574659 + ], + [ + 77.490458833272498, + 12.947414639679 + ], + [ + 77.490598050177994, + 12.9473455463487 + ], + [ + 77.490649095221002, + 12.947450394973201 + ], + [ + 77.4907173593935, + 12.9475906100835 + ], + [ + 77.490804331956795, + 12.947594296179 + ], + [ + 77.4911850471549, + 12.9476098558006 + ], + [ + 77.491591114652806, + 12.9476274311738 + ], + [ + 77.491685571022302, + 12.947631045404201 + ], + [ + 77.491956353748506, + 12.947649913897401 + ], + [ + 77.4923423621902, + 12.947676714928701 + ], + [ + 77.492408234128803, + 12.947681404626101 + ], + [ + 77.492650022058896, + 12.9476986180527 + ], + [ + 77.492666230925494, + 12.947707497989301 + ], + [ + 77.493152387536696, + 12.9476752084634 + ], + [ + 77.493381395800895, + 12.947659997609801 + ], + [ + 77.493677002649605, + 12.947627804859501 + ], + [ + 77.493899576830998, + 12.947604216453801 + ], + [ + 77.494003696001897, + 12.9475953142294 + ], + [ + 77.494651359158397, + 12.9475337747018 + ], + [ + 77.494862953616405, + 12.947510469517299 + ], + [ + 77.495482381793707, + 12.947442243211301 + ], + [ + 77.496726154406403, + 12.947288027060299 + ], + [ + 77.496768865508599, + 12.947440255629401 + ], + [ + 77.498561411450794, + 12.9473319204742 + ], + [ + 77.498627375391493, + 12.9473115817517 + ], + [ + 77.498707199003107, + 12.9472869693777 + ], + [ + 77.499315274263594, + 12.947099478565899 + ], + [ + 77.500740639659398, + 12.9466560160801 + ], + [ + 77.500739140395595, + 12.946647745415399 + ], + [ + 77.500687082801903, + 12.946360506091599 + ], + [ + 77.500631277201094, + 12.9460525846421 + ], + [ + 77.500585890670706, + 12.945802154690901 + ], + [ + 77.500551223342796, + 12.9456108712914 + ], + [ + 77.500460914894703, + 12.945112570023801 + ], + [ + 77.500359546470406, + 12.944583679393601 + ], + [ + 77.500308062755195, + 12.944315059869201 + ], + [ + 77.500141456652997, + 12.944377406578299 + ], + [ + 77.500091247481706, + 12.944396195785201 + ], + [ + 77.500085372486595, + 12.944398058233199 + ], + [ + 77.500072882392999, + 12.9444020188133 + ], + [ + 77.499930448966197, + 12.944455105781699 + ], + [ + 77.499823053245194, + 12.943966039880699 + ], + [ + 77.499770258199902, + 12.943980463731 + ], + [ + 77.499538919913604, + 12.9440436676367 + ], + [ + 77.499538876740502, + 12.9440436797962 + ], + [ + 77.499526551959207, + 12.943988085703401 + ], + [ + 77.499483616943493, + 12.9437944228346 + ], + [ + 77.499482950970503, + 12.943794609920801 + ], + [ + 77.499417019639594, + 12.943813131448801 + ], + [ + 77.4994163989426, + 12.943808619919199 + ], + [ + 77.498763930603403, + 12.9428296274672 + ], + [ + 77.497758290509907, + 12.941320698540901 + ], + [ + 77.497581113474396, + 12.9409305040541 + ], + [ + 77.497578167686896, + 12.9409237560448 + ], + [ + 77.4975134953619, + 12.9407888509978 + ], + [ + 77.497460550008697, + 12.940675291646 + ], + [ + 77.497458789288004, + 12.9406719203976 + ], + [ + 77.497431170933893, + 12.940615716376101 + ], + [ + 77.497279097042494, + 12.940260291548601 + ], + [ + 77.497189516522397, + 12.940052215746 + ], + [ + 77.497188965568597, + 12.939996881768099 + ], + [ + 77.4972010903723, + 12.939942555742199 + ], + [ + 77.497259402858106, + 12.939901339752099 + ], + [ + 77.497446948469204, + 12.9397719240774 + ], + [ + 77.497715687545096, + 12.939585955697 + ], + [ + 77.4979798410466, + 12.9394031607582 + ], + [ + 77.498237143676207, + 12.939225642636901 + ], + [ + 77.499344099328098, + 12.9384606131384 + ], + [ + 77.499404081774699, + 12.938413733920701 + ], + [ + 77.499484656274703, + 12.938237909003099 + ], + [ + 77.499533804242702, + 12.9381437000569 + ], + [ + 77.499681592736394, + 12.9380278544654 + ], + [ + 77.499684042244496, + 12.9380259345422 + ], + [ + 77.499646410916995, + 12.9380048372727 + ], + [ + 77.499258026059906, + 12.9362354477261 + ], + [ + 77.499154432026003, + 12.9357641085879 + ], + [ + 77.499142846034104, + 12.935711393956201 + ], + [ + 77.499190478664303, + 12.935696255637399 + ], + [ + 77.499182149602305, + 12.9356692305488 + ], + [ + 77.499707169299299, + 12.935493663420999 + ], + [ + 77.500078951515803, + 12.935365868660799 + ], + [ + 77.499930720296007, + 12.934529296571201 + ], + [ + 77.499843077591393, + 12.934111140073099 + ], + [ + 77.499760739851297, + 12.9337053557198 + ], + [ + 77.499548505645095, + 12.932453787748599 + ], + [ + 77.499439326391496, + 12.9320699261438 + ], + [ + 77.499383847774297, + 12.9318748686822 + ], + [ + 77.499355697639899, + 12.931880785266401 + ], + [ + 77.499355212059498, + 12.931878087559101 + ], + [ + 77.499351431985502, + 12.9318571093381 + ], + [ + 77.499317509223104, + 12.9316880286498 + ], + [ + 77.499246869291397, + 12.931335904252199 + ], + [ + 77.499234519486805, + 12.9312743444299 + ], + [ + 77.499219961972798, + 12.9311999453769 + ], + [ + 77.499205404471496, + 12.9311255463211 + ], + [ + 77.499179956986694, + 12.9309981711265 + ], + [ + 77.499159712769995, + 12.930873004818899 + ], + [ + 77.499144049025602, + 12.9308031338365 + ], + [ + 77.498876142340904, + 12.930859243347999 + ], + [ + 77.498833247321897, + 12.9308682266263 + ], + [ + 77.498756195454504, + 12.930882732189099 + ], + [ + 77.498624661681802, + 12.9309074938586 + ], + [ + 77.498542389348501, + 12.930928610565299 + ], + [ + 77.496762313884801, + 12.9314641317065 + ], + [ + 77.496454424375798, + 12.931541104083699 + ], + [ + 77.496283200107996, + 12.9318505644576 + ], + [ + 77.495334397743406, + 12.9323815167742 + ], + [ + 77.494451571702101, + 12.9328150754706 + ], + [ + 77.494242646678103, + 12.9328857643885 + ], + [ + 77.493757249441998, + 12.932139603588499 + ], + [ + 77.493513765390702, + 12.9316765911761 + ], + [ + 77.493259285286896, + 12.931844280998201 + ], + [ + 77.493259285286896, + 12.931844280998201 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "242", + "group": "Kempapura", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "15", + "ward_name": "15 - Kempapura", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ಕೆಂಪಾಪುರ", + "dig_ward_n": "Kempapura", + "Assembly": "152 - Byatarayanapura", + "Slno": "15" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.613553458988093, + 13.042181677014399 + ], + [ + 77.613131246577097, + 13.042284187576399 + ], + [ + 77.612000993440304, + 13.0425270995395 + ], + [ + 77.611967965207398, + 13.042343361234099 + ], + [ + 77.611834701339205, + 13.0416084194782 + ], + [ + 77.611752024248005, + 13.041193680911199 + ], + [ + 77.611730980722896, + 13.0411091976977 + ], + [ + 77.611616793893106, + 13.040655252380599 + ], + [ + 77.611497238400403, + 13.040348166801399 + ], + [ + 77.611488363758795, + 13.040325670855401 + ], + [ + 77.611355280844705, + 13.0399916190434 + ], + [ + 77.611293127009404, + 13.039886094297399 + ], + [ + 77.611231941072901, + 13.0398178258332 + ], + [ + 77.611141079316596, + 13.039720495582699 + ], + [ + 77.610869743280901, + 13.0393279864631 + ], + [ + 77.610762729997504, + 13.039173225897599 + ], + [ + 77.610674470665501, + 13.0389945613252 + ], + [ + 77.610559118821598, + 13.038758576889601 + ], + [ + 77.610420830395896, + 13.0384765224657 + ], + [ + 77.610334904069504, + 13.0383012228846 + ], + [ + 77.610314875552604, + 13.0382585123781 + ], + [ + 77.610279191973007, + 13.038205796252701 + ], + [ + 77.610263687935998, + 13.0382454989296 + ], + [ + 77.610228718073103, + 13.0383350426695 + ], + [ + 77.610111065180206, + 13.0386409429127 + ], + [ + 77.610110281213807, + 13.038642979900899 + ], + [ + 77.610107214471697, + 13.038650953699699 + ], + [ + 77.610036430848695, + 13.038834992296801 + ], + [ + 77.609914685955403, + 13.039032713912 + ], + [ + 77.609785930678399, + 13.0392105902728 + ], + [ + 77.609764820520894, + 13.0392397532444 + ], + [ + 77.609664330316093, + 13.039377408862499 + ], + [ + 77.609443735552404, + 13.039649529957 + ], + [ + 77.609286848326207, + 13.039791141897799 + ], + [ + 77.609145942323707, + 13.039919041351199 + ], + [ + 77.608836394827193, + 13.0401660854574 + ], + [ + 77.608613861093303, + 13.0403083588073 + ], + [ + 77.608233775784896, + 13.0405290106681 + ], + [ + 77.607791755065605, + 13.0407197956707 + ], + [ + 77.607694157835894, + 13.040749011000999 + ], + [ + 77.607558704922695, + 13.0407893087453 + ], + [ + 77.607555421921205, + 13.040790285898799 + ], + [ + 77.607368061789302, + 13.040846026548699 + ], + [ + 77.606762961861506, + 13.040930914007999 + ], + [ + 77.606726297066501, + 13.040936057894999 + ], + [ + 77.606274814514904, + 13.0409482126489 + ], + [ + 77.605757442948402, + 13.040962139434299 + ], + [ + 77.605757181332507, + 13.0409621465855 + ], + [ + 77.605740856975899, + 13.040962585587 + ], + [ + 77.605697497633798, + 13.040963753012299 + ], + [ + 77.605251822708993, + 13.040975749047901 + ], + [ + 77.605251735199701, + 13.040975751735701 + ], + [ + 77.604698192081599, + 13.040990504896801 + ], + [ + 77.604570592477103, + 13.0409939058005 + ], + [ + 77.604435107458301, + 13.040997516088799 + ], + [ + 77.604434842175493, + 13.0409975250823 + ], + [ + 77.603798678754998, + 13.041021161788899 + ], + [ + 77.603795654810398, + 13.0410212735208 + ], + [ + 77.603392859351999, + 13.041036239073801 + ], + [ + 77.6030924796477, + 13.041047649736701 + ], + [ + 77.602550101880993, + 13.041068252257899 + ], + [ + 77.602085161137893, + 13.041085912286 + ], + [ + 77.601694612437996, + 13.0411007466702 + ], + [ + 77.601357202310794, + 13.041107526231499 + ], + [ + 77.601344597338894, + 13.041107746886899 + ], + [ + 77.601053341483905, + 13.041112837987299 + ], + [ + 77.601053179325703, + 13.041112839617099 + ], + [ + 77.600536105026194, + 13.0411214246451 + ], + [ + 77.600237403966304, + 13.0411265462778 + ], + [ + 77.600225016345803, + 13.041126757467699 + ], + [ + 77.600221027175294, + 13.041126825553899 + ], + [ + 77.599740344387698, + 13.041135065948399 + ], + [ + 77.599495727571494, + 13.0411488159281 + ], + [ + 77.599451039656302, + 13.0411512577474 + ], + [ + 77.599318449365896, + 13.0411585015074 + ], + [ + 77.5991723117004, + 13.041164846834301 + ], + [ + 77.598438861728695, + 13.041196689414299 + ], + [ + 77.598438256501794, + 13.0411967054287 + ], + [ + 77.598221196548494, + 13.0412013935088 + ], + [ + 77.598145215032602, + 13.0412030326381 + ], + [ + 77.598145063939597, + 13.0412030350584 + ], + [ + 77.598050313649097, + 13.0412049673802 + ], + [ + 77.598046475695199, + 13.041205045659501 + ], + [ + 77.597495729682805, + 13.0412163269411 + ], + [ + 77.597378844371093, + 13.041218629341699 + ], + [ + 77.597154054299594, + 13.041224126793001 + ], + [ + 77.597048759998202, + 13.041226702102801 + ], + [ + 77.596880031524293, + 13.0412308290698 + ], + [ + 77.596843415856895, + 13.0412317240829 + ], + [ + 77.596819074509995, + 13.041232319761001 + ], + [ + 77.596813474420202, + 13.0412324563578 + ], + [ + 77.596753082109103, + 13.0412339332364 + ], + [ + 77.596595808938403, + 13.041237779750899 + ], + [ + 77.596351108772893, + 13.041243622625901 + ], + [ + 77.596240974004701, + 13.0412469933061 + ], + [ + 77.596091978255799, + 13.0412515533032 + ], + [ + 77.595417858504604, + 13.041272181456799 + ], + [ + 77.595055085457503, + 13.041276948627001 + ], + [ + 77.595027397589007, + 13.041272709108 + ], + [ + 77.594754644088297, + 13.041239306690301 + ], + [ + 77.594219347652, + 13.0411731068902 + ], + [ + 77.5942177828328, + 13.041172912076499 + ], + [ + 77.594011338291693, + 13.0411473815709 + ], + [ + 77.593555205792001, + 13.0410909705388 + ], + [ + 77.5931942532779, + 13.041049415941099 + ], + [ + 77.593138352398299, + 13.041050576839501 + ], + [ + 77.592689932852295, + 13.041059885678701 + ], + [ + 77.592668561548905, + 13.041060329246699 + ], + [ + 77.592510902996196, + 13.041084266740301 + ], + [ + 77.592246511458299, + 13.041124409336399 + ], + [ + 77.591891729848697, + 13.041200845295201 + ], + [ + 77.591814932956495, + 13.041217391044301 + ], + [ + 77.591586847104594, + 13.041266530782901 + ], + [ + 77.591302066962797, + 13.0413270268039 + ], + [ + 77.590879032867207, + 13.0414168914016 + ], + [ + 77.590571458771606, + 13.041482227802099 + ], + [ + 77.590463301384602, + 13.041506359736999 + ], + [ + 77.590020439670297, + 13.0416051893252 + ], + [ + 77.590024059372794, + 13.041620963186199 + ], + [ + 77.590115633059, + 13.041953187792201 + ], + [ + 77.590138961360495, + 13.0420365219011 + ], + [ + 77.590264029337902, + 13.0424327807702 + ], + [ + 77.590343647672398, + 13.0426323481525 + ], + [ + 77.590466862466997, + 13.042941190180899 + ], + [ + 77.590572292152402, + 13.0431106577342 + ], + [ + 77.590483339952897, + 13.043085574537599 + ], + [ + 77.590539165027295, + 13.0434136394744 + ], + [ + 77.590624240109605, + 13.0435641127832 + ], + [ + 77.590691323981702, + 13.0438672204945 + ], + [ + 77.590749032148196, + 13.0444312882905 + ], + [ + 77.5908774583867, + 13.045426037026401 + ], + [ + 77.591092259354397, + 13.045866567897299 + ], + [ + 77.592022092470501, + 13.047662988408 + ], + [ + 77.592100456721198, + 13.0479574799472 + ], + [ + 77.592161155396894, + 13.0481855854041 + ], + [ + 77.592146788605405, + 13.048188771228499 + ], + [ + 77.592756657055702, + 13.0496110581445 + ], + [ + 77.5927868503897, + 13.049600620781799 + ], + [ + 77.592747599340598, + 13.0499829967656 + ], + [ + 77.593403595461993, + 13.0522428297178 + ], + [ + 77.593460264979896, + 13.053809297179299 + ], + [ + 77.593479652376104, + 13.0543451957495 + ], + [ + 77.595528609374099, + 13.053737625077501 + ], + [ + 77.597060207428399, + 13.0537091963434 + ], + [ + 77.597993913666897, + 13.0536736604256 + ], + [ + 77.597986059972698, + 13.053520922833201 + ], + [ + 77.598926783695802, + 13.0533997592471 + ], + [ + 77.599093802509202, + 13.0541264687647 + ], + [ + 77.600009932283697, + 13.0539524136697 + ], + [ + 77.600529431389106, + 13.053841603192801 + ], + [ + 77.601803074768995, + 13.053612153575401 + ], + [ + 77.601917481130101, + 13.053591542588199 + ], + [ + 77.602009921708898, + 13.054065211408499 + ], + [ + 77.602281075947403, + 13.0539957637094 + ], + [ + 77.602601630739898, + 13.0538737180078 + ], + [ + 77.602643621779393, + 13.0538577302388 + ], + [ + 77.602801960055302, + 13.053798543091499 + ], + [ + 77.602935042557306, + 13.053747515068601 + ], + [ + 77.603237357314697, + 13.053632672814301 + ], + [ + 77.603479602569095, + 13.0535408192217 + ], + [ + 77.603512712139803, + 13.0535282652314 + ], + [ + 77.603789218430705, + 13.053423845799999 + ], + [ + 77.604100134829196, + 13.053305528216599 + ], + [ + 77.604322709665993, + 13.053220849181301 + ], + [ + 77.604354276157096, + 13.053210367735 + ], + [ + 77.604967824269195, + 13.053007692902501 + ], + [ + 77.605388636046101, + 13.052879232619199 + ], + [ + 77.605834913914805, + 13.0527825972885 + ], + [ + 77.606247130560504, + 13.052672435943499 + ], + [ + 77.606783722918294, + 13.0523330679291 + ], + [ + 77.607009375995901, + 13.052015021465399 + ], + [ + 77.607096438994404, + 13.052878544266299 + ], + [ + 77.607217261114698, + 13.0538735499629 + ], + [ + 77.607029809148599, + 13.053973938930501 + ], + [ + 77.607131086514102, + 13.054412807514501 + ], + [ + 77.607985725335595, + 13.0541836008451 + ], + [ + 77.609208893001906, + 13.053882966705199 + ], + [ + 77.610267227872995, + 13.053669109278299 + ], + [ + 77.611936529886606, + 13.0533110481247 + ], + [ + 77.612490347107297, + 13.053198811724901 + ], + [ + 77.6125774101058, + 13.0535381797393 + ], + [ + 77.612698232226094, + 13.0537531720415 + ], + [ + 77.612851036672296, + 13.053826020672901 + ], + [ + 77.613095346106803, + 13.053764721214799 + ], + [ + 77.613458700865607, + 13.053669662634899 + ], + [ + 77.613792311055605, + 13.053579131708201 + ], + [ + 77.6145709750907, + 13.053433348781899 + ], + [ + 77.615331443730199, + 13.0532716603563 + ], + [ + 77.615754321151201, + 13.0532023653167 + ], + [ + 77.615882250455101, + 13.0539326284261 + ], + [ + 77.615887580842696, + 13.0540392361793 + ], + [ + 77.615875813868399, + 13.0542475671998 + ], + [ + 77.615887580842696, + 13.0544407920497 + ], + [ + 77.615924005158405, + 13.0544940959263 + ], + [ + 77.616258931183097, + 13.0543270771129 + ], + [ + 77.616631169921305, + 13.0542613356651 + ], + [ + 77.616958100364499, + 13.0542560052775 + ], + [ + 77.617357879438998, + 13.054232906930901 + ], + [ + 77.618020624304705, + 13.054181379850201 + ], + [ + 77.618125455262003, + 13.0541742726667 + ], + [ + 77.618479037643496, + 13.0541707190749 + ], + [ + 77.618756595744301, + 13.0543158877609 + ], + [ + 77.619112934819896, + 13.0548142386683 + ], + [ + 77.619424488048907, + 13.055226992413701 + ], + [ + 77.6196030367567, + 13.0555120180874 + ], + [ + 77.619854722472098, + 13.0557963015164 + ], + [ + 77.619865323334594, + 13.0557950792779 + ], + [ + 77.620263829269504, + 13.05574913037 + ], + [ + 77.620950397138103, + 13.0556561208509 + ], + [ + 77.621315810176199, + 13.055640921703001 + ], + [ + 77.622019587853501, + 13.055585962925599 + ], + [ + 77.622534444733503, + 13.055568024991301 + ], + [ + 77.623021822224899, + 13.0555851996093 + ], + [ + 77.623424853259195, + 13.055581001369299 + ], + [ + 77.6234508060152, + 13.0555061963667 + ], + [ + 77.624032453076097, + 13.055372616005 + ], + [ + 77.624726307640898, + 13.0552023964583 + ], + [ + 77.625037740712798, + 13.0551840768658 + ], + [ + 77.625283528578507, + 13.0551459110482 + ], + [ + 77.625517103382407, + 13.055255828603 + ], + [ + 77.625691702049906, + 13.055808793517899 + ], + [ + 77.625874046359698, + 13.056452316457399 + ], + [ + 77.625965901002004, + 13.0568386081806 + ], + [ + 77.626072231611303, + 13.057210411129599 + ], + [ + 77.626234718085698, + 13.057576859156001 + ], + [ + 77.626581703884298, + 13.057539525211199 + ], + [ + 77.627626366760694, + 13.0572932207793 + ], + [ + 77.627640163782502, + 13.0572908220129 + ], + [ + 77.627030574543895, + 13.0558472364943 + ], + [ + 77.627013402078603, + 13.0558065687863 + ], + [ + 77.626618850877506, + 13.055052184788201 + ], + [ + 77.626594457247805, + 13.0549969931068 + ], + [ + 77.626473730735597, + 13.054814807583799 + ], + [ + 77.626308488718095, + 13.0545909313021 + ], + [ + 77.6259878424368, + 13.0541187533869 + ], + [ + 77.625761201981902, + 13.0537589689946 + ], + [ + 77.625524888128993, + 13.0532845644929 + ], + [ + 77.625357869315593, + 13.0530020539469 + ], + [ + 77.625046900509105, + 13.052337670186001 + ], + [ + 77.626411328489894, + 13.0520063908889 + ], + [ + 77.626075850952802, + 13.0508713394722 + ], + [ + 77.626235384070498, + 13.0508610347014 + ], + [ + 77.627393334977796, + 13.050764093524601 + ], + [ + 77.628438315064898, + 13.050681655358501 + ], + [ + 77.628248716223297, + 13.050175171691301 + ], + [ + 77.628122563715294, + 13.049814482126299 + ], + [ + 77.628081697409897, + 13.0497043207813 + ], + [ + 77.627355391439195, + 13.049897476513999 + ], + [ + 77.627038078100597, + 13.0489398094505 + ], + [ + 77.627007624296397, + 13.048837244388601 + ], + [ + 77.626944548042403, + 13.048825695215401 + ], + [ + 77.626840658259297, + 13.048253415725201 + ], + [ + 77.626815891942499, + 13.0481492557041 + ], + [ + 77.627223504996607, + 13.048094543708 + ], + [ + 77.627147102773506, + 13.0478635602427 + ], + [ + 77.627074254142101, + 13.0478617834469 + ], + [ + 77.627067146958595, + 13.047358950210899 + ], + [ + 77.626717118168898, + 13.047390932536899 + ], + [ + 77.626586523671307, + 13.046823246251099 + ], + [ + 77.626726890546294, + 13.0467166384979 + ], + [ + 77.626831721503606, + 13.0463950384424 + ], + [ + 77.626789078402396, + 13.045993482572101 + ], + [ + 77.627052044193604, + 13.0457820438615 + ], + [ + 77.627243504948396, + 13.0455791145147 + ], + [ + 77.627451484210198, + 13.045455169575099 + ], + [ + 77.627448780737296, + 13.045451337667201 + ], + [ + 77.627300425589993, + 13.0453094289698 + ], + [ + 77.627202455234297, + 13.045194108998199 + ], + [ + 77.627080025235401, + 13.0450530652213 + ], + [ + 77.626312269019706, + 13.044248787445801 + ], + [ + 77.626272892238802, + 13.044207537226701 + ], + [ + 77.626197488861607, + 13.044102151908399 + ], + [ + 77.625943182104095, + 13.0437433698145 + ], + [ + 77.625745234139899, + 13.043431442664 + ], + [ + 77.625621657924796, + 13.0432362048849 + ], + [ + 77.625601745641603, + 13.0432047875707 + ], + [ + 77.625440783408706, + 13.042904907536 + ], + [ + 77.625028969747902, + 13.0421366692671 + ], + [ + 77.624862179228998, + 13.0418300721413 + ], + [ + 77.624804091152896, + 13.041673693667301 + ], + [ + 77.624727028386403, + 13.041465561478301 + ], + [ + 77.624700810009202, + 13.0413822618673 + ], + [ + 77.624405884598801, + 13.0404479636557 + ], + [ + 77.624331956134199, + 13.040209309289301 + ], + [ + 77.624364445113997, + 13.040177360458699 + ], + [ + 77.624360966294603, + 13.0401751372052 + ], + [ + 77.624338232579106, + 13.0401351144214 + ], + [ + 77.624326158749795, + 13.040113857616801 + ], + [ + 77.624213180358893, + 13.0399149562449 + ], + [ + 77.624059942793195, + 13.039645176554799 + ], + [ + 77.623944396130298, + 13.0394464681518 + ], + [ + 77.623777799788499, + 13.0391579359768 + ], + [ + 77.623639074279794, + 13.0388363724374 + ], + [ + 77.623617769665998, + 13.0386728449743 + ], + [ + 77.623575306635999, + 13.0384688784199 + ], + [ + 77.623569921776095, + 13.0384497354946 + ], + [ + 77.623534002895795, + 13.038320234078 + ], + [ + 77.623352171848893, + 13.0383344988504 + ], + [ + 77.623208214546196, + 13.038335957767099 + ], + [ + 77.623204759570697, + 13.0383359927801 + ], + [ + 77.622973169065503, + 13.0383281762441 + ], + [ + 77.622908652373098, + 13.0383265714642 + ], + [ + 77.622591287044301, + 13.0383218822492 + ], + [ + 77.622503761878505, + 13.038322769012799 + ], + [ + 77.622504610511598, + 13.038348734432301 + ], + [ + 77.622507989480198, + 13.038396128459601 + ], + [ + 77.622519354085, + 13.0384908716472 + ], + [ + 77.622513833803097, + 13.0385135128922 + ], + [ + 77.622389835331902, + 13.038550905666201 + ], + [ + 77.6222562427361, + 13.0385522590693 + ], + [ + 77.622105844877595, + 13.0385436192458 + ], + [ + 77.621952204358394, + 13.038555338971699 + ], + [ + 77.621838968040706, + 13.03857568349 + ], + [ + 77.621858726963495, + 13.039057660194 + ], + [ + 77.621863772081596, + 13.039180718990799 + ], + [ + 77.621818833401903, + 13.039178915660701 + ], + [ + 77.621629575071907, + 13.039198900914601 + ], + [ + 77.621495246774998, + 13.039239785769 + ], + [ + 77.621469465194096, + 13.039252468819299 + ], + [ + 77.621391961486793, + 13.0387834788269 + ], + [ + 77.620837557859304, + 13.0389099244797 + ], + [ + 77.620790350633499, + 13.0389115317316 + ], + [ + 77.620776004413401, + 13.0390257329751 + ], + [ + 77.620762993201097, + 13.0391026548848 + ], + [ + 77.620340522592201, + 13.039125000414501 + ], + [ + 77.620052701480503, + 13.039136948173301 + ], + [ + 77.620246136285999, + 13.040005655368899 + ], + [ + 77.619970379550196, + 13.040178966371901 + ], + [ + 77.619756153565504, + 13.040343749452999 + ], + [ + 77.619642673175306, + 13.0403957160621 + ], + [ + 77.619384208600707, + 13.0405157768544 + ], + [ + 77.619369307253805, + 13.0405227014712 + ], + [ + 77.619062459289907, + 13.040642121495001 + ], + [ + 77.618480066074397, + 13.0409551756455 + ], + [ + 77.618418557506303, + 13.0409489780816 + ], + [ + 77.618235625742301, + 13.040930546242601 + ], + [ + 77.618077667998094, + 13.040915205170901 + ], + [ + 77.617648900206007, + 13.0408867934571 + ], + [ + 77.617346597245202, + 13.040890980171 + ], + [ + 77.6168283434817, + 13.041005760102699 + ], + [ + 77.615943523061304, + 13.0412021642898 + ], + [ + 77.615612243192402, + 13.041353447204701 + ], + [ + 77.615380375235901, + 13.0414267973427 + ], + [ + 77.615320755353494, + 13.0414456579175 + ], + [ + 77.614856295146396, + 13.041592587105001 + ], + [ + 77.614726030316007, + 13.0416368156183 + ], + [ + 77.614541250418299, + 13.041699663197299 + ], + [ + 77.614404033535095, + 13.0417947790528 + ], + [ + 77.614081662163699, + 13.0419719435725 + ], + [ + 77.613868213867903, + 13.042101707416199 + ], + [ + 77.613608597509696, + 13.0421675688628 + ], + [ + 77.613553458988093, + 13.042181677014399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "243", + "group": "Doddabommasandra", + "Corporatio": "North", + "ac_no": "152", + "ac": "Byatarayanapura", + "corporat_1": "2", + "ward_id": "18", + "ward_name": "18 - Doddabommasandra", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಬ್ಯಾಟರಾಯನಪುರ", + "ward_name_": "ದೊಡ್ಡಬೊಮ್ಮಸಂದ್ರ", + "dig_ward_n": "Doddabommasandra", + "Assembly": "152 - Byatarayanapura", + "Slno": "18" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.551451557967894, + 13.058094708965299 + ], + [ + 77.551465530705102, + 13.0582775211531 + ], + [ + 77.551490967623707, + 13.058511039645699 + ], + [ + 77.551524080982304, + 13.058819017571 + ], + [ + 77.551544435314895, + 13.0590062840212 + ], + [ + 77.551551709756495, + 13.0590976872541 + ], + [ + 77.551563112364306, + 13.0592545503798 + ], + [ + 77.551569168726601, + 13.059336998820299 + ], + [ + 77.551571817018399, + 13.059373043204801 + ], + [ + 77.551577085411694, + 13.059437362519599 + ], + [ + 77.551585836489807, + 13.059560372168001 + ], + [ + 77.551577951729996, + 13.059633855899699 + ], + [ + 77.551570561690596, + 13.0596994294977 + ], + [ + 77.551549742157405, + 13.0597758868117 + ], + [ + 77.551537259645301, + 13.059821724971 + ], + [ + 77.551519316848498, + 13.059862799800101 + ], + [ + 77.551446096022403, + 13.0600304200773 + ], + [ + 77.551396538695997, + 13.060148416552099 + ], + [ + 77.551456865281693, + 13.0603499126538 + ], + [ + 77.551526068149002, + 13.060526532034901 + ], + [ + 77.551633162012806, + 13.0608032877869 + ], + [ + 77.551641512467697, + 13.0608260971375 + ], + [ + 77.551775964905801, + 13.0611933629181 + ], + [ + 77.5518453137812, + 13.0613827935074 + ], + [ + 77.551860879253994, + 13.0614402351857 + ], + [ + 77.551872873226998, + 13.061486418917401 + ], + [ + 77.551919272258303, + 13.0616858505736 + ], + [ + 77.552037402176794, + 13.062240134694299 + ], + [ + 77.552052627609797, + 13.0624269536259 + ], + [ + 77.552045212610494, + 13.0626046077331 + ], + [ + 77.553447055237996, + 13.062265760277599 + ], + [ + 77.554574421836506, + 13.0621135843916 + ], + [ + 77.555589390684602, + 13.061938611755201 + ], + [ + 77.555574105081106, + 13.062198010985499 + ], + [ + 77.555559049395796, + 13.062453511343399 + ], + [ + 77.555472952151106, + 13.062616909602699 + ], + [ + 77.555389806027804, + 13.063067126390401 + ], + [ + 77.555393544331906, + 13.063430429018601 + ], + [ + 77.555539307309502, + 13.063670727476101 + ], + [ + 77.555589347790601, + 13.0637945334304 + ], + [ + 77.555629783059601, + 13.0639327758016 + ], + [ + 77.5559422194207, + 13.064438839625099 + ], + [ + 77.556176547803901, + 13.065000222910401 + ], + [ + 77.556280585559705, + 13.065331890098699 + ], + [ + 77.556330196026096, + 13.0655012716811 + ], + [ + 77.556366166613898, + 13.0656204887625 + ], + [ + 77.556451274195496, + 13.0658812578323 + ], + [ + 77.556587535121196, + 13.066263992341399 + ], + [ + 77.557525150245198, + 13.0659329520768 + ], + [ + 77.557657000457198, + 13.0662461597112 + ], + [ + 77.558602189013698, + 13.0659782175095 + ], + [ + 77.5597008486411, + 13.065642241824699 + ], + [ + 77.559799187787306, + 13.065633700184399 + ], + [ + 77.559859149387094, + 13.065628491245 + ], + [ + 77.559955273195101, + 13.065620141346001 + ], + [ + 77.559958309570703, + 13.065619675796 + ], + [ + 77.5599592652067, + 13.065625661631 + ], + [ + 77.559980384292999, + 13.065757990506301 + ], + [ + 77.559990380338704, + 13.0658206271263 + ], + [ + 77.560105025186104, + 13.066517741552101 + ], + [ + 77.560113150922803, + 13.0665670987879 + ], + [ + 77.560161209567198, + 13.0668590326706 + ], + [ + 77.5601682422582, + 13.066898192636099 + ], + [ + 77.560353495018404, + 13.06792975297 + ], + [ + 77.560368119608199, + 13.0681318807754 + ], + [ + 77.560370174112094, + 13.0683555603195 + ], + [ + 77.560403881708297, + 13.068507004171201 + ], + [ + 77.560429363693203, + 13.0686214916692 + ], + [ + 77.560467574182198, + 13.068752113295799 + ], + [ + 77.560511479316204, + 13.068820566203801 + ], + [ + 77.560579765024997, + 13.068851510057501 + ], + [ + 77.560603761180701, + 13.0687767374753 + ], + [ + 77.5606591835991, + 13.0687332741301 + ], + [ + 77.560747230728794, + 13.068725625373901 + ], + [ + 77.560762780790299, + 13.068725471211801 + ], + [ + 77.5611339483373, + 13.0687547364364 + ], + [ + 77.561297155463706, + 13.068767604043799 + ], + [ + 77.561902509086096, + 13.068822583496001 + ], + [ + 77.561919683609005, + 13.068824277872 + ], + [ + 77.562162543925396, + 13.068848237035199 + ], + [ + 77.5624707235702, + 13.068850826435 + ], + [ + 77.562802975527902, + 13.0688418835029 + ], + [ + 77.5631351184891, + 13.068812219715101 + ], + [ + 77.563158607207797, + 13.0688101219113 + ], + [ + 77.563297795044704, + 13.0687906716876 + ], + [ + 77.563411630392196, + 13.0687703436869 + ], + [ + 77.563502347002995, + 13.0687423399047 + ], + [ + 77.563587001118904, + 13.068685034171301 + ], + [ + 77.563687773971196, + 13.068571102876 + ], + [ + 77.563711461420795, + 13.068522307392501 + ], + [ + 77.563780255004502, + 13.0683793313896 + ], + [ + 77.563902588015296, + 13.0680664273097 + ], + [ + 77.564133944302895, + 13.0674904409137 + ], + [ + 77.564414088228702, + 13.066865527262999 + ], + [ + 77.564496522614704, + 13.066681643164801 + ], + [ + 77.564823989799606, + 13.066042590422899 + ], + [ + 77.565083379210407, + 13.0655600582639 + ], + [ + 77.565185017832604, + 13.065474350862999 + ], + [ + 77.565305279829801, + 13.0654629929868 + ], + [ + 77.565400462307196, + 13.065421392716599 + ], + [ + 77.565542160377305, + 13.0649761668666 + ], + [ + 77.565715015891499, + 13.0645362781675 + ], + [ + 77.565829195702406, + 13.0644380236755 + ], + [ + 77.566007778620701, + 13.0642745866199 + ], + [ + 77.566134857579698, + 13.063918893640899 + ], + [ + 77.566200422629294, + 13.0638538718392 + ], + [ + 77.5663501061331, + 13.063791402493401 + ], + [ + 77.5664549225191, + 13.063790361422599 + ], + [ + 77.566556096683598, + 13.063771287539501 + ], + [ + 77.567344472235803, + 13.063479999012101 + ], + [ + 77.568182891496605, + 13.063182564481799 + ], + [ + 77.568411158504404, + 13.063088821749901 + ], + [ + 77.568493015351805, + 13.0629841117997 + ], + [ + 77.568531184638701, + 13.0628877412442 + ], + [ + 77.568482092049194, + 13.0628746775238 + ], + [ + 77.568417216301, + 13.062839184514001 + ], + [ + 77.568384895212105, + 13.0628327299193 + ], + [ + 77.568179023194205, + 13.062392959776 + ], + [ + 77.568193237561303, + 13.062300566389901 + ], + [ + 77.568356702782793, + 13.062076690108199 + ], + [ + 77.568829330488697, + 13.061774634807399 + ], + [ + 77.570617673821801, + 13.0608005585902 + ], + [ + 77.570024386186503, + 13.0598307651639 + ], + [ + 77.570780252372302, + 13.059226709506 + ], + [ + 77.571565093073204, + 13.0586506842865 + ], + [ + 77.571558037719896, + 13.0586379454423 + ], + [ + 77.569559895580895, + 13.055030214959199 + ], + [ + 77.569394294428903, + 13.054731208316401 + ], + [ + 77.569290591076296, + 13.0545361946497 + ], + [ + 77.569289155081094, + 13.054533494966901 + ], + [ + 77.569038323404499, + 13.0540594194155 + ], + [ + 77.568952379455098, + 13.0539181801654 + ], + [ + 77.567975630196301, + 13.0523129916917 + ], + [ + 77.567028119769503, + 13.0507558260304 + ], + [ + 77.566438877519602, + 13.0497293018303 + ], + [ + 77.565101517291495, + 13.0473994296204 + ], + [ + 77.564706345574905, + 13.046652914568901 + ], + [ + 77.5646545087519, + 13.0465549903997 + ], + [ + 77.564583352420598, + 13.046420568639499 + ], + [ + 77.564145266533401, + 13.045592975493999 + ], + [ + 77.563845715743597, + 13.045027899812901 + ], + [ + 77.563609526216695, + 13.0446016695174 + ], + [ + 77.5635796205502, + 13.044547700977899 + ], + [ + 77.563187665201099, + 13.0438403669895 + ], + [ + 77.563179799647401, + 13.0438261730941 + ], + [ + 77.563176859800095, + 13.0438208673394 + ], + [ + 77.562772673570294, + 13.043091455646 + ], + [ + 77.562764590240306, + 13.0430768690776 + ], + [ + 77.5627148695919, + 13.0429871401609 + ], + [ + 77.562645699195997, + 13.0428713766561 + ], + [ + 77.562399121456593, + 13.0424587060589 + ], + [ + 77.562375319334095, + 13.042418870968 + ], + [ + 77.562213282276801, + 13.042147685442901 + ], + [ + 77.562135287321397, + 13.042017152727899 + ], + [ + 77.562111822366504, + 13.0419755995079 + ], + [ + 77.562088157658096, + 13.0419336182189 + ], + [ + 77.562073992844702, + 13.0419084925294 + ], + [ + 77.561816866627296, + 13.041452364620101 + ], + [ + 77.561804877521794, + 13.0414310904657 + ], + [ + 77.561568006981503, + 13.041010901501901 + ], + [ + 77.561562867922802, + 13.041001774198699 + ], + [ + 77.561549537321099, + 13.040978095664601 + ], + [ + 77.561529638107203, + 13.040942749915301 + ], + [ + 77.561344266033103, + 13.040613490163199 + ], + [ + 77.561339261214897, + 13.0406046009387 + ], + [ + 77.561120707068895, + 13.0402164028407 + ], + [ + 77.561110100489003, + 13.040197563306601 + ], + [ + 77.561055862407002, + 13.040101224623299 + ], + [ + 77.5610179058461, + 13.040060654838401 + ], + [ + 77.560983258773305, + 13.0400236218395 + ], + [ + 77.560966084316505, + 13.040005264676999 + ], + [ + 77.560962690056897, + 13.0400016374729 + ], + [ + 77.560836039562702, + 13.040174547432899 + ], + [ + 77.560653972057395, + 13.0404326582269 + ], + [ + 77.560642026207901, + 13.040449593278 + ], + [ + 77.560641907236501, + 13.0404497624972 + ], + [ + 77.560482443096603, + 13.0404468734455 + ], + [ + 77.560480619163798, + 13.0404468408962 + ], + [ + 77.560466085239995, + 13.040447157238299 + ], + [ + 77.560411701917005, + 13.040448345725601 + ], + [ + 77.560388847123804, + 13.0404488455655 + ], + [ + 77.560386189266097, + 13.0404489034793 + ], + [ + 77.560264094707605, + 13.040448981962699 + ], + [ + 77.560115270936393, + 13.0404493302029 + ], + [ + 77.560114358713605, + 13.040449333805499 + ], + [ + 77.560109175946494, + 13.040449385070801 + ], + [ + 77.560012489052497, + 13.0404559880107 + ], + [ + 77.559964151410497, + 13.040459854068001 + ], + [ + 77.559935432588205, + 13.0404630644065 + ], + [ + 77.559921689855798, + 13.0404646006851 + ], + [ + 77.559805652984807, + 13.0404775718432 + ], + [ + 77.559797901236294, + 13.0404784381284 + ], + [ + 77.559730133720706, + 13.0406089797346 + ], + [ + 77.559715186991696, + 13.0406436015203 + ], + [ + 77.559714751387602, + 13.0406446113717 + ], + [ + 77.559647883916597, + 13.040799498453399 + ], + [ + 77.559645495253605, + 13.040805032237399 + ], + [ + 77.559607886729196, + 13.0408921474229 + ], + [ + 77.559603547704, + 13.040902198788601 + ], + [ + 77.559541702279802, + 13.0410454530242 + ], + [ + 77.559435374645702, + 13.0412917433059 + ], + [ + 77.559348198368497, + 13.041390555108199 + ], + [ + 77.559225308199103, + 13.0415298478444 + ], + [ + 77.558816967844507, + 13.041830080972 + ], + [ + 77.558790238797201, + 13.041849733366501 + ], + [ + 77.558143263941304, + 13.042325421372 + ], + [ + 77.558106053138999, + 13.042347246237499 + ], + [ + 77.557570013779895, + 13.042663468270799 + ], + [ + 77.557551970894494, + 13.042674112206701 + ], + [ + 77.557451215922896, + 13.0427335497176 + ], + [ + 77.557389994269002, + 13.042769665931401 + ], + [ + 77.557387622019604, + 13.042771066239901 + ], + [ + 77.557254305062798, + 13.0427230939569 + ], + [ + 77.557252161132993, + 13.042722322813701 + ], + [ + 77.557174878744405, + 13.0426945147599 + ], + [ + 77.557132024142703, + 13.042679094350801 + ], + [ + 77.557103269745994, + 13.042668748440301 + ], + [ + 77.557097432660797, + 13.0426666477659 + ], + [ + 77.557079689803899, + 13.0428152137005 + ], + [ + 77.557078294067793, + 13.0428268974154 + ], + [ + 77.557034955079104, + 13.043189789846799 + ], + [ + 77.557032390189704, + 13.043211265010999 + ], + [ + 77.556966452575196, + 13.0437633807555 + ], + [ + 77.556961699239096, + 13.043805212502299 + ], + [ + 77.556900162169697, + 13.043813725812701 + ], + [ + 77.556898357834001, + 13.0438623043297 + ], + [ + 77.556883735014196, + 13.0442017032734 + ], + [ + 77.556881638490694, + 13.044250363278101 + ], + [ + 77.556863019260405, + 13.0446825386203 + ], + [ + 77.556847679622095, + 13.0447030188376 + ], + [ + 77.556664754900396, + 13.0452288301592 + ], + [ + 77.5564664752835, + 13.045437454684899 + ], + [ + 77.556443713307402, + 13.0454752732528 + ], + [ + 77.556435319933797, + 13.045489219701 + ], + [ + 77.556430419263805, + 13.0454973621758 + ], + [ + 77.556301691688603, + 13.045711248643601 + ], + [ + 77.556215222675206, + 13.045854203803099 + ], + [ + 77.555970744022403, + 13.0462583865881 + ], + [ + 77.555932993085804, + 13.046320798005199 + ], + [ + 77.555883187336207, + 13.0464031385747 + ], + [ + 77.555347332676007, + 13.047279530120401 + ], + [ + 77.555307884493303, + 13.047344047050901 + ], + [ + 77.555100184931604, + 13.0476837389027 + ], + [ + 77.555048851745397, + 13.047767692700001 + ], + [ + 77.554586526408897, + 13.0484692875668 + ], + [ + 77.554580079610005, + 13.048479070612 + ], + [ + 77.554488557720404, + 13.0486179574592 + ], + [ + 77.554474369429002, + 13.0486384244301 + ], + [ + 77.554328617481005, + 13.048849870298801 + ], + [ + 77.553933555044694, + 13.0494229956658 + ], + [ + 77.553923690299101, + 13.0494363657448 + ], + [ + 77.553921493594203, + 13.049439343543501 + ], + [ + 77.553821083826904, + 13.0495754351013 + ], + [ + 77.553785854409497, + 13.0496220850754 + ], + [ + 77.553511907075901, + 13.049978267088701 + ], + [ + 77.553196483393293, + 13.050333729064899 + ], + [ + 77.553077467826895, + 13.050465905147 + ], + [ + 77.553075357756697, + 13.050468257797901 + ], + [ + 77.5530319356739, + 13.0505166897947 + ], + [ + 77.552839447919098, + 13.050731386419701 + ], + [ + 77.552452971310103, + 13.0511225581093 + ], + [ + 77.552227211446194, + 13.0514376298602 + ], + [ + 77.552212783520105, + 13.0514577657529 + ], + [ + 77.5521571404458, + 13.051535421332099 + ], + [ + 77.552019927152301, + 13.0517468274073 + ], + [ + 77.551912203786998, + 13.051912773191701 + ], + [ + 77.551729844538997, + 13.052170753407699 + ], + [ + 77.551697187272197, + 13.052216952313101 + ], + [ + 77.551591449174794, + 13.0523665376059 + ], + [ + 77.551172015188499, + 13.0529833999601 + ], + [ + 77.551166185143899, + 13.0529919734707 + ], + [ + 77.551158532204497, + 13.0530032292624 + ], + [ + 77.551010309514396, + 13.0532079695605 + ], + [ + 77.550984741865307, + 13.053242101461301 + ], + [ + 77.550804968468398, + 13.053403109367 + ], + [ + 77.550602124162495, + 13.0535609567891 + ], + [ + 77.5504807559131, + 13.053651380361099 + ], + [ + 77.550243505449103, + 13.0538281393299 + ], + [ + 77.550228447562503, + 13.0538393579161 + ], + [ + 77.550135138024601, + 13.053908876872301 + ], + [ + 77.549981294344704, + 13.0540210957589 + ], + [ + 77.5495497385986, + 13.054335887268101 + ], + [ + 77.549109043905602, + 13.0546643482318 + ], + [ + 77.549105807090896, + 13.0546667363644 + ], + [ + 77.549091245523798, + 13.054677478402599 + ], + [ + 77.549043877670798, + 13.054712422291299 + ], + [ + 77.548450070315496, + 13.0552392213046 + ], + [ + 77.548379219280207, + 13.0553020767618 + ], + [ + 77.548259696718404, + 13.055408111225001 + ], + [ + 77.548080993039306, + 13.0555666480307 + ], + [ + 77.547988541917803, + 13.055649999865601 + ], + [ + 77.547994776008593, + 13.0557766188283 + ], + [ + 77.548020551220503, + 13.0563001753272 + ], + [ + 77.548027089164506, + 13.0564322418552 + ], + [ + 77.548060609863796, + 13.057117411405001 + ], + [ + 77.548072186790904, + 13.0573476794718 + ], + [ + 77.548072360499702, + 13.057364617625399 + ], + [ + 77.548077804695396, + 13.0575023415365 + ], + [ + 77.548362948571807, + 13.0575063066875 + ], + [ + 77.548398090529005, + 13.0575070895793 + ], + [ + 77.548558239213307, + 13.057510028055701 + ], + [ + 77.548561707721603, + 13.0575099197768 + ], + [ + 77.548675894880105, + 13.057506355568499 + ], + [ + 77.548875494817196, + 13.0575001241675 + ], + [ + 77.548881590222706, + 13.057500064066801 + ], + [ + 77.549102402370806, + 13.057497886760499 + ], + [ + 77.549108497775094, + 13.057497826654499 + ], + [ + 77.549198916161302, + 13.057496935032299 + ], + [ + 77.549227374279397, + 13.0574966543983 + ], + [ + 77.549290747262503, + 13.0574982880938 + ], + [ + 77.549442833143502, + 13.0575013055317 + ], + [ + 77.549506805200707, + 13.057505191911901 + ], + [ + 77.549585198113505, + 13.0575111946933 + ], + [ + 77.549589135400296, + 13.057510968844801 + ], + [ + 77.549704352969002, + 13.0575043728556 + ], + [ + 77.549909317965003, + 13.0574967045472 + ], + [ + 77.549915413365397, + 13.0574966444221 + ], + [ + 77.549959068042298, + 13.0574962138078 + ], + [ + 77.549965163442494, + 13.0574961536815 + ], + [ + 77.549996855837406, + 13.057495841059 + ], + [ + 77.550002951237502, + 13.0574957809319 + ], + [ + 77.550004342628895, + 13.057495767206699 + ], + [ + 77.5500486295211, + 13.0574896837268 + ], + [ + 77.550051347617497, + 13.0574900878637 + ], + [ + 77.550148423689606, + 13.057504509803 + ], + [ + 77.550311246721705, + 13.057543559127501 + ], + [ + 77.550812735248698, + 13.0576640833753 + ], + [ + 77.550830320241801, + 13.0576683096919 + ], + [ + 77.551004684741102, + 13.057709503296399 + ], + [ + 77.5512061980764, + 13.0577583340899 + ], + [ + 77.551303193973496, + 13.057781092557001 + ], + [ + 77.551429445181995, + 13.0577922690163 + ], + [ + 77.551436944745902, + 13.0578948413009 + ], + [ + 77.551451557967894, + 13.058094708965299 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "244", + "group": "Kathriguppe", + "Corporatio": "West", + "ac_no": "170", + "ac": "Basavanagudi", + "corporat_1": "5", + "ward_id": "84", + "ward_name": "84 - Kathriguppe", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಬಸವನಗುಡಿ", + "ward_name_": "ಕತ್ರಿಗುಪ್ಪೆ", + "dig_ward_n": "Kathriguppe", + "Assembly": "170 - Basavanagudi", + "Slno": "84" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.5459438747978, + 12.9290720470424 + ], + [ + 77.546200913385803, + 12.9293656682429 + ], + [ + 77.546518663221804, + 12.9297286402239 + ], + [ + 77.547049332677801, + 12.9303702790099 + ], + [ + 77.548587526324297, + 12.932272697679499 + ], + [ + 77.548830597749301, + 12.932573786124101 + ], + [ + 77.548996308518497, + 12.9328067779575 + ], + [ + 77.549406224631795, + 12.9333076481019 + ], + [ + 77.550351869576801, + 12.9341981180276 + ], + [ + 77.550641795509605, + 12.9344265136153 + ], + [ + 77.550674731127799, + 12.9344649555477 + ], + [ + 77.5507570464395, + 12.934561031673701 + ], + [ + 77.550915687766206, + 12.9347180585585 + ], + [ + 77.550822241843704, + 12.934821472046099 + ], + [ + 77.550778789489399, + 12.934884703786899 + ], + [ + 77.550857284064307, + 12.9348859497325 + ], + [ + 77.551059127256806, + 12.934846079472299 + ], + [ + 77.551105227245301, + 12.934818668668401 + ], + [ + 77.551087316777199, + 12.934756994359599 + ], + [ + 77.550795765499103, + 12.9340094269798 + ], + [ + 77.550347225071206, + 12.9336206919423 + ], + [ + 77.550636284458093, + 12.9333141893165 + ], + [ + 77.550767653849206, + 12.9334172134459 + ], + [ + 77.551069172692394, + 12.9336688944638 + ], + [ + 77.551609913097195, + 12.9334957080208 + ], + [ + 77.551507745555298, + 12.933230321600901 + ], + [ + 77.551458860183899, + 12.9331278710186 + ], + [ + 77.551557038280905, + 12.933101132613301 + ], + [ + 77.551396311294198, + 12.9328045975526 + ], + [ + 77.551659205822801, + 12.9327298408146 + ], + [ + 77.551629303127598, + 12.9326289192184 + ], + [ + 77.551580711247993, + 12.932433305754 + ], + [ + 77.551567005845996, + 12.9323274003752 + ], + [ + 77.551887377223196, + 12.932238487215599 + ], + [ + 77.552052161179006, + 12.9321945639634 + ], + [ + 77.552273095422095, + 12.9321364669582 + ], + [ + 77.552422593825895, + 12.932099147407399 + ], + [ + 77.552507694798905, + 12.9322320855343 + ], + [ + 77.552646951627395, + 12.9321813281184 + ], + [ + 77.552865904168399, + 12.932100638270001 + ], + [ + 77.552936923069495, + 12.9323087111907 + ], + [ + 77.553137442443301, + 12.932881456823701 + ], + [ + 77.553176253698396, + 12.9329819952539 + ], + [ + 77.553207203178303, + 12.9331016911659 + ], + [ + 77.553224391361894, + 12.9331622392427 + ], + [ + 77.5532777141851, + 12.9333252223787 + ], + [ + 77.553310628886294, + 12.933398524261399 + ], + [ + 77.553511027125793, + 12.933321704940299 + ], + [ + 77.553695976238401, + 12.9332477038222 + ], + [ + 77.554002622715899, + 12.933129406712901 + ], + [ + 77.554009306547201, + 12.933126827829399 + ], + [ + 77.554368627775105, + 12.932993270926101 + ], + [ + 77.554794054084596, + 12.9328418542327 + ], + [ + 77.554912944128404, + 12.9332212441444 + ], + [ + 77.555091163069093, + 12.933594527084001 + ], + [ + 77.555205790067305, + 12.9339359161874 + ], + [ + 77.5555024950541, + 12.9345790819394 + ], + [ + 77.555743604463999, + 12.934563571999499 + ], + [ + 77.556232952032204, + 12.9345285506304 + ], + [ + 77.5565151336789, + 12.9345154615275 + ], + [ + 77.556525168619601, + 12.9345148915486 + ], + [ + 77.556490010710107, + 12.934256939951901 + ], + [ + 77.556491727229599, + 12.9340427423361 + ], + [ + 77.556516447000206, + 12.933885689003899 + ], + [ + 77.556537628075901, + 12.9335679728675 + ], + [ + 77.556552579423496, + 12.9331966810689 + ], + [ + 77.556611138868206, + 12.9327792892818 + ], + [ + 77.5563871038797, + 12.932648406086599 + ], + [ + 77.556258043987299, + 12.9325676376125 + ], + [ + 77.556160054, + 12.9325063133317 + ], + [ + 77.556024888626496, + 12.9323780897078 + ], + [ + 77.555504454523401, + 12.931884380759501 + ], + [ + 77.555396678212901, + 12.931782138433499 + ], + [ + 77.555262208429198, + 12.931657021688199 + ], + [ + 77.555007528967707, + 12.931376743857101 + ], + [ + 77.554765742884697, + 12.931195085585401 + ], + [ + 77.554298611255604, + 12.9308784575781 + ], + [ + 77.554248091897904, + 12.930844214115201 + ], + [ + 77.553842292511305, + 12.930618155662399 + ], + [ + 77.5538242844178, + 12.930616958696399 + ], + [ + 77.5537875501375, + 12.930599390903 + ], + [ + 77.553544989802205, + 12.930471965751 + ], + [ + 77.553520570725794, + 12.9304188452801 + ], + [ + 77.553306268076994, + 12.929450122550399 + ], + [ + 77.553343646445896, + 12.929311822585101 + ], + [ + 77.553298792403197, + 12.929172276674199 + ], + [ + 77.553275119436094, + 12.9290663712954 + ], + [ + 77.553475794555894, + 12.929054301197199 + ], + [ + 77.553574452168505, + 12.929061435592301 + ], + [ + 77.553621748337406, + 12.9290992198691 + ], + [ + 77.553659931831604, + 12.9291394829913 + ], + [ + 77.553759558673505, + 12.9292682923597 + ], + [ + 77.554690591548095, + 12.928943412035901 + ], + [ + 77.554674394254903, + 12.928800128288101 + ], + [ + 77.554640753722794, + 12.9285210364663 + ], + [ + 77.554701026342002, + 12.9285197905206 + ], + [ + 77.554886672241295, + 12.9285260202488 + ], + [ + 77.555013758695907, + 12.9285384797051 + ], + [ + 77.555114680292206, + 12.928552185107099 + ], + [ + 77.555498431547207, + 12.928701698583 + ], + [ + 77.555706877011005, + 12.9287815335008 + ], + [ + 77.555929953895401, + 12.928856715923001 + ], + [ + 77.555931553398693, + 12.9288571303008 + ], + [ + 77.555997264093307, + 12.928659327041601 + ], + [ + 77.556308649997405, + 12.928686371530199 + ], + [ + 77.556276773787204, + 12.929499352800301 + ], + [ + 77.556173981886104, + 12.929843268074601 + ], + [ + 77.556209944374501, + 12.9301503439961 + ], + [ + 77.556331969175602, + 12.9307923953552 + ], + [ + 77.556358775051706, + 12.9308810898731 + ], + [ + 77.556478220939994, + 12.931314974708 + ], + [ + 77.556509206805003, + 12.931390207607 + ], + [ + 77.556631424225301, + 12.9314263001145 + ], + [ + 77.556858686425301, + 12.931534987755001 + ], + [ + 77.557061493774398, + 12.93163530943 + ], + [ + 77.557201646668403, + 12.9317094729155 + ], + [ + 77.557180631156896, + 12.9317517494933 + ], + [ + 77.557092463242199, + 12.931921222098801 + ], + [ + 77.557178433490904, + 12.9319673220872 + ], + [ + 77.557318122810997, + 12.9320429881684 + ], + [ + 77.557386634575593, + 12.932070045461201 + ], + [ + 77.557555161804999, + 12.9321544476759 + ], + [ + 77.557699252612593, + 12.932232396548599 + ], + [ + 77.557911729599198, + 12.932324972979099 + ], + [ + 77.558017485356004, + 12.9323717442351 + ], + [ + 77.558060480021695, + 12.9323818397529 + ], + [ + 77.558410587514402, + 12.9324321686054 + ], + [ + 77.558596073388102, + 12.9321307540605 + ], + [ + 77.558971582870399, + 12.9323513069569 + ], + [ + 77.559644583813295, + 12.932737447439299 + ], + [ + 77.559879017348194, + 12.932242818442599 + ], + [ + 77.559846850583298, + 12.9321920027168 + ], + [ + 77.559534631710207, + 12.9319732367334 + ], + [ + 77.559363900965593, + 12.931863997028699 + ], + [ + 77.559274413343303, + 12.931787426014299 + ], + [ + 77.559445607264706, + 12.9316076608978 + ], + [ + 77.559599030066494, + 12.9314602540178 + ], + [ + 77.559599993066598, + 12.931459307680999 + ], + [ + 77.559817148762903, + 12.931245845907201 + ], + [ + 77.559904851680699, + 12.931147456837801 + ], + [ + 77.560021523430095, + 12.931022010351301 + ], + [ + 77.560119020927402, + 12.9309369250487 + ], + [ + 77.560420306154597, + 12.930590474291 + ], + [ + 77.560542408826706, + 12.930469617564601 + ], + [ + 77.560700178768499, + 12.930298437009199 + ], + [ + 77.560905630135593, + 12.9301097308946 + ], + [ + 77.560948781363194, + 12.930053054655399 + ], + [ + 77.5609487374048, + 12.9299790339849 + ], + [ + 77.560924940695102, + 12.929959975036599 + ], + [ + 77.560861116855307, + 12.929910911358199 + ], + [ + 77.560631609275902, + 12.9297595762544 + ], + [ + 77.560476862182796, + 12.9296571973779 + ], + [ + 77.560341778012102, + 12.929563659998299 + ], + [ + 77.560190392643406, + 12.929452213326099 + ], + [ + 77.560111292303503, + 12.929372807590299 + ], + [ + 77.560042806076694, + 12.9292616766009 + ], + [ + 77.559984842070406, + 12.929166252865301 + ], + [ + 77.559879252276403, + 12.929029511438699 + ], + [ + 77.559662259418502, + 12.9287504388061 + ], + [ + 77.559654097302101, + 12.928740354968101 + ], + [ + 77.559582123304395, + 12.9286258700324 + ], + [ + 77.559461199877504, + 12.928509606620599 + ], + [ + 77.559394233847897, + 12.928434598827099 + ], + [ + 77.559303967342302, + 12.928332715788301 + ], + [ + 77.559258756235593, + 12.9282955916227 + ], + [ + 77.559188443361805, + 12.928237856400401 + ], + [ + 77.559138503873797, + 12.928195431913499 + ], + [ + 77.559000139998801, + 12.92811886564 + ], + [ + 77.558975285388996, + 12.9281089454926 + ], + [ + 77.558635460048706, + 12.927977888600401 + ], + [ + 77.558615785904095, + 12.9279679176109 + ], + [ + 77.558597850084197, + 12.927959058897899 + ], + [ + 77.558450334331496, + 12.927888228650501 + ], + [ + 77.558287622779602, + 12.9277949607966 + ], + [ + 77.558250507913996, + 12.9277682209026 + ], + [ + 77.558113652664701, + 12.9276701820911 + ], + [ + 77.557953727327799, + 12.9275678520585 + ], + [ + 77.557700462602199, + 12.927400935998699 + ], + [ + 77.557688282885096, + 12.927392020785 + ], + [ + 77.557672626536899, + 12.927380880998699 + ], + [ + 77.557573050518499, + 12.927311133264 + ], + [ + 77.557462739483896, + 12.9272338672994 + ], + [ + 77.557411718268497, + 12.9271982289498 + ], + [ + 77.557223312856394, + 12.9270690736726 + ], + [ + 77.557040640653298, + 12.926937603387101 + ], + [ + 77.556873728414104, + 12.926827435709599 + ], + [ + 77.556680200592098, + 12.9267039767648 + ], + [ + 77.556531611939107, + 12.926613056403999 + ], + [ + 77.556493096559606, + 12.926589489319401 + ], + [ + 77.556344799489906, + 12.926498337394699 + ], + [ + 77.556211537158305, + 12.926413814045601 + ], + [ + 77.556096072588701, + 12.9263245989629 + ], + [ + 77.555940949862006, + 12.9261849525433 + ], + [ + 77.555933225631506, + 12.926161312329601 + ], + [ + 77.555853620998604, + 12.9260886857638 + ], + [ + 77.555780071289206, + 12.926045362373699 + ], + [ + 77.555673183581902, + 12.925950416403101 + ], + [ + 77.555471069837495, + 12.925775091343899 + ], + [ + 77.555422248135201, + 12.925729267009601 + ], + [ + 77.555399074687998, + 12.9257148126782 + ], + [ + 77.555357355593799, + 12.9256881173461 + ], + [ + 77.555341710935494, + 12.9256781065944 + ], + [ + 77.555294512647507, + 12.9256221023811 + ], + [ + 77.555255187917496, + 12.9256044182046 + ], + [ + 77.5552058251604, + 12.925561987097799 + ], + [ + 77.555140817778906, + 12.925509545211099 + ], + [ + 77.555075488675101, + 12.925425485269701 + ], + [ + 77.555019195796405, + 12.9253808633128 + ], + [ + 77.554958736932406, + 12.9252662637863 + ], + [ + 77.554920103872306, + 12.9252033996479 + ], + [ + 77.554875935360201, + 12.9250491141118 + ], + [ + 77.554806326788807, + 12.9248273179149 + ], + [ + 77.554756138220995, + 12.924647116713601 + ], + [ + 77.554691364484299, + 12.9244478596801 + ], + [ + 77.554639069027203, + 12.924286877630999 + ], + [ + 77.554605191571, + 12.9241821816981 + ], + [ + 77.554579418467597, + 12.9240819237416 + ], + [ + 77.554533593063795, + 12.9239637203745 + ], + [ + 77.554507887260797, + 12.9238974140187 + ], + [ + 77.5545040335859, + 12.9237689634951 + ], + [ + 77.554501790432795, + 12.923694194554001 + ], + [ + 77.554489945926093, + 12.9236554544268 + ], + [ + 77.5544877421612, + 12.9236482465154 + ], + [ + 77.554483027750294, + 12.923632826966699 + ], + [ + 77.554479758202504, + 12.923622133168699 + ], + [ + 77.554469639948096, + 12.9235894816724 + ], + [ + 77.554458664905695, + 12.923593142371899 + ], + [ + 77.554338900738401, + 12.9236330893928 + ], + [ + 77.554295232871596, + 12.923647655060201 + ], + [ + 77.553658364272295, + 12.923854907838299 + ], + [ + 77.553322707466705, + 12.923963219524101 + ], + [ + 77.553300903634906, + 12.923970208815 + ], + [ + 77.553277382690098, + 12.923977442576 + ], + [ + 77.552185890466703, + 12.924313138056201 + ], + [ + 77.552103889553294, + 12.924344861865499 + ], + [ + 77.551715700557807, + 12.924495040661499 + ], + [ + 77.551675677601693, + 12.9245103987804 + ], + [ + 77.551443898832602, + 12.9245993378654 + ], + [ + 77.550496212109906, + 12.9250942139203 + ], + [ + 77.550398864466501, + 12.9251448559074 + ], + [ + 77.549983621555697, + 12.925380918291999 + ], + [ + 77.549951003704507, + 12.9253994608226 + ], + [ + 77.549950138301497, + 12.925399952632899 + ], + [ + 77.549445323022198, + 12.925687218028701 + ], + [ + 77.549333249784496, + 12.925755261566101 + ], + [ + 77.549271394303702, + 12.925792815799699 + ], + [ + 77.548711419936794, + 12.9261472495488 + ], + [ + 77.5485383311551, + 12.926276499617799 + ], + [ + 77.548385641954994, + 12.926390516693701 + ], + [ + 77.548360573712898, + 12.926409235597299 + ], + [ + 77.548311774600705, + 12.9264456755601 + ], + [ + 77.548152085661201, + 12.926564918784701 + ], + [ + 77.548106164248196, + 12.9266007596264 + ], + [ + 77.547844261488507, + 12.926805166897401 + ], + [ + 77.547828249455804, + 12.9268176636986 + ], + [ + 77.547596302731193, + 12.926999184081 + ], + [ + 77.547001970212904, + 12.927464303910501 + ], + [ + 77.546232509342801, + 12.928066473775701 + ], + [ + 77.546053176333899, + 12.928207132034199 + ], + [ + 77.5455549504304, + 12.928628239992401 + ], + [ + 77.545554922648705, + 12.9286282634739 + ], + [ + 77.545554826176001, + 12.9286283450138 + ], + [ + 77.545554673327203, + 12.928628474203601 + ], + [ + 77.545560330439599, + 12.928633913210501 + ], + [ + 77.5459438747978, + 12.9290720470424 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "245", + "group": "srinivasa Nagara", + "Corporatio": "West", + "ac_no": "170", + "ac": "Basavanagudi", + "corporat_1": "5", + "ward_id": "85", + "ward_name": "85 - Srinivasa Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಬಸವನಗುಡಿ", + "ward_name_": "ಶ್ರೀನಿವಾಸ ನಗರ", + "dig_ward_n": "srinivasa Nagara", + "Assembly": "170 - Basavanagudi", + "Slno": "85" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.551580711247993, + 12.932433305754 + ], + [ + 77.551629303127598, + 12.9326289192184 + ], + [ + 77.551659205822801, + 12.9327298408146 + ], + [ + 77.551396311294198, + 12.9328045975526 + ], + [ + 77.551557038280905, + 12.933101132613301 + ], + [ + 77.551458860183899, + 12.9331278710186 + ], + [ + 77.551507745555298, + 12.933230321600901 + ], + [ + 77.551609913097195, + 12.9334957080208 + ], + [ + 77.551069172692394, + 12.9336688944638 + ], + [ + 77.550767653849206, + 12.9334172134459 + ], + [ + 77.550636284458093, + 12.9333141893165 + ], + [ + 77.550347225071206, + 12.9336206919423 + ], + [ + 77.550795765499103, + 12.9340094269798 + ], + [ + 77.551087316777199, + 12.934756994359599 + ], + [ + 77.551105227245301, + 12.934818668668401 + ], + [ + 77.551059127256806, + 12.934846079472299 + ], + [ + 77.550857284064307, + 12.9348859497325 + ], + [ + 77.550778789489399, + 12.934884703786899 + ], + [ + 77.551044954625596, + 12.935763718431 + ], + [ + 77.551659205822702, + 12.9354634455335 + ], + [ + 77.551743930125795, + 12.935444756349 + ], + [ + 77.551885967928001, + 12.935712634660099 + ], + [ + 77.552162567858502, + 12.935560629292899 + ], + [ + 77.552541335331, + 12.936298229107599 + ], + [ + 77.552736948795399, + 12.936809066817201 + ], + [ + 77.552826656880896, + 12.9370470424331 + ], + [ + 77.5528433686098, + 12.9371694851081 + ], + [ + 77.552848339874103, + 12.9371789986898 + ], + [ + 77.552899687198604, + 12.937243514583001 + ], + [ + 77.552916364966507, + 12.937253869408099 + ], + [ + 77.552927223539399, + 12.9372671497037 + ], + [ + 77.553008564943397, + 12.9373622666782 + ], + [ + 77.553158078419301, + 12.9380824232541 + ], + [ + 77.553181751386305, + 12.9385945069093 + ], + [ + 77.553259594217806, + 12.938588700280601 + ], + [ + 77.553530351027604, + 12.9385675058645 + ], + [ + 77.553545701849799, + 12.9385663038823 + ], + [ + 77.554051343565504, + 12.938541787834501 + ], + [ + 77.554285581344502, + 12.938506901356799 + ], + [ + 77.555060559528201, + 12.9384371284014 + ], + [ + 77.555808250285807, + 12.9383796947838 + ], + [ + 77.556028134667102, + 12.9383482769725 + ], + [ + 77.556034569308494, + 12.938347357407499 + ], + [ + 77.556305328369902, + 12.9382851809867 + ], + [ + 77.556435192515806, + 12.9382580912691 + ], + [ + 77.556592866180395, + 12.9382335972844 + ], + [ + 77.557203622985, + 12.9379736051153 + ], + [ + 77.557269665382805, + 12.9379518037415 + ], + [ + 77.557301806949297, + 12.938118298873301 + ], + [ + 77.557425550789702, + 12.938120906737399 + ], + [ + 77.557684954983202, + 12.938125428979401 + ], + [ + 77.557846752419096, + 12.938128248775399 + ], + [ + 77.558388123699004, + 12.9381616620168 + ], + [ + 77.559219151589303, + 12.9382080072187 + ], + [ + 77.559785378730396, + 12.9382411725979 + ], + [ + 77.559992012343898, + 12.938267679795301 + ], + [ + 77.559937190735994, + 12.9379773744628 + ], + [ + 77.559908350696801, + 12.937825469245601 + ], + [ + 77.559892542456097, + 12.9375357063858 + ], + [ + 77.559892162795606, + 12.937528739929901 + ], + [ + 77.559871251671098, + 12.937199068985899 + ], + [ + 77.559851160204403, + 12.936949707455801 + ], + [ + 77.559821255128298, + 12.936610131616501 + ], + [ + 77.559819736237799, + 12.936592889562201 + ], + [ + 77.559800264482007, + 12.936330219390699 + ], + [ + 77.559831908329997, + 12.936279150564999 + ], + [ + 77.559933452899102, + 12.936177605995899 + ], + [ + 77.559786750487902, + 12.936080554735399 + ], + [ + 77.559821905221, + 12.9359029066582 + ], + [ + 77.559818812202906, + 12.935821822680101 + ], + [ + 77.559774771538102, + 12.9358141420416 + ], + [ + 77.559652950707701, + 12.935817250475701 + ], + [ + 77.559497994900298, + 12.9358611358051 + ], + [ + 77.559046962581206, + 12.935932154706199 + ], + [ + 77.558935450446995, + 12.9355839129017 + ], + [ + 77.558872218705702, + 12.9351814724623 + ], + [ + 77.558682834969503, + 12.935217604885599 + ], + [ + 77.558543289058605, + 12.935240031907 + ], + [ + 77.558452335027397, + 12.9352749183847 + ], + [ + 77.558493741010807, + 12.935652850575099 + ], + [ + 77.558240913629405, + 12.9356964373669 + ], + [ + 77.5581040681774, + 12.9357116786795 + ], + [ + 77.557685740477993, + 12.935791941075999 + ], + [ + 77.557572019563906, + 12.9358126732972 + ], + [ + 77.557634761078901, + 12.935697683312499 + ], + [ + 77.557721977273303, + 12.935518267141401 + ], + [ + 77.558015319596606, + 12.933581678269499 + ], + [ + 77.557915504394302, + 12.933527312240599 + ], + [ + 77.557144870407996, + 12.933129013901899 + ], + [ + 77.556860039850704, + 12.9329443779671 + ], + [ + 77.556786808566798, + 12.932898548647399 + ], + [ + 77.556611138868206, + 12.9327792892818 + ], + [ + 77.556552579423496, + 12.9331966810689 + ], + [ + 77.556537628075901, + 12.9335679728675 + ], + [ + 77.556516447000206, + 12.933885689003899 + ], + [ + 77.556491727229599, + 12.9340427423361 + ], + [ + 77.556490010710107, + 12.934256939951901 + ], + [ + 77.556525168619601, + 12.9345148915486 + ], + [ + 77.5565151336789, + 12.9345154615275 + ], + [ + 77.556232952032204, + 12.9345285506304 + ], + [ + 77.555743604463999, + 12.934563571999499 + ], + [ + 77.5555024950541, + 12.9345790819394 + ], + [ + 77.555205790067305, + 12.9339359161874 + ], + [ + 77.555091163069093, + 12.933594527084001 + ], + [ + 77.554912944128404, + 12.9332212441444 + ], + [ + 77.554794054084596, + 12.9328418542327 + ], + [ + 77.554368627775105, + 12.932993270926101 + ], + [ + 77.554009306547201, + 12.933126827829399 + ], + [ + 77.554002622715899, + 12.933129406712901 + ], + [ + 77.553695976238401, + 12.9332477038222 + ], + [ + 77.553511027125793, + 12.933321704940299 + ], + [ + 77.553310628886294, + 12.933398524261399 + ], + [ + 77.5532777141851, + 12.9333252223787 + ], + [ + 77.553224391361894, + 12.9331622392427 + ], + [ + 77.553207203178303, + 12.9331016911659 + ], + [ + 77.553176253698396, + 12.9329819952539 + ], + [ + 77.553137442443301, + 12.932881456823701 + ], + [ + 77.552936923069495, + 12.9323087111907 + ], + [ + 77.552865904168399, + 12.932100638270001 + ], + [ + 77.552646951627395, + 12.9321813281184 + ], + [ + 77.552507694798905, + 12.9322320855343 + ], + [ + 77.552422593825895, + 12.932099147407399 + ], + [ + 77.552273095422095, + 12.9321364669582 + ], + [ + 77.552052161179006, + 12.9321945639634 + ], + [ + 77.551887377223196, + 12.932238487215599 + ], + [ + 77.551567005845996, + 12.9323274003752 + ], + [ + 77.551580711247993, + 12.932433305754 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "246", + "group": "subrahmanyapura", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "2", + "ward_name": "2 - Subramanyapura", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಸುಬ್ರಹ್ಮಣ್ಯಪುರ", + "dig_ward_n": "subrahmanyapura", + "Assembly": "176 - Bangalore South", + "Slno": "2" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.549116254559195, + 12.907424054254999 + ], + [ + 77.549115065308001, + 12.9074246697283 + ], + [ + 77.549115065308001, + 12.9074246697283 + ], + [ + 77.549115065308001, + 12.9074246697283 + ], + [ + 77.548917114614298, + 12.9071985992968 + ], + [ + 77.548599479563606, + 12.9073279866276 + ], + [ + 77.548633703589502, + 12.9075005892373 + ], + [ + 77.548060755699794, + 12.9077291740732 + ], + [ + 77.548199615153095, + 12.9081556101145 + ], + [ + 77.548064472621604, + 12.908210401849299 + ], + [ + 77.547572881861598, + 12.9077692012002 + ], + [ + 77.547043767610006, + 12.9074047377754 + ], + [ + 77.5470360788417, + 12.907401159095199 + ], + [ + 77.5462273793094, + 12.9070247347369 + ], + [ + 77.546213781255503, + 12.9070184047238 + ], + [ + 77.545751676198094, + 12.9068651387716 + ], + [ + 77.545092356004403, + 12.9067281353467 + ], + [ + 77.545078352696805, + 12.9067259859541 + ], + [ + 77.544477328464794, + 12.906633725708801 + ], + [ + 77.544103520644995, + 12.906536967118599 + ], + [ + 77.543868668226693, + 12.906446026135701 + ], + [ + 77.543427550551101, + 12.9061993239618 + ], + [ + 77.543377441405895, + 12.9061710993559 + ], + [ + 77.543377441405895, + 12.9061710993559 + ], + [ + 77.543377441405895, + 12.9061710993559 + ], + [ + 77.542755829717905, + 12.905820972134601 + ], + [ + 77.542379936922202, + 12.9058011370025 + ], + [ + 77.542379936922202, + 12.9058011370025 + ], + [ + 77.541958340309506, + 12.905872080744601 + ], + [ + 77.541871370010398, + 12.9055293276712 + ], + [ + 77.541721705801905, + 12.905085063942201 + ], + [ + 77.541535968147997, + 12.904704311072001 + ], + [ + 77.541365685767502, + 12.904380571708501 + ], + [ + 77.541009277714807, + 12.9037719297861 + ], + [ + 77.541479485132598, + 12.9034760951567 + ], + [ + 77.541107022830801, + 12.902842705210199 + ], + [ + 77.541183157587596, + 12.9027810086644 + ], + [ + 77.540820993873396, + 12.9021251660386 + ], + [ + 77.540877358289606, + 12.902079108318899 + ], + [ + 77.540717562915901, + 12.901874729444501 + ], + [ + 77.541412911668999, + 12.9017081167882 + ], + [ + 77.541352560627004, + 12.901474327879299 + ], + [ + 77.541130581160203, + 12.901066451526701 + ], + [ + 77.540915944839696, + 12.9007322106406 + ], + [ + 77.540679523002098, + 12.900437368301301 + ], + [ + 77.540409697296496, + 12.9002607070046 + ], + [ + 77.539823839950799, + 12.9003950257006 + ], + [ + 77.539595433479207, + 12.9000005054314 + ], + [ + 77.539265282701606, + 12.900013832944399 + ], + [ + 77.539077532455295, + 12.8993375587595 + ], + [ + 77.539217478689494, + 12.8991843103245 + ], + [ + 77.539650801923997, + 12.8991414181708 + ], + [ + 77.539810180835801, + 12.899189930870699 + ], + [ + 77.540051795610395, + 12.899197733610499 + ], + [ + 77.540094542366305, + 12.8990873583866 + ], + [ + 77.540045475532395, + 12.899054368608301 + ], + [ + 77.5399706429546, + 12.8988829838933 + ], + [ + 77.539901553242501, + 12.8987975992021 + ], + [ + 77.539871543438196, + 12.8987213963266 + ], + [ + 77.539798400811193, + 12.898717325639099 + ], + [ + 77.539703739581896, + 12.898512666931801 + ], + [ + 77.539852726673601, + 12.8983056415713 + ], + [ + 77.540144283283695, + 12.8982215337823 + ], + [ + 77.540548353275099, + 12.898179361340301 + ], + [ + 77.541040448489497, + 12.8980163380155 + ], + [ + 77.540894835003101, + 12.897550708136301 + ], + [ + 77.540725524789593, + 12.897322528481499 + ], + [ + 77.540656639261599, + 12.8969898380105 + ], + [ + 77.541162406666899, + 12.8967710272538 + ], + [ + 77.541393976048795, + 12.8961414427548 + ], + [ + 77.541431464128905, + 12.896023757678201 + ], + [ + 77.541445896213204, + 12.8959599036412 + ], + [ + 77.541465552135804, + 12.895839111531901 + ], + [ + 77.541507310218904, + 12.8957249311075 + ], + [ + 77.541573503491094, + 12.8955948363056 + ], + [ + 77.541651425777005, + 12.8954106503703 + ], + [ + 77.541672264551906, + 12.8953495784359 + ], + [ + 77.541692218387794, + 12.895285912839901 + ], + [ + 77.541892368908805, + 12.894750691543599 + ], + [ + 77.541940858979004, + 12.8945997533775 + ], + [ + 77.541965287510294, + 12.8943773710811 + ], + [ + 77.542016653177996, + 12.8943819917073 + ], + [ + 77.542050890105202, + 12.8942121348289 + ], + [ + 77.541562821231395, + 12.8943454433516 + ], + [ + 77.538901313145999, + 12.8950764124257 + ], + [ + 77.538758890835496, + 12.894840290025201 + ], + [ + 77.537056405970802, + 12.8954481560536 + ], + [ + 77.536454913316405, + 12.894166626087101 + ], + [ + 77.539213181344294, + 12.8930538818974 + ], + [ + 77.5410912123576, + 12.892519107064301 + ], + [ + 77.542670336735597, + 12.892015669294301 + ], + [ + 77.542330474687105, + 12.8914395563007 + ], + [ + 77.5420889431186, + 12.8910474807779 + ], + [ + 77.541753621412596, + 12.8904160754832 + ], + [ + 77.541456227177704, + 12.8897314953166 + ], + [ + 77.541262726729201, + 12.8887719788717 + ], + [ + 77.541261091845101, + 12.8878629350446 + ], + [ + 77.541384384706603, + 12.887036871209901 + ], + [ + 77.541765677124502, + 12.8859773391614 + ], + [ + 77.541704730196599, + 12.8853965425585 + ], + [ + 77.541297803492199, + 12.883972621672999 + ], + [ + 77.543294977919004, + 12.881461560308299 + ], + [ + 77.544027366894696, + 12.880374723964399 + ], + [ + 77.5440274841052, + 12.880002451766099 + ], + [ + 77.543969076439495, + 12.8798725836446 + ], + [ + 77.543808093265895, + 12.8792741817915 + ], + [ + 77.543789079022702, + 12.879203504494599 + ], + [ + 77.543771618700504, + 12.8791997395062 + ], + [ + 77.543709069743599, + 12.879186250124199 + ], + [ + 77.543708902174004, + 12.8791862139859 + ], + [ + 77.543708806789795, + 12.8791862191686 + ], + [ + 77.543708368137004, + 12.879186243002501 + ], + [ + 77.543531727973999, + 12.879195840563501 + ], + [ + 77.543213049079597, + 12.879213617563 + ], + [ + 77.542710688451706, + 12.879280610348699 + ], + [ + 77.542623333064697, + 12.8793031899004 + ], + [ + 77.542215848502096, + 12.8794085136281 + ], + [ + 77.542011796192199, + 12.8794353403063 + ], + [ + 77.541869084410706, + 12.879498693309399 + ], + [ + 77.541712694248503, + 12.879568118339501 + ], + [ + 77.541516610615105, + 12.879602202606801 + ], + [ + 77.541482424371694, + 12.879608145019599 + ], + [ + 77.541416800532403, + 12.8796195523193 + ], + [ + 77.541172479310504, + 12.8797054950517 + ], + [ + 77.540992562416704, + 12.8798427622904 + ], + [ + 77.540991086639906, + 12.879843124140701 + ], + [ + 77.540014227466401, + 12.880082641308199 + ], + [ + 77.539929257799201, + 12.880103793807899 + ], + [ + 77.539906783064296, + 12.880100183342201 + ], + [ + 77.539902739104306, + 12.8800995336979 + ], + [ + 77.539894480108799, + 12.8800978932221 + ], + [ + 77.539875634445707, + 12.8800941499263 + ], + [ + 77.539822789614703, + 12.880104826658799 + ], + [ + 77.539182973768007, + 12.8799355342545 + ], + [ + 77.539056979715596, + 12.8799021965714 + ], + [ + 77.538695533933307, + 12.8799599100532 + ], + [ + 77.538279453686698, + 12.8800791373439 + ], + [ + 77.537518311756401, + 12.880263777924499 + ], + [ + 77.537518119880403, + 12.8802638244702 + ], + [ + 77.537518388018995, + 12.8802650677122 + ], + [ + 77.537567481505803, + 12.8804926925266 + ], + [ + 77.537592984885094, + 12.8806109371125 + ], + [ + 77.537573206457694, + 12.8819618253615 + ], + [ + 77.537568818061501, + 12.8825547739588 + ], + [ + 77.5375640341082, + 12.883279859715699 + ], + [ + 77.537563123250706, + 12.883280591996099 + ], + [ + 77.536866174215106, + 12.883840899591 + ], + [ + 77.536375321976195, + 12.8842355138984 + ], + [ + 77.536086676446004, + 12.884435946401201 + ], + [ + 77.535948368981806, + 12.8845362833724 + ], + [ + 77.535842117799902, + 12.884613364597699 + ], + [ + 77.535769131991302, + 12.8846277675358 + ], + [ + 77.534673237358405, + 12.8848440308207 + ], + [ + 77.534668554078806, + 12.8848449550065 + ], + [ + 77.534127751594895, + 12.8849555825122 + ], + [ + 77.533109654953904, + 12.885163842083401 + ], + [ + 77.532925276924999, + 12.885201765703 + ], + [ + 77.532724742295002, + 12.885258199726101 + ], + [ + 77.532580332611403, + 12.885298839784999 + ], + [ + 77.531595071489704, + 12.8851965664748 + ], + [ + 77.530396182650094, + 12.8847954055142 + ], + [ + 77.527916755164398, + 12.8839657399608 + ], + [ + 77.5279145689329, + 12.883965008474901 + ], + [ + 77.525545786246397, + 12.883820730976799 + ], + [ + 77.522329892886205, + 12.8836326455649 + ], + [ + 77.520319418476106, + 12.8833642817407 + ], + [ + 77.520253254996007, + 12.883355449342799 + ], + [ + 77.519536348461699, + 12.883259757227099 + ], + [ + 77.519033772324804, + 12.8831923152547 + ], + [ + 77.518318753821802, + 12.884328555187899 + ], + [ + 77.517799385435396, + 12.8853454586034 + ], + [ + 77.517313946878801, + 12.8861869843963 + ], + [ + 77.517300905900299, + 12.8862112546626 + ], + [ + 77.517076050808797, + 12.8866297232939 + ], + [ + 77.516654785334595, + 12.8873847999287 + ], + [ + 77.516299578393898, + 12.8886578581781 + ], + [ + 77.516288587314506, + 12.8886972511911 + ], + [ + 77.516111999080195, + 12.889169893017 + ], + [ + 77.516057542239196, + 12.889335561719401 + ], + [ + 77.516040998300696, + 12.8893858916877 + ], + [ + 77.515981284088596, + 12.889567555849 + ], + [ + 77.515903935168595, + 12.8897144856297 + ], + [ + 77.515723137896401, + 12.8900579223106 + ], + [ + 77.515775189024794, + 12.8901618279719 + ], + [ + 77.515927520629802, + 12.890465915156 + ], + [ + 77.515971672965307, + 12.890641043916199 + ], + [ + 77.516041597652006, + 12.8909183971247 + ], + [ + 77.516058178652102, + 12.890984164806399 + ], + [ + 77.5160913167459, + 12.891095812775101 + ], + [ + 77.516124627386205, + 12.891208042728 + ], + [ + 77.516197560772198, + 12.8914537678424 + ], + [ + 77.516181648849596, + 12.891647041635199 + ], + [ + 77.516059615443794, + 12.892151555426301 + ], + [ + 77.516030809449703, + 12.8922706457594 + ], + [ + 77.5159098699297, + 12.8934675730012 + ], + [ + 77.515888697859594, + 12.8936771087113 + ], + [ + 77.515875297185701, + 12.893809733358401 + ], + [ + 77.515893675636605, + 12.8938181848992 + ], + [ + 77.515970685894104, + 12.8938061505281 + ], + [ + 77.516075288466894, + 12.893790462629299 + ], + [ + 77.5161303150946, + 12.893767346074901 + ], + [ + 77.516184495382802, + 12.893774730397601 + ], + [ + 77.516239792899697, + 12.893778715877801 + ], + [ + 77.516286520732095, + 12.893759542552401 + ], + [ + 77.516341258067797, + 12.893737082760801 + ], + [ + 77.516357497508196, + 12.8937493494977 + ], + [ + 77.516415537279201, + 12.893739756230101 + ], + [ + 77.516470259237195, + 12.893743747199601 + ], + [ + 77.516509319835606, + 12.8937323911346 + ], + [ + 77.516550609792304, + 12.893720386922499 + ], + [ + 77.516585661602704, + 12.893714402873799 + ], + [ + 77.516629353170998, + 12.8936701643185 + ], + [ + 77.516632957692906, + 12.8936665146697 + ], + [ + 77.516698332741399, + 12.893642169080399 + ], + [ + 77.516776403631894, + 12.893621089398399 + ], + [ + 77.516817422982101, + 12.893602533577599 + ], + [ + 77.516855478819593, + 12.893585318346 + ], + [ + 77.516908406079494, + 12.8935249529556 + ], + [ + 77.516907722658601, + 12.8935037053744 + ], + [ + 77.516906735625597, + 12.8934730184518 + ], + [ + 77.517007610342901, + 12.8933720968092 + ], + [ + 77.517115318568699, + 12.893264338362799 + ], + [ + 77.517233090185798, + 12.8931841497948 + ], + [ + 77.517342285388196, + 12.8931672878889 + ], + [ + 77.5175039679538, + 12.8931612143782 + ], + [ + 77.517859688626899, + 12.893276373252601 + ], + [ + 77.517922118412301, + 12.8933028769277 + ], + [ + 77.518044100297004, + 12.893355911928699 + ], + [ + 77.518235181364403, + 12.8934116696974 + ], + [ + 77.518242076592898, + 12.8934104739541 + ], + [ + 77.518300898671001, + 12.8934053176924 + ], + [ + 77.518415755224297, + 12.893395249488099 + ], + [ + 77.518502583226294, + 12.8933865079629 + ], + [ + 77.518637032473194, + 12.8931898342667 + ], + [ + 77.518720167851995, + 12.892984619773999 + ], + [ + 77.518792757113005, + 12.892952918222299 + ], + [ + 77.518870891500995, + 12.892918794945199 + ], + [ + 77.519036647683606, + 12.892917198726201 + ], + [ + 77.519243042111498, + 12.892950221133701 + ], + [ + 77.519457821898399, + 12.893015913995599 + ], + [ + 77.519663820814799, + 12.8930094123166 + ], + [ + 77.519822039312203, + 12.893059838671 + ], + [ + 77.520109396093204, + 12.893245673075 + ], + [ + 77.520345777624001, + 12.893399246895401 + ], + [ + 77.520490771353593, + 12.8935085267982 + ], + [ + 77.520570140858894, + 12.893559712409701 + ], + [ + 77.520781738302603, + 12.8935949420458 + ], + [ + 77.520901000098803, + 12.8936062155759 + ], + [ + 77.520944404511894, + 12.893687110965599 + ], + [ + 77.520993091850798, + 12.8938357168536 + ], + [ + 77.520982705512907, + 12.8941780121768 + ], + [ + 77.520985270288406, + 12.8943191570973 + ], + [ + 77.521034680418097, + 12.894482437621299 + ], + [ + 77.521040180805997, + 12.8946867982316 + ], + [ + 77.520987541059597, + 12.8949481871157 + ], + [ + 77.520932400582197, + 12.895419660529001 + ], + [ + 77.520855744776597, + 12.895639494707 + ], + [ + 77.5208312815178, + 12.8957831588675 + ], + [ + 77.520811726736, + 12.895899671144401 + ], + [ + 77.520797601986303, + 12.8960985741535 + ], + [ + 77.520577453229194, + 12.896301721719301 + ], + [ + 77.520484063244197, + 12.896632394193199 + ], + [ + 77.520448134007196, + 12.8967806863068 + ], + [ + 77.520496303018504, + 12.896934943988301 + ], + [ + 77.520737829907105, + 12.8973719358117 + ], + [ + 77.520884769332895, + 12.8975602512701 + ], + [ + 77.521019451297207, + 12.8976741472288 + ], + [ + 77.521129306860701, + 12.8978379741619 + ], + [ + 77.521283837794101, + 12.8978647180957 + ], + [ + 77.521332522160606, + 12.897840532174 + ], + [ + 77.521400966154999, + 12.8977777575865 + ], + [ + 77.521513029125899, + 12.897759736629 + ], + [ + 77.521587398298493, + 12.897713845213399 + ], + [ + 77.521677003369305, + 12.897694911404299 + ], + [ + 77.521750034440799, + 12.8975818637425 + ], + [ + 77.521754090257403, + 12.897575585581899 + ], + [ + 77.521841121459005, + 12.8975295719996 + ], + [ + 77.521867611038303, + 12.8975235622447 + ], + [ + 77.521939901304293, + 12.897507161563 + ], + [ + 77.522066409445799, + 12.897494647858201 + ], + [ + 77.522176768173594, + 12.8974789017949 + ], + [ + 77.522299653185598, + 12.89744948259 + ], + [ + 77.522347997791002, + 12.897391419111299 + ], + [ + 77.522373129619695, + 12.8973719776388 + ], + [ + 77.5223915246129, + 12.8973695414864 + ], + [ + 77.522443933704295, + 12.897372424000899 + ], + [ + 77.522507910408805, + 12.897380841695 + ], + [ + 77.522550299164493, + 12.897417701520199 + ], + [ + 77.522658719587398, + 12.897495710476599 + ], + [ + 77.522753664665899, + 12.897550132916599 + ], + [ + 77.522888096397196, + 12.8975815872327 + ], + [ + 77.522915620552993, + 12.89757968408 + ], + [ + 77.522964023868695, + 12.8975763372346 + ], + [ + 77.523046363507405, + 12.8976365279511 + ], + [ + 77.523089699681506, + 12.8976530501309 + ], + [ + 77.523091300387804, + 12.8976534002883 + ], + [ + 77.523158924346106, + 12.8976681931419 + ], + [ + 77.523232470358906, + 12.897655060555699 + ], + [ + 77.523349712954797, + 12.8976369888598 + ], + [ + 77.523402804815206, + 12.8976254429282 + ], + [ + 77.5234203585362, + 12.8976216255032 + ], + [ + 77.523466726781507, + 12.897613673033099 + ], + [ + 77.523469201109705, + 12.8976132486687 + ], + [ + 77.523565814408499, + 12.897604410802399 + ], + [ + 77.523587816015393, + 12.897586061492101 + ], + [ + 77.523634314301603, + 12.8975472819712 + ], + [ + 77.523708182913396, + 12.897538197269 + ], + [ + 77.523753892962702, + 12.897532575626 + ], + [ + 77.523928252898202, + 12.897585101751099 + ], + [ + 77.523967798081799, + 12.8976253768133 + ], + [ + 77.524040802424494, + 12.8976156373005 + ], + [ + 77.524134796314399, + 12.8975752025872 + ], + [ + 77.524238302677901, + 12.8975075715137 + ], + [ + 77.524323555115402, + 12.8974683775874 + ], + [ + 77.524329819638893, + 12.8974762822217 + ], + [ + 77.524764407803701, + 12.8980246775495 + ], + [ + 77.5248360570627, + 12.8981669962418 + ], + [ + 77.5248749285564, + 12.898272555181199 + ], + [ + 77.524887165335898, + 12.8984154484424 + ], + [ + 77.524931331606894, + 12.8985103628941 + ], + [ + 77.525014899180505, + 12.898763797795199 + ], + [ + 77.525058959288401, + 12.8988481198925 + ], + [ + 77.525331111786798, + 12.8995923274174 + ], + [ + 77.525602439434394, + 12.900101223977799 + ], + [ + 77.5259388011238, + 12.9006829176955 + ], + [ + 77.525941279721707, + 12.9006921146867 + ], + [ + 77.526081164052997, + 12.901211213047601 + ], + [ + 77.526192220577201, + 12.901705451431001 + ], + [ + 77.526280286275906, + 12.902097370964301 + ], + [ + 77.526343777266106, + 12.9023799266488 + ], + [ + 77.5263437688171, + 12.902379928344599 + ], + [ + 77.525906974378003, + 12.902467596221999 + ], + [ + 77.525885738332093, + 12.904048685527201 + ], + [ + 77.525878896198904, + 12.9041550973888 + ], + [ + 77.525872296061493, + 12.904257745665999 + ], + [ + 77.525870880091006, + 12.9042976905475 + ], + [ + 77.526382882928402, + 12.904980711593799 + ], + [ + 77.5269209275273, + 12.9058547723623 + ], + [ + 77.527682979704906, + 12.9070927218738 + ], + [ + 77.527990574332705, + 12.9075973166069 + ], + [ + 77.528025986245396, + 12.9076554080262 + ], + [ + 77.528428390971101, + 12.9083155290959 + ], + [ + 77.529020773354006, + 12.9092024177932 + ], + [ + 77.529497773784101, + 12.9099165568612 + ], + [ + 77.530127725180094, + 12.9109967069595 + ], + [ + 77.531085716005904, + 12.913104013615801 + ], + [ + 77.531184414605505, + 12.913510243049 + ], + [ + 77.531243203525406, + 12.913752210217099 + ], + [ + 77.5313757146032, + 12.914297607872699 + ], + [ + 77.531540970747798, + 12.915719127431201 + ], + [ + 77.531604612170398, + 12.9162665598729 + ], + [ + 77.531610447493094, + 12.916316754081601 + ], + [ + 77.531782013045202, + 12.9177925079565 + ], + [ + 77.533130381131102, + 12.9180952404402 + ], + [ + 77.534427356862494, + 12.918359680722499 + ], + [ + 77.536429384292603, + 12.9192492406215 + ], + [ + 77.537849703388801, + 12.918562294088799 + ], + [ + 77.538157226240202, + 12.9182329249082 + ], + [ + 77.538278932872501, + 12.918154324688 + ], + [ + 77.538288330558501, + 12.918148255498 + ], + [ + 77.538361400370704, + 12.918101065715501 + ], + [ + 77.5383636342805, + 12.9180942679472 + ], + [ + 77.538488052057303, + 12.9179880295702 + ], + [ + 77.538690522229203, + 12.9178337824202 + ], + [ + 77.538698272023694, + 12.9178278778602 + ], + [ + 77.538832782646693, + 12.9177520334514 + ], + [ + 77.538845377165302, + 12.917745134940899 + ], + [ + 77.538890597743503, + 12.9177198497262 + ], + [ + 77.539090588539096, + 12.917629816400501 + ], + [ + 77.539127830694596, + 12.917612514125199 + ], + [ + 77.539159006472602, + 12.917597919775901 + ], + [ + 77.539251011854105, + 12.917554849171999 + ], + [ + 77.539273334307197, + 12.917542209335799 + ], + [ + 77.539293929989299, + 12.917529586291099 + ], + [ + 77.539304933893703, + 12.917521650882399 + ], + [ + 77.539308217010699, + 12.9175192832794 + ], + [ + 77.539321556236104, + 12.917525873326399 + ], + [ + 77.539344086167205, + 12.917537003903 + ], + [ + 77.539466738887498, + 12.917597924799299 + ], + [ + 77.539628138798406, + 12.917676538211801 + ], + [ + 77.539642608442705, + 12.917684302859101 + ], + [ + 77.539694087051302, + 12.9177086476447 + ], + [ + 77.539853520587101, + 12.9177635638656 + ], + [ + 77.539875461493196, + 12.9177701264815 + ], + [ + 77.540001545125904, + 12.9178287550271 + ], + [ + 77.540106297729395, + 12.917884202997399 + ], + [ + 77.540236063346697, + 12.917965382395201 + ], + [ + 77.540250544439104, + 12.917974276231201 + ], + [ + 77.540351439285104, + 12.9180467017172 + ], + [ + 77.540361269991294, + 12.9180511234304 + ], + [ + 77.540394791243301, + 12.9180643493654 + ], + [ + 77.540395511839193, + 12.9180644789163 + ], + [ + 77.540448423901296, + 12.918073991595101 + ], + [ + 77.540468501047698, + 12.918067020206299 + ], + [ + 77.540514376981605, + 12.918049633732499 + ], + [ + 77.5405765407166, + 12.9180490288672 + ], + [ + 77.540607241119801, + 12.9180679289206 + ], + [ + 77.540646632477205, + 12.918092391101199 + ], + [ + 77.540655323427501, + 12.9180979532325 + ], + [ + 77.540821289808306, + 12.9182296003166 + ], + [ + 77.540932865309301, + 12.918333543102801 + ], + [ + 77.540935190513693, + 12.918335779153599 + ], + [ + 77.540952706415098, + 12.918353388912401 + ], + [ + 77.540960779185795, + 12.918361504939 + ], + [ + 77.540965429595602, + 12.9183659770398 + ], + [ + 77.540977944446297, + 12.918368611507599 + ], + [ + 77.541011579640895, + 12.918375691959 + ], + [ + 77.541090042717698, + 12.9183929977613 + ], + [ + 77.541099297855496, + 12.9183974250435 + ], + [ + 77.541195337060898, + 12.918445051916599 + ], + [ + 77.541313442936499, + 12.918511662733501 + ], + [ + 77.541346434382305, + 12.9185294110402 + ], + [ + 77.541376029402599, + 12.9185528390986 + ], + [ + 77.5415146923105, + 12.918659905920199 + ], + [ + 77.541536150347895, + 12.918676093894099 + ], + [ + 77.541684654330197, + 12.918788125391901 + ], + [ + 77.5417435360186, + 12.918804492252701 + ], + [ + 77.5417735581687, + 12.9188132346878 + ], + [ + 77.541820756657401, + 12.918812775185399 + ], + [ + 77.541861623640102, + 12.9188123773167 + ], + [ + 77.541906675698598, + 12.9188082959494 + ], + [ + 77.541959394174398, + 12.9188035200541 + ], + [ + 77.541986976848705, + 12.9187987341483 + ], + [ + 77.541984030336096, + 12.9187919868032 + ], + [ + 77.541976319129603, + 12.918769475104099 + ], + [ + 77.541932714295498, + 12.918442391364101 + ], + [ + 77.541928748140094, + 12.9182210795489 + ], + [ + 77.541935524067696, + 12.9182178812465 + ], + [ + 77.542010751677097, + 12.9181823730754 + ], + [ + 77.542010751677097, + 12.9181823730754 + ], + [ + 77.542788685281707, + 12.9178151790424 + ], + [ + 77.542876491036196, + 12.917775783193299 + ], + [ + 77.542748711712903, + 12.917661055319099 + ], + [ + 77.542809850818898, + 12.917598185860999 + ], + [ + 77.542663924462005, + 12.917125222965099 + ], + [ + 77.543211869280398, + 12.9169533413274 + ], + [ + 77.543579857484701, + 12.916863363020401 + ], + [ + 77.543565882739799, + 12.9164093714492 + ], + [ + 77.544787704603607, + 12.916084727623801 + ], + [ + 77.544794208369595, + 12.9160834039048 + ], + [ + 77.544199032787802, + 12.9144332958546 + ], + [ + 77.544198126408602, + 12.914431102928001 + ], + [ + 77.543990384484005, + 12.9138801378491 + ], + [ + 77.543747215887507, + 12.913940674414301 + ], + [ + 77.543477311221395, + 12.913276371084899 + ], + [ + 77.543473528966501, + 12.913265849057399 + ], + [ + 77.543062730670798, + 12.9121229345416 + ], + [ + 77.542812493887496, + 12.91219150831 + ], + [ + 77.5423702254039, + 12.9108195381983 + ], + [ + 77.541932893275401, + 12.910964836597801 + ], + [ + 77.540414231908997, + 12.911517713316499 + ], + [ + 77.5395681807816, + 12.911664852643 + ], + [ + 77.5395681807655, + 12.911664852578999 + ], + [ + 77.539509683606695, + 12.9114319824329 + ], + [ + 77.539067032309703, + 12.911496717998 + ], + [ + 77.539047786601202, + 12.911232526907799 + ], + [ + 77.539422203113205, + 12.9111747897821 + ], + [ + 77.539394546965994, + 12.911022486121899 + ], + [ + 77.538874945139099, + 12.9110848746288 + ], + [ + 77.538729935821195, + 12.910509671001 + ], + [ + 77.539351289000905, + 12.9103316058802 + ], + [ + 77.539259922433502, + 12.9099982947636 + ], + [ + 77.538998793529998, + 12.9094773249172 + ], + [ + 77.538605873325395, + 12.908936121639901 + ], + [ + 77.538473080002206, + 12.9087384072905 + ], + [ + 77.538347004191394, + 12.908560348603 + ], + [ + 77.538249219578006, + 12.9084596198588 + ], + [ + 77.538412430257097, + 12.9085238559068 + ], + [ + 77.538747363975602, + 12.9086559014325 + ], + [ + 77.5389772591422, + 12.9086178104694 + ], + [ + 77.539162571679796, + 12.9085084393764 + ], + [ + 77.539391344050699, + 12.908359203770599 + ], + [ + 77.539642044809497, + 12.9082097548732 + ], + [ + 77.539703222495106, + 12.908176140099799 + ], + [ + 77.539834702167298, + 12.9081038978986 + ], + [ + 77.540867650651293, + 12.908656511971 + ], + [ + 77.5411001521434, + 12.908786229306999 + ], + [ + 77.541726625142203, + 12.908956106816101 + ], + [ + 77.542216893125797, + 12.9091523384061 + ], + [ + 77.542345121877403, + 12.909177890674099 + ], + [ + 77.542340298992698, + 12.9093034361035 + ], + [ + 77.542566226584896, + 12.9093550220858 + ], + [ + 77.542608980194302, + 12.909356003685 + ], + [ + 77.542749030734498, + 12.9093592194798 + ], + [ + 77.542821658922307, + 12.9093546602868 + ], + [ + 77.542894487247096, + 12.909369121371901 + ], + [ + 77.543055621999599, + 12.909399409809 + ], + [ + 77.543236873685998, + 12.909431019304201 + ], + [ + 77.543352930729995, + 12.9094370063596 + ], + [ + 77.543396176172195, + 12.9094963463423 + ], + [ + 77.543481516646395, + 12.9095014910915 + ], + [ + 77.543529946208295, + 12.909471139124401 + ], + [ + 77.543645925328704, + 12.9094939149086 + ], + [ + 77.543722628955905, + 12.909520937181201 + ], + [ + 77.543596794123502, + 12.909215226257 + ], + [ + 77.543431735492007, + 12.9092789838013 + ], + [ + 77.543141667005798, + 12.9087282514917 + ], + [ + 77.542976574973096, + 12.908688899596401 + ], + [ + 77.542813866717495, + 12.908426526531001 + ], + [ + 77.542582094146596, + 12.908154185990799 + ], + [ + 77.542236093008796, + 12.907674684201201 + ], + [ + 77.542101570609105, + 12.907384358658801 + ], + [ + 77.542509414895207, + 12.9072321833417 + ], + [ + 77.542547665416905, + 12.907339347569801 + ], + [ + 77.542770479112306, + 12.907275741225799 + ], + [ + 77.543519957585104, + 12.9089811302619 + ], + [ + 77.543795435653195, + 12.9088495040249 + ], + [ + 77.543191405601704, + 12.907562599140199 + ], + [ + 77.542871243979803, + 12.906626272173 + ], + [ + 77.543422707959195, + 12.906437702746601 + ], + [ + 77.544140018512607, + 12.908326200271199 + ], + [ + 77.543927275594996, + 12.9084162915167 + ], + [ + 77.544089236361003, + 12.9087538583479 + ], + [ + 77.544614442807898, + 12.9098218836582 + ], + [ + 77.544719835183002, + 12.909845128953799 + ], + [ + 77.5448059989304, + 12.909878421940901 + ], + [ + 77.545154324203807, + 12.9100002945619 + ], + [ + 77.545202036914105, + 12.9100115025609 + ], + [ + 77.545212265396998, + 12.910081441675301 + ], + [ + 77.545319871744894, + 12.9101317555472 + ], + [ + 77.545365583035405, + 12.9101803387596 + ], + [ + 77.545573352465098, + 12.910250689485 + ], + [ + 77.546134694264595, + 12.9104530035214 + ], + [ + 77.546816769401204, + 12.9107056168301 + ], + [ + 77.546761398135402, + 12.9097873766713 + ], + [ + 77.547332014646898, + 12.909695953061 + ], + [ + 77.547668019744194, + 12.9096256565535 + ], + [ + 77.547674617606305, + 12.909624275861599 + ], + [ + 77.548300807788095, + 12.909450744522401 + ], + [ + 77.548393110657003, + 12.9094206215462 + ], + [ + 77.548904418394201, + 12.909253754950701 + ], + [ + 77.5492187607299, + 12.9091511675433 + ], + [ + 77.5495856645868, + 12.9093695032028 + ], + [ + 77.550223005964597, + 12.9097796669818 + ], + [ + 77.550724787690697, + 12.9101831255207 + ], + [ + 77.551283651862605, + 12.9100119179252 + ], + [ + 77.552011062372003, + 12.9098699841672 + ], + [ + 77.553060036654699, + 12.9096413597095 + ], + [ + 77.553914748900397, + 12.9094654729571 + ], + [ + 77.553769266798597, + 12.9089758014922 + ], + [ + 77.554424185354705, + 12.908729117494 + ], + [ + 77.554438298175995, + 12.908668584536599 + ], + [ + 77.554406324972305, + 12.908576629624299 + ], + [ + 77.554322636368795, + 12.908335941090799 + ], + [ + 77.554225789371401, + 12.908095211279401 + ], + [ + 77.554121253838503, + 12.907834228612501 + ], + [ + 77.554016718567397, + 12.9075732458583 + ], + [ + 77.5539507123204, + 12.907408502209901 + ], + [ + 77.553931083171406, + 12.907359510159599 + ], + [ + 77.553914485796398, + 12.9073122405152 + ], + [ + 77.553832143407803, + 12.907082661940899 + ], + [ + 77.553746843136906, + 12.9068452069057 + ], + [ + 77.553657986511197, + 12.906597622591001 + ], + [ + 77.553626555497601, + 12.9065100461545 + ], + [ + 77.553562682017201, + 12.906332071649 + ], + [ + 77.553560244473204, + 12.9063252797673 + ], + [ + 77.552626099793898, + 12.9066732057907 + ], + [ + 77.552113679369597, + 12.9069447331386 + ], + [ + 77.552068688397398, + 12.906968571489999 + ], + [ + 77.551935620060306, + 12.907039077341301 + ], + [ + 77.551914381646199, + 12.9070449314163 + ], + [ + 77.551709649236997, + 12.907099109354 + ], + [ + 77.551630788404495, + 12.907119978095301 + ], + [ + 77.5514626075894, + 12.9071667936142 + ], + [ + 77.551115321516406, + 12.9072616603485 + ], + [ + 77.551016414448597, + 12.9072887758924 + ], + [ + 77.550350724542099, + 12.9074712747022 + ], + [ + 77.550040757270295, + 12.9075567412351 + ], + [ + 77.549674533480697, + 12.9076574377223 + ], + [ + 77.549277309063299, + 12.9077663415404 + ], + [ + 77.549271957268502, + 12.907749453747501 + ], + [ + 77.549213866071, + 12.9076404751172 + ], + [ + 77.549116254559195, + 12.907424054254999 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "247", + "group": "chikthogur", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "43", + "ward_name": "43 - Chikkathoguru", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಚಿಕ್ಕತೋಗುರು", + "dig_ward_n": "chikthogur", + "Assembly": "176 - Bangalore South", + "Slno": "43" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.626448740484506, + 12.8580033367335 + ], + [ + 77.626444690678099, + 12.858003041224199 + ], + [ + 77.626477087705894, + 12.858276095922401 + ], + [ + 77.626436060700499, + 12.8585677528615 + ], + [ + 77.626235405744595, + 12.8593422472333 + ], + [ + 77.626061983394393, + 12.8599480922532 + ], + [ + 77.625776890295697, + 12.860408295009901 + ], + [ + 77.625583969288996, + 12.8609233208856 + ], + [ + 77.625578354335602, + 12.8621668615505 + ], + [ + 77.625643874270693, + 12.8624460746033 + ], + [ + 77.625582852959994, + 12.8628221202344 + ], + [ + 77.625614206786395, + 12.8632723274798 + ], + [ + 77.625661461638998, + 12.863746266683499 + ], + [ + 77.625480834475098, + 12.863715652132001 + ], + [ + 77.625457190925999, + 12.863783580925601 + ], + [ + 77.6254246581031, + 12.864167304995499 + ], + [ + 77.625357461240498, + 12.8646184994212 + ], + [ + 77.625450220535896, + 12.8655095114094 + ], + [ + 77.625497808224296, + 12.8660710485793 + ], + [ + 77.625411994577505, + 12.867184559281901 + ], + [ + 77.625328946809105, + 12.867489358869101 + ], + [ + 77.625143118156203, + 12.868127042299299 + ], + [ + 77.625119688696202, + 12.8687628902186 + ], + [ + 77.625691613961195, + 12.868787876909201 + ], + [ + 77.625795442753898, + 12.8687367785164 + ], + [ + 77.625990984657903, + 12.868584645162899 + ], + [ + 77.626142162174503, + 12.868626361820899 + ], + [ + 77.626176071570001, + 12.868764818817899 + ], + [ + 77.626216134934893, + 12.869048837050499 + ], + [ + 77.626952904552994, + 12.8692030015394 + ], + [ + 77.626932958737001, + 12.869291940444301 + ], + [ + 77.627508518958805, + 12.8694431687207 + ], + [ + 77.6270787775386, + 12.8700701290753 + ], + [ + 77.626457092585596, + 12.871184164268801 + ], + [ + 77.626687366876993, + 12.8711967319402 + ], + [ + 77.627722201047305, + 12.871132883165901 + ], + [ + 77.628893883335095, + 12.871192671064801 + ], + [ + 77.629213312455505, + 12.869799224629 + ], + [ + 77.629404873216302, + 12.869487854201701 + ], + [ + 77.629495327790593, + 12.8692662371837 + ], + [ + 77.629578137710197, + 12.8689787116543 + ], + [ + 77.629584377088506, + 12.868687403885501 + ], + [ + 77.629990601761094, + 12.8687237142559 + ], + [ + 77.630277190711396, + 12.868740746806401 + ], + [ + 77.630516103988299, + 12.868719782832599 + ], + [ + 77.630637105097307, + 12.868450439312401 + ], + [ + 77.630286803073403, + 12.867660995949899 + ], + [ + 77.6301804376006, + 12.867468658690299 + ], + [ + 77.630181161151896, + 12.867093218354499 + ], + [ + 77.630198016126002, + 12.866485530197201 + ], + [ + 77.631859305444905, + 12.866813183038101 + ], + [ + 77.633419764128902, + 12.8669799177403 + ], + [ + 77.634226864015801, + 12.8669640025521 + ], + [ + 77.634226630415796, + 12.866962706693901 + ], + [ + 77.6343084984303, + 12.867473836370801 + ], + [ + 77.636687999505398, + 12.867263344801099 + ], + [ + 77.636690897340401, + 12.8673046981772 + ], + [ + 77.636790184092206, + 12.868531453032199 + ], + [ + 77.636934547072201, + 12.8697562163906 + ], + [ + 77.636935683939399, + 12.8697560983458 + ], + [ + 77.637188330809195, + 12.8697298887403 + ], + [ + 77.638044381634003, + 12.8696410784694 + ], + [ + 77.638197601948093, + 12.869625182281601 + ], + [ + 77.638226180009497, + 12.8699117276837 + ], + [ + 77.638525284604796, + 12.8698585202901 + ], + [ + 77.6385977488371, + 12.870148209233401 + ], + [ + 77.640540982626803, + 12.8698468526113 + ], + [ + 77.640604361834605, + 12.870362714717 + ], + [ + 77.640648694280202, + 12.8705545336156 + ], + [ + 77.640656607774901, + 12.8707012129035 + ], + [ + 77.640538881104604, + 12.8707535945427 + ], + [ + 77.640556292455898, + 12.870866048096 + ], + [ + 77.640370550140105, + 12.871025348248301 + ], + [ + 77.640214793608706, + 12.8710867844476 + ], + [ + 77.640491951105901, + 12.872306983211001 + ], + [ + 77.640593717808002, + 12.872223899773401 + ], + [ + 77.640860264343999, + 12.8720676330649 + ], + [ + 77.641047065123303, + 12.871990089229699 + ], + [ + 77.641188027840101, + 12.871952654059999 + ], + [ + 77.641299008610005, + 12.8719231810742 + ], + [ + 77.641301367753002, + 12.8719228347698 + ], + [ + 77.6419592410044, + 12.8718261822257 + ], + [ + 77.642384370178206, + 12.8716457295666 + ], + [ + 77.642462298366695, + 12.871613324195099 + ], + [ + 77.642859873771897, + 12.871549462658599 + ], + [ + 77.643709417807699, + 12.871395215982201 + ], + [ + 77.644405134268396, + 12.871279785124401 + ], + [ + 77.645062177134704, + 12.8711534504256 + ], + [ + 77.645555949591795, + 12.871043443407601 + ], + [ + 77.645635087111003, + 12.871016671275999 + ], + [ + 77.646365979879505, + 12.8708534514828 + ], + [ + 77.646665152799699, + 12.870790578549499 + ], + [ + 77.647554590501599, + 12.870599781009799 + ], + [ + 77.648303863630602, + 12.87048831627 + ], + [ + 77.648336603972197, + 12.870482339024599 + ], + [ + 77.648369344311504, + 12.8704763617755 + ], + [ + 77.6485148743064, + 12.870451219566901 + ], + [ + 77.648539191496994, + 12.8704470186252 + ], + [ + 77.648679084828302, + 12.870416600609399 + ], + [ + 77.648838722283301, + 12.8703818893903 + ], + [ + 77.648928654411804, + 12.870369934172601 + ], + [ + 77.649146773359604, + 12.870415590132099 + ], + [ + 77.649370833612394, + 12.8703944910965 + ], + [ + 77.649581426535306, + 12.870355969517499 + ], + [ + 77.649582793495497, + 12.8703800106467 + ], + [ + 77.649586029238705, + 12.8704369185582 + ], + [ + 77.649822533521004, + 12.870431036073899 + ], + [ + 77.650084968637302, + 12.870424508372301 + ], + [ + 77.650234584201797, + 12.8703788157499 + ], + [ + 77.650628855800207, + 12.8704042788438 + ], + [ + 77.650714957635302, + 12.870385000848501 + ], + [ + 77.651728791062297, + 12.8699025966552 + ], + [ + 77.651867388133894, + 12.8698677782277 + ], + [ + 77.653190126677302, + 12.869535475188201 + ], + [ + 77.653345321707704, + 12.8695420332387 + ], + [ + 77.653461341202302, + 12.8695469354303 + ], + [ + 77.6535660834612, + 12.8695513609629 + ], + [ + 77.653578178705104, + 12.8695518717445 + ], + [ + 77.653609351938101, + 12.869573764330401 + ], + [ + 77.653611162685806, + 12.869575036047699 + ], + [ + 77.653612566202199, + 12.8695760218977 + ], + [ + 77.653727180387804, + 12.8696565122377 + ], + [ + 77.653740087558205, + 12.869657178302599 + ], + [ + 77.653943991097293, + 12.8696677038147 + ], + [ + 77.655393473262095, + 12.8697425215117 + ], + [ + 77.655482799440904, + 12.8697471319804 + ], + [ + 77.655482495355301, + 12.8697412182636 + ], + [ + 77.655447339591504, + 12.8690575194945 + ], + [ + 77.655901506327496, + 12.869011585418701 + ], + [ + 77.655956103553905, + 12.8690060634439 + ], + [ + 77.656360004378598, + 12.868997451836799 + ], + [ + 77.656450315204395, + 12.8690037055788 + ], + [ + 77.656644502141603, + 12.8690171523081 + ], + [ + 77.656644502156993, + 12.8690172073713 + ], + [ + 77.656644659115202, + 12.869578387591501 + ], + [ + 77.656644659547894, + 12.8695783875984 + ], + [ + 77.657122969001506, + 12.8695859588584 + ], + [ + 77.657124910875993, + 12.8695507015772 + ], + [ + 77.657151470704605, + 12.869068473837901 + ], + [ + 77.657138962965007, + 12.868973743781099 + ], + [ + 77.657669635143606, + 12.868980783224901 + ], + [ + 77.657671162420002, + 12.8690711076061 + ], + [ + 77.657671125204104, + 12.8690803597108 + ], + [ + 77.657670208515896, + 12.8693082594465 + ], + [ + 77.657670209051801, + 12.869308293145099 + ], + [ + 77.657671914296102, + 12.869415520740599 + ], + [ + 77.657672632503903, + 12.8694290644359 + ], + [ + 77.657673072750796, + 12.8694708421603 + ], + [ + 77.657673072692205, + 12.869470849184401 + ], + [ + 77.657672818587599, + 12.869501334444699 + ], + [ + 77.657672819095495, + 12.8695013826423 + ], + [ + 77.657672997066896, + 12.869518271359899 + ], + [ + 77.657677623307606, + 12.869684223942301 + ], + [ + 77.657679563764205, + 12.8697045307288 + ], + [ + 77.657680270077506, + 12.869716945296 + ], + [ + 77.657683142928207, + 12.8697711200747 + ], + [ + 77.657683143191207, + 12.869771171784899 + ], + [ + 77.657684217192696, + 12.869982278617799 + ], + [ + 77.6576842173816, + 12.8699822826402 + ], + [ + 77.657684959207202, + 12.869998080567299 + ], + [ + 77.657685808314497, + 12.870024044665501 + ], + [ + 77.657687054361304, + 12.870033066011899 + ], + [ + 77.657689724943694, + 12.870068045619 + ], + [ + 77.657695609513794, + 12.870301491890499 + ], + [ + 77.657697098231296, + 12.8703605373779 + ], + [ + 77.657697636393905, + 12.8703818963929 + ], + [ + 77.657697672092695, + 12.8703852837757 + ], + [ + 77.657701529244207, + 12.8704236390886 + ], + [ + 77.657701524201499, + 12.870423639700601 + ], + [ + 77.657628854587699, + 12.870432459041901 + ], + [ + 77.657579681380895, + 12.8704384261389 + ], + [ + 77.657579689247498, + 12.870438480449099 + ], + [ + 77.657598300723606, + 12.870566971575499 + ], + [ + 77.657635802133697, + 12.8706851622219 + ], + [ + 77.657647993767497, + 12.8707309881089 + ], + [ + 77.657656175872503, + 12.870761744424 + ], + [ + 77.657656838639596, + 12.870769851123701 + ], + [ + 77.657660019562798, + 12.870808781534199 + ], + [ + 77.657660015741001, + 12.8708087844815 + ], + [ + 77.657436187762102, + 12.8709813970654 + ], + [ + 77.657273992699999, + 12.8711064790837 + ], + [ + 77.657151435759303, + 12.871200992737499 + ], + [ + 77.6570738075349, + 12.8712610710947 + ], + [ + 77.657073311608599, + 12.8712614564557 + ], + [ + 77.657056071778996, + 12.871265830314201 + ], + [ + 77.657052987026802, + 12.8712687027919 + ], + [ + 77.657044247926805, + 12.8712785851791 + ], + [ + 77.657026786861707, + 12.871297529492701 + ], + [ + 77.656998338629194, + 12.871319587238901 + ], + [ + 77.656975145970506, + 12.8713411824386 + ], + [ + 77.656897132935995, + 12.8714198909444 + ], + [ + 77.656875650860201, + 12.8714398047281 + ], + [ + 77.656842815887501, + 12.8714702444246 + ], + [ + 77.656751801993593, + 12.871554616271 + ], + [ + 77.656677384171999, + 12.8716468401652 + ], + [ + 77.656624896580993, + 12.8716902839331 + ], + [ + 77.656591854669102, + 12.8717222379983 + ], + [ + 77.656499632425806, + 12.871822157801001 + ], + [ + 77.656433126412594, + 12.8719162699285 + ], + [ + 77.656126785752093, + 12.872269273289699 + ], + [ + 77.656057015449207, + 12.8723496710462 + ], + [ + 77.655866467226502, + 12.872556403459299 + ], + [ + 77.655799613458797, + 12.8726289353457 + ], + [ + 77.6557231599338, + 12.872711881934199 + ], + [ + 77.655545634744698, + 12.872851666154601 + ], + [ + 77.655545659866704, + 12.872851701682 + ], + [ + 77.655577688941193, + 12.8728969972074 + ], + [ + 77.655577662162599, + 12.872897013665799 + ], + [ + 77.655277943183194, + 12.873081223678801 + ], + [ + 77.655266881365705, + 12.873088033121601 + ], + [ + 77.655152232739795, + 12.873158608573 + ], + [ + 77.654744529714193, + 12.873363667280699 + ], + [ + 77.654501273940198, + 12.8734860148375 + ], + [ + 77.654452569990696, + 12.8735081141579 + ], + [ + 77.654444867256998, + 12.873514385031999 + ], + [ + 77.654263837608596, + 12.8736054351986 + ], + [ + 77.654149246464499, + 12.8736630695497 + ], + [ + 77.654146205410697, + 12.873664763526801 + ], + [ + 77.654149659874903, + 12.8736777457228 + ], + [ + 77.654225771243006, + 12.8739637787899 + ], + [ + 77.654223853939996, + 12.8739871454869 + ], + [ + 77.654215107424207, + 12.874093741679999 + ], + [ + 77.654408599199797, + 12.8748853450206 + ], + [ + 77.654616640748003, + 12.875486360955 + ], + [ + 77.654619669328397, + 12.8754951104043 + ], + [ + 77.654655320591203, + 12.8756820130787 + ], + [ + 77.654719809888206, + 12.8768055546103 + ], + [ + 77.654824790384694, + 12.8768014841505 + ], + [ + 77.656504363142801, + 12.8764757924192 + ], + [ + 77.656554891882806, + 12.8768838181996 + ], + [ + 77.656557260899604, + 12.8768833605347 + ], + [ + 77.657286730176196, + 12.8767425389458 + ], + [ + 77.657899529885299, + 12.8766335393149 + ], + [ + 77.658257786561606, + 12.876453874626399 + ], + [ + 77.658972998745597, + 12.876470024579 + ], + [ + 77.660045088041301, + 12.876331626072901 + ], + [ + 77.659999989333798, + 12.8761436564861 + ], + [ + 77.659865708080801, + 12.875675873873799 + ], + [ + 77.660163277445207, + 12.8756459331334 + ], + [ + 77.659948826268504, + 12.8748231229757 + ], + [ + 77.659939955076297, + 12.8747790306412 + ], + [ + 77.659862436269194, + 12.8743937566515 + ], + [ + 77.659831328100296, + 12.8742162388716 + ], + [ + 77.659747776009993, + 12.8738011308241 + ], + [ + 77.659621916260704, + 12.873417579737501 + ], + [ + 77.659527447823393, + 12.8730074173102 + ], + [ + 77.659500059604596, + 12.8728760180066 + ], + [ + 77.659446595547294, + 12.872619517181599 + ], + [ + 77.659446255120798, + 12.8726178836818 + ], + [ + 77.659328563243903, + 12.872140742250499 + ], + [ + 77.659253190997006, + 12.8718317315022 + ], + [ + 77.659188913584003, + 12.8716507261079 + ], + [ + 77.658980197990701, + 12.871264668256099 + ], + [ + 77.658803489582795, + 12.8709566866551 + ], + [ + 77.658562031346804, + 12.8705041596677 + ], + [ + 77.658688875242007, + 12.8702674126072 + ], + [ + 77.658699654105007, + 12.8702616669216 + ], + [ + 77.6592063276602, + 12.870075585984599 + ], + [ + 77.659760200637606, + 12.869607886555199 + ], + [ + 77.661253764783794, + 12.868507592309999 + ], + [ + 77.662718530131002, + 12.8677517684019 + ], + [ + 77.663610631107602, + 12.867311086667501 + ], + [ + 77.665022083894996, + 12.8665237756379 + ], + [ + 77.665027775653499, + 12.866520600142399 + ], + [ + 77.666307174479599, + 12.866044664808699 + ], + [ + 77.666460069687005, + 12.865985970033799 + ], + [ + 77.666460069687005, + 12.865985970033799 + ], + [ + 77.666565008677395, + 12.8659627746915 + ], + [ + 77.665699761995199, + 12.864612183159901 + ], + [ + 77.665365062843307, + 12.8642039539153 + ], + [ + 77.665071852411501, + 12.863600047097201 + ], + [ + 77.664923913484898, + 12.8631263315756 + ], + [ + 77.664789143772197, + 12.862969539962 + ], + [ + 77.664727739578495, + 12.8627057641575 + ], + [ + 77.664576381166299, + 12.8624280346448 + ], + [ + 77.664129183102204, + 12.8625281926252 + ], + [ + 77.664086650444005, + 12.8624180827962 + ], + [ + 77.663837351463997, + 12.8619190984039 + ], + [ + 77.663717693530103, + 12.860783022061399 + ], + [ + 77.663271733154502, + 12.860359215133 + ], + [ + 77.662776731573302, + 12.8599591983937 + ], + [ + 77.662366056202401, + 12.859591272806799 + ], + [ + 77.661940155892495, + 12.8592485909455 + ], + [ + 77.661937746149604, + 12.859246654136999 + ], + [ + 77.661802537603805, + 12.8591795222597 + ], + [ + 77.661779881108401, + 12.8591618966352 + ], + [ + 77.661375194173303, + 12.858847330541099 + ], + [ + 77.661281688833199, + 12.858805166806899 + ], + [ + 77.6612808511276, + 12.858675408670299 + ], + [ + 77.660694375678304, + 12.8585541793614 + ], + [ + 77.660604956220496, + 12.858557913444301 + ], + [ + 77.660601603462396, + 12.858574564555401 + ], + [ + 77.6592972930804, + 12.8587112644611 + ], + [ + 77.658478249034204, + 12.858553301274201 + ], + [ + 77.657400151518203, + 12.858552804439601 + ], + [ + 77.657454213591294, + 12.8578261745098 + ], + [ + 77.656850395301007, + 12.8572063391137 + ], + [ + 77.656134938991897, + 12.8571000014558 + ], + [ + 77.656151313740196, + 12.8569801485982 + ], + [ + 77.656180393656896, + 12.8569836835657 + ], + [ + 77.656198280105997, + 12.856763355470401 + ], + [ + 77.656062613327805, + 12.8567385535532 + ], + [ + 77.6560560373469, + 12.856547668399401 + ], + [ + 77.655812123884502, + 12.8563978858536 + ], + [ + 77.655899937180195, + 12.856112317854 + ], + [ + 77.655446423584905, + 12.855837881370499 + ], + [ + 77.655438884574096, + 12.8558545956397 + ], + [ + 77.655410538233696, + 12.8558279134242 + ], + [ + 77.655402999220399, + 12.8558446276929 + ], + [ + 77.655318539054207, + 12.8561213905464 + ], + [ + 77.655276938944795, + 12.856213614451701 + ], + [ + 77.654359660289401, + 12.8558352930352 + ], + [ + 77.653134320382094, + 12.8556543051539 + ], + [ + 77.653055627083006, + 12.855337873240501 + ], + [ + 77.652835826227005, + 12.855238373465699 + ], + [ + 77.652818260378695, + 12.854978521129199 + ], + [ + 77.652755618209, + 12.8549606096717 + ], + [ + 77.652684544459703, + 12.854940287373401 + ], + [ + 77.6519732366, + 12.854736892813399 + ], + [ + 77.651982910617804, + 12.854971737664 + ], + [ + 77.6517214693814, + 12.854923257476401 + ], + [ + 77.651544649520702, + 12.854732455757301 + ], + [ + 77.6506223276904, + 12.854143788986301 + ], + [ + 77.650687829674496, + 12.8539527978501 + ], + [ + 77.649870602884704, + 12.853629352141001 + ], + [ + 77.649789606168497, + 12.8533157069238 + ], + [ + 77.649788060439306, + 12.853299840682 + ], + [ + 77.649767399905002, + 12.8530876272974 + ], + [ + 77.649942266242206, + 12.853101452674 + ], + [ + 77.649965704435402, + 12.852858775497999 + ], + [ + 77.650041091927605, + 12.852733526553999 + ], + [ + 77.6500727448974, + 12.8521500635908 + ], + [ + 77.649858052443804, + 12.8520861220785 + ], + [ + 77.6496545998545, + 12.8521064828091 + ], + [ + 77.649649352861999, + 12.8522620994289 + ], + [ + 77.649619817644194, + 12.852257944865499 + ], + [ + 77.649562869519997, + 12.853070365852901 + ], + [ + 77.649354416507194, + 12.852874559643301 + ], + [ + 77.648627122069598, + 12.8526730259863 + ], + [ + 77.648686014751803, + 12.852037024641501 + ], + [ + 77.648637113752997, + 12.8520308015258 + ], + [ + 77.6485095706999, + 12.8520145704175 + ], + [ + 77.648519395628099, + 12.8518976138889 + ], + [ + 77.648116701393903, + 12.8518340086317 + ], + [ + 77.648104570294095, + 12.8519560113964 + ], + [ + 77.647962273449394, + 12.8519354371745 + ], + [ + 77.647922481657702, + 12.852242004055199 + ], + [ + 77.647576262349304, + 12.8522426238988 + ], + [ + 77.647417254629204, + 12.852041766236299 + ], + [ + 77.647085822237202, + 12.8519340685624 + ], + [ + 77.646847796398006, + 12.8519817011243 + ], + [ + 77.646812771343306, + 12.851981137523101 + ], + [ + 77.646713532429004, + 12.851979540607299 + ], + [ + 77.6465872274932, + 12.8519125073166 + ], + [ + 77.646445162097095, + 12.851837109416699 + ], + [ + 77.646366095709197, + 12.851830842381601 + ], + [ + 77.646328538640503, + 12.851827865084999 + ], + [ + 77.646164420739396, + 12.8517077268226 + ], + [ + 77.645961133472596, + 12.851640391059099 + ], + [ + 77.645937592363694, + 12.851838477431601 + ], + [ + 77.645933623221197, + 12.8518380467893 + ], + [ + 77.645735172280297, + 12.8517849359189 + ], + [ + 77.645242584224505, + 12.851653105687699 + ], + [ + 77.645189991551604, + 12.8516390305921 + ], + [ + 77.645216758931696, + 12.8520687458161 + ], + [ + 77.644577007160706, + 12.851652081049201 + ], + [ + 77.6430910192244, + 12.850575526782199 + ], + [ + 77.642973907475394, + 12.8510553554773 + ], + [ + 77.642807950932905, + 12.8526869352172 + ], + [ + 77.642849207260696, + 12.854070339477699 + ], + [ + 77.642965938396301, + 12.856969911724599 + ], + [ + 77.642903518670806, + 12.8594489831146 + ], + [ + 77.642069118856199, + 12.862073198503101 + ], + [ + 77.641878894590704, + 12.863558128980801 + ], + [ + 77.641875052090199, + 12.863592710721299 + ], + [ + 77.641794999491495, + 12.8636284957788 + ], + [ + 77.641792507019304, + 12.8636542680715 + ], + [ + 77.641732253465904, + 12.8636706850185 + ], + [ + 77.641687633946006, + 12.8636764901304 + ], + [ + 77.641661201813406, + 12.863688306016799 + ], + [ + 77.641654588446897, + 12.863691262372001 + ], + [ + 77.641651715193802, + 12.8637012450968 + ], + [ + 77.641464906493795, + 12.8642768633936 + ], + [ + 77.641205964395795, + 12.8650079555059 + ], + [ + 77.640748393396805, + 12.865041058070799 + ], + [ + 77.639068796919503, + 12.864998183815 + ], + [ + 77.638533124882599, + 12.864104954534101 + ], + [ + 77.638472533868295, + 12.8639904927276 + ], + [ + 77.638486111568696, + 12.863460789348 + ], + [ + 77.637494908169998, + 12.862956676379101 + ], + [ + 77.637288020230798, + 12.8628994634092 + ], + [ + 77.636371447134707, + 12.8630729936013 + ], + [ + 77.635202656685493, + 12.863048530299601 + ], + [ + 77.634564475078307, + 12.862760683387799 + ], + [ + 77.634072148787297, + 12.862260826460799 + ], + [ + 77.634388906483494, + 12.861843669049 + ], + [ + 77.633001398320303, + 12.861484723168299 + ], + [ + 77.632360140043502, + 12.8611995466627 + ], + [ + 77.632312048535596, + 12.861173160150599 + ], + [ + 77.632309802825503, + 12.8611719278547 + ], + [ + 77.631821091686405, + 12.8609037823209 + ], + [ + 77.631693675650993, + 12.860833352717 + ], + [ + 77.631395443897503, + 12.860611068888399 + ], + [ + 77.631261411537096, + 12.8604399063404 + ], + [ + 77.631084180639107, + 12.860264803245601 + ], + [ + 77.630932454994607, + 12.8601993971056 + ], + [ + 77.630800117530299, + 12.860124236358599 + ], + [ + 77.630723416909802, + 12.860016889553 + ], + [ + 77.630722663247198, + 12.8600167552787 + ], + [ + 77.6306944350751, + 12.8599184856555 + ], + [ + 77.630676625578204, + 12.8596706718525 + ], + [ + 77.630683425102603, + 12.8594465128343 + ], + [ + 77.630669937892506, + 12.859321158102899 + ], + [ + 77.630641786144196, + 12.8592497318211 + ], + [ + 77.630595241143197, + 12.859166537861 + ], + [ + 77.630505568577306, + 12.8590359713384 + ], + [ + 77.630410193262605, + 12.858724830918501 + ], + [ + 77.630405743833094, + 12.8587001472161 + ], + [ + 77.630393745658907, + 12.858685765923999 + ], + [ + 77.6302767215995, + 12.858407826336 + ], + [ + 77.630075815263496, + 12.8581230064925 + ], + [ + 77.629841290419193, + 12.8578265713512 + ], + [ + 77.629800710759696, + 12.8577313660067 + ], + [ + 77.629705416796895, + 12.8576456739617 + ], + [ + 77.629457380349606, + 12.8575137064358 + ], + [ + 77.629404275518198, + 12.8574997959826 + ], + [ + 77.629350033481103, + 12.8574347806234 + ], + [ + 77.629282289499599, + 12.857353583087299 + ], + [ + 77.629268577726805, + 12.8573371482659 + ], + [ + 77.6292246834699, + 12.8572845369406 + ], + [ + 77.629199988113996, + 12.8572549365076 + ], + [ + 77.629190735052504, + 12.857243845866 + ], + [ + 77.629138963042294, + 12.857181791474501 + ], + [ + 77.629257252158396, + 12.8571786920647 + ], + [ + 77.629249150336506, + 12.857156401952301 + ], + [ + 77.629223867918995, + 12.8571232118013 + ], + [ + 77.627656050707301, + 12.8571924357044 + ], + [ + 77.627322773637502, + 12.857200056283 + ], + [ + 77.626937999098999, + 12.857206569775499 + ], + [ + 77.626881251540695, + 12.857240942391 + ], + [ + 77.626853691651704, + 12.8572416647525 + ], + [ + 77.626726372160704, + 12.857321728238899 + ], + [ + 77.626685061145693, + 12.857347707009099 + ], + [ + 77.626582361693394, + 12.857412289464699 + ], + [ + 77.626444184590795, + 12.8574991803311 + ], + [ + 77.626377351369399, + 12.857541207371099 + ], + [ + 77.626448740484506, + 12.8580033367335 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "248", + "group": "anjanapura", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "71", + "ward_name": "71 - Anjanapura", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಅಂಜನಾಪುರ", + "dig_ward_n": "anjanapura", + "Assembly": "176 - Bangalore South", + "Slno": "71" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.573537422649693, + 12.8393968608897 + ], + [ + 77.573427285560598, + 12.8390622281907 + ], + [ + 77.573427285560598, + 12.8390622281907 + ], + [ + 77.573138232053793, + 12.839130845926 + ], + [ + 77.570940412931904, + 12.839244162864 + ], + [ + 77.570555324129899, + 12.8392283531944 + ], + [ + 77.5705463823748, + 12.839229111093401 + ], + [ + 77.570127048680803, + 12.839264632578701 + ], + [ + 77.570039912483097, + 12.8392720156219 + ], + [ + 77.568851825595402, + 12.8393727204143 + ], + [ + 77.568741748910099, + 12.839382058489701 + ], + [ + 77.5683383425757, + 12.8394162911625 + ], + [ + 77.568139111412705, + 12.839434488477901 + ], + [ + 77.568054318272999, + 12.8394422382594 + ], + [ + 77.567324387021998, + 12.839508946435901 + ], + [ + 77.567234930945901, + 12.8395171237147 + ], + [ + 77.567043398119907, + 12.8395346378338 + ], + [ + 77.566882342672002, + 12.839549374792499 + ], + [ + 77.566861826691607, + 12.8395512521681 + ], + [ + 77.566567317465399, + 12.8395782000468 + ], + [ + 77.5656049111317, + 12.8396663228151 + ], + [ + 77.565604563362896, + 12.8396662584535 + ], + [ + 77.565594277319803, + 12.839667201884501 + ], + [ + 77.5655317116085, + 12.8396528482718 + ], + [ + 77.562763732009401, + 12.839017822901599 + ], + [ + 77.562557128508502, + 12.8389704224829 + ], + [ + 77.562556798634503, + 12.838972396153499 + ], + [ + 77.562537401149498, + 12.8390884508825 + ], + [ + 77.562464917008995, + 12.8395221273526 + ], + [ + 77.562432370812502, + 12.839716852774799 + ], + [ + 77.562675564029902, + 12.8402747380251 + ], + [ + 77.562307623402404, + 12.8404231774034 + ], + [ + 77.560359911820598, + 12.8412089397861 + ], + [ + 77.557405582340493, + 12.8418439705142 + ], + [ + 77.557398185925607, + 12.8426061328696 + ], + [ + 77.557371406165103, + 12.843201300459601 + ], + [ + 77.557346761952303, + 12.8441896742452 + ], + [ + 77.557101762737005, + 12.844435865731301 + ], + [ + 77.557100274283897, + 12.844437361914901 + ], + [ + 77.556954360896896, + 12.8445693575975 + ], + [ + 77.556630240113705, + 12.8448773579938 + ], + [ + 77.556564695827404, + 12.844939642263199 + ], + [ + 77.556428591185494, + 12.845072142113199 + ], + [ + 77.556373596233399, + 12.845182208976199 + ], + [ + 77.556323488590493, + 12.845282494307799 + ], + [ + 77.556283936210903, + 12.8453616545295 + ], + [ + 77.556213753084094, + 12.845490801892099 + ], + [ + 77.556128494653805, + 12.8456441969261 + ], + [ + 77.556125185817194, + 12.8456501504673 + ], + [ + 77.555943035716396, + 12.845977870556601 + ], + [ + 77.555669696949096, + 12.846471312394 + ], + [ + 77.555551632467598, + 12.846686472460901 + ], + [ + 77.555511211977702, + 12.846760135370101 + ], + [ + 77.5549370035517, + 12.847749504636599 + ], + [ + 77.554879274491697, + 12.847849151679 + ], + [ + 77.554491239474203, + 12.848026894453501 + ], + [ + 77.554481251196506, + 12.8480282827366 + ], + [ + 77.554463791895998, + 12.8479850564567 + ], + [ + 77.554424452932494, + 12.8478889725922 + ], + [ + 77.554328010108406, + 12.847876387947601 + ], + [ + 77.553442800591995, + 12.8477602024902 + ], + [ + 77.553231670019102, + 12.847732491077 + ], + [ + 77.553208186082898, + 12.8474955212967 + ], + [ + 77.553021007690901, + 12.847156889349201 + ], + [ + 77.551993494952001, + 12.8475650127835 + ], + [ + 77.551494214560805, + 12.848005059490401 + ], + [ + 77.5514940073909, + 12.8480052421985 + ], + [ + 77.551478125884898, + 12.8480037784985 + ], + [ + 77.550838789384699, + 12.847944864551 + ], + [ + 77.550549618286496, + 12.8479182175977 + ], + [ + 77.549734379490801, + 12.847879835136499 + ], + [ + 77.549647627711494, + 12.847875602310999 + ], + [ + 77.549609611608602, + 12.8478733922543 + ], + [ + 77.549134008645794, + 12.8478457399027 + ], + [ + 77.54821769102, + 12.847792461185501 + ], + [ + 77.548210112304702, + 12.847792020701201 + ], + [ + 77.545060490604897, + 12.8476088631813 + ], + [ + 77.545014460052599, + 12.8476059224617 + ], + [ + 77.544921543924104, + 12.8475999869497 + ], + [ + 77.544884926045796, + 12.847597646987801 + ], + [ + 77.544883931890894, + 12.8475975834472 + ], + [ + 77.544872756637005, + 12.847596869656501 + ], + [ + 77.544872588933998, + 12.8475989601128 + ], + [ + 77.544871262144, + 12.847615511055601 + ], + [ + 77.544865198555996, + 12.8476911752019 + ], + [ + 77.544778306037699, + 12.8476864226032 + ], + [ + 77.544723431146295, + 12.847735198384401 + ], + [ + 77.544726534315402, + 12.8477614521377 + ], + [ + 77.544712440317895, + 12.8477840627022 + ], + [ + 77.544638140994195, + 12.847845481206001 + ], + [ + 77.544516434269994, + 12.847946088561899 + ], + [ + 77.544368920684093, + 12.8480653299726 + ], + [ + 77.544368691375098, + 12.8480655092768 + ], + [ + 77.544360782530106, + 12.848105160807 + ], + [ + 77.544334180231402, + 12.8482385446484 + ], + [ + 77.544330566259305, + 12.8482565642315 + ], + [ + 77.544330555818703, + 12.8482567161162 + ], + [ + 77.544330518157906, + 12.848256908017801 + ], + [ + 77.544318145976305, + 12.8484508636936 + ], + [ + 77.544318142064299, + 12.8484509323956 + ], + [ + 77.544318851790806, + 12.8485209492263 + ], + [ + 77.544318857795204, + 12.848521088302901 + ], + [ + 77.544529957558794, + 12.8486412669183 + ], + [ + 77.544595512029503, + 12.8486786277197 + ], + [ + 77.544632803425998, + 12.848684742199 + ], + [ + 77.544894697327294, + 12.8487282371111 + ], + [ + 77.545002028154002, + 12.8487535920444 + ], + [ + 77.545092556381704, + 12.848775448122201 + ], + [ + 77.545161778617995, + 12.848791716846801 + ], + [ + 77.545200099553398, + 12.8488225176858 + ], + [ + 77.545200439328397, + 12.848822792659799 + ], + [ + 77.545210257562104, + 12.848991309019199 + ], + [ + 77.545211825997796, + 12.8490182289841 + ], + [ + 77.545211295108402, + 12.8490194035955 + ], + [ + 77.5451831161337, + 12.849081750559201 + ], + [ + 77.545145552037795, + 12.849180367590201 + ], + [ + 77.545136406799202, + 12.849243699398199 + ], + [ + 77.545146769334707, + 12.849301195284999 + ], + [ + 77.545158921639498, + 12.849307852556301 + ], + [ + 77.545207690187596, + 12.849350295381701 + ], + [ + 77.545350167847303, + 12.849440389956101 + ], + [ + 77.545605468733498, + 12.8496120757226 + ], + [ + 77.545628287461497, + 12.8496274211782 + ], + [ + 77.545648112938693, + 12.849653203675 + ], + [ + 77.545658282173406, + 12.849691502599899 + ], + [ + 77.545667458320295, + 12.8498596853376 + ], + [ + 77.545667981778607, + 12.8499116299304 + ], + [ + 77.545651299164604, + 12.849969388159 + ], + [ + 77.545580074069804, + 12.850154161710799 + ], + [ + 77.545570894817303, + 12.8502141058249 + ], + [ + 77.545567530911896, + 12.850355980043 + ], + [ + 77.545566454904602, + 12.850401339385099 + ], + [ + 77.545565688753896, + 12.850433645480599 + ], + [ + 77.545565644572903, + 12.8504355084486 + ], + [ + 77.545565951812705, + 12.8504659967639 + ], + [ + 77.545554083918901, + 12.8504875693793 + ], + [ + 77.545533031843107, + 12.8505114897797 + ], + [ + 77.545469422369607, + 12.850539363142801 + ], + [ + 77.545341555904997, + 12.8505953935472 + ], + [ + 77.545252251993602, + 12.850634525571801 + ], + [ + 77.545216757772806, + 12.8506500789554 + ], + [ + 77.545030042281596, + 12.8507388494368 + ], + [ + 77.544924621720497, + 12.850826964992899 + ], + [ + 77.544912481199006, + 12.850837113109799 + ], + [ + 77.544830459550099, + 12.8509214799387 + ], + [ + 77.544806883788397, + 12.850980434357201 + ], + [ + 77.544781414915406, + 12.8510800634243 + ], + [ + 77.544789782960194, + 12.851168070880099 + ], + [ + 77.544806537048601, + 12.851288747889701 + ], + [ + 77.544980094211695, + 12.851436137419901 + ], + [ + 77.545165474021701, + 12.851557437261601 + ], + [ + 77.545218993568199, + 12.8516145144396 + ], + [ + 77.545234342726602, + 12.851652763121001 + ], + [ + 77.545243834191197, + 12.851680904561499 + ], + [ + 77.545244164190706, + 12.8517136522459 + ], + [ + 77.545208822021095, + 12.851804342392599 + ], + [ + 77.545180646797505, + 12.85192093785 + ], + [ + 77.5452334359926, + 12.8521338711361 + ], + [ + 77.545373407370803, + 12.852317724999899 + ], + [ + 77.545482419109803, + 12.852513172562301 + ], + [ + 77.545510158965797, + 12.852581793177 + ], + [ + 77.545510534548995, + 12.852619057773 + ], + [ + 77.545505719804694, + 12.852655243391499 + ], + [ + 77.545503657058404, + 12.852678979559901 + ], + [ + 77.545503964355305, + 12.852709468774799 + ], + [ + 77.545505415604296, + 12.852720622516401 + ], + [ + 77.545506459593994, + 12.852728643353201 + ], + [ + 77.545526171559899, + 12.852743134412201 + ], + [ + 77.545621420832603, + 12.8528291675657 + ], + [ + 77.545706824833104, + 12.8528520558589 + ], + [ + 77.545806039370206, + 12.8528748091931 + ], + [ + 77.545823552964407, + 12.852899484718399 + ], + [ + 77.545859729871097, + 12.8530628879774 + ], + [ + 77.545860447011705, + 12.8531340285535 + ], + [ + 77.545853888360099, + 12.853225569673199 + ], + [ + 77.545804035104396, + 12.8533039779775 + ], + [ + 77.5457835292586, + 12.853382100563801 + ], + [ + 77.545794065869799, + 12.853742258775499 + ], + [ + 77.545754971751805, + 12.8541458126848 + ], + [ + 77.545764091782104, + 12.8543083491763 + ], + [ + 77.545801761446796, + 12.854505618120101 + ], + [ + 77.545906494789605, + 12.854685895017999 + ], + [ + 77.5459276789245, + 12.854722358621901 + ], + [ + 77.546183150292293, + 12.8550598101265 + ], + [ + 77.546410277563396, + 12.855382855021301 + ], + [ + 77.546447168292403, + 12.8554457398822 + ], + [ + 77.546447547106794, + 12.8554833025593 + ], + [ + 77.546448156892495, + 12.8555438590601 + ], + [ + 77.546448375437294, + 12.8555654381676 + ], + [ + 77.5464058601559, + 12.855686690289 + ], + [ + 77.546256226216997, + 12.8558575439884 + ], + [ + 77.5461067401137, + 12.856043077620001 + ], + [ + 77.545993352796998, + 12.856270046351 + ], + [ + 77.545933773888294, + 12.8564863693171 + ], + [ + 77.545915072859103, + 12.8565542706038 + ], + [ + 77.545919239557506, + 12.856967568598201 + ], + [ + 77.545993368566897, + 12.857298874890001 + ], + [ + 77.546046223406194, + 12.857460986689601 + ], + [ + 77.546101386153595, + 12.857566609067099 + ], + [ + 77.546190222196401, + 12.8576678641528 + ], + [ + 77.546258579798305, + 12.857745777176399 + ], + [ + 77.546384967280005, + 12.8578947521213 + ], + [ + 77.546414075555404, + 12.857984816632101 + ], + [ + 77.546415146246503, + 12.8580909641506 + ], + [ + 77.546413089102998, + 12.8581722965721 + ], + [ + 77.546391774172903, + 12.8582843081657 + ], + [ + 77.546348592084001, + 12.858396532102599 + ], + [ + 77.546341239522405, + 12.8584104202916 + ], + [ + 77.546301718060505, + 12.8584850757575 + ], + [ + 77.546186097322206, + 12.858604779121601 + ], + [ + 77.546067285595996, + 12.858765905093801 + ], + [ + 77.545982277628596, + 12.8588811877175 + ], + [ + 77.5459036958664, + 12.858997465898501 + ], + [ + 77.545799618587296, + 12.859151470460199 + ], + [ + 77.5457917498846, + 12.8591631138785 + ], + [ + 77.545732078917794, + 12.8592382296524 + ], + [ + 77.545697044583605, + 12.859245345830001 + ], + [ + 77.545652734661402, + 12.8592457760148 + ], + [ + 77.545626748148294, + 12.859236993582 + ], + [ + 77.545598390575094, + 12.8592214581245 + ], + [ + 77.545546640928094, + 12.859168882434201 + ], + [ + 77.545533295726102, + 12.8591418716866 + ], + [ + 77.545532962966007, + 12.859141198216401 + ], + [ + 77.545384490872394, + 12.858840688272201 + ], + [ + 77.545339702788297, + 12.858793690739301 + ], + [ + 77.545319673893601, + 12.8587880480938 + ], + [ + 77.545285450833902, + 12.8587784065893 + ], + [ + 77.545202619806901, + 12.8587825986158 + ], + [ + 77.545155523759206, + 12.8587920895657 + ], + [ + 77.545127161001403, + 12.858833022021299 + ], + [ + 77.545095920952207, + 12.8588739805956 + ], + [ + 77.545037035375898, + 12.8590270140154 + ], + [ + 77.5449967640007, + 12.8591425976237 + ], + [ + 77.544969459978105, + 12.8592885475685 + ], + [ + 77.544998485113993, + 12.859351847726099 + ], + [ + 77.545027716460197, + 12.859415597612299 + ], + [ + 77.545049479321094, + 12.8596333490951 + ], + [ + 77.545075687423505, + 12.8597211832639 + ], + [ + 77.545121181607698, + 12.859838193071701 + ], + [ + 77.545274690645002, + 12.859937214225299 + ], + [ + 77.545453160016706, + 12.860171513764501 + ], + [ + 77.545604782920904, + 12.8603688055556 + ], + [ + 77.545669814253003, + 12.860539833826699 + ], + [ + 77.545731615327597, + 12.860675883892799 + ], + [ + 77.545776779742795, + 12.860760145841599 + ], + [ + 77.545750359181696, + 12.8609365794021 + ], + [ + 77.545783740652197, + 12.8611079149182 + ], + [ + 77.545905771424799, + 12.861224181268501 + ], + [ + 77.545998505393797, + 12.861288782428399 + ], + [ + 77.546107067435699, + 12.8613249963414 + ], + [ + 77.546122730116195, + 12.861337266965201 + ], + [ + 77.546132421938594, + 12.8613785391922 + ], + [ + 77.546135959791798, + 12.8613936045543 + ], + [ + 77.546160167563798, + 12.8615684179764 + ], + [ + 77.546158544363607, + 12.861692661084 + ], + [ + 77.546143753047403, + 12.8618238081188 + ], + [ + 77.546179659119403, + 12.861960108560901 + ], + [ + 77.546213098116894, + 12.8621370909774 + ], + [ + 77.546240087573096, + 12.8622452454177 + ], + [ + 77.546344546547601, + 12.8625593155625 + ], + [ + 77.546430632903494, + 12.8627064236926 + ], + [ + 77.546501534249899, + 12.8627746246441 + ], + [ + 77.546584269621803, + 12.862817865147999 + ], + [ + 77.546740971764095, + 12.8628908791834 + ], + [ + 77.546961350852897, + 12.863000542605 + ], + [ + 77.547101974453298, + 12.8630771006204 + ], + [ + 77.547175787573806, + 12.863148661059499 + ], + [ + 77.547240243650094, + 12.863223816958699 + ], + [ + 77.547249748920805, + 12.863234901430101 + ], + [ + 77.547292059905203, + 12.8633214493374 + ], + [ + 77.547340484419905, + 12.8633864803921 + ], + [ + 77.547517813023205, + 12.863564321870699 + ], + [ + 77.547601306667204, + 12.863625624015301 + ], + [ + 77.547652198201206, + 12.8636499748359 + ], + [ + 77.547744488854093, + 12.8636705352524 + ], + [ + 77.5478628691708, + 12.863710040788501 + ], + [ + 77.547939046892793, + 12.8637307577473 + ], + [ + 77.547993744728501, + 12.863790080967201 + ], + [ + 77.548025919714803, + 12.8638417177461 + ], + [ + 77.548042671242897, + 12.8639047978264 + ], + [ + 77.548043355423999, + 12.8639725514451 + ], + [ + 77.548040945633304, + 12.8640188777212 + ], + [ + 77.548054073356496, + 12.8640650529572 + ], + [ + 77.548099045439201, + 12.864130117369401 + ], + [ + 77.548221375311201, + 12.8642757420394 + ], + [ + 77.548233297699895, + 12.8642906409018 + ], + [ + 77.548287559331399, + 12.864358450042101 + ], + [ + 77.548314635592703, + 12.864392285569201 + ], + [ + 77.548347933635895, + 12.864498119564701 + ], + [ + 77.548355141934707, + 12.864585009376 + ], + [ + 77.548333212041001, + 12.864636042778899 + ], + [ + 77.548302086108905, + 12.8646882949268 + ], + [ + 77.548248067021007, + 12.8647531923604 + ], + [ + 77.548109107151006, + 12.8648415023297 + ], + [ + 77.547976294837298, + 12.864911683074499 + ], + [ + 77.547935363078807, + 12.864961771847 + ], + [ + 77.547917250780003, + 12.8650489069342 + ], + [ + 77.547915000643201, + 12.865111042389801 + ], + [ + 77.547934367337106, + 12.865148122269501 + ], + [ + 77.547957736292204, + 12.8651914324189 + ], + [ + 77.547971480090993, + 12.865216904058901 + ], + [ + 77.548006423275595, + 12.8652140075351 + ], + [ + 77.548005919356697, + 12.8652807300953 + ], + [ + 77.548069540409998, + 12.865375328304101 + ], + [ + 77.548099164744499, + 12.865419376284899 + ], + [ + 77.548125116906505, + 12.865457965057001 + ], + [ + 77.548179991582302, + 12.8655918227199 + ], + [ + 77.548220521919305, + 12.8657868040558 + ], + [ + 77.548278049023494, + 12.866126175308199 + ], + [ + 77.548308864153299, + 12.8663280270853 + ], + [ + 77.548308978217307, + 12.866339319350701 + ], + [ + 77.548309582758506, + 12.866399168357001 + ], + [ + 77.548275505742495, + 12.8665011400794 + ], + [ + 77.548213994936802, + 12.866679044166 + ], + [ + 77.548205067430004, + 12.866763831285001 + ], + [ + 77.548231357641001, + 12.8668595693365 + ], + [ + 77.548257374117, + 12.8669282059442 + ], + [ + 77.5482962728057, + 12.866961707820201 + ], + [ + 77.548325357127396, + 12.8669758805217 + ], + [ + 77.548328083351095, + 12.8669772092165 + ], + [ + 77.548423805288905, + 12.8669954771219 + ], + [ + 77.548600184292397, + 12.8670219952949 + ], + [ + 77.548867613060096, + 12.867060050493601 + ], + [ + 77.549029856378596, + 12.8671115512571 + ], + [ + 77.549167696866306, + 12.8671971693876 + ], + [ + 77.549403846684797, + 12.867329263183599 + ], + [ + 77.549541504788394, + 12.867396813464101 + ], + [ + 77.549680556747305, + 12.867427976434101 + ], + [ + 77.549787812727899, + 12.867452013152301 + ], + [ + 77.549836717045693, + 12.867465878069501 + ], + [ + 77.550011181821901, + 12.8675153411581 + ], + [ + 77.550092379922404, + 12.867544124255501 + ], + [ + 77.550129011578903, + 12.867557109303601 + ], + [ + 77.550225612791607, + 12.867662326788601 + ], + [ + 77.550225801561794, + 12.867662690856299 + ], + [ + 77.550303093326605, + 12.867811774404901 + ], + [ + 77.550391418783093, + 12.8680661446482 + ], + [ + 77.550487344352803, + 12.8682752674287 + ], + [ + 77.550539664363995, + 12.8684407705015 + ], + [ + 77.550506376053903, + 12.8686206588666 + ], + [ + 77.5505206464575, + 12.8687797562729 + ], + [ + 77.5505260518851, + 12.8689728200297 + ], + [ + 77.550438383553697, + 12.8691250043377 + ], + [ + 77.550413355139, + 12.8694956700219 + ], + [ + 77.550296120430303, + 12.869626684741 + ], + [ + 77.550107517455501, + 12.8698713276339 + ], + [ + 77.550103246415404, + 12.869879147165101 + ], + [ + 77.550086637935493, + 12.869909557610899 + ], + [ + 77.549967379741304, + 12.870127921458501 + ], + [ + 77.549967397966, + 12.870186646746101 + ], + [ + 77.549966781238695, + 12.870410261248001 + ], + [ + 77.550022543091004, + 12.8705746015498 + ], + [ + 77.550013906349804, + 12.870631152402099 + ], + [ + 77.550009367112906, + 12.8706649059014 + ], + [ + 77.549987142030105, + 12.870830176003899 + ], + [ + 77.549994716885394, + 12.871237792494099 + ], + [ + 77.550009715497097, + 12.871286801854501 + ], + [ + 77.550073283612207, + 12.8714945162933 + ], + [ + 77.550024377087894, + 12.871666651372999 + ], + [ + 77.550034308693299, + 12.871681236063701 + ], + [ + 77.550104928338598, + 12.8717212047295 + ], + [ + 77.550111844977195, + 12.871726037814399 + ], + [ + 77.550117816584006, + 12.871730210628099 + ], + [ + 77.550187815801394, + 12.8717791233195 + ], + [ + 77.550215712061998, + 12.8718320037109 + ], + [ + 77.550246494398905, + 12.8718903563172 + ], + [ + 77.550275634946601, + 12.8719615559581 + ], + [ + 77.550311407525001, + 12.8720489606866 + ], + [ + 77.550372099108799, + 12.8720821505116 + ], + [ + 77.550483871562506, + 12.872143275148501 + ], + [ + 77.550638628505695, + 12.872307780663 + ], + [ + 77.550793362807795, + 12.872470027598601 + ], + [ + 77.550795049033596, + 12.872475411207599 + ], + [ + 77.550905174647895, + 12.872826937995599 + ], + [ + 77.550995388491501, + 12.8732676293955 + ], + [ + 77.551003077133004, + 12.873306619564501 + ], + [ + 77.551069402046394, + 12.8736429770616 + ], + [ + 77.551070064724897, + 12.8737084720228 + ], + [ + 77.551070510321196, + 12.8737525117379 + ], + [ + 77.551061069856203, + 12.873786483724199 + ], + [ + 77.550957218652798, + 12.873972915662801 + ], + [ + 77.550898109932007, + 12.8740790254051 + ], + [ + 77.550864354439, + 12.8741396226826 + ], + [ + 77.550848709277503, + 12.8741860777785 + ], + [ + 77.550884670765896, + 12.874270427667399 + ], + [ + 77.550966042462704, + 12.8744627514213 + ], + [ + 77.551035048850693, + 12.874684558264599 + ], + [ + 77.551038202203301, + 12.8747215363012 + ], + [ + 77.551053333490799, + 12.8748989537631 + ], + [ + 77.551038453925202, + 12.875021066836901 + ], + [ + 77.550992772274199, + 12.8751705839602 + ], + [ + 77.550926824563305, + 12.875329798438299 + ], + [ + 77.550920554674406, + 12.8753449374806 + ], + [ + 77.551006939673996, + 12.8753288202509 + ], + [ + 77.551054482902302, + 12.8753199503972 + ], + [ + 77.551110163968303, + 12.875309562183199 + ], + [ + 77.551200053788307, + 12.8752927917403 + ], + [ + 77.551287996452302, + 12.875338237793301 + ], + [ + 77.551543752975505, + 12.8753594622822 + ], + [ + 77.551552440411797, + 12.875445981320301 + ], + [ + 77.551658965232505, + 12.876506872624001 + ], + [ + 77.552022046022799, + 12.876611750716799 + ], + [ + 77.552006037212493, + 12.8767602542025 + ], + [ + 77.552000474463398, + 12.876811853012899 + ], + [ + 77.551587054259699, + 12.876816653060899 + ], + [ + 77.551473702715896, + 12.8768179693487 + ], + [ + 77.551395644976296, + 12.8768188757609 + ], + [ + 77.551202762037704, + 12.877323308714899 + ], + [ + 77.551370463684293, + 12.878425034376001 + ], + [ + 77.551453108847795, + 12.879197822933399 + ], + [ + 77.551270776555995, + 12.879672227802301 + ], + [ + 77.551173839083802, + 12.879924447434201 + ], + [ + 77.551052091718603, + 12.8803491340937 + ], + [ + 77.550923114057397, + 12.8807987365646 + ], + [ + 77.550894742347396, + 12.881123131978301 + ], + [ + 77.549883481689307, + 12.8814638788403 + ], + [ + 77.549716677421102, + 12.881474538186501 + ], + [ + 77.549661903475993, + 12.8814907323775 + ], + [ + 77.549446182719507, + 12.881554511266801 + ], + [ + 77.549347326647904, + 12.881583738595699 + ], + [ + 77.549175691685505, + 12.8816344832951 + ], + [ + 77.549175543650506, + 12.8816345270623 + ], + [ + 77.549202566648503, + 12.8819730646211 + ], + [ + 77.549171649388697, + 12.881989176391601 + ], + [ + 77.549170189091598, + 12.8819899237426 + ], + [ + 77.549140156620595, + 12.8820052937632 + ], + [ + 77.549118663067404, + 12.882213300834101 + ], + [ + 77.549269573828298, + 12.8823383168279 + ], + [ + 77.549172660666102, + 12.8826355250945 + ], + [ + 77.549160913513603, + 12.8826715523658 + ], + [ + 77.549145773116706, + 12.8827179826933 + ], + [ + 77.549145398270198, + 12.882717992522201 + ], + [ + 77.548961366638693, + 12.8827228179466 + ], + [ + 77.548957434648202, + 12.882722921044399 + ], + [ + 77.548840087487804, + 12.8827225479498 + ], + [ + 77.548269662380605, + 12.882720733584 + ], + [ + 77.5482696552547, + 12.8827212772742 + ], + [ + 77.548269397290596, + 12.8827409594165 + ], + [ + 77.548269225151202, + 12.8827540958321 + ], + [ + 77.548263490504496, + 12.883191726920099 + ], + [ + 77.548315772558098, + 12.8833079605875 + ], + [ + 77.548342390282897, + 12.8833671352523 + ], + [ + 77.548287819977503, + 12.883346188369501 + ], + [ + 77.548214355565804, + 12.8833179889343 + ], + [ + 77.548089888498893, + 12.8832702118057 + ], + [ + 77.548070566278, + 12.8833565447827 + ], + [ + 77.548070557453599, + 12.883356582814301 + ], + [ + 77.548055217740696, + 12.8834251220472 + ], + [ + 77.548051891626898, + 12.883439982161899 + ], + [ + 77.547992568580597, + 12.8834393128564 + ], + [ + 77.547760097885401, + 12.8834366888799 + ], + [ + 77.547729538787195, + 12.8834363439335 + ], + [ + 77.547729593025906, + 12.8834367277586 + ], + [ + 77.547797111213299, + 12.8839145249583 + ], + [ + 77.547602075493003, + 12.8841501960797 + ], + [ + 77.547350191598696, + 12.8843258808049 + ], + [ + 77.547341207602102, + 12.884332146981301 + ], + [ + 77.547278586481198, + 12.884375823930499 + ], + [ + 77.546898724296099, + 12.8845477918652 + ], + [ + 77.546840786379505, + 12.8844866784745 + ], + [ + 77.546831775447203, + 12.8844771738153 + ], + [ + 77.546766157728797, + 12.884407960737599 + ], + [ + 77.546754445050496, + 12.8843956059176 + ], + [ + 77.546690194023199, + 12.884439063731801 + ], + [ + 77.546656425324201, + 12.8844619040379 + ], + [ + 77.546615532077595, + 12.884489563231799 + ], + [ + 77.546600750033704, + 12.8844767631598 + ], + [ + 77.5464814019616, + 12.884373417152499 + ], + [ + 77.5457107500457, + 12.883693449418001 + ], + [ + 77.545597804536598, + 12.883593793875701 + ], + [ + 77.545578337092394, + 12.8835766166884 + ], + [ + 77.545496458839906, + 12.883504372771201 + ], + [ + 77.545392060961603, + 12.883254674843499 + ], + [ + 77.545163772279906, + 12.882705777366199 + ], + [ + 77.544921392719203, + 12.882072316054201 + ], + [ + 77.544851153793601, + 12.881913763091401 + ], + [ + 77.544721136051606, + 12.881620268444101 + ], + [ + 77.544495825678197, + 12.881137971884501 + ], + [ + 77.544454650989707, + 12.8810502835951 + ], + [ + 77.544413915009798, + 12.880949038955301 + ], + [ + 77.544090951700198, + 12.880143570318401 + ], + [ + 77.5440274841052, + 12.880002451766099 + ], + [ + 77.544027366894696, + 12.880374723964399 + ], + [ + 77.543294977919004, + 12.881461560308299 + ], + [ + 77.541297803492199, + 12.883972621672999 + ], + [ + 77.541704730196599, + 12.8853965425585 + ], + [ + 77.541765677124502, + 12.8859773391614 + ], + [ + 77.541384384706603, + 12.887036871209901 + ], + [ + 77.541261091845101, + 12.8878629350446 + ], + [ + 77.541262726729201, + 12.8887719788717 + ], + [ + 77.541456227177704, + 12.8897314953166 + ], + [ + 77.541753621412596, + 12.8904160754832 + ], + [ + 77.5420889431186, + 12.8910474807779 + ], + [ + 77.542330474687105, + 12.8914395563007 + ], + [ + 77.542670336735597, + 12.892015669294301 + ], + [ + 77.5410912123576, + 12.892519107064301 + ], + [ + 77.539213181344294, + 12.8930538818974 + ], + [ + 77.536454913316405, + 12.894166626087101 + ], + [ + 77.537056405970802, + 12.8954481560536 + ], + [ + 77.538758890835496, + 12.894840290025201 + ], + [ + 77.538901313145999, + 12.8950764124257 + ], + [ + 77.541562821231395, + 12.8943454433516 + ], + [ + 77.542050890105202, + 12.8942121348289 + ], + [ + 77.542151807802099, + 12.894084864192701 + ], + [ + 77.542366948594704, + 12.894028161248301 + ], + [ + 77.542505392916894, + 12.8940137314151 + ], + [ + 77.542458130905999, + 12.8938699815996 + ], + [ + 77.542733985087096, + 12.893738734781399 + ], + [ + 77.542822836833395, + 12.8939526203947 + ], + [ + 77.543007183734304, + 12.893889958746399 + ], + [ + 77.543080079804298, + 12.8938733215613 + ], + [ + 77.543367593282696, + 12.893835393139399 + ], + [ + 77.543476742997996, + 12.893818834887099 + ], + [ + 77.543433731773604, + 12.893694101226099 + ], + [ + 77.543423099014205, + 12.8936174068524 + ], + [ + 77.543530946650193, + 12.8931214535162 + ], + [ + 77.544244493966005, + 12.892359135353599 + ], + [ + 77.544637208449103, + 12.8914080451746 + ], + [ + 77.544672611923701, + 12.891322302021001 + ], + [ + 77.544948228129797, + 12.890626394143601 + ], + [ + 77.545249512243302, + 12.890059319870799 + ], + [ + 77.5452135663744, + 12.8898779960801 + ], + [ + 77.545198078326706, + 12.8897920911722 + ], + [ + 77.545289694755198, + 12.889695582900799 + ], + [ + 77.545386134927, + 12.889594245610899 + ], + [ + 77.5454041282905, + 12.889445863446699 + ], + [ + 77.545539019437598, + 12.889291563743701 + ], + [ + 77.545594882966597, + 12.8890328526617 + ], + [ + 77.545363745836198, + 12.8890245160338 + ], + [ + 77.545336854562194, + 12.888888248416899 + ], + [ + 77.545499886175705, + 12.8887251028187 + ], + [ + 77.545536024059402, + 12.8883993566384 + ], + [ + 77.545320255168903, + 12.887897676305 + ], + [ + 77.545256292689899, + 12.887457750628601 + ], + [ + 77.545727032074396, + 12.8873325706393 + ], + [ + 77.546802516400703, + 12.8870308435247 + ], + [ + 77.546841915230303, + 12.886798360617099 + ], + [ + 77.546860786379696, + 12.886600209769 + ], + [ + 77.547443730200698, + 12.8868267062032 + ], + [ + 77.5476089684622, + 12.886881984698199 + ], + [ + 77.5478231630821, + 12.8869618167463 + ], + [ + 77.547657855255693, + 12.887128967602001 + ], + [ + 77.5473725395087, + 12.8870117134216 + ], + [ + 77.547270508030607, + 12.887358011356801 + ], + [ + 77.547326905263105, + 12.8874302778468 + ], + [ + 77.547297423001694, + 12.887496553884199 + ], + [ + 77.547509479105798, + 12.88816746382 + ], + [ + 77.547521026060593, + 12.8882771434851 + ], + [ + 77.547640807410204, + 12.888653707509899 + ], + [ + 77.547577802920003, + 12.888845461571799 + ], + [ + 77.5474290103718, + 12.889040326380499 + ], + [ + 77.547426732520904, + 12.889054487852 + ], + [ + 77.547152478530904, + 12.8903923787785 + ], + [ + 77.546729541933004, + 12.8920788315066 + ], + [ + 77.546589959257304, + 12.892462199926999 + ], + [ + 77.546537444854295, + 12.8926064315012 + ], + [ + 77.546661101569597, + 12.8929556202444 + ], + [ + 77.547963283132304, + 12.8931444848773 + ], + [ + 77.548434050749705, + 12.893212761611601 + ], + [ + 77.548742794184193, + 12.893340066574501 + ], + [ + 77.548857865935702, + 12.8934800250685 + ], + [ + 77.548962386697298, + 12.893565830320499 + ], + [ + 77.549132436530599, + 12.8935660930232 + ], + [ + 77.549468820633194, + 12.8935719163588 + ], + [ + 77.549677760923103, + 12.8935903590083 + ], + [ + 77.549744120506702, + 12.893500968432299 + ], + [ + 77.549852030691994, + 12.8933918312194 + ], + [ + 77.550072551213006, + 12.8932941112632 + ], + [ + 77.549934282964998, + 12.893018859358399 + ], + [ + 77.549823712679995, + 12.8927285917439 + ], + [ + 77.550119573565496, + 12.8926267242063 + ], + [ + 77.550207654799095, + 12.892592302174499 + ], + [ + 77.550214951954402, + 12.892611430383599 + ], + [ + 77.550277475927402, + 12.892587070498401 + ], + [ + 77.550488845376194, + 12.8925019546888 + ], + [ + 77.550600425732796, + 12.892750612156901 + ], + [ + 77.5506408440732, + 12.8927717323007 + ], + [ + 77.550682742692402, + 12.8928314305266 + ], + [ + 77.551005020846404, + 12.892704274171001 + ], + [ + 77.551222442929699, + 12.8926099521158 + ], + [ + 77.551270345573002, + 12.8928299494406 + ], + [ + 77.551361776629804, + 12.8928260668749 + ], + [ + 77.5521191785176, + 12.8927056366957 + ], + [ + 77.553053256014607, + 12.892410949477499 + ], + [ + 77.552891578984301, + 12.892249830988501 + ], + [ + 77.550931201979296, + 12.8899612656909 + ], + [ + 77.552268019702296, + 12.8895841518382 + ], + [ + 77.553004309620306, + 12.8893994811949 + ], + [ + 77.553707797427407, + 12.8892395901659 + ], + [ + 77.554011771904698, + 12.8891365649626 + ], + [ + 77.554296027228304, + 12.8890549058601 + ], + [ + 77.554323920862402, + 12.8890467255221 + ], + [ + 77.553949276828504, + 12.887335292978401 + ], + [ + 77.555199403169397, + 12.886507490329301 + ], + [ + 77.555572856981598, + 12.886405484769201 + ], + [ + 77.556105989237807, + 12.886144287529 + ], + [ + 77.556334020487995, + 12.886044783831901 + ], + [ + 77.556633891433094, + 12.885996345084401 + ], + [ + 77.556662635252394, + 12.8859147162496 + ], + [ + 77.556292191787094, + 12.8857259338965 + ], + [ + 77.555725541580799, + 12.8855620053665 + ], + [ + 77.555719587945106, + 12.885560282778201 + ], + [ + 77.550896669927596, + 12.8841204465229 + ], + [ + 77.550955134350502, + 12.884027859487 + ], + [ + 77.551627134328101, + 12.883903985297399 + ], + [ + 77.551890907962203, + 12.883841113581401 + ], + [ + 77.552416458255806, + 12.8837472455621 + ], + [ + 77.552904122295303, + 12.8836912914221 + ], + [ + 77.553702073580496, + 12.8836994358012 + ], + [ + 77.554618451284398, + 12.8837212124948 + ], + [ + 77.554750425310303, + 12.883328696123399 + ], + [ + 77.5550545456029, + 12.8823539479784 + ], + [ + 77.555310390043601, + 12.8815095259971 + ], + [ + 77.555496785990002, + 12.8815930367016 + ], + [ + 77.556338578776007, + 12.88146535572 + ], + [ + 77.556774915224494, + 12.8813803153765 + ], + [ + 77.556822979846601, + 12.881503171194201 + ], + [ + 77.556856470711494, + 12.8816821256196 + ], + [ + 77.556891485996999, + 12.8818968461684 + ], + [ + 77.556810952493095, + 12.8821888928634 + ], + [ + 77.556836317589898, + 12.882337297469199 + ], + [ + 77.556976835028195, + 12.882498473397 + ], + [ + 77.557079003938597, + 12.8827221739823 + ], + [ + 77.557160264880494, + 12.883046477017601 + ], + [ + 77.557198364653999, + 12.8832839596142 + ], + [ + 77.557235696710705, + 12.8835166532026 + ], + [ + 77.557280896269802, + 12.883645396020199 + ], + [ + 77.557326023832601, + 12.8837739353414 + ], + [ + 77.557651490389304, + 12.884108003216401 + ], + [ + 77.558938872821699, + 12.8848053652939 + ], + [ + 77.559527263913793, + 12.8855547922652 + ], + [ + 77.560163607829296, + 12.8859561498437 + ], + [ + 77.560660660168793, + 12.886481469664201 + ], + [ + 77.561603309583006, + 12.887489375264 + ], + [ + 77.562088628808496, + 12.888228699366801 + ], + [ + 77.562341877329203, + 12.8885625286179 + ], + [ + 77.5627220500172, + 12.888891366117001 + ], + [ + 77.562693081501806, + 12.8889179450379 + ], + [ + 77.563206680931998, + 12.8893455771174 + ], + [ + 77.563499326195299, + 12.889624264860499 + ], + [ + 77.563604645067997, + 12.889539950456999 + ], + [ + 77.564052229466995, + 12.888672467291901 + ], + [ + 77.564460592552706, + 12.8879249552029 + ], + [ + 77.564631320622397, + 12.8875373563419 + ], + [ + 77.564795127283901, + 12.887348171183501 + ], + [ + 77.564970469625806, + 12.8871889787942 + ], + [ + 77.564971449265997, + 12.8871884162754 + ], + [ + 77.565150426239796, + 12.887057472037799 + ], + [ + 77.5655691714379, + 12.886831372702201 + ], + [ + 77.565218486754105, + 12.886072324932799 + ], + [ + 77.564853959253895, + 12.8853571127488 + ], + [ + 77.5645078888423, + 12.885075642147401 + ], + [ + 77.564378689221996, + 12.884628057748399 + ], + [ + 77.564401760582797, + 12.884503472400199 + ], + [ + 77.564489431753699, + 12.884434258317899 + ], + [ + 77.564083375804103, + 12.883848245754301 + ], + [ + 77.563501977512601, + 12.8837328889504 + ], + [ + 77.562703984477494, + 12.8839587634968 + ], + [ + 77.562584248115499, + 12.8835655186432 + ], + [ + 77.562708865746501, + 12.883540393935499 + ], + [ + 77.562843536192403, + 12.8833060107787 + ], + [ + 77.562860835996901, + 12.883210225540299 + ], + [ + 77.563043902778901, + 12.883171103918899 + ], + [ + 77.563040037916593, + 12.883139071655799 + ], + [ + 77.563026485262796, + 12.8830674805043 + ], + [ + 77.562994776760902, + 12.8829784614035 + ], + [ + 77.562976851607004, + 12.8829602659657 + ], + [ + 77.562969485530601, + 12.8828866826343 + ], + [ + 77.562859917033904, + 12.882642620584599 + ], + [ + 77.562809306907994, + 12.882580078983199 + ], + [ + 77.562745679104097, + 12.8825354629711 + ], + [ + 77.562671683434004, + 12.882385319520299 + ], + [ + 77.562625680876195, + 12.882249192925499 + ], + [ + 77.562616207252901, + 12.8821950057928 + ], + [ + 77.562626414754305, + 12.8821458778063 + ], + [ + 77.562642192242393, + 12.882117709771499 + ], + [ + 77.562671710054502, + 12.882104728099099 + ], + [ + 77.562738006169695, + 12.882062489210799 + ], + [ + 77.562966703488698, + 12.8819114178772 + ], + [ + 77.563097762998197, + 12.881812081323 + ], + [ + 77.563205161720802, + 12.8816674492549 + ], + [ + 77.563241372609895, + 12.8815427768559 + ], + [ + 77.563257883644994, + 12.8814112910158 + ], + [ + 77.563254564931398, + 12.881369664988499 + ], + [ + 77.563251746507703, + 12.881334309492701 + ], + [ + 77.563229779502393, + 12.8812802447215 + ], + [ + 77.563199647123596, + 12.881226823652201 + ], + [ + 77.563194036193806, + 12.8811920628676 + ], + [ + 77.562777834007804, + 12.881151883606 + ], + [ + 77.562491861212607, + 12.881140745745 + ], + [ + 77.562953064436599, + 12.881106649984201 + ], + [ + 77.562953752048401, + 12.880946223334 + ], + [ + 77.562960652770201, + 12.880883580631 + ], + [ + 77.562794727550099, + 12.8803043937609 + ], + [ + 77.562722996907596, + 12.880206966683801 + ], + [ + 77.562650754015806, + 12.8798310851152 + ], + [ + 77.5624431941865, + 12.8798331166163 + ], + [ + 77.562411554494105, + 12.879583850005799 + ], + [ + 77.561998730673494, + 12.8778022534214 + ], + [ + 77.562498511806993, + 12.8773527468355 + ], + [ + 77.561745955610107, + 12.8766645001903 + ], + [ + 77.5616207393781, + 12.8754145653641 + ], + [ + 77.560297698814196, + 12.874733913833399 + ], + [ + 77.559805136039301, + 12.874884470569601 + ], + [ + 77.559677305248798, + 12.8744010456428 + ], + [ + 77.559361266392301, + 12.8743404209517 + ], + [ + 77.559145263382703, + 12.874130382972901 + ], + [ + 77.558872180592004, + 12.8738705832705 + ], + [ + 77.558596137217293, + 12.873463084150901 + ], + [ + 77.558131750891505, + 12.872790652912499 + ], + [ + 77.558059960703901, + 12.8726833485412 + ], + [ + 77.557910579549301, + 12.8724600661787 + ], + [ + 77.557643911447798, + 12.8722078516079 + ], + [ + 77.557063722640294, + 12.871455752198401 + ], + [ + 77.556761283912707, + 12.871183806009 + ], + [ + 77.556363285763197, + 12.8707653514673 + ], + [ + 77.556093127893106, + 12.8701968438346 + ], + [ + 77.557463961002497, + 12.8699832249421 + ], + [ + 77.558362841460195, + 12.8698857060128 + ], + [ + 77.558390289422505, + 12.870076577367399 + ], + [ + 77.558387197772106, + 12.8702290639593 + ], + [ + 77.558908031459595, + 12.870130683396299 + ], + [ + 77.559824724076094, + 12.8699601705509 + ], + [ + 77.5606792056942, + 12.8698300833601 + ], + [ + 77.562017802624197, + 12.8695553760764 + ], + [ + 77.562018097607293, + 12.869555316274001 + ], + [ + 77.561827115887297, + 12.868562806205301 + ], + [ + 77.563025256796706, + 12.8683599506967 + ], + [ + 77.563897121916497, + 12.8682296841975 + ], + [ + 77.564319552021502, + 12.868148184972 + ], + [ + 77.565331321760596, + 12.867920975569 + ], + [ + 77.565801766482394, + 12.867771878083699 + ], + [ + 77.565221928748898, + 12.8666686480985 + ], + [ + 77.565183502929699, + 12.866483768110699 + ], + [ + 77.565431875990001, + 12.866051063634 + ], + [ + 77.565521042984599, + 12.865835053713401 + ], + [ + 77.565710037859205, + 12.865253530816901 + ], + [ + 77.565702829704406, + 12.864844244140899 + ], + [ + 77.565672386024005, + 12.8645457411665 + ], + [ + 77.565509998462304, + 12.864149925205901 + ], + [ + 77.565215305241495, + 12.8636209438121 + ], + [ + 77.564955202690697, + 12.863199191986901 + ], + [ + 77.564677146018099, + 12.862808689887901 + ], + [ + 77.564419640887394, + 12.862553379760801 + ], + [ + 77.564597290365398, + 12.862425333708501 + ], + [ + 77.564778400547397, + 12.862364194602501 + ], + [ + 77.565054103308697, + 12.862371116010699 + ], + [ + 77.565300966869003, + 12.8623122840407 + ], + [ + 77.565970036331393, + 12.862044656255801 + ], + [ + 77.566084239567203, + 12.861966213629101 + ], + [ + 77.566197289235006, + 12.862228073573901 + ], + [ + 77.566462609883899, + 12.862824468249899 + ], + [ + 77.5667683054142, + 12.863532759025601 + ], + [ + 77.566840980200595, + 12.863539103649799 + ], + [ + 77.566936149563801, + 12.8635933213477 + ], + [ + 77.566973063741003, + 12.863717906695801 + ], + [ + 77.568178600551406, + 12.863690730788299 + ], + [ + 77.569162535878505, + 12.863406443325401 + ], + [ + 77.569264049865893, + 12.8636879139268 + ], + [ + 77.569333263948195, + 12.864006298705499 + ], + [ + 77.5704575571432, + 12.8638852311986 + ], + [ + 77.571215606642994, + 12.8637376026849 + ], + [ + 77.571673097850294, + 12.863615058384701 + ], + [ + 77.571709642876797, + 12.863511400590101 + ], + [ + 77.571695375821093, + 12.863323655315 + ], + [ + 77.571692273791996, + 12.863282835118801 + ], + [ + 77.571666481189695, + 12.8629658127618 + ], + [ + 77.571617328664701, + 12.862303632280399 + ], + [ + 77.571271258253105, + 12.8623359321855 + ], + [ + 77.571208965579004, + 12.8612331211406 + ], + [ + 77.570934416385796, + 12.860457923418601 + ], + [ + 77.571349700879694, + 12.860282581076699 + ], + [ + 77.571441986322796, + 12.860349488022999 + ], + [ + 77.572376376434093, + 12.859964196298099 + ], + [ + 77.572701682621002, + 12.8597773182758 + ], + [ + 77.573354378583304, + 12.859606769620701 + ], + [ + 77.573984658646594, + 12.8594677698969 + ], + [ + 77.574054384223899, + 12.859452056456799 + ], + [ + 77.575700959521598, + 12.8592086092327 + ], + [ + 77.575716798254206, + 12.859210245194101 + ], + [ + 77.575680195296897, + 12.8590101955301 + ], + [ + 77.576554599870207, + 12.8587933247388 + ], + [ + 77.5768245347912, + 12.860002264043301 + ], + [ + 77.577830446120998, + 12.859619279454501 + ], + [ + 77.577798146215898, + 12.858728724928699 + ], + [ + 77.579306651554106, + 12.8585079156624 + ], + [ + 77.579651787485503, + 12.858430736673499 + ], + [ + 77.579920711407098, + 12.858368811700601 + ], + [ + 77.579999208297593, + 12.858400113962899 + ], + [ + 77.580061936285901, + 12.858374825462599 + ], + [ + 77.580602588151095, + 12.8583615664175 + ], + [ + 77.580339266285804, + 12.856361844510101 + ], + [ + 77.580284536544696, + 12.8556404102138 + ], + [ + 77.580330373223603, + 12.855254838047401 + ], + [ + 77.580620652661693, + 12.8550665341646 + ], + [ + 77.580703561321599, + 12.855009970260699 + ], + [ + 77.580801461027093, + 12.8549452948102 + ], + [ + 77.580140840241498, + 12.8535999227076 + ], + [ + 77.580168631614001, + 12.8533837456488 + ], + [ + 77.579041519936595, + 12.8505402928373 + ], + [ + 77.578743296975006, + 12.850468749044699 + ], + [ + 77.576925784337604, + 12.8499798442421 + ], + [ + 77.576593698120902, + 12.8499052170438 + ], + [ + 77.576572233633698, + 12.8498620964194 + ], + [ + 77.575703812469996, + 12.8481174704726 + ], + [ + 77.575838718788106, + 12.8465396702024 + ], + [ + 77.575366523342197, + 12.844805864508301 + ], + [ + 77.575270758901596, + 12.8445109962543 + ], + [ + 77.575052475811304, + 12.8439149035884 + ], + [ + 77.573925977245906, + 12.841573500214899 + ], + [ + 77.573791826311606, + 12.8410383785553 + ], + [ + 77.573652651961297, + 12.8403514197823 + ], + [ + 77.573551769607604, + 12.8398950434848 + ], + [ + 77.573444934900394, + 12.8398790247122 + ], + [ + 77.573341675203395, + 12.8395307553364 + ], + [ + 77.573537422649693, + 12.8393968608897 + ], + [ + 77.573537422649693, + 12.8393968608897 + ], + [ + 77.573537422649693, + 12.8393968608897 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "250", + "group": "VIBHOOTIPURA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "48", + "ward_name": "48 - Vibhootipura", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ವಿಭೂತಿಪುರ", + "dig_ward_n": "VIBHOOTIPURA", + "Assembly": "151 - K.R. Pura", + "Slno": "48" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.664157745871904, + 12.944445270439999 + ], + [ + 77.663862993789493, + 12.944443766779299 + ], + [ + 77.6637637514538, + 12.944450869617899 + ], + [ + 77.6634396324514, + 12.9444740667634 + ], + [ + 77.663072319295594, + 12.944469916128501 + ], + [ + 77.662741688189499, + 12.9444507100387 + ], + [ + 77.662714432666107, + 12.944449333407301 + ], + [ + 77.662611519870595, + 12.9444441354264 + ], + [ + 77.662535973103004, + 12.944485559948401 + ], + [ + 77.662507673051707, + 12.9445310186747 + ], + [ + 77.662492515794497, + 12.944675716173601 + ], + [ + 77.662502528837294, + 12.9448054763836 + ], + [ + 77.6625545730586, + 12.9454779711848 + ], + [ + 77.6625610860103, + 12.946307895417201 + ], + [ + 77.662572418568999, + 12.9465076549341 + ], + [ + 77.662484699918096, + 12.946649706224701 + ], + [ + 77.662266943455506, + 12.9467433997516 + ], + [ + 77.661870642751495, + 12.946882957661799 + ], + [ + 77.661031643746597, + 12.947184001368999 + ], + [ + 77.660395722416595, + 12.947418602358301 + ], + [ + 77.660029674395901, + 12.9475341348491 + ], + [ + 77.659959102926805, + 12.947556310964799 + ], + [ + 77.659789443833503, + 12.947571594 + ], + [ + 77.659247429818905, + 12.947542120476299 + ], + [ + 77.658435182191397, + 12.947489430815001 + ], + [ + 77.657231439958295, + 12.9474328271034 + ], + [ + 77.656396779183794, + 12.947383747250701 + ], + [ + 77.656111627694798, + 12.9473651988648 + ], + [ + 77.655771973231694, + 12.947364144415699 + ], + [ + 77.655575487353602, + 12.947401153833701 + ], + [ + 77.655381483250594, + 12.947455076493901 + ], + [ + 77.654822590183997, + 12.947625642072101 + ], + [ + 77.654679286785907, + 12.947683564595801 + ], + [ + 77.654649474885204, + 12.9476951608228 + ], + [ + 77.654541213157401, + 12.947691746955201 + ], + [ + 77.653911836700999, + 12.9476755740668 + ], + [ + 77.652861970455902, + 12.9475812466404 + ], + [ + 77.651889331020001, + 12.9474951627432 + ], + [ + 77.650796341918394, + 12.9474057826127 + ], + [ + 77.650516921772706, + 12.9473849111993 + ], + [ + 77.650386458087297, + 12.9473751019882 + ], + [ + 77.649815775148895, + 12.9473321930941 + ], + [ + 77.649558810944598, + 12.9473322303087 + ], + [ + 77.649477857862706, + 12.94733224198 + ], + [ + 77.649374389068996, + 12.947401049173701 + ], + [ + 77.649324669275899, + 12.9474354322726 + ], + [ + 77.649317281860505, + 12.9474445413944 + ], + [ + 77.649282492046396, + 12.9474753849163 + ], + [ + 77.649191060435797, + 12.947593756658 + ], + [ + 77.649089062162105, + 12.9477472425824 + ], + [ + 77.649063911667, + 12.947818641079699 + ], + [ + 77.649050980229504, + 12.947902337084001 + ], + [ + 77.649039206469993, + 12.948095558587699 + ], + [ + 77.649052792636198, + 12.9483461139809 + ], + [ + 77.649079310301403, + 12.948512973356699 + ], + [ + 77.649184687925796, + 12.948896976043899 + ], + [ + 77.649255047773096, + 12.949072423510801 + ], + [ + 77.649375283030395, + 12.9492281664429 + ], + [ + 77.649543757279503, + 12.949481663372699 + ], + [ + 77.650380258234506, + 12.950465763637901 + ], + [ + 77.650542118331202, + 12.9506380209504 + ], + [ + 77.650882593980896, + 12.9509338069323 + ], + [ + 77.651343106992101, + 12.9513119347907 + ], + [ + 77.651517741440102, + 12.951440020557101 + ], + [ + 77.651758079937593, + 12.951575341964499 + ], + [ + 77.651767519162306, + 12.9515787966203 + ], + [ + 77.651974220821799, + 12.951654447109901 + ], + [ + 77.651969351863201, + 12.9516675952471 + ], + [ + 77.651965825609906, + 12.951677117541999 + ], + [ + 77.652141398576802, + 12.9517306628968 + ], + [ + 77.652239827063994, + 12.9517838644663 + ], + [ + 77.652297962441594, + 12.95183747632 + ], + [ + 77.652321477181403, + 12.951883535992501 + ], + [ + 77.652365015286605, + 12.9520265070056 + ], + [ + 77.652390603573494, + 12.9521052937167 + ], + [ + 77.652462608210996, + 12.9523270220835 + ], + [ + 77.652492063113201, + 12.952417970680701 + ], + [ + 77.652507209898602, + 12.9524647394721 + ], + [ + 77.6525209314714, + 12.952507107608 + ], + [ + 77.652523976927995, + 12.952522886048699 + ], + [ + 77.652563247386993, + 12.952525223374501 + ], + [ + 77.652896676618994, + 12.952545062545701 + ], + [ + 77.6531172936361, + 12.9525574953741 + ], + [ + 77.653338486255194, + 12.952569922146701 + ], + [ + 77.653692754135704, + 12.9525911560126 + ], + [ + 77.653834511513097, + 12.9526043917416 + ], + [ + 77.654270303743004, + 12.9526463621897 + ], + [ + 77.654311660978195, + 12.952650345199 + ], + [ + 77.654463716080301, + 12.952659941673801 + ], + [ + 77.655124242031903, + 12.9527016276176 + ], + [ + 77.655266776058696, + 12.952710622211599 + ], + [ + 77.655276573515096, + 12.9527116515653 + ], + [ + 77.655433848593702, + 12.9527224696904 + ], + [ + 77.655525455464499, + 12.952729440340301 + ], + [ + 77.655859600511903, + 12.9527531348454 + ], + [ + 77.656167830812606, + 12.952775963973099 + ], + [ + 77.656496219651501, + 12.952799716344201 + ], + [ + 77.656526183525003, + 12.9528018896153 + ], + [ + 77.656672286923495, + 12.952812484580599 + ], + [ + 77.656810206082099, + 12.9528224859729 + ], + [ + 77.656905468326599, + 12.9528293717498 + ], + [ + 77.657130748422702, + 12.9528456553774 + ], + [ + 77.657330442811798, + 12.9528600894382 + ], + [ + 77.658021625513101, + 12.952894817916601 + ], + [ + 77.658405237407493, + 12.952914616454001 + ], + [ + 77.658413883629095, + 12.952915657437099 + ], + [ + 77.6586846388076, + 12.952933219824599 + ], + [ + 77.658728997181001, + 12.952936154696401 + ], + [ + 77.659026494683204, + 12.9529240834213 + ], + [ + 77.6592066144499, + 12.9529177273337 + ], + [ + 77.659478221087895, + 12.9529070491576 + ], + [ + 77.659545407499294, + 12.952904334928901 + ], + [ + 77.659777445192901, + 12.9528949594027 + ], + [ + 77.660015102356198, + 12.952885756640301 + ], + [ + 77.660074390717497, + 12.952885151063599 + ], + [ + 77.660424426294497, + 12.952878965592999 + ], + [ + 77.660508012779999, + 12.9528774883573 + ], + [ + 77.660926352042196, + 12.9528700959831 + ], + [ + 77.660983214715202, + 12.9528690911244 + ], + [ + 77.660989930693802, + 12.953230379296301 + ], + [ + 77.660997594228206, + 12.9536266642122 + ], + [ + 77.661001108204601, + 12.9537948850543 + ], + [ + 77.661011170015101, + 12.954037568817499 + ], + [ + 77.661012033500896, + 12.9540646617513 + ], + [ + 77.660991803537399, + 12.9543279813709 + ], + [ + 77.661049642006404, + 12.954325704011501 + ], + [ + 77.661797892306097, + 12.9542962408936 + ], + [ + 77.661998822667499, + 12.954288328691 + ], + [ + 77.662069598314901, + 12.954278509329701 + ], + [ + 77.662367864984205, + 12.954237127817001 + ], + [ + 77.662369532342694, + 12.954258934791801 + ], + [ + 77.662394610007496, + 12.9545869183781 + ], + [ + 77.662395893257397, + 12.9545993268835 + ], + [ + 77.662400163956207, + 12.9547844783648 + ], + [ + 77.662386626053106, + 12.954918996188599 + ], + [ + 77.661776206393, + 12.954954596983001 + ], + [ + 77.661817713709297, + 12.955393446710101 + ], + [ + 77.661674624275605, + 12.955417494223299 + ], + [ + 77.660847385775099, + 12.9554191736816 + ], + [ + 77.660856463904594, + 12.955460862789 + ], + [ + 77.660891193387201, + 12.9555869827508 + ], + [ + 77.660910932604097, + 12.9556567939005 + ], + [ + 77.660913331053493, + 12.9556658033086 + ], + [ + 77.660970029824696, + 12.9556923256266 + ], + [ + 77.660984912180297, + 12.95569293196 + ], + [ + 77.661185554063593, + 12.955701106378999 + ], + [ + 77.661812043658898, + 12.955726630216301 + ], + [ + 77.661895388678502, + 12.955714485778699 + ], + [ + 77.661909766812201, + 12.9556590060737 + ], + [ + 77.662179481281598, + 12.955686738010501 + ], + [ + 77.662354505933493, + 12.955688336153299 + ], + [ + 77.6623821117131, + 12.9556857954046 + ], + [ + 77.663369792711507, + 12.955721993111601 + ], + [ + 77.663357643023403, + 12.95575917869 + ], + [ + 77.663048092853003, + 12.9567065914407 + ], + [ + 77.663029230728796, + 12.9568276128402 + ], + [ + 77.663040635809395, + 12.9568715364663 + ], + [ + 77.663041149964698, + 12.956873538038099 + ], + [ + 77.663119907909802, + 12.957180136813101 + ], + [ + 77.663189945534, + 12.957432369666 + ], + [ + 77.6631954377862, + 12.957452093213099 + ], + [ + 77.663373699224493, + 12.9580922231707 + ], + [ + 77.663380307314199, + 12.958118128031201 + ], + [ + 77.663528777368498, + 12.9586877707538 + ], + [ + 77.663553982115303, + 12.9587844747326 + ], + [ + 77.663579983685196, + 12.9588842357978 + ], + [ + 77.663581968611496, + 12.9588918509397 + ], + [ + 77.663559797160801, + 12.9588968422013 + ], + [ + 77.663561617468105, + 12.9589320169855 + ], + [ + 77.663755721625904, + 12.958964651461599 + ], + [ + 77.664552146690198, + 12.958766951521399 + ], + [ + 77.665150815593705, + 12.9586293610285 + ], + [ + 77.666378572411006, + 12.958337883762599 + ], + [ + 77.6679412117916, + 12.958153363408799 + ], + [ + 77.668064214725305, + 12.958395566540799 + ], + [ + 77.668074076600504, + 12.959076035931499 + ], + [ + 77.668131056324, + 12.959720345113 + ], + [ + 77.668122290212693, + 12.9602967169319 + ], + [ + 77.668086628180902, + 12.9604218613346 + ], + [ + 77.668105853754, + 12.9606462656205 + ], + [ + 77.668129866907705, + 12.961048850076899 + ], + [ + 77.668174963029998, + 12.961278446071899 + ], + [ + 77.668659498203098, + 12.9613787094254 + ], + [ + 77.670338198788002, + 12.9617477822952 + ], + [ + 77.671624650742501, + 12.9614260712272 + ], + [ + 77.671784607154706, + 12.9613642649252 + ], + [ + 77.671828437711298, + 12.9612042833937 + ], + [ + 77.671987051522294, + 12.961129550630099 + ], + [ + 77.6721641041906, + 12.961163585559801 + ], + [ + 77.672287562791396, + 12.9618562629227 + ], + [ + 77.6725417800195, + 12.9632303508711 + ], + [ + 77.672567551635794, + 12.9633615475085 + ], + [ + 77.672848593915504, + 12.9633004797616 + ], + [ + 77.673335113093401, + 12.9632456915659 + ], + [ + 77.673359219899496, + 12.9634188222643 + ], + [ + 77.673367986010803, + 12.963905341442199 + ], + [ + 77.673346070732606, + 12.964025875472799 + ], + [ + 77.673341687676896, + 12.964641694792499 + ], + [ + 77.673489264506699, + 12.9646489612806 + ], + [ + 77.673679182962402, + 12.9646537481956 + ], + [ + 77.673965177344002, + 12.964687716876901 + ], + [ + 77.674348694713998, + 12.9647205897944 + ], + [ + 77.674502101662, + 12.964751271183999 + ], + [ + 77.6751146336901, + 12.964848794172299 + ], + [ + 77.675072994661406, + 12.966876505295501 + ], + [ + 77.675437884044797, + 12.9668359620307 + ], + [ + 77.675949154059893, + 12.9667698466323 + ], + [ + 77.675986589362296, + 12.966851924042199 + ], + [ + 77.676089206462294, + 12.966875965379399 + ], + [ + 77.6764982572045, + 12.9668394897057 + ], + [ + 77.676720847901905, + 12.966801347229101 + ], + [ + 77.676932204348404, + 12.966738222444199 + ], + [ + 77.6769571019003, + 12.9666734305641 + ], + [ + 77.676987774700507, + 12.966465167589201 + ], + [ + 77.677392344471897, + 12.9661701883976 + ], + [ + 77.677401373905397, + 12.966170502904699 + ], + [ + 77.677507339418597, + 12.9661658269273 + ], + [ + 77.677616270024899, + 12.966096585620299 + ], + [ + 77.677720739507905, + 12.965952097972201 + ], + [ + 77.677868836288496, + 12.9658733334321 + ], + [ + 77.677968800780505, + 12.965902936827501 + ], + [ + 77.678011285597407, + 12.965958803017401 + ], + [ + 77.677994917286398, + 12.9664982686788 + ], + [ + 77.678240712300806, + 12.9664823642955 + ], + [ + 77.678694710150793, + 12.9664259760275 + ], + [ + 77.678714766030396, + 12.9664327209103 + ], + [ + 77.678699425335594, + 12.9662508241005 + ], + [ + 77.678992555874103, + 12.9661874102783 + ], + [ + 77.679628731205298, + 12.966012462062199 + ], + [ + 77.679557884407103, + 12.9654760505897 + ], + [ + 77.679449445430194, + 12.965483279854899 + ], + [ + 77.679242688447502, + 12.9648904801144 + ], + [ + 77.679449475734799, + 12.9647814046916 + ], + [ + 77.679597403863198, + 12.964707988509399 + ], + [ + 77.680300884296202, + 12.9644011746134 + ], + [ + 77.680434567493705, + 12.9643639186403 + ], + [ + 77.680681114374394, + 12.9643080346807 + ], + [ + 77.681090176767, + 12.9642460624965 + ], + [ + 77.681142289914504, + 12.9642399020266 + ], + [ + 77.681692708527393, + 12.964174834041501 + ], + [ + 77.682114890151198, + 12.964116863826 + ], + [ + 77.682136376597697, + 12.964113913258499 + ], + [ + 77.682056591925104, + 12.963471274356399 + ], + [ + 77.682026585197804, + 12.963389714135801 + ], + [ + 77.681795661915402, + 12.9627620477461 + ], + [ + 77.681711442603103, + 12.9623688740094 + ], + [ + 77.681559765363104, + 12.9616607658766 + ], + [ + 77.681488692379205, + 12.9613527594041 + ], + [ + 77.681313370152907, + 12.9606383213321 + ], + [ + 77.681015322368197, + 12.9599019679818 + ], + [ + 77.681024088479504, + 12.958411729058501 + ], + [ + 77.680331565685805, + 12.9579471251588 + ], + [ + 77.679753002339098, + 12.956860127356 + ], + [ + 77.679630276780699, + 12.956369225122399 + ], + [ + 77.679961758574095, + 12.9550153957298 + ], + [ + 77.679861195840402, + 12.954423662106899 + ], + [ + 77.680303968749698, + 12.9543521790876 + ], + [ + 77.682455432401795, + 12.954540362316701 + ], + [ + 77.685097418527207, + 12.954768930953 + ], + [ + 77.687580631595296, + 12.9550103956232 + ], + [ + 77.687953189992299, + 12.9546179406645 + ], + [ + 77.688294511301706, + 12.9542814199877 + ], + [ + 77.688352508978596, + 12.954224238417201 + ], + [ + 77.688653150150898, + 12.9539693190845 + ], + [ + 77.6890217722719, + 12.9536120680505 + ], + [ + 77.689169244730707, + 12.953445740122801 + ], + [ + 77.689202644402101, + 12.953408070550401 + ], + [ + 77.689235641479598, + 12.953371594875501 + ], + [ + 77.689251000930994, + 12.9533544980165 + ], + [ + 77.689290779727301, + 12.953286699208499 + ], + [ + 77.6893403218494, + 12.953202260618299 + ], + [ + 77.689389817064196, + 12.9530402715469 + ], + [ + 77.689433264670399, + 12.9526366926458 + ], + [ + 77.689482261108793, + 12.951784757583299 + ], + [ + 77.689486852398602, + 12.9511399276485 + ], + [ + 77.6894586170758, + 12.9506546561582 + ], + [ + 77.689414483621505, + 12.950297150240599 + ], + [ + 77.6893290954348, + 12.950011210866201 + ], + [ + 77.6891666684961, + 12.949751779422201 + ], + [ + 77.689117658485401, + 12.949673499536299 + ], + [ + 77.689053831316798, + 12.949607878642899 + ], + [ + 77.688958696080107, + 12.9495100697295 + ], + [ + 77.688878423851904, + 12.949427541435 + ], + [ + 77.688831767391605, + 12.949397724927501 + ], + [ + 77.688802633962297, + 12.9493791067658 + ], + [ + 77.688725401024897, + 12.9493297498488 + ], + [ + 77.688670907574306, + 12.949294177361701 + ], + [ + 77.688590621464201, + 12.9492690340271 + ], + [ + 77.688194347202895, + 12.9491410052904 + ], + [ + 77.687512591100102, + 12.9490170505207 + ], + [ + 77.686853434226094, + 12.948960613863999 + ], + [ + 77.686367712552297, + 12.9489193252954 + ], + [ + 77.686129174710899, + 12.9488992006924 + ], + [ + 77.685995491740499, + 12.9488870284898 + ], + [ + 77.685463625720104, + 12.948837180203 + ], + [ + 77.684693379075398, + 12.948781883066401 + ], + [ + 77.684360310700399, + 12.9487503095579 + ], + [ + 77.684335566135104, + 12.948748027856301 + ], + [ + 77.683974814871704, + 12.9487147588888 + ], + [ + 77.683227531375707, + 12.948653574572701 + ], + [ + 77.682842611112804, + 12.9486180162364 + ], + [ + 77.682799276602296, + 12.9486139826677 + ], + [ + 77.682340136579299, + 12.948571246302601 + ], + [ + 77.682228362431104, + 12.948562234173 + ], + [ + 77.681762810537094, + 12.948522987476199 + ], + [ + 77.681615876761697, + 12.948509820126599 + ], + [ + 77.681479315776102, + 12.9484976751445 + ], + [ + 77.680729277457701, + 12.9484271202301 + ], + [ + 77.680700241500205, + 12.9484243890847 + ], + [ + 77.680685827465197, + 12.9484222789602 + ], + [ + 77.680471629490498, + 12.948363504904799 + ], + [ + 77.680330016945504, + 12.9483096299744 + ], + [ + 77.680185981315105, + 12.9482444876411 + ], + [ + 77.680045137661196, + 12.9482086722119 + ], + [ + 77.680021538266203, + 12.948208914990699 + ], + [ + 77.679779800411794, + 12.948212530970601 + ], + [ + 77.679730886898, + 12.948214163341 + ], + [ + 77.679460643010898, + 12.9481898416234 + ], + [ + 77.679421502534794, + 12.9481902441914 + ], + [ + 77.679155529217596, + 12.9481884627263 + ], + [ + 77.678990333334994, + 12.948190161566799 + ], + [ + 77.678673192266501, + 12.948194551912399 + ], + [ + 77.678590318563593, + 12.948196533253901 + ], + [ + 77.678195029076704, + 12.9482141480105 + ], + [ + 77.6777783975961, + 12.948281667506301 + ], + [ + 77.677704266321101, + 12.9482937217466 + ], + [ + 77.677384524241504, + 12.948324109494401 + ], + [ + 77.677364378363293, + 12.948324316540999 + ], + [ + 77.677267702267002, + 12.948327568548301 + ], + [ + 77.676755617437394, + 12.9484051012584 + ], + [ + 77.676401089013396, + 12.948466334413901 + ], + [ + 77.676036751047704, + 12.9485254094291 + ], + [ + 77.675631114419303, + 12.9485984588776 + ], + [ + 77.675420722787294, + 12.9486265919471 + ], + [ + 77.675317787145602, + 12.9486366829106 + ], + [ + 77.675228846646604, + 12.948663568540701 + ], + [ + 77.675030898152002, + 12.948617044441299 + ], + [ + 77.674821904871706, + 12.9485604705232 + ], + [ + 77.674700158762107, + 12.948527186021 + ], + [ + 77.674328274150398, + 12.9484255141001 + ], + [ + 77.673954226293105, + 12.9483299815079 + ], + [ + 77.673561759480094, + 12.9482346373513 + ], + [ + 77.673269639620599, + 12.9481563305416 + ], + [ + 77.673105220814904, + 12.948123011529299 + ], + [ + 77.672978152902999, + 12.9480973048304 + ], + [ + 77.672977724608003, + 12.9480972181833 + ], + [ + 77.672977675513806, + 12.9480970486325 + ], + [ + 77.672956208268204, + 12.9480229097419 + ], + [ + 77.672947960760297, + 12.9478987781168 + ], + [ + 77.672919742955202, + 12.947898151005599 + ], + [ + 77.672546564744906, + 12.9478898572209 + ], + [ + 77.670934260670094, + 12.947854018013 + ], + [ + 77.670896985881697, + 12.9478531893291 + ], + [ + 77.670875901824601, + 12.9471171461275 + ], + [ + 77.670597472298695, + 12.947091665998601 + ], + [ + 77.669366777316299, + 12.946979036791999 + ], + [ + 77.669295020062904, + 12.946997839713401 + ], + [ + 77.669255676620807, + 12.9470332490361 + ], + [ + 77.669254515382306, + 12.9470358384268 + ], + [ + 77.6692343089628, + 12.9470808957599 + ], + [ + 77.669177924029299, + 12.9470404779343 + ], + [ + 77.669138014259602, + 12.947011869812 + ], + [ + 77.669032367310393, + 12.9469835920391 + ], + [ + 77.668706914296095, + 12.946964341197299 + ], + [ + 77.668368732232594, + 12.9468988245308 + ], + [ + 77.668308310881997, + 12.9468871189337 + ], + [ + 77.668384720014899, + 12.946549158608599 + ], + [ + 77.668393525593103, + 12.946510211188199 + ], + [ + 77.666603431178004, + 12.9463730361709 + ], + [ + 77.666547606907798, + 12.946368758150999 + ], + [ + 77.666557977703107, + 12.9462613746106 + ], + [ + 77.666559440229406, + 12.9462365164548 + ], + [ + 77.666555588303893, + 12.946090884454801 + ], + [ + 77.666481216237898, + 12.9460803532188 + ], + [ + 77.666030774567602, + 12.946000269856301 + ], + [ + 77.665544898195407, + 12.945944262133001 + ], + [ + 77.665324791665398, + 12.945920703652099 + ], + [ + 77.664947835648405, + 12.9458803567769 + ], + [ + 77.6647496983027, + 12.945869961599399 + ], + [ + 77.664695244103996, + 12.945837770613901 + ], + [ + 77.664657589015803, + 12.945796126904799 + ], + [ + 77.664599130367407, + 12.9457314759714 + ], + [ + 77.664564257977602, + 12.945646010535301 + ], + [ + 77.664544614655597, + 12.945531029181501 + ], + [ + 77.664315424255307, + 12.944657084278401 + ], + [ + 77.664241806971603, + 12.9445008729036 + ], + [ + 77.664238269408699, + 12.944493004406899 + ], + [ + 77.664176041984305, + 12.944456116291899 + ], + [ + 77.664157745871904, + 12.944445270439999 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "251", + "group": "BABUSAB PALYA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "5", + "ward_name": "5 - Babusab Palya", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಬಾಬುಸಾಬ್ ಪಾಳ್ಯ", + "dig_ward_n": "BABUSAB PALYA", + "Assembly": "151 - K.R. Pura", + "Slno": "5" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.657225228233699, + 13.018350137749501 + ], + [ + 77.656473524973904, + 13.018684407671101 + ], + [ + 77.655848413624398, + 13.0189623826336 + ], + [ + 77.655633923456506, + 13.0190577618202 + ], + [ + 77.655600981730203, + 13.019070950075299 + ], + [ + 77.655598991847896, + 13.0190717464762 + ], + [ + 77.655572972958495, + 13.0190821635621 + ], + [ + 77.654675793451005, + 13.019441355304499 + ], + [ + 77.653110585575504, + 13.0200305189344 + ], + [ + 77.652817781368597, + 13.020140732643 + ], + [ + 77.652745270580695, + 13.020168026462001 + ], + [ + 77.652508204442, + 13.020272290568601 + ], + [ + 77.651976825719103, + 13.0205059953102 + ], + [ + 77.650813063372297, + 13.021018593129 + ], + [ + 77.650596279795806, + 13.021114298228801 + ], + [ + 77.650543884014198, + 13.0211374298271 + ], + [ + 77.650274244013502, + 13.0212564706517 + ], + [ + 77.650156518405197, + 13.0213084444614 + ], + [ + 77.649738447868302, + 13.02149301453 + ], + [ + 77.648550018790402, + 13.0220176778598 + ], + [ + 77.648141159917301, + 13.0221981766746 + ], + [ + 77.647913605066904, + 13.0222986352272 + ], + [ + 77.647672206514699, + 13.0224038423816 + ], + [ + 77.647641279998894, + 13.022417320858199 + ], + [ + 77.647394916889695, + 13.022524690660999 + ], + [ + 77.646848903376707, + 13.0227626537687 + ], + [ + 77.646656433195005, + 13.0228465352328 + ], + [ + 77.646411847363197, + 13.0229531299527 + ], + [ + 77.645960185351996, + 13.023147517314101 + ], + [ + 77.645948024712894, + 13.023152751107901 + ], + [ + 77.645882656198907, + 13.023180884357201 + ], + [ + 77.646232751846497, + 13.023334857282901 + ], + [ + 77.646317785936404, + 13.023405748493699 + ], + [ + 77.646553896040402, + 13.0234276105404 + ], + [ + 77.646905146256898, + 13.023437812828799 + ], + [ + 77.646979477215595, + 13.023783233166199 + ], + [ + 77.647058180583599, + 13.024200069522699 + ], + [ + 77.647119394314203, + 13.0243851681845 + ], + [ + 77.647155831058697, + 13.024481361189901 + ], + [ + 77.647173320695998, + 13.0245935863628 + ], + [ + 77.647233076956894, + 13.024790344782801 + ], + [ + 77.647260768882703, + 13.024922974532601 + ], + [ + 77.647308865385398, + 13.0250483169335 + ], + [ + 77.647505508730205, + 13.0256474824411 + ], + [ + 77.647455289744101, + 13.0256616467705 + ], + [ + 77.647550805368496, + 13.026008789517199 + ], + [ + 77.646736771942201, + 13.0262043981208 + ], + [ + 77.646568470738202, + 13.026255101909699 + ], + [ + 77.6468074957818, + 13.027112094139101 + ], + [ + 77.646938668061793, + 13.027578484468 + ], + [ + 77.646736532937993, + 13.027574251891799 + ], + [ + 77.646446162402199, + 13.027626204579899 + ], + [ + 77.646492115342994, + 13.027875145160101 + ], + [ + 77.646557786324905, + 13.0282472807241 + ], + [ + 77.646635811015301, + 13.0286370556182 + ], + [ + 77.646671130799206, + 13.0287604809964 + ], + [ + 77.647850327556796, + 13.028509097625401 + ], + [ + 77.647915390942899, + 13.028727421432301 + ], + [ + 77.648803144700594, + 13.0286059697781 + ], + [ + 77.648876110382801, + 13.0288735871864 + ], + [ + 77.648933215453198, + 13.0290760346649 + ], + [ + 77.648970380932397, + 13.029194818451799 + ], + [ + 77.649117585379997, + 13.029931569424599 + ], + [ + 77.649129245138198, + 13.0302303507291 + ], + [ + 77.649216693324902, + 13.03107714067 + ], + [ + 77.649277616356599, + 13.031693680229299 + ], + [ + 77.649516492889902, + 13.031687105645901 + ], + [ + 77.649569089557801, + 13.0319413228739 + ], + [ + 77.649571281085699, + 13.032149518017601 + ], + [ + 77.649767616901002, + 13.032138178668401 + ], + [ + 77.649943634908297, + 13.035337499500301 + ], + [ + 77.649954650054895, + 13.0360724288995 + ], + [ + 77.649733171449299, + 13.0361007575583 + ], + [ + 77.6497074181231, + 13.0370806716214 + ], + [ + 77.650303698500096, + 13.0363546045478 + ], + [ + 77.652547569918994, + 13.033490416676999 + ], + [ + 77.653146581358897, + 13.0327257964856 + ], + [ + 77.653655082506404, + 13.0320867260347 + ], + [ + 77.654756066677194, + 13.0307030258298 + ], + [ + 77.6551151603786, + 13.030251717713901 + ], + [ + 77.655435117871704, + 13.029849595518399 + ], + [ + 77.656321940183503, + 13.0287350286433 + ], + [ + 77.657273205711903, + 13.0275838992105 + ], + [ + 77.658577471520204, + 13.026005583128599 + ], + [ + 77.659166647266403, + 13.025292602694799 + ], + [ + 77.659472741284205, + 13.0249327170439 + ], + [ + 77.660048989309999, + 13.024255196995799 + ], + [ + 77.661479714927097, + 13.022573009837901 + ], + [ + 77.661492298097997, + 13.022558215002199 + ], + [ + 77.661994203806501, + 13.0216208747735 + ], + [ + 77.662596741664601, + 13.020110767361 + ], + [ + 77.662677950945294, + 13.019907235567601 + ], + [ + 77.662796365509706, + 13.019143634338301 + ], + [ + 77.662869517097903, + 13.0186719154846 + ], + [ + 77.662903929346399, + 13.0179155307902 + ], + [ + 77.662987278946503, + 13.016083496081601 + ], + [ + 77.663110752718495, + 13.0132967381137 + ], + [ + 77.663089655058599, + 13.0130513011205 + ], + [ + 77.662650108845895, + 13.013150507905999 + ], + [ + 77.662278984835396, + 13.0132668142104 + ], + [ + 77.662277281155696, + 13.0132977471118 + ], + [ + 77.662255657455802, + 13.0136903357643 + ], + [ + 77.662159738394706, + 13.015061082435 + ], + [ + 77.662094858942496, + 13.015725738678899 + ], + [ + 77.662054492604994, + 13.0158819875679 + ], + [ + 77.662016908565704, + 13.0160291740109 + ], + [ + 77.661935856138896, + 13.0162039084213 + ], + [ + 77.661845057845795, + 13.016291068013 + ], + [ + 77.661797920893704, + 13.016336315940499 + ], + [ + 77.661707123463898, + 13.0164072607518 + ], + [ + 77.661523638698299, + 13.016480286359901 + ], + [ + 77.661404386789002, + 13.016528938507401 + ], + [ + 77.660535220760707, + 13.016883406138399 + ], + [ + 77.660370736245895, + 13.016956236053 + ], + [ + 77.658745353833098, + 13.0176746392002 + ], + [ + 77.658565969117404, + 13.0177539248345 + ], + [ + 77.658416489254193, + 13.0178203971463 + ], + [ + 77.657225228233699, + 13.018350137749501 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "252", + "group": "T C PALYA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "10", + "ward_name": "10 - T C Palya", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಟಿ ಸಿ ಪಾಳ್ಯ", + "dig_ward_n": "T C PALYA", + "Assembly": "151 - K.R. Pura", + "Slno": "10" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.693919542509306, + 13.013388005221699 + ], + [ + 77.693941230304702, + 13.013646812913199 + ], + [ + 77.693741702587204, + 13.013668500708601 + ], + [ + 77.693748208925797, + 13.013719828491 + ], + [ + 77.693570369003595, + 13.013724888976601 + ], + [ + 77.693513605572207, + 13.0129766628699 + ], + [ + 77.692788209862002, + 13.013045148114699 + ], + [ + 77.692801359027897, + 13.0133404564895 + ], + [ + 77.691892970742998, + 13.0133623717677 + ], + [ + 77.691898449562601, + 13.013231975861901 + ], + [ + 77.691926879447706, + 13.0128827094554 + ], + [ + 77.692013787651106, + 13.012352982801501 + ], + [ + 77.692014970448398, + 13.012232316681899 + ], + [ + 77.692019587656404, + 13.0117613565135 + ], + [ + 77.691988302204606, + 13.011460673494801 + ], + [ + 77.6902346447784, + 13.012096576946901 + ], + [ + 77.689687197984696, + 13.0122189421234 + ], + [ + 77.689275190752994, + 13.0122824964304 + ], + [ + 77.689099868526696, + 13.0122715387912 + ], + [ + 77.688714865771303, + 13.012157153919899 + ], + [ + 77.688191155974394, + 13.0119086277262 + ], + [ + 77.687614012658997, + 13.0116644855828 + ], + [ + 77.687188856260306, + 13.0113028834911 + ], + [ + 77.687077281695295, + 13.011374494685199 + ], + [ + 77.686935034487007, + 13.011474922013401 + ], + [ + 77.686508664756303, + 13.011810617361499 + ], + [ + 77.686217090424506, + 13.012033055935801 + ], + [ + 77.685892055834998, + 13.0124078557884 + ], + [ + 77.685492057604904, + 13.0128838199137 + ], + [ + 77.685287816833593, + 13.0133391127367 + ], + [ + 77.685308052887606, + 13.013588437247501 + ], + [ + 77.685365986778606, + 13.013807255605199 + ], + [ + 77.685533929500195, + 13.0141912914813 + ], + [ + 77.685701611118304, + 13.014550948736501 + ], + [ + 77.685852680300201, + 13.014862019272501 + ], + [ + 77.685714067127705, + 13.0150283774723 + ], + [ + 77.685563244800406, + 13.0151475362303 + ], + [ + 77.685439467244805, + 13.015193341015999 + ], + [ + 77.685409775099899, + 13.0152263840613 + ], + [ + 77.685399877142302, + 13.015248576744799 + ], + [ + 77.685384229141206, + 13.0152836622925 + ], + [ + 77.685396531098803, + 13.0153462505957 + ], + [ + 77.685423246674603, + 13.0153972845279 + ], + [ + 77.685438670887905, + 13.015479794173499 + ], + [ + 77.685562754288796, + 13.015666227836901 + ], + [ + 77.6855755702219, + 13.015744361443501 + ], + [ + 77.685595046654797, + 13.0158783464127 + ], + [ + 77.685595867718803, + 13.0158852044394 + ], + [ + 77.685603638191594, + 13.015947843455301 + ], + [ + 77.685613580827393, + 13.0160348878698 + ], + [ + 77.685646568551306, + 13.0161524606344 + ], + [ + 77.685692461660295, + 13.0166801850366 + ], + [ + 77.6867748389638, + 13.016559931728199 + ], + [ + 77.686721512951195, + 13.0172789059382 + ], + [ + 77.686731484192606, + 13.0178835237411 + ], + [ + 77.686742328090304, + 13.0181936592151 + ], + [ + 77.687282354195403, + 13.0181922133621 + ], + [ + 77.687300345805099, + 13.018453325479999 + ], + [ + 77.687298981505094, + 13.0187647711602 + ], + [ + 77.686207051793403, + 13.0188321512865 + ], + [ + 77.6862366374191, + 13.0189000886492 + ], + [ + 77.6862541696417, + 13.019163071988601 + ], + [ + 77.686300191726104, + 13.0194852265794 + ], + [ + 77.686311149365196, + 13.019581653803799 + ], + [ + 77.686335256171304, + 13.019699996306599 + ], + [ + 77.686302383253903, + 13.0199520220068 + ], + [ + 77.686283755267397, + 13.020313624098501 + ], + [ + 77.686274989156004, + 13.020540447228701 + ], + [ + 77.686290329850905, + 13.020767270359 + ], + [ + 77.686019676163994, + 13.020767270359 + ], + [ + 77.685364409343407, + 13.020734397441499 + ], + [ + 77.685178129477904, + 13.020723439802399 + ], + [ + 77.685182512533601, + 13.0209776570305 + ], + [ + 77.685207715103601, + 13.0213074819687 + ], + [ + 77.685212098159298, + 13.021522251695799 + ], + [ + 77.6852175769788, + 13.0216164873925 + ], + [ + 77.685312338700598, + 13.021666157194799 + ], + [ + 77.685387897967502, + 13.021665374236401 + ], + [ + 77.685907973047605, + 13.0216313024792 + ], + [ + 77.686406085052198, + 13.021595067055101 + ], + [ + 77.6864379760285, + 13.022256506216699 + ], + [ + 77.686459642237196, + 13.022532004143301 + ], + [ + 77.686538257199302, + 13.0225029329532 + ], + [ + 77.686925337228104, + 13.022359793407301 + ], + [ + 77.6870251524699, + 13.022322882301101 + ], + [ + 77.687857592369895, + 13.0221437380231 + ], + [ + 77.688246515224094, + 13.0220578348702 + ], + [ + 77.688389973069206, + 13.0220261487769 + ], + [ + 77.688587152152394, + 13.0219825968713 + ], + [ + 77.688594119772802, + 13.021987518410301 + ], + [ + 77.688655565705901, + 13.022030916561 + ], + [ + 77.688670083073902, + 13.0220411697803 + ], + [ + 77.688732261462604, + 13.0220850846522 + ], + [ + 77.688769930291002, + 13.022111689084699 + ], + [ + 77.689133373880196, + 13.022421969246601 + ], + [ + 77.689216858590001, + 13.022493241861699 + ], + [ + 77.689464400199597, + 13.022700706137099 + ], + [ + 77.689559403553503, + 13.0227797793506 + ], + [ + 77.690072758124003, + 13.0232070530898 + ], + [ + 77.690189978410999, + 13.023302970837999 + ], + [ + 77.690318937919201, + 13.023408493200099 + ], + [ + 77.690368467476006, + 13.0234490216847 + ], + [ + 77.690544997579806, + 13.0235854790623 + ], + [ + 77.690646531382896, + 13.0236639636113 + ], + [ + 77.690900367103097, + 13.0238601770017 + ], + [ + 77.691371066551795, + 13.0242561576753 + ], + [ + 77.691708550637003, + 13.0245270497593 + ], + [ + 77.691948452626093, + 13.024719910519099 + ], + [ + 77.692028701084695, + 13.0247868157238 + ], + [ + 77.692218979405794, + 13.024945453666099 + ], + [ + 77.692665489409407, + 13.0253177153247 + ], + [ + 77.692729770079396, + 13.0253693964376 + ], + [ + 77.693328274974704, + 13.0258505874296 + ], + [ + 77.693871112332999, + 13.0262310890345 + ], + [ + 77.693917209673501, + 13.0262634000623 + ], + [ + 77.694095775484897, + 13.026409089882501 + ], + [ + 77.694232486769096, + 13.0265679441685 + ], + [ + 77.694284656166204, + 13.026628563064399 + ], + [ + 77.694293580048495, + 13.026638932382101 + ], + [ + 77.694379544048701, + 13.026738820231699 + ], + [ + 77.694458187031898, + 13.0267458651513 + ], + [ + 77.696085208092896, + 13.026891605804799 + ], + [ + 77.696089575839807, + 13.0268919970389 + ], + [ + 77.696110228433298, + 13.026893846961601 + ], + [ + 77.6961234999129, + 13.0268950357321 + ], + [ + 77.696135811079799, + 13.026896033440901 + ], + [ + 77.696406801456902, + 13.0269179946101 + ], + [ + 77.696584222586907, + 13.0269323722052 + ], + [ + 77.696600665317902, + 13.0269339904709 + ], + [ + 77.696615350758194, + 13.0269354357862 + ], + [ + 77.696740243063203, + 13.0269470122096 + ], + [ + 77.696993406561006, + 13.0269704791731 + ], + [ + 77.696998664638699, + 13.026970966567299 + ], + [ + 77.697016529312094, + 13.0269730431528 + ], + [ + 77.697260548820296, + 13.0270014077932 + ], + [ + 77.697394579589101, + 13.0270169869885 + ], + [ + 77.697747614835507, + 13.0270580220299 + ], + [ + 77.697770002803395, + 13.027061029740601 + ], + [ + 77.6980744300174, + 13.0271019277981 + ], + [ + 77.698128643515403, + 13.027109211031799 + ], + [ + 77.698315240400305, + 13.0271342790272 + ], + [ + 77.698473068732795, + 13.0271554819161 + ], + [ + 77.698566818715094, + 13.027167618511401 + ], + [ + 77.698576091303707, + 13.0271684192578 + ], + [ + 77.701614216114194, + 13.027430761971001 + ], + [ + 77.701683877846705, + 13.027436777209299 + ], + [ + 77.701675704989597, + 13.027379393347401 + ], + [ + 77.7016585516118, + 13.0272589654545 + ], + [ + 77.701536933177493, + 13.026571524144799 + ], + [ + 77.701524071498696, + 13.0264988257015 + ], + [ + 77.701509243861494, + 13.0264150138338 + ], + [ + 77.701308390539396, + 13.025366425271899 + ], + [ + 77.701245355534198, + 13.025150236081901 + ], + [ + 77.701219744655504, + 13.025062400096299 + ], + [ + 77.701185837324203, + 13.024946107098 + ], + [ + 77.701271593830398, + 13.024979490688199 + ], + [ + 77.701281245076302, + 13.024983247756101 + ], + [ + 77.701568706417106, + 13.025095150715099 + ], + [ + 77.702879708782106, + 13.0256316249655 + ], + [ + 77.702919855694304, + 13.0256453129797 + ], + [ + 77.7031667276147, + 13.025729556411701 + ], + [ + 77.703396390065095, + 13.02580792665 + ], + [ + 77.703466179611894, + 13.025819652996899 + ], + [ + 77.703724277215798, + 13.0258630733048 + ], + [ + 77.703738620577198, + 13.0258654863249 + ], + [ + 77.703980654370497, + 13.0259062041528 + ], + [ + 77.704344994245503, + 13.025967497165301 + ], + [ + 77.704558416086201, + 13.0260006546558 + ], + [ + 77.704577538162297, + 13.0260036231046 + ], + [ + 77.704595317450597, + 13.026006383344299 + ], + [ + 77.704601672408103, + 13.0260073703154 + ], + [ + 77.705022625853502, + 13.026072725367801 + ], + [ + 77.705121536494104, + 13.026088081292199 + ], + [ + 77.705238024288704, + 13.0261025155841 + ], + [ + 77.705311895192693, + 13.026111680217699 + ], + [ + 77.705355171916196, + 13.0261170495267 + ], + [ + 77.705482282349806, + 13.026132819048099 + ], + [ + 77.705788421649402, + 13.026170799490901 + ], + [ + 77.705921259397499, + 13.0261872795303 + ], + [ + 77.706347695126297, + 13.0261009672246 + ], + [ + 77.706911962071004, + 13.0259867565945 + ], + [ + 77.707557793074898, + 13.0258560363129 + ], + [ + 77.707913228842401, + 13.0257840934998 + ], + [ + 77.707930007876698, + 13.025780697648701 + ], + [ + 77.707944760319805, + 13.025774890105501 + ], + [ + 77.707787484285802, + 13.025371161332901 + ], + [ + 77.7077306869962, + 13.025348809689 + ], + [ + 77.707581510227598, + 13.024901023663601 + ], + [ + 77.7074036042535, + 13.0245013396902 + ], + [ + 77.707252494399398, + 13.0244836175413 + ], + [ + 77.707223963543598, + 13.024480271513299 + ], + [ + 77.707029853454301, + 13.0243846609805 + ], + [ + 77.706953149980293, + 13.024237828616 + ], + [ + 77.706723039558298, + 13.023422580263899 + ], + [ + 77.706524367347299, + 13.023355765457801 + ], + [ + 77.706234328852503, + 13.0233590259568 + ], + [ + 77.706188484941094, + 13.023227182812199 + ], + [ + 77.706234328852503, + 13.0230807019226 + ], + [ + 77.7062029292928, + 13.022223173594 + ], + [ + 77.706181354502107, + 13.022051204408699 + ], + [ + 77.706178911616306, + 13.0220317354533 + ], + [ + 77.706153242322898, + 13.0218030411987 + ], + [ + 77.706098454127201, + 13.021410757717399 + ], + [ + 77.705981207388305, + 13.021121476044099 + ], + [ + 77.705734660507602, + 13.021102848057501 + ], + [ + 77.705492496682595, + 13.021083124307101 + ], + [ + 77.705283205775004, + 13.0210513471536 + ], + [ + 77.705037754658207, + 13.020974643679599 + ], + [ + 77.704956464144203, + 13.0208441694254 + ], + [ + 77.704933657086301, + 13.0207752146472 + ], + [ + 77.704779154374407, + 13.020483741446 + ], + [ + 77.704568767702895, + 13.019899699279801 + ], + [ + 77.704485489645407, + 13.0195709701055 + ], + [ + 77.704417552282706, + 13.0192729223208 + ], + [ + 77.704364955614807, + 13.0191063662059 + ], + [ + 77.704347423392207, + 13.0188346167552 + ], + [ + 77.704340848808798, + 13.0185475266097 + ], + [ + 77.704369338670503, + 13.018310841604199 + ], + [ + 77.704384679365305, + 13.0180610074318 + ], + [ + 77.704373721726199, + 13.017712554507 + ], + [ + 77.7043386572809, + 13.017445188111999 + ], + [ + 77.704369338670503, + 13.017368484638 + ], + [ + 77.7043553576016, + 13.0170182889904 + ], + [ + 77.703035764098104, + 13.016475214144499 + ], + [ + 77.702000040523899, + 13.016048614576199 + ], + [ + 77.701472086010597, + 13.015729983908001 + ], + [ + 77.701128123142993, + 13.0154967887435 + ], + [ + 77.700757925819303, + 13.0151644856342 + ], + [ + 77.700376068737498, + 13.0147068401239 + ], + [ + 77.700247811397006, + 13.014421176047399 + ], + [ + 77.7001457885126, + 13.0142695991905 + ], + [ + 77.700070000084096, + 13.014068468361099 + ], + [ + 77.699707685441098, + 13.0133095285387 + ], + [ + 77.699662454534106, + 13.0134091823756 + ], + [ + 77.699515374152099, + 13.0134453702559 + ], + [ + 77.699270589875496, + 13.0140483252965 + ], + [ + 77.699241163552003, + 13.0143244524844 + ], + [ + 77.699171661050002, + 13.0145469854055 + ], + [ + 77.698921836557403, + 13.014842140241401 + ], + [ + 77.698719639995701, + 13.0151461218967 + ], + [ + 77.698540331534502, + 13.015267734513399 + ], + [ + 77.698422627908101, + 13.015368715494599 + ], + [ + 77.698412766032902, + 13.015478291886 + ], + [ + 77.698416053324607, + 13.0155265054983 + ], + [ + 77.698446734714196, + 13.0155988259166 + ], + [ + 77.698543161938701, + 13.015636081889699 + ], + [ + 77.698313051516706, + 13.0157303175863 + ], + [ + 77.698091707206004, + 13.015817978699401 + ], + [ + 77.697881320534506, + 13.015905639812599 + ], + [ + 77.697468054424107, + 13.016100170762201 + ], + [ + 77.697468217538798, + 13.016100685789301 + ], + [ + 77.696633245436203, + 13.0162781995434 + ], + [ + 77.6961533008418, + 13.016314359752601 + ], + [ + 77.695810326736606, + 13.0162847741269 + ], + [ + 77.695476118742803, + 13.0162245071116 + ], + [ + 77.695384074573994, + 13.016171910443701 + ], + [ + 77.695379691518198, + 13.0156415607092 + ], + [ + 77.695399490911797, + 13.015424774754599 + ], + [ + 77.695422523760399, + 13.0152103771151 + ], + [ + 77.695413638808105, + 13.015119464430301 + ], + [ + 77.695431483098105, + 13.0149254069813 + ], + [ + 77.695378206995699, + 13.0148056656879 + ], + [ + 77.695302148597804, + 13.014534575798301 + ], + [ + 77.695169304846601, + 13.0140702352563 + ], + [ + 77.695075069149993, + 13.013730548442901 + ], + [ + 77.694989473748194, + 13.01334896719 + ], + [ + 77.694989316881106, + 13.013348518040701 + ], + [ + 77.693919542509306, + 13.013388005221699 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "253", + "group": "K R PURAM", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "18", + "ward_name": "18 - K R Puram", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಕೆ ಆರ್ ಪುರಂ", + "dig_ward_n": "K R PURAM", + "Assembly": "151 - K.R. Pura", + "Slno": "18" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.695249857589602, + 13.0025521991855 + ], + [ + 77.695233725537605, + 13.002444709801599 + ], + [ + 77.695189576478597, + 13.0020047787972 + ], + [ + 77.695382430927495, + 13.001985055046701 + ], + [ + 77.696447513452199, + 13.0019280753232 + ], + [ + 77.697284677082607, + 13.0018973939336 + ], + [ + 77.697790487780907, + 13.0018620322505 + ], + [ + 77.698554296748, + 13.001877804558401 + ], + [ + 77.698644210545496, + 13.0014783076897 + ], + [ + 77.698689278866397, + 13.0014319517025 + ], + [ + 77.698877917814698, + 13.000884360195 + ], + [ + 77.698908599204202, + 13.0008010821375 + ], + [ + 77.6989283229547, + 13.0007221871357 + ], + [ + 77.699182540182804, + 12.999832426837401 + ], + [ + 77.696305520963605, + 12.999928151277 + ], + [ + 77.695549432836799, + 12.999883421545 + ], + [ + 77.695542301587807, + 12.999900226854701 + ], + [ + 77.694550582712594, + 12.999929645024199 + ], + [ + 77.692825352141597, + 12.999973842468901 + ], + [ + 77.692817044381002, + 12.999974178894499 + ], + [ + 77.690527846729395, + 13.000066983513401 + ], + [ + 77.689426913089306, + 13.000140538312101 + ], + [ + 77.688237287059493, + 13.000126569849201 + ], + [ + 77.6882293041499, + 13.000126963290899 + ], + [ + 77.688162321051095, + 13.0007645076217 + ], + [ + 77.688073737900297, + 13.000958551451101 + ], + [ + 77.686685554618904, + 13.0037837736489 + ], + [ + 77.688185783071802, + 13.004571334500699 + ], + [ + 77.687202652918302, + 13.0063670920725 + ], + [ + 77.6869740844012, + 13.006248867484 + ], + [ + 77.686636591247506, + 13.006010343785601 + ], + [ + 77.685032392877105, + 13.0086840077362 + ], + [ + 77.683457351127103, + 13.0078156473677 + ], + [ + 77.683413508857498, + 13.0078883590784 + ], + [ + 77.683166517984105, + 13.008297987036499 + ], + [ + 77.682973184996399, + 13.008618622261199 + ], + [ + 77.682749340579804, + 13.008989858435999 + ], + [ + 77.682610754626694, + 13.009266954138599 + ], + [ + 77.683434769090198, + 13.0097140258155 + ], + [ + 77.684179888551796, + 13.010090968602 + ], + [ + 77.684407807445993, + 13.0101260330473 + ], + [ + 77.685249354132097, + 13.010156714436899 + ], + [ + 77.685873939563194, + 13.010167672075999 + ], + [ + 77.6861259652635, + 13.0103999740258 + ], + [ + 77.686748359166799, + 13.0109610051499 + ], + [ + 77.687188856260306, + 13.0113028834911 + ], + [ + 77.687614012658997, + 13.0116644855828 + ], + [ + 77.688191155974394, + 13.0119086277262 + ], + [ + 77.688714865771303, + 13.012157153919899 + ], + [ + 77.689099868526696, + 13.0122715387912 + ], + [ + 77.689275190752994, + 13.0122824964304 + ], + [ + 77.689687197984696, + 13.0122189421234 + ], + [ + 77.6902346447784, + 13.012096576946901 + ], + [ + 77.691988302204606, + 13.011460673494801 + ], + [ + 77.692019587656404, + 13.0117613565135 + ], + [ + 77.692014970448398, + 13.012232316681899 + ], + [ + 77.692013787651106, + 13.012352982801501 + ], + [ + 77.691926879447706, + 13.0128827094554 + ], + [ + 77.691898449562601, + 13.013231975861901 + ], + [ + 77.691892970742998, + 13.0133623717677 + ], + [ + 77.692801359027897, + 13.0133404564895 + ], + [ + 77.692788209862002, + 13.013045148114699 + ], + [ + 77.693513605572207, + 13.0129766628699 + ], + [ + 77.693570369003595, + 13.013724888976601 + ], + [ + 77.693748208925797, + 13.013719828491 + ], + [ + 77.693741702587204, + 13.013668500708601 + ], + [ + 77.693941230304702, + 13.013646812913199 + ], + [ + 77.693919542509306, + 13.013388005221699 + ], + [ + 77.694989316881106, + 13.013348518040701 + ], + [ + 77.694989473748194, + 13.01334896719 + ], + [ + 77.695075069149993, + 13.013730548442901 + ], + [ + 77.695169304846601, + 13.0140702352563 + ], + [ + 77.695302148597804, + 13.014534575798301 + ], + [ + 77.695378206995699, + 13.0148056656879 + ], + [ + 77.695431483098105, + 13.0149254069813 + ], + [ + 77.695413638808105, + 13.015119464430301 + ], + [ + 77.695422523760399, + 13.0152103771151 + ], + [ + 77.695399490911797, + 13.015424774754599 + ], + [ + 77.695379691518198, + 13.0156415607092 + ], + [ + 77.695384074573994, + 13.016171910443701 + ], + [ + 77.695476118742803, + 13.0162245071116 + ], + [ + 77.695810326736606, + 13.0162847741269 + ], + [ + 77.6961533008418, + 13.016314359752601 + ], + [ + 77.696633245436203, + 13.0162781995434 + ], + [ + 77.697468217538798, + 13.016100685789301 + ], + [ + 77.697468054424107, + 13.016100170762201 + ], + [ + 77.697881320534506, + 13.015905639812599 + ], + [ + 77.698091707206004, + 13.015817978699401 + ], + [ + 77.698313051516706, + 13.0157303175863 + ], + [ + 77.698543161938701, + 13.015636081889699 + ], + [ + 77.698446734714196, + 13.0155988259166 + ], + [ + 77.698416053324607, + 13.0155265054983 + ], + [ + 77.698412766032902, + 13.015478291886 + ], + [ + 77.698422627908101, + 13.015368715494599 + ], + [ + 77.698540331534502, + 13.015267734513399 + ], + [ + 77.698719639995701, + 13.0151461218967 + ], + [ + 77.698921836557403, + 13.014842140241401 + ], + [ + 77.699171661050002, + 13.0145469854055 + ], + [ + 77.699241163552003, + 13.0143244524844 + ], + [ + 77.699270589875496, + 13.0140483252965 + ], + [ + 77.699515374152099, + 13.0134453702559 + ], + [ + 77.699662454534106, + 13.0134091823756 + ], + [ + 77.699707685441098, + 13.0133095285387 + ], + [ + 77.699707231788693, + 13.0133082170622 + ], + [ + 77.699694725906397, + 13.0132726156512 + ], + [ + 77.699694709718301, + 13.013272567038101 + ], + [ + 77.699641834583701, + 13.013115415664799 + ], + [ + 77.699442151239793, + 13.0127733131747 + ], + [ + 77.699261835809807, + 13.0124639915143 + ], + [ + 77.698999256080697, + 13.0121211086048 + ], + [ + 77.698601384619707, + 13.0116219871752 + ], + [ + 77.698601026013307, + 13.0116222212646 + ], + [ + 77.698279312177604, + 13.0112304374122 + ], + [ + 77.6981019122437, + 13.0110143989042 + ], + [ + 77.697881415453793, + 13.0107308303762 + ], + [ + 77.697560206626207, + 13.010345651656101 + ], + [ + 77.697205806762696, + 13.009919109159901 + ], + [ + 77.696845033933201, + 13.009489416226099 + ], + [ + 77.696808521856298, + 13.009433665274299 + ], + [ + 77.696717968671805, + 13.0092954000205 + ], + [ + 77.696529815844201, + 13.0090983646776 + ], + [ + 77.696228459801404, + 13.008782781957001 + ], + [ + 77.695957346524906, + 13.008498868076 + ], + [ + 77.695783428661002, + 13.008384357334601 + ], + [ + 77.695728018399194, + 13.008347804852599 + ], + [ + 77.695670616837006, + 13.0083388421031 + ], + [ + 77.695764787812095, + 13.0083102058645 + ], + [ + 77.695901823022893, + 13.008316926824801 + ], + [ + 77.695963978687402, + 13.0082798064826 + ], + [ + 77.696027835872997, + 13.008251180989999 + ], + [ + 77.696219594558002, + 13.0082161165447 + ], + [ + 77.6965505152601, + 13.008084624875 + ], + [ + 77.696219594558002, + 13.0082161165447 + ], + [ + 77.696027835872997, + 13.008251180989999 + ], + [ + 77.695963978687402, + 13.0082798064826 + ], + [ + 77.695800597295602, + 13.0079270183444 + ], + [ + 77.695716719741995, + 13.007699544095701 + ], + [ + 77.695781801206195, + 13.0076913443013 + ], + [ + 77.695307666576596, + 13.007064426373899 + ], + [ + 77.695222449396695, + 13.007012967767 + ], + [ + 77.695143554394207, + 13.0069324291192 + ], + [ + 77.695097532309802, + 13.0065949338337 + ], + [ + 77.695042744114104, + 13.006233331741999 + ], + [ + 77.695003296613194, + 13.005961582291301 + ], + [ + 77.694890432930094, + 13.005905150449699 + ], + [ + 77.694814825220007, + 13.0057577702032 + ], + [ + 77.694709631884194, + 13.005400551167201 + ], + [ + 77.694680046258497, + 13.005288235366001 + ], + [ + 77.694586084502802, + 13.004841711571 + ], + [ + 77.694684703255106, + 13.0047671996248 + ], + [ + 77.694808250636598, + 13.0046866609772 + ], + [ + 77.695016445780198, + 13.0046609105251 + ], + [ + 77.695327642731897, + 13.004717342366799 + ], + [ + 77.695405715910695, + 13.0045699621203 + ], + [ + 77.695239159795705, + 13.004394639894 + ], + [ + 77.694921388260596, + 13.0041469972494 + ], + [ + 77.694790718413799, + 13.0037580010599 + ], + [ + 77.694811537928203, + 13.0036100729314 + ], + [ + 77.694819208275604, + 13.00347529397 + ], + [ + 77.694803867580802, + 13.0033525684116 + ], + [ + 77.694983846803694, + 13.003336131952899 + ], + [ + 77.695435027595394, + 13.003269290354099 + ], + [ + 77.695441140595406, + 13.0031754518883 + ], + [ + 77.695316209518396, + 13.003150963370601 + ], + [ + 77.695249857589602, + 13.0025521991855 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "254", + "group": "MEDAHALLI", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "12", + "ward_name": "12 - Medahalli", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಮೇಡಹಳ್ಳಿ", + "dig_ward_n": "MEDAHALLI", + "Assembly": "151 - K.R. Pura", + "Slno": "12" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.729384108672704, + 13.016322999278101 + ], + [ + 77.729376773180505, + 13.016298739555401 + ], + [ + 77.729159363342106, + 13.0156370723875 + ], + [ + 77.729141547617004, + 13.0155875760785 + ], + [ + 77.729097571707698, + 13.015462700184701 + ], + [ + 77.729059748675198, + 13.015373893222501 + ], + [ + 77.728800219315701, + 13.0147567058275 + ], + [ + 77.728660386211999, + 13.0144487815824 + ], + [ + 77.728535042950199, + 13.013840767618801 + ], + [ + 77.728415332801504, + 13.013260077234101 + ], + [ + 77.728385633673, + 13.013085528637999 + ], + [ + 77.728385497038701, + 13.013083145248901 + ], + [ + 77.728382217034905, + 13.0130259565648 + ], + [ + 77.728363548779896, + 13.0127004317127 + ], + [ + 77.728336019981995, + 13.0122204190159 + ], + [ + 77.728328327224006, + 13.012086281165301 + ], + [ + 77.728317219017001, + 13.011892585669001 + ], + [ + 77.728286683547907, + 13.011653856914601 + ], + [ + 77.728267212152801, + 13.0115475412907 + ], + [ + 77.728199138396704, + 13.011175850399701 + ], + [ + 77.728181539465695, + 13.011079756262101 + ], + [ + 77.728130429015707, + 13.010800681934001 + ], + [ + 77.728111626039706, + 13.010698015069 + ], + [ + 77.728095667375399, + 13.010610877473299 + ], + [ + 77.728086909387301, + 13.0105670372799 + ], + [ + 77.728082483595898, + 13.0105448814507 + ], + [ + 77.728051209078401, + 13.010538154409801 + ], + [ + 77.7273392209364, + 13.0103850056101 + ], + [ + 77.727251173864502, + 13.010372589110901 + ], + [ + 77.726645844827701, + 13.010276548924001 + ], + [ + 77.726189894257303, + 13.010204207257001 + ], + [ + 77.7259722082877, + 13.010200171058999 + ], + [ + 77.725366779935996, + 13.010188943245399 + ], + [ + 77.7249073676997, + 13.010180422386901 + ], + [ + 77.724703551814002, + 13.0101814345288 + ], + [ + 77.724540235773404, + 13.0101794772335 + ], + [ + 77.7241513040847, + 13.0101748147182 + ], + [ + 77.723333576689996, + 13.010164206418599 + ], + [ + 77.721769226072695, + 13.0101162645717 + ], + [ + 77.720794902143197, + 13.0101072915229 + ], + [ + 77.720706840593195, + 13.0100978548209 + ], + [ + 77.720247843608306, + 13.010048666305501 + ], + [ + 77.720226554353502, + 13.010050018782801 + ], + [ + 77.720166103947406, + 13.0100506528032 + ], + [ + 77.720044027058407, + 13.0100496747629 + ], + [ + 77.720026192108506, + 13.0100509909963 + ], + [ + 77.719921411384504, + 13.010052089875201 + ], + [ + 77.719781671914504, + 13.0100682347445 + ], + [ + 77.719723129060696, + 13.010082344530201 + ], + [ + 77.719417132370495, + 13.0102090857219 + ], + [ + 77.719361969610503, + 13.0101797876242 + ], + [ + 77.718482866199395, + 13.0099207129993 + ], + [ + 77.7184145716231, + 13.009916648284101 + ], + [ + 77.7178068272584, + 13.0099095781659 + ], + [ + 77.717882206896206, + 13.011151451322799 + ], + [ + 77.717951442157997, + 13.0112997947491 + ], + [ + 77.718433257668707, + 13.011225430610899 + ], + [ + 77.718502477844197, + 13.0122763249767 + ], + [ + 77.719246740348694, + 13.012243702878701 + ], + [ + 77.719316493097494, + 13.012234395238901 + ], + [ + 77.719322276509601, + 13.0124050058959 + ], + [ + 77.719365652100393, + 13.0123941619983 + ], + [ + 77.719367820879995, + 13.012615377511199 + ], + [ + 77.719896280160796, + 13.012605256540001 + ], + [ + 77.719884713336597, + 13.012756348181099 + ], + [ + 77.720126893718302, + 13.012760685740201 + ], + [ + 77.720098481777995, + 13.013073911917401 + ], + [ + 77.720097509155295, + 13.0130800974148 + ], + [ + 77.7200239698319, + 13.0136831566537 + ], + [ + 77.719962607052693, + 13.014044758745399 + ], + [ + 77.719945074829994, + 13.014224464027301 + ], + [ + 77.719910010384794, + 13.0148096019575 + ], + [ + 77.720121054040803, + 13.014810626582101 + ], + [ + 77.720363091842401, + 13.014810533818199 + ], + [ + 77.7203428371309, + 13.0165672072758 + ], + [ + 77.720322017616496, + 13.0166450065137 + ], + [ + 77.720307772685601, + 13.016712943876399 + ], + [ + 77.720213536989107, + 13.016715135404301 + ], + [ + 77.718904646993494, + 13.0165110493752 + ], + [ + 77.718674536571498, + 13.016478176457801 + ], + [ + 77.717659859186895, + 13.0163620254829 + ], + [ + 77.717513026822402, + 13.0163379186768 + ], + [ + 77.717550830677396, + 13.016079592334 + ], + [ + 77.717623151095793, + 13.015544859543899 + ], + [ + 77.717744596229196, + 13.014649166170299 + ], + [ + 77.7177447808903, + 13.014647428898201 + ], + [ + 77.716993086845093, + 13.014442521046201 + ], + [ + 77.717058832679996, + 13.014178441942899 + ], + [ + 77.716721337394404, + 13.014066674023701 + ], + [ + 77.716355352247106, + 13.0139439484653 + ], + [ + 77.716265499606095, + 13.0138716280469 + ], + [ + 77.716201945299105, + 13.0138124567956 + ], + [ + 77.716129624880793, + 13.0137247956824 + ], + [ + 77.716163770112004, + 13.0119974553579 + ], + [ + 77.716124100568095, + 13.011914924183101 + ], + [ + 77.7144426963347, + 13.0117488594042 + ], + [ + 77.714317779248503, + 13.011696262736301 + ], + [ + 77.714112883992598, + 13.011554756475499 + ], + [ + 77.714035072158694, + 13.0114902591204 + ], + [ + 77.713958368684601, + 13.011367533562 + ], + [ + 77.713744426419296, + 13.011256313309699 + ], + [ + 77.713436785061504, + 13.011268914809801 + ], + [ + 77.713119013526395, + 13.011268914809801 + ], + [ + 77.712812199630406, + 13.011139614667901 + ], + [ + 77.712471417052996, + 13.011053049318701 + ], + [ + 77.712324584688503, + 13.011037708623901 + ], + [ + 77.7122237744084, + 13.011024559456899 + ], + [ + 77.712115293780897, + 13.011053049318701 + ], + [ + 77.711880800303206, + 13.011138518904 + ], + [ + 77.711624391547304, + 13.0111144120979 + ], + [ + 77.711151182891598, + 13.011076689033899 + ], + [ + 77.710512824133005, + 13.011108759484401 + ], + [ + 77.710050326683401, + 13.011130848556499 + ], + [ + 77.709993346959905, + 13.011474918425501 + ], + [ + 77.709718310217298, + 13.0135568698625 + ], + [ + 77.709622974428598, + 13.0140320842651 + ], + [ + 77.709624074520704, + 13.014032431401199 + ], + [ + 77.709450943822304, + 13.0151610682328 + ], + [ + 77.709339175902997, + 13.016055211586799 + ], + [ + 77.709339175902997, + 13.016322577981899 + ], + [ + 77.709260280901205, + 13.016771841186699 + ], + [ + 77.709021404367903, + 13.0180100544097 + ], + [ + 77.708669814959194, + 13.0191545782116 + ], + [ + 77.708573119017601, + 13.0194065348379 + ], + [ + 77.708620936965005, + 13.019453138844201 + ], + [ + 77.708946588148805, + 13.019631385936099 + ], + [ + 77.709453900080604, + 13.0199323767688 + ], + [ + 77.709555610746605, + 13.0199927226912 + ], + [ + 77.709880855740707, + 13.020185690963601 + ], + [ + 77.710027766525897, + 13.020276792145699 + ], + [ + 77.710732942468596, + 13.0207140813863 + ], + [ + 77.711981797627004, + 13.021504099573001 + ], + [ + 77.7127867016506, + 13.0219835094529 + ], + [ + 77.713275299452903, + 13.022274521458201 + ], + [ + 77.713559907174201, + 13.022464514675899 + ], + [ + 77.713474107654605, + 13.022578854409799 + ], + [ + 77.7132843713798, + 13.0228371242821 + ], + [ + 77.713204290136702, + 13.022946131221699 + ], + [ + 77.712786908007004, + 13.023514279608699 + ], + [ + 77.712771873052603, + 13.0235347435015 + ], + [ + 77.712661671580705, + 13.023684751839101 + ], + [ + 77.712507370935796, + 13.023876086829601 + ], + [ + 77.712235547815396, + 13.0242131542922 + ], + [ + 77.712050311929104, + 13.024442850481901 + ], + [ + 77.712011100541602, + 13.0244924955194 + ], + [ + 77.711964876044803, + 13.0245510207594 + ], + [ + 77.711774708718394, + 13.0247917947994 + ], + [ + 77.711629448880004, + 13.024975711386499 + ], + [ + 77.711378074732906, + 13.0252939760173 + ], + [ + 77.711225597605093, + 13.025487028659001 + ], + [ + 77.7111380344747, + 13.0255978922706 + ], + [ + 77.711045671036402, + 13.025714835087401 + ], + [ + 77.710911155755099, + 13.025885144710999 + ], + [ + 77.710764136181098, + 13.026071287249801 + ], + [ + 77.710735195677202, + 13.0261079271397 + ], + [ + 77.710800661900706, + 13.026219401299199 + ], + [ + 77.710853766179298, + 13.0263098251642 + ], + [ + 77.710924262168305, + 13.0264298623573 + ], + [ + 77.710938911849297, + 13.026454807856201 + ], + [ + 77.711003464893295, + 13.0265647263977 + ], + [ + 77.711234674308898, + 13.026958417616999 + ], + [ + 77.711403972642103, + 13.027246690096799 + ], + [ + 77.711429990419106, + 13.027290991969799 + ], + [ + 77.711586941192195, + 13.0275582378382 + ], + [ + 77.7117381163239, + 13.027815648669399 + ], + [ + 77.711742789339695, + 13.027823606174399 + ], + [ + 77.711898247340997, + 13.028088309049901 + ], + [ + 77.711955307690104, + 13.0281854084496 + ], + [ + 77.711959891259397, + 13.028191073268999 + ], + [ + 77.712101022933993, + 13.0283655002254 + ], + [ + 77.712141773623301, + 13.0284158636908 + ], + [ + 77.712142539415098, + 13.028416809613701 + ], + [ + 77.712250678512603, + 13.0285504603437 + ], + [ + 77.712872274477405, + 13.0293186915621 + ], + [ + 77.713079203189096, + 13.029574433109399 + ], + [ + 77.713124577150893, + 13.029630510399899 + ], + [ + 77.713169493522301, + 13.029686022456399 + ], + [ + 77.713242736338898, + 13.029776542587101 + ], + [ + 77.7134903657373, + 13.0300889229494 + ], + [ + 77.713575479553498, + 13.030196291653899 + ], + [ + 77.713732163686799, + 13.030393943920201 + ], + [ + 77.713825872186405, + 13.030512154812 + ], + [ + 77.7138830524393, + 13.030584286322 + ], + [ + 77.713909492554293, + 13.0306176392497 + ], + [ + 77.7140781310531, + 13.0308303711506 + ], + [ + 77.714227120226198, + 13.031018315785699 + ], + [ + 77.714256279858901, + 13.031055099995299 + ], + [ + 77.714333947976897, + 13.031153074713499 + ], + [ + 77.714494770903698, + 13.031355946731701 + ], + [ + 77.714557563214996, + 13.0314351556693 + ], + [ + 77.714582815244597, + 13.0314670105424 + ], + [ + 77.714641514941604, + 13.0315410572369 + ], + [ + 77.714939961903895, + 13.031917533538801 + ], + [ + 77.714962854765105, + 13.031946411696399 + ], + [ + 77.714981476738302, + 13.031945047517899 + ], + [ + 77.715068655156003, + 13.031938661880201 + ], + [ + 77.7150769958307, + 13.031938051388799 + ], + [ + 77.715134551972696, + 13.031933835411101 + ], + [ + 77.715646408365302, + 13.031896343974299 + ], + [ + 77.715785448868701, + 13.0318861594421 + ], + [ + 77.7157845931021, + 13.031882035586101 + ], + [ + 77.715983146065199, + 13.0318439428957 + ], + [ + 77.715990608949696, + 13.031842511402999 + ], + [ + 77.715991189785299, + 13.031838071664801 + ], + [ + 77.715991447485095, + 13.0318361041738 + ], + [ + 77.715992065770493, + 13.031831381294101 + ], + [ + 77.715993488599906, + 13.0318205135135 + ], + [ + 77.715994916493401, + 13.0318096032223 + ], + [ + 77.716006200354599, + 13.031723403665 + ], + [ + 77.716017193109394, + 13.0317231754505 + ], + [ + 77.716040680981095, + 13.0317226879058 + ], + [ + 77.716087404324796, + 13.031721717263901 + ], + [ + 77.716182805653801, + 13.031719736482399 + ], + [ + 77.716359455586996, + 13.0316961823508 + ], + [ + 77.716480626788794, + 13.031680025868001 + ], + [ + 77.716574415119993, + 13.0316675197656 + ], + [ + 77.716630694191096, + 13.031660016024899 + ], + [ + 77.7166332407498, + 13.0316596767505 + ], + [ + 77.716721338867103, + 13.0316479294848 + ], + [ + 77.716853135965707, + 13.0316303560181 + ], + [ + 77.716957449010806, + 13.031616446668799 + ], + [ + 77.717119221408296, + 13.0315948756146 + ], + [ + 77.717184335531996, + 13.0315861932422 + ], + [ + 77.717244353945901, + 13.031578190321399 + ], + [ + 77.717250985427697, + 13.0315779942683 + ], + [ + 77.717337098918904, + 13.0315754501804 + ], + [ + 77.717343427949999, + 13.031696607914499 + ], + [ + 77.717340802349, + 13.0317042236059 + ], + [ + 77.717356052609802, + 13.0323102710143 + ], + [ + 77.717359775742096, + 13.0324582268588 + ], + [ + 77.717362006274101, + 13.0325468446621 + ], + [ + 77.717375121470596, + 13.0326547847146 + ], + [ + 77.7173856213319, + 13.032716420297501 + ], + [ + 77.717416358079603, + 13.032896852620301 + ], + [ + 77.717739602867496, + 13.032974962995601 + ], + [ + 77.717767231237602, + 13.032981639640401 + ], + [ + 77.718110281997596, + 13.0330376218505 + ], + [ + 77.718197446452905, + 13.0330570321929 + ], + [ + 77.718899620442997, + 13.0332161985749 + ], + [ + 77.7190800586026, + 13.0332570993193 + ], + [ + 77.719549695351503, + 13.0333635533503 + ], + [ + 77.719582887804293, + 13.033371077400799 + ], + [ + 77.7197132875162, + 13.0334169031618 + ], + [ + 77.719834047096498, + 13.033459340477799 + ], + [ + 77.720281098114896, + 13.0336164436271 + ], + [ + 77.720338960736598, + 13.033636777663901 + ], + [ + 77.720721663269799, + 13.0337712662486 + ], + [ + 77.721179114970496, + 13.033845501791401 + ], + [ + 77.7213324076601, + 13.033966745867501 + ], + [ + 77.721445514717104, + 13.0341130555307 + ], + [ + 77.721444102622598, + 13.034060757544699 + ], + [ + 77.721449225107094, + 13.034059140008001 + ], + [ + 77.721467069770895, + 13.0340535034507 + ], + [ + 77.721518749060294, + 13.034037180569801 + ], + [ + 77.721568380809501, + 13.034021504700901 + ], + [ + 77.721837776975704, + 13.033936417464901 + ], + [ + 77.722039220619394, + 13.033872792435201 + ], + [ + 77.722165159547401, + 13.0338330147192 + ], + [ + 77.722218634659399, + 13.033816124502801 + ], + [ + 77.723043458264101, + 13.0335957754244 + ], + [ + 77.723347033171606, + 13.033514675318299 + ], + [ + 77.723904676039595, + 13.033571045390101 + ], + [ + 77.723989953378194, + 13.033458741363001 + ], + [ + 77.723996870066102, + 13.033428451693201 + ], + [ + 77.724016999349004, + 13.0333402956381 + ], + [ + 77.724019670917002, + 13.0333285959486 + ], + [ + 77.724084019055795, + 13.0330467937442 + ], + [ + 77.724169789581595, + 13.0326711729602 + ], + [ + 77.724170031099305, + 13.0326701152641 + ], + [ + 77.724192931578401, + 13.0325698261362 + ], + [ + 77.724317450709407, + 13.0325395819428 + ], + [ + 77.724749200603299, + 13.032436507671401 + ], + [ + 77.724845952608106, + 13.0324112501127 + ], + [ + 77.724881577050297, + 13.032129130109601 + ], + [ + 77.724896950068398, + 13.0320073898683 + ], + [ + 77.724901339319999, + 13.0319726299452 + ], + [ + 77.724902878354996, + 13.0318023070504 + ], + [ + 77.724904964569902, + 13.031571454291001 + ], + [ + 77.724905123468105, + 13.031553901531799 + ], + [ + 77.724898396050804, + 13.031515784320799 + ], + [ + 77.724884596462005, + 13.0314375968796 + ], + [ + 77.724853267842093, + 13.0312600994731 + ], + [ + 77.7247904397735, + 13.030904124479401 + ], + [ + 77.724803707048494, + 13.030468249210299 + ], + [ + 77.724764296396103, + 13.030346185634899 + ], + [ + 77.724734673133995, + 13.030254437410701 + ], + [ + 77.724682859402094, + 13.0300939585648 + ], + [ + 77.724683323156796, + 13.030089021421601 + ], + [ + 77.7247168557885, + 13.029732320682999 + ], + [ + 77.724723409141703, + 13.0296626092526 + ], + [ + 77.724768515959795, + 13.0291827845812 + ], + [ + 77.724772629831094, + 13.029139020303599 + ], + [ + 77.724783789735, + 13.0290203036267 + ], + [ + 77.724787686975802, + 13.0289799368194 + ], + [ + 77.724797858483697, + 13.028874582465001 + ], + [ + 77.724798224532805, + 13.028869556918901 + ], + [ + 77.724811291327597, + 13.0286900304793 + ], + [ + 77.724811332201099, + 13.0286894717821 + ], + [ + 77.724822070711696, + 13.0285419283792 + ], + [ + 77.724827618598496, + 13.0284678101726 + ], + [ + 77.724938989913198, + 13.027871170652499 + ], + [ + 77.725105334917004, + 13.0271179307091 + ], + [ + 77.725147495060497, + 13.026607532696801 + ], + [ + 77.725149212502799, + 13.026388463412401 + ], + [ + 77.725153173470304, + 13.025927582109301 + ], + [ + 77.725170958099795, + 13.025925530522199 + ], + [ + 77.725303375945501, + 13.0259102540266 + ], + [ + 77.725357087521203, + 13.025904057526301 + ], + [ + 77.725426448281596, + 13.0258960559089 + ], + [ + 77.725553840910194, + 13.0258813588053 + ], + [ + 77.725578359343004, + 13.025894457704201 + ], + [ + 77.725663141957199, + 13.0259397519016 + ], + [ + 77.725695059229693, + 13.0258932298839 + ], + [ + 77.725776147021307, + 13.0257750371087 + ], + [ + 77.725986261640898, + 13.0254687755543 + ], + [ + 77.726001043138396, + 13.025447229726799 + ], + [ + 77.7261159343104, + 13.0252797638696 + ], + [ + 77.726119369904097, + 13.0252746801971 + ], + [ + 77.726288222521902, + 13.0250248275114 + ], + [ + 77.726586137938895, + 13.024583997765699 + ], + [ + 77.727031443540099, + 13.0239250706178 + ], + [ + 77.727339255839993, + 13.023469592471599 + ], + [ + 77.728107451634202, + 13.0223328648066 + ], + [ + 77.728836571241303, + 13.021253950483199 + ], + [ + 77.729373450736304, + 13.020459497067 + ], + [ + 77.729377659437901, + 13.020453213356801 + ], + [ + 77.729394230482995, + 13.020428474247399 + ], + [ + 77.729413522710303, + 13.0203996712484 + ], + [ + 77.729444524680005, + 13.020372988827599 + ], + [ + 77.729478800904602, + 13.0202664522006 + ], + [ + 77.729499720865803, + 13.0202014291939 + ], + [ + 77.729824752803196, + 13.0200247176868 + ], + [ + 77.729893328294096, + 13.0199874344107 + ], + [ + 77.730094515934496, + 13.019815085812001 + ], + [ + 77.730095600622306, + 13.0197766632176 + ], + [ + 77.730104708384005, + 13.019454042743 + ], + [ + 77.730107225818998, + 13.0193648699222 + ], + [ + 77.730115986126194, + 13.0190545654914 + ], + [ + 77.730116385125598, + 13.0190400256126 + ], + [ + 77.730053134939695, + 13.018721008125199 + ], + [ + 77.730051731498804, + 13.0187154276068 + ], + [ + 77.729982165182903, + 13.018438787328099 + ], + [ + 77.729796593747807, + 13.017700830383401 + ], + [ + 77.7297692350635, + 13.017592033592599 + ], + [ + 77.729658474047596, + 13.017227422196299 + ], + [ + 77.729462205713602, + 13.0165812647079 + ], + [ + 77.729384108672704, + 13.016322999278101 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "255", + "group": "ISLAMPURA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "49", + "ward_name": "49 - Annasandra Palya", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಅನ್ನಸಂದ್ರ ಪಾಳ್ಯ", + "dig_ward_n": "ISLAMPURA", + "Assembly": "151 - K.R. Pura", + "Slno": "49" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.670338198788002, + 12.9617477822952 + ], + [ + 77.668659498203098, + 12.9613787094254 + ], + [ + 77.668174963029998, + 12.961278446071899 + ], + [ + 77.668273779573695, + 12.9615149324634 + ], + [ + 77.668392122076497, + 12.9618129802481 + ], + [ + 77.668405271243401, + 12.9620365160866 + ], + [ + 77.668554295135806, + 12.962847381383099 + ], + [ + 77.668615657914998, + 12.9637634400154 + ], + [ + 77.668685786805497, + 12.9649359074035 + ], + [ + 77.668573744945405, + 12.9659618163682 + ], + [ + 77.669553631825494, + 12.9661149493752 + ], + [ + 77.669759483277403, + 12.9661512499881 + ], + [ + 77.669961906571103, + 12.967288880084199 + ], + [ + 77.670033850360994, + 12.9676558673795 + ], + [ + 77.670050666501993, + 12.967650562669499 + ], + [ + 77.670074686109601, + 12.9676453132007 + ], + [ + 77.670150811753302, + 12.9680230122945 + ], + [ + 77.670239580035798, + 12.9688138158958 + ], + [ + 77.670285876061399, + 12.969371285787201 + ], + [ + 77.670282957781794, + 12.969518588171301 + ], + [ + 77.670285602120302, + 12.969518392092599 + ], + [ + 77.671109616583706, + 12.9694416886187 + ], + [ + 77.671171527244894, + 12.9698405466834 + ], + [ + 77.671311237143996, + 12.9698295890443 + ], + [ + 77.671646540901804, + 12.971032737822 + ], + [ + 77.672285645204695, + 12.9709261747814 + ], + [ + 77.672628345368906, + 12.9709165868471 + ], + [ + 77.673442080455899, + 12.970702570896099 + ], + [ + 77.673397571636698, + 12.9703445980839 + ], + [ + 77.674034907024904, + 12.9701648958847 + ], + [ + 77.674204713808905, + 12.9701271078881 + ], + [ + 77.674508676245694, + 12.9700399757158 + ], + [ + 77.674131889619602, + 12.969104083110301 + ], + [ + 77.674489926924096, + 12.9688728505922 + ], + [ + 77.674166889254195, + 12.9681675419074 + ], + [ + 77.674097764777898, + 12.967972269209699 + ], + [ + 77.674086807138707, + 12.967914193722301 + ], + [ + 77.674124971287995, + 12.967874233484601 + ], + [ + 77.674156662088194, + 12.967858035821701 + ], + [ + 77.673970206152006, + 12.967531635539199 + ], + [ + 77.673825658497904, + 12.967412827337 + ], + [ + 77.673667252497097, + 12.9674144553533 + ], + [ + 77.673567804186405, + 12.9673580586715 + ], + [ + 77.673434230349699, + 12.9672334681267 + ], + [ + 77.673435949783794, + 12.9670817823986 + ], + [ + 77.673447133714404, + 12.966095292519199 + ], + [ + 77.673497238196106, + 12.9658624888836 + ], + [ + 77.673516643108599, + 12.9653435693064 + ], + [ + 77.673489264506699, + 12.9646489612806 + ], + [ + 77.673341687676896, + 12.964641694792499 + ], + [ + 77.673346070732606, + 12.964025875472799 + ], + [ + 77.673367986010803, + 12.963905341442199 + ], + [ + 77.673359219899496, + 12.9634188222643 + ], + [ + 77.673335113093401, + 12.9632456915659 + ], + [ + 77.672848593915504, + 12.9633004797616 + ], + [ + 77.672567551635794, + 12.9633615475085 + ], + [ + 77.6725417800195, + 12.9632303508711 + ], + [ + 77.672287562791396, + 12.9618562629227 + ], + [ + 77.6721641041906, + 12.961163585559801 + ], + [ + 77.671987051522294, + 12.961129550630099 + ], + [ + 77.671828437711298, + 12.9612042833937 + ], + [ + 77.671784607154706, + 12.9613642649252 + ], + [ + 77.671624650742501, + 12.9614260712272 + ], + [ + 77.670338198788002, + 12.9617477822952 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "258", + "group": "MAHADEVAPUR", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "33", + "ward_name": "33 - Mahadevapura", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಮಹದೇವಪುರ", + "dig_ward_n": "MAHADEVAPUR", + "Assembly": "151 - K.R. Pura", + "Slno": "33" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6749429074234, + 12.9863981048415 + ], + [ + 77.674888145416702, + 12.9864313512489 + ], + [ + 77.674481371750105, + 12.986623842469699 + ], + [ + 77.674356091118199, + 12.9867435268823 + ], + [ + 77.674360399882602, + 12.9867476010432 + ], + [ + 77.674141656276504, + 12.986922640328199 + ], + [ + 77.674407044140196, + 12.9869750070091 + ], + [ + 77.674465119627598, + 12.986954187494799 + ], + [ + 77.674548397685101, + 12.986932272216499 + ], + [ + 77.6746321481763, + 12.986874639875101 + ], + [ + 77.674651399493101, + 12.986883510722301 + ], + [ + 77.674707283452705, + 12.987051162601199 + ], + [ + 77.674713230343102, + 12.987054052720399 + ], + [ + 77.674909999776801, + 12.987066503296001 + ], + [ + 77.675048066030001, + 12.9871968992018 + ], + [ + 77.6749976608899, + 12.988879992574001 + ], + [ + 77.674960404916803, + 12.9895243017555 + ], + [ + 77.674926710177701, + 12.9900976602238 + ], + [ + 77.6748091894966, + 12.990175185520499 + ], + [ + 77.675018754346496, + 12.991320532752001 + ], + [ + 77.675241194421105, + 12.9913040962933 + ], + [ + 77.6755063692883, + 12.9912328716389 + ], + [ + 77.675562527187793, + 12.991546260118101 + ], + [ + 77.675932895390801, + 12.991445449838 + ], + [ + 77.676288470780904, + 12.991336969210501 + ], + [ + 77.676326439664095, + 12.991458887172699 + ], + [ + 77.676629637394996, + 12.992567231849399 + ], + [ + 77.676352785699095, + 12.992648259173 + ], + [ + 77.676079179873199, + 12.9926790060644 + ], + [ + 77.675933443272697, + 12.9927017431657 + ], + [ + 77.675914267404195, + 12.992718727506301 + ], + [ + 77.675901118237306, + 12.992752696187701 + ], + [ + 77.675879202958996, + 12.9928293996617 + ], + [ + 77.6758474258055, + 12.992965274387 + ], + [ + 77.675818935943695, + 12.993078138070199 + ], + [ + 77.675795423758402, + 12.9931814872247 + ], + [ + 77.675806334658603, + 12.9932674312863 + ], + [ + 77.675845010654896, + 12.993388869278901 + ], + [ + 77.675879750841105, + 12.9934786397808 + ], + [ + 77.675921739063696, + 12.9935403161865 + ], + [ + 77.675960466912002, + 12.993602775164799 + ], + [ + 77.676013825327701, + 12.9936633118316 + ], + [ + 77.676191766783603, + 12.9938651901182 + ], + [ + 77.676287310631807, + 12.993969358783 + ], + [ + 77.676501772369605, + 12.994203177854899 + ], + [ + 77.676517697758101, + 12.994221068641 + ], + [ + 77.676732255166101, + 12.9944694843002 + ], + [ + 77.676976179112899, + 12.9948602880864 + ], + [ + 77.677017582085298, + 12.994921227755601 + ], + [ + 77.677101793060103, + 12.995045177574401 + ], + [ + 77.677246168442096, + 12.9950072304411 + ], + [ + 77.6773447871944, + 12.9949546337733 + ], + [ + 77.677565005833898, + 12.9948977567309 + ], + [ + 77.677726895152901, + 12.9948947664824 + ], + [ + 77.677822289397994, + 12.9948720256989 + ], + [ + 77.677993187200798, + 12.9948577702993 + ], + [ + 77.678255171971102, + 12.9948532847962 + ], + [ + 77.678609546930403, + 12.9948103692816 + ], + [ + 77.6788425577396, + 12.994771511359399 + ], + [ + 77.679099982365202, + 12.994728580952399 + ], + [ + 77.679300006633099, + 12.994730245235999 + ], + [ + 77.679578600012306, + 12.994732563822099 + ], + [ + 77.679908271991707, + 12.994750797283899 + ], + [ + 77.680394297744897, + 12.9947776777557 + ], + [ + 77.680667448979307, + 12.994796270561899 + ], + [ + 77.6808202117344, + 12.994803707249201 + ], + [ + 77.681211815393198, + 12.9948227702704 + ], + [ + 77.681937681640804, + 12.9948795739451 + ], + [ + 77.6821274218197, + 12.9948518906298 + ], + [ + 77.682127998911199, + 12.9950055181501 + ], + [ + 77.682130599133899, + 12.9950316359418 + ], + [ + 77.682938661976493, + 12.9950548961714 + ], + [ + 77.683009886630899, + 12.995080098741401 + ], + [ + 77.683135899481002, + 12.995100918255799 + ], + [ + 77.683201976225803, + 12.995156702228501 + ], + [ + 77.683221369066302, + 12.995271857426401 + ], + [ + 77.683221369066302, + 12.995385816873499 + ], + [ + 77.683219177538504, + 12.995470190694901 + ], + [ + 77.683235613997198, + 12.995565522155401 + ], + [ + 77.683257529275494, + 12.995669619727201 + ], + [ + 77.683259720803306, + 12.9957265994508 + ], + [ + 77.683290402192895, + 12.9958087817443 + ], + [ + 77.683312317471206, + 12.9958942513297 + ], + [ + 77.6833501213262, + 12.9959780772691 + ], + [ + 77.683368201430795, + 12.996051493451301 + ], + [ + 77.683390116709106, + 12.996130388453199 + ], + [ + 77.683422421356696, + 12.9962257730818 + ], + [ + 77.683485649665002, + 12.996271263025699 + ], + [ + 77.683647073346904, + 12.996329269603599 + ], + [ + 77.683935597759202, + 12.995945282524801 + ], + [ + 77.684143564136093, + 12.995662118116201 + ], + [ + 77.684613290464398, + 12.9950225410487 + ], + [ + 77.684878255057598, + 12.994667410515399 + ], + [ + 77.685074761020502, + 12.994388331850701 + ], + [ + 77.685806368492706, + 12.9933492928504 + ], + [ + 77.6860071715723, + 12.9930641077614 + ], + [ + 77.687388731294405, + 12.991250849157 + ], + [ + 77.6874299117123, + 12.991196799761999 + ], + [ + 77.687514595549899, + 12.9912592968384 + ], + [ + 77.687518572273405, + 12.991263051657301 + ], + [ + 77.687657192448, + 12.9913939078917 + ], + [ + 77.687748552996595, + 12.9914131473605 + ], + [ + 77.687822052575299, + 12.991412386699899 + ], + [ + 77.687850924640699, + 12.9914158567599 + ], + [ + 77.688020778358506, + 12.991530512735199 + ], + [ + 77.688490431046006, + 12.9920719128725 + ], + [ + 77.688517943071901, + 12.9920585176044 + ], + [ + 77.6885086137912, + 12.992045706135301 + ], + [ + 77.688517788393995, + 12.9920422235112 + ], + [ + 77.688665706469095, + 12.9919735637878 + ], + [ + 77.688684500240399, + 12.9919648401999 + ], + [ + 77.688773294796107, + 12.9919232691666 + ], + [ + 77.688967894928894, + 12.991869310455 + ], + [ + 77.689227353493806, + 12.991796612579 + ], + [ + 77.689373729096999, + 12.991755574315301 + ], + [ + 77.689374367283605, + 12.9917553858145 + ], + [ + 77.689496549961504, + 12.991719296769199 + ], + [ + 77.689680762931104, + 12.991663186722599 + ], + [ + 77.689824661186194, + 12.991659437929099 + ], + [ + 77.689837314211104, + 12.991658177663499 + ], + [ + 77.690036417890894, + 12.991648210896599 + ], + [ + 77.690222341465599, + 12.9916440265759 + ], + [ + 77.690515943348998, + 12.991640985022 + ], + [ + 77.690612022736005, + 12.991634343556999 + ], + [ + 77.6907595857367, + 12.9915966799046 + ], + [ + 77.690893932148896, + 12.991561411544 + ], + [ + 77.691082016156898, + 12.991490580710201 + ], + [ + 77.691159430042504, + 12.991461548223601 + ], + [ + 77.691401997463998, + 12.9913709560005 + ], + [ + 77.691928769258297, + 12.9911264486371 + ], + [ + 77.692133573702705, + 12.9910313853168 + ], + [ + 77.692480926929207, + 12.9908534280656 + ], + [ + 77.692488187087704, + 12.990849708508099 + ], + [ + 77.692702727392103, + 12.990739794583799 + ], + [ + 77.693115679103897, + 12.990539030211799 + ], + [ + 77.693247048564999, + 12.9904947579788 + ], + [ + 77.693493765522604, + 12.9904154131789 + ], + [ + 77.693497807498304, + 12.9904165004715 + ], + [ + 77.693620785042299, + 12.9903948993067 + ], + [ + 77.694094909545598, + 12.9903143246397 + ], + [ + 77.694204248557895, + 12.990304272980399 + ], + [ + 77.694222741960004, + 12.9903025728565 + ], + [ + 77.694288744906402, + 12.990296505010299 + ], + [ + 77.694411338227297, + 12.9903460476825 + ], + [ + 77.694510166591897, + 12.9903832290374 + ], + [ + 77.694522332619599, + 12.990387806154899 + ], + [ + 77.694525190403397, + 12.9903871066038 + ], + [ + 77.694776918086006, + 12.9903254865664 + ], + [ + 77.694782460121502, + 12.990324130022801 + ], + [ + 77.694978352816094, + 12.990323108580199 + ], + [ + 77.695001232519999, + 12.9903229892689 + ], + [ + 77.695144574946895, + 12.9903745746818 + ], + [ + 77.695319290682804, + 12.990345660599701 + ], + [ + 77.695563262058698, + 12.9902787637629 + ], + [ + 77.695563153621606, + 12.990261614968601 + ], + [ + 77.695555116185204, + 12.9889904212198 + ], + [ + 77.695715106690898, + 12.9887708236166 + ], + [ + 77.695577141587293, + 12.9876701476422 + ], + [ + 77.695593133690394, + 12.986697732924601 + ], + [ + 77.695687799767398, + 12.985560401876199 + ], + [ + 77.695819212005105, + 12.983981601266599 + ], + [ + 77.695819939364, + 12.9839728572576 + ], + [ + 77.695849326068299, + 12.9839217379796 + ], + [ + 77.695841678226202, + 12.983799862772999 + ], + [ + 77.695827189689297, + 12.9835775589466 + ], + [ + 77.695815214168604, + 12.9833213527747 + ], + [ + 77.695785319953302, + 12.983058557228899 + ], + [ + 77.695752239790494, + 12.9828206373108 + ], + [ + 77.695700635363394, + 12.9824666010022 + ], + [ + 77.695672888183694, + 12.982349451086201 + ], + [ + 77.695618550814402, + 12.9822224140931 + ], + [ + 77.695560329980907, + 12.982108967868101 + ], + [ + 77.695542694696201, + 12.982075274512001 + ], + [ + 77.695477480720797, + 12.9819539963241 + ], + [ + 77.695374961560802, + 12.9817901950644 + ], + [ + 77.695302490093994, + 12.9815831721557 + ], + [ + 77.695254805431802, + 12.981432352621001 + ], + [ + 77.695210785241599, + 12.9812476187778 + ], + [ + 77.695182941135698, + 12.9811214360617 + ], + [ + 77.6951158407077, + 12.981198918150801 + ], + [ + 77.695104230439199, + 12.981205426791 + ], + [ + 77.695056324737493, + 12.981232282404299 + ], + [ + 77.694970867353106, + 12.9812625280183 + ], + [ + 77.6946008214004, + 12.981329600702701 + ], + [ + 77.694498925242996, + 12.9813837300283 + ], + [ + 77.694438501226301, + 12.9814396877804 + ], + [ + 77.694414651947397, + 12.981470423713001 + ], + [ + 77.694371923834893, + 12.981565720350099 + ], + [ + 77.694358634857295, + 12.9815613412811 + ], + [ + 77.694326912433297, + 12.9815560241054 + ], + [ + 77.694239865327205, + 12.9815456344244 + ], + [ + 77.694162592355298, + 12.981534014178299 + ], + [ + 77.694094003040107, + 12.9815268207324 + ], + [ + 77.694007641131194, + 12.9815265867612 + ], + [ + 77.693926508879201, + 12.9815308153948 + ], + [ + 77.693860956082801, + 12.981538270148301 + ], + [ + 77.693814939385305, + 12.981542134758399 + ], + [ + 77.693770649680005, + 12.9815459814601 + ], + [ + 77.693748810911799, + 12.981549595451799 + ], + [ + 77.693625322770203, + 12.981576847224799 + ], + [ + 77.693586814037999, + 12.981582892401301 + ], + [ + 77.693538506824694, + 12.9815879099152 + ], + [ + 77.693520649032294, + 12.9815869657855 + ], + [ + 77.693501027741107, + 12.981582652298799 + ], + [ + 77.693316463382004, + 12.981872513893499 + ], + [ + 77.693222748631499, + 12.9818726103311 + ], + [ + 77.692348671009498, + 12.981873508174999 + ], + [ + 77.692264514232306, + 12.9818642171041 + ], + [ + 77.692229925590297, + 12.981860058575 + ], + [ + 77.692127716402794, + 12.9818317578637 + ], + [ + 77.692051902762302, + 12.9817952792023 + ], + [ + 77.691614060277502, + 12.981554775169201 + ], + [ + 77.691604091568493, + 12.981537940224801 + ], + [ + 77.691213760562803, + 12.9816093575377 + ], + [ + 77.690177936662494, + 12.9817988751842 + ], + [ + 77.690094773475707, + 12.9815969825317 + ], + [ + 77.690045984796399, + 12.981478540668 + ], + [ + 77.689614222511096, + 12.9804303621546 + ], + [ + 77.689445974729693, + 12.9800219072355 + ], + [ + 77.688821793942395, + 12.9785065682713 + ], + [ + 77.688728408657894, + 12.9785593461035 + ], + [ + 77.687222983840101, + 12.979410148263099 + ], + [ + 77.687338238825205, + 12.979600126243501 + ], + [ + 77.686148214984598, + 12.980277374963499 + ], + [ + 77.686152493435003, + 12.980285655336299 + ], + [ + 77.685462713152603, + 12.9806747892895 + ], + [ + 77.684025536917702, + 12.981485552371 + ], + [ + 77.6827663658419, + 12.982205331045201 + ], + [ + 77.681710084225799, + 12.9827994392951 + ], + [ + 77.680811895907198, + 12.983363230116099 + ], + [ + 77.680020094790805, + 12.9838364652179 + ], + [ + 77.679942295552905, + 12.9838748169549 + ], + [ + 77.679861209023201, + 12.9838463270932 + ], + [ + 77.679802725556399, + 12.9836664211468 + ], + [ + 77.679799363787595, + 12.9835875129881 + ], + [ + 77.679713436074493, + 12.9836279219057 + ], + [ + 77.679704104176906, + 12.983616725916701 + ], + [ + 77.679144542268702, + 12.9839443242345 + ], + [ + 77.679067873556406, + 12.983989154405499 + ], + [ + 77.678954313014302, + 12.9840298480174 + ], + [ + 77.678814616946795, + 12.9840493557887 + ], + [ + 77.678590992867996, + 12.9840810209013 + ], + [ + 77.678472097317695, + 12.9842685683521 + ], + [ + 77.678356754172, + 12.9843578367249 + ], + [ + 77.678283050333704, + 12.984410046846101 + ], + [ + 77.678241901909004, + 12.984439195436799 + ], + [ + 77.678145055476804, + 12.9844930455967 + ], + [ + 77.678026704990501, + 12.9845588527239 + ], + [ + 77.677872130607895, + 12.984640620708101 + ], + [ + 77.677809538807495, + 12.9846559456874 + ], + [ + 77.677719157070598, + 12.984656877133199 + ], + [ + 77.677660193790999, + 12.984742176571199 + ], + [ + 77.677608709250606, + 12.9847731961805 + ], + [ + 77.677496911346694, + 12.984817258769001 + ], + [ + 77.6773673640824, + 12.984870538005501 + ], + [ + 77.677259848174998, + 12.984941979370101 + ], + [ + 77.676925459530594, + 12.9851641726413 + ], + [ + 77.6768727987495, + 12.9851992195797 + ], + [ + 77.676826902842294, + 12.9852297643267 + ], + [ + 77.676713037651098, + 12.9853055447853 + ], + [ + 77.676461838073806, + 12.985472724799701 + ], + [ + 77.676456690297698, + 12.9854761510489 + ], + [ + 77.676101525447393, + 12.985659735676901 + ], + [ + 77.6760619626899, + 12.985680185563901 + ], + [ + 77.675798427916902, + 12.985816406777101 + ], + [ + 77.675790211203903, + 12.985820654177299 + ], + [ + 77.674924392102199, + 12.9863682106279 + ], + [ + 77.6749429074234, + 12.9863981048415 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "263", + "group": "BASAVANAPURA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "16", + "ward_name": "16 - Basavanapura", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಬಸವನಪುರ", + "dig_ward_n": "BASAVANAPURA", + "Assembly": "151 - K.R. Pura", + "Slno": "16" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.707843434108597, + 13.0042456713451 + ], + [ + 77.7078311594925, + 13.0042470740987 + ], + [ + 77.707364981817605, + 13.004300348848499 + ], + [ + 77.707127825597993, + 13.0043062109253 + ], + [ + 77.707125223549099, + 13.0042894640341 + ], + [ + 77.706944781930204, + 13.004297884974701 + ], + [ + 77.706770979228807, + 13.0042839677386 + ], + [ + 77.706554017973701, + 13.0042686270438 + ], + [ + 77.706218714216007, + 13.004294925377801 + ], + [ + 77.705957922404394, + 13.0043321813509 + ], + [ + 77.705576596562295, + 13.004419842463999 + ], + [ + 77.7052084198871, + 13.0045075035771 + ], + [ + 77.705362922598894, + 13.0049074574058 + ], + [ + 77.705682885661901, + 13.0057468125641 + ], + [ + 77.705812185803794, + 13.0061588197958 + ], + [ + 77.705291176555093, + 13.0062454912758 + ], + [ + 77.705353348235207, + 13.0064739360538 + ], + [ + 77.705298891175005, + 13.0064892917351 + ], + [ + 77.705023693745403, + 13.006547674558099 + ], + [ + 77.705059840071002, + 13.0067775651892 + ], + [ + 77.704383180855103, + 13.006904077328899 + ], + [ + 77.704344142823302, + 13.0067038266849 + ], + [ + 77.704230281897594, + 13.006725153016999 + ], + [ + 77.704236788236202, + 13.0068245554125 + ], + [ + 77.704205883127798, + 13.0068276278502 + ], + [ + 77.704127807064395, + 13.0068276278502 + ], + [ + 77.704132867550001, + 13.0068883536772 + ], + [ + 77.704147720418007, + 13.0078780733771 + ], + [ + 77.703739000477995, + 13.0078693072658 + ], + [ + 77.702867868166194, + 13.007853966571 + ], + [ + 77.702885126448294, + 13.008240223350899 + ], + [ + 77.7029640214501, + 13.008239127586901 + ], + [ + 77.702976074853098, + 13.00827638356 + ], + [ + 77.703007852006607, + 13.0082829581435 + ], + [ + 77.703009305859098, + 13.008423568819101 + ], + [ + 77.703102864244102, + 13.008419725701099 + ], + [ + 77.703125017310995, + 13.008439572039199 + ], + [ + 77.703371645626305, + 13.008441296029099 + ], + [ + 77.7034907099099, + 13.008445799035799 + ], + [ + 77.703561212784606, + 13.0084410220883 + ], + [ + 77.703631341675205, + 13.0084782780614 + ], + [ + 77.703683938343005, + 13.0085516942436 + ], + [ + 77.704175936340505, + 13.008704005427701 + ], + [ + 77.704343962091599, + 13.0087556728596 + ], + [ + 77.704259379689603, + 13.0089501400915 + ], + [ + 77.704441557170796, + 13.0089508630181 + ], + [ + 77.704461930720896, + 13.0096647164393 + ], + [ + 77.704939683788695, + 13.0096102021847 + ], + [ + 77.705279370600906, + 13.009546373936599 + ], + [ + 77.705327584213094, + 13.0098049742203 + ], + [ + 77.705391138520099, + 13.0100416592258 + ], + [ + 77.705421819909702, + 13.0103901121505 + ], + [ + 77.705508385260202, + 13.010419971717299 + ], + [ + 77.706105576592194, + 13.0103703884 + ], + [ + 77.706217344511401, + 13.0103594307609 + ], + [ + 77.706459508336394, + 13.0103079298569 + ], + [ + 77.706918021776403, + 13.010242928659199 + ], + [ + 77.707122490118294, + 13.010216893494601 + ], + [ + 77.707424876344902, + 13.010173150895501 + ], + [ + 77.708218209418803, + 13.0100449465175 + ], + [ + 77.7084110638677, + 13.0114606734946 + ], + [ + 77.708734318934205, + 13.011451968213199 + ], + [ + 77.708744021260699, + 13.011549145912401 + ], + [ + 77.709993346959905, + 13.011474918425501 + ], + [ + 77.710050326683401, + 13.011130848556499 + ], + [ + 77.710512824133005, + 13.011108759484401 + ], + [ + 77.711151182891598, + 13.011076689033899 + ], + [ + 77.711624391547304, + 13.0111144120979 + ], + [ + 77.711880800303206, + 13.011138518904 + ], + [ + 77.712115293780897, + 13.011053049318701 + ], + [ + 77.7122237744084, + 13.011024559456899 + ], + [ + 77.712324584688503, + 13.011037708623901 + ], + [ + 77.712471417052996, + 13.011053049318701 + ], + [ + 77.712812199630406, + 13.011139614667901 + ], + [ + 77.713119013526395, + 13.011268914809801 + ], + [ + 77.713436785061504, + 13.011268914809801 + ], + [ + 77.713744426419296, + 13.011256313309699 + ], + [ + 77.713958368684601, + 13.011367533562 + ], + [ + 77.714035072158694, + 13.0114902591204 + ], + [ + 77.714112883992598, + 13.011554756475499 + ], + [ + 77.714317779248503, + 13.011696262736301 + ], + [ + 77.7144426963347, + 13.0117488594042 + ], + [ + 77.716124100568095, + 13.011914924183101 + ], + [ + 77.716163770112004, + 13.0119974553579 + ], + [ + 77.716129624880793, + 13.0137247956824 + ], + [ + 77.716201945299105, + 13.0138124567956 + ], + [ + 77.716265499606095, + 13.0138716280469 + ], + [ + 77.716355352247106, + 13.0139439484653 + ], + [ + 77.716721337394404, + 13.014066674023701 + ], + [ + 77.717058832679996, + 13.014178441942899 + ], + [ + 77.716993086845093, + 13.014442521046201 + ], + [ + 77.7177447808903, + 13.014647428898201 + ], + [ + 77.717744596229196, + 13.014649166170299 + ], + [ + 77.717623151095793, + 13.015544859543899 + ], + [ + 77.717550830677396, + 13.016079592334 + ], + [ + 77.717513026822402, + 13.0163379186768 + ], + [ + 77.717659859186895, + 13.0163620254829 + ], + [ + 77.718674536571498, + 13.016478176457801 + ], + [ + 77.718904646993494, + 13.0165110493752 + ], + [ + 77.720213536989107, + 13.016715135404301 + ], + [ + 77.720307772685601, + 13.016712943876399 + ], + [ + 77.720322017616496, + 13.0166450065137 + ], + [ + 77.7203428371309, + 13.0165672072758 + ], + [ + 77.720363091842401, + 13.014810533818199 + ], + [ + 77.720121054040803, + 13.014810626582101 + ], + [ + 77.719910010384794, + 13.0148096019575 + ], + [ + 77.719945074829994, + 13.014224464027301 + ], + [ + 77.719962607052693, + 13.014044758745399 + ], + [ + 77.7200239698319, + 13.0136831566537 + ], + [ + 77.720097509155295, + 13.0130800974148 + ], + [ + 77.720098481777995, + 13.013073911917401 + ], + [ + 77.720126893718302, + 13.012760685740201 + ], + [ + 77.719884713336597, + 13.012756348181099 + ], + [ + 77.719896280160796, + 13.012605256540001 + ], + [ + 77.719367820879995, + 13.012615377511199 + ], + [ + 77.719365652100393, + 13.0123941619983 + ], + [ + 77.719322276509601, + 13.0124050058959 + ], + [ + 77.719316493097494, + 13.012234395238901 + ], + [ + 77.719246740348694, + 13.012243702878701 + ], + [ + 77.718502477844197, + 13.0122763249767 + ], + [ + 77.718433257668707, + 13.011225430610899 + ], + [ + 77.717951442157997, + 13.0112997947491 + ], + [ + 77.717882206896206, + 13.011151451322799 + ], + [ + 77.7178068272584, + 13.0099095781659 + ], + [ + 77.7184145716231, + 13.009916648284101 + ], + [ + 77.718482866199395, + 13.0099207129993 + ], + [ + 77.719361969610503, + 13.0101797876242 + ], + [ + 77.719417132370495, + 13.0102090857219 + ], + [ + 77.719723129060696, + 13.010082344530201 + ], + [ + 77.719698402077597, + 13.0100883041335 + ], + [ + 77.719691608539904, + 13.0100566376084 + ], + [ + 77.719486976227401, + 13.0091027850132 + ], + [ + 77.719416326436402, + 13.0087734607093 + ], + [ + 77.719325939251206, + 13.0083521320202 + ], + [ + 77.719282197159799, + 13.007667173828599 + ], + [ + 77.719140073331303, + 13.0070419645582 + ], + [ + 77.719010099255698, + 13.006369201826301 + ], + [ + 77.718958542572196, + 13.006129225179301 + ], + [ + 77.718831673566498, + 13.0057940568001 + ], + [ + 77.718433994008706, + 13.004872591401901 + ], + [ + 77.718312279598806, + 13.0045905641022 + ], + [ + 77.718294146983297, + 13.004548548623101 + ], + [ + 77.718190360956896, + 13.004543393266401 + ], + [ + 77.717111446493107, + 13.004489797916699 + ], + [ + 77.716810395354202, + 13.0044813007847 + ], + [ + 77.716498636113997, + 13.004472501675099 + ], + [ + 77.716378839865598, + 13.004469239132201 + ], + [ + 77.716108661109402, + 13.004456258924201 + ], + [ + 77.7159754713513, + 13.004449421468401 + ], + [ + 77.715852875006505, + 13.0044431277767 + ], + [ + 77.715796504851397, + 13.0044482345766 + ], + [ + 77.715741948892699, + 13.0044524233919 + ], + [ + 77.715607424258593, + 13.004462752166001 + ], + [ + 77.715455931833205, + 13.004474382980201 + ], + [ + 77.715168862612501, + 13.0044965834789 + ], + [ + 77.715089500951194, + 13.0045053183016 + ], + [ + 77.714301065137093, + 13.004592611047 + ], + [ + 77.714211303758105, + 13.004598066831401 + ], + [ + 77.713966750465104, + 13.004611916930401 + ], + [ + 77.713883762238495, + 13.004616463443099 + ], + [ + 77.713687776780404, + 13.004627199995699 + ], + [ + 77.713686515435995, + 13.004627269196099 + ], + [ + 77.713666004907196, + 13.0046285334139 + ], + [ + 77.713554176095002, + 13.0046354284652 + ], + [ + 77.713355837520297, + 13.004610402104699 + ], + [ + 77.713263681068, + 13.0045985996399 + ], + [ + 77.713119440772203, + 13.004580127592099 + ], + [ + 77.712997708342598, + 13.0045576874498 + ], + [ + 77.712901532090001, + 13.004539869261899 + ], + [ + 77.712778472398895, + 13.0045170704296 + ], + [ + 77.712683397031, + 13.004499295473799 + ], + [ + 77.712463407759699, + 13.004458167213199 + ], + [ + 77.712378071058197, + 13.0044422129697 + ], + [ + 77.712171133762496, + 13.0044206631202 + ], + [ + 77.712131664196505, + 13.0044165275482 + ], + [ + 77.711818357977805, + 13.0043836994899 + ], + [ + 77.711558381817596, + 13.004355928306101 + ], + [ + 77.711533614052101, + 13.004355057950299 + ], + [ + 77.711308495164005, + 13.0043406261271 + ], + [ + 77.711215564880106, + 13.0043346684655 + ], + [ + 77.711201345911803, + 13.0043337747596 + ], + [ + 77.711118589779602, + 13.004328573265999 + ], + [ + 77.71092287143, + 13.0043162720493 + ], + [ + 77.710814586990097, + 13.004309701699899 + ], + [ + 77.710637098736498, + 13.004298932187201 + ], + [ + 77.710611704980295, + 13.004297341079599 + ], + [ + 77.710599915220499, + 13.004296602445001 + ], + [ + 77.710599168512204, + 13.0042965560444 + ], + [ + 77.710455074197796, + 13.004287527310099 + ], + [ + 77.710341545316396, + 13.0042804141149 + ], + [ + 77.710312716679994, + 13.004278607724601 + ], + [ + 77.710295172536405, + 13.004278518173001 + ], + [ + 77.710022509957497, + 13.004277122221101 + ], + [ + 77.709904009499795, + 13.004276150282999 + ], + [ + 77.709851373918795, + 13.0042757187611 + ], + [ + 77.709053393937296, + 13.004269175374199 + ], + [ + 77.708923822365705, + 13.0042671406003 + ], + [ + 77.708717970576103, + 13.0042630194966 + ], + [ + 77.708330644581196, + 13.004255265801699 + ], + [ + 77.708254233366603, + 13.0042537611246 + ], + [ + 77.707843434108597, + 13.0042456713451 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "259", + "group": "CHELLAKERE", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "4", + "ward_name": "4 - Chellakere", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಚೆಲ್ಲಾಕೆರೆ", + "dig_ward_n": "CHELLAKERE", + "Assembly": "151 - K.R. Pura", + "Slno": "4" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.643765403808302, + 13.0389646622009 + ], + [ + 77.643772498451597, + 13.0390900866501 + ], + [ + 77.643790030674197, + 13.0403852795967 + ], + [ + 77.643746200117604, + 13.041093143085201 + ], + [ + 77.643730859422803, + 13.041336402674199 + ], + [ + 77.643664802196099, + 13.042268551608601 + ], + [ + 77.643535708938401, + 13.0429678226412 + ], + [ + 77.644530996311701, + 13.0430245801036 + ], + [ + 77.644626775265706, + 13.0428610645851 + ], + [ + 77.644922172614599, + 13.0428991572053 + ], + [ + 77.647805805962506, + 13.039420550441999 + ], + [ + 77.6478329445859, + 13.0393872410406 + ], + [ + 77.649145389283703, + 13.037776339384701 + ], + [ + 77.6497074181231, + 13.0370806716214 + ], + [ + 77.649733171449299, + 13.0361007575583 + ], + [ + 77.649954650054895, + 13.0360724288995 + ], + [ + 77.649943634908297, + 13.035337499500301 + ], + [ + 77.649767616901002, + 13.032138178668401 + ], + [ + 77.649571281085699, + 13.032149518017601 + ], + [ + 77.649569089557801, + 13.0319413228739 + ], + [ + 77.649516492889902, + 13.031687105645901 + ], + [ + 77.649277616356599, + 13.031693680229299 + ], + [ + 77.649216693324902, + 13.03107714067 + ], + [ + 77.649129245138198, + 13.0302303507291 + ], + [ + 77.649117585379997, + 13.029931569424599 + ], + [ + 77.648970380932397, + 13.029194818451799 + ], + [ + 77.648933215453198, + 13.0290760346649 + ], + [ + 77.648876110382801, + 13.0288735871864 + ], + [ + 77.648803144700594, + 13.0286059697781 + ], + [ + 77.647915390942899, + 13.028727421432301 + ], + [ + 77.647850327556796, + 13.028509097625401 + ], + [ + 77.646671130799206, + 13.0287604809964 + ], + [ + 77.646635811015301, + 13.0286370556182 + ], + [ + 77.646557786324905, + 13.0282472807241 + ], + [ + 77.646492115342994, + 13.027875145160101 + ], + [ + 77.646446162402199, + 13.027626204579899 + ], + [ + 77.646736532937993, + 13.027574251891799 + ], + [ + 77.646938668061793, + 13.027578484468 + ], + [ + 77.6468074957818, + 13.027112094139101 + ], + [ + 77.646568470738202, + 13.026255101909699 + ], + [ + 77.646736771942201, + 13.0262043981208 + ], + [ + 77.647550805368496, + 13.026008789517199 + ], + [ + 77.647455289744101, + 13.0256616467705 + ], + [ + 77.647505508730205, + 13.0256474824411 + ], + [ + 77.647308865385398, + 13.0250483169335 + ], + [ + 77.647260768882703, + 13.024922974532601 + ], + [ + 77.647233076956894, + 13.024790344782801 + ], + [ + 77.647173320695998, + 13.0245935863628 + ], + [ + 77.647155831058697, + 13.024481361189901 + ], + [ + 77.647119394314203, + 13.0243851681845 + ], + [ + 77.647058180583599, + 13.024200069522699 + ], + [ + 77.646979477215595, + 13.023783233166199 + ], + [ + 77.646905146256898, + 13.023437812828799 + ], + [ + 77.646553896040402, + 13.0234276105404 + ], + [ + 77.646317785936404, + 13.023405748493699 + ], + [ + 77.646232751846497, + 13.023334857282901 + ], + [ + 77.645882656198907, + 13.023180884357201 + ], + [ + 77.645591604600995, + 13.0233061466561 + ], + [ + 77.645421015984397, + 13.0233795648219 + ], + [ + 77.645206624412907, + 13.023471834094201 + ], + [ + 77.645190619904298, + 13.0234787223747 + ], + [ + 77.645182525936505, + 13.023482206297 + ], + [ + 77.645095971310894, + 13.0235194570835 + ], + [ + 77.644757112769099, + 13.023665293432501 + ], + [ + 77.644487524621098, + 13.0237813176392 + ], + [ + 77.643362878581101, + 13.024285742383199 + ], + [ + 77.643339675846207, + 13.0242961486667 + ], + [ + 77.643307973480404, + 13.024310367280499 + ], + [ + 77.643231651033503, + 13.024344599692199 + ], + [ + 77.643119485015205, + 13.024394907855299 + ], + [ + 77.642753473743596, + 13.024552618640501 + ], + [ + 77.642029355577407, + 13.0248646328823 + ], + [ + 77.642020149013703, + 13.0248685996419 + ], + [ + 77.640837470799298, + 13.0253781971142 + ], + [ + 77.640632551734399, + 13.025466492858399 + ], + [ + 77.640577456038599, + 13.0254902320718 + ], + [ + 77.640555990444497, + 13.025499481251501 + ], + [ + 77.6401153610027, + 13.025707237177601 + ], + [ + 77.639936983744406, + 13.0257745514986 + ], + [ + 77.639649649439207, + 13.025884758218901 + ], + [ + 77.639413688857303, + 13.025924747406901 + ], + [ + 77.639011595044494, + 13.025992891206 + ], + [ + 77.638688414187996, + 13.026049715079999 + ], + [ + 77.638581293547603, + 13.0260685498345 + ], + [ + 77.638470306647207, + 13.0260880644355 + ], + [ + 77.637150438482195, + 13.0263201294976 + ], + [ + 77.636986143659996, + 13.0263579380255 + ], + [ + 77.636303807081006, + 13.026517580413801 + ], + [ + 77.635815444890497, + 13.0266318390414 + ], + [ + 77.634973908462698, + 13.0268843192645 + ], + [ + 77.634069447069294, + 13.027198984108599 + ], + [ + 77.633986969466406, + 13.027227678353301 + ], + [ + 77.633985942225294, + 13.0272280357059 + ], + [ + 77.633887227945905, + 13.0272623786874 + ], + [ + 77.632762007758799, + 13.027753751638601 + ], + [ + 77.632727433665295, + 13.027768396239299 + ], + [ + 77.632715570857599, + 13.0277734209852 + ], + [ + 77.632717769799797, + 13.0277759986406 + ], + [ + 77.632785162270693, + 13.0278550011065 + ], + [ + 77.633003033889807, + 13.028110405885799 + ], + [ + 77.6334959553012, + 13.0286887712625 + ], + [ + 77.633496335020993, + 13.028689217298 + ], + [ + 77.633744451148601, + 13.0285726395916 + ], + [ + 77.634276893417905, + 13.0284418777171 + ], + [ + 77.634876608033395, + 13.028301397405899 + ], + [ + 77.634911660177394, + 13.028294264409 + ], + [ + 77.635039633577406, + 13.0282523093809 + ], + [ + 77.6353425006658, + 13.028130374897 + ], + [ + 77.635666953847903, + 13.027999749347501 + ], + [ + 77.635983005451493, + 13.027884356241501 + ], + [ + 77.636010566917605, + 13.027874293295801 + ], + [ + 77.636068179996798, + 13.027861777230299 + ], + [ + 77.636183938232406, + 13.027836629468201 + ], + [ + 77.636354141668605, + 13.0277996537231 + ], + [ + 77.636580167570798, + 13.027772509653399 + ], + [ + 77.636632221623998, + 13.0277831206058 + ], + [ + 77.636654037158706, + 13.027787567347501 + ], + [ + 77.636670255159004, + 13.0277964363106 + ], + [ + 77.636728758440597, + 13.027828589212399 + ], + [ + 77.636769974039098, + 13.0278436690191 + ], + [ + 77.636944967051605, + 13.0279076946986 + ], + [ + 77.636948433800498, + 13.0279087886626 + ], + [ + 77.637030292874698, + 13.027916989378101 + ], + [ + 77.637136851508302, + 13.0279192923403 + ], + [ + 77.637186024144498, + 13.027923171107901 + ], + [ + 77.637263646791794, + 13.027929294010301 + ], + [ + 77.637328196030097, + 13.027934283096499 + ], + [ + 77.637605153391505, + 13.027985667367499 + ], + [ + 77.637606403020399, + 13.0279992608009 + ], + [ + 77.637609365653404, + 13.0280314857468 + ], + [ + 77.637700227508304, + 13.029019914468901 + ], + [ + 77.637702845499405, + 13.02904839018 + ], + [ + 77.637742073513806, + 13.029475126946499 + ], + [ + 77.637744437411996, + 13.0295008372151 + ], + [ + 77.637822282143802, + 13.0297823579003 + ], + [ + 77.637873380197107, + 13.029930898989999 + ], + [ + 77.637916311011097, + 13.0300151557764 + ], + [ + 77.637992985381899, + 13.0301318172172 + ], + [ + 77.638022617649796, + 13.030162565356701 + ], + [ + 77.638058929707, + 13.030200245922099 + ], + [ + 77.638188045007496, + 13.0303342252643 + ], + [ + 77.638208200066003, + 13.030351940758599 + ], + [ + 77.638522025415199, + 13.0306277804755 + ], + [ + 77.638524606301203, + 13.0306300488243 + ], + [ + 77.639122590560603, + 13.031141153698901 + ], + [ + 77.639134075616198, + 13.031151319183 + ], + [ + 77.639247260394598, + 13.0312515003487 + ], + [ + 77.639397555984203, + 13.0313845294468 + ], + [ + 77.639599535890497, + 13.031750606173601 + ], + [ + 77.639656007127797, + 13.032025568107001 + ], + [ + 77.639648653333197, + 13.0320380648404 + ], + [ + 77.639753600351597, + 13.0323226958556 + ], + [ + 77.639806367862704, + 13.032465572957999 + ], + [ + 77.639851902454893, + 13.032578033968701 + ], + [ + 77.639892040337898, + 13.0326160193506 + ], + [ + 77.639917711179194, + 13.032647376700099 + ], + [ + 77.640114875917604, + 13.0328847706738 + ], + [ + 77.640166790739499, + 13.0329474767496 + ], + [ + 77.640373708025706, + 13.033230389145899 + ], + [ + 77.640445523759396, + 13.0333285801701 + ], + [ + 77.640768883403297, + 13.0336821259644 + ], + [ + 77.6408801426427, + 13.0339644332551 + ], + [ + 77.641032416595394, + 13.034258743852799 + ], + [ + 77.641038627089202, + 13.034264240032501 + ], + [ + 77.641099269920105, + 13.034317912222701 + ], + [ + 77.641176536510798, + 13.0343272873101 + ], + [ + 77.641182236157604, + 13.034327998933 + ], + [ + 77.641228758686296, + 13.034333807444799 + ], + [ + 77.641243426512005, + 13.0343356389752 + ], + [ + 77.641219186578695, + 13.034311304192499 + ], + [ + 77.641217815221495, + 13.0343099274689 + ], + [ + 77.641195023783595, + 13.0342243369022 + ], + [ + 77.6414485378276, + 13.0341280229311 + ], + [ + 77.6418349206551, + 13.0339625980839 + ], + [ + 77.6421521087873, + 13.033897252838299 + ], + [ + 77.642568335973195, + 13.0338308964756 + ], + [ + 77.643370318637494, + 13.0338656217961 + ], + [ + 77.643304123768402, + 13.034031167934099 + ], + [ + 77.643273869386107, + 13.034110524230799 + ], + [ + 77.643267151267295, + 13.0341828647566 + ], + [ + 77.643224622779201, + 13.034733243234401 + ], + [ + 77.643213285947397, + 13.0348587056219 + ], + [ + 77.643178747611202, + 13.035239615173399 + ], + [ + 77.643177111378293, + 13.035334806798399 + ], + [ + 77.643176611801394, + 13.035363854378501 + ], + [ + 77.643176155913693, + 13.035375152426999 + ], + [ + 77.643200042949601, + 13.0356052067057 + ], + [ + 77.6432304570002, + 13.035898113860901 + ], + [ + 77.6432313241001, + 13.035906464579099 + ], + [ + 77.643231945651905, + 13.0359064412393 + ], + [ + 77.643989664639406, + 13.0358779872374 + ], + [ + 77.644786636724305, + 13.035848056810501 + ], + [ + 77.644883430032607, + 13.0358444215542 + ], + [ + 77.644887424672007, + 13.035847027165399 + ], + [ + 77.644939679932804, + 13.035881112055799 + ], + [ + 77.644938576306103, + 13.0358856403214 + ], + [ + 77.644929231478699, + 13.0359275179541 + ], + [ + 77.644927456117699, + 13.035935277584001 + ], + [ + 77.644907218936197, + 13.036023728891999 + ], + [ + 77.6448322793145, + 13.036070793654901 + ], + [ + 77.644762473990795, + 13.0361132889582 + ], + [ + 77.644687186333798, + 13.0361276090581 + ], + [ + 77.644468963023201, + 13.036192417095901 + ], + [ + 77.6444627268761, + 13.036194269106099 + ], + [ + 77.644421028368399, + 13.0362263139922 + ], + [ + 77.644402324183702, + 13.0362901079876 + ], + [ + 77.644393797290505, + 13.0363191904872 + ], + [ + 77.644372727887401, + 13.036394224876499 + ], + [ + 77.644339419078193, + 13.0365128473571 + ], + [ + 77.644333455252095, + 13.0365379879954 + ], + [ + 77.644294836326793, + 13.036700786840299 + ], + [ + 77.644287056205599, + 13.0367335855967 + ], + [ + 77.644267298676198, + 13.036825257409999 + ], + [ + 77.644245561798499, + 13.0369474373342 + ], + [ + 77.644232390095198, + 13.0370085512752 + ], + [ + 77.644192779064596, + 13.0372370640049 + ], + [ + 77.644154631767506, + 13.0376033300595 + ], + [ + 77.644137621376899, + 13.0377367550957 + ], + [ + 77.644110474121106, + 13.0378375354823 + ], + [ + 77.644080806227393, + 13.037924389297499 + ], + [ + 77.644071378636994, + 13.037951988894701 + ], + [ + 77.644028288387702, + 13.0380698708562 + ], + [ + 77.643981611214699, + 13.038175367725101 + ], + [ + 77.643932102912601, + 13.0382854114066 + ], + [ + 77.643919986770996, + 13.038337479682101 + ], + [ + 77.643890620038903, + 13.0383919835605 + ], + [ + 77.643836972941202, + 13.0384919053741 + ], + [ + 77.643819590494402, + 13.038590328429301 + ], + [ + 77.643813485466893, + 13.038720253442399 + ], + [ + 77.643806502848904, + 13.0388219571145 + ], + [ + 77.643793259039199, + 13.0388762963102 + ], + [ + 77.643768294911695, + 13.038965761919 + ], + [ + 77.643765403808302, + 13.0389646622009 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "260", + "group": "BASAVA NAGARA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "36", + "ward_name": "36 - Talacauvery Layout", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ತಲಕಾವೇರಿ ಲೇಔಟ್", + "dig_ward_n": "BASAVA NAGARA", + "Assembly": "151 - K.R. Pura", + "Slno": "36" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.679799363787595, + 12.9835875129881 + ], + [ + 77.679802725556399, + 12.9836664211468 + ], + [ + 77.679861209023201, + 12.9838463270932 + ], + [ + 77.679942295552905, + 12.9838748169549 + ], + [ + 77.680020094790805, + 12.9838364652179 + ], + [ + 77.680811895907198, + 12.983363230116099 + ], + [ + 77.681710084225799, + 12.9827994392951 + ], + [ + 77.6827663658419, + 12.982205331045201 + ], + [ + 77.684025536917702, + 12.981485552371 + ], + [ + 77.685462713152603, + 12.9806747892895 + ], + [ + 77.686152493435003, + 12.980285655336299 + ], + [ + 77.686148214984598, + 12.980277374963499 + ], + [ + 77.687338238825205, + 12.979600126243501 + ], + [ + 77.687222983840101, + 12.979410148263099 + ], + [ + 77.687187452118394, + 12.979430229123 + ], + [ + 77.687094927480004, + 12.979390876263 + ], + [ + 77.687047486215405, + 12.9793706983815 + ], + [ + 77.686892383062101, + 12.979458290528701 + ], + [ + 77.686807139569197, + 12.979506430435199 + ], + [ + 77.686727529727406, + 12.9794109212829 + ], + [ + 77.686447859261605, + 12.979075395426101 + ], + [ + 77.686015666374203, + 12.9787704562277 + ], + [ + 77.685606555067693, + 12.9784167212815 + ], + [ + 77.6856332594311, + 12.978383698075101 + ], + [ + 77.685252893958193, + 12.978202510712199 + ], + [ + 77.684900064186195, + 12.978034438951999 + ], + [ + 77.684622605894006, + 12.9772294666209 + ], + [ + 77.684558378295407, + 12.9770431260885 + ], + [ + 77.684333032686595, + 12.976598777091599 + ], + [ + 77.684271692017305, + 12.9764778217722 + ], + [ + 77.684268408609, + 12.9764713477574 + ], + [ + 77.684196817287201, + 12.976329752004 + ], + [ + 77.684061843476201, + 12.976062794217301 + ], + [ + 77.684009237927796, + 12.975958748801601 + ], + [ + 77.684004302593394, + 12.975948987488399 + ], + [ + 77.684171333928902, + 12.9759020943559 + ], + [ + 77.6842481293004, + 12.975816524019599 + ], + [ + 77.684272600896904, + 12.975789256180001 + ], + [ + 77.684270974956902, + 12.9756377871166 + ], + [ + 77.684270952546598, + 12.975635699406 + ], + [ + 77.684302298391898, + 12.975498740282699 + ], + [ + 77.684538771442902, + 12.975377730821799 + ], + [ + 77.684937851141797, + 12.975119535875599 + ], + [ + 77.685001105364194, + 12.9750857446693 + ], + [ + 77.6852870362288, + 12.9749329965019 + ], + [ + 77.685300220260004, + 12.9749308178137 + ], + [ + 77.685425538445699, + 12.974910110940799 + ], + [ + 77.685509086771802, + 12.974862950099 + ], + [ + 77.685559155930093, + 12.9747540280335 + ], + [ + 77.685565486355003, + 12.9747485921955 + ], + [ + 77.685609256518703, + 12.974711007423901 + ], + [ + 77.685639019873904, + 12.974685450075601 + ], + [ + 77.685741134485895, + 12.974651648029701 + ], + [ + 77.6857807026405, + 12.974583486254099 + ], + [ + 77.685832612796204, + 12.9743243591777 + ], + [ + 77.685823831853199, + 12.9742036235663 + ], + [ + 77.685843924138595, + 12.9740374210082 + ], + [ + 77.685901682652101, + 12.973947616208999 + ], + [ + 77.686108103897098, + 12.973762550718099 + ], + [ + 77.686349509602607, + 12.9735784172307 + ], + [ + 77.686421989407293, + 12.973523132787401 + ], + [ + 77.686741988989596, + 12.9732790505441 + ], + [ + 77.686822469181394, + 12.9732176631739 + ], + [ + 77.686824280050899, + 12.9731182733595 + ], + [ + 77.686843070270001, + 12.9730988825268 + ], + [ + 77.686762802244104, + 12.9725938225624 + ], + [ + 77.686682534745302, + 12.972088762492399 + ], + [ + 77.6865744540424, + 12.971829249173201 + ], + [ + 77.686472747508802, + 12.9715850402378 + ], + [ + 77.686332965911006, + 12.971113341898301 + ], + [ + 77.686329659404507, + 12.9711021389795 + ], + [ + 77.686241577919603, + 12.9708037156924 + ], + [ + 77.686118550438394, + 12.970386891244299 + ], + [ + 77.686093391257302, + 12.9703016501935 + ], + [ + 77.686412672680405, + 12.970226082798501 + ], + [ + 77.686442218354401, + 12.970217372646699 + ], + [ + 77.686460305514302, + 12.9702120402152 + ], + [ + 77.686390343328995, + 12.9701303299216 + ], + [ + 77.686369868491099, + 12.970100052511199 + ], + [ + 77.686355822716607, + 12.9700787424404 + ], + [ + 77.686329239869593, + 12.970015780794601 + ], + [ + 77.686327617840305, + 12.970011670924601 + ], + [ + 77.686315036493497, + 12.969979792517201 + ], + [ + 77.686308534697005, + 12.969964050617801 + ], + [ + 77.6863082232518, + 12.969957089683801 + ], + [ + 77.686307777197399, + 12.969947120174901 + ], + [ + 77.686305862114594, + 12.969875999235301 + ], + [ + 77.686307821437296, + 12.9698535310546 + ], + [ + 77.686308425106006, + 12.969846613104099 + ], + [ + 77.686311048716107, + 12.9698228724356 + ], + [ + 77.686314856223106, + 12.9697946080896 + ], + [ + 77.686315314384998, + 12.9697912102844 + ], + [ + 77.686329929477395, + 12.9697583120302 + ], + [ + 77.686351452263807, + 12.969725342435201 + ], + [ + 77.686372447899302, + 12.969696895154501 + ], + [ + 77.686390159417797, + 12.969684290838501 + ], + [ + 77.686430860213207, + 12.9696680614366 + ], + [ + 77.686442888058806, + 12.9696622911246 + ], + [ + 77.686477893055496, + 12.9696517666309 + ], + [ + 77.686499694674595, + 12.969644766153699 + ], + [ + 77.686536414463902, + 12.969633094724699 + ], + [ + 77.686549287996399, + 12.969630335653401 + ], + [ + 77.686597299049495, + 12.9696200444862 + ], + [ + 77.686600752895899, + 12.9696200088128 + ], + [ + 77.6866122414676, + 12.9696176317166 + ], + [ + 77.686680021608893, + 12.9696033810208 + ], + [ + 77.686705277060796, + 12.969596344853899 + ], + [ + 77.686717904786093, + 12.969592826769601 + ], + [ + 77.686735125512996, + 12.9695881320258 + ], + [ + 77.686781534166997, + 12.9695673267492 + ], + [ + 77.686808468030193, + 12.969555756367299 + ], + [ + 77.686821635014596, + 12.9695488450563 + ], + [ + 77.686836528920495, + 12.969541915906699 + ], + [ + 77.6868942684779, + 12.969504055311599 + ], + [ + 77.686910840796003, + 12.9694925919521 + ], + [ + 77.686948590551793, + 12.9694696176606 + ], + [ + 77.687000167798203, + 12.969447629744201 + ], + [ + 77.687046109896301, + 12.969436992203001 + ], + [ + 77.687116216758298, + 12.969424975805399 + ], + [ + 77.687120234114005, + 12.969423805087199 + ], + [ + 77.687128856592594, + 12.969422586795799 + ], + [ + 77.6871662368345, + 12.969418812985399 + ], + [ + 77.6871829061498, + 12.9694163823462 + ], + [ + 77.687250795324104, + 12.9694122933437 + ], + [ + 77.687262308129803, + 12.9694121744051 + ], + [ + 77.687310625528994, + 12.969408287582599 + ], + [ + 77.687337656364605, + 12.9694057498868 + ], + [ + 77.687358343028606, + 12.9694021485154 + ], + [ + 77.687364662942898, + 12.969400954005099 + ], + [ + 77.687370407216903, + 12.9693997654418 + ], + [ + 77.687399607200007, + 12.9693847839439 + ], + [ + 77.687428722280899, + 12.9693618988026 + ], + [ + 77.687449214884197, + 12.969340231960601 + ], + [ + 77.687471288862298, + 12.969304998177501 + ], + [ + 77.687484813136507, + 12.969277757244701 + ], + [ + 77.687502257730003, + 12.9692403128567 + ], + [ + 77.687523768182601, + 12.969206214110899 + ], + [ + 77.6875609300577, + 12.9691821166055 + ], + [ + 77.687593608097401, + 12.9691693575906 + ], + [ + 77.687629188588701, + 12.9691588270168 + ], + [ + 77.687697459233107, + 12.969136666503999 + ], + [ + 77.687721526924705, + 12.969126254874601 + ], + [ + 77.687738159819901, + 12.9691204369307 + ], + [ + 77.687770765060904, + 12.9691009033493 + ], + [ + 77.687785598256895, + 12.9690883286993 + ], + [ + 77.687786905539795, + 12.969087019306899 + ], + [ + 77.687789015703601, + 12.969084905737899 + ], + [ + 77.687805539281101, + 12.9690689261098 + ], + [ + 77.687805539426193, + 12.9690689259696 + ], + [ + 77.6878054059991, + 12.969056505966201 + ], + [ + 77.687788626521495, + 12.9689414992552 + ], + [ + 77.687781209415704, + 12.9688941487974 + ], + [ + 77.687770108024395, + 12.968825381291399 + ], + [ + 77.687746470846605, + 12.968822237929 + ], + [ + 77.687746470450094, + 12.968822237876299 + ], + [ + 77.687746275389102, + 12.968696896847 + ], + [ + 77.687746189501993, + 12.968581717638401 + ], + [ + 77.687746302298393, + 12.9683242765863 + ], + [ + 77.687746302307801, + 12.968324255078899 + ], + [ + 77.687743253212304, + 12.968093985508601 + ], + [ + 77.687743252429598, + 12.968093926391999 + ], + [ + 77.687770319498, + 12.968094775953601 + ], + [ + 77.687777563010897, + 12.9676972168524 + ], + [ + 77.687781627936303, + 12.967593286921501 + ], + [ + 77.687791060228406, + 12.967345891019701 + ], + [ + 77.687793749977104, + 12.9672747225798 + ], + [ + 77.688106764193705, + 12.9671401428298 + ], + [ + 77.688048687398293, + 12.967099252041599 + ], + [ + 77.688106764193705, + 12.9671401428298 + ], + [ + 77.688404623207205, + 12.9670120785755 + ], + [ + 77.688865481644399, + 12.9623244572531 + ], + [ + 77.689347955248195, + 12.9621681570211 + ], + [ + 77.689568389711994, + 12.9617345186918 + ], + [ + 77.689546714524596, + 12.9615924615221 + ], + [ + 77.689608946592202, + 12.9614371158785 + ], + [ + 77.689602344689703, + 12.9612314843892 + ], + [ + 77.689602024728501, + 12.961221507236701 + ], + [ + 77.689597439025107, + 12.9611819967086 + ], + [ + 77.689593972314199, + 12.961152127430701 + ], + [ + 77.689593777463202, + 12.961150451881601 + ], + [ + 77.689586150380606, + 12.961149764227899 + ], + [ + 77.689548830567901, + 12.9611463994899 + ], + [ + 77.689545770518293, + 12.961129492876999 + ], + [ + 77.689498621576305, + 12.960866872841301 + ], + [ + 77.689262593317693, + 12.960170327034399 + ], + [ + 77.689237125340796, + 12.959996690907399 + ], + [ + 77.689257436082002, + 12.9596614878767 + ], + [ + 77.689331742027605, + 12.958435167638999 + ], + [ + 77.689374535043996, + 12.957728934848801 + ], + [ + 77.689449730119307, + 12.9567359051245 + ], + [ + 77.689491808050093, + 12.9561802263663 + ], + [ + 77.689518728539497, + 12.9558247163591 + ], + [ + 77.689632657442402, + 12.955429472226101 + ], + [ + 77.689635277593595, + 12.955420382341901 + ], + [ + 77.689566187390298, + 12.9554078137279 + ], + [ + 77.688483990017005, + 12.955210945811199 + ], + [ + 77.688170701078406, + 12.9551609151279 + ], + [ + 77.687816112525496, + 12.955104288606901 + ], + [ + 77.687534232330506, + 12.9550592723647 + ], + [ + 77.687538790783904, + 12.9550544708567 + ], + [ + 77.687580631595296, + 12.9550103956232 + ], + [ + 77.685097418527207, + 12.954768930953 + ], + [ + 77.682455432401795, + 12.954540362316701 + ], + [ + 77.680303968749698, + 12.9543521790876 + ], + [ + 77.679861195840402, + 12.954423662106899 + ], + [ + 77.679961758574095, + 12.9550153957298 + ], + [ + 77.679630276780699, + 12.956369225122399 + ], + [ + 77.679753002339098, + 12.956860127356 + ], + [ + 77.680331565685805, + 12.9579471251588 + ], + [ + 77.681024088479504, + 12.958411729058501 + ], + [ + 77.681015322368197, + 12.9599019679818 + ], + [ + 77.681313370152907, + 12.9606383213321 + ], + [ + 77.681488692379205, + 12.9613527594041 + ], + [ + 77.681559765363104, + 12.9616607658766 + ], + [ + 77.681711442603103, + 12.9623688740094 + ], + [ + 77.681795661915402, + 12.9627620477461 + ], + [ + 77.682026585197804, + 12.963389714135801 + ], + [ + 77.682056591925104, + 12.963471274356399 + ], + [ + 77.682136376597697, + 12.964113913258499 + ], + [ + 77.682114890151198, + 12.964116863826 + ], + [ + 77.682277694895404, + 12.964531517945201 + ], + [ + 77.682650938484699, + 12.965156768391299 + ], + [ + 77.682744936138207, + 12.965309963228201 + ], + [ + 77.682896503573801, + 12.9655569826289 + ], + [ + 77.682988241391996, + 12.9658165677996 + ], + [ + 77.6830111186853, + 12.966131837079899 + ], + [ + 77.682988646544501, + 12.966308942728 + ], + [ + 77.682634907216894, + 12.9670714747055 + ], + [ + 77.682624254989705, + 12.967181848007399 + ], + [ + 77.682623939145699, + 12.9671851223916 + ], + [ + 77.682624194268101, + 12.9671851197609 + ], + [ + 77.682620288824097, + 12.967394002681401 + ], + [ + 77.6826074062038, + 12.9678168273306 + ], + [ + 77.682574708886904, + 12.968889974106499 + ], + [ + 77.682567393508194, + 12.969048758386799 + ], + [ + 77.682520929700999, + 12.969261366668601 + ], + [ + 77.682521854377697, + 12.9692618693475 + ], + [ + 77.682437389886104, + 12.9696229013521 + ], + [ + 77.682293481730298, + 12.9698395028839 + ], + [ + 77.682200403571699, + 12.9700233116082 + ], + [ + 77.681959722582107, + 12.970420175274899 + ], + [ + 77.681930156730004, + 12.970486573007801 + ], + [ + 77.681849057896102, + 12.9706687007483 + ], + [ + 77.681771782965797, + 12.971644694970999 + ], + [ + 77.681730349372401, + 12.971721091707799 + ], + [ + 77.681728764115107, + 12.9717240151216 + ], + [ + 77.681760236209797, + 12.971931637178299 + ], + [ + 77.681779977758794, + 12.9720200160613 + ], + [ + 77.681838732296598, + 12.9722830490488 + ], + [ + 77.681951601329899, + 12.972788339012901 + ], + [ + 77.681975455923705, + 12.9730241246164 + ], + [ + 77.682032978346598, + 12.973274504825699 + ], + [ + 77.682154113512496, + 12.9737751914724 + ], + [ + 77.682239179461703, + 12.9740372346141 + ], + [ + 77.682249119073603, + 12.974111825982 + ], + [ + 77.682263015699505, + 12.9741411318135 + ], + [ + 77.682325100499199, + 12.974272055552801 + ], + [ + 77.682294847347904, + 12.9742851205942 + ], + [ + 77.682491599309998, + 12.9749820260572 + ], + [ + 77.682909202713404, + 12.9748382512373 + ], + [ + 77.683815778601101, + 12.976551423719901 + ], + [ + 77.683500441089805, + 12.9766929214738 + ], + [ + 77.683080734466898, + 12.9768734210628 + ], + [ + 77.683179929520406, + 12.9770497884373 + ], + [ + 77.683018564224, + 12.977124857061501 + ], + [ + 77.682880964087005, + 12.9771954613087 + ], + [ + 77.6827926444019, + 12.977232812215499 + ], + [ + 77.682169602302693, + 12.9775263248165 + ], + [ + 77.681792158897494, + 12.9775767075306 + ], + [ + 77.681635362195394, + 12.977612579871 + ], + [ + 77.681435627924401, + 12.9776639114547 + ], + [ + 77.681425312252102, + 12.9776665265339 + ], + [ + 77.681186058344906, + 12.977708968395101 + ], + [ + 77.681302197546799, + 12.978534781304701 + ], + [ + 77.681511750484205, + 12.978532619724 + ], + [ + 77.681533954161495, + 12.9787315930728 + ], + [ + 77.681601711378093, + 12.9792437037438 + ], + [ + 77.6810359032539, + 12.9792948056621 + ], + [ + 77.680886431963998, + 12.9793159215399 + ], + [ + 77.680557421838103, + 12.9793462292321 + ], + [ + 77.6796549146422, + 12.9794785008111 + ], + [ + 77.679751238264004, + 12.9800117618759 + ], + [ + 77.679750981177307, + 12.9802026031353 + ], + [ + 77.679751295885794, + 12.9802319596764 + ], + [ + 77.6798226329459, + 12.980495462231801 + ], + [ + 77.6798810388525, + 12.980708880194101 + ], + [ + 77.679898133057094, + 12.9807713432564 + ], + [ + 77.679962871828394, + 12.9810100708536 + ], + [ + 77.679972997192095, + 12.9810415846701 + ], + [ + 77.679979030718997, + 12.9810598691555 + ], + [ + 77.680022387974304, + 12.9811912619293 + ], + [ + 77.680061665543306, + 12.981310554456 + ], + [ + 77.680139045267396, + 12.9815468931456 + ], + [ + 77.680143208147896, + 12.981559271658901 + ], + [ + 77.680185084625705, + 12.98175984133 + ], + [ + 77.680214764203896, + 12.981843097677199 + ], + [ + 77.680294877393607, + 12.9820658574011 + ], + [ + 77.680297264843404, + 12.982073737331699 + ], + [ + 77.680380522981906, + 12.9823213074437 + ], + [ + 77.680381722764594, + 12.982325811956599 + ], + [ + 77.680416376751197, + 12.9824970962488 + ], + [ + 77.680438722751504, + 12.9827554575549 + ], + [ + 77.680331924173302, + 12.982928048169599 + ], + [ + 77.680247438500601, + 12.983064578869 + ], + [ + 77.680240075816698, + 12.983075947027499 + ], + [ + 77.680097375845094, + 12.9832890910244 + ], + [ + 77.680077256857302, + 12.9833191415412 + ], + [ + 77.680045697321006, + 12.983366280099601 + ], + [ + 77.680013977608596, + 12.9834136578854 + ], + [ + 77.680004269650695, + 12.9834223512826 + ], + [ + 77.679841758009701, + 12.983567879006101 + ], + [ + 77.679799363787595, + 12.9835875129881 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "261", + "group": "KALAKERE", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "7", + "ward_name": "7 - Kalkere", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಕಲ್ಕೆರೆ", + "dig_ward_n": "KALAKERE", + "Assembly": "151 - K.R. Pura", + "Slno": "7" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.681127003460404, + 13.051804713810901 + ], + [ + 77.681116539264707, + 13.0517773575154 + ], + [ + 77.680950576461299, + 13.051376087836699 + ], + [ + 77.680366721652803, + 13.051492685909899 + ], + [ + 77.679889257317598, + 13.051584277865199 + ], + [ + 77.6797308395291, + 13.051588907886201 + ], + [ + 77.679431254438001, + 13.051502380274499 + ], + [ + 77.679327137089899, + 13.051455655181201 + ], + [ + 77.678887438653305, + 13.051092719431001 + ], + [ + 77.678712432804105, + 13.050972035511901 + ], + [ + 77.678607381280599, + 13.050838676142 + ], + [ + 77.678559485914207, + 13.050636005894599 + ], + [ + 77.678478071754398, + 13.0504336836758 + ], + [ + 77.678293023898206, + 13.050229446288 + ], + [ + 77.678107220541904, + 13.050300175892501 + ], + [ + 77.678135549200704, + 13.049835328354 + ], + [ + 77.678570780414105, + 13.0495533294318 + ], + [ + 77.678346726475894, + 13.0492430018507 + ], + [ + 77.678378918133603, + 13.049123248883699 + ], + [ + 77.678480643772303, + 13.048685442337799 + ], + [ + 77.677981029243398, + 13.048566977037099 + ], + [ + 77.677878015938404, + 13.048577278367601 + ], + [ + 77.677871606364107, + 13.0478854528873 + ], + [ + 77.677798576937903, + 13.0470466558323 + ], + [ + 77.677644204685706, + 13.0460553099705 + ], + [ + 77.677666119964002, + 13.045077888559099 + ], + [ + 77.677698992881403, + 13.0438900804761 + ], + [ + 77.677728646646301, + 13.0431336690355 + ], + [ + 77.6777518381748, + 13.042705963391599 + ], + [ + 77.677739513653606, + 13.041277953723799 + ], + [ + 77.677688035242298, + 13.040119556847401 + ], + [ + 77.677618101422397, + 13.039624005293 + ], + [ + 77.677554936676103, + 13.039134670174199 + ], + [ + 77.677554352044694, + 13.0389580470983 + ], + [ + 77.677747789677298, + 13.038977850829299 + ], + [ + 77.678614561068699, + 13.0389841643465 + ], + [ + 77.679677965334605, + 13.038922021735999 + ], + [ + 77.680191855786404, + 13.0388983279651 + ], + [ + 77.680256505857201, + 13.036775285381299 + ], + [ + 77.680888240335804, + 13.036729208469 + ], + [ + 77.680755078438295, + 13.034793596342499 + ], + [ + 77.679440972846194, + 13.034818465590099 + ], + [ + 77.679391418873806, + 13.033763257470801 + ], + [ + 77.679382674055006, + 13.0332269085925 + ], + [ + 77.679360812008298, + 13.033148205224499 + ], + [ + 77.679359321521005, + 13.033105570158 + ], + [ + 77.679330585349803, + 13.0321637629485 + ], + [ + 77.679348117572502, + 13.031352897652001 + ], + [ + 77.679378368809296, + 13.030345264666 + ], + [ + 77.679378141637102, + 13.030324155129501 + ], + [ + 77.679377462649995, + 13.0302610613711 + ], + [ + 77.679324383772197, + 13.029009750483601 + ], + [ + 77.679307176430797, + 13.028377457091199 + ], + [ + 77.679294145118604, + 13.0278986265879 + ], + [ + 77.679267415980902, + 13.0274042587465 + ], + [ + 77.679233278809093, + 13.026772881104501 + ], + [ + 77.679207504259296, + 13.0257931709262 + ], + [ + 77.679201285207995, + 13.0243794561021 + ], + [ + 77.679205668263606, + 13.023976214981699 + ], + [ + 77.679144931435303, + 13.023678168298201 + ], + [ + 77.679131704199307, + 13.0234858606301 + ], + [ + 77.679053861547601, + 13.0230301732709 + ], + [ + 77.6790459269221, + 13.022632289188101 + ], + [ + 77.678950437545595, + 13.0222532368337 + ], + [ + 77.6789443445291, + 13.0217286586168 + ], + [ + 77.678966243848294, + 13.021293237037799 + ], + [ + 77.678881870026899, + 13.021295428565599 + ], + [ + 77.678770102107606, + 13.0212965243295 + ], + [ + 77.678381653800102, + 13.0213463815877 + ], + [ + 77.678376722862396, + 13.0211957140494 + ], + [ + 77.678356999111998, + 13.0206927584128 + ], + [ + 77.678341658417196, + 13.020177749373101 + ], + [ + 77.678271529526597, + 13.0195827495677 + ], + [ + 77.678262763415304, + 13.019467694356701 + ], + [ + 77.678193182406901, + 13.0190102129226 + ], + [ + 77.678171516669593, + 13.0186616843664 + ], + [ + 77.678177293830004, + 13.018506709404001 + ], + [ + 77.6781816768857, + 13.0183949414848 + ], + [ + 77.678212358275303, + 13.0182503006481 + ], + [ + 77.678249614248301, + 13.018064020782701 + ], + [ + 77.678332892305804, + 13.0175687354935 + ], + [ + 77.678385193143697, + 13.017239417400299 + ], + [ + 77.678387680501501, + 13.0172202825688 + ], + [ + 77.678406169303898, + 13.016987051591499 + ], + [ + 77.678419286531906, + 13.016925837860899 + ], + [ + 77.678470958559004, + 13.0167852642948 + ], + [ + 77.678514777418002, + 13.0164485644175 + ], + [ + 77.678515336997705, + 13.016347506611099 + ], + [ + 77.678017024873299, + 13.0163494085637 + ], + [ + 77.677231448662894, + 13.0163902177175 + ], + [ + 77.676496883894799, + 13.0164164521735 + ], + [ + 77.675851224783202, + 13.0164426866295 + ], + [ + 77.675896406346297, + 13.0167589575713 + ], + [ + 77.675933639807994, + 13.0170024127418 + ], + [ + 77.675951667136403, + 13.0171543573666 + ], + [ + 77.675502250266007, + 13.017247471014301 + ], + [ + 77.675589832902801, + 13.017715779878399 + ], + [ + 77.675660872001203, + 13.018150038250001 + ], + [ + 77.675726025537699, + 13.0183139405414 + ], + [ + 77.675832326762304, + 13.018517029364499 + ], + [ + 77.676091930005995, + 13.0191448225171 + ], + [ + 77.676143529416805, + 13.019273856115399 + ], + [ + 77.675554135520798, + 13.0195491890365 + ], + [ + 77.675502933645205, + 13.0195785823332 + ], + [ + 77.675128330738801, + 13.019771768843 + ], + [ + 77.674541823394094, + 13.019994259047801 + ], + [ + 77.674325982660505, + 13.0201227978189 + ], + [ + 77.673990764611602, + 13.0202889493735 + ], + [ + 77.672926811673605, + 13.020976875108699 + ], + [ + 77.672272769978406, + 13.021427468117301 + ], + [ + 77.671910226503698, + 13.0216593353323 + ], + [ + 77.671146512340002, + 13.0221432152986 + ], + [ + 77.6708433586262, + 13.0223705805839 + ], + [ + 77.670580353778703, + 13.022550228826701 + ], + [ + 77.670486446411203, + 13.0226587559547 + ], + [ + 77.669786910422502, + 13.0217967494011 + ], + [ + 77.669512820511599, + 13.022093124824799 + ], + [ + 77.668876645180404, + 13.022735083568101 + ], + [ + 77.668489156569507, + 13.023426201314299 + ], + [ + 77.668425539036406, + 13.0237413972739 + ], + [ + 77.668153718667597, + 13.023969842051899 + ], + [ + 77.667344040973305, + 13.0249645889334 + ], + [ + 77.665875054299406, + 13.026307786394099 + ], + [ + 77.666032979623395, + 13.026520361409201 + ], + [ + 77.665187647152194, + 13.027356949061801 + ], + [ + 77.664294946913202, + 13.028229973458799 + ], + [ + 77.664125151684004, + 13.0284106997112 + ], + [ + 77.663826370379496, + 13.028785269444199 + ], + [ + 77.663849689895997, + 13.0288348234166 + ], + [ + 77.664206537031006, + 13.028988285433099 + ], + [ + 77.664794859046907, + 13.0292844528431 + ], + [ + 77.665237929859401, + 13.0294884986121 + ], + [ + 77.6654973594799, + 13.0297012891996 + ], + [ + 77.665820917770702, + 13.0299344843641 + ], + [ + 77.666902360345901, + 13.0304985251682 + ], + [ + 77.667188024422401, + 13.0306209526295 + ], + [ + 77.667687936556305, + 13.0307929340633 + ], + [ + 77.667894897264802, + 13.030824998398399 + ], + [ + 77.668065421228803, + 13.030896414417599 + ], + [ + 77.668355457714597, + 13.0309372235713 + ], + [ + 77.668744602145296, + 13.0310130119998 + ], + [ + 77.669076905254698, + 13.0311500141589 + ], + [ + 77.669447895097207, + 13.0313106638501 + ], + [ + 77.669948025172602, + 13.031573688743 + ], + [ + 77.670366100754407, + 13.0318232174267 + ], + [ + 77.670903165108498, + 13.032120278047801 + ], + [ + 77.6714488825709, + 13.0324057751073 + ], + [ + 77.671969691731107, + 13.0326872259008 + ], + [ + 77.672725398409, + 13.033049428781201 + ], + [ + 77.673113350563099, + 13.033217518851099 + ], + [ + 77.673756840711903, + 13.033499455441 + ], + [ + 77.673771415409703, + 13.033626255311701 + ], + [ + 77.673863613516005, + 13.0340257848662 + ], + [ + 77.673948380537297, + 13.034427896891 + ], + [ + 77.673919499800405, + 13.0344626138944 + ], + [ + 77.673833504548398, + 13.034626991008601 + ], + [ + 77.673834781438103, + 13.034753053077701 + ], + [ + 77.673769147757795, + 13.0349425735648 + ], + [ + 77.673679135287202, + 13.035186905072999 + ], + [ + 77.6736096019537, + 13.0353129884379 + ], + [ + 77.673508791673598, + 13.0354159902458 + ], + [ + 77.673452306825396, + 13.0355589719578 + ], + [ + 77.673447156160194, + 13.0356233552733 + ], + [ + 77.673333841524794, + 13.035799765558 + ], + [ + 77.673232151591804, + 13.0358401519044 + ], + [ + 77.673149075814393, + 13.035911567923501 + ], + [ + 77.673041541271999, + 13.0360032168352 + ], + [ + 77.672826974993498, + 13.0360339953849 + ], + [ + 77.6724553202001, + 13.036189944651101 + ], + [ + 77.671971490567103, + 13.0363753523993 + ], + [ + 77.671478815448793, + 13.0365543120956 + ], + [ + 77.671213555949294, + 13.0367044314828 + ], + [ + 77.671024084878098, + 13.036812284246301 + ], + [ + 77.670838986216296, + 13.036934711707699 + ], + [ + 77.670793804653201, + 13.0369696909823 + ], + [ + 77.670716785220193, + 13.037209755773301 + ], + [ + 77.670701444525307, + 13.0372897465391 + ], + [ + 77.670699252997494, + 13.0373576839017 + ], + [ + 77.670669121789601, + 13.037481326752401 + ], + [ + 77.670721168275804, + 13.037911044678401 + ], + [ + 77.670749046576404, + 13.0382319864324 + ], + [ + 77.670716785220193, + 13.0386978031688 + ], + [ + 77.670651039385305, + 13.038908189840299 + ], + [ + 77.670502015493, + 13.0389651695639 + ], + [ + 77.670359566184104, + 13.039179939290999 + ], + [ + 77.670166711735206, + 13.039201854569299 + ], + [ + 77.670151399811303, + 13.0394244564743 + ], + [ + 77.670147416806699, + 13.0394415597258 + ], + [ + 77.669726214641699, + 13.039436348046999 + ], + [ + 77.669453661192307, + 13.0394670654469 + ], + [ + 77.669624308597704, + 13.0404597915428 + ], + [ + 77.669816259078104, + 13.0404472751929 + ], + [ + 77.6698382347859, + 13.040819214806101 + ], + [ + 77.6698351888773, + 13.041006828846101 + ], + [ + 77.669826493580004, + 13.0415423716309 + ], + [ + 77.669767887681104, + 13.0416469500221 + ], + [ + 77.669749604821803, + 13.041760673800599 + ], + [ + 77.669814124680499, + 13.0418663722771 + ], + [ + 77.669819654323504, + 13.041927264556801 + ], + [ + 77.669633931304503, + 13.042226760764301 + ], + [ + 77.669644999458697, + 13.0423472268357 + ], + [ + 77.669689506550696, + 13.042911015418801 + ], + [ + 77.669827295324197, + 13.043774811741701 + ], + [ + 77.6697029887263, + 13.0438908237834 + ], + [ + 77.669630015035494, + 13.043975019470199 + ], + [ + 77.669587748411899, + 13.044168862950601 + ], + [ + 77.669498842755502, + 13.044276715714201 + ], + [ + 77.669357468187002, + 13.0444282925711 + ], + [ + 77.669249615423396, + 13.0445244855764 + ], + [ + 77.6687686503967, + 13.045005450603201 + ], + [ + 77.668725234306095, + 13.045201161999501 + ], + [ + 77.668968064843597, + 13.045221741589099 + ], + [ + 77.668975268665505, + 13.0453285581023 + ], + [ + 77.669009436473104, + 13.0454083717019 + ], + [ + 77.6691064435215, + 13.045571814363001 + ], + [ + 77.669130750489202, + 13.045880331268 + ], + [ + 77.669197264096894, + 13.046208999838701 + ], + [ + 77.669348416578202, + 13.0465985447397 + ], + [ + 77.6693723927891, + 13.046876190982699 + ], + [ + 77.669511942758504, + 13.0471629331558 + ], + [ + 77.669608402454202, + 13.0473472003954 + ], + [ + 77.669695580174206, + 13.047644774179 + ], + [ + 77.6697591953521, + 13.0478573074016 + ], + [ + 77.6697779799496, + 13.047920066529599 + ], + [ + 77.669778332109502, + 13.0479196536632 + ], + [ + 77.669815828750401, + 13.048044933262 + ], + [ + 77.669831275120004, + 13.048156523861 + ], + [ + 77.669849971085, + 13.048291595919601 + ], + [ + 77.669894500630903, + 13.0485278573128 + ], + [ + 77.669913253207, + 13.048614994476001 + ], + [ + 77.669949747170506, + 13.048784595198301 + ], + [ + 77.669964286586904, + 13.0488585657027 + ], + [ + 77.6699941664764, + 13.049010566357699 + ], + [ + 77.670089851911499, + 13.0491227929672 + ], + [ + 77.6701644352747, + 13.049224945162299 + ], + [ + 77.670239681023702, + 13.049388845583801 + ], + [ + 77.670366858800605, + 13.049500746000801 + ], + [ + 77.670494257818703, + 13.0496332311854 + ], + [ + 77.670558014037894, + 13.0497046192651 + ], + [ + 77.670642650463094, + 13.049765497694899 + ], + [ + 77.670676020243803, + 13.0499401216174 + ], + [ + 77.670740218867095, + 13.050052674806 + ], + [ + 77.670909271890494, + 13.0501538511057 + ], + [ + 77.671100537753702, + 13.050368013948599 + ], + [ + 77.671281195650707, + 13.0505719930474 + ], + [ + 77.671472570922205, + 13.0507964456629 + ], + [ + 77.671705381605307, + 13.0509690089866 + ], + [ + 77.671843170120695, + 13.0510910918806 + ], + [ + 77.672042133886293, + 13.0510890361839 + ], + [ + 77.6721887580795, + 13.0510566454677 + ], + [ + 77.672303560821902, + 13.050993704193701 + ], + [ + 77.672303718372902, + 13.0509938742078 + ], + [ + 77.672427164683199, + 13.0511281593863 + ], + [ + 77.672450338884303, + 13.0511197768716 + ], + [ + 77.672949423001896, + 13.050806008358499 + ], + [ + 77.672981756976696, + 13.0507856805805 + ], + [ + 77.6730710243624, + 13.0507857667429 + ], + [ + 77.673181595911004, + 13.050785873425699 + ], + [ + 77.673533375573101, + 13.0507882344682 + ], + [ + 77.6735911096564, + 13.0507886222845 + ], + [ + 77.6737776939583, + 13.050789874046201 + ], + [ + 77.673820369705894, + 13.0508197113422 + ], + [ + 77.673833399150595, + 13.050828820896101 + ], + [ + 77.673904736912405, + 13.050875510655199 + ], + [ + 77.673936038459104, + 13.050894383792199 + ], + [ + 77.673967291425598, + 13.050908740536601 + ], + [ + 77.674350258580304, + 13.051135108339301 + ], + [ + 77.674414151106205, + 13.051172874565401 + ], + [ + 77.674689835355196, + 13.0513710248569 + ], + [ + 77.674843654165898, + 13.0515365586893 + ], + [ + 77.675096186946703, + 13.051830931711599 + ], + [ + 77.675200598417007, + 13.0519540659248 + ], + [ + 77.675228003009806, + 13.0519854006121 + ], + [ + 77.675255407609896, + 13.052016735295 + ], + [ + 77.675341319544103, + 13.052133285483899 + ], + [ + 77.675461607639093, + 13.0522975263157 + ], + [ + 77.675546056315994, + 13.0524128319736 + ], + [ + 77.675645840022597, + 13.052549075726199 + ], + [ + 77.675805898551701, + 13.052545161019699 + ], + [ + 77.676018491407802, + 13.052540355261501 + ], + [ + 77.676088920779193, + 13.052538763135001 + ], + [ + 77.676174385870695, + 13.052536830703 + ], + [ + 77.676260240580305, + 13.052535055914801 + ], + [ + 77.676502576619001, + 13.0525300461917 + ], + [ + 77.677955146578697, + 13.052463440291101 + ], + [ + 77.678203176320295, + 13.052452066269501 + ], + [ + 77.678280788508602, + 13.052446779850699 + ], + [ + 77.678369685001897, + 13.052440927548901 + ], + [ + 77.678395723023996, + 13.0524392133484 + ], + [ + 77.678397576735904, + 13.0524391923406 + ], + [ + 77.678582078780195, + 13.0524370715946 + ], + [ + 77.678655321392696, + 13.0524362243443 + ], + [ + 77.678779414625197, + 13.052434780725701 + ], + [ + 77.678896859484198, + 13.052433406828699 + ], + [ + 77.6789204149634, + 13.0524331302699 + ], + [ + 77.679189164123301, + 13.0524254477504 + ], + [ + 77.679309250623504, + 13.052422014607099 + ], + [ + 77.679531044906398, + 13.052450052567099 + ], + [ + 77.679534928539297, + 13.052450543506801 + ], + [ + 77.679809996622893, + 13.052485316677 + ], + [ + 77.679903275263001, + 13.0524418206393 + ], + [ + 77.679919820921697, + 13.0524341053572 + ], + [ + 77.680001043397098, + 13.052396181315901 + ], + [ + 77.680161262626299, + 13.052321372357101 + ], + [ + 77.680162082267998, + 13.0523209898648 + ], + [ + 77.680202404125097, + 13.052302162978799 + ], + [ + 77.680549915162203, + 13.0521245086994 + ], + [ + 77.680565623842995, + 13.052116478378499 + ], + [ + 77.680653399796597, + 13.0520716057797 + ], + [ + 77.680895512124707, + 13.051947566772199 + ], + [ + 77.680934842853603, + 13.0519274166888 + ], + [ + 77.681035164591606, + 13.051876019838501 + ], + [ + 77.681083046845799, + 13.0518388428266 + ], + [ + 77.681127003460404, + 13.051804713810901 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "262", + "group": "K CHENNASANDRA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "9", + "ward_name": "9 - K Chennasandra", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಕೆ ಚೆನ್ನಸಂದ್ರ", + "dig_ward_n": "K CHENNASANDRA", + "Assembly": "151 - K.R. Pura", + "Slno": "9" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.681127003460404, + 13.051804713810901 + ], + [ + 77.681185480096602, + 13.051759311063901 + ], + [ + 77.681675943968102, + 13.051378501641 + ], + [ + 77.681785956446006, + 13.051292983052299 + ], + [ + 77.682298803587003, + 13.050894319469201 + ], + [ + 77.682889077704601, + 13.050476274990601 + ], + [ + 77.682907127847102, + 13.0504634920191 + ], + [ + 77.683169238218795, + 13.050277859772899 + ], + [ + 77.683611344998695, + 13.049964748523699 + ], + [ + 77.683613908164105, + 13.0499629332511 + ], + [ + 77.683656759983293, + 13.0500405941065 + ], + [ + 77.683795537035095, + 13.0500254751651 + ], + [ + 77.683804682353696, + 13.0500959850702 + ], + [ + 77.683855587695305, + 13.050099495776699 + ], + [ + 77.683964660963099, + 13.0501070190424 + ], + [ + 77.683966886021594, + 13.0501071721082 + ], + [ + 77.684105948108297, + 13.0494663795627 + ], + [ + 77.684117895246402, + 13.0494113287894 + ], + [ + 77.684133353399503, + 13.049340099236201 + ], + [ + 77.684374394865998, + 13.048229392359399 + ], + [ + 77.684426796545296, + 13.047987926643099 + ], + [ + 77.684482681073007, + 13.047730411627599 + ], + [ + 77.684552732386507, + 13.047407616528901 + ], + [ + 77.684609694668097, + 13.0471451371559 + ], + [ + 77.684660971725705, + 13.046908854931401 + ], + [ + 77.684786941202404, + 13.046328388234 + ], + [ + 77.684789207198506, + 13.0463179464627 + ], + [ + 77.684823392975602, + 13.0461604174266 + ], + [ + 77.684920316720707, + 13.045713792129201 + ], + [ + 77.684944650331204, + 13.045601663407901 + ], + [ + 77.684987070868104, + 13.045406186833301 + ], + [ + 77.684996206112302, + 13.0453640910156 + ], + [ + 77.6850514641649, + 13.0451094606947 + ], + [ + 77.685049068738394, + 13.0450775658458 + ], + [ + 77.685046335260495, + 13.045041157650401 + ], + [ + 77.685042383584005, + 13.0450071298329 + ], + [ + 77.685038108704703, + 13.044958954966299 + ], + [ + 77.685027194445397, + 13.0448359622591 + ], + [ + 77.685020827767502, + 13.044764213049101 + ], + [ + 77.685004548770607, + 13.0445807655104 + ], + [ + 77.684995758882494, + 13.044481711760101 + ], + [ + 77.684992121877798, + 13.0444407265219 + ], + [ + 77.684983372954093, + 13.044342136676001 + ], + [ + 77.684978366967499, + 13.0442757384582 + ], + [ + 77.684974472055899, + 13.0442240723045 + ], + [ + 77.684941028685202, + 13.043780442602101 + ], + [ + 77.684927757139704, + 13.043604394947801 + ], + [ + 77.684910934698493, + 13.043381245324101 + ], + [ + 77.684903146615994, + 13.043277929888699 + ], + [ + 77.684892289382105, + 13.0431339015479 + ], + [ + 77.684875831602895, + 13.042915583866099 + ], + [ + 77.684874888426805, + 13.0429030675076 + ], + [ + 77.684872060230703, + 13.042865556359599 + ], + [ + 77.684856683594006, + 13.0427310864962 + ], + [ + 77.684846985364402, + 13.042646277455599 + ], + [ + 77.684836718332804, + 13.0425564886089 + ], + [ + 77.684834956128995, + 13.042541078215599 + ], + [ + 77.6848094673025, + 13.0423181792612 + ], + [ + 77.684780569224003, + 13.04206547189 + ], + [ + 77.684775736388701, + 13.042023205409 + ], + [ + 77.684763908781093, + 13.0419197737631 + ], + [ + 77.684749078767894, + 13.0417900860611 + ], + [ + 77.684730882120704, + 13.041630956274499 + ], + [ + 77.684698942461694, + 13.0414512104857 + ], + [ + 77.684671633058599, + 13.0412975204683 + ], + [ + 77.684643405513, + 13.0411386627433 + ], + [ + 77.684634696443595, + 13.0410896512384 + ], + [ + 77.6846298779394, + 13.0410625368451 + ], + [ + 77.684628508636393, + 13.041051854228501 + ], + [ + 77.684607871967998, + 13.0408908092722 + ], + [ + 77.684606668630295, + 13.0408814176579 + ], + [ + 77.684605340583701, + 13.0408710571164 + ], + [ + 77.6846024590387, + 13.040853351115899 + ], + [ + 77.684584662473597, + 13.040743991093599 + ], + [ + 77.684570585313196, + 13.040657487532 + ], + [ + 77.684549849065306, + 13.040534164769699 + ], + [ + 77.684544012856605, + 13.0405070022078 + ], + [ + 77.684527278814599, + 13.0404193373605 + ], + [ + 77.684521217093106, + 13.0403875843951 + ], + [ + 77.684496809016906, + 13.0402597214179 + ], + [ + 77.684484187467604, + 13.040193599967401 + ], + [ + 77.684482064361205, + 13.0401824789008 + ], + [ + 77.684451799298898, + 13.040036961544301 + ], + [ + 77.684432577912304, + 13.0399445436401 + ], + [ + 77.684393571588402, + 13.039757000838 + ], + [ + 77.684389008146297, + 13.039732938082601 + ], + [ + 77.684375714403004, + 13.039662834296999 + ], + [ + 77.684296909653597, + 13.039247264096399 + ], + [ + 77.684270386785101, + 13.039107393680901 + ], + [ + 77.6842663421087, + 13.039086062754601 + ], + [ + 77.684162601627904, + 13.038486614926899 + ], + [ + 77.684159734256795, + 13.038470043396201 + ], + [ + 77.684159450291304, + 13.0384684040108 + ], + [ + 77.684093885912006, + 13.0380895511486 + ], + [ + 77.684028138030797, + 13.0377096305346 + ], + [ + 77.684021352975506, + 13.0376704231755 + ], + [ + 77.684018467988906, + 13.037653753354 + ], + [ + 77.684017654379005, + 13.037649052511799 + ], + [ + 77.684006168437406, + 13.0375885752172 + ], + [ + 77.6840015838619, + 13.0375495582354 + ], + [ + 77.683996750670303, + 13.0375084200033 + ], + [ + 77.683991429171499, + 13.037463130035601 + ], + [ + 77.683987848426497, + 13.0374326551772 + ], + [ + 77.683981905312606, + 13.0373820747366 + ], + [ + 77.683966428960105, + 13.037250359136999 + ], + [ + 77.683972645633901, + 13.0371274451054 + ], + [ + 77.6839793407526, + 13.036995071420501 + ], + [ + 77.683995530424994, + 13.036674992391101 + ], + [ + 77.683970466085398, + 13.0365855410833 + ], + [ + 77.683936226407994, + 13.0364633437053 + ], + [ + 77.683883532564295, + 13.0362752821593 + ], + [ + 77.6838805071705, + 13.036250629782099 + ], + [ + 77.683857648786699, + 13.036064387243499 + ], + [ + 77.683848198459899, + 13.035992556910299 + ], + [ + 77.683821893925796, + 13.0357926170173 + ], + [ + 77.683809953761497, + 13.035539796552699 + ], + [ + 77.683801306354894, + 13.0354598808339 + ], + [ + 77.683796930522803, + 13.0354194460819 + ], + [ + 77.683793963868894, + 13.035392035094301 + ], + [ + 77.683788402165504, + 13.0353717217981 + ], + [ + 77.683755660226794, + 13.0352521366292 + ], + [ + 77.683753919354899, + 13.0352457768665 + ], + [ + 77.6837388276181, + 13.0350851736774 + ], + [ + 77.683732584845202, + 13.035018738438 + ], + [ + 77.683726013157298, + 13.0349488006187 + ], + [ + 77.683652216910701, + 13.034818848810501 + ], + [ + 77.683619002006296, + 13.0347603588243 + ], + [ + 77.683617263229294, + 13.0346190080864 + ], + [ + 77.683614335699204, + 13.0343809907429 + ], + [ + 77.683654177171405, + 13.0341773189735 + ], + [ + 77.683652997710396, + 13.0341584236123 + ], + [ + 77.6836306078268, + 13.033965323123599 + ], + [ + 77.683627723911897, + 13.0339404524544 + ], + [ + 77.683621616159101, + 13.0338875546417 + ], + [ + 77.683608870178404, + 13.0337771645389 + ], + [ + 77.683602324366205, + 13.0337204671621 + ], + [ + 77.683600032714494, + 13.0337006212345 + ], + [ + 77.683604159750899, + 13.0336373179903 + ], + [ + 77.683607126967999, + 13.0335918069456 + ], + [ + 77.683608127152695, + 13.033576470863901 + ], + [ + 77.683619111142406, + 13.0334079801214 + ], + [ + 77.683622651494304, + 13.0333536706116 + ], + [ + 77.683623468116593, + 13.0333411350807 + ], + [ + 77.6836247188768, + 13.033321949841699 + ], + [ + 77.683624782118798, + 13.033320978964101 + ], + [ + 77.683628039228793, + 13.0332709923176 + ], + [ + 77.683630154784694, + 13.0332385266694 + ], + [ + 77.683628473842802, + 13.0332379794832 + ], + [ + 77.683571823896699, + 13.0332195397751 + ], + [ + 77.683542559985298, + 13.0332100143698 + ], + [ + 77.683521201393205, + 13.0332086936692 + ], + [ + 77.683486473034705, + 13.031933552772401 + ], + [ + 77.683403968108905, + 13.031693378839 + ], + [ + 77.683396044762304, + 13.0316528091662 + ], + [ + 77.683388270442506, + 13.031412366713001 + ], + [ + 77.683381099013204, + 13.0313203439697 + ], + [ + 77.683376859518603, + 13.031265947941501 + ], + [ + 77.683361274309604, + 13.0310659644661 + ], + [ + 77.683355389239793, + 13.030990449270901 + ], + [ + 77.683334808578195, + 13.030726357291 + ], + [ + 77.683290770633505, + 13.030006373652601 + ], + [ + 77.683287117740406, + 13.029969979370099 + ], + [ + 77.683261219177695, + 13.0297119363139 + ], + [ + 77.683256579474303, + 13.0296657045832 + ], + [ + 77.683248399772495, + 13.029544483248101 + ], + [ + 77.683243558969096, + 13.029472743494599 + ], + [ + 77.683231969922602, + 13.0293057395448 + ], + [ + 77.683197955944394, + 13.0290580880077 + ], + [ + 77.683176622894294, + 13.0289027606379 + ], + [ + 77.683160109818701, + 13.028782527590201 + ], + [ + 77.683156204929503, + 13.028589437708099 + ], + [ + 77.683152713267404, + 13.028416738094 + ], + [ + 77.683150595431599, + 13.0283052684289 + ], + [ + 77.683150527380704, + 13.028301689066 + ], + [ + 77.683151245540799, + 13.028291433118699 + ], + [ + 77.683151779397505, + 13.0282838091826 + ], + [ + 77.683150809132897, + 13.0282839684014 + ], + [ + 77.683150192878301, + 13.0282840695277 + ], + [ + 77.683150141910801, + 13.0282813915542 + ], + [ + 77.683148723059304, + 13.028206745170801 + ], + [ + 77.683148248226303, + 13.0279223953191 + ], + [ + 77.683147773589496, + 13.0276376299087 + ], + [ + 77.683176763275796, + 13.0272161220984 + ], + [ + 77.683181457614495, + 13.027147866838099 + ], + [ + 77.683186603446799, + 13.027073053986101 + ], + [ + 77.683200545710704, + 13.026870345299599 + ], + [ + 77.683218977639896, + 13.0267227049094 + ], + [ + 77.683224752660493, + 13.0266764456847 + ], + [ + 77.683274228312001, + 13.0262801311098 + ], + [ + 77.683293492056293, + 13.026126748400101 + ], + [ + 77.683293705049607, + 13.0261250532727 + ], + [ + 77.683300215076798, + 13.026073215334501 + ], + [ + 77.683371651296596, + 13.02570209243 + ], + [ + 77.683429135099999, + 13.025318692670201 + ], + [ + 77.683428587704995, + 13.0252678836016 + ], + [ + 77.6834280524766, + 13.025218203623201 + ], + [ + 77.683543372679395, + 13.0244841477628 + ], + [ + 77.683601486321194, + 13.024168121401001 + ], + [ + 77.683602461984407, + 13.0241628166262 + ], + [ + 77.6836053463052, + 13.0241471322002 + ], + [ + 77.683607755398, + 13.024134030019701 + ], + [ + 77.683654885247705, + 13.0238777328246 + ], + [ + 77.683679886540006, + 13.0237397094869 + ], + [ + 77.683682951896202, + 13.0237035428162 + ], + [ + 77.683686029416407, + 13.023668505235801 + ], + [ + 77.683705394665395, + 13.0235418324379 + ], + [ + 77.683798007220403, + 13.023060577789501 + ], + [ + 77.6838297237326, + 13.0228957622327 + ], + [ + 77.683961561781302, + 13.0228932674914 + ], + [ + 77.684184581485596, + 13.022855951697 + ], + [ + 77.6846003240708, + 13.0228019593316 + ], + [ + 77.685050575689701, + 13.0227442211058 + ], + [ + 77.685404208144803, + 13.0226976463762 + ], + [ + 77.685990562049298, + 13.022605748865599 + ], + [ + 77.686459642237196, + 13.022532004143301 + ], + [ + 77.6864379760285, + 13.022256506216699 + ], + [ + 77.686406085052198, + 13.021595067055101 + ], + [ + 77.685907973047605, + 13.0216313024792 + ], + [ + 77.685387897967502, + 13.021665374236401 + ], + [ + 77.685312338700598, + 13.021666157194799 + ], + [ + 77.6852175769788, + 13.0216164873925 + ], + [ + 77.685212098159298, + 13.021522251695799 + ], + [ + 77.685207715103601, + 13.0213074819687 + ], + [ + 77.685182512533601, + 13.0209776570305 + ], + [ + 77.685178129477904, + 13.020723439802399 + ], + [ + 77.685364409343407, + 13.020734397441499 + ], + [ + 77.686019676163994, + 13.020767270359 + ], + [ + 77.686290329850905, + 13.020767270359 + ], + [ + 77.686274989156004, + 13.020540447228701 + ], + [ + 77.686283755267397, + 13.020313624098501 + ], + [ + 77.686302383253903, + 13.0199520220068 + ], + [ + 77.686335256171304, + 13.019699996306599 + ], + [ + 77.686311149365196, + 13.019581653803799 + ], + [ + 77.686300191726104, + 13.0194852265794 + ], + [ + 77.6862541696417, + 13.019163071988601 + ], + [ + 77.6862366374191, + 13.0189000886492 + ], + [ + 77.686207051793403, + 13.0188321512865 + ], + [ + 77.687298981505094, + 13.0187647711602 + ], + [ + 77.687300345805099, + 13.018453325479999 + ], + [ + 77.687282354195403, + 13.0181922133621 + ], + [ + 77.686742328090304, + 13.0181936592151 + ], + [ + 77.686731484192606, + 13.0178835237411 + ], + [ + 77.686721512951195, + 13.0172789059382 + ], + [ + 77.6867748389638, + 13.016559931728199 + ], + [ + 77.685692461660295, + 13.0166801850366 + ], + [ + 77.685646568551306, + 13.0161524606344 + ], + [ + 77.685613580827393, + 13.0160348878698 + ], + [ + 77.685603638191594, + 13.015947843455301 + ], + [ + 77.685595867718803, + 13.0158852044394 + ], + [ + 77.685359757614705, + 13.0159303860025 + ], + [ + 77.684869319034405, + 13.0159930572029 + ], + [ + 77.684429163161397, + 13.0161038249061 + ], + [ + 77.6840662531867, + 13.0161679535763 + ], + [ + 77.684048763549399, + 13.0161096547852 + ], + [ + 77.683848361454906, + 13.0161315168319 + ], + [ + 77.683605965526397, + 13.016141691953001 + ], + [ + 77.683260453353498, + 13.0161263848199 + ], + [ + 77.682838334898804, + 13.016154836348299 + ], + [ + 77.682438988179598, + 13.0161956455021 + ], + [ + 77.682182473498699, + 13.0161985604416 + ], + [ + 77.681659039598998, + 13.0162259285914 + ], + [ + 77.681270097417595, + 13.0162408270652 + ], + [ + 77.680896985154405, + 13.016264146581699 + ], + [ + 77.680219261707705, + 13.0162801787492 + ], + [ + 77.679905905705397, + 13.0162991258563 + ], + [ + 77.679379759115506, + 13.016326817782099 + ], + [ + 77.678515336997705, + 13.016347506611099 + ], + [ + 77.678514777418002, + 13.0164485644175 + ], + [ + 77.678470958559004, + 13.0167852642948 + ], + [ + 77.678419286531906, + 13.016925837860899 + ], + [ + 77.678406169303898, + 13.016987051591499 + ], + [ + 77.678387680501501, + 13.0172202825688 + ], + [ + 77.678385193143697, + 13.017239417400299 + ], + [ + 77.678332892305804, + 13.0175687354935 + ], + [ + 77.678249614248301, + 13.018064020782701 + ], + [ + 77.678212358275303, + 13.0182503006481 + ], + [ + 77.6781816768857, + 13.0183949414848 + ], + [ + 77.678177293830004, + 13.018506709404001 + ], + [ + 77.678171516669593, + 13.0186616843664 + ], + [ + 77.678193182406901, + 13.0190102129226 + ], + [ + 77.678262763415304, + 13.019467694356701 + ], + [ + 77.678271529526597, + 13.0195827495677 + ], + [ + 77.678341658417196, + 13.020177749373101 + ], + [ + 77.678356999111998, + 13.0206927584128 + ], + [ + 77.678376722862396, + 13.0211957140494 + ], + [ + 77.678381653800102, + 13.0213463815877 + ], + [ + 77.678770102107606, + 13.0212965243295 + ], + [ + 77.678881870026899, + 13.021295428565599 + ], + [ + 77.678966243848294, + 13.021293237037799 + ], + [ + 77.6789443445291, + 13.0217286586168 + ], + [ + 77.678950437545595, + 13.0222532368337 + ], + [ + 77.6790459269221, + 13.022632289188101 + ], + [ + 77.679053861547601, + 13.0230301732709 + ], + [ + 77.679131704199307, + 13.0234858606301 + ], + [ + 77.679144931435303, + 13.023678168298201 + ], + [ + 77.679205668263606, + 13.023976214981699 + ], + [ + 77.679201285207995, + 13.0243794561021 + ], + [ + 77.679207504259296, + 13.0257931709262 + ], + [ + 77.679233278809093, + 13.026772881104501 + ], + [ + 77.679267415980902, + 13.0274042587465 + ], + [ + 77.679294145118604, + 13.0278986265879 + ], + [ + 77.679307176430797, + 13.028377457091199 + ], + [ + 77.679324383772197, + 13.029009750483601 + ], + [ + 77.679377462649995, + 13.0302610613711 + ], + [ + 77.679378141637102, + 13.030324155129501 + ], + [ + 77.679378368809296, + 13.030345264666 + ], + [ + 77.679348117572502, + 13.031352897652001 + ], + [ + 77.679330585349803, + 13.0321637629485 + ], + [ + 77.679359321521005, + 13.033105570158 + ], + [ + 77.679360812008298, + 13.033148205224499 + ], + [ + 77.679382674055006, + 13.0332269085925 + ], + [ + 77.679391418873806, + 13.033763257470801 + ], + [ + 77.679440972846194, + 13.034818465590099 + ], + [ + 77.680755078438295, + 13.034793596342499 + ], + [ + 77.680888240335804, + 13.036729208469 + ], + [ + 77.680256505857201, + 13.036775285381299 + ], + [ + 77.680191855786404, + 13.0388983279651 + ], + [ + 77.679677965334605, + 13.038922021735999 + ], + [ + 77.678614561068699, + 13.0389841643465 + ], + [ + 77.677747789677298, + 13.038977850829299 + ], + [ + 77.677554352044694, + 13.0389580470983 + ], + [ + 77.677554936676103, + 13.039134670174199 + ], + [ + 77.677618101422397, + 13.039624005293 + ], + [ + 77.677688035242298, + 13.040119556847401 + ], + [ + 77.677739513653606, + 13.041277953723799 + ], + [ + 77.6777518381748, + 13.042705963391599 + ], + [ + 77.677728646646301, + 13.0431336690355 + ], + [ + 77.677698992881403, + 13.0438900804761 + ], + [ + 77.677666119964002, + 13.045077888559099 + ], + [ + 77.677644204685706, + 13.0460553099705 + ], + [ + 77.677798576937903, + 13.0470466558323 + ], + [ + 77.677871606364107, + 13.0478854528873 + ], + [ + 77.677878015938404, + 13.048577278367601 + ], + [ + 77.677981029243398, + 13.048566977037099 + ], + [ + 77.678480643772303, + 13.048685442337799 + ], + [ + 77.678378918133603, + 13.049123248883699 + ], + [ + 77.678346726475894, + 13.0492430018507 + ], + [ + 77.678570780414105, + 13.0495533294318 + ], + [ + 77.678135549200704, + 13.049835328354 + ], + [ + 77.678107220541904, + 13.050300175892501 + ], + [ + 77.678293023898206, + 13.050229446288 + ], + [ + 77.678478071754398, + 13.0504336836758 + ], + [ + 77.678559485914207, + 13.050636005894599 + ], + [ + 77.678607381280599, + 13.050838676142 + ], + [ + 77.678712432804105, + 13.050972035511901 + ], + [ + 77.678887438653305, + 13.051092719431001 + ], + [ + 77.679327137089899, + 13.051455655181201 + ], + [ + 77.679431254438001, + 13.051502380274499 + ], + [ + 77.6797308395291, + 13.051588907886201 + ], + [ + 77.679889257317598, + 13.051584277865199 + ], + [ + 77.680366721652803, + 13.051492685909899 + ], + [ + 77.680950576461299, + 13.051376087836699 + ], + [ + 77.681116539264707, + 13.0517773575154 + ], + [ + 77.681127003460404, + 13.051804713810901 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "264", + "group": "CHIKKA DEVASANDRA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "24", + "ward_name": "24 - Chikka Devasandra", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಚಿಕ್ಕ ದೇವಸಂದ್ರ", + "dig_ward_n": "CHIKKA DEVASANDRA", + "Assembly": "151 - K.R. Pura", + "Slno": "24" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.690677868370301, + 12.9972774807802 + ], + [ + 77.689818642195704, + 12.9975986426048 + ], + [ + 77.689215036151495, + 12.9979060583586 + ], + [ + 77.688701284401304, + 12.998290139128001 + ], + [ + 77.688405198892397, + 12.998551133455001 + ], + [ + 77.688387895921807, + 12.998568463162201 + ], + [ + 77.687802809596704, + 12.999175526430101 + ], + [ + 77.687368596149895, + 12.999595913086299 + ], + [ + 77.687136248747706, + 12.9997488999003 + ], + [ + 77.687117200571905, + 12.9997621887702 + ], + [ + 77.686802387786202, + 12.9999818126498 + ], + [ + 77.686496846185804, + 13.000128386634801 + ], + [ + 77.686383678284699, + 13.0002176611842 + ], + [ + 77.686390675015005, + 13.000217395444199 + ], + [ + 77.6882293041499, + 13.000126963290899 + ], + [ + 77.688237287059493, + 13.000126569849201 + ], + [ + 77.689426913089306, + 13.000140538312101 + ], + [ + 77.690527846729395, + 13.000066983513401 + ], + [ + 77.692817044381002, + 12.999974178894499 + ], + [ + 77.692825352141597, + 12.999973842468901 + ], + [ + 77.694550582712594, + 12.999929645024199 + ], + [ + 77.695542301587807, + 12.999900226854701 + ], + [ + 77.695549432836799, + 12.999883421545 + ], + [ + 77.696305520963605, + 12.999928151277 + ], + [ + 77.699182540182804, + 12.999832426837401 + ], + [ + 77.699154050320999, + 13.000358393516199 + ], + [ + 77.699148145342704, + 13.0005023218195 + ], + [ + 77.699162542490299, + 13.0008169707141 + ], + [ + 77.699165829782103, + 13.001192817736699 + ], + [ + 77.699173500129405, + 13.0014990837507 + ], + [ + 77.699560304791206, + 13.001460184131799 + ], + [ + 77.699681934585698, + 13.0022814591855 + ], + [ + 77.699738914309194, + 13.002544442524901 + ], + [ + 77.699769595698797, + 13.002811808919899 + ], + [ + 77.699769595698797, + 13.0030309617028 + ], + [ + 77.699780553338002, + 13.003136155038501 + ], + [ + 77.699798085560602, + 13.0033531162935 + ], + [ + 77.699885746673701, + 13.0037519743583 + ], + [ + 77.699936151813802, + 13.003933871168 + ], + [ + 77.699942726397296, + 13.004122342561301 + ], + [ + 77.700004089176403, + 13.004448880207701 + ], + [ + 77.700023812926901, + 13.004668032990599 + ], + [ + 77.700039153621702, + 13.0048060992437 + ], + [ + 77.700047919732995, + 13.0051786589746 + ], + [ + 77.700072026539104, + 13.0053101506443 + ], + [ + 77.699988748481601, + 13.005564367872401 + ], + [ + 77.699990940009499, + 13.005658603569 + ], + [ + 77.7001889993372, + 13.0062168952833 + ], + [ + 77.700441025037506, + 13.006148957920599 + ], + [ + 77.700705104140795, + 13.006073350210499 + ], + [ + 77.701018492620307, + 13.0059681568748 + ], + [ + 77.701224770176907, + 13.005871181768301 + ], + [ + 77.701457072126701, + 13.0068288794293 + ], + [ + 77.701545975974895, + 13.0073151979482 + ], + [ + 77.701546924767698, + 13.0073197816629 + ], + [ + 77.701546707021706, + 13.0073198363255 + ], + [ + 77.701590755324304, + 13.007589339585801 + ], + [ + 77.701632394352998, + 13.0077821940347 + ], + [ + 77.701649652634899, + 13.007866019974101 + ], + [ + 77.701716494233693, + 13.008126811785701 + ], + [ + 77.702033170004896, + 13.008057778659101 + ], + [ + 77.702401620621004, + 13.007994772236399 + ], + [ + 77.702399155152193, + 13.0078769776133 + ], + [ + 77.702531468644594, + 13.007833147056701 + ], + [ + 77.702867868166194, + 13.007853966571 + ], + [ + 77.703739000477995, + 13.0078693072658 + ], + [ + 77.704147720418007, + 13.0078780733771 + ], + [ + 77.704132867550001, + 13.0068883536772 + ], + [ + 77.704127807064395, + 13.0068276278502 + ], + [ + 77.704205883127798, + 13.0068276278502 + ], + [ + 77.704236788236202, + 13.0068245554125 + ], + [ + 77.704230281897594, + 13.006725153016999 + ], + [ + 77.704344142823302, + 13.0067038266849 + ], + [ + 77.704383180855103, + 13.006904077328899 + ], + [ + 77.705059840071002, + 13.0067775651892 + ], + [ + 77.705023693745403, + 13.006547674558099 + ], + [ + 77.705298891175005, + 13.0064892917351 + ], + [ + 77.705353348235207, + 13.0064739360538 + ], + [ + 77.705291176555093, + 13.0062454912758 + ], + [ + 77.705812185803794, + 13.0061588197958 + ], + [ + 77.705682885661901, + 13.0057468125641 + ], + [ + 77.705362922598894, + 13.0049074574058 + ], + [ + 77.7052084198871, + 13.0045075035771 + ], + [ + 77.705576596562295, + 13.004419842463999 + ], + [ + 77.705957922404394, + 13.0043321813509 + ], + [ + 77.706218714216007, + 13.004294925377801 + ], + [ + 77.706554017973701, + 13.0042686270438 + ], + [ + 77.706770979228807, + 13.0042839677386 + ], + [ + 77.706944781930204, + 13.004297884974701 + ], + [ + 77.707125214538394, + 13.004289464454599 + ], + [ + 77.707125223549099, + 13.0042894640341 + ], + [ + 77.707125222549394, + 13.004289457600001 + ], + [ + 77.707045498225597, + 13.003776346804999 + ], + [ + 77.706947713016305, + 13.0031484035934 + ], + [ + 77.706926424053904, + 13.002937465616199 + ], + [ + 77.706435973619193, + 13.001461072751599 + ], + [ + 77.706325255829697, + 13.001126855325399 + ], + [ + 77.706239678935802, + 13.000781693413201 + ], + [ + 77.705874283076895, + 12.999307900881799 + ], + [ + 77.705817142513894, + 12.999316757887801 + ], + [ + 77.705366422269506, + 12.999386620801801 + ], + [ + 77.704585581173106, + 12.9995076504169 + ], + [ + 77.704460118968896, + 12.999516283972699 + ], + [ + 77.704237502024895, + 12.9995316028281 + ], + [ + 77.704234800004897, + 12.999514873168501 + ], + [ + 77.704153567253698, + 12.999011915753901 + ], + [ + 77.704129990330102, + 12.9988552024647 + ], + [ + 77.704074238641994, + 12.9984921805871 + ], + [ + 77.704071152206495, + 12.998473016324301 + ], + [ + 77.704047036448898, + 12.998319696219401 + ], + [ + 77.703984482642696, + 12.9982322701682 + ], + [ + 77.703818354709895, + 12.9979912224016 + ], + [ + 77.703754588533897, + 12.9978981628849 + ], + [ + 77.7037447914268, + 12.9978834401994 + ], + [ + 77.703583543598498, + 12.997641123303399 + ], + [ + 77.703515790608094, + 12.9975393055739 + ], + [ + 77.703461479412496, + 12.997521803970599 + ], + [ + 77.703457939632699, + 12.9975139364246 + ], + [ + 77.7034513868592, + 12.9974936790402 + ], + [ + 77.703449574171898, + 12.997485793507501 + ], + [ + 77.703444273896395, + 12.997436906081701 + ], + [ + 77.703441258612699, + 12.997409094405199 + ], + [ + 77.703206634086399, + 12.9972760335106 + ], + [ + 77.703175902743496, + 12.9972278457222 + ], + [ + 77.703143818625193, + 12.9971901663636 + ], + [ + 77.703031244807605, + 12.997057958131199 + ], + [ + 77.703006604849804, + 12.997029018948 + ], + [ + 77.7029043475696, + 12.996436306778 + ], + [ + 77.702904077198397, + 12.9964347332269 + ], + [ + 77.702762760774803, + 12.996338150893401 + ], + [ + 77.702723842578607, + 12.996204763665601 + ], + [ + 77.702609471416295, + 12.995812757491199 + ], + [ + 77.702609456040193, + 12.99581270479 + ], + [ + 77.702755066318105, + 12.995730376948501 + ], + [ + 77.702828235416902, + 12.9956890061528 + ], + [ + 77.702828246347295, + 12.9956889999726 + ], + [ + 77.702732471376095, + 12.9952288662241 + ], + [ + 77.702732460647297, + 12.995228814679001 + ], + [ + 77.702769466930306, + 12.9951941305492 + ], + [ + 77.702769483435702, + 12.995194115079499 + ], + [ + 77.702607355290795, + 12.9947590209672 + ], + [ + 77.702492946064893, + 12.9944519847105 + ], + [ + 77.702292058336695, + 12.9939128676514 + ], + [ + 77.702262269103301, + 12.9938329229727 + ], + [ + 77.702248831335297, + 12.9937978407262 + ], + [ + 77.702200319873995, + 12.993810202203299 + ], + [ + 77.701974858977593, + 12.9938676517059 + ], + [ + 77.701712643598896, + 12.993934465594201 + ], + [ + 77.701700590761803, + 12.993937978612101 + ], + [ + 77.701604557857706, + 12.9939615103987 + ], + [ + 77.7012963310722, + 12.9940370376596 + ], + [ + 77.701122348824995, + 12.994080628139701 + ], + [ + 77.699849816676107, + 12.994389714478199 + ], + [ + 77.699097806301495, + 12.994649345629499 + ], + [ + 77.698745612322895, + 12.9947715731617 + ], + [ + 77.698542878461595, + 12.994838497630999 + ], + [ + 77.698283977631107, + 12.994923962762799 + ], + [ + 77.698067485379795, + 12.994995428372199 + ], + [ + 77.698032309745997, + 12.995007448213601 + ], + [ + 77.698009547697495, + 12.995015226938801 + ], + [ + 77.697056227114601, + 12.9951877373584 + ], + [ + 77.696991258958604, + 12.995196316680801 + ], + [ + 77.695982818409504, + 12.9953298736927 + ], + [ + 77.695878764257699, + 12.995357432725999 + ], + [ + 77.694966627375607, + 12.995599012474599 + ], + [ + 77.694664377668701, + 12.9957613681557 + ], + [ + 77.694588236428402, + 12.995801680737101 + ], + [ + 77.694286334449203, + 12.995915471036501 + ], + [ + 77.694147825856504, + 12.9959676767562 + ], + [ + 77.6941168771354, + 12.9959793415028 + ], + [ + 77.693978721677695, + 12.9960316690485 + ], + [ + 77.693868586639098, + 12.996073383906401 + ], + [ + 77.693786947131301, + 12.9961043754833 + ], + [ + 77.693675919416293, + 12.996146523212801 + ], + [ + 77.693145143182093, + 12.9963558449845 + ], + [ + 77.693134263774994, + 12.9963601359213 + ], + [ + 77.692974741536403, + 12.9964161021 + ], + [ + 77.692940933924405, + 12.9964267231799 + ], + [ + 77.692641279671307, + 12.996520861934799 + ], + [ + 77.692629990374598, + 12.9965243910481 + ], + [ + 77.692498877309205, + 12.9965653770907 + ], + [ + 77.692305015249701, + 12.9966259783781 + ], + [ + 77.692295607926198, + 12.996628902578401 + ], + [ + 77.691628455407695, + 12.996836251903 + ], + [ + 77.690991360141297, + 12.997121023999201 + ], + [ + 77.690685554048997, + 12.9972577145864 + ], + [ + 77.690671536590798, + 12.997263980161801 + ], + [ + 77.690677868370301, + 12.9972774807802 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "265", + "group": "A NARAYANAPURA", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "23", + "ward_name": "23 - A Narayanapura", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಎ ನಾರಾಯಣಪುರ", + "dig_ward_n": "A NARAYANAPURA", + "Assembly": "151 - K.R. Pura", + "Slno": "23" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.690677868370301, + 12.9972774807802 + ], + [ + 77.690671536590798, + 12.997263980161801 + ], + [ + 77.690670287348496, + 12.997256453585701 + ], + [ + 77.690668590805402, + 12.9972462305699 + ], + [ + 77.690653152667707, + 12.9971532206332 + ], + [ + 77.690623187866905, + 12.9969726906457 + ], + [ + 77.690603803929903, + 12.9968559073295 + ], + [ + 77.690589034246599, + 12.996816602437599 + ], + [ + 77.690561956270798, + 12.9967445428312 + ], + [ + 77.690406412668395, + 12.9963306108181 + ], + [ + 77.690293294816797, + 12.9961454629576 + ], + [ + 77.690184867916898, + 12.995968170896299 + ], + [ + 77.689876697107493, + 12.9954745102365 + ], + [ + 77.689662592886407, + 12.9950011939834 + ], + [ + 77.689622489175406, + 12.9949125371744 + ], + [ + 77.689594579979996, + 12.994833781352501 + ], + [ + 77.689509519451704, + 12.994591930576 + ], + [ + 77.689389919325393, + 12.994251872996699 + ], + [ + 77.689291070944194, + 12.9939708183466 + ], + [ + 77.689231507086205, + 12.993786244200299 + ], + [ + 77.689124894871995, + 12.9934564886847 + ], + [ + 77.689058893493396, + 12.993208745136901 + ], + [ + 77.688984504310596, + 12.9929305996243 + ], + [ + 77.688806228260603, + 12.9924152655577 + ], + [ + 77.688603285909707, + 12.9921757148797 + ], + [ + 77.688517943071901, + 12.9920585176044 + ], + [ + 77.688490431046006, + 12.9920719128725 + ], + [ + 77.688020778358506, + 12.991530512735199 + ], + [ + 77.687850924640699, + 12.9914158567599 + ], + [ + 77.687822052575299, + 12.991412386699899 + ], + [ + 77.687748552996595, + 12.9914131473605 + ], + [ + 77.687657192448, + 12.9913939078917 + ], + [ + 77.687518572273405, + 12.991263051657301 + ], + [ + 77.687514595549899, + 12.9912592968384 + ], + [ + 77.6874299117123, + 12.991196799761999 + ], + [ + 77.687388731294405, + 12.991250849157 + ], + [ + 77.6860071715723, + 12.9930641077614 + ], + [ + 77.685806368492706, + 12.9933492928504 + ], + [ + 77.685074761020502, + 12.994388331850701 + ], + [ + 77.684878255057598, + 12.994667410515399 + ], + [ + 77.684613290464398, + 12.9950225410487 + ], + [ + 77.684143564136093, + 12.995662118116201 + ], + [ + 77.683935597759202, + 12.995945282524801 + ], + [ + 77.683647073346904, + 12.996329269603599 + ], + [ + 77.683485649665002, + 12.996271263025699 + ], + [ + 77.683422421356696, + 12.9962257730818 + ], + [ + 77.683390116709106, + 12.996130388453199 + ], + [ + 77.683368201430795, + 12.996051493451301 + ], + [ + 77.6833501213262, + 12.9959780772691 + ], + [ + 77.683312317471206, + 12.9958942513297 + ], + [ + 77.683290402192895, + 12.9958087817443 + ], + [ + 77.683259720803306, + 12.9957265994508 + ], + [ + 77.683257529275494, + 12.995669619727201 + ], + [ + 77.683235613997198, + 12.995565522155401 + ], + [ + 77.683219177538504, + 12.995470190694901 + ], + [ + 77.683221369066302, + 12.995385816873499 + ], + [ + 77.683221369066302, + 12.995271857426401 + ], + [ + 77.683201976225803, + 12.995156702228501 + ], + [ + 77.683135899481002, + 12.995100918255799 + ], + [ + 77.683009886630899, + 12.995080098741401 + ], + [ + 77.682938661976493, + 12.9950548961714 + ], + [ + 77.682130599133899, + 12.9950316359418 + ], + [ + 77.682127998911199, + 12.9950055181501 + ], + [ + 77.6821274218197, + 12.9948518906298 + ], + [ + 77.681937681640804, + 12.9948795739451 + ], + [ + 77.681211815393198, + 12.9948227702704 + ], + [ + 77.6808202117344, + 12.994803707249201 + ], + [ + 77.680667448979307, + 12.994796270561899 + ], + [ + 77.680394297744897, + 12.9947776777557 + ], + [ + 77.679908271991707, + 12.994750797283899 + ], + [ + 77.679578600012306, + 12.994732563822099 + ], + [ + 77.679300006633099, + 12.994730245235999 + ], + [ + 77.679099982365202, + 12.994728580952399 + ], + [ + 77.6788425577396, + 12.994771511359399 + ], + [ + 77.678609546930403, + 12.9948103692816 + ], + [ + 77.678255171971102, + 12.9948532847962 + ], + [ + 77.677993187200798, + 12.9948577702993 + ], + [ + 77.677822289397994, + 12.9948720256989 + ], + [ + 77.677726895152901, + 12.9948947664824 + ], + [ + 77.677565005833898, + 12.9948977567309 + ], + [ + 77.6773447871944, + 12.9949546337733 + ], + [ + 77.677246168442096, + 12.9950072304411 + ], + [ + 77.677101793060103, + 12.995045177574401 + ], + [ + 77.677017582085298, + 12.994921227755601 + ], + [ + 77.676976179112899, + 12.9948602880864 + ], + [ + 77.676732255166101, + 12.9944694843002 + ], + [ + 77.676274225849994, + 12.994880395768 + ], + [ + 77.676056417887594, + 12.995106704846499 + ], + [ + 77.675794281255506, + 12.9953625318902 + ], + [ + 77.675651010124994, + 12.995473477986801 + ], + [ + 77.675517052985199, + 12.995515938838199 + ], + [ + 77.675448019858607, + 12.995397596335501 + ], + [ + 77.675441445275197, + 12.995317605569801 + ], + [ + 77.675420395242398, + 12.994994766689601 + ], + [ + 77.675276046891796, + 12.9950435298359 + ], + [ + 77.675275809939805, + 12.9950424798394 + ], + [ + 77.674576740001996, + 12.995273093397 + ], + [ + 77.674514568321896, + 12.9951762212443 + ], + [ + 77.673443914156493, + 12.9957119097903 + ], + [ + 77.673371621505197, + 12.9955514201044 + ], + [ + 77.672926298773405, + 12.9957711897643 + ], + [ + 77.672867018799295, + 12.9960285516028 + ], + [ + 77.672770520734304, + 12.996012867773301 + ], + [ + 77.672526165381399, + 12.995921919368399 + ], + [ + 77.672294959195497, + 12.995838641311 + ], + [ + 77.672358513502502, + 12.9955756579715 + ], + [ + 77.672113062385705, + 12.9955077206089 + ], + [ + 77.672115253913404, + 12.995428825607 + ], + [ + 77.672094933283702, + 12.9951726066117 + ], + [ + 77.671935654693996, + 12.9951153824548 + ], + [ + 77.670876079183202, + 12.994722946320801 + ], + [ + 77.670649080258201, + 12.9947460799692 + ], + [ + 77.670677997318705, + 12.994952836951899 + ], + [ + 77.670516534362704, + 12.9949817539301 + ], + [ + 77.670468594691499, + 12.9949940812741 + ], + [ + 77.6704354478331, + 12.994997368565899 + ], + [ + 77.670389973630705, + 12.995023392958799 + ], + [ + 77.670326419323601, + 12.995034350598001 + ], + [ + 77.670216842932007, + 12.995021201430999 + ], + [ + 77.670162054736394, + 12.994948881012601 + ], + [ + 77.670054669872798, + 12.9948699860108 + ], + [ + 77.6698968798691, + 12.9947384943411 + ], + [ + 77.669631705001905, + 12.9946004280879 + ], + [ + 77.669619103716897, + 12.994795474064601 + ], + [ + 77.669375296245903, + 12.9948393046212 + ], + [ + 77.669469531942497, + 12.995531827415 + ], + [ + 77.669086562454495, + 12.995489640504299 + ], + [ + 77.668772078211205, + 12.9954699167538 + ], + [ + 77.668699209910898, + 12.9954627942884 + ], + [ + 77.668477317718299, + 12.9943259392274 + ], + [ + 77.668451019384307, + 12.9941725322794 + ], + [ + 77.668411571883397, + 12.9939840608862 + ], + [ + 77.668369932854702, + 12.993784631853799 + ], + [ + 77.668212142850905, + 12.9938098344238 + ], + [ + 77.668017096874195, + 12.993851473452599 + ], + [ + 77.668060927430702, + 12.9940530940128 + ], + [ + 77.668135439376897, + 12.994285395962599 + ], + [ + 77.668247633459998, + 12.9947037051218 + ], + [ + 77.668376507437998, + 12.9950962612591 + ], + [ + 77.668301995491902, + 12.9952233698731 + ], + [ + 77.668030246041099, + 12.9955038854352 + ], + [ + 77.667723432145195, + 12.995893977388601 + ], + [ + 77.667591940475504, + 12.996038618225301 + ], + [ + 77.668452970561304, + 12.996456681742 + ], + [ + 77.668796687483393, + 12.9966166007294 + ], + [ + 77.668953486744201, + 12.9966895532576 + ], + [ + 77.669455677293101, + 12.996922222123001 + ], + [ + 77.669685301983904, + 12.9970286084304 + ], + [ + 77.670696713120805, + 12.9975858798104 + ], + [ + 77.670920677638406, + 12.997695439710199 + ], + [ + 77.671335679090205, + 12.997898451580699 + ], + [ + 77.671588004714906, + 12.9980218839807 + ], + [ + 77.671864732609095, + 12.998154023764799 + ], + [ + 77.672843127206903, + 12.9986212116813 + ], + [ + 77.673388746137803, + 12.998881744415399 + ], + [ + 77.673490764146607, + 12.998931566702399 + ], + [ + 77.673916185925606, + 12.9991393292281 + ], + [ + 77.675575631502696, + 12.9999497396356 + ], + [ + 77.676369977637194, + 13.0002855269741 + ], + [ + 77.676671979580206, + 13.0004131884948 + ], + [ + 77.677034927724094, + 13.000473499237801 + ], + [ + 77.677144733101699, + 13.000465419654599 + ], + [ + 77.677200504172006, + 13.000456194529001 + ], + [ + 77.677588198723299, + 13.000351363674101 + ], + [ + 77.677610005142498, + 13.000352782856799 + ], + [ + 77.678153478869604, + 13.0003602835324 + ], + [ + 77.678847068783895, + 13.0003698535391 + ], + [ + 77.680368599878904, + 13.000423515141 + ], + [ + 77.683586636992501, + 13.0003218510265 + ], + [ + 77.683920103147102, + 13.000311314135001 + ], + [ + 77.684791012533097, + 13.0002782092325 + ], + [ + 77.685964476793202, + 13.0002335990122 + ], + [ + 77.686383678284699, + 13.0002176611842 + ], + [ + 77.686496846185804, + 13.000128386634801 + ], + [ + 77.686802387786202, + 12.9999818126498 + ], + [ + 77.687117200571905, + 12.9997621887702 + ], + [ + 77.687136248747706, + 12.9997488999003 + ], + [ + 77.687368596149895, + 12.999595913086299 + ], + [ + 77.687802809596704, + 12.999175526430101 + ], + [ + 77.688387895921807, + 12.998568463162201 + ], + [ + 77.688405198892397, + 12.998551133455001 + ], + [ + 77.688701284401304, + 12.998290139128001 + ], + [ + 77.689215036151495, + 12.9979060583586 + ], + [ + 77.689818642195704, + 12.9975986426048 + ], + [ + 77.690677868370301, + 12.9972774807802 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "266", + "group": "KAVERI NAGARA", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "25", + "ward_name": "25 - Kaveri Nagara", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಕಾವೇರಿ ನಗರ", + "dig_ward_n": "KAVERI NAGARA", + "Assembly": "174 - Mahadevapura", + "Slno": "25" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.711050187923803, + 12.9927136544355 + ], + [ + 77.711835857726101, + 12.9925338133576 + ], + [ + 77.712153841140804, + 12.992541337321899 + ], + [ + 77.713333359144201, + 12.9920493406867 + ], + [ + 77.714061980926502, + 12.991812274896599 + ], + [ + 77.714442160232394, + 12.9918083014378 + ], + [ + 77.715944239324202, + 12.9921973452005 + ], + [ + 77.716062794374594, + 12.9923044507272 + ], + [ + 77.716251996333696, + 12.992284404758999 + ], + [ + 77.716674114818403, + 12.992240467549101 + ], + [ + 77.717021751049103, + 12.9922300554818 + ], + [ + 77.717185782583201, + 12.9922249516738 + ], + [ + 77.717464937480798, + 12.9922175139207 + ], + [ + 77.717654311070504, + 12.9922132738225 + ], + [ + 77.7178701781082, + 12.992209885503099 + ], + [ + 77.717915068714404, + 12.992208286494 + ], + [ + 77.718213159335903, + 12.992195003813301 + ], + [ + 77.718336317539496, + 12.9921903271067 + ], + [ + 77.718468456218403, + 12.992185464192501 + ], + [ + 77.718593571773894, + 12.992180859017401 + ], + [ + 77.718865904185293, + 12.9921813955135 + ], + [ + 77.719127298667203, + 12.9921820462498 + ], + [ + 77.719281531043407, + 12.9921759145418 + ], + [ + 77.719340801223893, + 12.9921730355278 + ], + [ + 77.719574708423394, + 12.992134452055099 + ], + [ + 77.719789089419507, + 12.9920475177985 + ], + [ + 77.719958481384396, + 12.9919531502798 + ], + [ + 77.7201239049609, + 12.9918644701785 + ], + [ + 77.720232080558603, + 12.991805748527799 + ], + [ + 77.720249815832105, + 12.991795400068201 + ], + [ + 77.720371647698997, + 12.991721855886899 + ], + [ + 77.720550114683206, + 12.991614971938899 + ], + [ + 77.720710870869993, + 12.9915206944991 + ], + [ + 77.720750346451794, + 12.9914976971952 + ], + [ + 77.720900238454306, + 12.9914103086045 + ], + [ + 77.720996287556005, + 12.9913483261896 + ], + [ + 77.721131787504305, + 12.991261088284 + ], + [ + 77.721184392789496, + 12.991227790677399 + ], + [ + 77.721494181319997, + 12.9910201617904 + ], + [ + 77.721852303862406, + 12.990862839473699 + ], + [ + 77.721864931757196, + 12.9908593195722 + ], + [ + 77.722322192496094, + 12.9907122495575 + ], + [ + 77.722490335327095, + 12.9906619320654 + ], + [ + 77.722584450204707, + 12.990633845035299 + ], + [ + 77.722928671817797, + 12.990521834596899 + ], + [ + 77.722944165720094, + 12.990517155415899 + ], + [ + 77.723367401632601, + 12.990417866277401 + ], + [ + 77.7239545278251, + 12.9902479774433 + ], + [ + 77.724087619850096, + 12.990210829779899 + ], + [ + 77.724097451139897, + 12.990208086181401 + ], + [ + 77.724553178684602, + 12.990079095716601 + ], + [ + 77.724740609853896, + 12.990002603359001 + ], + [ + 77.725012858109693, + 12.989890216334899 + ], + [ + 77.725159025541501, + 12.989831094397999 + ], + [ + 77.725626217736206, + 12.9895393795936 + ], + [ + 77.725929815184102, + 12.989345361625 + ], + [ + 77.7259618431045, + 12.9893258293878 + ], + [ + 77.726161312837803, + 12.989244693111401 + ], + [ + 77.726466154127607, + 12.989164709043401 + ], + [ + 77.726970969682696, + 12.989049879009499 + ], + [ + 77.727091843637695, + 12.989022982212299 + ], + [ + 77.727164691852295, + 12.989004303182901 + ], + [ + 77.727203917813995, + 12.988989359959399 + ], + [ + 77.727216140404707, + 12.988986788983199 + ], + [ + 77.7275508835599, + 12.988918643375101 + ], + [ + 77.727636613509006, + 12.988900613004001 + ], + [ + 77.727883031605799, + 12.988848341277 + ], + [ + 77.728122553899993, + 12.9887972709409 + ], + [ + 77.728235125344199, + 12.988772375801901 + ], + [ + 77.729475469201205, + 12.9885289925557 + ], + [ + 77.730060873835697, + 12.9884133101754 + ], + [ + 77.730607441123595, + 12.9883262643104 + ], + [ + 77.731562637162796, + 12.988173945076699 + ], + [ + 77.731600569141307, + 12.9881679003066 + ], + [ + 77.731866080561502, + 12.9881244577224 + ], + [ + 77.731826174624203, + 12.987686756286299 + ], + [ + 77.731830482069896, + 12.987501525773499 + ], + [ + 77.731847600960506, + 12.9867504422755 + ], + [ + 77.731885534441005, + 12.9864812989786 + ], + [ + 77.7319520146863, + 12.9863990136149 + ], + [ + 77.731790050322402, + 12.9863175667597 + ], + [ + 77.730450312382004, + 12.985643856674001 + ], + [ + 77.730349333766, + 12.9855703920263 + ], + [ + 77.730273293506201, + 12.9855136029565 + ], + [ + 77.7299643013842, + 12.9852131013592 + ], + [ + 77.729121182236597, + 12.9841876284185 + ], + [ + 77.728626149120203, + 12.9834046589314 + ], + [ + 77.728563457125702, + 12.9833048201035 + ], + [ + 77.728245739264096, + 12.9826792019593 + ], + [ + 77.7279865890997, + 12.982197503581601 + ], + [ + 77.727851850804697, + 12.981826287906101 + ], + [ + 77.727820536895806, + 12.981700148212701 + ], + [ + 77.727733737327995, + 12.981343108566 + ], + [ + 77.727549700264007, + 12.9805692919037 + ], + [ + 77.727495854693601, + 12.9802162268853 + ], + [ + 77.727374691012201, + 12.980221054809 + ], + [ + 77.727327655070596, + 12.9802229286858 + ], + [ + 77.726154529030197, + 12.9802696652023 + ], + [ + 77.726154412098197, + 12.9802696700421 + ], + [ + 77.725514552248001, + 12.980297134997301 + ], + [ + 77.723126897837503, + 12.9803699642578 + ], + [ + 77.722787769062194, + 12.9803735171486 + ], + [ + 77.721383065281103, + 12.9804726565102 + ], + [ + 77.718574014290795, + 12.9808000453351 + ], + [ + 77.717240056562801, + 12.9809527075654 + ], + [ + 77.717202698503996, + 12.9808611803214 + ], + [ + 77.716078220934904, + 12.980954575468401 + ], + [ + 77.715910109670403, + 12.9811507052769 + ], + [ + 77.715818582426394, + 12.981429022814799 + ], + [ + 77.715547736500199, + 12.981363646211999 + ], + [ + 77.715491699412098, + 12.981453305553 + ], + [ + 77.715443370447403, + 12.981505689394499 + ], + [ + 77.715489570904396, + 12.9815718290207 + ], + [ + 77.715514742029299, + 12.981663030598201 + ], + [ + 77.7155370226358, + 12.9817531331799 + ], + [ + 77.715549957837794, + 12.981830912291599 + ], + [ + 77.715391520305801, + 12.9819793627896 + ], + [ + 77.715199448357595, + 12.982052508732 + ], + [ + 77.714900474336602, + 12.982036435929 + ], + [ + 77.714728867473696, + 12.9820325826371 + ], + [ + 77.714583925443705, + 12.982098460679 + ], + [ + 77.714184274569106, + 12.9822483009035 + ], + [ + 77.713876324292102, + 12.982412991694 + ], + [ + 77.713756429816499, + 12.982558780539399 + ], + [ + 77.713630755732794, + 12.982861587658499 + ], + [ + 77.713525485332397, + 12.983028678432399 + ], + [ + 77.713243463281302, + 12.983248428487901 + ], + [ + 77.713008130047399, + 12.983420264711601 + ], + [ + 77.7127193094299, + 12.9836502480916 + ], + [ + 77.712487441295593, + 12.983770104841099 + ], + [ + 77.712403260591799, + 12.983864706740301 + ], + [ + 77.712388178679404, + 12.983963300127 + ], + [ + 77.712483361307207, + 12.984084851659199 + ], + [ + 77.712459158991095, + 12.984082845915101 + ], + [ + 77.712672099926095, + 12.984273372014799 + ], + [ + 77.713038208902105, + 12.984673103243701 + ], + [ + 77.713479033995696, + 12.9850504196374 + ], + [ + 77.713500514879399, + 12.986131001487401 + ], + [ + 77.713522283560096, + 12.986489854541301 + ], + [ + 77.713461288917799, + 12.986512987638401 + ], + [ + 77.713439808033996, + 12.9866372031838 + ], + [ + 77.712899984084601, + 12.9866848347088 + ], + [ + 77.712893446424403, + 12.986768890341001 + ], + [ + 77.711874650195597, + 12.9867273914812 + ], + [ + 77.711843684972706, + 12.9874105150005 + ], + [ + 77.711598989687701, + 12.9874628162828 + ], + [ + 77.7115963112808, + 12.988821058688 + ], + [ + 77.710966688860907, + 12.988521822800299 + ], + [ + 77.710949985596102, + 12.988512957232301 + ], + [ + 77.710399197093196, + 12.988220603378601 + ], + [ + 77.710220477318799, + 12.9881240539231 + ], + [ + 77.710153232813099, + 12.9863981116077 + ], + [ + 77.710168176036603, + 12.986043210049299 + ], + [ + 77.710121478463094, + 12.985456688526501 + ], + [ + 77.710039235060094, + 12.984818821030901 + ], + [ + 77.7083286810158, + 12.9842222535082 + ], + [ + 77.708328360776605, + 12.9844051869661 + ], + [ + 77.708325470215698, + 12.9844040878966 + ], + [ + 77.708282765184293, + 12.9848602657 + ], + [ + 77.708279547018506, + 12.9848946386152 + ], + [ + 77.708267795827396, + 12.9849455632807 + ], + [ + 77.708237754392997, + 12.9850757459593 + ], + [ + 77.7081454249236, + 12.9853217452713 + ], + [ + 77.708054160449294, + 12.985612899610301 + ], + [ + 77.707933964510602, + 12.9859969506791 + ], + [ + 77.707793055903593, + 12.9864354191646 + ], + [ + 77.707738475769901, + 12.986605367819999 + ], + [ + 77.707634337306303, + 12.9869305332106 + ], + [ + 77.707559215838501, + 12.987170706276199 + ], + [ + 77.707505786820903, + 12.9873406429373 + ], + [ + 77.707293565351094, + 12.9879458468862 + ], + [ + 77.706576993878897, + 12.990280155765101 + ], + [ + 77.705788777610806, + 12.9929593643571 + ], + [ + 77.705671974584703, + 12.9929662273899 + ], + [ + 77.704994220205506, + 12.993010551857701 + ], + [ + 77.704983870085201, + 12.993011788872501 + ], + [ + 77.7046290650853, + 12.9931590628586 + ], + [ + 77.703628299960201, + 12.9934754229975 + ], + [ + 77.703312154149501, + 12.9935547774943 + ], + [ + 77.702714336283606, + 12.993704831051501 + ], + [ + 77.702500905907002, + 12.993749275586501 + ], + [ + 77.7024289578723, + 12.9937642577608 + ], + [ + 77.7022587157537, + 12.9937960554358 + ], + [ + 77.702248831843093, + 12.9937979017842 + ], + [ + 77.702262269611197, + 12.993832984032601 + ], + [ + 77.702292058844606, + 12.9939129287153 + ], + [ + 77.702492946573201, + 12.9944520458018 + ], + [ + 77.702607355799202, + 12.994759082074101 + ], + [ + 77.702769483944294, + 12.995194176208599 + ], + [ + 77.702732461155804, + 12.9952288758031 + ], + [ + 77.702828246856001, + 12.995689061109699 + ], + [ + 77.702755066826697, + 12.9957304380758 + ], + [ + 77.702609456548601, + 12.9958127658974 + ], + [ + 77.702723843087199, + 12.996204824788601 + ], + [ + 77.702762761283395, + 12.996338212021801 + ], + [ + 77.702904077707203, + 12.996434794374499 + ], + [ + 77.702904348078405, + 12.9964363679257 + ], + [ + 77.703006605358794, + 12.9970290801097 + ], + [ + 77.703031245316694, + 12.997058019296199 + ], + [ + 77.703143819134297, + 12.997190227543999 + ], + [ + 77.7031759032526, + 12.997227906907 + ], + [ + 77.703206634595603, + 12.9972760946996 + ], + [ + 77.7034412591223, + 12.997409155626199 + ], + [ + 77.7034495746815, + 12.9974858547296 + ], + [ + 77.703451387368801, + 12.997493740262501 + ], + [ + 77.7034579401423, + 12.9975139976479 + ], + [ + 77.703461479922098, + 12.9975218651944 + ], + [ + 77.703515791117795, + 12.997539366805 + ], + [ + 77.703583544108298, + 12.9976411845438 + ], + [ + 77.703754589043896, + 12.997898224148599 + ], + [ + 77.703818355219894, + 12.9979912836741 + ], + [ + 77.703984483152993, + 12.998232331463401 + ], + [ + 77.704047036959196, + 12.9983197575232 + ], + [ + 77.704071152716907, + 12.998473077631299 + ], + [ + 77.704074239152405, + 12.9984922418945 + ], + [ + 77.704129990840599, + 12.9988552637799 + ], + [ + 77.704153567764195, + 12.9990119770723 + ], + [ + 77.704237502535605, + 12.999531664158001 + ], + [ + 77.704460119479805, + 12.999516345332999 + ], + [ + 77.704585581684199, + 12.999507711794299 + ], + [ + 77.705366422781594, + 12.999386682286 + ], + [ + 77.705874283589694, + 12.999307962435401 + ], + [ + 77.706054558794904, + 12.999280251475399 + ], + [ + 77.706362869635896, + 12.9992328582199 + ], + [ + 77.707306389923104, + 12.9990350912712 + ], + [ + 77.7080069688637, + 12.998888243276101 + ], + [ + 77.708173602829206, + 12.9988571456412 + ], + [ + 77.708330817292506, + 12.9988069498353 + ], + [ + 77.708504714656897, + 12.998755450670201 + ], + [ + 77.708694657940896, + 12.9986970087767 + ], + [ + 77.708742918504498, + 12.998687471585599 + ], + [ + 77.708745747784505, + 12.9986298530161 + ], + [ + 77.708719617307594, + 12.998403123795001 + ], + [ + 77.708718343387503, + 12.998391845118601 + ], + [ + 77.708686069763203, + 12.998170892585 + ], + [ + 77.708684122133604, + 12.998150587361501 + ], + [ + 77.708688518644294, + 12.997865983829 + ], + [ + 77.708722594797294, + 12.9978227187685 + ], + [ + 77.7087188096679, + 12.997739197684499 + ], + [ + 77.708679404825602, + 12.997609751192501 + ], + [ + 77.708613732639705, + 12.997559347756599 + ], + [ + 77.708531826625901, + 12.9975125443202 + ], + [ + 77.708430213902005, + 12.9974503450164 + ], + [ + 77.708221445942002, + 12.9972809904766 + ], + [ + 77.708188665897197, + 12.997055898800401 + ], + [ + 77.708178392431094, + 12.997049361140199 + ], + [ + 77.708148505983999, + 12.9970101351784 + ], + [ + 77.708132628809096, + 12.9969606357506 + ], + [ + 77.708126091148799, + 12.996895259147699 + ], + [ + 77.708139166469394, + 12.9968410899625 + ], + [ + 77.708274589432406, + 12.996740223203799 + ], + [ + 77.708275523383605, + 12.9963946611601 + ], + [ + 77.708279259189496, + 12.996014542912 + ], + [ + 77.708845902318004, + 12.9953454220451 + ], + [ + 77.709145032201604, + 12.9950451012868 + ], + [ + 77.7092309557368, + 12.9947873306813 + ], + [ + 77.709216012513295, + 12.9941746585174 + ], + [ + 77.709013483862904, + 12.9928276435556 + ], + [ + 77.709941827281796, + 12.9928155589157 + ], + [ + 77.710506988862704, + 12.9927949809162 + ], + [ + 77.710953693877201, + 12.9927349873214 + ], + [ + 77.711050187923803, + 12.9927136544355 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "269", + "group": "GARUDACHAR PALYA", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "32", + "ward_name": "32 - Garudachar Palya", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಗರುಡಾಚಾರ್ ಪಾಳ್ಯ", + "dig_ward_n": "GARUDACHAR PALYA", + "Assembly": "174 - Mahadevapura", + "Slno": "32" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.693620785538798, + 12.9903949591999 + ], + [ + 77.693497807994603, + 12.990416560348301 + ], + [ + 77.693493766018904, + 12.9904154730551 + ], + [ + 77.693247049061, + 12.9904948178221 + ], + [ + 77.693115679599799, + 12.990539090037499 + ], + [ + 77.692702727887394, + 12.990739854354301 + ], + [ + 77.692488187582796, + 12.9908497682499 + ], + [ + 77.6921335741973, + 12.9910314450114 + ], + [ + 77.691928769752593, + 12.991126508304299 + ], + [ + 77.691401997957698, + 12.991371015597601 + ], + [ + 77.691159430535905, + 12.991461607788301 + ], + [ + 77.6910820166501, + 12.9914906402645 + ], + [ + 77.690893932641899, + 12.9915614710733 + ], + [ + 77.690759586229504, + 12.991596739416 + ], + [ + 77.690612023228695, + 12.991634403048799 + ], + [ + 77.690515943841504, + 12.991641044501 + ], + [ + 77.690222341957806, + 12.991644086015899 + ], + [ + 77.690036418382803, + 12.991648270311901 + ], + [ + 77.6898373147028, + 12.991658237052301 + ], + [ + 77.689824661677804, + 12.991659497316199 + ], + [ + 77.689680763422501, + 12.991663246090599 + ], + [ + 77.689496550452702, + 12.9917193561127 + ], + [ + 77.689373729587999, + 12.9917556336425 + ], + [ + 77.689227353984606, + 12.991796671886799 + ], + [ + 77.688967895419395, + 12.991869369728301 + ], + [ + 77.688773295286296, + 12.991923328414201 + ], + [ + 77.688684500730602, + 12.991964899435599 + ], + [ + 77.688517788883999, + 12.992042282724899 + ], + [ + 77.688508614281105, + 12.9920457653478 + ], + [ + 77.688603286399797, + 12.9921757741047 + ], + [ + 77.688806228751005, + 12.992415324809601 + ], + [ + 77.688984504801198, + 12.992930658900001 + ], + [ + 77.689058893984097, + 12.993208804422499 + ], + [ + 77.689124895362795, + 12.9934565479791 + ], + [ + 77.689231507577105, + 12.9937863035089 + ], + [ + 77.689291071435207, + 12.9939708776631 + ], + [ + 77.689389919816506, + 12.994251932326399 + ], + [ + 77.689594580471393, + 12.9948338407095 + ], + [ + 77.689622489666803, + 12.9949125965351 + ], + [ + 77.689876697599303, + 12.995474569631099 + ], + [ + 77.690184868409006, + 12.995968230332 + ], + [ + 77.690293295309203, + 12.9961455224077 + ], + [ + 77.6904064131609, + 12.996330670283299 + ], + [ + 77.690603804422594, + 12.996855966821 + ], + [ + 77.690653153160497, + 12.9971532801313 + ], + [ + 77.690668591298206, + 12.9972462900701 + ], + [ + 77.6906702878413, + 12.9972565130861 + ], + [ + 77.690671537083603, + 12.9972640396625 + ], + [ + 77.690991360634499, + 12.9971210835424 + ], + [ + 77.691628455901693, + 12.996836311531 + ], + [ + 77.692295608421205, + 12.9966289622954 + ], + [ + 77.692305015744694, + 12.9966260380964 + ], + [ + 77.692629990869904, + 12.996524450809799 + ], + [ + 77.692641280166697, + 12.996520921698 + ], + [ + 77.692940934420207, + 12.9964267829831 + ], + [ + 77.692974742032206, + 12.9964161619077 + ], + [ + 77.693134264270995, + 12.9963601957504 + ], + [ + 77.693145143678095, + 12.996355904814999 + ], + [ + 77.693675919913005, + 12.996146583114299 + ], + [ + 77.693786947628197, + 12.996104435399699 + ], + [ + 77.693868587135995, + 12.9960734438337 + ], + [ + 77.693978722174805, + 12.9960317289906 + ], + [ + 77.694116877632695, + 12.9959794014634 + ], + [ + 77.694147826353799, + 12.9959677367209 + ], + [ + 77.694286334946696, + 12.995915531019699 + ], + [ + 77.694588236926293, + 12.9958017407608 + ], + [ + 77.694664378166607, + 12.995761428189599 + ], + [ + 77.694966627873995, + 12.9955990725491 + ], + [ + 77.695878764757296, + 12.995357492922899 + ], + [ + 77.695982818909201, + 12.9953299339036 + ], + [ + 77.696991259459594, + 12.995196377027399 + ], + [ + 77.697056227615604, + 12.9951877977138 + ], + [ + 77.698009548199806, + 12.9950152874226 + ], + [ + 77.698032310248294, + 12.9950075087005 + ], + [ + 77.698067485882206, + 12.9949954888639 + ], + [ + 77.698283978133801, + 12.9949240232837 + ], + [ + 77.698542878964602, + 12.994838558186901 + ], + [ + 77.698745612826201, + 12.9947716337449 + ], + [ + 77.699097806805298, + 12.994649406260301 + ], + [ + 77.699849817180905, + 12.994389775210699 + ], + [ + 77.7011223493313, + 12.994080689044701 + ], + [ + 77.701296331578803, + 12.994037098588199 + ], + [ + 77.701700591269002, + 12.9939380395956 + ], + [ + 77.701712644106095, + 12.9939345265793 + ], + [ + 77.701974859485105, + 12.993867712726701 + ], + [ + 77.702200320381806, + 12.993810263254799 + ], + [ + 77.702248831843093, + 12.9937979017842 + ], + [ + 77.7022587157537, + 12.9937960554358 + ], + [ + 77.7024289578723, + 12.9937642577608 + ], + [ + 77.702500905907002, + 12.993749275586501 + ], + [ + 77.702714336283606, + 12.993704831051501 + ], + [ + 77.703312154149501, + 12.9935547774943 + ], + [ + 77.703628299960201, + 12.9934754229975 + ], + [ + 77.7046290650853, + 12.9931590628586 + ], + [ + 77.704983870085201, + 12.993011788872501 + ], + [ + 77.704994220205506, + 12.993010551857701 + ], + [ + 77.705671974584703, + 12.9929662273899 + ], + [ + 77.705788777610806, + 12.9929593643571 + ], + [ + 77.706576993878897, + 12.990280155765101 + ], + [ + 77.707293565351094, + 12.9879458468862 + ], + [ + 77.707240150082498, + 12.9879576955546 + ], + [ + 77.706871816225402, + 12.988023639889599 + ], + [ + 77.706274546549693, + 12.9881039122111 + ], + [ + 77.706061204444296, + 12.9881325841997 + ], + [ + 77.7060318817406, + 12.988136277258601 + ], + [ + 77.705355513657594, + 12.988264603727901 + ], + [ + 77.7047909512968, + 12.9883469676467 + ], + [ + 77.704187291760803, + 12.9884201762411 + ], + [ + 77.702915569830495, + 12.9886130862022 + ], + [ + 77.702766235347497, + 12.9886357389764 + ], + [ + 77.702221682881103, + 12.9887656917325 + ], + [ + 77.701175295855506, + 12.989054311366701 + ], + [ + 77.700966536974306, + 12.9891329672413 + ], + [ + 77.700655989655004, + 12.989265264287701 + ], + [ + 77.7004317665331, + 12.9893745307141 + ], + [ + 77.699933208308593, + 12.9895950794995 + ], + [ + 77.699734425199694, + 12.989331730100499 + ], + [ + 77.699700704531196, + 12.989004040687201 + ], + [ + 77.699649877741507, + 12.9886676635588 + ], + [ + 77.699438258706806, + 12.988299637064999 + ], + [ + 77.699325927135305, + 12.9880360929308 + ], + [ + 77.699352878714294, + 12.9879099360937 + ], + [ + 77.698975701627305, + 12.9872433376875 + ], + [ + 77.699162470699406, + 12.986926006027501 + ], + [ + 77.699270717089703, + 12.9867934228382 + ], + [ + 77.699465679166295, + 12.9867913971023 + ], + [ + 77.699255483852696, + 12.9853833882653 + ], + [ + 77.700159952090502, + 12.9851568901049 + ], + [ + 77.699940998172494, + 12.984580561609 + ], + [ + 77.699906592555905, + 12.984578025638699 + ], + [ + 77.699793189542902, + 12.984569667148801 + ], + [ + 77.699905925593598, + 12.98445235382 + ], + [ + 77.700177259040601, + 12.984170001849201 + ], + [ + 77.700248770645302, + 12.984095586670801 + ], + [ + 77.700306157335504, + 12.984035868750899 + ], + [ + 77.700331401309697, + 12.9840277019798 + ], + [ + 77.700354112286007, + 12.9840211758412 + ], + [ + 77.700449635010898, + 12.9839937263176 + ], + [ + 77.700647474757403, + 12.983956295491 + ], + [ + 77.700772624254299, + 12.983943220170399 + ], + [ + 77.700867887304199, + 12.983875975664599 + ], + [ + 77.700910862918903, + 12.983786804985099 + ], + [ + 77.700943501445295, + 12.9837012991081 + ], + [ + 77.700905775835594, + 12.983582471834101 + ], + [ + 77.700882657969501, + 12.9834144606337 + ], + [ + 77.700879094721898, + 12.9832441574956 + ], + [ + 77.700860415692603, + 12.9830741783282 + ], + [ + 77.700824925536693, + 12.982896727549001 + ], + [ + 77.700815586022003, + 12.9828220114314 + ], + [ + 77.700754176408296, + 12.9827665032824 + ], + [ + 77.700170229784604, + 12.982844559630699 + ], + [ + 77.699702315870496, + 12.9829546325401 + ], + [ + 77.698547951854295, + 12.9832460253985 + ], + [ + 77.698318199792695, + 12.9833006615595 + ], + [ + 77.698510593795504, + 12.983963300127 + ], + [ + 77.698387312201405, + 12.983958163393901 + ], + [ + 77.698150088528394, + 12.9841258076827 + ], + [ + 77.697963298234498, + 12.984239749762001 + ], + [ + 77.697802658581793, + 12.9843873140941 + ], + [ + 77.697753890780405, + 12.984424347124101 + ], + [ + 77.695819212504304, + 12.983981661453701 + ], + [ + 77.695593134189394, + 12.986697793081699 + ], + [ + 77.695577142086293, + 12.9876702077974 + ], + [ + 77.695715107190097, + 12.988770883790499 + ], + [ + 77.695555116684204, + 12.9889904813722 + ], + [ + 77.695563262557698, + 12.990278823916601 + ], + [ + 77.695319291181406, + 12.9903457207207 + ], + [ + 77.695144575445298, + 12.9903746347793 + ], + [ + 77.695001233018303, + 12.9903230493472 + ], + [ + 77.694782460619606, + 12.9903241900717 + ], + [ + 77.694776918583997, + 12.990325546614599 + ], + [ + 77.694522333117305, + 12.9903878661689 + ], + [ + 77.694411338724805, + 12.990346107681599 + ], + [ + 77.694288745403796, + 12.990296564993001 + ], + [ + 77.694222742457299, + 12.9903026328303 + ], + [ + 77.694094910042693, + 12.990314384596401 + ], + [ + 77.693620785538798, + 12.9903949591999 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "267", + "group": "K Narayanapura", + "Corporatio": "East", + "ac_no": "151", + "ac": "K.R. Pura", + "corporat_1": "3", + "ward_id": "1", + "ward_name": "1 - K Narayanapura", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಕೆ.ಆರ್. ಪುರ", + "ward_name_": "ಕೆ ನಾರಾಯಣಪುರ", + "dig_ward_n": "K Narayanapura", + "Assembly": "151 - K.R. Pura", + "Slno": "1" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.641402936163004, + 13.041245950222701 + ], + [ + 77.641393505427899, + 13.041258671343 + ], + [ + 77.641354433076202, + 13.041266974890799 + ], + [ + 77.641335550654205, + 13.0412784601164 + ], + [ + 77.641318023695206, + 13.0413091287601 + ], + [ + 77.641303339904994, + 13.0413363806341 + ], + [ + 77.641299728717598, + 13.0413759412491 + ], + [ + 77.641315899492298, + 13.041434497213601 + ], + [ + 77.641347509384602, + 13.041536936350401 + ], + [ + 77.641375052882793, + 13.0415818252261 + ], + [ + 77.641409986244796, + 13.0416176046676 + ], + [ + 77.641459950787805, + 13.0417130809296 + ], + [ + 77.641470603148093, + 13.0417942782016 + ], + [ + 77.641468335186005, + 13.0419060971064 + ], + [ + 77.641455965785994, + 13.042097066624301 + ], + [ + 77.641429452443703, + 13.042311894769799 + ], + [ + 77.641390811278001, + 13.0424150509574 + ], + [ + 77.641326485836302, + 13.042485721060499 + ], + [ + 77.641214510300998, + 13.042570429425901 + ], + [ + 77.641118334224103, + 13.0426244849328 + ], + [ + 77.641075326744897, + 13.042641862645 + ], + [ + 77.641010341772301, + 13.0426504306564 + ], + [ + 77.640934871950407, + 13.042647813155799 + ], + [ + 77.640794321232306, + 13.042644730565801 + ], + [ + 77.640722498186506, + 13.042660143795301 + ], + [ + 77.640647772468597, + 13.042727532158301 + ], + [ + 77.640551546846595, + 13.042831275927901 + ], + [ + 77.640462568151904, + 13.042912360709799 + ], + [ + 77.640391080605596, + 13.042959389464899 + ], + [ + 77.640086512283602, + 13.0430754222263 + ], + [ + 77.639985793636995, + 13.0431104112476 + ], + [ + 77.6397583105054, + 13.0431894372801 + ], + [ + 77.639672384766598, + 13.043212689210099 + ], + [ + 77.639381030729695, + 13.043291530820801 + ], + [ + 77.639262636732397, + 13.0433141942412 + ], + [ + 77.639176261734207, + 13.0433150752465 + ], + [ + 77.639065125893893, + 13.0433162087645 + ], + [ + 77.638906615962, + 13.0433031451101 + ], + [ + 77.638850739405896, + 13.0432986360399 + ], + [ + 77.638794796455898, + 13.043294122213901 + ], + [ + 77.638636287441003, + 13.0432810583789 + ], + [ + 77.638586716923101, + 13.043277046859799 + ], + [ + 77.638470866578103, + 13.043268064922501 + ], + [ + 77.638383915716602, + 13.043268952435501 + ], + [ + 77.638309934453204, + 13.043243733063299 + ], + [ + 77.638202588960297, + 13.043222243408 + ], + [ + 77.638131761417995, + 13.0432229646363 + ], + [ + 77.638071874720495, + 13.043223575203999 + ], + [ + 77.638007885330396, + 13.043217452068101 + ], + [ + 77.637906731230999, + 13.0431823472235 + ], + [ + 77.637829798088305, + 13.043150383178901 + ], + [ + 77.637745031870395, + 13.04308575062 + ], + [ + 77.637650464553403, + 13.0430200886795 + ], + [ + 77.637556052936006, + 13.042969105399401 + ], + [ + 77.637413249507603, + 13.0428863889782 + ], + [ + 77.637399966554597, + 13.042878695049501 + ], + [ + 77.637343393171193, + 13.042845925847599 + ], + [ + 77.637290190316804, + 13.042810270554099 + ], + [ + 77.637277494427096, + 13.042931291497 + ], + [ + 77.637177853775796, + 13.043364811097399 + ], + [ + 77.637117664135602, + 13.0434998057058 + ], + [ + 77.637089254507202, + 13.044133606468099 + ], + [ + 77.637099901496299, + 13.0446143196228 + ], + [ + 77.637101407396898, + 13.0446822997857 + ], + [ + 77.637181284898801, + 13.045211708781199 + ], + [ + 77.6372308695328, + 13.045540341967101 + ], + [ + 77.637300257849702, + 13.045951244845201 + ], + [ + 77.637314440666998, + 13.046035232205901 + ], + [ + 77.6373504395049, + 13.0461434692973 + ], + [ + 77.637557744183098, + 13.0467667661809 + ], + [ + 77.637580754721498, + 13.046829911176101 + ], + [ + 77.637722379243499, + 13.0472185529882 + ], + [ + 77.637780776942606, + 13.0473788055561 + ], + [ + 77.637855212817897, + 13.047908123111201 + ], + [ + 77.637876080521707, + 13.048056514524101 + ], + [ + 77.638003706575205, + 13.048578056844899 + ], + [ + 77.638030045713705, + 13.0487777354512 + ], + [ + 77.638090134507905, + 13.049233270971101 + ], + [ + 77.638159496296595, + 13.049528427581899 + ], + [ + 77.638259809694304, + 13.0498639214871 + ], + [ + 77.638288331191802, + 13.0499409852158 + ], + [ + 77.6383281866526, + 13.0500486709096 + ], + [ + 77.638333923870206, + 13.0500641723194 + ], + [ + 77.638135567376906, + 13.050095556284999 + ], + [ + 77.638315930705403, + 13.050870228979001 + ], + [ + 77.638362453105003, + 13.051070044818401 + ], + [ + 77.638420733740404, + 13.0514998068754 + ], + [ + 77.638428059178906, + 13.051553824555199 + ], + [ + 77.637796263280904, + 13.0516607732679 + ], + [ + 77.637779981557799, + 13.051808871410699 + ], + [ + 77.637794195457005, + 13.0520086040941 + ], + [ + 77.637807918098403, + 13.052162042435 + ], + [ + 77.637885016973101, + 13.0526434466771 + ], + [ + 77.638009851551004, + 13.0532609533516 + ], + [ + 77.638031504505093, + 13.053368061364999 + ], + [ + 77.638068037990195, + 13.053547661594299 + ], + [ + 77.638095616539999, + 13.0536832373636 + ], + [ + 77.638120218213103, + 13.0538041767721 + ], + [ + 77.638182001830302, + 13.0539277640897 + ], + [ + 77.638197881329504, + 13.0539763496096 + ], + [ + 77.638312958163098, + 13.054328441488501 + ], + [ + 77.638339338012301, + 13.0545348253717 + ], + [ + 77.638218343071699, + 13.054601407802901 + ], + [ + 77.638153250443906, + 13.0546372276574 + ], + [ + 77.638185468467, + 13.054840417262 + ], + [ + 77.638185964712704, + 13.0548435469338 + ], + [ + 77.638296767101906, + 13.055190225805701 + ], + [ + 77.638298165413801, + 13.055238868735 + ], + [ + 77.638308641104203, + 13.055603410761201 + ], + [ + 77.638336192163493, + 13.0565166941792 + ], + [ + 77.638358764825895, + 13.057503429669699 + ], + [ + 77.638354192946494, + 13.0576694763083 + ], + [ + 77.638198669654997, + 13.058773111240599 + ], + [ + 77.638171563611905, + 13.058965462679399 + ], + [ + 77.638157427374097, + 13.0596408994087 + ], + [ + 77.638156406270298, + 13.0599243519681 + ], + [ + 77.638172792202994, + 13.060491068956001 + ], + [ + 77.638182088864696, + 13.060824103233999 + ], + [ + 77.638195379536, + 13.061533137442799 + ], + [ + 77.638218318433005, + 13.0618037085744 + ], + [ + 77.638227277322699, + 13.061909372853099 + ], + [ + 77.638234885723406, + 13.0619991149226 + ], + [ + 77.638282778733398, + 13.0623328843295 + ], + [ + 77.638291660765702, + 13.06239695499 + ], + [ + 77.638297428482701, + 13.062438559794799 + ], + [ + 77.638302017810204, + 13.062471664397 + ], + [ + 77.638345152721001, + 13.062782818712501 + ], + [ + 77.638346433144804, + 13.062851792442499 + ], + [ + 77.638358163972597, + 13.063483696061899 + ], + [ + 77.638361312340294, + 13.0636533063394 + ], + [ + 77.638369402060505, + 13.063710108681899 + ], + [ + 77.638526242600406, + 13.0648113628529 + ], + [ + 77.638562601652495, + 13.0652309468318 + ], + [ + 77.638567598787105, + 13.065288613596699 + ], + [ + 77.638568260719197, + 13.065295108736301 + ], + [ + 77.6386488173586, + 13.0660855572626 + ], + [ + 77.638668747389005, + 13.0662811133651 + ], + [ + 77.638682565142702, + 13.066416694430099 + ], + [ + 77.638695556109099, + 13.0665441627125 + ], + [ + 77.638702349588897, + 13.066565663607699 + ], + [ + 77.638727399599802, + 13.06664494512 + ], + [ + 77.638727411031297, + 13.0666449802359 + ], + [ + 77.638742802108098, + 13.066693691563399 + ], + [ + 77.638746198814601, + 13.0667044407577 + ], + [ + 77.639022760857699, + 13.0675797305363 + ], + [ + 77.639186149477297, + 13.068204655904999 + ], + [ + 77.639234806145694, + 13.068390755117999 + ], + [ + 77.639362568686593, + 13.068879413084201 + ], + [ + 77.639499374402504, + 13.0695524328306 + ], + [ + 77.639527268762606, + 13.069689660557 + ], + [ + 77.639503845539096, + 13.0706283064627 + ], + [ + 77.639502531557696, + 13.0706826476433 + ], + [ + 77.6394979474466, + 13.070872284677501 + ], + [ + 77.639497207770006, + 13.070902901227701 + ], + [ + 77.639495984753196, + 13.070953490562401 + ], + [ + 77.639491382846899, + 13.0711438775988 + ], + [ + 77.639481046777703, + 13.071571462960501 + ], + [ + 77.639458051659602, + 13.072502935704099 + ], + [ + 77.639440391325195, + 13.0732183244554 + ], + [ + 77.639454679738407, + 13.073703966714801 + ], + [ + 77.639490911574399, + 13.074935396447801 + ], + [ + 77.639457406080197, + 13.074941754976701 + ], + [ + 77.638308528775696, + 13.075159781252699 + ], + [ + 77.638336152545406, + 13.0751926772025 + ], + [ + 77.6390155607004, + 13.076001750673401 + ], + [ + 77.639053359068299, + 13.0760481085702 + ], + [ + 77.639120002041594, + 13.076129842936099 + ], + [ + 77.639558880393096, + 13.076668099197599 + ], + [ + 77.639806136476295, + 13.076763935540701 + ], + [ + 77.640237295359896, + 13.0769310517272 + ], + [ + 77.640973693717498, + 13.0769596546274 + ], + [ + 77.6410624645832, + 13.0770106403086 + ], + [ + 77.6414199220673, + 13.0772159450828 + ], + [ + 77.641575672994506, + 13.0773464732075 + ], + [ + 77.641690161605894, + 13.0774424168261 + ], + [ + 77.641730857279796, + 13.077476651067601 + ], + [ + 77.642146389175295, + 13.077826208302399 + ], + [ + 77.642298510722398, + 13.078156649696099 + ], + [ + 77.642528445735294, + 13.0786545520173 + ], + [ + 77.642809194671102, + 13.0791643553453 + ], + [ + 77.643286763799395, + 13.080036888833 + ], + [ + 77.6438005251741, + 13.080954219817301 + ], + [ + 77.644460992342701, + 13.082125254953301 + ], + [ + 77.644513851691798, + 13.0822379060155 + ], + [ + 77.644517206295205, + 13.082245054977101 + ], + [ + 77.644518257423201, + 13.0822472950254 + ], + [ + 77.644551167483002, + 13.0823174316465 + ], + [ + 77.644579444795397, + 13.0823497535141 + ], + [ + 77.644712019063903, + 13.0825012899436 + ], + [ + 77.644895132981603, + 13.082710595302901 + ], + [ + 77.645122016708299, + 13.082969929893199 + ], + [ + 77.645519913693306, + 13.0833915754943 + ], + [ + 77.645590063512003, + 13.083505835195099 + ], + [ + 77.645701577024894, + 13.083687467584101 + ], + [ + 77.646101400513601, + 13.084338694051601 + ], + [ + 77.646270395759998, + 13.084633996857701 + ], + [ + 77.646353750193796, + 13.0847796498636 + ], + [ + 77.646356241631693, + 13.084784003963801 + ], + [ + 77.646370316861507, + 13.084808599042599 + ], + [ + 77.646495235124902, + 13.085026880416001 + ], + [ + 77.646583715752698, + 13.0851302454204 + ], + [ + 77.646602555720605, + 13.0851522546656 + ], + [ + 77.646747647327004, + 13.0849414913926 + ], + [ + 77.647091184987701, + 13.0844424595285 + ], + [ + 77.647576753459802, + 13.083886237046199 + ], + [ + 77.647606956436704, + 13.083851639706801 + ], + [ + 77.647642819614106, + 13.0838105584417 + ], + [ + 77.647644096829197, + 13.083810722400299 + ], + [ + 77.6480100584985, + 13.083406669434099 + ], + [ + 77.648098559516797, + 13.0832936545276 + ], + [ + 77.648157447731904, + 13.083214055612199 + ], + [ + 77.648175206311095, + 13.0831900517679 + ], + [ + 77.648233938215199, + 13.0831106631314 + ], + [ + 77.648360193085495, + 13.0829400045171 + ], + [ + 77.648367815360501, + 13.082929299667001 + ], + [ + 77.648448143815003, + 13.082816482407701 + ], + [ + 77.648450757803303, + 13.0828128103854 + ], + [ + 77.648548789439104, + 13.082675129793699 + ], + [ + 77.648604374247199, + 13.0825970634626 + ], + [ + 77.6486127746156, + 13.0825852656468 + ], + [ + 77.648723134579996, + 13.082438843716901 + ], + [ + 77.648731067477698, + 13.082428319061499 + ], + [ + 77.648746071826693, + 13.0824084123515 + ], + [ + 77.648897599933704, + 13.0822073696222 + ], + [ + 77.649072920951795, + 13.0819747583427 + ], + [ + 77.649075863298705, + 13.0819708552912 + ], + [ + 77.649202673662899, + 13.0818026073342 + ], + [ + 77.649275293513696, + 13.081706257539301 + ], + [ + 77.649333739732398, + 13.081628712827101 + ], + [ + 77.649357585961894, + 13.0815970743409 + ], + [ + 77.649375481636, + 13.081573330873301 + ], + [ + 77.649382858347394, + 13.081565957530801 + ], + [ + 77.649585994023198, + 13.0813628281742 + ], + [ + 77.649611729602995, + 13.0812955430454 + ], + [ + 77.649760827680396, + 13.0808603051481 + ], + [ + 77.649794439018507, + 13.080718688422699 + ], + [ + 77.649875002381094, + 13.0803792408135 + ], + [ + 77.649887281959806, + 13.080345063156701 + ], + [ + 77.649941680386505, + 13.080193651611999 + ], + [ + 77.649960242473398, + 13.080141987523501 + ], + [ + 77.6499890624019, + 13.080061770280199 + ], + [ + 77.650154351485796, + 13.0796017134564 + ], + [ + 77.6503730246515, + 13.078993066706399 + ], + [ + 77.650429485747907, + 13.0788359146233 + ], + [ + 77.650496238460505, + 13.078650116975901 + ], + [ + 77.650514326928501, + 13.078599768569999 + ], + [ + 77.650676971572494, + 13.077973628578899 + ], + [ + 77.650676767013096, + 13.0779607679492 + ], + [ + 77.650671551416707, + 13.0776328606345 + ], + [ + 77.650671186979395, + 13.0776099679063 + ], + [ + 77.650668389253795, + 13.0774340511022 + ], + [ + 77.650665162421305, + 13.077231169739299 + ], + [ + 77.650662928840504, + 13.077090707081499 + ], + [ + 77.650851915936698, + 13.076440218571401 + ], + [ + 77.650891213993006, + 13.0763049530555 + ], + [ + 77.650898213680094, + 13.076276888672799 + ], + [ + 77.651051694202394, + 13.0755803087826 + ], + [ + 77.651076291400003, + 13.075402765535999 + ], + [ + 77.651166539501205, + 13.0747931785103 + ], + [ + 77.651193199745094, + 13.074494617398299 + ], + [ + 77.651222390807206, + 13.074167707160299 + ], + [ + 77.651246272416202, + 13.0739002603017 + ], + [ + 77.6514088992338, + 13.072410252342801 + ], + [ + 77.651413892166204, + 13.072368118437501 + ], + [ + 77.651511393623807, + 13.071545331508201 + ], + [ + 77.651590557571595, + 13.070976511075401 + ], + [ + 77.651613513386394, + 13.070234531091799 + ], + [ + 77.651614428557195, + 13.070204954585099 + ], + [ + 77.651627659856601, + 13.0697773003064 + ], + [ + 77.651628231723507, + 13.069758803811199 + ], + [ + 77.651648675823495, + 13.068922956469001 + ], + [ + 77.651655999219102, + 13.06863233747 + ], + [ + 77.651656360947598, + 13.0686179828186 + ], + [ + 77.651732198479607, + 13.0672324806871 + ], + [ + 77.651753705248098, + 13.0668395599701 + ], + [ + 77.651793682341804, + 13.066275252370099 + ], + [ + 77.651831280426407, + 13.0657445302072 + ], + [ + 77.651845833178896, + 13.065542588281801 + ], + [ + 77.651887961212097, + 13.064957997433 + ], + [ + 77.651927317026406, + 13.064509872434799 + ], + [ + 77.651968066247804, + 13.064045878613999 + ], + [ + 77.652008607839207, + 13.0632041787727 + ], + [ + 77.652010493029593, + 13.0627874698932 + ], + [ + 77.651978238894202, + 13.0624637090595 + ], + [ + 77.651976275410206, + 13.0616326085618 + ], + [ + 77.651951548620005, + 13.0609349919471 + ], + [ + 77.651953704220404, + 13.060902218249799 + ], + [ + 77.651956404461103, + 13.0608611629885 + ], + [ + 77.651957466792496, + 13.0608450102772 + ], + [ + 77.651963440533507, + 13.0607541914961 + ], + [ + 77.651932088189497, + 13.0604400182663 + ], + [ + 77.651928523416203, + 13.060404296551001 + ], + [ + 77.651920496320102, + 13.0603238550621 + ], + [ + 77.651898934686002, + 13.060107787225601 + ], + [ + 77.651894432938903, + 13.0600626753931 + ], + [ + 77.6518932906814, + 13.060059518014199 + ], + [ + 77.651851199953398, + 13.059943169298901 + ], + [ + 77.651802449436701, + 13.0598084109167 + ], + [ + 77.651773385522006, + 13.059697469015299 + ], + [ + 77.6517493294307, + 13.0596056448053 + ], + [ + 77.651716593080096, + 13.059480682879 + ], + [ + 77.651632877279198, + 13.058759957107601 + ], + [ + 77.651619307014499, + 13.0587296068315 + ], + [ + 77.651605160890597, + 13.058699262461699 + ], + [ + 77.6511285305386, + 13.058808471925801 + ], + [ + 77.651078899200698, + 13.058819843393 + ], + [ + 77.650962849607794, + 13.058831769607 + ], + [ + 77.650798154809706, + 13.0588486953804 + ], + [ + 77.650126841886006, + 13.0588691303433 + ], + [ + 77.650027060783003, + 13.058855473269301 + ], + [ + 77.649860995069503, + 13.0588368495221 + ], + [ + 77.649591129261196, + 13.058805738855799 + ], + [ + 77.649544375502899, + 13.0588080303423 + ], + [ + 77.649448437450502, + 13.0588127321579 + ], + [ + 77.649419261764294, + 13.058814162176001 + ], + [ + 77.649081658315794, + 13.058830709244599 + ], + [ + 77.649066733462305, + 13.0588314403851 + ], + [ + 77.649064391295894, + 13.0588140348618 + ], + [ + 77.649037351207497, + 13.058613089433001 + ], + [ + 77.6490214196007, + 13.0584946921695 + ], + [ + 77.649003070179802, + 13.058358332199299 + ], + [ + 77.648989797792098, + 13.058259702846399 + ], + [ + 77.648964539114104, + 13.0581462397354 + ], + [ + 77.648958947891899, + 13.0581211221493 + ], + [ + 77.648921238251205, + 13.0578836467066 + ], + [ + 77.648892888143806, + 13.057705108531501 + ], + [ + 77.648640718752603, + 13.057659135114701 + ], + [ + 77.648552603865298, + 13.0576434715377 + ], + [ + 77.648508581503407, + 13.057635645701399 + ], + [ + 77.648067770081894, + 13.0576141893516 + ], + [ + 77.647939268542899, + 13.0576076010409 + ], + [ + 77.647787825265794, + 13.0575018742141 + ], + [ + 77.647469745743706, + 13.0575079914409 + ], + [ + 77.647398435942407, + 13.0575093632002 + ], + [ + 77.647173338761107, + 13.057513691699301 + ], + [ + 77.647128064477101, + 13.057514562275999 + ], + [ + 77.647034093633096, + 13.0575163692638 + ], + [ + 77.646908212548695, + 13.057269224509801 + ], + [ + 77.647061128200605, + 13.056864518401699 + ], + [ + 77.647127804625796, + 13.056744135723701 + ], + [ + 77.647092816789097, + 13.056595433741 + ], + [ + 77.646964927511902, + 13.056159725652201 + ], + [ + 77.646995360827503, + 13.0560431018542 + ], + [ + 77.647046463933904, + 13.055849125629701 + ], + [ + 77.647098872454606, + 13.055650194136399 + ], + [ + 77.647159274359396, + 13.055667082560699 + ], + [ + 77.647193397732494, + 13.0556766235261 + ], + [ + 77.647281984878106, + 13.055701393619101 + ], + [ + 77.6472882194889, + 13.0556010929315 + ], + [ + 77.647030128705396, + 13.055514749697799 + ], + [ + 77.646839892250895, + 13.0550482812894 + ], + [ + 77.6467551678261, + 13.0545885714523 + ], + [ + 77.646711337269494, + 13.0543869508921 + ], + [ + 77.646418481177705, + 13.0539387430793 + ], + [ + 77.646318933214701, + 13.0537485427975 + ], + [ + 77.646126536868607, + 13.053081244223099 + ], + [ + 77.646056853564104, + 13.0529481037821 + ], + [ + 77.646040219674106, + 13.0528776012961 + ], + [ + 77.645925893139193, + 13.0523930157735 + ], + [ + 77.645695750381194, + 13.0512561809666 + ], + [ + 77.645688534243703, + 13.0510363526638 + ], + [ + 77.645684783789406, + 13.0510125332271 + ], + [ + 77.645563026271205, + 13.0502392957774 + ], + [ + 77.6454775071021, + 13.0495261421688 + ], + [ + 77.6455233454069, + 13.0492597021018 + ], + [ + 77.645564834029102, + 13.0490345947868 + ], + [ + 77.645512671089605, + 13.048714836146999 + ], + [ + 77.645372146285595, + 13.048469569191001 + ], + [ + 77.645229479260095, + 13.048220562265801 + ], + [ + 77.64492887227, + 13.0479224652252 + ], + [ + 77.644627194304604, + 13.047555958651101 + ], + [ + 77.644517617913195, + 13.047376253369199 + ], + [ + 77.644514120386901, + 13.0473573060282 + ], + [ + 77.644391182434802, + 13.047076948316199 + ], + [ + 77.644289917821695, + 13.046528313715401 + ], + [ + 77.644281847812394, + 13.0465018832813 + ], + [ + 77.644022167681896, + 13.0456514405686 + ], + [ + 77.643916785592495, + 13.045370468488599 + ], + [ + 77.643491250005596, + 13.0447868164038 + ], + [ + 77.643376625674506, + 13.044553742583799 + ], + [ + 77.642907366859802, + 13.043984877165 + ], + [ + 77.642637087105797, + 13.043786857309801 + ], + [ + 77.642115703413296, + 13.0426885753443 + ], + [ + 77.641953530354002, + 13.042215205333401 + ], + [ + 77.641883401463502, + 13.041947838938301 + ], + [ + 77.641609284689395, + 13.0413055047896 + ], + [ + 77.641521723380293, + 13.0412269571446 + ], + [ + 77.641504983718207, + 13.041206676400201 + ], + [ + 77.641477676570602, + 13.0412084564748 + ], + [ + 77.641426436073203, + 13.041230498227 + ], + [ + 77.641402936163004, + 13.041245950222701 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "268", + "group": "BELATHUR", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "13", + "ward_name": "13 - Belathur", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಬೆಳತ್ತೂರ್", + "dig_ward_n": "BELATHUR", + "Assembly": "174 - Mahadevapura", + "Slno": "13" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.747751372863803, + 12.9981080976731 + ], + [ + 77.745810367992206, + 12.998511424018799 + ], + [ + 77.742870824678107, + 12.998636223727599 + ], + [ + 77.742150492398594, + 12.998570001351601 + ], + [ + 77.741240387067506, + 12.9984863304773 + ], + [ + 77.738495741880897, + 12.997904419318701 + ], + [ + 77.736687848058594, + 12.997579859225199 + ], + [ + 77.734669851129496, + 12.997217564137699 + ], + [ + 77.731418596883103, + 12.996638650065201 + ], + [ + 77.731368421167801, + 12.9965782023696 + ], + [ + 77.730565431679693, + 12.996413428068101 + ], + [ + 77.728799519661706, + 12.996073480176401 + ], + [ + 77.726828974981402, + 12.9957428394115 + ], + [ + 77.726295545713, + 12.995652998463701 + ], + [ + 77.726147704515995, + 12.995628098203399 + ], + [ + 77.724851747823394, + 12.9954696153084 + ], + [ + 77.724494576108995, + 12.9954651811201 + ], + [ + 77.723682514163301, + 12.995455097910099 + ], + [ + 77.723758365928205, + 12.9966545122962 + ], + [ + 77.723955185298905, + 12.9972690956218 + ], + [ + 77.724312371161105, + 12.998477756079801 + ], + [ + 77.725360764589396, + 12.9989831076575 + ], + [ + 77.725395796614606, + 12.9992903472544 + ], + [ + 77.725487315013197, + 13.0000146570554 + ], + [ + 77.725620403097906, + 12.999984303632599 + ], + [ + 77.725704458730107, + 13.0005484103201 + ], + [ + 77.726025738035602, + 13.0030570039669 + ], + [ + 77.726416129749794, + 13.003032721228699 + ], + [ + 77.726503921187899, + 13.003710769995401 + ], + [ + 77.724504554016306, + 13.003575133842199 + ], + [ + 77.723568770268599, + 13.0035921285698 + ], + [ + 77.723503354907194, + 13.0036044620383 + ], + [ + 77.722046319533305, + 13.003879166521701 + ], + [ + 77.7215694721191, + 13.003960652338799 + ], + [ + 77.721326592087905, + 13.004039683592101 + ], + [ + 77.719896954849602, + 13.0044434690753 + ], + [ + 77.719225861538703, + 13.004593909966699 + ], + [ + 77.718826167651301, + 13.004598098570099 + ], + [ + 77.718784263325105, + 13.0045942006864 + ], + [ + 77.718778653438306, + 13.004565160745001 + ], + [ + 77.718717046804301, + 13.004575393544799 + ], + [ + 77.718668595544798, + 13.004583441495001 + ], + [ + 77.718623699345599, + 13.004590899336399 + ], + [ + 77.718605411904505, + 13.0045939428288 + ], + [ + 77.718491423568693, + 13.0045925716467 + ], + [ + 77.718312280128501, + 13.004590627379701 + ], + [ + 77.7184339945386, + 13.0048726546965 + ], + [ + 77.718831674097004, + 13.0057941201506 + ], + [ + 77.7189585431029, + 13.0061292885476 + ], + [ + 77.719010099786502, + 13.006369265201901 + ], + [ + 77.719140073862206, + 13.0070420279521 + ], + [ + 77.719282197690902, + 13.0076672372426 + ], + [ + 77.719325939782394, + 13.0083521954405 + ], + [ + 77.719416326967803, + 13.008773524142301 + ], + [ + 77.719486976758901, + 13.009102848456299 + ], + [ + 77.719698402609396, + 13.0100883676064 + ], + [ + 77.719781672446402, + 13.010068298228999 + ], + [ + 77.719921411916602, + 13.0100521533794 + ], + [ + 77.720026192640702, + 13.0100510545152 + ], + [ + 77.720044027590703, + 13.0100497382843 + ], + [ + 77.720166104479802, + 13.0100507163418 + ], + [ + 77.720226554885997, + 13.010050082329901 + ], + [ + 77.7202478441408, + 13.0100487298555 + ], + [ + 77.7207068411264, + 13.0100979184356 + ], + [ + 77.720794902676502, + 13.01010735515 + ], + [ + 77.721769226607293, + 13.0101163283361 + ], + [ + 77.723333577226796, + 13.0101642704038 + ], + [ + 77.724151304622595, + 13.0101748788192 + ], + [ + 77.724540236311896, + 13.010179541389601 + ], + [ + 77.724703552352693, + 13.010181498708 + ], + [ + 77.724907368238703, + 13.010180486595001 + ], + [ + 77.725972208828196, + 13.010200235418299 + ], + [ + 77.726189894798097, + 13.0102042716473 + ], + [ + 77.726645845369106, + 13.0102766133791 + ], + [ + 77.727251174406803, + 13.010372653652199 + ], + [ + 77.727339221478701, + 13.010385070163901 + ], + [ + 77.728051209621796, + 13.0105382190652 + ], + [ + 77.728082484139406, + 13.010544946110601 + ], + [ + 77.728234097187297, + 13.010541666519201 + ], + [ + 77.728329677359895, + 13.0105395996134 + ], + [ + 77.728434341655202, + 13.010537335027101 + ], + [ + 77.728441311572297, + 13.010560548995601 + ], + [ + 77.728520376285203, + 13.0105753874951 + ], + [ + 77.728565339973798, + 13.0105838259267 + ], + [ + 77.728694932173497, + 13.0106081454307 + ], + [ + 77.7286988146775, + 13.0106085987103 + ], + [ + 77.728905672161204, + 13.010632748333601 + ], + [ + 77.729104840285601, + 13.010656000378299 + ], + [ + 77.729545896350004, + 13.010707425700399 + ], + [ + 77.729825247094595, + 13.010727613958 + ], + [ + 77.730111893423, + 13.010746490944101 + ], + [ + 77.730249428847898, + 13.010755517045901 + ], + [ + 77.730481774831503, + 13.010783558722499 + ], + [ + 77.730684872552601, + 13.010791524232401 + ], + [ + 77.731161144334493, + 13.010810894772099 + ], + [ + 77.731409194310402, + 13.010821152207701 + ], + [ + 77.731536883674195, + 13.0108118465764 + ], + [ + 77.731716189024496, + 13.010798687599999 + ], + [ + 77.731866872699996, + 13.010787628981699 + ], + [ + 77.732037464443295, + 13.0107751091804 + ], + [ + 77.732127767260494, + 13.0107684812833 + ], + [ + 77.732440775312995, + 13.0108012519784 + ], + [ + 77.732842339008897, + 13.010771049701599 + ], + [ + 77.733065178442999, + 13.0106671409829 + ], + [ + 77.733169022440705, + 13.010598882629299 + ], + [ + 77.733355334480294, + 13.0104766002252 + ], + [ + 77.733823274100999, + 13.010268261203199 + ], + [ + 77.733869148396494, + 13.010247836413599 + ], + [ + 77.733957972261393, + 13.0101954982549 + ], + [ + 77.734047178843795, + 13.0102334181364 + ], + [ + 77.734230923467194, + 13.010313639769 + ], + [ + 77.734735849089901, + 13.0105366352761 + ], + [ + 77.735379393874297, + 13.010820932349599 + ], + [ + 77.735531137110399, + 13.0108879671547 + ], + [ + 77.735588169319996, + 13.010913227049601 + ], + [ + 77.735670620482907, + 13.0109332560633 + ], + [ + 77.735746097768597, + 13.010910289237099 + ], + [ + 77.735879081639894, + 13.010869823312399 + ], + [ + 77.735901997600294, + 13.0108628498855 + ], + [ + 77.736231858565404, + 13.010762475973801 + ], + [ + 77.736235741421197, + 13.010119112934399 + ], + [ + 77.736239298728293, + 13.009956532037799 + ], + [ + 77.736244044176999, + 13.009724953953601 + ], + [ + 77.736247874984201, + 13.0093885374827 + ], + [ + 77.736245042521702, + 13.0091303976132 + ], + [ + 77.736240179316297, + 13.0090760843129 + ], + [ + 77.736161584202605, + 13.0083763155473 + ], + [ + 77.736160678591204, + 13.0083682510611 + ], + [ + 77.736158755967395, + 13.008353303927199 + ], + [ + 77.736155719396294, + 13.0083296919777 + ], + [ + 77.736149340053601, + 13.0082800846879 + ], + [ + 77.736149271878404, + 13.0082557323054 + ], + [ + 77.736148663173594, + 13.0080376746265 + ], + [ + 77.736148206088799, + 13.0079416780545 + ], + [ + 77.736147808259503, + 13.007858220098401 + ], + [ + 77.7361477558822, + 13.0078470635172 + ], + [ + 77.736146649217304, + 13.007614761823501 + ], + [ + 77.736227809156006, + 13.0076616300181 + ], + [ + 77.736602162684406, + 13.0078778154598 + ], + [ + 77.737181352499505, + 13.007794065278601 + ], + [ + 77.737669839339503, + 13.0077233638902 + ], + [ + 77.737897708754502, + 13.007689436793401 + ], + [ + 77.738043062035899, + 13.007667348284601 + ], + [ + 77.738043193624307, + 13.0076050827278 + ], + [ + 77.738143016751295, + 13.0075772378824 + ], + [ + 77.738476137677296, + 13.007620319119599 + ], + [ + 77.738506267924805, + 13.007624216006199 + ], + [ + 77.738567315750601, + 13.0076449851168 + ], + [ + 77.738590643749404, + 13.0076529212611 + ], + [ + 77.738774620240605, + 13.0077154442083 + ], + [ + 77.738895791800601, + 13.007756666949 + ], + [ + 77.739229143768597, + 13.0078073471367 + ], + [ + 77.739612729900301, + 13.007898219216001 + ], + [ + 77.739960902648804, + 13.0079772134598 + ], + [ + 77.740372322842703, + 13.008060599386001 + ], + [ + 77.740447638180996, + 13.008058093280701 + ], + [ + 77.740878388659695, + 13.0081252627549 + ], + [ + 77.740896966843295, + 13.0080461155167 + ], + [ + 77.740920206990296, + 13.007947050494 + ], + [ + 77.740936590500795, + 13.0078771669974 + ], + [ + 77.740936643316601, + 13.0078769433155 + ], + [ + 77.740944845507897, + 13.0078419454503 + ], + [ + 77.741016123421304, + 13.007537917603001 + ], + [ + 77.741046035424603, + 13.007410331222699 + ], + [ + 77.741105410624201, + 13.007143509105401 + ], + [ + 77.741420070544095, + 13.007132703389299 + ], + [ + 77.741801338291495, + 13.007119757096801 + ], + [ + 77.743146674340906, + 13.007073835506301 + ], + [ + 77.743273558662096, + 13.0070724937365 + ], + [ + 77.7433660170243, + 13.007071515973401 + ], + [ + 77.743844047072997, + 13.0071312029974 + ], + [ + 77.743891261254305, + 13.007137098293301 + ], + [ + 77.743899151020301, + 13.007138053673 + ], + [ + 77.744251595420295, + 13.0071807116169 + ], + [ + 77.744574761809702, + 13.007195359342001 + ], + [ + 77.745153716861296, + 13.007171167544 + ], + [ + 77.745561941432896, + 13.0071194214188 + ], + [ + 77.7461882724308, + 13.0070055210251 + ], + [ + 77.746823371659104, + 13.0068230204463 + ], + [ + 77.7468287998379, + 13.0068214607301 + ], + [ + 77.746834111494493, + 13.0068197766845 + ], + [ + 77.746861646581706, + 13.006811049819399 + ], + [ + 77.746882909755698, + 13.006804310748899 + ], + [ + 77.746999256846294, + 13.006813028947899 + ], + [ + 77.747085170135705, + 13.0068194659739 + ], + [ + 77.747086027898504, + 13.006828090929 + ], + [ + 77.747096066066504, + 13.006929014078599 + ], + [ + 77.747102685645302, + 13.006995564644599 + ], + [ + 77.747110433764405, + 13.00703393017 + ], + [ + 77.747111885691893, + 13.007041130602699 + ], + [ + 77.747142255787594, + 13.0071916950778 + ], + [ + 77.747052428987203, + 13.007195042867099 + ], + [ + 77.746970629204597, + 13.0071980915354 + ], + [ + 77.746866367189995, + 13.007201977842801 + ], + [ + 77.746867404781099, + 13.0072311146436 + ], + [ + 77.746869816345693, + 13.0072991036232 + ], + [ + 77.746870118413398, + 13.0073077109775 + ], + [ + 77.746871544998896, + 13.007348412621401 + ], + [ + 77.746874629640601, + 13.007436445714999 + ], + [ + 77.746876275348896, + 13.0074834087364 + ], + [ + 77.746877297558697, + 13.007512570089 + ], + [ + 77.746880506446701, + 13.007604104080301 + ], + [ + 77.746883968323203, + 13.0077028828174 + ], + [ + 77.746884484077995, + 13.0077175926205 + ], + [ + 77.746881114750494, + 13.007847793803201 + ], + [ + 77.746914624046994, + 13.0079798356811 + ], + [ + 77.746940601672193, + 13.008066900054899 + ], + [ + 77.746945852761996, + 13.0083709454385 + ], + [ + 77.746948700908007, + 13.0085408752118 + ], + [ + 77.7469493803668, + 13.0086519108911 + ], + [ + 77.746949958405395, + 13.009346300765801 + ], + [ + 77.746949835732096, + 13.009567582032499 + ], + [ + 77.746965692147498, + 13.009577295633401 + ], + [ + 77.747029361728096, + 13.0096162973944 + ], + [ + 77.747042373071395, + 13.0096335098631 + ], + [ + 77.747060232580296, + 13.009657135217299 + ], + [ + 77.747102938734997, + 13.0097136288689 + ], + [ + 77.7471569632539, + 13.009785096380901 + ], + [ + 77.747198092358801, + 13.0098395046615 + ], + [ + 77.747163315870907, + 13.0099697196036 + ], + [ + 77.747154839410996, + 13.010001481070899 + ], + [ + 77.747120940960698, + 13.0101286135825 + ], + [ + 77.747114561579593, + 13.0101547205696 + ], + [ + 77.747104740175004, + 13.010194934296999 + ], + [ + 77.747029303343695, + 13.0105046249561 + ], + [ + 77.746989029299101, + 13.01049616085 + ], + [ + 77.746893238644901, + 13.010476097466301 + ], + [ + 77.746939141595007, + 13.0106437829324 + ], + [ + 77.746983068017897, + 13.010804381399501 + ], + [ + 77.747019425460095, + 13.0109375441653 + ], + [ + 77.747109741510499, + 13.0112683961055 + ], + [ + 77.747217441532896, + 13.0116629917467 + ], + [ + 77.747451560755096, + 13.011596317710501 + ], + [ + 77.747795694106301, + 13.011498245202 + ], + [ + 77.747836882478794, + 13.012232912853699 + ], + [ + 77.747880683263901, + 13.012730866278201 + ], + [ + 77.747977165649402, + 13.012679999879399 + ], + [ + 77.748082383145203, + 13.012624528745601 + ], + [ + 77.748139587047703, + 13.012594370063701 + ], + [ + 77.748282414929903, + 13.0125190696402 + ], + [ + 77.748719097462001, + 13.012293288849699 + ], + [ + 77.748786456168602, + 13.012258461501 + ], + [ + 77.7488944193544, + 13.0122032292869 + ], + [ + 77.749125730821405, + 13.0120848745674 + ], + [ + 77.749213571398798, + 13.012040024352 + ], + [ + 77.749459252730404, + 13.011805274841 + ], + [ + 77.749598601906499, + 13.0116812643821 + ], + [ + 77.749663743056402, + 13.0116233974764 + ], + [ + 77.749624845758504, + 13.0115137302243 + ], + [ + 77.749836113503903, + 13.0113479938769 + ], + [ + 77.750065634811193, + 13.0113173617189 + ], + [ + 77.750330117127007, + 13.011282063266 + ], + [ + 77.750331880542703, + 13.0112818277653 + ], + [ + 77.750628266960007, + 13.0112761685201 + ], + [ + 77.750683973253601, + 13.0112989630261 + ], + [ + 77.750712180830504, + 13.0113105046602 + ], + [ + 77.750767060730794, + 13.011332960129399 + ], + [ + 77.750868791660494, + 13.0113745867798 + ], + [ + 77.751037131539206, + 13.0113070577294 + ], + [ + 77.751292487612005, + 13.0112046222389 + ], + [ + 77.7518796810308, + 13.0108817278029 + ], + [ + 77.7519710904389, + 13.010831461442899 + ], + [ + 77.752301585365203, + 13.0107480811093 + ], + [ + 77.752437327894299, + 13.010711650108901 + ], + [ + 77.752496878203701, + 13.010676419753301 + ], + [ + 77.752754526636195, + 13.0105239948013 + ], + [ + 77.7528198182426, + 13.0104853674622 + ], + [ + 77.752825764664607, + 13.0104818500219 + ], + [ + 77.752843382423293, + 13.010471427420899 + ], + [ + 77.752847454034097, + 13.0104681511956 + ], + [ + 77.752852971112702, + 13.010463711498801 + ], + [ + 77.752889101537093, + 13.010434641035699 + ], + [ + 77.753604002221905, + 13.009859416647799 + ], + [ + 77.754019073878496, + 13.0095254399849 + ], + [ + 77.754044861827694, + 13.0095041674385 + ], + [ + 77.754267465491907, + 13.0092162117035 + ], + [ + 77.754389703382699, + 13.009058086302399 + ], + [ + 77.754614903400096, + 13.0089075122449 + ], + [ + 77.754644166522894, + 13.0088879461715 + ], + [ + 77.754672669883604, + 13.0088769101399 + ], + [ + 77.754741737516696, + 13.008839012883501 + ], + [ + 77.754793172237299, + 13.0088379210016 + ], + [ + 77.754822022750801, + 13.0088455539134 + ], + [ + 77.754868635984707, + 13.008903025239199 + ], + [ + 77.7550151843527, + 13.0090837091899 + ], + [ + 77.755086107472295, + 13.009215603769899 + ], + [ + 77.755087741872202, + 13.009263147397601 + ], + [ + 77.755104413984895, + 13.009748174394501 + ], + [ + 77.755142590543898, + 13.0098757402516 + ], + [ + 77.755174576189603, + 13.0099575868161 + ], + [ + 77.755195568833599, + 13.010013003228901 + ], + [ + 77.755255133620693, + 13.010170242806 + ], + [ + 77.755310276709196, + 13.0102392834858 + ], + [ + 77.755335213586605, + 13.0102526307665 + ], + [ + 77.755369111043706, + 13.010262872063301 + ], + [ + 77.755428071108298, + 13.0102665743924 + ], + [ + 77.755474476767205, + 13.0102599504909 + ], + [ + 77.755608873143402, + 13.010240765899001 + ], + [ + 77.755660059050996, + 13.010227056080501 + ], + [ + 77.756014169484999, + 13.010071986441799 + ], + [ + 77.756202127519899, + 13.009939006970701 + ], + [ + 77.756437606374305, + 13.009781810089899 + ], + [ + 77.756709831419201, + 13.009563248091901 + ], + [ + 77.756918618620404, + 13.009354031217599 + ], + [ + 77.756975199052604, + 13.0092973342681 + ], + [ + 77.757066192285706, + 13.0091887639687 + ], + [ + 77.757103179105201, + 13.0091411495355 + ], + [ + 77.757304550412798, + 13.0088819138599 + ], + [ + 77.757364750813807, + 13.0088281936737 + ], + [ + 77.757450448134193, + 13.008793407989801 + ], + [ + 77.757551990286899, + 13.0087521901825 + ], + [ + 77.757891019925495, + 13.008614573035899 + ], + [ + 77.758028556482401, + 13.0085570792799 + ], + [ + 77.758193948148701, + 13.0084879408103 + ], + [ + 77.758291818434103, + 13.0084106108052 + ], + [ + 77.758444511390394, + 13.008289962449799 + ], + [ + 77.758462182600596, + 13.008276000652801 + ], + [ + 77.758674448711204, + 13.0081082806254 + ], + [ + 77.758696189160801, + 13.0080794321357 + ], + [ + 77.758872135068501, + 13.0079422051245 + ], + [ + 77.759142866253598, + 13.0078822020995 + ], + [ + 77.759148639203104, + 13.0078809230143 + ], + [ + 77.759169892580402, + 13.0078600984752 + ], + [ + 77.759249507301604, + 13.0077820924911 + ], + [ + 77.759335576987397, + 13.007697761414599 + ], + [ + 77.759536885517406, + 13.0074989485485 + ], + [ + 77.759552141839904, + 13.007483881428699 + ], + [ + 77.759569686332199, + 13.0074665542431 + ], + [ + 77.7595872086968, + 13.007432323419 + ], + [ + 77.759616204650001, + 13.007375680150099 + ], + [ + 77.759619349862206, + 13.007369534810699 + ], + [ + 77.759712982438202, + 13.007186621314499 + ], + [ + 77.759635884149006, + 13.0069903844346 + ], + [ + 77.759584966274005, + 13.0068607835242 + ], + [ + 77.759471898273205, + 13.0065761768369 + ], + [ + 77.759431162781496, + 13.006473639494599 + ], + [ + 77.759407384057496, + 13.0062825768197 + ], + [ + 77.759384382979803, + 13.0060977667915 + ], + [ + 77.759560891596607, + 13.0058684091992 + ], + [ + 77.759662645972298, + 13.005736186978201 + ], + [ + 77.759687782189602, + 13.005713958923801 + ], + [ + 77.759821543295303, + 13.005595671402901 + ], + [ + 77.760206885551696, + 13.005254907388901 + ], + [ + 77.760354281021193, + 13.0051774195066 + ], + [ + 77.760380118004903, + 13.005163835969199 + ], + [ + 77.760567890811004, + 13.0050651193992 + ], + [ + 77.760647227039001, + 13.005023410756399 + ], + [ + 77.760783207594599, + 13.004951922958099 + ], + [ + 77.760869233867794, + 13.004973421661701 + ], + [ + 77.761078664628798, + 13.0050257589983 + ], + [ + 77.761381592254807, + 13.0051014627157 + ], + [ + 77.761383014846203, + 13.0051018179362 + ], + [ + 77.761424277064805, + 13.005123992508301 + ], + [ + 77.761425145403507, + 13.0051244593164 + ], + [ + 77.761473143960202, + 13.0051502540543 + ], + [ + 77.761582386400406, + 13.00517198505 + ], + [ + 77.761633371436801, + 13.005182126831301 + ], + [ + 77.761779078710504, + 13.005191768869899 + ], + [ + 77.761861582770393, + 13.0051657069138 + ], + [ + 77.761992398044001, + 13.0051195430169 + ], + [ + 77.762105619833093, + 13.0050315926597 + ], + [ + 77.762195756936507, + 13.004921502845299 + ], + [ + 77.762252166847105, + 13.004859340965901 + ], + [ + 77.762291449861493, + 13.0047973623278 + ], + [ + 77.762359246664403, + 13.0047322816178 + ], + [ + 77.762404299628201, + 13.0046758376107 + ], + [ + 77.762459934908094, + 13.004543728995801 + ], + [ + 77.7625102020003, + 13.004442459088899 + ], + [ + 77.762580357420404, + 13.0043325819586 + ], + [ + 77.762665677594796, + 13.0041474981923 + ], + [ + 77.762692024000501, + 13.0040409329733 + ], + [ + 77.7627178008008, + 13.0039366709641 + ], + [ + 77.762735618762093, + 13.0038890099454 + ], + [ + 77.762757869980703, + 13.0038294926139 + ], + [ + 77.762827370193193, + 13.003697737698401 + ], + [ + 77.762971161484302, + 13.0035256380209 + ], + [ + 77.763140274941904, + 13.003299009815001 + ], + [ + 77.763226238511507, + 13.0031638447508 + ], + [ + 77.763311120491096, + 13.003057706739 + ], + [ + 77.763257213447702, + 13.0029177613611 + ], + [ + 77.763201176359601, + 13.0028785353994 + ], + [ + 77.762741672237098, + 13.0029532515169 + ], + [ + 77.7626903049063, + 13.002520831986899 + ], + [ + 77.762677229585705, + 13.002447983772401 + ], + [ + 77.762682833294605, + 13.002388210878401 + ], + [ + 77.7626790974887, + 13.002324702178599 + ], + [ + 77.762301314119696, + 13.0023681309218 + ], + [ + 77.762178499501502, + 13.0023788713637 + ], + [ + 77.762114523826, + 13.002394281562999 + ], + [ + 77.762030935169506, + 13.002399418295999 + ], + [ + 77.761977699935798, + 13.0024101587379 + ], + [ + 77.7618198621376, + 13.002429304743 + ], + [ + 77.761727821895803, + 13.001919000954601 + ], + [ + 77.761454122857501, + 13.0018639059109 + ], + [ + 77.7604158025147, + 13.0016333141429 + ], + [ + 77.760015869003595, + 13.0010797663031 + ], + [ + 77.759783659196302, + 13.0005425004651 + ], + [ + 77.7597428887061, + 13.000448085119499 + ], + [ + 77.759336034880604, + 13.000465960942201 + ], + [ + 77.759189332679796, + 13.000632377102701 + ], + [ + 77.758982787731696, + 13.000697805539 + ], + [ + 77.758341072562104, + 13.000772716518201 + ], + [ + 77.758248507949702, + 13.0007835221523 + ], + [ + 77.757728130247003, + 13.000844380820499 + ], + [ + 77.7576844849889, + 13.0008276254298 + ], + [ + 77.757683426655205, + 13.000827219339699 + ], + [ + 77.757613646801204, + 13.0008004310953 + ], + [ + 77.756741066985697, + 13.0009957730739 + ], + [ + 77.756625257003506, + 13.000526929436299 + ], + [ + 77.756285066778105, + 12.9998841197802 + ], + [ + 77.756055205205399, + 12.999643989335301 + ], + [ + 77.755841220199997, + 12.9994705793648 + ], + [ + 77.755521326366605, + 12.9986291400506 + ], + [ + 77.7554951757255, + 12.9985394807095 + ], + [ + 77.755459685569605, + 12.998462896689 + ], + [ + 77.755442874443204, + 12.9983788410568 + ], + [ + 77.755261687858095, + 12.9976354156871 + ], + [ + 77.755139571620305, + 12.997025818674301 + ], + [ + 77.756583412414997, + 12.996815973996799 + ], + [ + 77.756962022864698, + 12.9967584187693 + ], + [ + 77.757447445847703, + 12.996684624911699 + ], + [ + 77.758445991600794, + 12.9965328252965 + ], + [ + 77.758449672242094, + 12.996488189993601 + ], + [ + 77.758301263620098, + 12.9960700410162 + ], + [ + 77.758018415015002, + 12.9952730946647 + ], + [ + 77.757466309624306, + 12.9938329775571 + ], + [ + 77.757418008259407, + 12.993358438367499 + ], + [ + 77.757411631989399, + 12.9932957963735 + ], + [ + 77.757225164680406, + 12.9929631695423 + ], + [ + 77.756636642320402, + 12.992252401637799 + ], + [ + 77.756132143143603, + 12.9915909315026 + ], + [ + 77.755738575633501, + 12.9910430060976 + ], + [ + 77.755530627872801, + 12.990751235886799 + ], + [ + 77.755233843396894, + 12.9903600248107 + ], + [ + 77.755032813681098, + 12.990032330260201 + ], + [ + 77.754883927508303, + 12.989791915543799 + ], + [ + 77.7547248009691, + 12.989506797058599 + ], + [ + 77.754664626826994, + 12.9893544713095 + ], + [ + 77.754563143935798, + 12.988992259303901 + ], + [ + 77.754543226518706, + 12.988954229082999 + ], + [ + 77.753993007622498, + 12.9877371470333 + ], + [ + 77.753818267065796, + 12.9873506183862 + ], + [ + 77.753056367926604, + 12.9853602712043 + ], + [ + 77.7504321918817, + 12.9864540648742 + ], + [ + 77.7495404312548, + 12.9861535448812 + ], + [ + 77.748803380520599, + 12.985886222381399 + ], + [ + 77.748803380520599, + 12.9859161088284 + ], + [ + 77.748799644714694, + 12.985960004547399 + ], + [ + 77.748772560122106, + 12.986243925793801 + ], + [ + 77.748742673675096, + 12.9867622688589 + ], + [ + 77.748628840477707, + 12.987472898172699 + ], + [ + 77.748770692219196, + 12.9886600582429 + ], + [ + 77.748763326611794, + 12.989063260762901 + ], + [ + 77.748690182959095, + 12.989503806998499 + ], + [ + 77.748592340414802, + 12.9904752767471 + ], + [ + 77.748454115597397, + 12.9915698678693 + ], + [ + 77.748446643985602, + 12.992802683808801 + ], + [ + 77.748389070095797, + 12.993413360663601 + ], + [ + 77.748259853691707, + 12.994382929695 + ], + [ + 77.748151515321297, + 12.9952571082703 + ], + [ + 77.748308419168197, + 12.995350503417299 + ], + [ + 77.748345777226902, + 12.9955074072641 + ], + [ + 77.748300947556402, + 12.9957203481992 + ], + [ + 77.748147779515406, + 12.9958996668813 + ], + [ + 77.748017026309697, + 12.9968635047977 + ], + [ + 77.748082975735201, + 12.997547149932 + ], + [ + 77.748188873380101, + 12.997879643996299 + ], + [ + 77.748200080797702, + 12.998058962678501 + ], + [ + 77.747826339269196, + 12.9980983800986 + ], + [ + 77.747751372863803, + 12.9981080976731 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "270", + "group": "HOODI", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "15", + "ward_name": "15 - Hoodi", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಹೂಡಿ", + "dig_ward_n": "HOODI", + "Assembly": "174 - Mahadevapura", + "Slno": "15" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.714442160232394, + 12.9918083014378 + ], + [ + 77.714061980926502, + 12.991812274896599 + ], + [ + 77.713333359144201, + 12.9920493406867 + ], + [ + 77.712153841140804, + 12.992541337321899 + ], + [ + 77.711835857726101, + 12.9925338133576 + ], + [ + 77.711050187923803, + 12.9927136544355 + ], + [ + 77.710953693877201, + 12.9927349873214 + ], + [ + 77.710506988862704, + 12.9927949809162 + ], + [ + 77.709941827281796, + 12.9928155589157 + ], + [ + 77.709013483862904, + 12.9928276435556 + ], + [ + 77.709216012513295, + 12.9941746585174 + ], + [ + 77.7092309557368, + 12.9947873306813 + ], + [ + 77.709145032201604, + 12.9950451012868 + ], + [ + 77.708845902318004, + 12.9953454220451 + ], + [ + 77.708279259189496, + 12.996014542912 + ], + [ + 77.708275523383605, + 12.9963946611601 + ], + [ + 77.708274589432406, + 12.996740223203799 + ], + [ + 77.708139166469394, + 12.9968410899625 + ], + [ + 77.708126091148799, + 12.996895259147699 + ], + [ + 77.708132628809096, + 12.9969606357506 + ], + [ + 77.708148505983999, + 12.9970101351784 + ], + [ + 77.708178392431094, + 12.997049361140199 + ], + [ + 77.708188665897197, + 12.997055898800401 + ], + [ + 77.708221445942002, + 12.9972809904766 + ], + [ + 77.708430213902005, + 12.9974503450164 + ], + [ + 77.708531826625901, + 12.9975125443202 + ], + [ + 77.708613732639705, + 12.997559347756599 + ], + [ + 77.708679404825602, + 12.997609751192501 + ], + [ + 77.7087188096679, + 12.997739197684499 + ], + [ + 77.708722594797294, + 12.9978227187685 + ], + [ + 77.708688518644294, + 12.997865983829 + ], + [ + 77.708684122133604, + 12.998150587361501 + ], + [ + 77.708686069763203, + 12.998170892585 + ], + [ + 77.708718343387503, + 12.998391845118601 + ], + [ + 77.708719617307594, + 12.998403123795001 + ], + [ + 77.708745747784505, + 12.9986298530161 + ], + [ + 77.708742918504498, + 12.998687471585599 + ], + [ + 77.708694657940896, + 12.9986970087767 + ], + [ + 77.708504714656897, + 12.998755450670201 + ], + [ + 77.708330817292506, + 12.9988069498353 + ], + [ + 77.708173602829206, + 12.9988571456412 + ], + [ + 77.7080069688637, + 12.998888243276101 + ], + [ + 77.707306389923104, + 12.9990350912712 + ], + [ + 77.706362869635896, + 12.9992328582199 + ], + [ + 77.706054558794904, + 12.999280251475399 + ], + [ + 77.705874283589694, + 12.999307962435401 + ], + [ + 77.706239679449098, + 13.000781755017099 + ], + [ + 77.706325256343206, + 13.0011269169411 + ], + [ + 77.706435974132802, + 13.0014611343826 + ], + [ + 77.706926424568195, + 13.0029375273146 + ], + [ + 77.706947713530695, + 13.0031484652948 + ], + [ + 77.707045498740101, + 13.003776408519901 + ], + [ + 77.707127826112597, + 13.004306272651601 + ], + [ + 77.707364982332507, + 13.004300410607399 + ], + [ + 77.707843434624195, + 13.0042457331697 + ], + [ + 77.708330645097405, + 13.004255327693301 + ], + [ + 77.708717971092796, + 13.004263081441501 + ], + [ + 77.708923822882696, + 13.0042672025735 + ], + [ + 77.709053394454401, + 13.0042692373653 + ], + [ + 77.709904010018107, + 13.0042762123914 + ], + [ + 77.710022510475994, + 13.004277184345799 + ], + [ + 77.7102951730553, + 13.0042785803354 + ], + [ + 77.710312717198804, + 13.0042786698894 + ], + [ + 77.710341545835306, + 13.0042804762837 + ], + [ + 77.710455074716805, + 13.0042875894946 + ], + [ + 77.710599169031397, + 13.0042966182487 + ], + [ + 77.710599915739706, + 13.0042966646494 + ], + [ + 77.710611705499602, + 13.004297403285699 + ], + [ + 77.710637099255806, + 13.0042989943968 + ], + [ + 77.710922871949705, + 13.0043163342984 + ], + [ + 77.711118590299506, + 13.0043286355421 + ], + [ + 77.711215565400195, + 13.004334730755099 + ], + [ + 77.711308495684193, + 13.004340688429499 + ], + [ + 77.711533614572602, + 13.004355120283799 + ], + [ + 77.711558382338097, + 13.0043559906431 + ], + [ + 77.711818358498704, + 13.004383761862799 + ], + [ + 77.712171134283807, + 13.004420725541999 + ], + [ + 77.712378071579906, + 13.0044422754202 + ], + [ + 77.712683397553107, + 13.0044993579666 + ], + [ + 77.712778472921102, + 13.0045171329356 + ], + [ + 77.712997708865103, + 13.004557749986301 + ], + [ + 77.713119441294893, + 13.004580190145401 + ], + [ + 77.713263681590902, + 13.004598662213301 + ], + [ + 77.713355838043299, + 13.0046104646909 + ], + [ + 77.713554176618302, + 13.004635491078901 + ], + [ + 77.713666005430596, + 13.0046285960431 + ], + [ + 77.713686515959395, + 13.0046273318282 + ], + [ + 77.713687777303903, + 13.004627262627899 + ], + [ + 77.713883762762194, + 13.0046165261026 + ], + [ + 77.713966750988902, + 13.0046119796014 + ], + [ + 77.714211304282301, + 13.004598129536401 + ], + [ + 77.714301065661303, + 13.004592673764501 + ], + [ + 77.715089501476498, + 13.004505381128901 + ], + [ + 77.715168863138004, + 13.0044966463172 + ], + [ + 77.715455932359006, + 13.0044744458585 + ], + [ + 77.715607424784594, + 13.0044628150654 + ], + [ + 77.715796505377696, + 13.0044482975024 + ], + [ + 77.715852875532903, + 13.004443190710299 + ], + [ + 77.716108661636099, + 13.0044563218935 + ], + [ + 77.716378840392693, + 13.004469302139301 + ], + [ + 77.716498636641305, + 13.004472564698901 + ], + [ + 77.716810395881893, + 13.004481363851999 + ], + [ + 77.717111447021296, + 13.0044898610261 + ], + [ + 77.718294147513006, + 13.004548611898 + ], + [ + 77.718312280128501, + 13.004590627379701 + ], + [ + 77.718491423568693, + 13.0045925716467 + ], + [ + 77.718605411904505, + 13.0045939428288 + ], + [ + 77.718623699345599, + 13.004590899336399 + ], + [ + 77.718668595544798, + 13.004583441495001 + ], + [ + 77.718717046804301, + 13.004575393544799 + ], + [ + 77.718778653438306, + 13.004565160745001 + ], + [ + 77.718784263325105, + 13.0045942006864 + ], + [ + 77.718826167651301, + 13.004598098570099 + ], + [ + 77.719225861538703, + 13.004593909966699 + ], + [ + 77.719896954849602, + 13.0044434690753 + ], + [ + 77.721326592087905, + 13.004039683592101 + ], + [ + 77.7215694721191, + 13.003960652338799 + ], + [ + 77.722046319533305, + 13.003879166521701 + ], + [ + 77.723503354907194, + 13.0036044620383 + ], + [ + 77.723568770268599, + 13.0035921285698 + ], + [ + 77.724504554016306, + 13.003575133842199 + ], + [ + 77.726503921187899, + 13.003710769995401 + ], + [ + 77.726416129749794, + 13.003032721228699 + ], + [ + 77.726025738035602, + 13.0030570039669 + ], + [ + 77.725704458730107, + 13.0005484103201 + ], + [ + 77.725620403097906, + 12.999984303632599 + ], + [ + 77.725487315013197, + 13.0000146570554 + ], + [ + 77.725395796614606, + 12.9992903472544 + ], + [ + 77.725360764589396, + 12.9989831076575 + ], + [ + 77.724312371161105, + 12.998477756079801 + ], + [ + 77.723955185298905, + 12.9972690956218 + ], + [ + 77.723758365928205, + 12.9966545122962 + ], + [ + 77.723682514163301, + 12.995455097910099 + ], + [ + 77.724494576108995, + 12.9954651811201 + ], + [ + 77.724851747823394, + 12.9954696153084 + ], + [ + 77.726147704515995, + 12.995628098203399 + ], + [ + 77.726295545713, + 12.995652998463701 + ], + [ + 77.726828974981402, + 12.9957428394115 + ], + [ + 77.728799519661706, + 12.996073480176401 + ], + [ + 77.730565431679693, + 12.996413428068101 + ], + [ + 77.731368421167801, + 12.9965782023696 + ], + [ + 77.731363707054498, + 12.9964630758176 + ], + [ + 77.731493556912994, + 12.996199465303 + ], + [ + 77.731549264010596, + 12.996065948632699 + ], + [ + 77.731560801418794, + 12.995923015668 + ], + [ + 77.731566507381899, + 12.995708764512299 + ], + [ + 77.731601895283404, + 12.995603604265501 + ], + [ + 77.7316598002745, + 12.9955008696039 + ], + [ + 77.731678479303895, + 12.995413078165701 + ], + [ + 77.732030846738397, + 12.994778854130001 + ], + [ + 77.732307962594305, + 12.994367052519999 + ], + [ + 77.732528375141101, + 12.9940457732146 + ], + [ + 77.732672951427006, + 12.993737706997599 + ], + [ + 77.732674071570301, + 12.9937338334238 + ], + [ + 77.731436585873297, + 12.9935423733726 + ], + [ + 77.731408853701197, + 12.993364897681101 + ], + [ + 77.730798697019694, + 12.9927980140515 + ], + [ + 77.730166411875004, + 12.992478602648999 + ], + [ + 77.729670848206595, + 12.992378354022801 + ], + [ + 77.7289375488172, + 12.9921852927556 + ], + [ + 77.728814984098705, + 12.992026570137799 + ], + [ + 77.728752409350307, + 12.991808025494 + ], + [ + 77.728720119443395, + 12.991710765703001 + ], + [ + 77.7286584400577, + 12.9916241610794 + ], + [ + 77.7285795154515, + 12.9915389467601 + ], + [ + 77.727961942279904, + 12.991229940488299 + ], + [ + 77.727715077228794, + 12.9911084793759 + ], + [ + 77.727627628702805, + 12.991161441159299 + ], + [ + 77.7275326687313, + 12.9911804101065 + ], + [ + 77.7274093871373, + 12.9910795433478 + ], + [ + 77.727432046020994, + 12.990914913227501 + ], + [ + 77.727524168474801, + 12.9908529079794 + ], + [ + 77.727641007101695, + 12.9908591308011 + ], + [ + 77.727592441625305, + 12.990388419260499 + ], + [ + 77.727368293272605, + 12.989915839817 + ], + [ + 77.7272132573287, + 12.989456335694101 + ], + [ + 77.727284237640404, + 12.989305035556001 + ], + [ + 77.727216140404707, + 12.988986788983199 + ], + [ + 77.727203917813995, + 12.988989359959399 + ], + [ + 77.727164691852295, + 12.989004303182901 + ], + [ + 77.727091843637695, + 12.989022982212299 + ], + [ + 77.726970969682696, + 12.989049879009499 + ], + [ + 77.726466154127607, + 12.989164709043401 + ], + [ + 77.726161312837803, + 12.989244693111401 + ], + [ + 77.7259618431045, + 12.9893258293878 + ], + [ + 77.725929815184102, + 12.989345361625 + ], + [ + 77.725626217736206, + 12.9895393795936 + ], + [ + 77.725159025541501, + 12.989831094397999 + ], + [ + 77.725012858109693, + 12.989890216334899 + ], + [ + 77.724740609853896, + 12.990002603359001 + ], + [ + 77.724553178684602, + 12.990079095716601 + ], + [ + 77.724097451139897, + 12.990208086181401 + ], + [ + 77.724087619850096, + 12.990210829779899 + ], + [ + 77.7239545278251, + 12.9902479774433 + ], + [ + 77.723367401632601, + 12.990417866277401 + ], + [ + 77.722944165720094, + 12.990517155415899 + ], + [ + 77.722928671817797, + 12.990521834596899 + ], + [ + 77.722584450204707, + 12.990633845035299 + ], + [ + 77.722490335327095, + 12.9906619320654 + ], + [ + 77.722322192496094, + 12.9907122495575 + ], + [ + 77.721864931757196, + 12.9908593195722 + ], + [ + 77.721852303862406, + 12.990862839473699 + ], + [ + 77.721494181319997, + 12.9910201617904 + ], + [ + 77.721184392789496, + 12.991227790677399 + ], + [ + 77.721131787504305, + 12.991261088284 + ], + [ + 77.720996287556005, + 12.9913483261896 + ], + [ + 77.720900238454306, + 12.9914103086045 + ], + [ + 77.720750346451794, + 12.9914976971952 + ], + [ + 77.720710870869993, + 12.9915206944991 + ], + [ + 77.720550114683206, + 12.991614971938899 + ], + [ + 77.720371647698997, + 12.991721855886899 + ], + [ + 77.720249815832105, + 12.991795400068201 + ], + [ + 77.720232080558603, + 12.991805748527799 + ], + [ + 77.7201239049609, + 12.9918644701785 + ], + [ + 77.719958481384396, + 12.9919531502798 + ], + [ + 77.719789089419507, + 12.9920475177985 + ], + [ + 77.719574708423394, + 12.992134452055099 + ], + [ + 77.719340801223893, + 12.9921730355278 + ], + [ + 77.719281531043407, + 12.9921759145418 + ], + [ + 77.719127298667203, + 12.9921820462498 + ], + [ + 77.718865904185293, + 12.9921813955135 + ], + [ + 77.718593571773894, + 12.992180859017401 + ], + [ + 77.718468456218403, + 12.992185464192501 + ], + [ + 77.718336317539496, + 12.9921903271067 + ], + [ + 77.718213159335903, + 12.992195003813301 + ], + [ + 77.717915068714404, + 12.992208286494 + ], + [ + 77.7178701781082, + 12.992209885503099 + ], + [ + 77.717654311070504, + 12.9922132738225 + ], + [ + 77.717464937480798, + 12.9922175139207 + ], + [ + 77.717185782583201, + 12.9922249516738 + ], + [ + 77.717021751049103, + 12.9922300554818 + ], + [ + 77.716674114818403, + 12.992240467549101 + ], + [ + 77.716251996333696, + 12.992284404758999 + ], + [ + 77.716062794374594, + 12.9923044507272 + ], + [ + 77.715944239324202, + 12.9921973452005 + ], + [ + 77.714442160232394, + 12.9918083014378 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "280", + "group": "Kengeri Upanagara", + "Corporatio": "West", + "ac_no": "153", + "ac": "Yeshwanthapura", + "corporat_1": "5", + "ward_id": "109", + "ward_name": "109 - Kengeri Upanagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಯಶವಂತಪುರ", + "ward_name_": "ಕೆಂಗೇರಿ ಉಪನಗರ", + "dig_ward_n": "Kengeri Upanagara", + "Assembly": "153 - Yeshwanthapura", + "Slno": "109" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.493259285286896, + 12.931844280998201 + ], + [ + 77.493259285286896, + 12.931844280998201 + ], + [ + 77.493513765390702, + 12.9316765911761 + ], + [ + 77.493757249441998, + 12.932139603588499 + ], + [ + 77.494242646678103, + 12.9328857643885 + ], + [ + 77.494451571702101, + 12.9328150754706 + ], + [ + 77.495334397743406, + 12.9323815167742 + ], + [ + 77.496283200107996, + 12.9318505644576 + ], + [ + 77.496454424375798, + 12.931541104083699 + ], + [ + 77.496762313884801, + 12.9314641317065 + ], + [ + 77.498542389348501, + 12.930928610565299 + ], + [ + 77.498624661681802, + 12.9309074938586 + ], + [ + 77.498666109911497, + 12.9308494988811 + ], + [ + 77.498689987718507, + 12.930703581177699 + ], + [ + 77.498687594113704, + 12.9305707529078 + ], + [ + 77.498685278342293, + 12.930442225443199 + ], + [ + 77.498679151335097, + 12.9301022103172 + ], + [ + 77.498678410282395, + 12.930061079358699 + ], + [ + 77.498624571120502, + 12.929510461401501 + ], + [ + 77.498603979551703, + 12.929061168471399 + ], + [ + 77.498602979154995, + 12.928960663923499 + ], + [ + 77.498599738665007, + 12.928635103262399 + ], + [ + 77.498598904781602, + 12.928551324475301 + ], + [ + 77.498598483094298, + 12.92850895808 + ], + [ + 77.498601775490499, + 12.928319192008701 + ], + [ + 77.498601719291599, + 12.9283135456855 + ], + [ + 77.498643168825595, + 12.927677312159901 + ], + [ + 77.498650474617904, + 12.927601574255799 + ], + [ + 77.498666454573396, + 12.927432384015299 + ], + [ + 77.498671827603303, + 12.9273754953217 + ], + [ + 77.498677107397995, + 12.9273333011063 + ], + [ + 77.498784880926607, + 12.926472044289 + ], + [ + 77.498876670041398, + 12.926092825632701 + ], + [ + 77.496255240295596, + 12.924610200185001 + ], + [ + 77.494503344327796, + 12.9238465521466 + ], + [ + 77.493903121469202, + 12.923577849671201 + ], + [ + 77.493892420764496, + 12.9235730730111 + ], + [ + 77.492793477708105, + 12.923082489039601 + ], + [ + 77.490480951325296, + 12.922129229132 + ], + [ + 77.489529285897206, + 12.9217369291965 + ], + [ + 77.48825092093, + 12.921235249561899 + ], + [ + 77.486302704795506, + 12.920410049733199 + ], + [ + 77.486105429843093, + 12.920304580184901 + ], + [ + 77.485756834801506, + 12.920171184357301 + ], + [ + 77.485401819347203, + 12.9205042077038 + ], + [ + 77.484716101576296, + 12.920020036843001 + ], + [ + 77.483702143588204, + 12.9204256644617 + ], + [ + 77.483948525753206, + 12.9211127663133 + ], + [ + 77.482717010388996, + 12.9215334625741 + ], + [ + 77.481169143874695, + 12.922123159810299 + ], + [ + 77.480717040319703, + 12.920838630529699 + ], + [ + 77.480698054609405, + 12.920784688020801 + ], + [ + 77.480006277970801, + 12.9210661725176 + ], + [ + 77.479709005159705, + 12.920376967651601 + ], + [ + 77.478826179118499, + 12.920703707538699 + ], + [ + 77.479537952032999, + 12.9236559283112 + ], + [ + 77.480085879302607, + 12.9234355868635 + ], + [ + 77.4809945313703, + 12.9231161857793 + ], + [ + 77.481108736562604, + 12.9233349103915 + ], + [ + 77.481304218406805, + 12.923880781681699 + ], + [ + 77.481308931001294, + 12.9240378681659 + ], + [ + 77.481506859971404, + 12.923989171355799 + ], + [ + 77.481619962240003, + 12.9239294784918 + ], + [ + 77.481741490829805, + 12.9238804606843 + ], + [ + 77.481790229617403, + 12.923860797686499 + ], + [ + 77.481797469967205, + 12.923857218709101 + ], + [ + 77.481825175610496, + 12.923843524606699 + ], + [ + 77.4818308872633, + 12.9238389527526 + ], + [ + 77.481924710019399, + 12.9237912423857 + ], + [ + 77.482049253282895, + 12.9237290001311 + ], + [ + 77.482080225638697, + 12.9237174117381 + ], + [ + 77.482124946117395, + 12.923698916286 + ], + [ + 77.482419532444595, + 12.923607451199199 + ], + [ + 77.482482367038301, + 12.923759825088901 + ], + [ + 77.482574089322696, + 12.9240167401049 + ], + [ + 77.482582902388202, + 12.924034726436201 + ], + [ + 77.482667729089599, + 12.924209092433699 + ], + [ + 77.482780831358198, + 12.924565678752799 + ], + [ + 77.482835811627695, + 12.9247070565886 + ], + [ + 77.482878224978407, + 12.9247887415604 + ], + [ + 77.483322779728795, + 12.924631655076199 + ], + [ + 77.483432921075305, + 12.924592207972101 + ], + [ + 77.4836716730223, + 12.9245117993639 + ], + [ + 77.483686007929506, + 12.924506016025701 + ], + [ + 77.483727906064601, + 12.9244931940745 + ], + [ + 77.483765763614201, + 12.9244792811865 + ], + [ + 77.484117220795696, + 12.924358207568901 + ], + [ + 77.484145912906001, + 12.924348899404601 + ], + [ + 77.484329704092502, + 12.9242860648109 + ], + [ + 77.484473684283302, + 12.924233871993501 + ], + [ + 77.484551196035298, + 12.9242028089743 + ], + [ + 77.4845924849037, + 12.924186604549501 + ], + [ + 77.484676865222596, + 12.9241651082181 + ], + [ + 77.484892467206393, + 12.924090465640599 + ], + [ + 77.484899928030202, + 12.924088135840799 + ], + [ + 77.485033451541796, + 12.9240535768143 + ], + [ + 77.485104140459697, + 12.924276639621899 + ], + [ + 77.485236093106394, + 12.924674068426899 + ], + [ + 77.485249723770707, + 12.9247134670298 + ], + [ + 77.485271448048394, + 12.9249228330814 + ], + [ + 77.485289873790705, + 12.9249813855239 + ], + [ + 77.485311144165806, + 12.9250365227252 + ], + [ + 77.485335337415194, + 12.925096149619099 + ], + [ + 77.485406989538404, + 12.925297626763401 + ], + [ + 77.485410543925695, + 12.9253077573574 + ], + [ + 77.485424716766602, + 12.9253437626272 + ], + [ + 77.485561137488801, + 12.9257053376044 + ], + [ + 77.485564830337097, + 12.9257151244464 + ], + [ + 77.485577242799394, + 12.925747758318201 + ], + [ + 77.485671825780798, + 12.9259975803519 + ], + [ + 77.485688401862504, + 12.9260437271437 + ], + [ + 77.485701423536199, + 12.926079743348 + ], + [ + 77.485724454573003, + 12.9261382518565 + ], + [ + 77.485739236698393, + 12.9261776394351 + ], + [ + 77.485805234200598, + 12.926354106054101 + ], + [ + 77.485857505085605, + 12.926493869274999 + ], + [ + 77.485923731515896, + 12.926670551395899 + ], + [ + 77.485925134289801, + 12.926674824263801 + ], + [ + 77.485943320057203, + 12.926730222042099 + ], + [ + 77.486036741481897, + 12.926978925485299 + ], + [ + 77.486051534909706, + 12.9270194423015 + ], + [ + 77.486072129422098, + 12.927064421375301 + ], + [ + 77.486153272698203, + 12.927294042214101 + ], + [ + 77.486220220660101, + 12.927485399269299 + ], + [ + 77.486253328585207, + 12.9275731755974 + ], + [ + 77.486269295738495, + 12.9276159399677 + ], + [ + 77.486369228913802, + 12.9278826512259 + ], + [ + 77.486472174755605, + 12.928162886275601 + ], + [ + 77.486628946937003, + 12.928588298477999 + ], + [ + 77.486685165117805, + 12.928742487948499 + ], + [ + 77.486779231117197, + 12.928997960983301 + ], + [ + 77.486932472416299, + 12.9294155007876 + ], + [ + 77.486938972280996, + 12.929432379547899 + ], + [ + 77.487008380888895, + 12.9296395240541 + ], + [ + 77.487019676102406, + 12.9296755565775 + ], + [ + 77.487027543926899, + 12.929701090519 + ], + [ + 77.487057149882801, + 12.929797172508801 + ], + [ + 77.487069674721198, + 12.929841098973 + ], + [ + 77.487076839766601, + 12.9298670064337 + ], + [ + 77.487086307377993, + 12.929892891943 + ], + [ + 77.487150498426701, + 12.9300960627963 + ], + [ + 77.487236080014398, + 12.930366933480199 + ], + [ + 77.487280053988101, + 12.930505428078 + ], + [ + 77.487302169694601, + 12.9305876620236 + ], + [ + 77.487319422882507, + 12.930643966566601 + ], + [ + 77.487377816750794, + 12.9308433102038 + ], + [ + 77.487524416766504, + 12.9313456161234 + ], + [ + 77.487532018160493, + 12.931365072887701 + ], + [ + 77.487543318668898, + 12.9313939992445 + ], + [ + 77.487548170065494, + 12.931418799356001 + ], + [ + 77.4875790661699, + 12.9315156314617 + ], + [ + 77.487697933787601, + 12.931891710979601 + ], + [ + 77.487705065411404, + 12.9319142305756 + ], + [ + 77.487708351473103, + 12.9319256104971 + ], + [ + 77.4877229504485, + 12.9319761759323 + ], + [ + 77.487736803610204, + 12.9320183142652 + ], + [ + 77.487880254394, + 12.9324546623078 + ], + [ + 77.487899989625703, + 12.9325290131722 + ], + [ + 77.487913498191503, + 12.9325559894521 + ], + [ + 77.487926386331395, + 12.9325784541275 + ], + [ + 77.487936893516903, + 12.9325930358502 + ], + [ + 77.487950368503903, + 12.9326166243064 + ], + [ + 77.487969181057807, + 12.9326559731724 + ], + [ + 77.487987250031907, + 12.9326783884253 + ], + [ + 77.488031491833894, + 12.9327276591456 + ], + [ + 77.488075666475098, + 12.932770154214801 + ], + [ + 77.488103973536298, + 12.9327876244955 + ], + [ + 77.488108104253996, + 12.9327901736314 + ], + [ + 77.488141670938603, + 12.932807923513799 + ], + [ + 77.488171761350102, + 12.932823447792501 + ], + [ + 77.488219730421093, + 12.9328421896526 + ], + [ + 77.488257225873298, + 12.932849737618501 + ], + [ + 77.488286030630704, + 12.9328517215869 + ], + [ + 77.488311945954194, + 12.9328526037371 + ], + [ + 77.488351676810694, + 12.932853354083401 + ], + [ + 77.488380481567305, + 12.932855338041101 + ], + [ + 77.488400595625706, + 12.9328517580081 + ], + [ + 77.488418429490594, + 12.9328504584872 + ], + [ + 77.488793001019104, + 12.932771216237199 + ], + [ + 77.488917071925101, + 12.932742927246601 + ], + [ + 77.488944602164494, + 12.932732500130699 + ], + [ + 77.4892816665878, + 12.932644580100799 + ], + [ + 77.489385500099402, + 12.9326074490087 + ], + [ + 77.489507921400801, + 12.932571299667201 + ], + [ + 77.489903265084294, + 12.932454558377 + ], + [ + 77.490228434680503, + 12.932328351916 + ], + [ + 77.490294409755705, + 12.932305134477501 + ], + [ + 77.490327752347099, + 12.932300298633599 + ], + [ + 77.490363419929295, + 12.9322976993447 + ], + [ + 77.490404855166801, + 12.9322961743622 + ], + [ + 77.490455567963096, + 12.932301337063 + ], + [ + 77.490510467172697, + 12.932322271077799 + ], + [ + 77.490559722011199, + 12.9323545527558 + ], + [ + 77.490686329384403, + 12.932523879947601 + ], + [ + 77.490859593881595, + 12.9327537479043 + ], + [ + 77.490937728060501, + 12.932853516372701 + ], + [ + 77.490976834408102, + 12.9329073530416 + ], + [ + 77.4910509503718, + 12.9330082892116 + ], + [ + 77.491072529541896, + 12.933036317562401 + ], + [ + 77.491223075493807, + 12.9332392970634 + ], + [ + 77.491289054128302, + 12.9333324052095 + ], + [ + 77.4913576156993, + 12.9334537230965 + ], + [ + 77.491419802556905, + 12.933358594705901 + ], + [ + 77.491452790718597, + 12.933286334923199 + ], + [ + 77.491482637150597, + 12.933019287900001 + ], + [ + 77.4914575033131, + 12.9325605953662 + ], + [ + 77.491444936394402, + 12.9320626312113 + ], + [ + 77.492104699628101, + 12.931990371428499 + ], + [ + 77.492714195186693, + 12.931924395105201 + ], + [ + 77.492854002157699, + 12.9318725565654 + ], + [ + 77.493077064965306, + 12.931676198460099 + ], + [ + 77.493259285286896, + 12.931844280998201 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "271", + "group": "Bhoopasandra", + "Corporatio": "North", + "ac_no": "158", + "ac": "Hebbal", + "corporat_1": "2", + "ward_id": "37", + "ward_name": "37 - Bhoopasandra", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಹೆಬ್ಬಾಳ", + "ward_name_": "ಭೂಪಸಂದ್ರ", + "dig_ward_n": "Bhoopasandra", + "Assembly": "158 - Hebbal", + "Slno": "37" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.580950672781995, + 13.0257489587277 + ], + [ + 77.580839501982297, + 13.0258020139711 + ], + [ + 77.580657078994605, + 13.0259257955355 + ], + [ + 77.580638264109893, + 13.0259440508495 + ], + [ + 77.580633493623097, + 13.0259487294022 + ], + [ + 77.580610915419001, + 13.0259708699526 + ], + [ + 77.580467237750796, + 13.0261117624273 + ], + [ + 77.580378223395996, + 13.026215832760601 + ], + [ + 77.580373059716607, + 13.0262218703873 + ], + [ + 77.580286976719506, + 13.0263225136662 + ], + [ + 77.580267522756699, + 13.026345258200299 + ], + [ + 77.580256337502703, + 13.026357150465699 + ], + [ + 77.580234441820906, + 13.026380430663901 + ], + [ + 77.580221253375996, + 13.0263944533163 + ], + [ + 77.580161432214297, + 13.026453997692199 + ], + [ + 77.580129153577602, + 13.0264861247892 + ], + [ + 77.580104533611205, + 13.0265105838563 + ], + [ + 77.580085248471306, + 13.026539054657601 + ], + [ + 77.580071312508196, + 13.0265594585244 + ], + [ + 77.580058409446906, + 13.026578350585799 + ], + [ + 77.5800311002385, + 13.0266183332929 + ], + [ + 77.580011438841396, + 13.0266471193833 + ], + [ + 77.579874788325696, + 13.0268471911311 + ], + [ + 77.579840247973706, + 13.026904000149599 + ], + [ + 77.579761506005894, + 13.0270346764917 + ], + [ + 77.579761439157195, + 13.027034805446 + ], + [ + 77.579719092111105, + 13.027105092936299 + ], + [ + 77.579693107805298, + 13.0271749663302 + ], + [ + 77.579688370972093, + 13.0271877014242 + ], + [ + 77.579648732891201, + 13.027294288395201 + ], + [ + 77.5796294566439, + 13.0273461228388 + ], + [ + 77.579599252725004, + 13.027427342103399 + ], + [ + 77.579540363413599, + 13.0275856964117 + ], + [ + 77.579477403199306, + 13.027734261814601 + ], + [ + 77.579323587482094, + 13.028096409154299 + ], + [ + 77.579302177123495, + 13.028146819337501 + ], + [ + 77.579298699716205, + 13.028155005712 + ], + [ + 77.579258716819297, + 13.028249142169701 + ], + [ + 77.579202019654005, + 13.028356826818399 + ], + [ + 77.579186990290296, + 13.0283853725242 + ], + [ + 77.579142747814899, + 13.0284691193519 + ], + [ + 77.579070638776102, + 13.0286056155011 + ], + [ + 77.579068946378996, + 13.0286090202564 + ], + [ + 77.579050482763705, + 13.028643784208001 + ], + [ + 77.578970658640401, + 13.0287940750147 + ], + [ + 77.578943690756006, + 13.028834487928799 + ], + [ + 77.578855208047997, + 13.0289670833924 + ], + [ + 77.578842683153397, + 13.0289858533129 + ], + [ + 77.578799965635795, + 13.0290498673257 + ], + [ + 77.578790916098299, + 13.029065767645999 + ], + [ + 77.578726836592594, + 13.029152494535399 + ], + [ + 77.578683233348997, + 13.0292115077731 + ], + [ + 77.578617408180605, + 13.029300596457601 + ], + [ + 77.578525807171701, + 13.0294245706477 + ], + [ + 77.578521210126397, + 13.0294307923378 + ], + [ + 77.578485981251902, + 13.029478471633199 + ], + [ + 77.578452998642206, + 13.029523111069899 + ], + [ + 77.578443348932694, + 13.0295367587548 + ], + [ + 77.578408176831601, + 13.0295882328379 + ], + [ + 77.5783937948421, + 13.0296092807416 + ], + [ + 77.578386120502898, + 13.0296205110273 + ], + [ + 77.5782645991534, + 13.029798354393799 + ], + [ + 77.578236811772697, + 13.029839020261299 + ], + [ + 77.578228913247699, + 13.029850580725601 + ], + [ + 77.578175580241606, + 13.0299279041558 + ], + [ + 77.578153932517694, + 13.029950705680401 + ], + [ + 77.578076338770302, + 13.0300311823787 + ], + [ + 77.577919756278305, + 13.0301935779571 + ], + [ + 77.577865707934905, + 13.0302494381722 + ], + [ + 77.577865553857507, + 13.030249596904699 + ], + [ + 77.577803078007904, + 13.030314167054099 + ], + [ + 77.577746538929006, + 13.0303726015565 + ], + [ + 77.577722786544001, + 13.030414623052801 + ], + [ + 77.577716450982294, + 13.030425942092499 + ], + [ + 77.577714018264103, + 13.0304302883711 + ], + [ + 77.577625532016697, + 13.030588374271799 + ], + [ + 77.577621883572604, + 13.0305954447826 + ], + [ + 77.577615225309202, + 13.030608347153199 + ], + [ + 77.577578673120101, + 13.0306791848363 + ], + [ + 77.577554967434196, + 13.030725722169301 + ], + [ + 77.577515839803496, + 13.0308401711456 + ], + [ + 77.577504543778602, + 13.0308736142568 + ], + [ + 77.577495292398396, + 13.030901004736 + ], + [ + 77.577487901498998, + 13.0309228882884 + ], + [ + 77.577458978212505, + 13.0309660896362 + ], + [ + 77.577337983465, + 13.031148012007 + ], + [ + 77.577332878965507, + 13.0311556878576 + ], + [ + 77.577320859874206, + 13.0311737597677 + ], + [ + 77.577297931309502, + 13.031208233824801 + ], + [ + 77.577261815126704, + 13.0312622793875 + ], + [ + 77.5771368724307, + 13.0314492487809 + ], + [ + 77.577102389389495, + 13.031511703585499 + ], + [ + 77.577097971696702, + 13.0315195026953 + ], + [ + 77.577076745571404, + 13.0315569736862 + ], + [ + 77.577017509286406, + 13.031661543937499 + ], + [ + 77.576937903723106, + 13.031802071508301 + ], + [ + 77.576919462825899, + 13.0318346253488 + ], + [ + 77.576892228140395, + 13.0318827038127 + ], + [ + 77.576877861987697, + 13.031908064552301 + ], + [ + 77.576824509734095, + 13.0320034568888 + ], + [ + 77.576824142431207, + 13.032004113732601 + ], + [ + 77.576804831831893, + 13.0320386412111 + ], + [ + 77.576785131302799, + 13.0320738655093 + ], + [ + 77.576777742649796, + 13.032086893490201 + ], + [ + 77.576669188576005, + 13.0322782937209 + ], + [ + 77.576630766840594, + 13.0323481995334 + ], + [ + 77.576349409388598, + 13.0329179889385 + ], + [ + 77.576273039061903, + 13.0330383060572 + ], + [ + 77.576127089186102, + 13.033331930968901 + ], + [ + 77.575857787759603, + 13.0338252628241 + ], + [ + 77.575835690115497, + 13.033870261802001 + ], + [ + 77.5758109745138, + 13.033920590032899 + ], + [ + 77.575735484105394, + 13.034072456295201 + ], + [ + 77.575732556800503, + 13.0340783442432 + ], + [ + 77.575714701711405, + 13.034127377351 + ], + [ + 77.575661772545899, + 13.034272728507601 + ], + [ + 77.575613279348801, + 13.0344058986813 + ], + [ + 77.575611543932496, + 13.034410674379201 + ], + [ + 77.575601346425103, + 13.034438733769599 + ], + [ + 77.575495850082703, + 13.0346560583317 + ], + [ + 77.575468737786096, + 13.034713520491801 + ], + [ + 77.575266429542097, + 13.035227460319501 + ], + [ + 77.575545574024801, + 13.0352510965393 + ], + [ + 77.575924927578299, + 13.035311024252699 + ], + [ + 77.575949336708803, + 13.0356790080646 + ], + [ + 77.577386796475693, + 13.035692614435201 + ], + [ + 77.578599939430902, + 13.035742348284099 + ], + [ + 77.578932187923996, + 13.035736276560799 + ], + [ + 77.578932191089194, + 13.0357362912358 + ], + [ + 77.578938311722993, + 13.035896135128199 + ], + [ + 77.578958221011803, + 13.036265657382 + ], + [ + 77.578998490177796, + 13.0365078462273 + ], + [ + 77.579007638841105, + 13.0369319139628 + ], + [ + 77.578516353791301, + 13.036947295232901 + ], + [ + 77.578501227959705, + 13.0369977468001 + ], + [ + 77.578658205024595, + 13.037621404335001 + ], + [ + 77.579012847258298, + 13.0386958889873 + ], + [ + 77.578794353507703, + 13.038714379658501 + ], + [ + 77.578402830323199, + 13.038780427813 + ], + [ + 77.578446851809701, + 13.038899623889099 + ], + [ + 77.578527193079495, + 13.039082936516399 + ], + [ + 77.578356076324098, + 13.039162875588501 + ], + [ + 77.5779093152766, + 13.0391615625167 + ], + [ + 77.577448925729897, + 13.0391698069998 + ], + [ + 77.577132086465099, + 13.039179176609499 + ], + [ + 77.577129841390601, + 13.0388094189902 + ], + [ + 77.576755831194404, + 13.038806927681099 + ], + [ + 77.576410213517605, + 13.038791723639701 + ], + [ + 77.576408439966897, + 13.0388500049743 + ], + [ + 77.5764157486268, + 13.0393933724162 + ], + [ + 77.576384576728302, + 13.0396200543295 + ], + [ + 77.576353761942798, + 13.0398441391975 + ], + [ + 77.576173029724103, + 13.039836615955901 + ], + [ + 77.576133718063005, + 13.0402487373002 + ], + [ + 77.576125163988294, + 13.040417398712901 + ], + [ + 77.576157992685296, + 13.0407565550241 + ], + [ + 77.576262275407103, + 13.040981588946 + ], + [ + 77.576623863066203, + 13.0418247456385 + ], + [ + 77.576892488711806, + 13.0423916046859 + ], + [ + 77.577000153899306, + 13.0426698803979 + ], + [ + 77.576411392222695, + 13.0425780739207 + ], + [ + 77.575886265561607, + 13.0425211537073 + ], + [ + 77.574782371436001, + 13.0424339882012 + ], + [ + 77.574771093267103, + 13.042523876480301 + ], + [ + 77.574778587928805, + 13.0425530183637 + ], + [ + 77.574839000480907, + 13.0427879304698 + ], + [ + 77.574842810259995, + 13.0428027469758 + ], + [ + 77.574981956794701, + 13.043187368544601 + ], + [ + 77.575053309288094, + 13.043344358973901 + ], + [ + 77.575176550137996, + 13.043308951137 + ], + [ + 77.575415028541997, + 13.0432304464659 + ], + [ + 77.575472261094703, + 13.043477691791001 + ], + [ + 77.5755379434041, + 13.0438522562643 + ], + [ + 77.575139090983498, + 13.043976637694801 + ], + [ + 77.574454486471694, + 13.044246210463699 + ], + [ + 77.574488230739306, + 13.044312800785001 + ], + [ + 77.574543135234705, + 13.044377466079499 + ], + [ + 77.574672676299301, + 13.044587986840099 + ], + [ + 77.574723526968299, + 13.0447074987467 + ], + [ + 77.574814543731094, + 13.044921406503899 + ], + [ + 77.574821535103098, + 13.0449372583073 + ], + [ + 77.574954356915995, + 13.045238381210901 + ], + [ + 77.574989095832294, + 13.0453171382359 + ], + [ + 77.575101333506893, + 13.0455374965871 + ], + [ + 77.575122362615303, + 13.045578781511001 + ], + [ + 77.575226310061097, + 13.0458714055536 + ], + [ + 77.575240293941107, + 13.045910770301001 + ], + [ + 77.575269929404698, + 13.045994196451399 + ], + [ + 77.575412209962295, + 13.046391700683101 + ], + [ + 77.575436506719996, + 13.046459580193799 + ], + [ + 77.575465536474297, + 13.046521964822499 + ], + [ + 77.575473147785402, + 13.046538319058 + ], + [ + 77.575602893040895, + 13.046817127995499 + ], + [ + 77.575769070468994, + 13.0470164812967 + ], + [ + 77.575795559790706, + 13.047048259036499 + ], + [ + 77.575837490729796, + 13.0470985607875 + ], + [ + 77.575837646952493, + 13.0471377487551 + ], + [ + 77.575837718989803, + 13.0471558223058 + ], + [ + 77.575838816952995, + 13.047431626905 + ], + [ + 77.575838980208403, + 13.047431641541399 + ], + [ + 77.575957732899894, + 13.0474422498833 + ], + [ + 77.575966163127404, + 13.047443003427899 + ], + [ + 77.575973284547501, + 13.0474436399094 + ], + [ + 77.576259799598802, + 13.0474692351711 + ], + [ + 77.5768238784337, + 13.047526302224499 + ], + [ + 77.576997129721804, + 13.0475438296235 + ], + [ + 77.577347145941999, + 13.0475792393388 + ], + [ + 77.577994517000107, + 13.047637158783299 + ], + [ + 77.578240002166794, + 13.0476505224277 + ], + [ + 77.5783156695543, + 13.0476471645426 + ], + [ + 77.578325928380906, + 13.0476467090469 + ], + [ + 77.578362545340994, + 13.047645083780401 + ], + [ + 77.578469693806994, + 13.0476403279413 + ], + [ + 77.578852508733505, + 13.0475676245694 + ], + [ + 77.579118124328403, + 13.0474776445408 + ], + [ + 77.579302457058503, + 13.047415200295699 + ], + [ + 77.579554022433399, + 13.047292986095799 + ], + [ + 77.579589837155396, + 13.047267600966901 + ], + [ + 77.579991963736504, + 13.046982578558801 + ], + [ + 77.580011180051699, + 13.0469678017822 + ], + [ + 77.580435236477797, + 13.0466417093219 + ], + [ + 77.580771164115006, + 13.0463833861486 + ], + [ + 77.580813613484693, + 13.0463507433324 + ], + [ + 77.580849127817999, + 13.046323433131301 + ], + [ + 77.580851137211496, + 13.046321888983799 + ], + [ + 77.580851793592501, + 13.0463213837374 + ], + [ + 77.581132786931093, + 13.046105301956 + ], + [ + 77.5813221072505, + 13.0459597165909 + ], + [ + 77.581547764549001, + 13.045764289013 + ], + [ + 77.582025095218597, + 13.0453509031503 + ], + [ + 77.582160371889202, + 13.045233748543 + ], + [ + 77.582174301035906, + 13.0452216868502 + ], + [ + 77.582369981551096, + 13.045042433168501 + ], + [ + 77.582804329558499, + 13.0447749713053 + ], + [ + 77.583122259196799, + 13.0445660566182 + ], + [ + 77.583148112567699, + 13.0445490677461 + ], + [ + 77.583171717720404, + 13.0445335161009 + ], + [ + 77.583743313343604, + 13.0441569252175 + ], + [ + 77.583922609099602, + 13.044038797352099 + ], + [ + 77.583960814664493, + 13.044014266942099 + ], + [ + 77.584340771868597, + 13.0437703116134 + ], + [ + 77.584794493640302, + 13.0434789926418 + ], + [ + 77.585048790129903, + 13.043343195403599 + ], + [ + 77.585219609587696, + 13.0432658260428 + ], + [ + 77.585497198096505, + 13.0431546402401 + ], + [ + 77.585540255001803, + 13.043140494056599 + ], + [ + 77.5856779946252, + 13.043095239661 + ], + [ + 77.585882835419, + 13.043054503097199 + ], + [ + 77.586039906506898, + 13.043023266395901 + ], + [ + 77.586419394658606, + 13.0429477977613 + ], + [ + 77.586475755911394, + 13.0429365187694 + ], + [ + 77.586964446643407, + 13.0428387244097 + ], + [ + 77.587429178827307, + 13.042745722966799 + ], + [ + 77.5875362894094, + 13.0427275119941 + ], + [ + 77.588403056830401, + 13.0425801410417 + ], + [ + 77.588525141786505, + 13.042578919861199 + ], + [ + 77.588559112625404, + 13.042578580050501 + ], + [ + 77.588958403394301, + 13.042651377511699 + ], + [ + 77.589426543737204, + 13.0427846731458 + ], + [ + 77.589468977622204, + 13.042796755662399 + ], + [ + 77.5897417488695, + 13.042874374783899 + ], + [ + 77.590144590749503, + 13.042989073679299 + ], + [ + 77.590483339574803, + 13.0430855274472 + ], + [ + 77.590572292152402, + 13.0431106577342 + ], + [ + 77.590466862466997, + 13.042941190180899 + ], + [ + 77.590343647672398, + 13.0426323481525 + ], + [ + 77.590264029337902, + 13.0424327807702 + ], + [ + 77.590138961360495, + 13.0420365219011 + ], + [ + 77.590115633059, + 13.041953187792201 + ], + [ + 77.590024059372794, + 13.041620963186199 + ], + [ + 77.590020439670297, + 13.0416051893252 + ], + [ + 77.589985488571102, + 13.041613583287299 + ], + [ + 77.589902672128403, + 13.0416334709294 + ], + [ + 77.589875037322301, + 13.0415164393367 + ], + [ + 77.589873168189897, + 13.041508522280701 + ], + [ + 77.589871886133594, + 13.0415030937298 + ], + [ + 77.589802371210794, + 13.041208694506601 + ], + [ + 77.589800251480995, + 13.041199718422099 + ], + [ + 77.589805199645596, + 13.041199446661601 + ], + [ + 77.589800919197202, + 13.0411966762031 + ], + [ + 77.589798869924493, + 13.041177207837601 + ], + [ + 77.589781940780099, + 13.0410163636704 + ], + [ + 77.589766148867696, + 13.0408663294465 + ], + [ + 77.5897391799882, + 13.040610096389599 + ], + [ + 77.589693060240805, + 13.0401719100274 + ], + [ + 77.589695512109799, + 13.0401673836838 + ], + [ + 77.589644757970603, + 13.0399274326462 + ], + [ + 77.589618950431102, + 13.039771848509501 + ], + [ + 77.589568592970593, + 13.0394708312567 + ], + [ + 77.589507811723095, + 13.039053601119299 + ], + [ + 77.589492322665194, + 13.0389487318678 + ], + [ + 77.589448145430396, + 13.038779866657899 + ], + [ + 77.589424549289106, + 13.0386896725685 + ], + [ + 77.589408390411407, + 13.0386311109984 + ], + [ + 77.589394687744601, + 13.0385318703194 + ], + [ + 77.589389082113499, + 13.038491271858801 + ], + [ + 77.589351793570401, + 13.038228519666299 + ], + [ + 77.589307642136205, + 13.0379150179229 + ], + [ + 77.589289979674604, + 13.0376012511953 + ], + [ + 77.589289333335302, + 13.037594481903399 + ], + [ + 77.5892412469492, + 13.0367367002868 + ], + [ + 77.589234924797907, + 13.036627222104901 + ], + [ + 77.589213097022196, + 13.036496789350601 + ], + [ + 77.589169832689393, + 13.0362382670312 + ], + [ + 77.589025181116895, + 13.035841073164001 + ], + [ + 77.588869871388496, + 13.0354157533649 + ], + [ + 77.588804661712601, + 13.035236847755399 + ], + [ + 77.588748077970905, + 13.0350567265717 + ], + [ + 77.588459743469997, + 13.0341335884846 + ], + [ + 77.588438156208497, + 13.034051365841499 + ], + [ + 77.588322981421001, + 13.033608704681001 + ], + [ + 77.5882432019622, + 13.033302334174 + ], + [ + 77.588119024342305, + 13.033046096284099 + ], + [ + 77.587589413043901, + 13.031958231877599 + ], + [ + 77.587566357089798, + 13.0319008682219 + ], + [ + 77.587099025161905, + 13.030743697722 + ], + [ + 77.5870621492775, + 13.0306523880908 + ], + [ + 77.587056837764294, + 13.0306400189003 + ], + [ + 77.586865213690103, + 13.0301824018954 + ], + [ + 77.586783090143697, + 13.029986281129 + ], + [ + 77.586736264793601, + 13.0298744570668 + ], + [ + 77.586714252408996, + 13.0298218882144 + ], + [ + 77.586580273564195, + 13.029501931686999 + ], + [ + 77.586569419689198, + 13.0294759813537 + ], + [ + 77.586552439181006, + 13.029435381543999 + ], + [ + 77.586542004823201, + 13.029410432543999 + ], + [ + 77.586476466805607, + 13.0292537327425 + ], + [ + 77.586459899243707, + 13.0292141198672 + ], + [ + 77.586446727601995, + 13.029182627498599 + ], + [ + 77.586375891774296, + 13.0290132592572 + ], + [ + 77.586361008968098, + 13.028977674232801 + ], + [ + 77.586353039851303, + 13.028958619919299 + ], + [ + 77.586293741149404, + 13.028816837610201 + ], + [ + 77.586289656436804, + 13.0288070706856 + ], + [ + 77.586274683892498, + 13.028771270626001 + ], + [ + 77.586257369961501, + 13.028729873662201 + ], + [ + 77.586228129803601, + 13.0286599613431 + ], + [ + 77.586217843866706, + 13.0286353667894 + ], + [ + 77.586208226924697, + 13.0286123736731 + ], + [ + 77.586204058346496, + 13.0286024268958 + ], + [ + 77.586198843864096, + 13.028589986234 + ], + [ + 77.586184772595402, + 13.0285564140751 + ], + [ + 77.586182042995702, + 13.0285499013485 + ], + [ + 77.586174417299802, + 13.0285317054741 + ], + [ + 77.586162853602204, + 13.028504116132201 + ], + [ + 77.586162554095694, + 13.0285034017936 + ], + [ + 77.586161944676107, + 13.028501947020599 + ], + [ + 77.586161783124894, + 13.028501562865999 + ], + [ + 77.586131153811394, + 13.02842848249 + ], + [ + 77.586118068011302, + 13.0283972611658 + ], + [ + 77.5861119644496, + 13.028382698169301 + ], + [ + 77.586105098417207, + 13.028366316035299 + ], + [ + 77.586085746576003, + 13.028320145758499 + ], + [ + 77.586082600315606, + 13.0283126388918 + ], + [ + 77.586062746769798, + 13.0282652702424 + ], + [ + 77.586051740534003, + 13.028239009701601 + ], + [ + 77.586026721995495, + 13.0281752672241 + ], + [ + 77.585983766300799, + 13.028065822762301 + ], + [ + 77.585980021192597, + 13.0280562810073 + ], + [ + 77.585968517068196, + 13.028026970006101 + ], + [ + 77.585965358767396, + 13.0280189239049 + ], + [ + 77.585932554753896, + 13.027935342861401 + ], + [ + 77.585929884818, + 13.0279285404341 + ], + [ + 77.585938411847806, + 13.027926083791201 + ], + [ + 77.585938291782796, + 13.0279257904693 + ], + [ + 77.585929088971497, + 13.027914012078099 + ], + [ + 77.585920852490503, + 13.0278833105875 + ], + [ + 77.585907700765304, + 13.027834286771 + ], + [ + 77.585703318246601, + 13.027072419320101 + ], + [ + 77.585650144371897, + 13.0268742047035 + ], + [ + 77.585361965940805, + 13.025799965636001 + ], + [ + 77.585272634640106, + 13.0254536307711 + ], + [ + 77.585134498707205, + 13.0249180816496 + ], + [ + 77.585105571139593, + 13.0248059275124 + ], + [ + 77.584903863653196, + 13.024023904935399 + ], + [ + 77.584730175822997, + 13.023350511002899 + ], + [ + 77.584724264757497, + 13.0233175903708 + ], + [ + 77.584715724058199, + 13.023285867773501 + ], + [ + 77.584658064740196, + 13.023061346820199 + ], + [ + 77.584655084914402, + 13.022912351526699 + ], + [ + 77.584642748084903, + 13.0229220040382 + ], + [ + 77.584579252830494, + 13.0229713488717 + ], + [ + 77.584497227912493, + 13.023035577699201 + ], + [ + 77.584291958104998, + 13.023196192737799 + ], + [ + 77.583948914081404, + 13.0234646110888 + ], + [ + 77.583685273134904, + 13.0236708984446 + ], + [ + 77.583358390679706, + 13.0239743901063 + ], + [ + 77.583336060895107, + 13.023995121692 + ], + [ + 77.582737295916004, + 13.0245510383136 + ], + [ + 77.582616539446505, + 13.024628137175601 + ], + [ + 77.582609721980802, + 13.024632490139799 + ], + [ + 77.582576535362193, + 13.0246531483025 + ], + [ + 77.582349328351697, + 13.024789799431399 + ], + [ + 77.582320942038294, + 13.024801199161599 + ], + [ + 77.582166367610299, + 13.0248632290761 + ], + [ + 77.582144593379098, + 13.0248719736399 + ], + [ + 77.582006192199898, + 13.0249117137942 + ], + [ + 77.581847269943296, + 13.024957488540601 + ], + [ + 77.581702392091501, + 13.025016222975999 + ], + [ + 77.581432097433293, + 13.0251365536362 + ], + [ + 77.581279147892801, + 13.0252148698673 + ], + [ + 77.581155261052402, + 13.0253188704009 + ], + [ + 77.581131560564998, + 13.0253558924129 + ], + [ + 77.581096346116695, + 13.025412069881099 + ], + [ + 77.581089044581404, + 13.025438169772 + ], + [ + 77.581082486544403, + 13.025461027581001 + ], + [ + 77.581056892443598, + 13.0255512848872 + ], + [ + 77.581022044761994, + 13.0256742505579 + ], + [ + 77.5810157779745, + 13.0256963623494 + ], + [ + 77.581000965064902, + 13.0257083296222 + ], + [ + 77.580950672781995, + 13.0257489587277 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "272", + "group": "Rahamath nagara", + "Corporatio": "North", + "ac_no": "158", + "ac": "Hebbal", + "corporat_1": "2", + "ward_id": "47", + "ward_name": "47 - Bal Gangadhar Ward", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಹೆಬ್ಬಾಳ", + "ward_name_": "ಬಾಲ ಗಂಗಾಧರ ವಾರ್ಡ್", + "dig_ward_n": "Rahamath nagara", + "Assembly": "158 - Hebbal", + "Slno": "47" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.592711291338503, + 13.0153504690742 + ], + [ + 77.592670499821097, + 13.0152020688612 + ], + [ + 77.592632308243196, + 13.015063128684501 + ], + [ + 77.592315312532307, + 13.0152915389461 + ], + [ + 77.592007756154501, + 13.015428526705501 + ], + [ + 77.591921562873296, + 13.015480014087499 + ], + [ + 77.591918447748398, + 13.015481874681999 + ], + [ + 77.591897956797993, + 13.0154941150687 + ], + [ + 77.591885668372399, + 13.0154998527528 + ], + [ + 77.591839113831995, + 13.015607639698199 + ], + [ + 77.591772897844706, + 13.0156083016191 + ], + [ + 77.591730898271095, + 13.015603760698999 + ], + [ + 77.591682422534603, + 13.0155985192985 + ], + [ + 77.591658174513796, + 13.0155958968893 + ], + [ + 77.591634117495204, + 13.015596137357599 + ], + [ + 77.591590231146299, + 13.0155965760295 + ], + [ + 77.591537340521796, + 13.0156050097426 + ], + [ + 77.5915167411721, + 13.0156176387608 + ], + [ + 77.591405794587303, + 13.015748768908001 + ], + [ + 77.591406228914593, + 13.015790548393699 + ], + [ + 77.5914148132766, + 13.015833358546701 + ], + [ + 77.591415946345805, + 13.0158390108499 + ], + [ + 77.5914223686908, + 13.015902511376201 + ], + [ + 77.591426215506203, + 13.015940544542 + ], + [ + 77.591417525235101, + 13.016129900308901 + ], + [ + 77.591418712037097, + 13.0161332763243 + ], + [ + 77.591445499117398, + 13.016271286424301 + ], + [ + 77.591464344540697, + 13.016334636569599 + ], + [ + 77.591470661022896, + 13.0163558682758 + ], + [ + 77.591476736931995, + 13.016376292909399 + ], + [ + 77.5914913042119, + 13.016425260681901 + ], + [ + 77.591576253164007, + 13.0166552929415 + ], + [ + 77.591612885792799, + 13.0168258319258 + ], + [ + 77.591680651097604, + 13.0170158835018 + ], + [ + 77.5917126330868, + 13.017123141967801 + ], + [ + 77.591771640839397, + 13.0173121014017 + ], + [ + 77.591838659041002, + 13.0175368624862 + ], + [ + 77.591925248863603, + 13.017851054982501 + ], + [ + 77.591926634191495, + 13.0178557109799 + ], + [ + 77.591981215431801, + 13.0180392109317 + ], + [ + 77.592042802728102, + 13.018246261071001 + ], + [ + 77.592089359074194, + 13.018403896405101 + ], + [ + 77.592098581482205, + 13.018434674508301 + ], + [ + 77.592139678636499, + 13.018571832076599 + ], + [ + 77.592187195831201, + 13.018730412689001 + ], + [ + 77.592305609102993, + 13.019138554177401 + ], + [ + 77.592307606654103, + 13.0191645079083 + ], + [ + 77.592317688391603, + 13.0193033099535 + ], + [ + 77.592321650752396, + 13.0193642032885 + ], + [ + 77.592321800967298, + 13.0193665091548 + ], + [ + 77.592330913191105, + 13.0194916456215 + ], + [ + 77.592339054621604, + 13.0196034381473 + ], + [ + 77.592352583110696, + 13.0198681410206 + ], + [ + 77.592355046891399, + 13.0199019761538 + ], + [ + 77.592369636864703, + 13.0200139228062 + ], + [ + 77.592383588946603, + 13.020120967482001 + ], + [ + 77.592398605507398, + 13.0202361857088 + ], + [ + 77.592409531697996, + 13.020320014403 + ], + [ + 77.592418254085999, + 13.0203869393173 + ], + [ + 77.592437009547695, + 13.0205320806907 + ], + [ + 77.592448281725197, + 13.0206193154732 + ], + [ + 77.592461518889294, + 13.020721750736501 + ], + [ + 77.592464599241893, + 13.0207455904353 + ], + [ + 77.592485306404299, + 13.020916772429 + ], + [ + 77.592501459256297, + 13.021039258221499 + ], + [ + 77.592502970683, + 13.021050716703 + ], + [ + 77.592521208209007, + 13.0214305859792 + ], + [ + 77.592522379850806, + 13.0214549922476 + ], + [ + 77.5925301742529, + 13.021617348828901 + ], + [ + 77.592533156914499, + 13.0216812079695 + ], + [ + 77.592534038865196, + 13.021700087221401 + ], + [ + 77.592512022616901, + 13.021920688078 + ], + [ + 77.592517827499606, + 13.0220358177194 + ], + [ + 77.592522169991199, + 13.022124455263601 + ], + [ + 77.592524149457603, + 13.0221648649924 + ], + [ + 77.592525107516096, + 13.0221844165397 + ], + [ + 77.592552553378098, + 13.022313364136201 + ], + [ + 77.592562258276899, + 13.0225079803435 + ], + [ + 77.592562741409694, + 13.022517663021899 + ], + [ + 77.5925824625009, + 13.022675072784899 + ], + [ + 77.592595043855297, + 13.0227617370074 + ], + [ + 77.592687420485703, + 13.0233203542795 + ], + [ + 77.592700422834099, + 13.0234099215158 + ], + [ + 77.592711603716396, + 13.023482677827401 + ], + [ + 77.592712810465002, + 13.023490531039499 + ], + [ + 77.592750451882097, + 13.0237354815887 + ], + [ + 77.592788422531399, + 13.023982573570599 + ], + [ + 77.592871632378802, + 13.0243486018539 + ], + [ + 77.592885969236605, + 13.0244419004281 + ], + [ + 77.592913429289695, + 13.024620596545599 + ], + [ + 77.592936787829004, + 13.024747245923299 + ], + [ + 77.592974243452204, + 13.024922101776101 + ], + [ + 77.592998715191001, + 13.0249838722773 + ], + [ + 77.592999211029806, + 13.0249876021053 + ], + [ + 77.593217608911402, + 13.0249699106568 + ], + [ + 77.593493330023605, + 13.0249594451302 + ], + [ + 77.593497360707701, + 13.0249594047846 + ], + [ + 77.593577895163605, + 13.024949130684901 + ], + [ + 77.593614903594499, + 13.024944409302 + ], + [ + 77.593680160405597, + 13.024936084124599 + ], + [ + 77.593735714913095, + 13.0249289970912 + ], + [ + 77.593771053226902, + 13.0249244893539 + ], + [ + 77.593835739510695, + 13.0249162367043 + ], + [ + 77.593852777425099, + 13.024914063230501 + ], + [ + 77.594186246943707, + 13.024853388372399 + ], + [ + 77.594245988434494, + 13.0248425182034 + ], + [ + 77.594327181704301, + 13.02482774452 + ], + [ + 77.594346659000706, + 13.024824200477299 + ], + [ + 77.594391348540896, + 13.024816069320201 + ], + [ + 77.594417118469806, + 13.024811416994201 + ], + [ + 77.594693710342398, + 13.024761482774499 + ], + [ + 77.594695987429205, + 13.0247610714961 + ], + [ + 77.594721315861904, + 13.024754548942701 + ], + [ + 77.594750304392207, + 13.0247470844955 + ], + [ + 77.594778116680104, + 13.0247399218261 + ], + [ + 77.594830094302793, + 13.0250709971177 + ], + [ + 77.594877444975396, + 13.0253138919458 + ], + [ + 77.594886975634594, + 13.025362777829899 + ], + [ + 77.594907563376097, + 13.0254683878349 + ], + [ + 77.594940030874497, + 13.025634596660201 + ], + [ + 77.594947259652102, + 13.025671605595001 + ], + [ + 77.594960887894501, + 13.025741372090801 + ], + [ + 77.595012802232901, + 13.026007133951 + ], + [ + 77.595016127964598, + 13.0260240643673 + ], + [ + 77.595035612278707, + 13.0261232421195 + ], + [ + 77.595046137227897, + 13.026176815867 + ], + [ + 77.595055979136902, + 13.026226912824299 + ], + [ + 77.595063741187502, + 13.026267344928099 + ], + [ + 77.595080817399904, + 13.0263563009773 + ], + [ + 77.595098602948298, + 13.026448955791899 + ], + [ + 77.5951241856324, + 13.026579657290499 + ], + [ + 77.595243977546403, + 13.0271917008423 + ], + [ + 77.595264049307801, + 13.0272946155672 + ], + [ + 77.595293577762604, + 13.027446013028699 + ], + [ + 77.595310823740107, + 13.0275344370125 + ], + [ + 77.595315454284304, + 13.0275581797644 + ], + [ + 77.595328607085406, + 13.027625618300601 + ], + [ + 77.595384870643997, + 13.027914096475101 + ], + [ + 77.595435749440497, + 13.0281749664135 + ], + [ + 77.595483334420706, + 13.028413032566901 + ], + [ + 77.595520666286504, + 13.0284070355554 + ], + [ + 77.595557714837696, + 13.0284010847424 + ], + [ + 77.595840636634506, + 13.028349220361701 + ], + [ + 77.595844076279505, + 13.028368139865099 + ], + [ + 77.5958443860941, + 13.0283698406304 + ], + [ + 77.595851060093807, + 13.028406547888901 + ], + [ + 77.595899810143294, + 13.028674660979201 + ], + [ + 77.595929704519605, + 13.0288381117727 + ], + [ + 77.595980420988695, + 13.029115404734901 + ], + [ + 77.595993663938302, + 13.0291152720115 + ], + [ + 77.596046806975707, + 13.0296092103103 + ], + [ + 77.596074807235993, + 13.029874165160599 + ], + [ + 77.596075997945803, + 13.0298852356054 + ], + [ + 77.596093604780506, + 13.0298853717168 + ], + [ + 77.5963288417082, + 13.0298693438078 + ], + [ + 77.596332828974198, + 13.0298693743068 + ], + [ + 77.596436053161099, + 13.0298752426816 + ], + [ + 77.596466429912994, + 13.0298754748063 + ], + [ + 77.596479710579601, + 13.0299991496018 + ], + [ + 77.596476610783895, + 13.0301094129477 + ], + [ + 77.596477299384702, + 13.0301112978271 + ], + [ + 77.5964775441021, + 13.0301119684292 + ], + [ + 77.596479675321902, + 13.030117799483801 + ], + [ + 77.596481870116307, + 13.0301238069733 + ], + [ + 77.596482295387602, + 13.030123766572901 + ], + [ + 77.5964921394756, + 13.030130591657301 + ], + [ + 77.596494949748106, + 13.030130323172299 + ], + [ + 77.596513584334105, + 13.030133620752601 + ], + [ + 77.596511372498298, + 13.030163708173101 + ], + [ + 77.596510728324006, + 13.030172445378399 + ], + [ + 77.596509979158697, + 13.0301826011179 + ], + [ + 77.596505603999503, + 13.030241949737601 + ], + [ + 77.596504907372207, + 13.0302514002751 + ], + [ + 77.596494000041005, + 13.030399345099299 + ], + [ + 77.596493208949596, + 13.030410074937199 + ], + [ + 77.596487012521607, + 13.0304919010853 + ], + [ + 77.596491289448394, + 13.030621413381001 + ], + [ + 77.596486654728096, + 13.030877939810701 + ], + [ + 77.596478005810098, + 13.030992132435699 + ], + [ + 77.5964746091162, + 13.0310369820363 + ], + [ + 77.596467624543806, + 13.0311292001103 + ], + [ + 77.596479598667202, + 13.0311900474494 + ], + [ + 77.596481118798295, + 13.031190027692 + ], + [ + 77.596479304655006, + 13.031195340882901 + ], + [ + 77.596458314211802, + 13.0314701087018 + ], + [ + 77.596458320393694, + 13.031470348048799 + ], + [ + 77.596458329303701, + 13.0314706722908 + ], + [ + 77.596458347651307, + 13.0314713713617 + ], + [ + 77.596458352318393, + 13.0314715538077 + ], + [ + 77.596458364286306, + 13.031471994561601 + ], + [ + 77.596458425048297, + 13.031472077971401 + ], + [ + 77.596458400450103, + 13.031473165044201 + ], + [ + 77.596458295293701, + 13.0314777482953 + ], + [ + 77.596458223969194, + 13.0314808929466 + ], + [ + 77.596458346751206, + 13.031523677255 + ], + [ + 77.596477451919498, + 13.0318518714086 + ], + [ + 77.596426778056397, + 13.032095239812501 + ], + [ + 77.596493190397794, + 13.032477050997301 + ], + [ + 77.597066290276899, + 13.035771781416599 + ], + [ + 77.597879732093205, + 13.0356139342134 + ], + [ + 77.597895225827202, + 13.035610830858101 + ], + [ + 77.598240751337897, + 13.035516119951099 + ], + [ + 77.598350993217096, + 13.0354845228842 + ], + [ + 77.598473820884706, + 13.0354448944613 + ], + [ + 77.598726669037603, + 13.0353926681129 + ], + [ + 77.598826663663104, + 13.035372466570101 + ], + [ + 77.598860817321494, + 13.0353575570388 + ], + [ + 77.598906859826997, + 13.035340371410999 + ], + [ + 77.599082758289995, + 13.035309244281599 + ], + [ + 77.599091712816303, + 13.035298775006501 + ], + [ + 77.599220071196697, + 13.0352763173091 + ], + [ + 77.5994386355583, + 13.0352472358417 + ], + [ + 77.599444382095797, + 13.035246048862099 + ], + [ + 77.599847787803398, + 13.035181405100101 + ], + [ + 77.599879779070207, + 13.0351760409264 + ], + [ + 77.599886101434706, + 13.0351748481554 + ], + [ + 77.600107094975698, + 13.0351501228609 + ], + [ + 77.600115144834902, + 13.0351489127363 + ], + [ + 77.6001801195372, + 13.0351392259478 + ], + [ + 77.600457342994403, + 13.035086551271799 + ], + [ + 77.600488966575298, + 13.0350817165147 + ], + [ + 77.600639339067598, + 13.0350327762283 + ], + [ + 77.600757361027505, + 13.0350293321719 + ], + [ + 77.600774635986099, + 13.0350291586466 + ], + [ + 77.600900238141605, + 13.0350346726516 + ], + [ + 77.601067899616297, + 13.035042022633601 + ], + [ + 77.601138762332894, + 13.0350446985814 + ], + [ + 77.601385761209102, + 13.035094164051999 + ], + [ + 77.601556080083597, + 13.0351353654994 + ], + [ + 77.601835233608099, + 13.0351662529267 + ], + [ + 77.601932941107606, + 13.035160458480499 + ], + [ + 77.602137775436702, + 13.0351343826863 + ], + [ + 77.602178600449705, + 13.035128325967101 + ], + [ + 77.602212223482795, + 13.0351174815024 + ], + [ + 77.602540740684901, + 13.0350937564959 + ], + [ + 77.602873579090399, + 13.035024379673301 + ], + [ + 77.602896001072196, + 13.035020766417 + ], + [ + 77.603147832876303, + 13.0349594756534 + ], + [ + 77.603163356685499, + 13.0349570610119 + ], + [ + 77.603215122395696, + 13.034950894139 + ], + [ + 77.603285591415897, + 13.034949545389299 + ], + [ + 77.603390606348, + 13.034932384514599 + ], + [ + 77.603414179966407, + 13.034928759636299 + ], + [ + 77.603446978682499, + 13.034926171277499 + ], + [ + 77.603644917535505, + 13.0349142186371 + ], + [ + 77.6037438776671, + 13.0349053185099 + ], + [ + 77.603899221893201, + 13.034891334176701 + ], + [ + 77.603985525538207, + 13.0348836905262 + ], + [ + 77.604026771578603, + 13.034886785606499 + ], + [ + 77.604091793125093, + 13.034881614525499 + ], + [ + 77.604301265292804, + 13.034867085550699 + ], + [ + 77.604389954228907, + 13.0348623092822 + ], + [ + 77.604465975631697, + 13.034858437243299 + ], + [ + 77.604657945335703, + 13.034832310772799 + ], + [ + 77.604661298333895, + 13.034059766022899 + ], + [ + 77.604660220613596, + 13.034017182765499 + ], + [ + 77.604359858343997, + 13.0340239338821 + ], + [ + 77.603569737130897, + 13.034059502379 + ], + [ + 77.602739925902597, + 13.034107554365599 + ], + [ + 77.602365777922202, + 13.0341869843789 + ], + [ + 77.601846405432696, + 13.0342604717663 + ], + [ + 77.601840794593201, + 13.034256565719099 + ], + [ + 77.601808000460906, + 13.034212048375601 + ], + [ + 77.601704643639493, + 13.034140931156299 + ], + [ + 77.601590000277, + 13.034062048502999 + ], + [ + 77.601499968245705, + 13.033981935588599 + ], + [ + 77.601472000023705, + 13.0339570489261 + ], + [ + 77.601455126670203, + 13.033941155525101 + ], + [ + 77.601319745330301, + 13.033813634594599 + ], + [ + 77.601317000107201, + 13.0338110485601 + ], + [ + 77.601263987195296, + 13.033782503438699 + ], + [ + 77.601239000421799, + 13.0337690485661 + ], + [ + 77.601214000337094, + 13.0337630489019 + ], + [ + 77.600984000195794, + 13.0337010488754 + ], + [ + 77.600983000443804, + 13.0337010480765 + ], + [ + 77.600946679180296, + 13.033690671167401 + ], + [ + 77.600940152605006, + 13.0336888061011 + ], + [ + 77.600920000823194, + 13.033683048609699 + ], + [ + 77.600908999939307, + 13.033680048609201 + ], + [ + 77.600830467732806, + 13.0336062098254 + ], + [ + 77.600804070411201, + 13.033581389504 + ], + [ + 77.600787686901995, + 13.0335659853015 + ], + [ + 77.600658000762905, + 13.0334440486241 + ], + [ + 77.6005032039984, + 13.033358258104601 + ], + [ + 77.600492000059006, + 13.0333520484382 + ], + [ + 77.600464430518301, + 13.0333385841791 + ], + [ + 77.600401668337298, + 13.0333079332922 + ], + [ + 77.600395377022096, + 13.0333048606749 + ], + [ + 77.600363000788207, + 13.0332890487838 + ], + [ + 77.600351210458996, + 13.033285978988101 + ], + [ + 77.600239446735301, + 13.033256880751001 + ], + [ + 77.600207067459195, + 13.033248450773399 + ], + [ + 77.600194000257105, + 13.0332450486823 + ], + [ + 77.6001571032009, + 13.033242848054099 + ], + [ + 77.599993549822003, + 13.033234308627501 + ], + [ + 77.599964746620202, + 13.0332334685439 + ], + [ + 77.599750855161005, + 13.0332264119158 + ], + [ + 77.599728551835895, + 13.033225676393 + ], + [ + 77.599521851204699, + 13.033224979786199 + ], + [ + 77.599498950297999, + 13.0332249025174 + ], + [ + 77.599391644171703, + 13.0332245414535 + ], + [ + 77.5993582625089, + 13.0332297107896 + ], + [ + 77.599341467261894, + 13.033232311410901 + ], + [ + 77.599275513477295, + 13.033242525398601 + ], + [ + 77.599274825363295, + 13.033242631682899 + ], + [ + 77.599266878048297, + 13.033243862424101 + ], + [ + 77.599263743698501, + 13.033243893886199 + ], + [ + 77.599262473190507, + 13.033243906639299 + ], + [ + 77.599262361940603, + 13.0332429591565 + ], + [ + 77.599262310941199, + 13.033242487175601 + ], + [ + 77.599262011029097, + 13.0332397085311 + ], + [ + 77.599261629478406, + 13.0332361709231 + ], + [ + 77.599257230879601, + 13.033195428009 + ], + [ + 77.599256822893906, + 13.0331916530647 + ], + [ + 77.599255222389402, + 13.033176828517499 + ], + [ + 77.599253260713994, + 13.033158653167201 + ], + [ + 77.599224553578694, + 13.0328927435243 + ], + [ + 77.599194130726502, + 13.032610934487099 + ], + [ + 77.599165803175595, + 13.032348528104601 + ], + [ + 77.599142749551703, + 13.032134978567401 + ], + [ + 77.599000762840205, + 13.0321364035863 + ], + [ + 77.598973178102895, + 13.0319227035335 + ], + [ + 77.5989088500164, + 13.031528715928101 + ], + [ + 77.598763646273895, + 13.0309770650526 + ], + [ + 77.598637940834095, + 13.030412471273699 + ], + [ + 77.5985731147602, + 13.030424779517601 + ], + [ + 77.598496314685605, + 13.0300755345284 + ], + [ + 77.598021361968506, + 13.0301411638314 + ], + [ + 77.598008787827794, + 13.0297059638863 + ], + [ + 77.597992064205897, + 13.0294699730053 + ], + [ + 77.597787504986698, + 13.0294756428881 + ], + [ + 77.597767668820694, + 13.0287947402408 + ], + [ + 77.597308842035005, + 13.0287833777027 + ], + [ + 77.597307741909503, + 13.028883720263 + ], + [ + 77.597189023255794, + 13.0288957863902 + ], + [ + 77.596983517471202, + 13.0289429034882 + ], + [ + 77.596778813615302, + 13.028939200647701 + ], + [ + 77.596773494907396, + 13.028708850252601 + ], + [ + 77.596780863074898, + 13.028503691072199 + ], + [ + 77.596779477282396, + 13.0271585033042 + ], + [ + 77.596756508589095, + 13.0270388314238 + ], + [ + 77.596727264394801, + 13.026722889184301 + ], + [ + 77.596655492212804, + 13.0264722354377 + ], + [ + 77.596788781098297, + 13.026434893350199 + ], + [ + 77.596729799518101, + 13.026183699452501 + ], + [ + 77.596577743149396, + 13.0262159844729 + ], + [ + 77.596457615251893, + 13.0257166991065 + ], + [ + 77.597067688773706, + 13.0255758493049 + ], + [ + 77.597088549476197, + 13.025916828242501 + ], + [ + 77.598126746897805, + 13.0258849066433 + ], + [ + 77.598108905207496, + 13.025576732524801 + ], + [ + 77.597583475211906, + 13.025587385431599 + ], + [ + 77.597523851662999, + 13.0249972179313 + ], + [ + 77.597462362891207, + 13.025001051925599 + ], + [ + 77.597356825360094, + 13.0250181691541 + ], + [ + 77.597105495362996, + 13.025025730227201 + ], + [ + 77.597108422806798, + 13.024848942953 + ], + [ + 77.597104566611904, + 13.0247552507523 + ], + [ + 77.597101275516394, + 13.024715758681401 + ], + [ + 77.597079918249094, + 13.024434780183601 + ], + [ + 77.597045066235097, + 13.024249721104701 + ], + [ + 77.597035700499802, + 13.024199356135099 + ], + [ + 77.597016665962599, + 13.0241197530879 + ], + [ + 77.597015467258601, + 13.024115247952 + ], + [ + 77.596910811412698, + 13.0237170058824 + ], + [ + 77.596869623600298, + 13.0235509865828 + ], + [ + 77.5968102023851, + 13.0234959930489 + ], + [ + 77.596491559134094, + 13.023588399841399 + ], + [ + 77.596231464172206, + 13.023680015486701 + ], + [ + 77.596180706125494, + 13.023524311400299 + ], + [ + 77.596095736753199, + 13.0232494137971 + ], + [ + 77.5959090590123, + 13.0233182626933 + ], + [ + 77.595670169250496, + 13.023398032134001 + ], + [ + 77.595394044198599, + 13.0234767143995 + ], + [ + 77.595118040572302, + 13.023567074643299 + ], + [ + 77.594856833436793, + 13.023648526859301 + ], + [ + 77.594519986242204, + 13.0237584749469 + ], + [ + 77.594480486922905, + 13.023682953925601 + ], + [ + 77.5944429618486, + 13.023511057543599 + ], + [ + 77.594362960060707, + 13.0232636698956 + ], + [ + 77.5943118232138, + 13.023071470675699 + ], + [ + 77.594262129664003, + 13.0228748771803 + ], + [ + 77.594203047461903, + 13.022634579644899 + ], + [ + 77.594115176815805, + 13.0223463924474 + ], + [ + 77.594101679688194, + 13.0222917271774 + ], + [ + 77.594017872154296, + 13.022010121799401 + ], + [ + 77.593929667728602, + 13.021689819248101 + ], + [ + 77.59390145623, + 13.021554327771801 + ], + [ + 77.593829986190997, + 13.021339702842999 + ], + [ + 77.593724133769598, + 13.0209685858607 + ], + [ + 77.593585921004902, + 13.020468529041199 + ], + [ + 77.593972511210197, + 13.0203703402372 + ], + [ + 77.594413500534998, + 13.020252781482601 + ], + [ + 77.594219332727604, + 13.019709418153701 + ], + [ + 77.593946656728804, + 13.0187824790529 + ], + [ + 77.594359633909207, + 13.018669627080399 + ], + [ + 77.594752420980797, + 13.018564059522101 + ], + [ + 77.594755299964106, + 13.018564030703899 + ], + [ + 77.594588379202506, + 13.018020758293799 + ], + [ + 77.5945912887491, + 13.0178816748095 + ], + [ + 77.594568718858497, + 13.017747998413901 + ], + [ + 77.594572567976101, + 13.0176679177967 + ], + [ + 77.594720179526604, + 13.017600995597901 + ], + [ + 77.594735561402004, + 13.0175850315819 + ], + [ + 77.594799180690003, + 13.017556162557399 + ], + [ + 77.594929564133196, + 13.017499190988101 + ], + [ + 77.595016622579394, + 13.017414420827 + ], + [ + 77.595093840971302, + 13.016841116930401 + ], + [ + 77.595100452624095, + 13.0167152027015 + ], + [ + 77.594900031659407, + 13.0166410785308 + ], + [ + 77.594809502983907, + 13.016629562435799 + ], + [ + 77.594339881859199, + 13.0165627858281 + ], + [ + 77.594071479474394, + 13.016503324354201 + ], + [ + 77.593805356649099, + 13.0165106480568 + ], + [ + 77.593710845225502, + 13.016532719695901 + ], + [ + 77.593667986875104, + 13.0164048183843 + ], + [ + 77.593621137623799, + 13.0158455035453 + ], + [ + 77.592853351873501, + 13.015885906512301 + ], + [ + 77.592773522411207, + 13.015575705080799 + ], + [ + 77.592740609018904, + 13.0154563293113 + ], + [ + 77.592711291338503, + 13.0153504690742 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "273", + "group": "Chamundi Nagara", + "Corporatio": "North", + "ac_no": "158", + "ac": "Hebbal", + "corporat_1": "2", + "ward_id": "46", + "ward_name": "46 - RT Nagar", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಹೆಬ್ಬಾಳ", + "ward_name_": "ಆರ್.ಟಿ. ನಗರ", + "dig_ward_n": "Chamundi Nagara", + "Assembly": "158 - Hebbal", + "Slno": "46" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.595914628526302, + 13.0198462589751 + ], + [ + 77.594413500534998, + 13.020252781482601 + ], + [ + 77.593972511210197, + 13.0203703402372 + ], + [ + 77.593585921004902, + 13.020468529041199 + ], + [ + 77.593724133769598, + 13.0209685858607 + ], + [ + 77.593829986190997, + 13.021339702842999 + ], + [ + 77.59390145623, + 13.021554327771801 + ], + [ + 77.593929667728602, + 13.021689819248101 + ], + [ + 77.594017872154296, + 13.022010121799401 + ], + [ + 77.594101679688194, + 13.0222917271774 + ], + [ + 77.594115176815805, + 13.0223463924474 + ], + [ + 77.594203047461903, + 13.022634579644899 + ], + [ + 77.594262129664003, + 13.0228748771803 + ], + [ + 77.5943118232138, + 13.023071470675699 + ], + [ + 77.594362960060707, + 13.0232636698956 + ], + [ + 77.5944429618486, + 13.023511057543599 + ], + [ + 77.594480486922905, + 13.023682953925601 + ], + [ + 77.594519986242204, + 13.0237584749469 + ], + [ + 77.594856833436793, + 13.023648526859301 + ], + [ + 77.595118040572302, + 13.023567074643299 + ], + [ + 77.595394044198599, + 13.0234767143995 + ], + [ + 77.595670169250496, + 13.023398032134001 + ], + [ + 77.5959090590123, + 13.0233182626933 + ], + [ + 77.596095736753199, + 13.0232494137971 + ], + [ + 77.596180706125494, + 13.023524311400299 + ], + [ + 77.596231464172206, + 13.023680015486701 + ], + [ + 77.596491559134094, + 13.023588399841399 + ], + [ + 77.5968102023851, + 13.0234959930489 + ], + [ + 77.596869623600298, + 13.0235509865828 + ], + [ + 77.596910811412698, + 13.0237170058824 + ], + [ + 77.597015467258601, + 13.024115247952 + ], + [ + 77.597016665962599, + 13.0241197530879 + ], + [ + 77.597035700499802, + 13.024199356135099 + ], + [ + 77.597045066235097, + 13.024249721104701 + ], + [ + 77.597079918249094, + 13.024434780183601 + ], + [ + 77.597101275516394, + 13.024715758681401 + ], + [ + 77.597104566611904, + 13.0247552507523 + ], + [ + 77.597108422806798, + 13.024848942953 + ], + [ + 77.597105495362996, + 13.025025730227201 + ], + [ + 77.597356825360094, + 13.0250181691541 + ], + [ + 77.597462362891207, + 13.025001051925599 + ], + [ + 77.597523851662999, + 13.0249972179313 + ], + [ + 77.597583475211906, + 13.025587385431599 + ], + [ + 77.598108905207496, + 13.025576732524801 + ], + [ + 77.598126746897805, + 13.0258849066433 + ], + [ + 77.597088549476197, + 13.025916828242501 + ], + [ + 77.597067688773706, + 13.0255758493049 + ], + [ + 77.596457615251893, + 13.0257166991065 + ], + [ + 77.596577743149396, + 13.0262159844729 + ], + [ + 77.596729799518101, + 13.026183699452501 + ], + [ + 77.596788781098297, + 13.026434893350199 + ], + [ + 77.596655492212804, + 13.0264722354377 + ], + [ + 77.596727264394801, + 13.026722889184301 + ], + [ + 77.596756508589095, + 13.0270388314238 + ], + [ + 77.596779477282396, + 13.0271585033042 + ], + [ + 77.596780863074898, + 13.028503691072199 + ], + [ + 77.596773494907396, + 13.028708850252601 + ], + [ + 77.596778813615302, + 13.028939200647701 + ], + [ + 77.596983517471202, + 13.0289429034882 + ], + [ + 77.597189023255794, + 13.0288957863902 + ], + [ + 77.597307741909503, + 13.028883720263 + ], + [ + 77.597308842035005, + 13.0287833777027 + ], + [ + 77.597767668820694, + 13.0287947402408 + ], + [ + 77.597787504986698, + 13.0294756428881 + ], + [ + 77.597992064205897, + 13.0294699730053 + ], + [ + 77.598008787827794, + 13.0297059638863 + ], + [ + 77.598021361968506, + 13.0301411638314 + ], + [ + 77.598496314685605, + 13.0300755345284 + ], + [ + 77.5985731147602, + 13.030424779517601 + ], + [ + 77.598637940834095, + 13.030412471273699 + ], + [ + 77.598763646273895, + 13.0309770650526 + ], + [ + 77.5989088500164, + 13.031528715928101 + ], + [ + 77.598973178102895, + 13.0319227035335 + ], + [ + 77.599000762840205, + 13.0321364035863 + ], + [ + 77.599142749551703, + 13.032134978567401 + ], + [ + 77.599165803175595, + 13.032348528104601 + ], + [ + 77.599194130726502, + 13.032610934487099 + ], + [ + 77.599224553578694, + 13.0328927435243 + ], + [ + 77.599253260713994, + 13.033158653167201 + ], + [ + 77.599255222389402, + 13.033176828517499 + ], + [ + 77.599256822893906, + 13.0331916530647 + ], + [ + 77.599257230879601, + 13.033195428009 + ], + [ + 77.599261629478406, + 13.0332361709231 + ], + [ + 77.599262011029097, + 13.0332397085311 + ], + [ + 77.599262310941199, + 13.033242487175601 + ], + [ + 77.599262361940603, + 13.0332429591565 + ], + [ + 77.599262473190507, + 13.033243906639299 + ], + [ + 77.599263743698501, + 13.033243893886199 + ], + [ + 77.599266878048297, + 13.033243862424101 + ], + [ + 77.599274825363295, + 13.033242631682899 + ], + [ + 77.599275513477295, + 13.033242525398601 + ], + [ + 77.599341467261894, + 13.033232311410901 + ], + [ + 77.5993582625089, + 13.0332297107896 + ], + [ + 77.599391644171703, + 13.0332245414535 + ], + [ + 77.599498950297999, + 13.0332249025174 + ], + [ + 77.599521851204699, + 13.033224979786199 + ], + [ + 77.599728551835895, + 13.033225676393 + ], + [ + 77.599750855161005, + 13.0332264119158 + ], + [ + 77.599964746620202, + 13.0332334685439 + ], + [ + 77.599993549822003, + 13.033234308627501 + ], + [ + 77.6001571032009, + 13.033242848054099 + ], + [ + 77.600194000257105, + 13.0332450486823 + ], + [ + 77.600207067459195, + 13.033248450773399 + ], + [ + 77.600239446735301, + 13.033256880751001 + ], + [ + 77.600351210458996, + 13.033285978988101 + ], + [ + 77.600363000788207, + 13.0332890487838 + ], + [ + 77.600395377022096, + 13.0333048606749 + ], + [ + 77.600401668337298, + 13.0333079332922 + ], + [ + 77.600464430518301, + 13.0333385841791 + ], + [ + 77.600492000059006, + 13.0333520484382 + ], + [ + 77.6005032039984, + 13.033358258104601 + ], + [ + 77.600658000762905, + 13.0334440486241 + ], + [ + 77.600787686901995, + 13.0335659853015 + ], + [ + 77.600804070411201, + 13.033581389504 + ], + [ + 77.600830467732806, + 13.0336062098254 + ], + [ + 77.600908999939307, + 13.033680048609201 + ], + [ + 77.600920000823194, + 13.033683048609699 + ], + [ + 77.600940152605006, + 13.0336888061011 + ], + [ + 77.600946679180296, + 13.033690671167401 + ], + [ + 77.600983000443804, + 13.0337010480765 + ], + [ + 77.600984000195794, + 13.0337010488754 + ], + [ + 77.601214000337094, + 13.0337630489019 + ], + [ + 77.601239000421799, + 13.0337690485661 + ], + [ + 77.601263987195296, + 13.033782503438699 + ], + [ + 77.601317000107201, + 13.0338110485601 + ], + [ + 77.601319745330301, + 13.033813634594599 + ], + [ + 77.601455126670203, + 13.033941155525101 + ], + [ + 77.601472000023705, + 13.0339570489261 + ], + [ + 77.601499968245705, + 13.033981935588599 + ], + [ + 77.601590000277, + 13.034062048502999 + ], + [ + 77.601704643639493, + 13.034140931156299 + ], + [ + 77.601808000460906, + 13.034212048375601 + ], + [ + 77.601840794593201, + 13.034256565719099 + ], + [ + 77.601846405432696, + 13.0342604717663 + ], + [ + 77.602365777922202, + 13.0341869843789 + ], + [ + 77.602739925902597, + 13.034107554365599 + ], + [ + 77.603569737130897, + 13.034059502379 + ], + [ + 77.604359858343997, + 13.0340239338821 + ], + [ + 77.604660220613596, + 13.034017182765499 + ], + [ + 77.604661298333895, + 13.034059766022899 + ], + [ + 77.604659026837098, + 13.033970013773001 + ], + [ + 77.604660058493494, + 13.033958710588999 + ], + [ + 77.604661082019504, + 13.0339462782061 + ], + [ + 77.604661185255097, + 13.033946281684701 + ], + [ + 77.6046617256698, + 13.033940338039301 + ], + [ + 77.604675787317206, + 13.033810616606401 + ], + [ + 77.604692212518103, + 13.033653872557601 + ], + [ + 77.604698623939896, + 13.0335926904931 + ], + [ + 77.604701967440803, + 13.033560782237201 + ], + [ + 77.604703310255104, + 13.0335483954276 + ], + [ + 77.604705643764305, + 13.0335268668378 + ], + [ + 77.604708190335401, + 13.0335053586903 + ], + [ + 77.604718942021506, + 13.0334145376841 + ], + [ + 77.604719859728505, + 13.0334067861049 + ], + [ + 77.604721033064806, + 13.0333968709629 + ], + [ + 77.604726761097993, + 13.0333484864575 + ], + [ + 77.604728400110005, + 13.0333346430587 + ], + [ + 77.604735480101795, + 13.0332748337993 + ], + [ + 77.604736237819296, + 13.0332684353525 + ], + [ + 77.604738078297601, + 13.033252887875401 + ], + [ + 77.604739507357493, + 13.0332408182039 + ], + [ + 77.604750836254794, + 13.0331486272219 + ], + [ + 77.604757770161797, + 13.0330922045642 + ], + [ + 77.6047685480208, + 13.0330045019181 + ], + [ + 77.604770891585403, + 13.032985431445701 + ], + [ + 77.604777253978696, + 13.0329336536221 + ], + [ + 77.604777717604094, + 13.032929881678401 + ], + [ + 77.604809784388905, + 13.032810769968799 + ], + [ + 77.604807121792206, + 13.0327430814732 + ], + [ + 77.6048070509013, + 13.032736306502599 + ], + [ + 77.604807033947296, + 13.0327357429363 + ], + [ + 77.604806156067696, + 13.0327058249273 + ], + [ + 77.604808976446094, + 13.032591604605701 + ], + [ + 77.604809990015895, + 13.0325505699043 + ], + [ + 77.604794617846906, + 13.032188437097 + ], + [ + 77.6046949116148, + 13.032193819744 + ], + [ + 77.604387787500301, + 13.0322275670321 + ], + [ + 77.604043337292197, + 13.0322872379522 + ], + [ + 77.603521579424907, + 13.0323713199137 + ], + [ + 77.603273340155894, + 13.0324117735352 + ], + [ + 77.603008662463793, + 13.0324465524759 + ], + [ + 77.6023999512649, + 13.032545375601201 + ], + [ + 77.602386719083199, + 13.0325466378595 + ], + [ + 77.601984445559097, + 13.032609407817001 + ], + [ + 77.601866284191701, + 13.032609185303199 + ], + [ + 77.601727699665304, + 13.032622188521501 + ], + [ + 77.601524846275595, + 13.032650326574499 + ], + [ + 77.601513905579594, + 13.032650436486 + ], + [ + 77.601408736305302, + 13.032660449577399 + ], + [ + 77.601235453487405, + 13.032676948646101 + ], + [ + 77.601221069628707, + 13.032678222415701 + ], + [ + 77.600948047477203, + 13.0327081654866 + ], + [ + 77.600657330468195, + 13.0327345895241 + ], + [ + 77.600649844721104, + 13.0327346647022 + ], + [ + 77.600369088954395, + 13.032761199096299 + ], + [ + 77.600347219327304, + 13.032762547988799 + ], + [ + 77.600186705141297, + 13.032777711180801 + ], + [ + 77.600180034016404, + 13.0325627705264 + ], + [ + 77.600212632263506, + 13.0323336710743 + ], + [ + 77.600226053362405, + 13.032222031933699 + ], + [ + 77.600237034261497, + 13.032021325500599 + ], + [ + 77.600248015160602, + 13.0318614924141 + ], + [ + 77.600265207144503, + 13.0315647572363 + ], + [ + 77.600264155456401, + 13.0315505198407 + ], + [ + 77.600280957857805, + 13.0313673519557 + ], + [ + 77.600279189467699, + 13.031194211574499 + ], + [ + 77.600290902331096, + 13.0311026219397 + ], + [ + 77.600258850623703, + 13.0309561367723 + ], + [ + 77.600172684710202, + 13.0307842701247 + ], + [ + 77.600165337266802, + 13.0307696144062 + ], + [ + 77.600130198318894, + 13.030713502956001 + ], + [ + 77.599915102285806, + 13.030464961086 + ], + [ + 77.599870209847396, + 13.030412335344201 + ], + [ + 77.599807455169, + 13.0303587596055 + ], + [ + 77.599743525294102, + 13.0303029370729 + ], + [ + 77.599687043887798, + 13.030188316940601 + ], + [ + 77.599640949047398, + 13.0300205161422 + ], + [ + 77.599635048124, + 13.029965514143999 + ], + [ + 77.599620996576306, + 13.029834540672001 + ], + [ + 77.599603309275395, + 13.0296696862879 + ], + [ + 77.5996026745118, + 13.0296640462336 + ], + [ + 77.5995663416345, + 13.0293832189057 + ], + [ + 77.599528051049504, + 13.0292458304116 + ], + [ + 77.599452835621804, + 13.0290467017828 + ], + [ + 77.599440154061, + 13.0289903647885 + ], + [ + 77.599406387682194, + 13.028845025851099 + ], + [ + 77.599405764715797, + 13.028840514961701 + ], + [ + 77.599400240813495, + 13.0287870169781 + ], + [ + 77.599391670498505, + 13.0287040128828 + ], + [ + 77.599393209363001, + 13.0286859288759 + ], + [ + 77.599394588006007, + 13.028670591091799 + ], + [ + 77.599395668577799, + 13.0286585637495 + ], + [ + 77.599395726402804, + 13.028657924445501 + ], + [ + 77.599405683610399, + 13.0285471057833 + ], + [ + 77.599406106963499, + 13.028542380218999 + ], + [ + 77.599437763971395, + 13.0284464608637 + ], + [ + 77.599443527483501, + 13.028428995772 + ], + [ + 77.599486672824696, + 13.028361635858801 + ], + [ + 77.599554388369, + 13.028242066068801 + ], + [ + 77.599628814462704, + 13.0281176158793 + ], + [ + 77.599664033026698, + 13.0280584290948 + ], + [ + 77.599678838558503, + 13.028007806888599 + ], + [ + 77.599689522331801, + 13.027971276160301 + ], + [ + 77.599698472115193, + 13.027863004420601 + ], + [ + 77.599698547575997, + 13.0278627006516 + ], + [ + 77.599712696331196, + 13.027813277211299 + ], + [ + 77.599718911215007, + 13.027786091860399 + ], + [ + 77.599786396230598, + 13.027514302244199 + ], + [ + 77.599844339033098, + 13.027294048608599 + ], + [ + 77.5998488845281, + 13.027276771005299 + ], + [ + 77.5998495084376, + 13.027274399569301 + ], + [ + 77.599850865276807, + 13.0272692436402 + ], + [ + 77.599853417614895, + 13.0272595405047 + ], + [ + 77.599855619437804, + 13.02725403731 + ], + [ + 77.599858591746795, + 13.0272466111154 + ], + [ + 77.599929197780995, + 13.0270701866827 + ], + [ + 77.599938725283494, + 13.027046378791299 + ], + [ + 77.599969805652705, + 13.0269896026212 + ], + [ + 77.600000388582004, + 13.026913421293299 + ], + [ + 77.600044455627895, + 13.026803650700099 + ], + [ + 77.600064689044203, + 13.026756297730801 + ], + [ + 77.600086616052494, + 13.026704979783901 + ], + [ + 77.600134712628204, + 13.026685881032799 + ], + [ + 77.600170446466393, + 13.0266716918114 + ], + [ + 77.600320028800198, + 13.026612294301399 + ], + [ + 77.600461723992794, + 13.026560054241401 + ], + [ + 77.600494356668804, + 13.026541658131 + ], + [ + 77.600549738874605, + 13.026495930831601 + ], + [ + 77.600562979784002, + 13.026480177656699 + ], + [ + 77.600578218336096, + 13.026462047386399 + ], + [ + 77.600588986527598, + 13.026449236199699 + ], + [ + 77.600606322552593, + 13.0264053751325 + ], + [ + 77.600632173992494, + 13.0263399712784 + ], + [ + 77.600636826683996, + 13.026328200794699 + ], + [ + 77.600640499094794, + 13.0263189092187 + ], + [ + 77.6006409667919, + 13.0263177264543 + ], + [ + 77.600646843914006, + 13.026302857571 + ], + [ + 77.600647938190306, + 13.0263000893256 + ], + [ + 77.600650464256603, + 13.026293697514699 + ], + [ + 77.6006509274509, + 13.026292524733201 + ], + [ + 77.600651017222802, + 13.0262922979752 + ], + [ + 77.600655563982002, + 13.026280795065899 + ], + [ + 77.600660240002995, + 13.0262689647217 + ], + [ + 77.600662810851006, + 13.0262556549166 + ], + [ + 77.6006646106907, + 13.0262463351596 + ], + [ + 77.600670022660907, + 13.026222039162199 + ], + [ + 77.600670661651804, + 13.026219171592899 + ], + [ + 77.600661106748504, + 13.026186518258999 + ], + [ + 77.600651097643706, + 13.0261641053176 + ], + [ + 77.600618190960105, + 13.0260904223335 + ], + [ + 77.600610396168094, + 13.0260729695649 + ], + [ + 77.6004963563486, + 13.025905850859401 + ], + [ + 77.600471089545096, + 13.025857545232 + ], + [ + 77.600449372136794, + 13.0257658358319 + ], + [ + 77.600433738834397, + 13.025699820278 + ], + [ + 77.600435769099505, + 13.0256184914067 + ], + [ + 77.600428012426406, + 13.0255925957127 + ], + [ + 77.600431302247401, + 13.025576752708201 + ], + [ + 77.600479462550197, + 13.025335731703899 + ], + [ + 77.600498413447099, + 13.025220354465599 + ], + [ + 77.600502007935305, + 13.0251785348576 + ], + [ + 77.600505590635095, + 13.025135586083399 + ], + [ + 77.600496055751805, + 13.0249945212048 + ], + [ + 77.600482820304293, + 13.0248851134338 + ], + [ + 77.600476732405994, + 13.024856226903999 + ], + [ + 77.600453132179993, + 13.024744250813599 + ], + [ + 77.600432200892996, + 13.024669928095699 + ], + [ + 77.600325421792604, + 13.0244259449282 + ], + [ + 77.600146638361196, + 13.024014420769401 + ], + [ + 77.600046417712605, + 13.0237918279827 + ], + [ + 77.599904114296606, + 13.0235097568419 + ], + [ + 77.599779868937503, + 13.023571119286199 + ], + [ + 77.599904114296606, + 13.0235097568419 + ], + [ + 77.600091554614494, + 13.023426615999099 + ], + [ + 77.600234845969695, + 13.0233619382182 + ], + [ + 77.600363765685003, + 13.023299663159399 + ], + [ + 77.600638784733505, + 13.023165906192901 + ], + [ + 77.6006582560032, + 13.023155547218501 + ], + [ + 77.600859831097296, + 13.0230473713954 + ], + [ + 77.600943908464501, + 13.022992321872101 + ], + [ + 77.600541827722907, + 13.021854649426899 + ], + [ + 77.600943908464501, + 13.022992321872101 + ], + [ + 77.600859830708799, + 13.023047322892699 + ], + [ + 77.600756287896701, + 13.023102938164699 + ], + [ + 77.6006582560032, + 13.023155547218501 + ], + [ + 77.600638784733505, + 13.023165906192901 + ], + [ + 77.600363765685003, + 13.023299663159399 + ], + [ + 77.6002390941062, + 13.0233598861444 + ], + [ + 77.600091554226793, + 13.0234265675827 + ], + [ + 77.599904114296606, + 13.0235097568419 + ], + [ + 77.599779868550002, + 13.023571070890799 + ], + [ + 77.599739641567695, + 13.0234846448092 + ], + [ + 77.599551617862801, + 13.023536248711 + ], + [ + 77.5992535041363, + 13.0236043881738 + ], + [ + 77.599149711239903, + 13.0235750735125 + ], + [ + 77.599061758881305, + 13.023556832824401 + ], + [ + 77.599009117399603, + 13.023523179982799 + ], + [ + 77.598873825895097, + 13.0234995909289 + ], + [ + 77.598805677072207, + 13.0233464606076 + ], + [ + 77.598754794580302, + 13.0231776203434 + ], + [ + 77.598700727196402, + 13.0230072583196 + ], + [ + 77.598686627915697, + 13.0229468063879 + ], + [ + 77.598663867956503, + 13.022864323259199 + ], + [ + 77.598608963461203, + 13.022627623879099 + ], + [ + 77.598543078066697, + 13.0224397284949 + ], + [ + 77.598445417801102, + 13.0224567101424 + ], + [ + 77.598257025908495, + 13.0225146185777 + ], + [ + 77.598113186993302, + 13.022548687908699 + ], + [ + 77.598072762344302, + 13.022348889904199 + ], + [ + 77.5980227760069, + 13.0221584358593 + ], + [ + 77.597910205558094, + 13.0218079786166 + ], + [ + 77.597852912253003, + 13.0215560805899 + ], + [ + 77.597794787889399, + 13.021376436797 + ], + [ + 77.5979745713814, + 13.021338484722 + ], + [ + 77.597904311159994, + 13.021188918972101 + ], + [ + 77.597697824937697, + 13.020645180136 + ], + [ + 77.5974667526948, + 13.0201085963187 + ], + [ + 77.597163684335101, + 13.020192645553401 + ], + [ + 77.596968055031198, + 13.0196663555301 + ], + [ + 77.596885052636296, + 13.0196081474081 + ], + [ + 77.596620542333, + 13.0196558693636 + ], + [ + 77.596060375048793, + 13.0198150194491 + ], + [ + 77.595914628526302, + 13.0198462589751 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "274", + "group": "Geddalahalli", + "Corporatio": "North", + "ac_no": "158", + "ac": "Hebbal", + "corporat_1": "2", + "ward_id": "35", + "ward_name": "35 - Geddalahalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಹೆಬ್ಬಾಳ", + "ward_name_": "ಗೆದ್ದಲಹಳ್ಳಿ", + "dig_ward_n": "Geddalahalli", + "Assembly": "158 - Hebbal", + "Slno": "35" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.570181492221195, + 13.0314765838726 + ], + [ + 77.570167398542594, + 13.0315210911118 + ], + [ + 77.570110104698898, + 13.0317020247371 + ], + [ + 77.570075156563206, + 13.0317871853493 + ], + [ + 77.5700477486495, + 13.0318539709116 + ], + [ + 77.569989318502195, + 13.031995714345101 + ], + [ + 77.569852751277907, + 13.0322669743679 + ], + [ + 77.569815219142896, + 13.032327751281301 + ], + [ + 77.569476640666693, + 13.032876016049 + ], + [ + 77.569379778051399, + 13.0329944072173 + ], + [ + 77.569121649913598, + 13.033309907094701 + ], + [ + 77.569034171436897, + 13.0334168279716 + ], + [ + 77.568768062044995, + 13.0338055671121 + ], + [ + 77.568627882951702, + 13.0340103436496 + ], + [ + 77.568572633992204, + 13.034091064564199 + ], + [ + 77.568563271234893, + 13.0341047317426 + ], + [ + 77.568544950114003, + 13.0341280363242 + ], + [ + 77.568538418038102, + 13.0341363459844 + ], + [ + 77.568321683109602, + 13.034412041779801 + ], + [ + 77.568295447879095, + 13.0344452823713 + ], + [ + 77.568075534249701, + 13.0347239141649 + ], + [ + 77.567984962390994, + 13.034838952288601 + ], + [ + 77.567870321543197, + 13.034984561470999 + ], + [ + 77.5678657613675, + 13.034989123938001 + ], + [ + 77.567791627121807, + 13.0350721027635 + ], + [ + 77.567577679375901, + 13.0353115757156 + ], + [ + 77.567553744457101, + 13.035336652479501 + ], + [ + 77.5675431461963, + 13.035347754351999 + ], + [ + 77.567349090678803, + 13.035550997691599 + ], + [ + 77.567261739031494, + 13.0356424860679 + ], + [ + 77.567236968007506, + 13.0356684284765 + ], + [ + 77.567188484767996, + 13.035719337907301 + ], + [ + 77.5671045237589, + 13.0358075022703 + ], + [ + 77.567103071613801, + 13.0358090272348 + ], + [ + 77.566642163325795, + 13.036293188170699 + ], + [ + 77.566418011809404, + 13.0365352308091 + ], + [ + 77.566336873456294, + 13.0366228448393 + ], + [ + 77.5663289323371, + 13.036631422303699 + ], + [ + 77.5660196279525, + 13.036965652944099 + ], + [ + 77.565986025247, + 13.037002123978001 + ], + [ + 77.5657985089221, + 13.037231312072601 + ], + [ + 77.565479273428707, + 13.0376214919911 + ], + [ + 77.565440028431496, + 13.0376693120181 + ], + [ + 77.565409700068699, + 13.0377095920252 + ], + [ + 77.565271292929694, + 13.0378934586341 + ], + [ + 77.565082669925204, + 13.0381437764383 + ], + [ + 77.565024148324795, + 13.038221149560201 + ], + [ + 77.564870175800394, + 13.038424823031299 + ], + [ + 77.564655259546896, + 13.0386945985951 + ], + [ + 77.564449775935699, + 13.0389512347866 + ], + [ + 77.564349923818099, + 13.039075943394799 + ], + [ + 77.564286817282493, + 13.039155620472 + ], + [ + 77.564284746603207, + 13.039158199556701 + ], + [ + 77.564158878362704, + 13.0393149916972 + ], + [ + 77.564114396483006, + 13.0393648989612 + ], + [ + 77.563957132498601, + 13.039541345829701 + ], + [ + 77.563912988488198, + 13.039590872986899 + ], + [ + 77.5639100789612, + 13.039594137966899 + ], + [ + 77.563716186759805, + 13.039857823366299 + ], + [ + 77.5636581666935, + 13.0399367281175 + ], + [ + 77.563653971964101, + 13.039942432493801 + ], + [ + 77.563645906903105, + 13.0399533980528 + ], + [ + 77.563376430766695, + 13.040319873986901 + ], + [ + 77.5633098992393, + 13.0404103530804 + ], + [ + 77.563030779510299, + 13.040789942152401 + ], + [ + 77.562802553206296, + 13.0411003169382 + ], + [ + 77.562661338429393, + 13.041283826614899 + ], + [ + 77.5622456039018, + 13.0418240762063 + ], + [ + 77.562196910628998, + 13.041879227047399 + ], + [ + 77.562160763427102, + 13.041920167960299 + ], + [ + 77.5621155632398, + 13.041971362326301 + ], + [ + 77.562111822366504, + 13.0419755995079 + ], + [ + 77.562135287321397, + 13.042017152727899 + ], + [ + 77.562213282276801, + 13.042147685442901 + ], + [ + 77.562375319334095, + 13.042418870968 + ], + [ + 77.562399121456593, + 13.0424587060589 + ], + [ + 77.562645699195997, + 13.0428713766561 + ], + [ + 77.5627148695919, + 13.0429871401609 + ], + [ + 77.562764590240306, + 13.0430768690776 + ], + [ + 77.562772673570294, + 13.043091455646 + ], + [ + 77.563176859800095, + 13.0438208673394 + ], + [ + 77.563179799647401, + 13.0438261730941 + ], + [ + 77.563187665201099, + 13.0438403669895 + ], + [ + 77.5635796205502, + 13.044547700977899 + ], + [ + 77.563609526216695, + 13.0446016695174 + ], + [ + 77.563845715743597, + 13.045027899812901 + ], + [ + 77.564145266533401, + 13.045592975493999 + ], + [ + 77.564155063421296, + 13.0455999072399 + ], + [ + 77.564356537606599, + 13.045742474107399 + ], + [ + 77.564385323091699, + 13.0457628425591 + ], + [ + 77.564406605425305, + 13.0457779026236 + ], + [ + 77.564466482233001, + 13.0458202717729 + ], + [ + 77.564508421259802, + 13.0458499481662 + ], + [ + 77.564569747124494, + 13.045893342792301 + ], + [ + 77.564929070788494, + 13.0461476034931 + ], + [ + 77.564941666536598, + 13.046153844320999 + ], + [ + 77.565193089768499, + 13.046278415345 + ], + [ + 77.565308688459695, + 13.0463356906657 + ], + [ + 77.565360345079597, + 13.046361284511301 + ], + [ + 77.565439944510302, + 13.046392094227 + ], + [ + 77.565465014322001, + 13.046401798020399 + ], + [ + 77.565750080471105, + 13.0465121361299 + ], + [ + 77.566128809580306, + 13.046600982349499 + ], + [ + 77.566487629520097, + 13.0466452297951 + ], + [ + 77.566629223048196, + 13.046662690878399 + ], + [ + 77.566662803541007, + 13.046666831596401 + ], + [ + 77.566773214059793, + 13.0466766462041 + ], + [ + 77.567260566350498, + 13.046719965973899 + ], + [ + 77.567954349322093, + 13.0467816338173 + ], + [ + 77.568481571577294, + 13.046828495373701 + ], + [ + 77.569028604751097, + 13.0468771159503 + ], + [ + 77.569114223058605, + 13.0468901941372 + ], + [ + 77.569431241367795, + 13.0469386171061 + ], + [ + 77.569918881613006, + 13.047033152410499 + ], + [ + 77.570126796813994, + 13.047071018287401 + ], + [ + 77.570165845773801, + 13.047078129840999 + ], + [ + 77.570845026815206, + 13.0471211430075 + ], + [ + 77.570901111466, + 13.0471246945165 + ], + [ + 77.571308755406605, + 13.047150510943601 + ], + [ + 77.571561400497302, + 13.047166510325001 + ], + [ + 77.571670398702196, + 13.047173413253701 + ], + [ + 77.572103331040793, + 13.047200829065201 + ], + [ + 77.572462441266097, + 13.0472235693145 + ], + [ + 77.572611109975, + 13.0472311253424 + ], + [ + 77.572690729229805, + 13.0472353630184 + ], + [ + 77.572761169986407, + 13.0472391128441 + ], + [ + 77.572713432607102, + 13.046803900645299 + ], + [ + 77.572525475368494, + 13.046770361445001 + ], + [ + 77.572353923687402, + 13.0467316710681 + ], + [ + 77.572068636336795, + 13.046728292833899 + ], + [ + 77.571577097355501, + 13.046702105346601 + ], + [ + 77.571388736140804, + 13.046570359207699 + ], + [ + 77.571103543764295, + 13.045656508778301 + ], + [ + 77.570881110240805, + 13.0446814395846 + ], + [ + 77.570746904814996, + 13.0442694878203 + ], + [ + 77.570520833974697, + 13.043555476213101 + ], + [ + 77.570464747666605, + 13.043377848291099 + ], + [ + 77.570131794117401, + 13.0424190295162 + ], + [ + 77.570053495592305, + 13.0420507818303 + ], + [ + 77.570032387308899, + 13.0419515039433 + ], + [ + 77.5700489471932, + 13.041110522481199 + ], + [ + 77.570098019265103, + 13.0405166283192 + ], + [ + 77.570048660055903, + 13.040401663425101 + ], + [ + 77.570012246543598, + 13.0397088168348 + ], + [ + 77.570045687778602, + 13.0390281841419 + ], + [ + 77.570092418971598, + 13.037887511900299 + ], + [ + 77.569314969718505, + 13.037883436789601 + ], + [ + 77.568834628032505, + 13.037878642691901 + ], + [ + 77.5689151253777, + 13.0371468605628 + ], + [ + 77.568971376840096, + 13.0365341283928 + ], + [ + 77.568934882243894, + 13.035939053051999 + ], + [ + 77.570141610547296, + 13.0343811189157 + ], + [ + 77.571879358980993, + 13.033438972988399 + ], + [ + 77.571698934315904, + 13.034692791878401 + ], + [ + 77.571691008723505, + 13.034956142209101 + ], + [ + 77.571695611411101, + 13.035119214605301 + ], + [ + 77.571695863155, + 13.035119232884099 + ], + [ + 77.572705943559697, + 13.0351822221623 + ], + [ + 77.573462351670699, + 13.035242378336999 + ], + [ + 77.573776379208894, + 13.035258590738099 + ], + [ + 77.573813778487903, + 13.0351496917782 + ], + [ + 77.573833557022994, + 13.035082922158701 + ], + [ + 77.573967599313903, + 13.035054708629399 + ], + [ + 77.574247878347705, + 13.035034831404399 + ], + [ + 77.574320202761101, + 13.034979732782199 + ], + [ + 77.574375099471595, + 13.0347717678987 + ], + [ + 77.574380142455695, + 13.0346667508378 + ], + [ + 77.574381513714798, + 13.0345975293914 + ], + [ + 77.574584234455202, + 13.0345786716481 + ], + [ + 77.574920138007599, + 13.034555099468999 + ], + [ + 77.575392656374106, + 13.034676971937101 + ], + [ + 77.575495850082703, + 13.0346560583317 + ], + [ + 77.575601346425103, + 13.034438733769599 + ], + [ + 77.575611543932496, + 13.034410674379201 + ], + [ + 77.575613279348801, + 13.0344058986813 + ], + [ + 77.575661772545899, + 13.034272728507601 + ], + [ + 77.575714701711405, + 13.034127377351 + ], + [ + 77.575732556800503, + 13.0340783442432 + ], + [ + 77.575735484105394, + 13.034072456295201 + ], + [ + 77.5758109745138, + 13.033920590032899 + ], + [ + 77.575835690115497, + 13.033870261802001 + ], + [ + 77.575857787759603, + 13.0338252628241 + ], + [ + 77.576127089186102, + 13.033331930968901 + ], + [ + 77.576273039061903, + 13.0330383060572 + ], + [ + 77.576349409388598, + 13.0329179889385 + ], + [ + 77.576630766840594, + 13.0323481995334 + ], + [ + 77.576669188576005, + 13.0322782937209 + ], + [ + 77.576777742649796, + 13.032086893490201 + ], + [ + 77.576785131302799, + 13.0320738655093 + ], + [ + 77.576804831831893, + 13.0320386412111 + ], + [ + 77.576824142431207, + 13.032004113732601 + ], + [ + 77.576824509734095, + 13.0320034568888 + ], + [ + 77.576877861987697, + 13.031908064552301 + ], + [ + 77.576892228140395, + 13.0318827038127 + ], + [ + 77.576919462825899, + 13.0318346253488 + ], + [ + 77.576937903723106, + 13.031802071508301 + ], + [ + 77.577017509286406, + 13.031661543937499 + ], + [ + 77.577076745571404, + 13.0315569736862 + ], + [ + 77.577097971696702, + 13.0315195026953 + ], + [ + 77.577102389389495, + 13.031511703585499 + ], + [ + 77.5771368724307, + 13.0314492487809 + ], + [ + 77.577261815126704, + 13.0312622793875 + ], + [ + 77.577297931309502, + 13.031208233824801 + ], + [ + 77.577320859874206, + 13.0311737597677 + ], + [ + 77.577332878965507, + 13.0311556878576 + ], + [ + 77.577337983465, + 13.031148012007 + ], + [ + 77.577458978212505, + 13.0309660896362 + ], + [ + 77.577487901498998, + 13.0309228882884 + ], + [ + 77.577495292398396, + 13.030901004736 + ], + [ + 77.577504543778602, + 13.0308736142568 + ], + [ + 77.577515839803496, + 13.0308401711456 + ], + [ + 77.577554967434196, + 13.030725722169301 + ], + [ + 77.577578673120101, + 13.0306791848363 + ], + [ + 77.577615225309202, + 13.030608347153199 + ], + [ + 77.577621883572604, + 13.0305954447826 + ], + [ + 77.577625532016697, + 13.030588374271799 + ], + [ + 77.577714018264103, + 13.0304302883711 + ], + [ + 77.577716450982294, + 13.030425942092499 + ], + [ + 77.577722786544001, + 13.030414623052801 + ], + [ + 77.577746538929006, + 13.0303726015565 + ], + [ + 77.577803078007904, + 13.030314167054099 + ], + [ + 77.577865553857507, + 13.030249596904699 + ], + [ + 77.577865707934905, + 13.0302494381722 + ], + [ + 77.577919756278305, + 13.0301935779571 + ], + [ + 77.578076338770302, + 13.0300311823787 + ], + [ + 77.578153932517694, + 13.029950705680401 + ], + [ + 77.578175580241606, + 13.0299279041558 + ], + [ + 77.578228913247699, + 13.029850580725601 + ], + [ + 77.578236811772697, + 13.029839020261299 + ], + [ + 77.5782645991534, + 13.029798354393799 + ], + [ + 77.578386120502898, + 13.0296205110273 + ], + [ + 77.5783937948421, + 13.0296092807416 + ], + [ + 77.578408176831601, + 13.0295882328379 + ], + [ + 77.578443348932694, + 13.0295367587548 + ], + [ + 77.578452998642206, + 13.029523111069899 + ], + [ + 77.578485981251902, + 13.029478471633199 + ], + [ + 77.578521210126397, + 13.0294307923378 + ], + [ + 77.578525807171701, + 13.0294245706477 + ], + [ + 77.578617408180605, + 13.029300596457601 + ], + [ + 77.578683233348997, + 13.0292115077731 + ], + [ + 77.578726836592594, + 13.029152494535399 + ], + [ + 77.578790916098299, + 13.029065767645999 + ], + [ + 77.578799965635795, + 13.0290498673257 + ], + [ + 77.578842683153397, + 13.0289858533129 + ], + [ + 77.578855208047997, + 13.0289670833924 + ], + [ + 77.578943690756006, + 13.028834487928799 + ], + [ + 77.578970658640401, + 13.0287940750147 + ], + [ + 77.579050482763705, + 13.028643784208001 + ], + [ + 77.579068946378996, + 13.0286090202564 + ], + [ + 77.579070638776102, + 13.0286056155011 + ], + [ + 77.579142747814899, + 13.0284691193519 + ], + [ + 77.579186990290296, + 13.0283853725242 + ], + [ + 77.579202019654005, + 13.028356826818399 + ], + [ + 77.579258716819297, + 13.028249142169701 + ], + [ + 77.579298699716205, + 13.028155005712 + ], + [ + 77.579302177123495, + 13.028146819337501 + ], + [ + 77.579323587482094, + 13.028096409154299 + ], + [ + 77.579477403199306, + 13.027734261814601 + ], + [ + 77.579540363413599, + 13.0275856964117 + ], + [ + 77.579599252725004, + 13.027427342103399 + ], + [ + 77.5796294566439, + 13.0273461228388 + ], + [ + 77.579648732891201, + 13.027294288395201 + ], + [ + 77.579688370972093, + 13.0271877014242 + ], + [ + 77.579693107805298, + 13.0271749663302 + ], + [ + 77.579719092111105, + 13.027105092936299 + ], + [ + 77.579761439157195, + 13.027034805446 + ], + [ + 77.579761506005894, + 13.0270346764917 + ], + [ + 77.579840247973706, + 13.026904000149599 + ], + [ + 77.579874788325696, + 13.0268471911311 + ], + [ + 77.580011438841396, + 13.0266471193833 + ], + [ + 77.5800311002385, + 13.0266183332929 + ], + [ + 77.580058409446906, + 13.026578350585799 + ], + [ + 77.580071312508196, + 13.0265594585244 + ], + [ + 77.580085248471306, + 13.026539054657601 + ], + [ + 77.580104533611205, + 13.0265105838563 + ], + [ + 77.580090004610597, + 13.0265133899003 + ], + [ + 77.580076776487402, + 13.0265159315923 + ], + [ + 77.579994274077606, + 13.0265319898059 + ], + [ + 77.579499059942094, + 13.0266358195222 + ], + [ + 77.579326102649105, + 13.0266720999829 + ], + [ + 77.579302748622794, + 13.02667699877 + ], + [ + 77.579241991001794, + 13.026689743204701 + ], + [ + 77.579103510092196, + 13.0267193543916 + ], + [ + 77.579023587667706, + 13.0267314430433 + ], + [ + 77.578945392699197, + 13.0267435144755 + ], + [ + 77.578729786496197, + 13.026777281123699 + ], + [ + 77.578623411226701, + 13.026793020870301 + ], + [ + 77.578506694499893, + 13.0268111221084 + ], + [ + 77.578486024319801, + 13.026813066059599 + ], + [ + 77.578286865192794, + 13.026831796201501 + ], + [ + 77.578200048572199, + 13.026839961817 + ], + [ + 77.578121620593606, + 13.0268473374331 + ], + [ + 77.577780060766003, + 13.026879335615901 + ], + [ + 77.577732707459901, + 13.0268868075618 + ], + [ + 77.577726590976397, + 13.0268877727668 + ], + [ + 77.577724673352193, + 13.026925058841201 + ], + [ + 77.577723605103301, + 13.0269812021461 + ], + [ + 77.577719451784404, + 13.0271995313873 + ], + [ + 77.577707262822798, + 13.0272459540864 + ], + [ + 77.577690043120896, + 13.027250107799 + ], + [ + 77.577687841834603, + 13.027250639243499 + ], + [ + 77.577684358400703, + 13.027258604320499 + ], + [ + 77.577682031638005, + 13.02725894187 + ], + [ + 77.577298230373302, + 13.0273146831018 + ], + [ + 77.576985836216494, + 13.027360052064299 + ], + [ + 77.576985135152, + 13.0273601538997 + ], + [ + 77.576958108278703, + 13.0273640789807 + ], + [ + 77.576935110325195, + 13.0273676956597 + ], + [ + 77.576717177263006, + 13.027399226212401 + ], + [ + 77.576463839792595, + 13.0274461799461 + ], + [ + 77.576434076170699, + 13.027451696957201 + ], + [ + 77.576202592268203, + 13.027494601605801 + ], + [ + 77.575889747436506, + 13.027552585869101 + ], + [ + 77.575886615095797, + 13.027553166308699 + ], + [ + 77.575830289253204, + 13.0275638901111 + ], + [ + 77.575819936062402, + 13.0275651223587 + ], + [ + 77.575763107869506, + 13.027575206083601 + ], + [ + 77.575219812643098, + 13.027671595996701 + ], + [ + 77.575192863655701, + 13.0276763793046 + ], + [ + 77.574653603889402, + 13.0277720856391 + ], + [ + 77.574627156448798, + 13.0277768115073 + ], + [ + 77.574559907504494, + 13.027788828027299 + ], + [ + 77.574181790480907, + 13.027859327601 + ], + [ + 77.574022489320896, + 13.027889029339301 + ], + [ + 77.573781720438305, + 13.0279342060406 + ], + [ + 77.573475964395399, + 13.0279915759806 + ], + [ + 77.573463235709994, + 13.027993964658 + ], + [ + 77.573455773281196, + 13.027996297404499 + ], + [ + 77.573110665202194, + 13.028080796235599 + ], + [ + 77.572975889998702, + 13.0281137952622 + ], + [ + 77.572771134801499, + 13.028163929254401 + ], + [ + 77.572511380754406, + 13.028227528559 + ], + [ + 77.572408799458699, + 13.028252644859499 + ], + [ + 77.572058763139793, + 13.028338349566299 + ], + [ + 77.572008771580997, + 13.028350589827699 + ], + [ + 77.571839652478801, + 13.028381422247399 + ], + [ + 77.571755433645095, + 13.0283967758601 + ], + [ + 77.571530532419501, + 13.0284377772669 + ], + [ + 77.5714431694946, + 13.028454455731399 + ], + [ + 77.5713050877836, + 13.028459892822401 + ], + [ + 77.571251476326907, + 13.0284620042054 + ], + [ + 77.571248074966704, + 13.028471604561 + ], + [ + 77.571233938566195, + 13.028511501940301 + ], + [ + 77.571199011622994, + 13.028610074929 + ], + [ + 77.571193019138704, + 13.028626985492201 + ], + [ + 77.5711661806032, + 13.028702729415199 + ], + [ + 77.571149005406198, + 13.0287512017529 + ], + [ + 77.571127184200407, + 13.0288127750068 + ], + [ + 77.571112131850597, + 13.0288552581062 + ], + [ + 77.571079241643403, + 13.0289480748957 + ], + [ + 77.570918897895496, + 13.0294005422107 + ], + [ + 77.570894460464203, + 13.0294695027122 + ], + [ + 77.570681048570194, + 13.030050955988701 + ], + [ + 77.570652600187501, + 13.0301283185985 + ], + [ + 77.570549810847695, + 13.030407838851399 + ], + [ + 77.5705355754083, + 13.0304465491774 + ], + [ + 77.570451874621199, + 13.0306741603635 + ], + [ + 77.570390049013596, + 13.030842286532399 + ], + [ + 77.570329262997603, + 13.031007583628099 + ], + [ + 77.570297466144893, + 13.031107278338499 + ], + [ + 77.570262500924102, + 13.0312186210117 + ], + [ + 77.570181492221195, + 13.0314765838726 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "275", + "group": "Vishwanatha Nagenahalli", + "Corporatio": "North", + "ac_no": "158", + "ac": "Hebbal", + "corporat_1": "2", + "ward_id": "39", + "ward_name": "39 - Vishwanatha Nagenahalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಹೆಬ್ಬಾಳ", + "ward_name_": "ವಿಶ್ವನಾಥ ನಾಗೇನಹಳ್ಳಿ", + "dig_ward_n": "Vishwanatha Nagenahalli", + "Assembly": "158 - Hebbal", + "Slno": "39" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.597066290276899, + 13.035771781416599 + ], + [ + 77.597067036924699, + 13.0357734978718 + ], + [ + 77.5973732817654, + 13.036389789752601 + ], + [ + 77.597442986973803, + 13.0365397968847 + ], + [ + 77.597491512634093, + 13.036710214263699 + ], + [ + 77.597486374625305, + 13.0368252377679 + ], + [ + 77.597441738161095, + 13.0369515333094 + ], + [ + 77.597371086330099, + 13.0370524542334 + ], + [ + 77.596957711543695, + 13.037214007401801 + ], + [ + 77.596829601054495, + 13.0374104434853 + ], + [ + 77.596764777599404, + 13.0375625149098 + ], + [ + 77.596718628801199, + 13.0378136977636 + ], + [ + 77.596520305730493, + 13.0383602912553 + ], + [ + 77.596388534941596, + 13.038722660924799 + ], + [ + 77.5962982475492, + 13.0389434990062 + ], + [ + 77.596279946050799, + 13.039041106998001 + ], + [ + 77.596259926310196, + 13.039183588591399 + ], + [ + 77.596319666933795, + 13.039216008124299 + ], + [ + 77.596373701856706, + 13.0392310028646 + ], + [ + 77.596449133841304, + 13.039474173314 + ], + [ + 77.596478919315203, + 13.039595061238 + ], + [ + 77.596527402651304, + 13.0396854648983 + ], + [ + 77.596594848775794, + 13.039746899053 + ], + [ + 77.596680759887406, + 13.0398412360382 + ], + [ + 77.596829946417003, + 13.0400149161649 + ], + [ + 77.596900064418307, + 13.0401463648322 + ], + [ + 77.596959215612401, + 13.040158573630301 + ], + [ + 77.597059871088106, + 13.0406395456188 + ], + [ + 77.597268863888104, + 13.040590292108 + ], + [ + 77.597159241219302, + 13.039946746087301 + ], + [ + 77.597167807627002, + 13.039856546972199 + ], + [ + 77.597447581652403, + 13.0398384422808 + ], + [ + 77.597468106335896, + 13.0399760618296 + ], + [ + 77.598248548591798, + 13.0400316156187 + ], + [ + 77.598148497221501, + 13.0406138144014 + ], + [ + 77.597898994463904, + 13.0406607337066 + ], + [ + 77.598015715787298, + 13.0410055243982 + ], + [ + 77.598058647677703, + 13.0411342446505 + ], + [ + 77.598053464162305, + 13.041178239443701 + ], + [ + 77.598046475695199, + 13.041205045659501 + ], + [ + 77.598050313649097, + 13.0412049673802 + ], + [ + 77.598145063939597, + 13.0412030350584 + ], + [ + 77.598145215032602, + 13.0412030326381 + ], + [ + 77.598221196548494, + 13.0412013935088 + ], + [ + 77.598438256501794, + 13.0411967054287 + ], + [ + 77.598438861728695, + 13.041196689414299 + ], + [ + 77.5991723117004, + 13.041164846834301 + ], + [ + 77.599318449365896, + 13.0411585015074 + ], + [ + 77.599451039656302, + 13.0411512577474 + ], + [ + 77.599495727571494, + 13.0411488159281 + ], + [ + 77.599740344387698, + 13.041135065948399 + ], + [ + 77.600221027175294, + 13.041126825553899 + ], + [ + 77.600225016345803, + 13.041126757467699 + ], + [ + 77.600237403966304, + 13.0411265462778 + ], + [ + 77.600536105026194, + 13.0411214246451 + ], + [ + 77.601053179325703, + 13.041112839617099 + ], + [ + 77.601053341483905, + 13.041112837987299 + ], + [ + 77.601344597338894, + 13.041107746886899 + ], + [ + 77.601357202310794, + 13.041107526231499 + ], + [ + 77.601694612437996, + 13.0411007466702 + ], + [ + 77.602085161137893, + 13.041085912286 + ], + [ + 77.602550101880993, + 13.041068252257899 + ], + [ + 77.6030924796477, + 13.041047649736701 + ], + [ + 77.603392859351999, + 13.041036239073801 + ], + [ + 77.603795654810398, + 13.0410212735208 + ], + [ + 77.603798678754998, + 13.041021161788899 + ], + [ + 77.604434842175493, + 13.0409975250823 + ], + [ + 77.604435107458301, + 13.040997516088799 + ], + [ + 77.604570592477103, + 13.0409939058005 + ], + [ + 77.604698192081599, + 13.040990504896801 + ], + [ + 77.605251735199701, + 13.040975751735701 + ], + [ + 77.605251822708993, + 13.040975749047901 + ], + [ + 77.605697497633798, + 13.040963753012299 + ], + [ + 77.605740856975899, + 13.040962585587 + ], + [ + 77.605757181332507, + 13.0409621465855 + ], + [ + 77.605757442948402, + 13.040962139434299 + ], + [ + 77.606274814514904, + 13.0409482126489 + ], + [ + 77.606726297066501, + 13.040936057894999 + ], + [ + 77.606762961861506, + 13.040930914007999 + ], + [ + 77.607368061789302, + 13.040846026548699 + ], + [ + 77.607555421921205, + 13.040790285898799 + ], + [ + 77.607558704922695, + 13.0407893087453 + ], + [ + 77.607694157835894, + 13.040749011000999 + ], + [ + 77.607791755065605, + 13.0407197956707 + ], + [ + 77.608233775784896, + 13.0405290106681 + ], + [ + 77.608613861093303, + 13.0403083588073 + ], + [ + 77.608836394827193, + 13.0401660854574 + ], + [ + 77.609145942323707, + 13.039919041351199 + ], + [ + 77.609286848326207, + 13.039791141897799 + ], + [ + 77.609443735552404, + 13.039649529957 + ], + [ + 77.609664330316093, + 13.039377408862499 + ], + [ + 77.609764820520894, + 13.0392397532444 + ], + [ + 77.609785930678399, + 13.0392105902728 + ], + [ + 77.609914685955403, + 13.039032713912 + ], + [ + 77.610036430848695, + 13.038834992296801 + ], + [ + 77.610107214471697, + 13.038650953699699 + ], + [ + 77.610110281213807, + 13.038642979900899 + ], + [ + 77.610111065180206, + 13.0386409429127 + ], + [ + 77.610228718073103, + 13.0383350426695 + ], + [ + 77.610263687935998, + 13.0382454989296 + ], + [ + 77.610279191973007, + 13.038205796252701 + ], + [ + 77.610276902683196, + 13.0381999561379 + ], + [ + 77.610272284384294, + 13.0381881787394 + ], + [ + 77.610264906289899, + 13.038169364420799 + ], + [ + 77.610262135125197, + 13.0381622978027 + ], + [ + 77.610254489111796, + 13.038142801392301 + ], + [ + 77.610250923626396, + 13.0381337100872 + ], + [ + 77.610241186202401, + 13.038108878384399 + ], + [ + 77.610182150171099, + 13.037958335013499 + ], + [ + 77.610179176618104, + 13.0379506841142 + ], + [ + 77.610160627015702, + 13.0379029618526 + ], + [ + 77.610133617039097, + 13.0378334738582 + ], + [ + 77.610120605221098, + 13.0378008569591 + ], + [ + 77.610108954853104, + 13.0377649487206 + ], + [ + 77.610088468837802, + 13.037701803801699 + ], + [ + 77.610075381599401, + 13.0376607650662 + ], + [ + 77.610049173765006, + 13.037578580419799 + ], + [ + 77.610025278347194, + 13.037503649507199 + ], + [ + 77.610024622829698, + 13.0375015927033 + ], + [ + 77.610011650879898, + 13.0374609132627 + ], + [ + 77.609947361184496, + 13.037260729179 + ], + [ + 77.609909868345596, + 13.037143982270599 + ], + [ + 77.609897700624501, + 13.0371060926034 + ], + [ + 77.609821143435298, + 13.036867705393901 + ], + [ + 77.609787558744401, + 13.0367404357475 + ], + [ + 77.609784234075605, + 13.0367279442343 + ], + [ + 77.609764108539096, + 13.0366510030925 + ], + [ + 77.609758299155999, + 13.036628794134 + ], + [ + 77.609734765979397, + 13.0365388274832 + ], + [ + 77.609651390877403, + 13.036222343079499 + ], + [ + 77.6096501992063, + 13.036217836179199 + ], + [ + 77.609642917242994, + 13.036185769471199 + ], + [ + 77.609598234682807, + 13.035989122276799 + ], + [ + 77.609558234709894, + 13.0358141623697 + ], + [ + 77.609520793958197, + 13.035650396238299 + ], + [ + 77.609506533258696, + 13.035588018705299 + ], + [ + 77.609504545832607, + 13.035578184217499 + ], + [ + 77.609486594970093, + 13.0354893664037 + ], + [ + 77.609462800495507, + 13.035371638374601 + ], + [ + 77.609456134895893, + 13.0353400858095 + ], + [ + 77.609427735054993, + 13.0352001095549 + ], + [ + 77.609416697328598, + 13.0351457074505 + ], + [ + 77.609399658768197, + 13.035061723664599 + ], + [ + 77.609385850060306, + 13.0350087886333 + ], + [ + 77.609376125658201, + 13.034971550942 + ], + [ + 77.609267062123394, + 13.034553756126201 + ], + [ + 77.609265098078097, + 13.034545446372601 + ], + [ + 77.609264830027996, + 13.034544311666201 + ], + [ + 77.6092556124201, + 13.0345053126042 + ], + [ + 77.609216390810303, + 13.034335187941601 + ], + [ + 77.6092097031392, + 13.034306180518399 + ], + [ + 77.609199503812704, + 13.0342619542088 + ], + [ + 77.609187419138394, + 13.034207870692001 + ], + [ + 77.609156667167696, + 13.034076055167899 + ], + [ + 77.609155693989806, + 13.0340724359297 + ], + [ + 77.609155181018295, + 13.034070526748399 + ], + [ + 77.609107311054501, + 13.033892479449401 + ], + [ + 77.609042210627194, + 13.033650341743501 + ], + [ + 77.608999342737803, + 13.0334981794218 + ], + [ + 77.608984789319805, + 13.033446521144199 + ], + [ + 77.608932775406004, + 13.0332641022994 + ], + [ + 77.608923219025499, + 13.0332314495422 + ], + [ + 77.6088835839967, + 13.033099717104401 + ], + [ + 77.608778039800896, + 13.0327489274163 + ], + [ + 77.608753168865803, + 13.032666265520801 + ], + [ + 77.608703682094102, + 13.032495295465599 + ], + [ + 77.608688637147694, + 13.032443318673099 + ], + [ + 77.608682949374597, + 13.032423544954 + ], + [ + 77.608630664430095, + 13.0322417619881 + ], + [ + 77.608630390995103, + 13.0322408161494 + ], + [ + 77.6086417288641, + 13.0322796711517 + ], + [ + 77.608641641235096, + 13.032279925896001 + ], + [ + 77.608564877483104, + 13.032307792382101 + ], + [ + 77.608417834820003, + 13.032342851641101 + ], + [ + 77.607912808951795, + 13.0324603518161 + ], + [ + 77.607407797712895, + 13.0325793108589 + ], + [ + 77.607301044913399, + 13.032622723371 + ], + [ + 77.607093265210807, + 13.0326875918499 + ], + [ + 77.606949230210105, + 13.0327255399063 + ], + [ + 77.606755064361806, + 13.0327887700675 + ], + [ + 77.606497800526896, + 13.0328424979947 + ], + [ + 77.606431500554706, + 13.033134579872 + ], + [ + 77.606401954498295, + 13.0334462447054 + ], + [ + 77.606394473852305, + 13.033497582053601 + ], + [ + 77.6063482772973, + 13.0337113499856 + ], + [ + 77.606345610980597, + 13.0337317038507 + ], + [ + 77.606326954258094, + 13.0340172631415 + ], + [ + 77.6063238144243, + 13.0342151138665 + ], + [ + 77.606372570295804, + 13.034392003324699 + ], + [ + 77.606404043994203, + 13.0345537375752 + ], + [ + 77.606413196303393, + 13.0347745371625 + ], + [ + 77.606087394047904, + 13.034798571919501 + ], + [ + 77.605501214216503, + 13.0348286006666 + ], + [ + 77.605296051669697, + 13.034832995674799 + ], + [ + 77.6048905286017, + 13.034846397894301 + ], + [ + 77.604739210305098, + 13.0348543830405 + ], + [ + 77.604657945335703, + 13.034832310772799 + ], + [ + 77.604465975631697, + 13.034858437243299 + ], + [ + 77.604389954228907, + 13.0348623092822 + ], + [ + 77.604301265292804, + 13.034867085550699 + ], + [ + 77.604091793125093, + 13.034881614525499 + ], + [ + 77.604026771578603, + 13.034886785606499 + ], + [ + 77.603985525538207, + 13.0348836905262 + ], + [ + 77.603899221893201, + 13.034891334176701 + ], + [ + 77.6037438776671, + 13.0349053185099 + ], + [ + 77.603644917535505, + 13.0349142186371 + ], + [ + 77.603446978682499, + 13.034926171277499 + ], + [ + 77.603414179966407, + 13.034928759636299 + ], + [ + 77.603390606348, + 13.034932384514599 + ], + [ + 77.603285591415897, + 13.034949545389299 + ], + [ + 77.603215122395696, + 13.034950894139 + ], + [ + 77.603163356685499, + 13.0349570610119 + ], + [ + 77.603147832876303, + 13.0349594756534 + ], + [ + 77.602896001072196, + 13.035020766417 + ], + [ + 77.602873579090399, + 13.035024379673301 + ], + [ + 77.602540740684901, + 13.0350937564959 + ], + [ + 77.602212223482795, + 13.0351174815024 + ], + [ + 77.602178600449705, + 13.035128325967101 + ], + [ + 77.602137775436702, + 13.0351343826863 + ], + [ + 77.601932941107606, + 13.035160458480499 + ], + [ + 77.601835233608099, + 13.0351662529267 + ], + [ + 77.601556080083597, + 13.0351353654994 + ], + [ + 77.601385761209102, + 13.035094164051999 + ], + [ + 77.601138762332894, + 13.0350446985814 + ], + [ + 77.601067899616297, + 13.035042022633601 + ], + [ + 77.600900238141605, + 13.0350346726516 + ], + [ + 77.600774635986099, + 13.0350291586466 + ], + [ + 77.600757361027505, + 13.0350293321719 + ], + [ + 77.600639339067598, + 13.0350327762283 + ], + [ + 77.600488966575298, + 13.0350817165147 + ], + [ + 77.600457342994403, + 13.035086551271799 + ], + [ + 77.6001801195372, + 13.0351392259478 + ], + [ + 77.600115144834902, + 13.0351489127363 + ], + [ + 77.600107094975698, + 13.0351501228609 + ], + [ + 77.599886101434706, + 13.0351748481554 + ], + [ + 77.599879779070207, + 13.0351760409264 + ], + [ + 77.599847787803398, + 13.035181405100101 + ], + [ + 77.599444382095797, + 13.035246048862099 + ], + [ + 77.5994386355583, + 13.0352472358417 + ], + [ + 77.599220071196697, + 13.0352763173091 + ], + [ + 77.599091712816303, + 13.035298775006501 + ], + [ + 77.599082758289995, + 13.035309244281599 + ], + [ + 77.598906859826997, + 13.035340371410999 + ], + [ + 77.598860817321494, + 13.0353575570388 + ], + [ + 77.598826663663104, + 13.035372466570101 + ], + [ + 77.598726669037603, + 13.0353926681129 + ], + [ + 77.598473820884706, + 13.0354448944613 + ], + [ + 77.598350993217096, + 13.0354845228842 + ], + [ + 77.598240751337897, + 13.035516119951099 + ], + [ + 77.597895225827202, + 13.035610830858101 + ], + [ + 77.597879732093205, + 13.0356139342134 + ], + [ + 77.597066290276899, + 13.035771781416599 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "276", + "group": "Hebbal", + "Corporatio": "North", + "ac_no": "158", + "ac": "Hebbal", + "corporat_1": "2", + "ward_id": "38", + "ward_name": "38 - Hebbal", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಹೆಬ್ಬಾಳ", + "ward_name_": "ಹೆಬ್ಬಾಳ", + "dig_ward_n": "Hebbal", + "Assembly": "158 - Hebbal", + "Slno": "38" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.590893394863102, + 13.0296569244121 + ], + [ + 77.588503180870305, + 13.029854489367301 + ], + [ + 77.588276963035199, + 13.0287513093021 + ], + [ + 77.588292253093499, + 13.028255203252 + ], + [ + 77.588160212551301, + 13.028248435623301 + ], + [ + 77.587885498304203, + 13.0282237718045 + ], + [ + 77.587501362984995, + 13.028189282662501 + ], + [ + 77.587039979313005, + 13.028131082013401 + ], + [ + 77.587000207499102, + 13.0281288628564 + ], + [ + 77.586619764928201, + 13.0281026509147 + ], + [ + 77.586599491492805, + 13.0285344751218 + ], + [ + 77.586182042995702, + 13.0285499013485 + ], + [ + 77.586174417299802, + 13.0285317054741 + ], + [ + 77.586162853602204, + 13.028504116132201 + ], + [ + 77.586162554095694, + 13.0285034017936 + ], + [ + 77.586161783124894, + 13.028501562865999 + ], + [ + 77.586131153811394, + 13.02842848249 + ], + [ + 77.586118068011302, + 13.0283972611658 + ], + [ + 77.5861119644496, + 13.028382698169301 + ], + [ + 77.586105098417207, + 13.028366316035299 + ], + [ + 77.586082600315606, + 13.0283126388918 + ], + [ + 77.586062746769798, + 13.0282652702424 + ], + [ + 77.586082600315606, + 13.0283126388918 + ], + [ + 77.586085746576003, + 13.028320145758499 + ], + [ + 77.586105098417207, + 13.028366316035299 + ], + [ + 77.5861119644496, + 13.028382698169301 + ], + [ + 77.586118068011302, + 13.0283972611658 + ], + [ + 77.586131153811394, + 13.02842848249 + ], + [ + 77.586161783124894, + 13.028501562865999 + ], + [ + 77.586161944676107, + 13.028501947020599 + ], + [ + 77.586162554095694, + 13.0285034017936 + ], + [ + 77.586162853602204, + 13.028504116132201 + ], + [ + 77.586174417299802, + 13.0285317054741 + ], + [ + 77.586182042995702, + 13.0285499013485 + ], + [ + 77.586184772595402, + 13.0285564140751 + ], + [ + 77.586198843864096, + 13.028589986234 + ], + [ + 77.586204058346496, + 13.0286024268958 + ], + [ + 77.586208226924697, + 13.0286123736731 + ], + [ + 77.586217843866706, + 13.0286353667894 + ], + [ + 77.586228129803601, + 13.0286599613431 + ], + [ + 77.586257369961501, + 13.028729873662201 + ], + [ + 77.586274683892498, + 13.028771270626001 + ], + [ + 77.586289656436804, + 13.0288070706856 + ], + [ + 77.586293741149404, + 13.028816837610201 + ], + [ + 77.586353039851303, + 13.028958619919299 + ], + [ + 77.586361008968098, + 13.028977674232801 + ], + [ + 77.586375891774296, + 13.0290132592572 + ], + [ + 77.586446727601995, + 13.029182627498599 + ], + [ + 77.586459899243707, + 13.0292141198672 + ], + [ + 77.586476466805607, + 13.0292537327425 + ], + [ + 77.586542004823201, + 13.029410432543999 + ], + [ + 77.586552439181006, + 13.029435381543999 + ], + [ + 77.586569419689198, + 13.0294759813537 + ], + [ + 77.586580273564195, + 13.029501931686999 + ], + [ + 77.586714252408996, + 13.0298218882144 + ], + [ + 77.586736264793601, + 13.0298744570668 + ], + [ + 77.586783090143697, + 13.029986281129 + ], + [ + 77.586865213690103, + 13.0301824018954 + ], + [ + 77.587056837764294, + 13.0306400189003 + ], + [ + 77.5870621492775, + 13.0306523880908 + ], + [ + 77.587099025161905, + 13.030743697722 + ], + [ + 77.587566357089798, + 13.0319008682219 + ], + [ + 77.587589413043901, + 13.031958231877599 + ], + [ + 77.588119024342305, + 13.033046096284099 + ], + [ + 77.5882432019622, + 13.033302334174 + ], + [ + 77.588322981421001, + 13.033608704681001 + ], + [ + 77.588438156208497, + 13.034051365841499 + ], + [ + 77.588459743469997, + 13.0341335884846 + ], + [ + 77.588748077970905, + 13.0350567265717 + ], + [ + 77.588804661712601, + 13.035236847755399 + ], + [ + 77.588869871388496, + 13.0354157533649 + ], + [ + 77.589025181116895, + 13.035841073164001 + ], + [ + 77.589169832689393, + 13.0362382670312 + ], + [ + 77.589213097022196, + 13.036496789350601 + ], + [ + 77.589234924797907, + 13.036627222104901 + ], + [ + 77.5892412469492, + 13.0367367002868 + ], + [ + 77.589289333335302, + 13.037594481903399 + ], + [ + 77.589289979674604, + 13.0376012511953 + ], + [ + 77.589307642136205, + 13.0379150179229 + ], + [ + 77.589351793570401, + 13.038228519666299 + ], + [ + 77.589389082113499, + 13.038491271858801 + ], + [ + 77.589394687744601, + 13.0385318703194 + ], + [ + 77.589408390411407, + 13.0386311109984 + ], + [ + 77.589424549289106, + 13.0386896725685 + ], + [ + 77.589448145430396, + 13.038779866657899 + ], + [ + 77.589492322665194, + 13.0389487318678 + ], + [ + 77.589507811723095, + 13.039053601119299 + ], + [ + 77.589568592970593, + 13.0394708312567 + ], + [ + 77.589618950431102, + 13.039771848509501 + ], + [ + 77.589644757970603, + 13.0399274326462 + ], + [ + 77.589695512109799, + 13.0401673836838 + ], + [ + 77.589693060240805, + 13.0401719100274 + ], + [ + 77.5897391799882, + 13.040610096389599 + ], + [ + 77.589766148867696, + 13.0408663294465 + ], + [ + 77.589781940780099, + 13.0410163636704 + ], + [ + 77.589798869924493, + 13.041177207837601 + ], + [ + 77.589800919197202, + 13.0411966762031 + ], + [ + 77.589805199645596, + 13.041199446661601 + ], + [ + 77.589800251480995, + 13.041199718422099 + ], + [ + 77.589802371210794, + 13.041208694506601 + ], + [ + 77.589871886133594, + 13.0415030937298 + ], + [ + 77.589873168189897, + 13.041508522280701 + ], + [ + 77.589875037322301, + 13.0415164393367 + ], + [ + 77.589902672128403, + 13.0416334709294 + ], + [ + 77.589985488571102, + 13.041613583287299 + ], + [ + 77.590020439670297, + 13.0416051893252 + ], + [ + 77.590463301384602, + 13.041506359736999 + ], + [ + 77.590571458771606, + 13.041482227802099 + ], + [ + 77.590879032867207, + 13.0414168914016 + ], + [ + 77.591302066962797, + 13.0413270268039 + ], + [ + 77.591586847104594, + 13.041266530782901 + ], + [ + 77.591814932956495, + 13.041217391044301 + ], + [ + 77.591891729848697, + 13.041200845295201 + ], + [ + 77.592246511458299, + 13.041124409336399 + ], + [ + 77.592510902996196, + 13.041084266740301 + ], + [ + 77.592668561548905, + 13.041060329246699 + ], + [ + 77.592689932852295, + 13.041059885678701 + ], + [ + 77.593138352398299, + 13.041050576839501 + ], + [ + 77.5931942532779, + 13.041049415941099 + ], + [ + 77.593555205792001, + 13.0410909705388 + ], + [ + 77.594011338291693, + 13.0411473815709 + ], + [ + 77.5942177828328, + 13.041172912076499 + ], + [ + 77.594219347652, + 13.0411731068902 + ], + [ + 77.594754644088297, + 13.041239306690301 + ], + [ + 77.595027397589007, + 13.041272709108 + ], + [ + 77.595055085457503, + 13.041276948627001 + ], + [ + 77.595417858504604, + 13.041272181456799 + ], + [ + 77.596091978255799, + 13.0412515533032 + ], + [ + 77.596240974004701, + 13.0412469933061 + ], + [ + 77.596351108772893, + 13.041243622625901 + ], + [ + 77.596595808938403, + 13.041237779750899 + ], + [ + 77.596753082109103, + 13.0412339332364 + ], + [ + 77.596813474420202, + 13.0412324563578 + ], + [ + 77.596819074509995, + 13.041232319761001 + ], + [ + 77.596843415856895, + 13.0412317240829 + ], + [ + 77.596880031524293, + 13.0412308290698 + ], + [ + 77.597048759998202, + 13.041226702102801 + ], + [ + 77.597154054299594, + 13.041224126793001 + ], + [ + 77.597378844371093, + 13.041218629341699 + ], + [ + 77.597495729682805, + 13.0412163269411 + ], + [ + 77.598046475695199, + 13.041205045659501 + ], + [ + 77.598053464162305, + 13.041178239443701 + ], + [ + 77.598058647677703, + 13.0411342446505 + ], + [ + 77.598015715787298, + 13.0410055243982 + ], + [ + 77.597898994463904, + 13.0406607337066 + ], + [ + 77.598148497221501, + 13.0406138144014 + ], + [ + 77.598248548591798, + 13.0400316156187 + ], + [ + 77.597468106335896, + 13.0399760618296 + ], + [ + 77.597447581652403, + 13.0398384422808 + ], + [ + 77.597167807627002, + 13.039856546972199 + ], + [ + 77.597159241219302, + 13.039946746087301 + ], + [ + 77.597268863888104, + 13.040590292108 + ], + [ + 77.597059871088106, + 13.0406395456188 + ], + [ + 77.596959215612401, + 13.040158573630301 + ], + [ + 77.596900064418307, + 13.0401463648322 + ], + [ + 77.596829946417003, + 13.0400149161649 + ], + [ + 77.596680759887406, + 13.0398412360382 + ], + [ + 77.596594848775794, + 13.039746899053 + ], + [ + 77.596527402651304, + 13.0396854648983 + ], + [ + 77.596478919315203, + 13.039595061238 + ], + [ + 77.596449133841304, + 13.039474173314 + ], + [ + 77.596373701856706, + 13.0392310028646 + ], + [ + 77.596319666933795, + 13.039216008124299 + ], + [ + 77.596259926310196, + 13.039183588591399 + ], + [ + 77.596279946050799, + 13.039041106998001 + ], + [ + 77.5962982475492, + 13.0389434990062 + ], + [ + 77.596388534941596, + 13.038722660924799 + ], + [ + 77.596520305730493, + 13.0383602912553 + ], + [ + 77.596718628801199, + 13.0378136977636 + ], + [ + 77.596764777599404, + 13.0375625149098 + ], + [ + 77.596829601054495, + 13.0374104434853 + ], + [ + 77.596957711543695, + 13.037214007401801 + ], + [ + 77.597371086330099, + 13.0370524542334 + ], + [ + 77.597441738161095, + 13.0369515333094 + ], + [ + 77.597486374625305, + 13.0368252377679 + ], + [ + 77.597491512634093, + 13.036710214263699 + ], + [ + 77.597442986973803, + 13.0365397968847 + ], + [ + 77.5973732817654, + 13.036389789752601 + ], + [ + 77.597066290276899, + 13.035771781416599 + ], + [ + 77.596426778056397, + 13.032095239812501 + ], + [ + 77.596493190397794, + 13.032477050997301 + ], + [ + 77.5958322345558, + 13.032297724392899 + ], + [ + 77.595325166423706, + 13.032155990992299 + ], + [ + 77.595271003994995, + 13.0325896537828 + ], + [ + 77.595103077269798, + 13.0325667099453 + ], + [ + 77.595200529784904, + 13.033005373653801 + ], + [ + 77.594610692083407, + 13.033136560881101 + ], + [ + 77.594463616955395, + 13.032567734289 + ], + [ + 77.594316450949094, + 13.032592576823699 + ], + [ + 77.594397965563601, + 13.0316568569929 + ], + [ + 77.594308454475794, + 13.0315926128991 + ], + [ + 77.594201226364206, + 13.0315626584761 + ], + [ + 77.593984423071305, + 13.031514335556 + ], + [ + 77.593979027503394, + 13.031431559712701 + ], + [ + 77.593965606404595, + 13.031266846226499 + ], + [ + 77.593828955216097, + 13.0312705065262 + ], + [ + 77.593280112945806, + 13.0310656888806 + ], + [ + 77.593754529122293, + 13.030246842712399 + ], + [ + 77.5938985009102, + 13.030045526229401 + ], + [ + 77.593897280810296, + 13.0298368891469 + ], + [ + 77.593817974317005, + 13.029752702253999 + ], + [ + 77.593403378368905, + 13.0297927963563 + ], + [ + 77.593297694252797, + 13.0295903405442 + ], + [ + 77.593231939557, + 13.029514868546901 + ], + [ + 77.593132120041503, + 13.0295158679148 + ], + [ + 77.592724294098801, + 13.0295354592382 + ], + [ + 77.5922261938112, + 13.0295606707387 + ], + [ + 77.591286131290502, + 13.029642806415399 + ], + [ + 77.591087638833002, + 13.0296528525712 + ], + [ + 77.590936098359506, + 13.0296563143621 + ], + [ + 77.590893394863102, + 13.0296569244121 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "277", + "group": "Gangenahalli", + "Corporatio": "North", + "ac_no": "158", + "ac": "Hebbal", + "corporat_1": "2", + "ward_id": "49", + "ward_name": "49 - Gangenahalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಹೆಬ್ಬಾಳ", + "ward_name_": "ಗಂಗೇನಹಳ್ಳಿ", + "dig_ward_n": "Gangenahalli", + "Assembly": "158 - Hebbal", + "Slno": "49" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.5839564109679, + 13.0176008528352 + ], + [ + 77.583946950405405, + 13.017973237995299 + ], + [ + 77.583944910222002, + 13.0181487323407 + ], + [ + 77.583938261838796, + 13.018720536213999 + ], + [ + 77.583937487028393, + 13.0187871924202 + ], + [ + 77.583933879701604, + 13.0190974963425 + ], + [ + 77.583933556650393, + 13.0191252559106 + ], + [ + 77.583928437397503, + 13.019298088693599 + ], + [ + 77.583927735404799, + 13.0193247570714 + ], + [ + 77.583923137558003, + 13.019499178321601 + ], + [ + 77.583922980751396, + 13.0195051154771 + ], + [ + 77.583918105047502, + 13.0196900591367 + ], + [ + 77.583961289670199, + 13.020251049806999 + ], + [ + 77.583961364211504, + 13.020252018453601 + ], + [ + 77.583971417180194, + 13.0203885633242 + ], + [ + 77.583971760499196, + 13.0203903947853 + ], + [ + 77.584025062326205, + 13.020674870252099 + ], + [ + 77.584073375169496, + 13.0208912138207 + ], + [ + 77.584112913658004, + 13.0210235003933 + ], + [ + 77.584165246454106, + 13.0211985961979 + ], + [ + 77.584204573107399, + 13.0213258147524 + ], + [ + 77.584205759856602, + 13.021329190813301 + ], + [ + 77.584210009764703, + 13.0213441608732 + ], + [ + 77.5842171305611, + 13.021369243403001 + ], + [ + 77.584383623166502, + 13.021955761300299 + ], + [ + 77.584449026955497, + 13.022186160685701 + ], + [ + 77.584450352307101, + 13.022190817340601 + ], + [ + 77.584568558130499, + 13.0226061957399 + ], + [ + 77.584590073090794, + 13.0226816450059 + ], + [ + 77.584595286301905, + 13.0227001162029 + ], + [ + 77.584598890561594, + 13.0227128837801 + ], + [ + 77.584655084914402, + 13.022912351526699 + ], + [ + 77.584658064740196, + 13.023061346820199 + ], + [ + 77.584715724058199, + 13.023285867773501 + ], + [ + 77.584782829552594, + 13.023270616524799 + ], + [ + 77.584784242984199, + 13.0232703512704 + ], + [ + 77.584916430491305, + 13.0232352336277 + ], + [ + 77.584965822959504, + 13.0232224730384 + ], + [ + 77.584992076684998, + 13.0232175421792 + ], + [ + 77.585276655862003, + 13.0231518304308 + ], + [ + 77.585277580061003, + 13.023151656784799 + ], + [ + 77.585273378004302, + 13.023135093523001 + ], + [ + 77.585258684972302, + 13.023065742306301 + ], + [ + 77.585241000733106, + 13.022996046862101 + ], + [ + 77.585274553411693, + 13.0229874474808 + ], + [ + 77.585330902453606, + 13.0229730048975 + ], + [ + 77.585393504022605, + 13.022956960465001 + ], + [ + 77.585717000549806, + 13.0228740468983 + ], + [ + 77.586153761463393, + 13.0227609336551 + ], + [ + 77.586234058649694, + 13.0227401374358 + ], + [ + 77.586524000267104, + 13.0226650473207 + ], + [ + 77.586555024653407, + 13.0227374328697 + ], + [ + 77.586605048749206, + 13.022722791670899 + ], + [ + 77.586670971503494, + 13.0227006657232 + ], + [ + 77.586688018892801, + 13.022694967432701 + ], + [ + 77.586726143663995, + 13.0226822233493 + ], + [ + 77.586920749597596, + 13.022609017355499 + ], + [ + 77.587065143652396, + 13.022931062026499 + ], + [ + 77.587065464142299, + 13.0229318457201 + ], + [ + 77.587087903283503, + 13.0229866382737 + ], + [ + 77.587535069895907, + 13.0228091137386 + ], + [ + 77.5878314851402, + 13.022686680514999 + ], + [ + 77.587844060194897, + 13.022683138424201 + ], + [ + 77.587870597367697, + 13.0226742927 + ], + [ + 77.588128343470899, + 13.0225617384845 + ], + [ + 77.588245778086005, + 13.0227911172652 + ], + [ + 77.588275060483497, + 13.022842666485801 + ], + [ + 77.588298852431507, + 13.0228926905816 + ], + [ + 77.588443333405394, + 13.023187897510001 + ], + [ + 77.5887334259629, + 13.023065905917599 + ], + [ + 77.588816650955295, + 13.0231880881392 + ], + [ + 77.588834178640099, + 13.0232125749886 + ], + [ + 77.588857190240006, + 13.023267658252299 + ], + [ + 77.588909255739296, + 13.023394214410001 + ], + [ + 77.588969852858895, + 13.023554716262099 + ], + [ + 77.589055258398901, + 13.023519420738699 + ], + [ + 77.589032742519905, + 13.0233438225186 + ], + [ + 77.589032742519905, + 13.0233438225186 + ], + [ + 77.589073005814896, + 13.023337722019299 + ], + [ + 77.589116972548695, + 13.023331668782699 + ], + [ + 77.589246870051895, + 13.023304779321901 + ], + [ + 77.589404262938601, + 13.023279157224099 + ], + [ + 77.589530418698303, + 13.023266227069501 + ], + [ + 77.589549337688197, + 13.02326295278 + ], + [ + 77.589562728139299, + 13.023260635365 + ], + [ + 77.589572026674503, + 13.023259025575801 + ], + [ + 77.589551895026005, + 13.0231501316599 + ], + [ + 77.589546404576495, + 13.0230964472645 + ], + [ + 77.589543469849005, + 13.0230806592532 + ], + [ + 77.589510411629703, + 13.022874694108101 + ], + [ + 77.589489669931396, + 13.022757564518001 + ], + [ + 77.589478670510999, + 13.022704565103 + ], + [ + 77.589451236784697, + 13.022603831930899 + ], + [ + 77.589420734287202, + 13.0225092741889 + ], + [ + 77.589437180045394, + 13.022511302497399 + ], + [ + 77.589500650830502, + 13.0225147646384 + ], + [ + 77.589686716064804, + 13.0225233053377 + ], + [ + 77.589711375474707, + 13.022526346510899 + ], + [ + 77.589749756255998, + 13.022530013058001 + ], + [ + 77.589897793347006, + 13.022551367635399 + ], + [ + 77.589929257707894, + 13.022556975291501 + ], + [ + 77.589972876260603, + 13.0225611423591 + ], + [ + 77.5900176034189, + 13.022565414882299 + ], + [ + 77.590042985234803, + 13.022567838983999 + ], + [ + 77.590254655442195, + 13.0225831404096 + ], + [ + 77.590279536901306, + 13.022584674185 + ], + [ + 77.590309101100104, + 13.0225864972289 + ], + [ + 77.590331327253907, + 13.022587866915901 + ], + [ + 77.590339459632006, + 13.022590190569501 + ], + [ + 77.590349429184997, + 13.022593038823 + ], + [ + 77.590395940209604, + 13.022594364475299 + ], + [ + 77.590385912516794, + 13.022627497813399 + ], + [ + 77.590385378723298, + 13.0226287941696 + ], + [ + 77.5903574942311, + 13.022720138455201 + ], + [ + 77.590345908433406, + 13.022756182043899 + ], + [ + 77.590339306463207, + 13.0227767207629 + ], + [ + 77.590332613478907, + 13.0227975449735 + ], + [ + 77.5903127035685, + 13.0228649333091 + ], + [ + 77.590285716146298, + 13.0229239439801 + ], + [ + 77.590280980971201, + 13.0229399694527 + ], + [ + 77.590277000555403, + 13.0229950468973 + ], + [ + 77.590283122109597, + 13.023024541564601 + ], + [ + 77.590283463546001, + 13.0230261869195 + ], + [ + 77.590349629049697, + 13.023344983538101 + ], + [ + 77.590354000780096, + 13.0233660476772 + ], + [ + 77.590460411912204, + 13.0237524034718 + ], + [ + 77.590472689167399, + 13.0238194327099 + ], + [ + 77.590479094692299, + 13.0238198902465 + ], + [ + 77.590486720317102, + 13.0238209578329 + ], + [ + 77.590499297600005, + 13.023824034177199 + ], + [ + 77.590506887907694, + 13.0238235788529 + ], + [ + 77.590508915335903, + 13.023823436620599 + ], + [ + 77.590532048786599, + 13.023827314776399 + ], + [ + 77.590540998178, + 13.0238266850525 + ], + [ + 77.590550743841703, + 13.0238261621039 + ], + [ + 77.590549174187501, + 13.023823626802599 + ], + [ + 77.590560307599802, + 13.023824389365 + ], + [ + 77.590560409751006, + 13.0238243775025 + ], + [ + 77.590580637684297, + 13.0238267899934 + ], + [ + 77.590582813592405, + 13.023826572194499 + ], + [ + 77.590600311077694, + 13.023824822576501 + ], + [ + 77.590616648808606, + 13.023823188447199 + ], + [ + 77.590620637059601, + 13.0238227899106 + ], + [ + 77.590622837710995, + 13.023822559215899 + ], + [ + 77.590642969359294, + 13.023827287103 + ], + [ + 77.5906489979089, + 13.0238266549571 + ], + [ + 77.590650569934397, + 13.0238264901737 + ], + [ + 77.590661451692597, + 13.0238253487547 + ], + [ + 77.590673014319194, + 13.023828049665401 + ], + [ + 77.590696806267204, + 13.0238314049401 + ], + [ + 77.590716022840596, + 13.0238341501649 + ], + [ + 77.590749880612705, + 13.023839640614399 + ], + [ + 77.590785110997302, + 13.023842995889201 + ], + [ + 77.590818816256999, + 13.0238454360889 + ], + [ + 77.590852521516695, + 13.023851536588399 + ], + [ + 77.590900257925199, + 13.023853366738299 + ], + [ + 77.590950587045896, + 13.023860077287701 + ], + [ + 77.590995730742094, + 13.023860077287701 + ], + [ + 77.591047890012703, + 13.0238725833117 + ], + [ + 77.591059946586, + 13.0238674595366 + ], + [ + 77.591075898090907, + 13.023869935054501 + ], + [ + 77.591089983459199, + 13.0238637375874 + ], + [ + 77.591110115107497, + 13.0238655677372 + ], + [ + 77.591148243229298, + 13.023874413461501 + ], + [ + 77.591160444228294, + 13.0238751760239 + ], + [ + 77.591184349283097, + 13.0238818166911 + ], + [ + 77.591193568894695, + 13.023880768662799 + ], + [ + 77.591206006016904, + 13.0238838411433 + ], + [ + 77.591217483898404, + 13.023882344110801 + ], + [ + 77.591268728094093, + 13.023899730534399 + ], + [ + 77.591275792827801, + 13.0239009219822 + ], + [ + 77.591396838583407, + 13.023926572732099 + ], + [ + 77.591681956458999, + 13.023947889455799 + ], + [ + 77.591693017833407, + 13.023949754630101 + ], + [ + 77.5917204700811, + 13.0239570752295 + ], + [ + 77.591724587918193, + 13.023961955629099 + ], + [ + 77.591731908039407, + 13.0239660409833 + ], + [ + 77.591816247923006, + 13.0239833073773 + ], + [ + 77.591888233817002, + 13.0239955083763 + ], + [ + 77.591915076014701, + 13.024116298266099 + ], + [ + 77.591918000807894, + 13.0244060470538 + ], + [ + 77.591926176081103, + 13.0244721715764 + ], + [ + 77.591947336713005, + 13.024643331252699 + ], + [ + 77.5919533349375, + 13.024691851566001 + ], + [ + 77.591953806814999, + 13.024695671078501 + ], + [ + 77.591968044762098, + 13.024810838350099 + ], + [ + 77.591977218130395, + 13.0248850377039 + ], + [ + 77.591977918319799, + 13.024890697936099 + ], + [ + 77.591987766769506, + 13.024970357209099 + ], + [ + 77.592000409755698, + 13.0250571071312 + ], + [ + 77.592001169313804, + 13.025063248298901 + ], + [ + 77.592053256668805, + 13.025058632858199 + ], + [ + 77.592068440183894, + 13.0250572875253 + ], + [ + 77.592125009453397, + 13.0250577578494 + ], + [ + 77.592319615386998, + 13.0250437267006 + ], + [ + 77.592340152347603, + 13.02504274879 + ], + [ + 77.592424615422402, + 13.0250387263335 + ], + [ + 77.592454502562404, + 13.025036406316101 + ], + [ + 77.592458222923099, + 13.0250361179372 + ], + [ + 77.5928851316894, + 13.024993702604799 + ], + [ + 77.592976182966893, + 13.0249919757039 + ], + [ + 77.592982428099106, + 13.0249914361926 + ], + [ + 77.592999211029806, + 13.0249876021053 + ], + [ + 77.592998715191001, + 13.0249838722773 + ], + [ + 77.592974243452204, + 13.024922101776101 + ], + [ + 77.592936787829004, + 13.024747245923299 + ], + [ + 77.592913429289695, + 13.024620596545599 + ], + [ + 77.592885969236605, + 13.0244419004281 + ], + [ + 77.592871632378802, + 13.0243486018539 + ], + [ + 77.592788422531399, + 13.023982573570599 + ], + [ + 77.592750451882097, + 13.0237354815887 + ], + [ + 77.592712810465002, + 13.023490531039499 + ], + [ + 77.592711603716396, + 13.023482677827401 + ], + [ + 77.592700422834099, + 13.0234099215158 + ], + [ + 77.592687420485703, + 13.0233203542795 + ], + [ + 77.592595043855297, + 13.0227617370074 + ], + [ + 77.5925824625009, + 13.022675072784899 + ], + [ + 77.592562741409694, + 13.022517663021899 + ], + [ + 77.592562258276899, + 13.0225079803435 + ], + [ + 77.592552553378098, + 13.022313364136201 + ], + [ + 77.592525107516096, + 13.0221844165397 + ], + [ + 77.592524149457603, + 13.0221648649924 + ], + [ + 77.592522169991199, + 13.022124455263601 + ], + [ + 77.592517827499606, + 13.0220358177194 + ], + [ + 77.592512022616901, + 13.021920688078 + ], + [ + 77.592534038865196, + 13.021700087221401 + ], + [ + 77.592533156914499, + 13.0216812079695 + ], + [ + 77.5925301742529, + 13.021617348828901 + ], + [ + 77.592522379850806, + 13.0214549922476 + ], + [ + 77.592521208209007, + 13.0214305859792 + ], + [ + 77.592502970683, + 13.021050716703 + ], + [ + 77.592501459256297, + 13.021039258221499 + ], + [ + 77.592485306404299, + 13.020916772429 + ], + [ + 77.592464599241893, + 13.0207455904353 + ], + [ + 77.592461518889294, + 13.020721750736501 + ], + [ + 77.592448281725197, + 13.0206193154732 + ], + [ + 77.592437009547695, + 13.0205320806907 + ], + [ + 77.592418254085999, + 13.0203869393173 + ], + [ + 77.592409531697996, + 13.020320014403 + ], + [ + 77.592398605507398, + 13.0202361857088 + ], + [ + 77.592383588946603, + 13.020120967482001 + ], + [ + 77.592369636864703, + 13.0200139228062 + ], + [ + 77.592355046891399, + 13.0199019761538 + ], + [ + 77.592352583110696, + 13.0198681410206 + ], + [ + 77.592339054621604, + 13.0196034381473 + ], + [ + 77.592330913191105, + 13.0194916456215 + ], + [ + 77.592321800967298, + 13.0193665091548 + ], + [ + 77.592321650752396, + 13.0193642032885 + ], + [ + 77.592317688391603, + 13.0193033099535 + ], + [ + 77.592307606654103, + 13.0191645079083 + ], + [ + 77.592305609102993, + 13.019138554177401 + ], + [ + 77.592187195831201, + 13.018730412689001 + ], + [ + 77.592139678636499, + 13.018571832076599 + ], + [ + 77.592098581482205, + 13.018434674508301 + ], + [ + 77.592089359074194, + 13.018403896405101 + ], + [ + 77.592042802728102, + 13.018246261071001 + ], + [ + 77.591981215431801, + 13.0180392109317 + ], + [ + 77.591926634191495, + 13.0178557109799 + ], + [ + 77.591925248863603, + 13.017851054982501 + ], + [ + 77.591838659041002, + 13.0175368624862 + ], + [ + 77.591771640839397, + 13.0173121014017 + ], + [ + 77.5917126330868, + 13.017123141967801 + ], + [ + 77.591680651097604, + 13.0170158835018 + ], + [ + 77.591612885792799, + 13.0168258319258 + ], + [ + 77.591576253164007, + 13.0166552929415 + ], + [ + 77.5914913042119, + 13.016425260681901 + ], + [ + 77.591476736931995, + 13.016376292909399 + ], + [ + 77.591470661022896, + 13.0163558682758 + ], + [ + 77.591464344540697, + 13.016334636569599 + ], + [ + 77.591445499117398, + 13.016271286424301 + ], + [ + 77.591418712037097, + 13.0161332763243 + ], + [ + 77.591417525235101, + 13.016129900308901 + ], + [ + 77.591426215506203, + 13.015940544542 + ], + [ + 77.5914223686908, + 13.015902511376201 + ], + [ + 77.591415946345805, + 13.0158390108499 + ], + [ + 77.5914148132766, + 13.015833358546701 + ], + [ + 77.591406228914593, + 13.015790548393699 + ], + [ + 77.591405794587303, + 13.015748768908001 + ], + [ + 77.5915167411721, + 13.0156176387608 + ], + [ + 77.591537340521796, + 13.0156050097426 + ], + [ + 77.591590231146299, + 13.0155965760295 + ], + [ + 77.591634117495204, + 13.015596137357599 + ], + [ + 77.591658174513796, + 13.0155958968893 + ], + [ + 77.591682422534603, + 13.0155985192985 + ], + [ + 77.591730898271095, + 13.015603760698999 + ], + [ + 77.591772897844706, + 13.0156083016191 + ], + [ + 77.591839113831995, + 13.015607639698199 + ], + [ + 77.591885668372399, + 13.0154998527528 + ], + [ + 77.591897956797993, + 13.0154941150687 + ], + [ + 77.591918447748398, + 13.015481874681999 + ], + [ + 77.591921562873296, + 13.015480014087499 + ], + [ + 77.592007756154501, + 13.015428526705501 + ], + [ + 77.592315312532307, + 13.0152915389461 + ], + [ + 77.592632308243196, + 13.015063128684501 + ], + [ + 77.592661568591296, + 13.0150405213 + ], + [ + 77.592679002500105, + 13.015027051144701 + ], + [ + 77.592681273620002, + 13.015019695266799 + ], + [ + 77.592682382448601, + 13.0150161047765 + ], + [ + 77.592684556410703, + 13.015009063361401 + ], + [ + 77.592704000475393, + 13.014946047794901 + ], + [ + 77.592724938612704, + 13.014841359979499 + ], + [ + 77.592751747272104, + 13.0147073142184 + ], + [ + 77.592774815621297, + 13.014667847054501 + ], + [ + 77.592775851687605, + 13.0146626645389 + ], + [ + 77.5927765891429, + 13.014658979287899 + ], + [ + 77.592776947355702, + 13.014657188715001 + ], + [ + 77.592777315176093, + 13.014655347453701 + ], + [ + 77.592787629339298, + 13.0146507876812 + ], + [ + 77.592807581738398, + 13.0146419676064 + ], + [ + 77.592823174056704, + 13.014635075691199 + ], + [ + 77.592832965447599, + 13.014630747002901 + ], + [ + 77.592846797764807, + 13.0146246324733 + ], + [ + 77.5930371033337, + 13.014572346505799 + ], + [ + 77.593235979900697, + 13.014436834429301 + ], + [ + 77.593252680591306, + 13.014429411933699 + ], + [ + 77.593267000447696, + 13.014423047679101 + ], + [ + 77.593273190944501, + 13.014416041077499 + ], + [ + 77.593290747058106, + 13.014396168849499 + ], + [ + 77.593306792435797, + 13.014378007473701 + ], + [ + 77.593339484206098, + 13.014341004748299 + ], + [ + 77.593358000135197, + 13.0143200478328 + ], + [ + 77.593449322633504, + 13.0142167330542 + ], + [ + 77.593457000227701, + 13.014208047453099 + ], + [ + 77.593493073809, + 13.014139560588101 + ], + [ + 77.593575042957397, + 13.013983937523699 + ], + [ + 77.593595000587001, + 13.0139460475934 + ], + [ + 77.593617000745695, + 13.0139050474929 + ], + [ + 77.593638999976804, + 13.013864047400901 + ], + [ + 77.593640206577206, + 13.013845678481999 + ], + [ + 77.593642448800694, + 13.013811546951199 + ], + [ + 77.593645235149694, + 13.013769140857899 + ], + [ + 77.593648000797899, + 13.013727047559501 + ], + [ + 77.593649999995904, + 13.0136990473473 + ], + [ + 77.593626790297606, + 13.0135383085514 + ], + [ + 77.593583000286401, + 13.013235047653801 + ], + [ + 77.593582851112103, + 13.013231955791801 + ], + [ + 77.593580237968794, + 13.0131779087622 + ], + [ + 77.593570912351595, + 13.012985026067 + ], + [ + 77.593620551358399, + 13.012854354042499 + ], + [ + 77.593645926389996, + 13.012795642731399 + ], + [ + 77.593666000559594, + 13.012606048042199 + ], + [ + 77.593669000318798, + 13.0126020474531 + ], + [ + 77.5936698952939, + 13.0126007520138 + ], + [ + 77.593673370781303, + 13.012595718560201 + ], + [ + 77.593827203403606, + 13.012372926584399 + ], + [ + 77.593834017306094, + 13.012363057994399 + ], + [ + 77.593872000706099, + 13.0123080475107 + ], + [ + 77.593840549781504, + 13.0122773345882 + ], + [ + 77.593691647485002, + 13.012072917982501 + ], + [ + 77.593493332952093, + 13.0118962278927 + ], + [ + 77.59342159402, + 13.011854219046 + ], + [ + 77.593007097006804, + 13.0116072297816 + ], + [ + 77.5929172963139, + 13.0115461945426 + ], + [ + 77.592727402742597, + 13.011417127657401 + ], + [ + 77.592437524421001, + 13.011234816307001 + ], + [ + 77.592434537581795, + 13.011232882097699 + ], + [ + 77.592410488843498, + 13.011217304259899 + ], + [ + 77.592310785311895, + 13.0111530326799 + ], + [ + 77.592308314210499, + 13.011151432101601 + ], + [ + 77.591985561041795, + 13.0109423671438 + ], + [ + 77.591761161490695, + 13.0107970110891 + ], + [ + 77.591620002043697, + 13.010705573883699 + ], + [ + 77.591108531259707, + 13.0103460464164 + ], + [ + 77.591021214874402, + 13.010289486443799 + ], + [ + 77.590959259618003, + 13.0102493541141 + ], + [ + 77.590604165599601, + 13.010019336884101 + ], + [ + 77.590405490186498, + 13.0103194980606 + ], + [ + 77.589802488320004, + 13.0112305143962 + ], + [ + 77.589112101417399, + 13.012233445319801 + ], + [ + 77.588897452305602, + 13.0125103844875 + ], + [ + 77.588741613615994, + 13.0127114477457 + ], + [ + 77.588540114924697, + 13.0129768297219 + ], + [ + 77.588479328669905, + 13.0130568882643 + ], + [ + 77.588287150505195, + 13.013309993359099 + ], + [ + 77.588119826457799, + 13.0135002557299 + ], + [ + 77.587795192616696, + 13.0137914659804 + ], + [ + 77.587583003796297, + 13.013931357545401 + ], + [ + 77.587434554057694, + 13.0139983371271 + ], + [ + 77.587393290333793, + 13.0140169151748 + ], + [ + 77.587175481616995, + 13.014114981929801 + ], + [ + 77.587158205829695, + 13.0141220556521 + ], + [ + 77.586905411316593, + 13.0142255666635 + ], + [ + 77.5868642016829, + 13.014242440218201 + ], + [ + 77.586853223348498, + 13.0142469368321 + ], + [ + 77.586666606051807, + 13.014298487561501 + ], + [ + 77.586522352991096, + 13.0143259003565 + ], + [ + 77.586237081126399, + 13.0143633583045 + ], + [ + 77.586019744352996, + 13.014391895467501 + ], + [ + 77.585925452955394, + 13.0144037755623 + ], + [ + 77.585733504188894, + 13.0144279613114 + ], + [ + 77.585684339181398, + 13.0144341558916 + ], + [ + 77.585507906063498, + 13.014456387111499 + ], + [ + 77.585250835633204, + 13.0144887782102 + ], + [ + 77.584641741603804, + 13.0145038838132 + ], + [ + 77.584039967818995, + 13.0145119124884 + ], + [ + 77.583994994031102, + 13.0145125124538 + ], + [ + 77.583990069112602, + 13.014512578698101 + ], + [ + 77.583987385544404, + 13.014512613572 + ], + [ + 77.583972694614502, + 13.0145128105653 + ], + [ + 77.583972513131499, + 13.0145146797822 + ], + [ + 77.583944597994901, + 13.014802191024399 + ], + [ + 77.583968724141897, + 13.015907533958201 + ], + [ + 77.583969553490306, + 13.016053581041399 + ], + [ + 77.583970471422006, + 13.0162151934917 + ], + [ + 77.583971187874099, + 13.016341458193001 + ], + [ + 77.583971361991502, + 13.016372120075699 + ], + [ + 77.583972141786106, + 13.016509559682699 + ], + [ + 77.583972354880203, + 13.016547091828899 + ], + [ + 77.583972721476698, + 13.0166116967001 + ], + [ + 77.583974301550995, + 13.016889967213499 + ], + [ + 77.583964945559103, + 13.0172649884765 + ], + [ + 77.583962640489204, + 13.0173556606945 + ], + [ + 77.5839564109679, + 13.0176008528352 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "278", + "group": "Ganganagar", + "Corporatio": "North", + "ac_no": "158", + "ac": "Hebbal", + "corporat_1": "2", + "ward_id": "48", + "ward_name": "48 - Ganganagar", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಹೆಬ್ಬಾಳ", + "ward_name_": "ಗಂಗಾನಗರ", + "dig_ward_n": "Ganganagar", + "Assembly": "158 - Hebbal", + "Slno": "48" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.588298852431507, + 13.0228926905816 + ], + [ + 77.588275060483497, + 13.022842666485801 + ], + [ + 77.588245778086005, + 13.0227911172652 + ], + [ + 77.588128343470899, + 13.0225617384845 + ], + [ + 77.587870597367697, + 13.0226742927 + ], + [ + 77.587844060194897, + 13.022683138424201 + ], + [ + 77.5878314851402, + 13.022686680514999 + ], + [ + 77.587535069895907, + 13.0228091137386 + ], + [ + 77.587087903283503, + 13.0229866382737 + ], + [ + 77.587065464142299, + 13.0229318457201 + ], + [ + 77.587065143652396, + 13.022931062026499 + ], + [ + 77.586920749597596, + 13.022609017355499 + ], + [ + 77.586726143663995, + 13.0226822233493 + ], + [ + 77.586688018892801, + 13.022694967432701 + ], + [ + 77.586670971503494, + 13.0227006657232 + ], + [ + 77.586605048749206, + 13.022722791670899 + ], + [ + 77.586555024653407, + 13.0227374328697 + ], + [ + 77.586524000267104, + 13.0226650473207 + ], + [ + 77.586234058649694, + 13.0227401374358 + ], + [ + 77.586153761463393, + 13.0227609336551 + ], + [ + 77.585717000549806, + 13.0228740468983 + ], + [ + 77.585393504022605, + 13.022956960465001 + ], + [ + 77.585330902453606, + 13.0229730048975 + ], + [ + 77.585274553411693, + 13.0229874474808 + ], + [ + 77.585241000733106, + 13.022996046862101 + ], + [ + 77.585258684972302, + 13.023065742306301 + ], + [ + 77.585273378004302, + 13.023135093523001 + ], + [ + 77.585277580061003, + 13.023151656784799 + ], + [ + 77.585276655862003, + 13.0231518304308 + ], + [ + 77.584992076684998, + 13.0232175421792 + ], + [ + 77.584965822959504, + 13.0232224730384 + ], + [ + 77.584916430491305, + 13.0232352336277 + ], + [ + 77.584784242984199, + 13.0232703512704 + ], + [ + 77.584782829552594, + 13.023270616524799 + ], + [ + 77.584715724058199, + 13.023285867773501 + ], + [ + 77.584724264757497, + 13.0233175903708 + ], + [ + 77.584730175822997, + 13.023350511002899 + ], + [ + 77.584903863653196, + 13.024023904935399 + ], + [ + 77.585105571139593, + 13.0248059275124 + ], + [ + 77.585134498707205, + 13.0249180816496 + ], + [ + 77.585272634640106, + 13.0254536307711 + ], + [ + 77.585361965940805, + 13.025799965636001 + ], + [ + 77.585650144371897, + 13.0268742047035 + ], + [ + 77.585703318246601, + 13.027072419320101 + ], + [ + 77.585907700765304, + 13.027834286771 + ], + [ + 77.585920852490503, + 13.0278833105875 + ], + [ + 77.585929088971497, + 13.027914012078099 + ], + [ + 77.585938291782796, + 13.0279257904693 + ], + [ + 77.585938411847806, + 13.027926083791201 + ], + [ + 77.585929884818, + 13.0279285404341 + ], + [ + 77.585932554753896, + 13.027935342861401 + ], + [ + 77.585965358767396, + 13.0280189239049 + ], + [ + 77.585968517068196, + 13.028026970006101 + ], + [ + 77.585980021192597, + 13.0280562810073 + ], + [ + 77.585983766300799, + 13.028065822762301 + ], + [ + 77.586026721995495, + 13.0281752672241 + ], + [ + 77.586051740534003, + 13.028239009701601 + ], + [ + 77.586062746769798, + 13.0282652702424 + ], + [ + 77.586082600315606, + 13.0283126388918 + ], + [ + 77.586105098417207, + 13.028366316035299 + ], + [ + 77.5861119644496, + 13.028382698169301 + ], + [ + 77.586118068011302, + 13.0283972611658 + ], + [ + 77.586131153811394, + 13.02842848249 + ], + [ + 77.586161783124894, + 13.028501562865999 + ], + [ + 77.586162554095694, + 13.0285034017936 + ], + [ + 77.586162853602204, + 13.028504116132201 + ], + [ + 77.586174417299802, + 13.0285317054741 + ], + [ + 77.586182042995702, + 13.0285499013485 + ], + [ + 77.586599491492805, + 13.0285344751218 + ], + [ + 77.586619764928201, + 13.0281026509147 + ], + [ + 77.587000207499102, + 13.0281288628564 + ], + [ + 77.587039979313005, + 13.028131082013401 + ], + [ + 77.587501362984995, + 13.028189282662501 + ], + [ + 77.587885498304203, + 13.0282237718045 + ], + [ + 77.588160212551301, + 13.028248435623301 + ], + [ + 77.588292253093499, + 13.028255203252 + ], + [ + 77.588276963035199, + 13.0287513093021 + ], + [ + 77.588503180870305, + 13.029854489367301 + ], + [ + 77.590893394863102, + 13.0296569244121 + ], + [ + 77.590936098359506, + 13.0296563143621 + ], + [ + 77.591087638833002, + 13.0296528525712 + ], + [ + 77.591286131290502, + 13.029642806415399 + ], + [ + 77.5922261938112, + 13.0295606707387 + ], + [ + 77.592724294098801, + 13.0295354592382 + ], + [ + 77.593132120041503, + 13.0295158679148 + ], + [ + 77.593231939557, + 13.029514868546901 + ], + [ + 77.593297694252797, + 13.0295903405442 + ], + [ + 77.593403378368905, + 13.0297927963563 + ], + [ + 77.593817974317005, + 13.029752702253999 + ], + [ + 77.593897280810296, + 13.0298368891469 + ], + [ + 77.5938985009102, + 13.030045526229401 + ], + [ + 77.593754529122293, + 13.030246842712399 + ], + [ + 77.593280112945806, + 13.0310656888806 + ], + [ + 77.593828955216097, + 13.0312705065262 + ], + [ + 77.593965606404595, + 13.031266846226499 + ], + [ + 77.593979027503394, + 13.031431559712701 + ], + [ + 77.593984423071305, + 13.031514335556 + ], + [ + 77.594201226364206, + 13.0315626584761 + ], + [ + 77.594308454475794, + 13.0315926128991 + ], + [ + 77.594397965563601, + 13.0316568569929 + ], + [ + 77.594316450949094, + 13.032592576823699 + ], + [ + 77.594463616955395, + 13.032567734289 + ], + [ + 77.594610692083407, + 13.033136560881101 + ], + [ + 77.595200529784904, + 13.033005373653801 + ], + [ + 77.595103077269798, + 13.0325667099453 + ], + [ + 77.595271003994995, + 13.0325896537828 + ], + [ + 77.595325166423706, + 13.032155990992299 + ], + [ + 77.5958322345558, + 13.032297724392899 + ], + [ + 77.596493190397794, + 13.032477050997301 + ], + [ + 77.596426778056397, + 13.032095239812501 + ], + [ + 77.596477451919498, + 13.0318518714086 + ], + [ + 77.596458346751206, + 13.031523677255 + ], + [ + 77.596458223969194, + 13.0314808929466 + ], + [ + 77.596458295293701, + 13.0314777482953 + ], + [ + 77.596458400450103, + 13.031473165044201 + ], + [ + 77.596458425048297, + 13.031472077971401 + ], + [ + 77.596458364286306, + 13.031471994561601 + ], + [ + 77.596458352318393, + 13.0314715538077 + ], + [ + 77.596458347651307, + 13.0314713713617 + ], + [ + 77.596458329303701, + 13.0314706722908 + ], + [ + 77.596458320393694, + 13.031470348048799 + ], + [ + 77.596458314211802, + 13.0314701087018 + ], + [ + 77.596479304655006, + 13.031195340882901 + ], + [ + 77.596481118798295, + 13.031190027692 + ], + [ + 77.596479598667202, + 13.0311900474494 + ], + [ + 77.596467624543806, + 13.0311292001103 + ], + [ + 77.5964746091162, + 13.0310369820363 + ], + [ + 77.596478005810098, + 13.030992132435699 + ], + [ + 77.596486654728096, + 13.030877939810701 + ], + [ + 77.596491289448394, + 13.030621413381001 + ], + [ + 77.596487012521607, + 13.0304919010853 + ], + [ + 77.596493208949596, + 13.030410074937199 + ], + [ + 77.596494000041005, + 13.030399345099299 + ], + [ + 77.596504907372207, + 13.0302514002751 + ], + [ + 77.596505603999503, + 13.030241949737601 + ], + [ + 77.596509979158697, + 13.0301826011179 + ], + [ + 77.596510728324006, + 13.030172445378399 + ], + [ + 77.596511372498298, + 13.030163708173101 + ], + [ + 77.596513584334105, + 13.030133620752601 + ], + [ + 77.596494949748106, + 13.030130323172299 + ], + [ + 77.5964921394756, + 13.030130591657301 + ], + [ + 77.596482295387602, + 13.030123766572901 + ], + [ + 77.596481870116307, + 13.0301238069733 + ], + [ + 77.596479675321902, + 13.030117799483801 + ], + [ + 77.5964775441021, + 13.0301119684292 + ], + [ + 77.596477299384702, + 13.0301112978271 + ], + [ + 77.596476610783895, + 13.0301094129477 + ], + [ + 77.596479710579601, + 13.0299991496018 + ], + [ + 77.596466429912994, + 13.0298754748063 + ], + [ + 77.596436053161099, + 13.0298752426816 + ], + [ + 77.596332828974198, + 13.0298693743068 + ], + [ + 77.5963288417082, + 13.0298693438078 + ], + [ + 77.596093604780506, + 13.0298853717168 + ], + [ + 77.596075997945803, + 13.0298852356054 + ], + [ + 77.596074807235993, + 13.029874165160599 + ], + [ + 77.596046806975707, + 13.0296092103103 + ], + [ + 77.595993663938302, + 13.0291152720115 + ], + [ + 77.595980420988695, + 13.029115404734901 + ], + [ + 77.595929704519605, + 13.0288381117727 + ], + [ + 77.595899810143294, + 13.028674660979201 + ], + [ + 77.595851060093807, + 13.028406547888901 + ], + [ + 77.5958443860941, + 13.0283698406304 + ], + [ + 77.595844076279505, + 13.028368139865099 + ], + [ + 77.595840636634506, + 13.028349220361701 + ], + [ + 77.595557714837696, + 13.0284010847424 + ], + [ + 77.595520666286504, + 13.0284070355554 + ], + [ + 77.595483334420706, + 13.028413032566901 + ], + [ + 77.595435749440497, + 13.0281749664135 + ], + [ + 77.595384870643997, + 13.027914096475101 + ], + [ + 77.595328607085406, + 13.027625618300601 + ], + [ + 77.595315454284304, + 13.0275581797644 + ], + [ + 77.595310823740107, + 13.0275344370125 + ], + [ + 77.595293577762604, + 13.027446013028699 + ], + [ + 77.595264049307801, + 13.0272946155672 + ], + [ + 77.595243977546403, + 13.0271917008423 + ], + [ + 77.5951241856324, + 13.026579657290499 + ], + [ + 77.595098602948298, + 13.026448955791899 + ], + [ + 77.595080817399904, + 13.0263563009773 + ], + [ + 77.595063741187502, + 13.026267344928099 + ], + [ + 77.595055979136902, + 13.026226912824299 + ], + [ + 77.595046137227897, + 13.026176815867 + ], + [ + 77.595035612278707, + 13.0261232421195 + ], + [ + 77.595016127964598, + 13.0260240643673 + ], + [ + 77.595012802232901, + 13.026007133951 + ], + [ + 77.594960887894501, + 13.025741372090801 + ], + [ + 77.594947259652102, + 13.025671605595001 + ], + [ + 77.594940030874497, + 13.025634596660201 + ], + [ + 77.594907563376097, + 13.0254683878349 + ], + [ + 77.594886975634594, + 13.025362777829899 + ], + [ + 77.594877444975396, + 13.0253138919458 + ], + [ + 77.594830094302793, + 13.0250709971177 + ], + [ + 77.594778116680104, + 13.0247399218261 + ], + [ + 77.594750304392207, + 13.0247470844955 + ], + [ + 77.594721315861904, + 13.024754548942701 + ], + [ + 77.594695987429205, + 13.0247610714961 + ], + [ + 77.594693710342398, + 13.024761482774499 + ], + [ + 77.594417118469806, + 13.024811416994201 + ], + [ + 77.594391348540896, + 13.024816069320201 + ], + [ + 77.594346659000706, + 13.024824200477299 + ], + [ + 77.594327181704301, + 13.02482774452 + ], + [ + 77.594245988434494, + 13.0248425182034 + ], + [ + 77.594186246943707, + 13.024853388372399 + ], + [ + 77.593852777425099, + 13.024914063230501 + ], + [ + 77.593835739510695, + 13.0249162367043 + ], + [ + 77.593771053226902, + 13.0249244893539 + ], + [ + 77.593735714913095, + 13.0249289970912 + ], + [ + 77.593680160405597, + 13.024936084124599 + ], + [ + 77.593614903594499, + 13.024944409302 + ], + [ + 77.593577895163605, + 13.024949130684901 + ], + [ + 77.593497360707701, + 13.0249594047846 + ], + [ + 77.593493330023605, + 13.0249594451302 + ], + [ + 77.593217608911402, + 13.0249699106568 + ], + [ + 77.592999211029806, + 13.0249876021053 + ], + [ + 77.592982428099106, + 13.0249914361926 + ], + [ + 77.592976182966893, + 13.0249919757039 + ], + [ + 77.5928851316894, + 13.024993702604799 + ], + [ + 77.592458222923099, + 13.0250361179372 + ], + [ + 77.592454502562404, + 13.025036406316101 + ], + [ + 77.592424615422402, + 13.0250387263335 + ], + [ + 77.592340152347603, + 13.02504274879 + ], + [ + 77.592319615386998, + 13.0250437267006 + ], + [ + 77.592125009453397, + 13.0250577578494 + ], + [ + 77.592068440183894, + 13.0250572875253 + ], + [ + 77.592053256668805, + 13.025058632858199 + ], + [ + 77.592001169313804, + 13.025063248298901 + ], + [ + 77.592000409755698, + 13.0250571071312 + ], + [ + 77.591987766769506, + 13.024970357209099 + ], + [ + 77.591977918319799, + 13.024890697936099 + ], + [ + 77.591977218130395, + 13.0248850377039 + ], + [ + 77.591968044762098, + 13.024810838350099 + ], + [ + 77.591953806814999, + 13.024695671078501 + ], + [ + 77.5919533349375, + 13.024691851566001 + ], + [ + 77.591947336713005, + 13.024643331252699 + ], + [ + 77.591926176081103, + 13.0244721715764 + ], + [ + 77.591918000807894, + 13.0244060470538 + ], + [ + 77.591915076014701, + 13.024116298266099 + ], + [ + 77.591888233817002, + 13.0239955083763 + ], + [ + 77.591816247923006, + 13.0239833073773 + ], + [ + 77.591731908039407, + 13.0239660409833 + ], + [ + 77.591724587918193, + 13.023961955629099 + ], + [ + 77.5917204700811, + 13.0239570752295 + ], + [ + 77.591693017833407, + 13.023949754630101 + ], + [ + 77.591681956458999, + 13.023947889455799 + ], + [ + 77.591396838583407, + 13.023926572732099 + ], + [ + 77.591275792827801, + 13.0239009219822 + ], + [ + 77.591268728094093, + 13.023899730534399 + ], + [ + 77.591217483898404, + 13.023882344110801 + ], + [ + 77.591206006016904, + 13.0238838411433 + ], + [ + 77.591193568894695, + 13.023880768662799 + ], + [ + 77.591184349283097, + 13.0238818166911 + ], + [ + 77.591160444228294, + 13.0238751760239 + ], + [ + 77.591148243229298, + 13.023874413461501 + ], + [ + 77.591110115107497, + 13.0238655677372 + ], + [ + 77.591089983459199, + 13.0238637375874 + ], + [ + 77.591075898090907, + 13.023869935054501 + ], + [ + 77.591059946586, + 13.0238674595366 + ], + [ + 77.591047890012703, + 13.0238725833117 + ], + [ + 77.590995730742094, + 13.023860077287701 + ], + [ + 77.590950587045896, + 13.023860077287701 + ], + [ + 77.590900257925199, + 13.023853366738299 + ], + [ + 77.590852521516695, + 13.023851536588399 + ], + [ + 77.590818816256999, + 13.0238454360889 + ], + [ + 77.590785110997302, + 13.023842995889201 + ], + [ + 77.590749880612705, + 13.023839640614399 + ], + [ + 77.590716022840596, + 13.0238341501649 + ], + [ + 77.590696806267204, + 13.0238314049401 + ], + [ + 77.590673014319194, + 13.023828049665401 + ], + [ + 77.590661451692597, + 13.0238253487547 + ], + [ + 77.590650569934397, + 13.0238264901737 + ], + [ + 77.5906489979089, + 13.0238266549571 + ], + [ + 77.590642969359294, + 13.023827287103 + ], + [ + 77.590622837710995, + 13.023822559215899 + ], + [ + 77.590620637059601, + 13.0238227899106 + ], + [ + 77.590616648808606, + 13.023823188447199 + ], + [ + 77.590600311077694, + 13.023824822576501 + ], + [ + 77.590582813592405, + 13.023826572194499 + ], + [ + 77.590580637684297, + 13.0238267899934 + ], + [ + 77.590560409751006, + 13.0238243775025 + ], + [ + 77.590560307599802, + 13.023824389365 + ], + [ + 77.590549174187501, + 13.023823626802599 + ], + [ + 77.590550743841703, + 13.0238261621039 + ], + [ + 77.590540998178, + 13.0238266850525 + ], + [ + 77.590532048786599, + 13.023827314776399 + ], + [ + 77.590508915335903, + 13.023823436620599 + ], + [ + 77.590506887907694, + 13.0238235788529 + ], + [ + 77.590499297600005, + 13.023824034177199 + ], + [ + 77.590486720317102, + 13.0238209578329 + ], + [ + 77.590479094692299, + 13.0238198902465 + ], + [ + 77.590472689167399, + 13.0238194327099 + ], + [ + 77.590460411912204, + 13.0237524034718 + ], + [ + 77.590354000780096, + 13.0233660476772 + ], + [ + 77.590349629049697, + 13.023344983538101 + ], + [ + 77.590283463546001, + 13.0230261869195 + ], + [ + 77.590283122109597, + 13.023024541564601 + ], + [ + 77.590277000555403, + 13.0229950468973 + ], + [ + 77.590280980971201, + 13.0229399694527 + ], + [ + 77.590285716146298, + 13.0229239439801 + ], + [ + 77.5903127035685, + 13.0228649333091 + ], + [ + 77.590332613478907, + 13.0227975449735 + ], + [ + 77.590339306463207, + 13.0227767207629 + ], + [ + 77.590345908433406, + 13.022756182043899 + ], + [ + 77.5903574942311, + 13.022720138455201 + ], + [ + 77.590385378723298, + 13.0226287941696 + ], + [ + 77.590385912516794, + 13.022627497813399 + ], + [ + 77.590395940209604, + 13.022594364475299 + ], + [ + 77.590349429184997, + 13.022593038823 + ], + [ + 77.590339459632006, + 13.022590190569501 + ], + [ + 77.590331327253907, + 13.022587866915901 + ], + [ + 77.590309101100104, + 13.0225864972289 + ], + [ + 77.590279536901306, + 13.022584674185 + ], + [ + 77.590254655442195, + 13.0225831404096 + ], + [ + 77.590042985234803, + 13.022567838983999 + ], + [ + 77.5900176034189, + 13.022565414882299 + ], + [ + 77.589972876260603, + 13.0225611423591 + ], + [ + 77.589929257707894, + 13.022556975291501 + ], + [ + 77.589897793347006, + 13.022551367635399 + ], + [ + 77.589749756255998, + 13.022530013058001 + ], + [ + 77.589711375474707, + 13.022526346510899 + ], + [ + 77.589686716064804, + 13.0225233053377 + ], + [ + 77.589500650830502, + 13.0225147646384 + ], + [ + 77.589437180045394, + 13.022511302497399 + ], + [ + 77.589420734287202, + 13.0225092741889 + ], + [ + 77.589451236784697, + 13.022603831930899 + ], + [ + 77.589478670510999, + 13.022704565103 + ], + [ + 77.589489669931396, + 13.022757564518001 + ], + [ + 77.589510411629703, + 13.022874694108101 + ], + [ + 77.589543469849005, + 13.0230806592532 + ], + [ + 77.589546404576495, + 13.0230964472645 + ], + [ + 77.589551895026005, + 13.0231501316599 + ], + [ + 77.589572026674503, + 13.023259025575801 + ], + [ + 77.589562728139299, + 13.023260635365 + ], + [ + 77.589549337688197, + 13.02326295278 + ], + [ + 77.589530418698303, + 13.023266227069501 + ], + [ + 77.589404262938601, + 13.023279157224099 + ], + [ + 77.589246870051895, + 13.023304779321901 + ], + [ + 77.589116972548695, + 13.023331668782699 + ], + [ + 77.589073005814896, + 13.023337722019299 + ], + [ + 77.589032742519905, + 13.0233438225186 + ], + [ + 77.589032742519905, + 13.0233438225186 + ], + [ + 77.589055258398901, + 13.023519420738699 + ], + [ + 77.588969852858895, + 13.023554716262099 + ], + [ + 77.588909255739296, + 13.023394214410001 + ], + [ + 77.588857190240006, + 13.023267658252299 + ], + [ + 77.588834178640099, + 13.0232125749886 + ], + [ + 77.588816650955295, + 13.0231880881392 + ], + [ + 77.5887334259629, + 13.023065905917599 + ], + [ + 77.588443333405394, + 13.023187897510001 + ], + [ + 77.588298852431507, + 13.0228926905816 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "279", + "group": "Jaya Chamarajendra Nagara", + "Corporatio": "North", + "ac_no": "158", + "ac": "Hebbal", + "corporat_1": "2", + "ward_id": "50", + "ward_name": "50 - Jaya Chamarajendra Nagara", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ಹೆಬ್ಬಾಳ", + "ward_name_": "ಜಯ ಚಾಮರಾಜೇಂದ್ರ ನಗರ", + "dig_ward_n": "Jaya Chamarajendra Nagara", + "Assembly": "158 - Hebbal", + "Slno": "50" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.594351415972298, + 13.0078886029334 + ], + [ + 77.594257779078205, + 13.007643187165 + ], + [ + 77.593968205326206, + 13.0069201154131 + ], + [ + 77.593758588064603, + 13.0064841516073 + ], + [ + 77.593534700255702, + 13.006018505120601 + ], + [ + 77.593327857201203, + 13.005588306549299 + ], + [ + 77.593262900873697, + 13.005654502376601 + ], + [ + 77.593238213591107, + 13.0057168610766 + ], + [ + 77.593170481421794, + 13.0059038712008 + ], + [ + 77.593160807736894, + 13.005917719951199 + ], + [ + 77.593142679574797, + 13.005943673383999 + ], + [ + 77.593117991314799, + 13.0060060311882 + ], + [ + 77.593107622510502, + 13.0060286131497 + ], + [ + 77.593069530223701, + 13.006111568593299 + ], + [ + 77.592964832868404, + 13.0063395737535 + ], + [ + 77.592822368477499, + 13.006568127995999 + ], + [ + 77.592679374620204, + 13.006797531301601 + ], + [ + 77.5923107321034, + 13.007396352196301 + ], + [ + 77.592281308286999, + 13.007446335080701 + ], + [ + 77.592061327654605, + 13.0078147302033 + ], + [ + 77.591852368198403, + 13.008164667285399 + ], + [ + 77.591700609015405, + 13.008418812649801 + ], + [ + 77.5911520942891, + 13.0092193146812 + ], + [ + 77.591000715607905, + 13.0094392556349 + ], + [ + 77.590791602555001, + 13.009743080747 + ], + [ + 77.590694333314005, + 13.0098844054076 + ], + [ + 77.590667641364504, + 13.0099231863386 + ], + [ + 77.590662540544201, + 13.0099311423405 + ], + [ + 77.590604165599601, + 13.010019336884101 + ], + [ + 77.590959259618003, + 13.0102493541141 + ], + [ + 77.591021214874402, + 13.010289486443799 + ], + [ + 77.591108531259707, + 13.0103460464164 + ], + [ + 77.591620002043697, + 13.010705573883699 + ], + [ + 77.591761161490695, + 13.0107970110891 + ], + [ + 77.591985561041795, + 13.0109423671438 + ], + [ + 77.592308314210499, + 13.011151432101601 + ], + [ + 77.592310785311895, + 13.0111530326799 + ], + [ + 77.592410488843498, + 13.011217304259899 + ], + [ + 77.592434537581795, + 13.011232882097699 + ], + [ + 77.592437524421001, + 13.011234816307001 + ], + [ + 77.592727402742597, + 13.011417127657401 + ], + [ + 77.5929172963139, + 13.0115461945426 + ], + [ + 77.593007097006804, + 13.0116072297816 + ], + [ + 77.59342159402, + 13.011854219046 + ], + [ + 77.593493332952093, + 13.0118962278927 + ], + [ + 77.593691647485002, + 13.012072917982501 + ], + [ + 77.593840549781504, + 13.0122773345882 + ], + [ + 77.593872000706099, + 13.0123080475107 + ], + [ + 77.593834017306094, + 13.012363057994399 + ], + [ + 77.593827203403606, + 13.012372926584399 + ], + [ + 77.593673370781303, + 13.012595718560201 + ], + [ + 77.5936698952939, + 13.0126007520138 + ], + [ + 77.593669000318798, + 13.0126020474531 + ], + [ + 77.593666000559594, + 13.012606048042199 + ], + [ + 77.593645926389996, + 13.012795642731399 + ], + [ + 77.593620551358399, + 13.012854354042499 + ], + [ + 77.593570912351595, + 13.012985026067 + ], + [ + 77.593580237968794, + 13.0131779087622 + ], + [ + 77.593582851112103, + 13.013231955791801 + ], + [ + 77.593583000286401, + 13.013235047653801 + ], + [ + 77.593626790297606, + 13.0135383085514 + ], + [ + 77.593649999995904, + 13.0136990473473 + ], + [ + 77.593648000797899, + 13.013727047559501 + ], + [ + 77.593645235149694, + 13.013769140857899 + ], + [ + 77.593642448800694, + 13.013811546951199 + ], + [ + 77.593640206577206, + 13.013845678481999 + ], + [ + 77.593638999976804, + 13.013864047400901 + ], + [ + 77.593617000745695, + 13.0139050474929 + ], + [ + 77.593595000587001, + 13.0139460475934 + ], + [ + 77.593575042957397, + 13.013983937523699 + ], + [ + 77.593493073809, + 13.014139560588101 + ], + [ + 77.593457000227701, + 13.014208047453099 + ], + [ + 77.593449322633504, + 13.0142167330542 + ], + [ + 77.593358000135197, + 13.0143200478328 + ], + [ + 77.593339484206098, + 13.014341004748299 + ], + [ + 77.593306792435797, + 13.014378007473701 + ], + [ + 77.593290747058106, + 13.014396168849499 + ], + [ + 77.593273190944501, + 13.014416041077499 + ], + [ + 77.593267000447696, + 13.014423047679101 + ], + [ + 77.593252680591306, + 13.014429411933699 + ], + [ + 77.593235979900697, + 13.014436834429301 + ], + [ + 77.5930371033337, + 13.014572346505799 + ], + [ + 77.592846797764807, + 13.0146246324733 + ], + [ + 77.592832965447599, + 13.014630747002901 + ], + [ + 77.592823174056704, + 13.014635075691199 + ], + [ + 77.592807581738398, + 13.0146419676064 + ], + [ + 77.592787629339298, + 13.0146507876812 + ], + [ + 77.592777315176093, + 13.014655347453701 + ], + [ + 77.592776947355702, + 13.014657188715001 + ], + [ + 77.5927765891429, + 13.014658979287899 + ], + [ + 77.592775851687605, + 13.0146626645389 + ], + [ + 77.592774815621297, + 13.014667847054501 + ], + [ + 77.592751747272104, + 13.0147073142184 + ], + [ + 77.592724938612704, + 13.014841359979499 + ], + [ + 77.592704000475393, + 13.014946047794901 + ], + [ + 77.592684556410703, + 13.015009063361401 + ], + [ + 77.592682382448601, + 13.0150161047765 + ], + [ + 77.592681273620002, + 13.015019695266799 + ], + [ + 77.592679002500105, + 13.015027051144701 + ], + [ + 77.592661568591296, + 13.0150405213 + ], + [ + 77.592632308243196, + 13.015063128684501 + ], + [ + 77.592670499821097, + 13.0152020688612 + ], + [ + 77.592711291338503, + 13.0153504690742 + ], + [ + 77.592740609018904, + 13.0154563293113 + ], + [ + 77.592773522411207, + 13.015575705080799 + ], + [ + 77.592853351873501, + 13.015885906512301 + ], + [ + 77.593621137623799, + 13.0158455035453 + ], + [ + 77.593667986875104, + 13.0164048183843 + ], + [ + 77.593710845225502, + 13.016532719695901 + ], + [ + 77.593805356649099, + 13.0165106480568 + ], + [ + 77.594071479474394, + 13.016503324354201 + ], + [ + 77.594339881859199, + 13.0165627858281 + ], + [ + 77.594809502983907, + 13.016629562435799 + ], + [ + 77.594900031659407, + 13.0166410785308 + ], + [ + 77.595100452624095, + 13.0167152027015 + ], + [ + 77.595093840971302, + 13.016841116930401 + ], + [ + 77.595016622579394, + 13.017414420827 + ], + [ + 77.594929564133196, + 13.017499190988101 + ], + [ + 77.594799180690003, + 13.017556162557399 + ], + [ + 77.594735561402004, + 13.0175850315819 + ], + [ + 77.594720179526604, + 13.017600995597901 + ], + [ + 77.594572567976101, + 13.0176679177967 + ], + [ + 77.594568718858497, + 13.017747998413901 + ], + [ + 77.5945912887491, + 13.0178816748095 + ], + [ + 77.594588379202506, + 13.018020758293799 + ], + [ + 77.594755299964106, + 13.018564030703899 + ], + [ + 77.594752420980797, + 13.018564059522101 + ], + [ + 77.594359633909207, + 13.018669627080399 + ], + [ + 77.593946656728804, + 13.0187824790529 + ], + [ + 77.594219332727604, + 13.019709418153701 + ], + [ + 77.594413500534998, + 13.020252781482601 + ], + [ + 77.595914628526302, + 13.0198462589751 + ], + [ + 77.596060375048793, + 13.0198150194491 + ], + [ + 77.596620542333, + 13.0196558693636 + ], + [ + 77.596885052636296, + 13.0196081474081 + ], + [ + 77.596968055031198, + 13.0196663555301 + ], + [ + 77.597163684335101, + 13.020192645553401 + ], + [ + 77.5974667526948, + 13.0201085963187 + ], + [ + 77.597697824937697, + 13.020645180136 + ], + [ + 77.597904311159994, + 13.021188918972101 + ], + [ + 77.5979745713814, + 13.021338484722 + ], + [ + 77.597794787889399, + 13.021376436797 + ], + [ + 77.597852912253003, + 13.0215560805899 + ], + [ + 77.597910205558094, + 13.0218079786166 + ], + [ + 77.5980227760069, + 13.0221584358593 + ], + [ + 77.598072762344302, + 13.022348889904199 + ], + [ + 77.598113186993302, + 13.022548687908699 + ], + [ + 77.598257025908495, + 13.0225146185777 + ], + [ + 77.598445417801102, + 13.0224567101424 + ], + [ + 77.598543078066697, + 13.0224397284949 + ], + [ + 77.598608963461203, + 13.022627623879099 + ], + [ + 77.598663867956503, + 13.022864323259199 + ], + [ + 77.598686627915697, + 13.0229468063879 + ], + [ + 77.598700727196402, + 13.0230072583196 + ], + [ + 77.598754794580302, + 13.0231776203434 + ], + [ + 77.598805677072207, + 13.0233464606076 + ], + [ + 77.598873825895097, + 13.0234995909289 + ], + [ + 77.599009117399603, + 13.023523179982799 + ], + [ + 77.599061758881305, + 13.023556832824401 + ], + [ + 77.599149711239903, + 13.0235750735125 + ], + [ + 77.5992535041363, + 13.0236043881738 + ], + [ + 77.599551617862801, + 13.023536248711 + ], + [ + 77.599739641567695, + 13.0234846448092 + ], + [ + 77.599779868550002, + 13.023571070890799 + ], + [ + 77.599904114296606, + 13.0235097568419 + ], + [ + 77.600091554226793, + 13.0234265675827 + ], + [ + 77.6002390941062, + 13.0233598861444 + ], + [ + 77.600363765685003, + 13.023299663159399 + ], + [ + 77.600638784733505, + 13.023165906192901 + ], + [ + 77.6006582560032, + 13.023155547218501 + ], + [ + 77.600756287896701, + 13.023102938164699 + ], + [ + 77.600859830708799, + 13.023047322892699 + ], + [ + 77.600943908464501, + 13.022992321872101 + ], + [ + 77.600541827722907, + 13.021854649426899 + ], + [ + 77.600362401856799, + 13.021348224047401 + ], + [ + 77.600207453633701, + 13.0209579651923 + ], + [ + 77.600189767231498, + 13.020918617652899 + ], + [ + 77.6001190216883, + 13.020761227472001 + ], + [ + 77.6000294265273, + 13.0205633720779 + ], + [ + 77.600008261834503, + 13.020521800837599 + ], + [ + 77.5998771843539, + 13.0202667679228 + ], + [ + 77.599842340467106, + 13.020183550309801 + ], + [ + 77.599830691995507, + 13.020060575031801 + ], + [ + 77.599797443084796, + 13.019854249280799 + ], + [ + 77.599766171892099, + 13.019782288661199 + ], + [ + 77.599740705811001, + 13.019714786951599 + ], + [ + 77.599637128826998, + 13.0195565965226 + ], + [ + 77.5995237974237, + 13.019346556706299 + ], + [ + 77.599374272226498, + 13.0190894497531 + ], + [ + 77.599257533648597, + 13.0188839610478 + ], + [ + 77.599210603572999, + 13.018823697726001 + ], + [ + 77.599191344257306, + 13.0187989670478 + ], + [ + 77.599169399113805, + 13.018770786904099 + ], + [ + 77.599017068810596, + 13.018631153506799 + ], + [ + 77.598809931053495, + 13.018426570852499 + ], + [ + 77.598739929097405, + 13.018340317583601 + ], + [ + 77.598644274360097, + 13.0182238307112 + ], + [ + 77.598584988915704, + 13.0181160135034 + ], + [ + 77.598460566086104, + 13.0178914033817 + ], + [ + 77.598447627865099, + 13.0178655594747 + ], + [ + 77.598360033544196, + 13.0176936565862 + ], + [ + 77.598329315376404, + 13.0176194315438 + ], + [ + 77.598233647395503, + 13.0173911451521 + ], + [ + 77.598140353413797, + 13.0171696106209 + ], + [ + 77.598119083473804, + 13.0171178765804 + ], + [ + 77.597854341755095, + 13.016559429991799 + ], + [ + 77.597849629513803, + 13.016549313624299 + ], + [ + 77.597798502103501, + 13.0164531896159 + ], + [ + 77.597731506017695, + 13.016312713718101 + ], + [ + 77.597680093148398, + 13.0162154578562 + ], + [ + 77.597665062966598, + 13.016154626924299 + ], + [ + 77.597652747002797, + 13.016077958769699 + ], + [ + 77.597667703205801, + 13.0159544238654 + ], + [ + 77.597690392090797, + 13.0157670275194 + ], + [ + 77.597684790801594, + 13.015722079272701 + ], + [ + 77.597679709393006, + 13.0156813086978 + ], + [ + 77.597644678858799, + 13.015580023788299 + ], + [ + 77.597581731, + 13.015473057730601 + ], + [ + 77.597544941162695, + 13.0154105403454 + ], + [ + 77.597519812141499, + 13.0153678394135 + ], + [ + 77.597500473438998, + 13.015330580552099 + ], + [ + 77.597400856909402, + 13.015138748551101 + ], + [ + 77.5973722440648, + 13.0150836449699 + ], + [ + 77.597200136658699, + 13.0147521920026 + ], + [ + 77.5971754477752, + 13.014703879915301 + ], + [ + 77.596978713424505, + 13.014391908307999 + ], + [ + 77.596925826683901, + 13.014314061771101 + ], + [ + 77.596777537989396, + 13.0140957909697 + ], + [ + 77.596622802188804, + 13.013835345588999 + ], + [ + 77.596543789388605, + 13.013713044331899 + ], + [ + 77.596457054204606, + 13.013579712676 + ], + [ + 77.596283955851305, + 13.013313619178099 + ], + [ + 77.596275764614703, + 13.0133012790116 + ], + [ + 77.596101276945504, + 13.0130240915407 + ], + [ + 77.595933945976, + 13.01277054731 + ], + [ + 77.595851455706594, + 13.0126460219445 + ], + [ + 77.595798531711907, + 13.0125048719723 + ], + [ + 77.595792819230496, + 13.012489637671299 + ], + [ + 77.595690058632698, + 13.0121880166824 + ], + [ + 77.595573714527106, + 13.011853782154599 + ], + [ + 77.595571815582005, + 13.0118482893234 + ], + [ + 77.595562433834004, + 13.0118211456581 + ], + [ + 77.595391449624799, + 13.011382433867899 + ], + [ + 77.595634351031904, + 13.011285002636701 + ], + [ + 77.595773020132796, + 13.011229379986499 + ], + [ + 77.595768056050503, + 13.011217176428101 + ], + [ + 77.595758937648299, + 13.0111939103711 + ], + [ + 77.595709166104101, + 13.011066924373001 + ], + [ + 77.595634229612898, + 13.0108756859438 + ], + [ + 77.595476083522598, + 13.010473683407801 + ], + [ + 77.5954748976324, + 13.0104703074058 + ], + [ + 77.595379734886393, + 13.010233977385401 + ], + [ + 77.595353481739494, + 13.010168779424699 + ], + [ + 77.5953511316267, + 13.0101642857811 + ], + [ + 77.595341319861404, + 13.010051454977701 + ], + [ + 77.595168043577502, + 13.0095829911966 + ], + [ + 77.595071708730103, + 13.009322543709199 + ], + [ + 77.594989380489906, + 13.009100726134101 + ], + [ + 77.594974662272094, + 13.009108920249901 + ], + [ + 77.594922901868202, + 13.009137785009401 + ], + [ + 77.594910198371906, + 13.0091448576791 + ], + [ + 77.5948382927712, + 13.009184888945899 + ], + [ + 77.594832121480394, + 13.009188324999799 + ], + [ + 77.594829351402197, + 13.0091898668627 + ], + [ + 77.594778694018203, + 13.0092180692277 + ], + [ + 77.594752361082797, + 13.009233013417401 + ], + [ + 77.594708766116597, + 13.009105807249499 + ], + [ + 77.594615774038402, + 13.0088345630507 + ], + [ + 77.594565576687998, + 13.0086280108107 + ], + [ + 77.594507221668593, + 13.0083878910929 + ], + [ + 77.594435900734496, + 13.0080944182021 + ], + [ + 77.594351415972298, + 13.0078886029334 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "304", + "group": "SUNKENHALLI", + "Corporatio": "Central", + "ac_no": "169", + "ac": "Chickpet", + "corporat_1": "1", + "ward_id": "57", + "ward_name": "57 - Sunkenhalli", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಿಕ್ಕಪೇಟೆ", + "ward_name_": "ಸುಂಕೇನಹಳ್ಳಿ", + "dig_ward_n": "SUNKENHALLI", + "Assembly": "169 - Chickpet", + "Slno": "57" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.567648046077196, + 12.942494855465201 + ], + [ + 77.567492603378497, + 12.9422693940427 + ], + [ + 77.566998445716095, + 12.9417423528628 + ], + [ + 77.566939851615501, + 12.9416588653303 + ], + [ + 77.566848887592897, + 12.941529255398001 + ], + [ + 77.566771998030404, + 12.9413289940419 + ], + [ + 77.566727540450998, + 12.9411476116872 + ], + [ + 77.566721240919605, + 12.9410945957904 + ], + [ + 77.566671755631603, + 12.940703209830501 + ], + [ + 77.566647938392606, + 12.9401760529725 + ], + [ + 77.566494913495404, + 12.9401865941328 + ], + [ + 77.566324527248099, + 12.940188271578201 + ], + [ + 77.566169602087299, + 12.9401818914865 + ], + [ + 77.566075749325194, + 12.940124090813599 + ], + [ + 77.566028959545207, + 12.940052275024099 + ], + [ + 77.565987558417703, + 12.940000733908599 + ], + [ + 77.565949782345598, + 12.9399096309612 + ], + [ + 77.565922895015206, + 12.9397574376372 + ], + [ + 77.565907027066203, + 12.939331840799101 + ], + [ + 77.5644778685229, + 12.939301859802899 + ], + [ + 77.564338520343199, + 12.9392987132427 + ], + [ + 77.564029983635194, + 12.939301747942499 + ], + [ + 77.563973019523701, + 12.939304566829 + ], + [ + 77.564044492944006, + 12.9394258304253 + ], + [ + 77.564203834712202, + 12.9396952999305 + ], + [ + 77.564289377489501, + 12.939841270059301 + ], + [ + 77.564401849651205, + 12.940031018696899 + ], + [ + 77.564978881282599, + 12.9410067199639 + ], + [ + 77.565031735191695, + 12.941333702369301 + ], + [ + 77.565098718316094, + 12.9417475032403 + ], + [ + 77.564345639492302, + 12.941740232068 + ], + [ + 77.564295536263501, + 12.9417384663462 + ], + [ + 77.564289218289005, + 12.9421902562972 + ], + [ + 77.564285428632203, + 12.9424952098363 + ], + [ + 77.564284750695293, + 12.9425619502512 + ], + [ + 77.564284567839493, + 12.9425799172641 + ], + [ + 77.564282551366503, + 12.9428893706298 + ], + [ + 77.564281430364503, + 12.9431175041824 + ], + [ + 77.564278578878103, + 12.9432327228179 + ], + [ + 77.564271324063199, + 12.943536581117201 + ], + [ + 77.564270765821007, + 12.9435597222986 + ], + [ + 77.564269895861102, + 12.943595794995501 + ], + [ + 77.564263643804594, + 12.9438551247517 + ], + [ + 77.564263183659193, + 12.943866422473 + ], + [ + 77.564262579230601, + 12.9438937832458 + ], + [ + 77.564261999468599, + 12.9439200433672 + ], + [ + 77.564256102200204, + 12.9441872188514 + ], + [ + 77.564255285020096, + 12.944221065817301 + ], + [ + 77.564251250364705, + 12.9443882854368 + ], + [ + 77.564249238398403, + 12.944473004185101 + ], + [ + 77.564249775261104, + 12.9446943454929 + ], + [ + 77.564249823322996, + 12.9447553282637 + ], + [ + 77.564248883382106, + 12.945226263665599 + ], + [ + 77.564248723783507, + 12.9452763979781 + ], + [ + 77.564247926358306, + 12.9455266720129 + ], + [ + 77.564244986443498, + 12.9457457888813 + ], + [ + 77.564243713740396, + 12.945837214830499 + ], + [ + 77.564238681233803, + 12.946198707948099 + ], + [ + 77.564238322595301, + 12.946224969504801 + ], + [ + 77.564237458336507, + 12.946270327856499 + ], + [ + 77.564236869755902, + 12.946301214657201 + ], + [ + 77.564236274528497, + 12.9463324421259 + ], + [ + 77.564235979571805, + 12.946347910377799 + ], + [ + 77.564235455341404, + 12.946375452856801 + ], + [ + 77.564234802287999, + 12.946409761677399 + ], + [ + 77.564234174903902, + 12.946442707834599 + ], + [ + 77.564233496614605, + 12.946478331431001 + ], + [ + 77.564233463562601, + 12.946480052838799 + ], + [ + 77.564232946927405, + 12.946507167005 + ], + [ + 77.564232592001304, + 12.9465257771613 + ], + [ + 77.564232114431704, + 12.946550857265001 + ], + [ + 77.564230189528999, + 12.946651908719 + ], + [ + 77.564223441906293, + 12.9469853826772 + ], + [ + 77.564217335220505, + 12.9472872302903 + ], + [ + 77.564477110294106, + 12.947287835662699 + ], + [ + 77.567768786309898, + 12.947333262606101 + ], + [ + 77.567763257322696, + 12.948152774108801 + ], + [ + 77.567755198741295, + 12.948365799217299 + ], + [ + 77.567681118104105, + 12.9503241566235 + ], + [ + 77.567667571667897, + 12.9506822761573 + ], + [ + 77.566387370987798, + 12.950770753232501 + ], + [ + 77.566618097980196, + 12.952842983646599 + ], + [ + 77.567585933737206, + 12.952840479508501 + ], + [ + 77.567547965646497, + 12.953844221349 + ], + [ + 77.567543345998104, + 12.953966354091399 + ], + [ + 77.567530835423099, + 12.9542623582405 + ], + [ + 77.567521038131602, + 12.954486059411201 + ], + [ + 77.567447736635401, + 12.9561412806981 + ], + [ + 77.567412355872094, + 12.9569260470203 + ], + [ + 77.567404749478996, + 12.957094766841699 + ], + [ + 77.567405575061599, + 12.9570947885148 + ], + [ + 77.567777019516697, + 12.957104677315501 + ], + [ + 77.567868838346101, + 12.957107937584 + ], + [ + 77.567904490118394, + 12.957109203144199 + ], + [ + 77.568047223461903, + 12.9571142713179 + ], + [ + 77.568513491367, + 12.9571308272238 + ], + [ + 77.568535497615898, + 12.9571316084449 + ], + [ + 77.568573538816693, + 12.957132958754199 + ], + [ + 77.568647049863301, + 12.957135531137 + ], + [ + 77.568874365156105, + 12.957143484803 + ], + [ + 77.569630948885802, + 12.9571699561646 + ], + [ + 77.569651997430398, + 12.957170678079301 + ], + [ + 77.570423425324094, + 12.957197142439 + ], + [ + 77.570754584161904, + 12.957208553957701 + ], + [ + 77.572144589758906, + 12.957228705095799 + ], + [ + 77.5730854708235, + 12.957243123902 + ], + [ + 77.573152555530498, + 12.9572471127744 + ], + [ + 77.573222076336094, + 12.957251245594099 + ], + [ + 77.573264630353904, + 12.9572537756837 + ], + [ + 77.573335185170706, + 12.957265574858599 + ], + [ + 77.573379396588507, + 12.9572729689787 + ], + [ + 77.5734361018595, + 12.957300641283499 + ], + [ + 77.5735288116867, + 12.957358449088 + ], + [ + 77.573632219919702, + 12.954802052642799 + ], + [ + 77.573698221961905, + 12.9531704184887 + ], + [ + 77.573706791587099, + 12.950810073279399 + ], + [ + 77.573714272913094, + 12.948790926997599 + ], + [ + 77.573716102506907, + 12.948297263382999 + ], + [ + 77.573716469424099, + 12.948276932151201 + ], + [ + 77.5738011123495, + 12.9482783545927 + ], + [ + 77.573799778672907, + 12.9473636254792 + ], + [ + 77.573799303259193, + 12.947317328404001 + ], + [ + 77.573798470983405, + 12.9469559569404 + ], + [ + 77.573798895888601, + 12.9469412716933 + ], + [ + 77.573798260831396, + 12.946599096569299 + ], + [ + 77.573798156478603, + 12.9465889337961 + ], + [ + 77.573796712737504, + 12.945887645566399 + ], + [ + 77.573796627514497, + 12.9458232756466 + ], + [ + 77.573795523940504, + 12.945042932206601 + ], + [ + 77.573795751714698, + 12.9445469413109 + ], + [ + 77.576838960436902, + 12.944546062907801 + ], + [ + 77.576982777023801, + 12.9445226151699 + ], + [ + 77.577153270395797, + 12.9444471796662 + ], + [ + 77.577293923626002, + 12.9444150597107 + ], + [ + 77.577474507232395, + 12.9443436655343 + ], + [ + 77.577557987695997, + 12.9443156143252 + ], + [ + 77.577645031144897, + 12.9441872636447 + ], + [ + 77.5776500376966, + 12.944170274495599 + ], + [ + 77.577661731258701, + 12.9441317623417 + ], + [ + 77.577706737007802, + 12.944029679413701 + ], + [ + 77.577748945834102, + 12.9439355293086 + ], + [ + 77.577767502806694, + 12.943655255065099 + ], + [ + 77.578895140234707, + 12.943656819480299 + ], + [ + 77.5789082755349, + 12.942596582118901 + ], + [ + 77.577775287560598, + 12.9425716791059 + ], + [ + 77.577792588505304, + 12.9406332812688 + ], + [ + 77.578011443423804, + 12.9406413482172 + ], + [ + 77.578532889729203, + 12.9406506304588 + ], + [ + 77.579273489261396, + 12.9406638126333 + ], + [ + 77.580065840288, + 12.9406489269309 + ], + [ + 77.580107845172606, + 12.9374776947159 + ], + [ + 77.580101477057994, + 12.937477180430699 + ], + [ + 77.580036975549405, + 12.936774538584499 + ], + [ + 77.580035029509503, + 12.9367745578403 + ], + [ + 77.580034965848995, + 12.93677463707 + ], + [ + 77.578814553227701, + 12.938281835424601 + ], + [ + 77.578102838223302, + 12.9391607004754 + ], + [ + 77.577675931339499, + 12.939688921214699 + ], + [ + 77.577679791281795, + 12.939728408859899 + ], + [ + 77.577702962592397, + 12.9399664639171 + ], + [ + 77.577737045442106, + 12.940313954019 + ], + [ + 77.577757635902501, + 12.940524931153901 + ], + [ + 77.5777561295601, + 12.9405464029168 + ], + [ + 77.577756640267694, + 12.940596087453301 + ], + [ + 77.577440622101804, + 12.940599212313 + ], + [ + 77.577260451416393, + 12.940600993710399 + ], + [ + 77.576908759906502, + 12.9406033855825 + ], + [ + 77.576894342107593, + 12.9406034838415 + ], + [ + 77.576828145183796, + 12.9406041382246 + ], + [ + 77.573894603456907, + 12.9406275688895 + ], + [ + 77.573844616890696, + 12.940627967590901 + ], + [ + 77.573844440731193, + 12.9406300093193 + ], + [ + 77.573842998161595, + 12.9406946129776 + ], + [ + 77.573787912479602, + 12.9406886484299 + ], + [ + 77.573787737967905, + 12.940695158603701 + ], + [ + 77.573787732830894, + 12.9406960042833 + ], + [ + 77.573787709714395, + 12.9406996752271 + ], + [ + 77.573787699826696, + 12.940701224740801 + ], + [ + 77.573778512534503, + 12.9421520620769 + ], + [ + 77.573771270032907, + 12.943297255801999 + ], + [ + 77.573780391939707, + 12.9436811317248 + ], + [ + 77.572886316306395, + 12.9436786667343 + ], + [ + 77.572866744740494, + 12.9436788599502 + ], + [ + 77.572843499201198, + 12.9436576324968 + ], + [ + 77.572712830217995, + 12.943658922445699 + ], + [ + 77.572638665889897, + 12.9436581674791 + ], + [ + 77.572374863311893, + 12.943655482634201 + ], + [ + 77.572067546304396, + 12.9436513324387 + ], + [ + 77.571843425169106, + 12.9436483051166 + ], + [ + 77.571543449967606, + 12.943644489303299 + ], + [ + 77.571111631138706, + 12.943639715246499 + ], + [ + 77.571071900743206, + 12.943638977888501 + ], + [ + 77.5710614119361, + 12.9436266589101 + ], + [ + 77.570711931975396, + 12.9436233305027 + ], + [ + 77.570390094003002, + 12.9436208583154 + ], + [ + 77.570363823157606, + 12.943641445076301 + ], + [ + 77.570344239979207, + 12.943640508902 + ], + [ + 77.569001352672402, + 12.943619300148599 + ], + [ + 77.568712009879903, + 12.943614729372401 + ], + [ + 77.567834959299006, + 12.9436008736132 + ], + [ + 77.567844639250595, + 12.942803480747401 + ], + [ + 77.567781268047895, + 12.9426866561625 + ], + [ + 77.5676854416959, + 12.9425486942684 + ], + [ + 77.567648046077196, + 12.942494855465201 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "281", + "group": "Kasavanahalli", + "Corporatio": "South", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "4", + "ward_id": "32", + "ward_name": "32 - Kasavanahalli", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಕಸವನಹಳ್ಳಿ", + "dig_ward_n": "Kasavanahalli", + "Assembly": "174 - Mahadevapura", + "Slno": "32" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.670227606923504, + 12.8934859041468 + ], + [ + 77.669987500704195, + 12.893528647429701 + ], + [ + 77.669640420276906, + 12.8935904336845 + ], + [ + 77.6696293714826, + 12.893592400216599 + ], + [ + 77.6695383838683, + 12.8936087000973 + ], + [ + 77.669326855726396, + 12.893650011043601 + ], + [ + 77.668902463892607, + 12.893732893617001 + ], + [ + 77.668717573217293, + 12.893767606746801 + ], + [ + 77.667947853760097, + 12.893886339113701 + ], + [ + 77.667765152597994, + 12.893912544632601 + ], + [ + 77.667276543909196, + 12.8939928203242 + ], + [ + 77.667238861951105, + 12.8939963583564 + ], + [ + 77.666897493846193, + 12.8940281951496 + ], + [ + 77.666797882903396, + 12.8940329490975 + ], + [ + 77.666748803478896, + 12.894035712532901 + ], + [ + 77.666478613012103, + 12.8940509224343 + ], + [ + 77.666403647923104, + 12.8940554945196 + ], + [ + 77.665984088282997, + 12.8941296146822 + ], + [ + 77.665764651970093, + 12.894158746316 + ], + [ + 77.665497263581997, + 12.894194243061101 + ], + [ + 77.665149640858999, + 12.8942409416789 + ], + [ + 77.664777823512694, + 12.894299073090099 + ], + [ + 77.664667346556897, + 12.8943164868972 + ], + [ + 77.664264569541601, + 12.8943807265142 + ], + [ + 77.664223854044096, + 12.894387220218899 + ], + [ + 77.664029906989896, + 12.894413952477899 + ], + [ + 77.663546088670898, + 12.8944806363313 + ], + [ + 77.663418029993196, + 12.8944875822072 + ], + [ + 77.663372656376296, + 12.894490043499101 + ], + [ + 77.6633175344584, + 12.8944977262985 + ], + [ + 77.662933491244104, + 12.894551587429699 + ], + [ + 77.662827410310399, + 12.8945665816203 + ], + [ + 77.662783373869701, + 12.894572448544601 + ], + [ + 77.661670182217705, + 12.894722021379099 + ], + [ + 77.661596565235797, + 12.8947218518533 + ], + [ + 77.661134230784299, + 12.894721841905501 + ], + [ + 77.6609499335094, + 12.8947223647657 + ], + [ + 77.6607448795137, + 12.8947229469041 + ], + [ + 77.660487889984495, + 12.894723675992701 + ], + [ + 77.660178197734794, + 12.8947080781307 + ], + [ + 77.659770952598194, + 12.894697924883699 + ], + [ + 77.659754745614805, + 12.894697520572199 + ], + [ + 77.659218853121104, + 12.894684159612099 + ], + [ + 77.658763972701905, + 12.8945663200345 + ], + [ + 77.657990475331403, + 12.8943746419117 + ], + [ + 77.657633851640796, + 12.8943243115857 + ], + [ + 77.657501058354498, + 12.8943180218357 + ], + [ + 77.657366909618702, + 12.894311739465399 + ], + [ + 77.657204856583107, + 12.8943043158786 + ], + [ + 77.656856429583399, + 12.8942883549516 + ], + [ + 77.6560105036572, + 12.8942496009252 + ], + [ + 77.655259687064401, + 12.894339093478401 + ], + [ + 77.654269365200506, + 12.894456263919301 + ], + [ + 77.654060032887102, + 12.894481031153999 + ], + [ + 77.653910283225002, + 12.894498671968799 + ], + [ + 77.653915003182902, + 12.8945320796788 + ], + [ + 77.653991452939707, + 12.8950732452771 + ], + [ + 77.654004076431093, + 12.8951628563835 + ], + [ + 77.654060586213703, + 12.895560119340001 + ], + [ + 77.654211420845201, + 12.8959328344033 + ], + [ + 77.654266536543105, + 12.896068451621099 + ], + [ + 77.654332055637894, + 12.8962296649309 + ], + [ + 77.654365017539305, + 12.896310769099101 + ], + [ + 77.654369727358699, + 12.896322859366 + ], + [ + 77.654497293005406, + 12.896650318702999 + ], + [ + 77.654799128052403, + 12.896945864919299 + ], + [ + 77.6548576496035, + 12.8970031668911 + ], + [ + 77.655065171363105, + 12.897206364458899 + ], + [ + 77.655559095597596, + 12.8976885470165 + ], + [ + 77.655575264378299, + 12.897704331399799 + ], + [ + 77.655650327541494, + 12.897777545615901 + ], + [ + 77.655671482542203, + 12.897798180284299 + ], + [ + 77.655751617283002, + 12.8977667113409 + ], + [ + 77.655767984453405, + 12.897760282739901 + ], + [ + 77.655812228265304, + 12.897742913597201 + ], + [ + 77.655858738187007, + 12.897724655071199 + ], + [ + 77.656219217072504, + 12.897583139236 + ], + [ + 77.6565434601672, + 12.8974499572923 + ], + [ + 77.656575548738502, + 12.897548215475901 + ], + [ + 77.656682486523295, + 12.897477415553899 + ], + [ + 77.656801222930596, + 12.8979524641518 + ], + [ + 77.656802179617998, + 12.8979562911609 + ], + [ + 77.656817605008499, + 12.8980180081301 + ], + [ + 77.656959208923098, + 12.898590756087399 + ], + [ + 77.656980262908206, + 12.898675062201299 + ], + [ + 77.656955648276394, + 12.8988178829406 + ], + [ + 77.656762545659106, + 12.898908503814701 + ], + [ + 77.656662296371707, + 12.898955549720499 + ], + [ + 77.656604931188994, + 12.8989824702865 + ], + [ + 77.656625704472006, + 12.8990350510611 + ], + [ + 77.656700819561706, + 12.899225182047701 + ], + [ + 77.656826339684699, + 12.899542896221 + ], + [ + 77.6568385167824, + 12.8998762065974 + ], + [ + 77.656794240014904, + 12.899892570821599 + ], + [ + 77.656275995406801, + 12.900084102339299 + ], + [ + 77.656207450712301, + 12.900157028179899 + ], + [ + 77.655505384855502, + 12.900185019194099 + ], + [ + 77.654959096516293, + 12.900210533784101 + ], + [ + 77.654931592444697, + 12.900211867375701 + ], + [ + 77.654931121628493, + 12.900225108757301 + ], + [ + 77.654921822897606, + 12.9004490690442 + ], + [ + 77.654912090738605, + 12.9006834408874 + ], + [ + 77.654907920152496, + 12.900783892412401 + ], + [ + 77.654865937555698, + 12.901237222448501 + ], + [ + 77.654803361477306, + 12.901719402102399 + ], + [ + 77.6547961131661, + 12.9017759535057 + ], + [ + 77.654855427010006, + 12.9023129664312 + ], + [ + 77.654969331686104, + 12.9027489605032 + ], + [ + 77.655034771187104, + 12.903252794233801 + ], + [ + 77.6550707132307, + 12.903529517731 + ], + [ + 77.655081322472, + 12.9036099009616 + ], + [ + 77.655083470615295, + 12.9036261827732 + ], + [ + 77.655082446206507, + 12.9037995725307 + ], + [ + 77.655447368216102, + 12.9049968987625 + ], + [ + 77.655530291835106, + 12.9053704415228 + ], + [ + 77.655570406881495, + 12.905551146237601 + ], + [ + 77.655591475832296, + 12.905646055438799 + ], + [ + 77.655812113521193, + 12.9063875509067 + ], + [ + 77.6559477255486, + 12.906837421591501 + ], + [ + 77.656049097318004, + 12.907163563905501 + ], + [ + 77.656097992960298, + 12.907320348413 + ], + [ + 77.656197673196303, + 12.9077257881517 + ], + [ + 77.656351384322605, + 12.908385392283 + ], + [ + 77.656546494082903, + 12.9091925498675 + ], + [ + 77.656864426684606, + 12.9094713627701 + ], + [ + 77.656954915730296, + 12.9095507183475 + ], + [ + 77.657055850092803, + 12.909639232885 + ], + [ + 77.657917840918003, + 12.909509433627999 + ], + [ + 77.659014491871005, + 12.9094532758831 + ], + [ + 77.659287283019793, + 12.909592861711699 + ], + [ + 77.659948158289197, + 12.9099001103798 + ], + [ + 77.659858168753601, + 12.910092081148001 + ], + [ + 77.659824565590895, + 12.9101637625909 + ], + [ + 77.659864649518696, + 12.911077829630999 + ], + [ + 77.660129799356994, + 12.9124621856829 + ], + [ + 77.660140856914694, + 12.912520124308401 + ], + [ + 77.660200511123804, + 12.912709599115599 + ], + [ + 77.6602875397259, + 12.912986023239499 + ], + [ + 77.660501802140402, + 12.913686230851701 + ], + [ + 77.660541849631699, + 12.913817104162399 + ], + [ + 77.6605737359843, + 12.913922159378901 + ], + [ + 77.660245611480505, + 12.914685900868299 + ], + [ + 77.660043837331102, + 12.915151420258301 + ], + [ + 77.6605130152616, + 12.9153256175374 + ], + [ + 77.660733134963195, + 12.915449720823 + ], + [ + 77.661205759999802, + 12.915716184900401 + ], + [ + 77.661626056975194, + 12.916771438256299 + ], + [ + 77.661995205112305, + 12.917698259563 + ], + [ + 77.662005255575394, + 12.9177223445422 + ], + [ + 77.662047434238204, + 12.9177611877108 + ], + [ + 77.6633085955159, + 12.9189226149932 + ], + [ + 77.663361080348494, + 12.9189747726241 + ], + [ + 77.663450333204295, + 12.919063470443801 + ], + [ + 77.6636318296421, + 12.919243836508899 + ], + [ + 77.664888584398099, + 12.920517177839301 + ], + [ + 77.665092101586197, + 12.9207165779722 + ], + [ + 77.665153185916694, + 12.9207766070771 + ], + [ + 77.665186407066997, + 12.9208226244898 + ], + [ + 77.665357614586199, + 12.921059774466 + ], + [ + 77.665382362725396, + 12.921094054778401 + ], + [ + 77.665548430922897, + 12.9210842573763 + ], + [ + 77.666568912307, + 12.921024592503899 + ], + [ + 77.666688189447598, + 12.921017618489801 + ], + [ + 77.666761924720703, + 12.921013307645399 + ], + [ + 77.667108402229104, + 12.921233294284299 + ], + [ + 77.667781571170707, + 12.921660703172501 + ], + [ + 77.667974731762698, + 12.922811031352399 + ], + [ + 77.668038285393493, + 12.923112552628201 + ], + [ + 77.668077298869207, + 12.923297643929301 + ], + [ + 77.668104936349593, + 12.9232982602596 + ], + [ + 77.668259981914701, + 12.923301671797599 + ], + [ + 77.668477072277199, + 12.923274925222101 + ], + [ + 77.668866935730705, + 12.9232268904224 + ], + [ + 77.668866508667406, + 12.9232895664538 + ], + [ + 77.668866246977601, + 12.923327941453801 + ], + [ + 77.6688661236538, + 12.9233460601684 + ], + [ + 77.668872650854794, + 12.923346347548501 + ], + [ + 77.669579827872496, + 12.9234162452363 + ], + [ + 77.669527536062205, + 12.922773932882601 + ], + [ + 77.669522442967306, + 12.922711367543499 + ], + [ + 77.669720065920799, + 12.922802947058999 + ], + [ + 77.670657369058802, + 12.923237291183501 + ], + [ + 77.671432319753805, + 12.923593760827901 + ], + [ + 77.671803216307097, + 12.9233967297207 + ], + [ + 77.671810723640306, + 12.9231862567687 + ], + [ + 77.6718773176528, + 12.9230326018843 + ], + [ + 77.672322472680307, + 12.9227316576712 + ], + [ + 77.671960908197605, + 12.9221299001749 + ], + [ + 77.671788750067606, + 12.9217516186671 + ], + [ + 77.671806710804006, + 12.9213785041118 + ], + [ + 77.671400567300594, + 12.9203070644015 + ], + [ + 77.671173445357297, + 12.9202592506663 + ], + [ + 77.670291281252503, + 12.918418190736499 + ], + [ + 77.669560537428296, + 12.918630871749199 + ], + [ + 77.668781335124393, + 12.9188807476236 + ], + [ + 77.6682346956446, + 12.9175446922556 + ], + [ + 77.669379736603801, + 12.917253928894199 + ], + [ + 77.669128884450799, + 12.9165776701184 + ], + [ + 77.669671693938, + 12.9162949123556 + ], + [ + 77.669919397225698, + 12.916674757794 + ], + [ + 77.670637320861502, + 12.916361468205199 + ], + [ + 77.671612779644704, + 12.917857559227301 + ], + [ + 77.671948024039295, + 12.917715319614199 + ], + [ + 77.672007024383106, + 12.917685351228601 + ], + [ + 77.672334700375899, + 12.917518912855799 + ], + [ + 77.672760929592499, + 12.9173024150606 + ], + [ + 77.673283684366993, + 12.916967213666901 + ], + [ + 77.673515136888597, + 12.9167353839195 + ], + [ + 77.673641361315902, + 12.9162321469673 + ], + [ + 77.673842508998604, + 12.915900237785699 + ], + [ + 77.6744659074715, + 12.915406250624301 + ], + [ + 77.675394760433605, + 12.9147657200318 + ], + [ + 77.675801170303103, + 12.9144890728444 + ], + [ + 77.676157956996306, + 12.9143959556776 + ], + [ + 77.676544714602898, + 12.9142950165564 + ], + [ + 77.677215471173099, + 12.914130387860499 + ], + [ + 77.677769000961106, + 12.9139203314838 + ], + [ + 77.678759469629696, + 12.9135755458459 + ], + [ + 77.679769709646195, + 12.913061020056499 + ], + [ + 77.680340062138498, + 12.9127447436073 + ], + [ + 77.68006744326, + 12.911707002021 + ], + [ + 77.680257019271906, + 12.9116620332419 + ], + [ + 77.680004313938099, + 12.910813714844799 + ], + [ + 77.6796933601278, + 12.910854300455201 + ], + [ + 77.679598447588603, + 12.908986467114 + ], + [ + 77.682702266124494, + 12.9088348113942 + ], + [ + 77.682767130768198, + 12.908846962197099 + ], + [ + 77.683693447519204, + 12.9086581260085 + ], + [ + 77.683797532276301, + 12.908821979508 + ], + [ + 77.684020207315598, + 12.909823574532499 + ], + [ + 77.684492629888595, + 12.9107698134777 + ], + [ + 77.684886559505699, + 12.910613417215 + ], + [ + 77.685060386200902, + 12.910565132021899 + ], + [ + 77.685190454439805, + 12.9105026630533 + ], + [ + 77.686349091043098, + 12.9100251066089 + ], + [ + 77.686490049024599, + 12.9099670073709 + ], + [ + 77.686800598300394, + 12.909885217930899 + ], + [ + 77.687044175901306, + 12.9097859130781 + ], + [ + 77.688532757816105, + 12.9091790226838 + ], + [ + 77.689946077466203, + 12.9087342409924 + ], + [ + 77.691360004728594, + 12.9083468114525 + ], + [ + 77.692293539982501, + 12.9081507585372 + ], + [ + 77.693255079504496, + 12.907839686418299 + ], + [ + 77.694868892678599, + 12.907433446963701 + ], + [ + 77.6955536128077, + 12.907211267598001 + ], + [ + 77.696483643101303, + 12.906962925715399 + ], + [ + 77.6973679789226, + 12.9067243419208 + ], + [ + 77.698047975677397, + 12.906516546515199 + ], + [ + 77.698834857187705, + 12.9062789645414 + ], + [ + 77.699319541001401, + 12.906034941118 + ], + [ + 77.700040521029294, + 12.905699273287301 + ], + [ + 77.702182701804603, + 12.904472058459801 + ], + [ + 77.702597366175794, + 12.904183694209401 + ], + [ + 77.702829054506594, + 12.904022573924999 + ], + [ + 77.702847280763507, + 12.904041366967 + ], + [ + 77.703360495640595, + 12.9037556028259 + ], + [ + 77.702847280804903, + 12.904041366944 + ], + [ + 77.702396234433806, + 12.9035762814532 + ], + [ + 77.700817799528295, + 12.904031860489701 + ], + [ + 77.700356388063696, + 12.904102122671601 + ], + [ + 77.698914994781504, + 12.9043481401444 + ], + [ + 77.697853470014905, + 12.9045445913736 + ], + [ + 77.6976590473529, + 12.904179664748099 + ], + [ + 77.697395159980303, + 12.904153029019501 + ], + [ + 77.696964316370696, + 12.9040682676958 + ], + [ + 77.696784170729899, + 12.904122070482099 + ], + [ + 77.696360036508096, + 12.9041264467619 + ], + [ + 77.696260775474201, + 12.9039942236213 + ], + [ + 77.695877169220907, + 12.904020765234501 + ], + [ + 77.695630269994993, + 12.904236732593199 + ], + [ + 77.695340711413706, + 12.9040703369316 + ], + [ + 77.694667462760293, + 12.9041913302718 + ], + [ + 77.693934756448698, + 12.9042959966627 + ], + [ + 77.693593844960702, + 12.9044175769271 + ], + [ + 77.693393503140101, + 12.9044890253251 + ], + [ + 77.693093752853699, + 12.9044457567622 + ], + [ + 77.692946686486493, + 12.9042564346641 + ], + [ + 77.692809613965196, + 12.9041404085518 + ], + [ + 77.691695698517407, + 12.9039928077728 + ], + [ + 77.691567665510206, + 12.903998284636399 + ], + [ + 77.691508660374495, + 12.9041843469402 + ], + [ + 77.691411385852604, + 12.904428076354501 + ], + [ + 77.691328359555698, + 12.9044305457259 + ], + [ + 77.691285185017605, + 12.904788799771801 + ], + [ + 77.691202293574406, + 12.904803796636401 + ], + [ + 77.691191954516995, + 12.9049136478059 + ], + [ + 77.691123146702907, + 12.904915115581799 + ], + [ + 77.691115975395405, + 12.905240107509499 + ], + [ + 77.691023859670594, + 12.9054647606287 + ], + [ + 77.690946319199298, + 12.905460708928199 + ], + [ + 77.690925109147898, + 12.9055251038618 + ], + [ + 77.690292388658705, + 12.9054718740504 + ], + [ + 77.690096335629505, + 12.905473788282899 + ], + [ + 77.689922657711193, + 12.905486868314499 + ], + [ + 77.689924750122898, + 12.9054134475374 + ], + [ + 77.688363167825003, + 12.9054846427012 + ], + [ + 77.688320474688297, + 12.9058754031664 + ], + [ + 77.6883109381628, + 12.905895408979999 + ], + [ + 77.6882640282696, + 12.905993813053099 + ], + [ + 77.6882208819287, + 12.906084196172699 + ], + [ + 77.688076369722594, + 12.9061958215697 + ], + [ + 77.688054881439896, + 12.906212100789499 + ], + [ + 77.687751507836396, + 12.9064419448371 + ], + [ + 77.687664466961095, + 12.9064834920827 + ], + [ + 77.687367503797702, + 12.906539619615 + ], + [ + 77.687264440694193, + 12.9065361628651 + ], + [ + 77.686847914559493, + 12.9064494731367 + ], + [ + 77.687310686675602, + 12.9047280267426 + ], + [ + 77.685716779023593, + 12.904437845518199 + ], + [ + 77.686288880753494, + 12.9039102939494 + ], + [ + 77.686860694237296, + 12.9036511524234 + ], + [ + 77.687493414228697, + 12.9033640499066 + ], + [ + 77.6875819232623, + 12.903338274431301 + ], + [ + 77.687471202650997, + 12.902609423690199 + ], + [ + 77.687469765424694, + 12.9025605802239 + ], + [ + 77.687270804196601, + 12.9024468481662 + ], + [ + 77.686172230608705, + 12.9024374288365 + ], + [ + 77.685551268449601, + 12.9022323885088 + ], + [ + 77.685445284468301, + 12.9020407271012 + ], + [ + 77.684518746908097, + 12.9019220273057 + ], + [ + 77.6832472461234, + 12.9015767318445 + ], + [ + 77.6825451280057, + 12.9014142188254 + ], + [ + 77.682402062747201, + 12.9008509549269 + ], + [ + 77.682408664625001, + 12.900194507137099 + ], + [ + 77.682276707832997, + 12.8999587977796 + ], + [ + 77.679591963535103, + 12.8975980710792 + ], + [ + 77.6788547221567, + 12.8965735102766 + ], + [ + 77.678216332242897, + 12.8955483241038 + ], + [ + 77.678052716659806, + 12.8953034373876 + ], + [ + 77.678030076209694, + 12.8952787557226 + ], + [ + 77.677917178426, + 12.895108747699 + ], + [ + 77.677353804690298, + 12.894260378887401 + ], + [ + 77.677300128589806, + 12.8942434704741 + ], + [ + 77.677158098626705, + 12.894198729834899 + ], + [ + 77.676841088831495, + 12.894098867789401 + ], + [ + 77.674966370294996, + 12.893499330918401 + ], + [ + 77.674873106791594, + 12.8934695045889 + ], + [ + 77.673874641778397, + 12.893150186678501 + ], + [ + 77.673876832779101, + 12.893142845041201 + ], + [ + 77.673772889168902, + 12.8931399589408 + ], + [ + 77.673773464008605, + 12.8931450951416 + ], + [ + 77.673774281936005, + 12.893152396985499 + ], + [ + 77.673760352343393, + 12.893153020888199 + ], + [ + 77.673654003667494, + 12.893157784814999 + ], + [ + 77.673583275119299, + 12.8931609523741 + ], + [ + 77.673243065818397, + 12.893176190957499 + ], + [ + 77.672452723118099, + 12.8932115923652 + ], + [ + 77.672435054764094, + 12.893212383584199 + ], + [ + 77.672239538530505, + 12.893221140366601 + ], + [ + 77.671591370276403, + 12.8932501712594 + ], + [ + 77.671400841348301, + 12.8932959036571 + ], + [ + 77.671308796583304, + 12.893317984853701 + ], + [ + 77.671119004255004, + 12.8933634620125 + ], + [ + 77.671084970159399, + 12.8933681368206 + ], + [ + 77.670227606923504, + 12.8934859041468 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "305", + "group": "R.V. VENKATESHAPPA", + "Corporatio": "Central", + "ac_no": "169", + "ac": "Chickpet", + "corporat_1": "1", + "ward_id": "43", + "ward_name": "43 - DV Gundappa Ward", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಿಕ್ಕಪೇಟೆ", + "ward_name_": "ಡಿ.ವಿ. ಗುಂಡಪ್ಪ ವಾರ್ಡ್", + "dig_ward_n": "R.V. VENKATESHAPPA", + "Assembly": "169 - Chickpet", + "Slno": "43" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.579620683102604, + 12.9552438539209 + ], + [ + 77.578824135567203, + 12.9555522401687 + ], + [ + 77.578576084225404, + 12.9556721445826 + ], + [ + 77.578414168296703, + 12.9557498966716 + ], + [ + 77.577306085942098, + 12.956291328202401 + ], + [ + 77.574531376195594, + 12.957044752867199 + ], + [ + 77.573682382148803, + 12.9572880431118 + ], + [ + 77.5735288116867, + 12.957358449088 + ], + [ + 77.573557780614806, + 12.957376231719399 + ], + [ + 77.573651688240801, + 12.9574385448737 + ], + [ + 77.573680003861497, + 12.9574783564121 + ], + [ + 77.573693163928496, + 12.9574968599521 + ], + [ + 77.573715429628805, + 12.9575378596964 + ], + [ + 77.573739523456197, + 12.9575822283946 + ], + [ + 77.574059207606396, + 12.9584861880326 + ], + [ + 77.574185496159103, + 12.9588432876076 + ], + [ + 77.574502072423996, + 12.959738447392599 + ], + [ + 77.575078059907796, + 12.9610839122721 + ], + [ + 77.575651219350505, + 12.961833600001601 + ], + [ + 77.576026073980302, + 12.9622601577521 + ], + [ + 77.576344213213304, + 12.962859383663 + ], + [ + 77.576852778669306, + 12.9641597749208 + ], + [ + 77.578242416486802, + 12.963709419728399 + ], + [ + 77.578858930978896, + 12.9636195540863 + ], + [ + 77.579832085319197, + 12.9636035075081 + ], + [ + 77.5797797581304, + 12.962624568933 + ], + [ + 77.579684006921298, + 12.9619255652104 + ], + [ + 77.580487794879701, + 12.961785975326499 + ], + [ + 77.5812482789662, + 12.961498289903201 + ], + [ + 77.581526616775506, + 12.9614484118857 + ], + [ + 77.582361097924306, + 12.9610447566541 + ], + [ + 77.583161963599593, + 12.960622483391001 + ], + [ + 77.582373175174496, + 12.9591778618381 + ], + [ + 77.5828065240173, + 12.958968704036799 + ], + [ + 77.582883280802093, + 12.9590925692033 + ], + [ + 77.5832612662999, + 12.958909904419899 + ], + [ + 77.584460300244203, + 12.958564340329801 + ], + [ + 77.584554816012499, + 12.9585883234534 + ], + [ + 77.584873213391106, + 12.959711954096999 + ], + [ + 77.585053185921694, + 12.9596086159621 + ], + [ + 77.585907179543895, + 12.959308247919299 + ], + [ + 77.586775244056398, + 12.9590828519434 + ], + [ + 77.586583925011993, + 12.958760915292499 + ], + [ + 77.586564613227793, + 12.958730616055799 + ], + [ + 77.586539618960799, + 12.9586518133545 + ], + [ + 77.586272388506103, + 12.9578063634311 + ], + [ + 77.586266375350903, + 12.957781578548101 + ], + [ + 77.586262781452007, + 12.9577680626399 + ], + [ + 77.586203941248797, + 12.9575337525678 + ], + [ + 77.586110889391705, + 12.957164266169899 + ], + [ + 77.586094135904801, + 12.9570990921285 + ], + [ + 77.586094094657696, + 12.957098933532601 + ], + [ + 77.586093978406197, + 12.9570984694153 + ], + [ + 77.586093926495906, + 12.9570982594292 + ], + [ + 77.586035243225794, + 12.9568634941669 + ], + [ + 77.586023839339504, + 12.956818435392099 + ], + [ + 77.5859343937163, + 12.956463593917601 + ], + [ + 77.585719059562507, + 12.9555551859921 + ], + [ + 77.584819992709896, + 12.9558462885231 + ], + [ + 77.584462698105398, + 12.955999137887 + ], + [ + 77.583839831121594, + 12.956265595748199 + ], + [ + 77.5837236102155, + 12.956313362541399 + ], + [ + 77.583650870804703, + 12.9559767258398 + ], + [ + 77.583629631319994, + 12.955588217556899 + ], + [ + 77.583554756510395, + 12.954913464302701 + ], + [ + 77.583495772726494, + 12.9546145248641 + ], + [ + 77.583495698766001, + 12.9546140521939 + ], + [ + 77.583343501971299, + 12.9546582070243 + ], + [ + 77.583312463195995, + 12.954663032150201 + ], + [ + 77.583232551985105, + 12.9546739886037 + ], + [ + 77.583159525332206, + 12.954682618134701 + ], + [ + 77.583155507392604, + 12.9546837872946 + ], + [ + 77.5830232464902, + 12.954698650880401 + ], + [ + 77.582990244647505, + 12.9547029307899 + ], + [ + 77.582976101, + 12.954704765035601 + ], + [ + 77.582844415713396, + 12.9547196228246 + ], + [ + 77.582812801254207, + 12.954724453603699 + ], + [ + 77.582432419743796, + 12.954775436328401 + ], + [ + 77.582715539164099, + 12.9573993660719 + ], + [ + 77.580147866551002, + 12.958975606532499 + ], + [ + 77.580125507763896, + 12.957109562062101 + ], + [ + 77.580104642127495, + 12.956604791198901 + ], + [ + 77.580004730538704, + 12.956261743587 + ], + [ + 77.579620683102604, + 12.9552438539209 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "282", + "group": "Vasanthnagar", + "Corporatio": "Central", + "ac_no": "162", + "ac": "Shivajinagar", + "corporat_1": "1", + "ward_id": "15", + "ward_name": "15 - Vasanthnagar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಿವಾಜಿನಗರ", + "ward_name_": "ವಸಂತನಗರ", + "dig_ward_n": "Vasanthnagar", + "Assembly": "162 - Shivajinagar", + "Slno": "15" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.581615458545301, + 12.9965910309227 + ], + [ + 77.581790552432807, + 12.9970310981181 + ], + [ + 77.581827169617995, + 12.9974308357222 + ], + [ + 77.581961432629996, + 12.997586458758899 + ], + [ + 77.582037718432304, + 12.9976413845366 + ], + [ + 77.582181135740697, + 12.9973637042162 + ], + [ + 77.582287757215994, + 12.9971070014936 + ], + [ + 77.582435167462506, + 12.9971481968246 + ], + [ + 77.5827527499805, + 12.997181070042901 + ], + [ + 77.582983739472397, + 12.997134383662299 + ], + [ + 77.583491584562196, + 12.997099065735499 + ], + [ + 77.583925856530399, + 12.9971118938511 + ], + [ + 77.583977906024401, + 12.9969721580607 + ], + [ + 77.584319065793096, + 12.996934462258301 + ], + [ + 77.584551563531093, + 12.9969341654521 + ], + [ + 77.5845232424454, + 12.9970497907862 + ], + [ + 77.584383915063398, + 12.9977617014105 + ], + [ + 77.584294523346102, + 12.9977437833838 + ], + [ + 77.583741732631594, + 12.9976844404293 + ], + [ + 77.583207802553403, + 12.997675411696999 + ], + [ + 77.582872410688196, + 12.997771972998301 + ], + [ + 77.582609861949805, + 12.998056760730201 + ], + [ + 77.582303193024401, + 12.998328338186401 + ], + [ + 77.5820579021388, + 12.9984822614623 + ], + [ + 77.582084068131806, + 12.998506845828301 + ], + [ + 77.582297084187303, + 12.9986802709281 + ], + [ + 77.582998101779594, + 12.999250996090501 + ], + [ + 77.583156738910901, + 12.9992787792965 + ], + [ + 77.583407695931001, + 12.999324841718501 + ], + [ + 77.584186476358099, + 12.9994627694859 + ], + [ + 77.584187654167494, + 12.999409680681 + ], + [ + 77.584163139181399, + 12.99926650369 + ], + [ + 77.584172336695104, + 12.9990981464877 + ], + [ + 77.584243061253105, + 12.9986434639839 + ], + [ + 77.584305532306303, + 12.998058994209099 + ], + [ + 77.584361287003105, + 12.997826932767101 + ], + [ + 77.584440926354404, + 12.997816192173699 + ], + [ + 77.585211151282195, + 12.997712316904 + ], + [ + 77.585266353398495, + 12.997704991392901 + ], + [ + 77.585902469206502, + 12.9976342859261 + ], + [ + 77.586329045709206, + 12.997569054448601 + ], + [ + 77.586379065946801, + 12.997561780335401 + ], + [ + 77.586485275889004, + 12.997531360445601 + ], + [ + 77.586551794020394, + 12.997504723870399 + ], + [ + 77.586580359317594, + 12.997482982609601 + ], + [ + 77.586818879890004, + 12.997329280174 + ], + [ + 77.587311245317906, + 12.996944929867499 + ], + [ + 77.587511248141595, + 12.996797257296 + ], + [ + 77.587996182950405, + 12.9964739621267 + ], + [ + 77.588008779192805, + 12.9964670607865 + ], + [ + 77.589094648847905, + 12.9959017502308 + ], + [ + 77.589124423754697, + 12.9958856431762 + ], + [ + 77.589491027930507, + 12.9957012998672 + ], + [ + 77.589516149965903, + 12.9956807219982 + ], + [ + 77.589550167728504, + 12.9956295644281 + ], + [ + 77.589679485697005, + 12.99532901137 + ], + [ + 77.591431087945296, + 12.995384939602999 + ], + [ + 77.5917461960845, + 12.995398733879901 + ], + [ + 77.591730312487201, + 12.9953108075118 + ], + [ + 77.591734342698103, + 12.995310767283801 + ], + [ + 77.591799530538196, + 12.9953069416303 + ], + [ + 77.591884808671296, + 12.9952965065947 + ], + [ + 77.591960375792198, + 12.9952859251372 + ], + [ + 77.5920320507649, + 12.9952569772956 + ], + [ + 77.592168185604507, + 12.9952251273403 + ], + [ + 77.592242198670803, + 12.9951995439862 + ], + [ + 77.592381588590996, + 12.995148463446601 + ], + [ + 77.592466006569694, + 12.9951270475922 + ], + [ + 77.592515972614095, + 12.995114372220501 + ], + [ + 77.592522282345001, + 12.995112050634701 + ], + [ + 77.592718982454898, + 12.995065517165999 + ], + [ + 77.592853273941898, + 12.9950197881936 + ], + [ + 77.593178968380997, + 12.9948803452652 + ], + [ + 77.5934769519138, + 12.994747231675101 + ], + [ + 77.593636412439906, + 12.9946638880915 + ], + [ + 77.593688535194502, + 12.9946373937372 + ], + [ + 77.593771276718002, + 12.994594842158801 + ], + [ + 77.594360360718298, + 12.994291894711401 + ], + [ + 77.594580941718903, + 12.994178811525 + ], + [ + 77.593939044989199, + 12.9928833656823 + ], + [ + 77.593511646395498, + 12.992937066463901 + ], + [ + 77.593420701158806, + 12.992698884918999 + ], + [ + 77.594436259168106, + 12.9925516911633 + ], + [ + 77.594622396525807, + 12.992902605853899 + ], + [ + 77.594906179710406, + 12.9927050256259 + ], + [ + 77.595625952766397, + 12.9936533870525 + ], + [ + 77.595812984957206, + 12.9935602779459 + ], + [ + 77.595846812093995, + 12.993601723555001 + ], + [ + 77.5961434660842, + 12.9931639821811 + ], + [ + 77.596440912336206, + 12.9927816937585 + ], + [ + 77.596516160602107, + 12.992697209727901 + ], + [ + 77.596840906789794, + 12.9922692514037 + ], + [ + 77.597027657137303, + 12.9920252683463 + ], + [ + 77.597442604310004, + 12.991467219901899 + ], + [ + 77.597474939612297, + 12.991420595653301 + ], + [ + 77.597507263160097, + 12.991372842231 + ], + [ + 77.597584881670102, + 12.991306567171801 + ], + [ + 77.597675271944794, + 12.9912503279616 + ], + [ + 77.598362203301704, + 12.990974685914299 + ], + [ + 77.598964194969994, + 12.9907258658779 + ], + [ + 77.599253728544397, + 12.9906066519159 + ], + [ + 77.599540522444599, + 12.9905074019964 + ], + [ + 77.599949313594806, + 12.9918326082456 + ], + [ + 77.600014231764106, + 12.9916947597819 + ], + [ + 77.600879080368301, + 12.9905284880605 + ], + [ + 77.600920634025996, + 12.990468552025099 + ], + [ + 77.601118664990693, + 12.9902487726772 + ], + [ + 77.601002634158704, + 12.9900883819766 + ], + [ + 77.600944407373603, + 12.9901278043152 + ], + [ + 77.600795880457994, + 12.989672564228799 + ], + [ + 77.600603654702795, + 12.989171366433901 + ], + [ + 77.600050894218796, + 12.9893259460124 + ], + [ + 77.599618735148596, + 12.9894281689875 + ], + [ + 77.599287273337495, + 12.9895521334163 + ], + [ + 77.598652575462296, + 12.987600742592999 + ], + [ + 77.598907725929493, + 12.9874330034155 + ], + [ + 77.599330609988499, + 12.987144287166499 + ], + [ + 77.599658682900497, + 12.986938233012999 + ], + [ + 77.599738410278505, + 12.987086739618301 + ], + [ + 77.599967799713099, + 12.9869865891936 + ], + [ + 77.600364379011594, + 12.9868393686661 + ], + [ + 77.600575869688697, + 12.987094406532499 + ], + [ + 77.600768909632507, + 12.9873745330185 + ], + [ + 77.601005719641705, + 12.987644659163699 + ], + [ + 77.601076555798699, + 12.987758329410999 + ], + [ + 77.601318823954003, + 12.987709498259999 + ], + [ + 77.601454284949497, + 12.987677877454701 + ], + [ + 77.601548664664193, + 12.9876527208522 + ], + [ + 77.6014902615631, + 12.987181181601599 + ], + [ + 77.601466102187501, + 12.9869133897714 + ], + [ + 77.6015622295063, + 12.9867819801393 + ], + [ + 77.6016502166935, + 12.9867357025184 + ], + [ + 77.601795784564501, + 12.9866868306223 + ], + [ + 77.601954105265904, + 12.9866771745997 + ], + [ + 77.6019438384035, + 12.9868215020539 + ], + [ + 77.601941992150699, + 12.9869405603462 + ], + [ + 77.602064073234899, + 12.9882911454057 + ], + [ + 77.602091312943003, + 12.9885360137947 + ], + [ + 77.602097997314203, + 12.988590962541601 + ], + [ + 77.602179809405698, + 12.989136918906899 + ], + [ + 77.602225121771596, + 12.989200300246701 + ], + [ + 77.602449269744696, + 12.9889456828782 + ], + [ + 77.602723610196094, + 12.9886340512627 + ], + [ + 77.602755773374099, + 12.9885972115379 + ], + [ + 77.602980226215905, + 12.988340124481301 + ], + [ + 77.603071247721502, + 12.9882341889189 + ], + [ + 77.603207197495394, + 12.988078811132301 + ], + [ + 77.603127557680196, + 12.987931477677799 + ], + [ + 77.603058173158502, + 12.987492331322199 + ], + [ + 77.603004356639403, + 12.987214438688399 + ], + [ + 77.602983589652396, + 12.986751602455699 + ], + [ + 77.602886459749698, + 12.986710205509199 + ], + [ + 77.602915859015994, + 12.986611560266301 + ], + [ + 77.602875500356205, + 12.986218437024799 + ], + [ + 77.603206460450707, + 12.986174094954899 + ], + [ + 77.603611310580703, + 12.986129938049199 + ], + [ + 77.6035862797129, + 12.985159208518599 + ], + [ + 77.6033264643563, + 12.9851033007425 + ], + [ + 77.602911058107495, + 12.9850227222657 + ], + [ + 77.602510974783499, + 12.9849140561761 + ], + [ + 77.6025062321186, + 12.984913071961801 + ], + [ + 77.602230542038896, + 12.984855883318801 + ], + [ + 77.602004355958201, + 12.9848095890785 + ], + [ + 77.601819690944396, + 12.9847839717066 + ], + [ + 77.601813324762603, + 12.9847159406345 + ], + [ + 77.601876231462995, + 12.984681515537501 + ], + [ + 77.601739732716197, + 12.9846627060511 + ], + [ + 77.600920944964599, + 12.9845200855179 + ], + [ + 77.599915141876295, + 12.9843381319246 + ], + [ + 77.599679204394405, + 12.984295320921101 + ], + [ + 77.599301347333295, + 12.984225697121699 + ], + [ + 77.599143861202194, + 12.9841969929986 + ], + [ + 77.598784472877696, + 12.9841314894154 + ], + [ + 77.598760821575596, + 12.984127208791 + ], + [ + 77.598744078859099, + 12.984122859074001 + ], + [ + 77.598101393422297, + 12.984000546556199 + ], + [ + 77.597796245797397, + 12.983974300985301 + ], + [ + 77.598325513610206, + 12.983529166154 + ], + [ + 77.598541016026999, + 12.983280860565699 + ], + [ + 77.598781478286895, + 12.982860806821201 + ], + [ + 77.598859695766706, + 12.982468604659299 + ], + [ + 77.598866352628605, + 12.982119488312 + ], + [ + 77.598698576662699, + 12.9816526701313 + ], + [ + 77.598323430184607, + 12.980577495022199 + ], + [ + 77.597760125940297, + 12.980748215911399 + ], + [ + 77.597757499151001, + 12.980746053149099 + ], + [ + 77.597746365715494, + 12.980736885271901 + ], + [ + 77.597103879594499, + 12.981098530931201 + ], + [ + 77.592329175705203, + 12.982732060892401 + ], + [ + 77.592280662627701, + 12.9831169311383 + ], + [ + 77.593564453203498, + 12.985628323353099 + ], + [ + 77.592322682997505, + 12.9862195556438 + ], + [ + 77.588888285975997, + 12.987663388883499 + ], + [ + 77.588890652961396, + 12.987241469385101 + ], + [ + 77.589040653365899, + 12.986526871472799 + ], + [ + 77.588883637875298, + 12.9863658823874 + ], + [ + 77.588656949367305, + 12.986727281546001 + ], + [ + 77.5882892669391, + 12.987176076048 + ], + [ + 77.587477479336599, + 12.9878725839447 + ], + [ + 77.586606896741799, + 12.988540990422999 + ], + [ + 77.5860841575672, + 12.988904748085799 + ], + [ + 77.585798068624499, + 12.9895243070894 + ], + [ + 77.585676697733206, + 12.9905151226928 + ], + [ + 77.585582645109099, + 12.9913192173239 + ], + [ + 77.585388601124393, + 12.9923537827919 + ], + [ + 77.585207100862505, + 12.9931874322639 + ], + [ + 77.585129007056295, + 12.9939935093199 + ], + [ + 77.585063310625799, + 12.994711270135101 + ], + [ + 77.584931508841805, + 12.9954010039836 + ], + [ + 77.584765694902401, + 12.9960051819623 + ], + [ + 77.584026215059495, + 12.995919319352501 + ], + [ + 77.582888695736997, + 12.995529057538301 + ], + [ + 77.582449174763198, + 12.995081493857301 + ], + [ + 77.581781381378207, + 12.994148722654799 + ], + [ + 77.581668991640399, + 12.9940017912795 + ], + [ + 77.581461196776104, + 12.993756478915699 + ], + [ + 77.581325709165895, + 12.993839816297999 + ], + [ + 77.580949856363802, + 12.9941038294647 + ], + [ + 77.580582185324204, + 12.994339735012501 + ], + [ + 77.581000487606403, + 12.995371039386001 + ], + [ + 77.581411854996503, + 12.996257359445501 + ], + [ + 77.581615458545301, + 12.9965910309227 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "283", + "group": "Shivaji Nagar", + "Corporatio": "Central", + "ac_no": "162", + "ac": "Shivajinagar", + "corporat_1": "1", + "ward_id": "3", + "ward_name": "3 - Shivaji Nagar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಿವಾಜಿನಗರ", + "ward_name_": "ಶಿವಾಜಿ ನಗರ", + "dig_ward_n": "Shivaji Nagar", + "Assembly": "162 - Shivajinagar", + "Slno": "3" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.602393108796804, + 12.9792135581243 + ], + [ + 77.602393072074094, + 12.979213570236601 + ], + [ + 77.602320588923206, + 12.9792367840242 + ], + [ + 77.602157533113996, + 12.979293176765999 + ], + [ + 77.600915027361395, + 12.979722893333401 + ], + [ + 77.599296622548906, + 12.980283398972601 + ], + [ + 77.5984190315706, + 12.980548521206 + ], + [ + 77.598323430184607, + 12.980577495022199 + ], + [ + 77.598698576662699, + 12.9816526701313 + ], + [ + 77.598866352628605, + 12.982119488312 + ], + [ + 77.598859695766706, + 12.982468604659299 + ], + [ + 77.598781478286895, + 12.982860806821201 + ], + [ + 77.598541016026999, + 12.983280860565699 + ], + [ + 77.598325513610206, + 12.983529166154 + ], + [ + 77.597796245797397, + 12.983974300985301 + ], + [ + 77.598101393422297, + 12.984000546556199 + ], + [ + 77.598744078859099, + 12.984122859074001 + ], + [ + 77.598760821575596, + 12.984127208791 + ], + [ + 77.598784472877696, + 12.9841314894154 + ], + [ + 77.599143861202194, + 12.9841969929986 + ], + [ + 77.599301347333295, + 12.984225697121699 + ], + [ + 77.599679204394405, + 12.984295320921101 + ], + [ + 77.599915141876295, + 12.9843381319246 + ], + [ + 77.600920944964599, + 12.9845200855179 + ], + [ + 77.601739732716197, + 12.9846627060511 + ], + [ + 77.601876231462995, + 12.984681515537501 + ], + [ + 77.601813324762603, + 12.9847159406345 + ], + [ + 77.601819690944396, + 12.9847839717066 + ], + [ + 77.602004355958201, + 12.9848095890785 + ], + [ + 77.602230542038896, + 12.984855883318801 + ], + [ + 77.6025062321186, + 12.984913071961801 + ], + [ + 77.602510974783499, + 12.9849140561761 + ], + [ + 77.602911058107495, + 12.9850227222657 + ], + [ + 77.6033264643563, + 12.9851033007425 + ], + [ + 77.6035862797129, + 12.985159208518599 + ], + [ + 77.603611310580703, + 12.986129938049199 + ], + [ + 77.603206460450707, + 12.986174094954899 + ], + [ + 77.602875500356205, + 12.986218437024799 + ], + [ + 77.602915859015994, + 12.986611560266301 + ], + [ + 77.602886459749698, + 12.986710205509199 + ], + [ + 77.602983589652396, + 12.986751602455699 + ], + [ + 77.603004356639403, + 12.987214438688399 + ], + [ + 77.603058173158502, + 12.987492331322199 + ], + [ + 77.603127557680196, + 12.987931477677799 + ], + [ + 77.603207197495394, + 12.988078811132301 + ], + [ + 77.603071247721502, + 12.9882341889189 + ], + [ + 77.603211267690995, + 12.9883547486194 + ], + [ + 77.603227776229801, + 12.988391849591499 + ], + [ + 77.603231760059899, + 12.988442627491599 + ], + [ + 77.603243041714904, + 12.988585933622099 + ], + [ + 77.603243147886005, + 12.988623704879799 + ], + [ + 77.6032442301765, + 12.9890102816807 + ], + [ + 77.603245369307103, + 12.989417063970199 + ], + [ + 77.602871219029495, + 12.9894829240384 + ], + [ + 77.602906991284399, + 12.9900078939044 + ], + [ + 77.603179731917393, + 12.990020292784401 + ], + [ + 77.603499023021499, + 12.9900574450501 + ], + [ + 77.603805823560094, + 12.9900805987729 + ], + [ + 77.603875895531601, + 12.990092002047801 + ], + [ + 77.604154042085696, + 12.990129565934801 + ], + [ + 77.604199364221699, + 12.9901351643953 + ], + [ + 77.604452692589803, + 12.990160366649601 + ], + [ + 77.604495962758193, + 12.990166490036099 + ], + [ + 77.6046244191309, + 12.9901783164658 + ], + [ + 77.604642286062202, + 12.9898200098443 + ], + [ + 77.604700043975399, + 12.989735699460599 + ], + [ + 77.604710132724406, + 12.9894700291372 + ], + [ + 77.604686514018795, + 12.989227395029401 + ], + [ + 77.604680232943807, + 12.9890196432011 + ], + [ + 77.604619071704406, + 12.9889748600249 + ], + [ + 77.604527325647098, + 12.988956612547501 + ], + [ + 77.604483931968304, + 12.988543939966601 + ], + [ + 77.604946437204802, + 12.9885039941197 + ], + [ + 77.605289767537798, + 12.988442855197301 + ], + [ + 77.605427659362306, + 12.9890438336764 + ], + [ + 77.605806778139794, + 12.9890292775129 + ], + [ + 77.605746937242799, + 12.989111086923399 + ], + [ + 77.605667968337798, + 12.989232936158899 + ], + [ + 77.605627853816401, + 12.989282770193 + ], + [ + 77.605542756473596, + 12.9894581477672 + ], + [ + 77.605475229593296, + 12.989641419563601 + ], + [ + 77.605457733912502, + 12.989690017896001 + ], + [ + 77.605435216161197, + 12.9897502679081 + ], + [ + 77.605386619774507, + 12.9899731977827 + ], + [ + 77.605363058828701, + 12.9900813766964 + ], + [ + 77.605363834010305, + 12.990150229922399 + ], + [ + 77.605371307055293, + 12.990150740384401 + ], + [ + 77.605420888614006, + 12.9901541304954 + ], + [ + 77.605675395850099, + 12.990154965333099 + ], + [ + 77.605699575426499, + 12.9901547227701 + ], + [ + 77.605850908106405, + 12.9901510490156 + ], + [ + 77.605976894167895, + 12.990147990843701 + ], + [ + 77.606016753367598, + 12.9901470244916 + ], + [ + 77.606041497793598, + 12.9901456460437 + ], + [ + 77.606076041350093, + 12.990145299462901 + ], + [ + 77.606392784830106, + 12.9901511555705 + ], + [ + 77.606419879289902, + 12.9901542715379 + ], + [ + 77.606447561663302, + 12.990157578549599 + ], + [ + 77.606494084215697, + 12.990163136653599 + ], + [ + 77.606600317920297, + 12.990175829765899 + ], + [ + 77.606629150538097, + 12.990179274279599 + ], + [ + 77.606636071030707, + 12.9901803341118 + ], + [ + 77.606892306042198, + 12.990236485219 + ], + [ + 77.606963356010198, + 12.9902583577566 + ], + [ + 77.607061559383794, + 12.990288991985601 + ], + [ + 77.607084722499494, + 12.9902960465223 + ], + [ + 77.607141746307306, + 12.990313414375301 + ], + [ + 77.607162065678295, + 12.9903196030572 + ], + [ + 77.607125240931794, + 12.9901332572563 + ], + [ + 77.607060685540702, + 12.989553057795099 + ], + [ + 77.607041871548304, + 12.9891516731193 + ], + [ + 77.607035475080906, + 12.9889207338723 + ], + [ + 77.607045249800706, + 12.9886744866036 + ], + [ + 77.607057570508204, + 12.9882779013787 + ], + [ + 77.607092561871696, + 12.9877026318995 + ], + [ + 77.607098941717197, + 12.9875828531582 + ], + [ + 77.607120762192693, + 12.987432894840101 + ], + [ + 77.607140517806101, + 12.9871572919755 + ], + [ + 77.607163843418107, + 12.9869280584594 + ], + [ + 77.607142588892202, + 12.986739624634801 + ], + [ + 77.607165485725105, + 12.986740403672201 + ], + [ + 77.607194260156305, + 12.9867375928964 + ], + [ + 77.607266235701502, + 12.986734348577601 + ], + [ + 77.607347819761898, + 12.986715371286699 + ], + [ + 77.6076913513634, + 12.9866547931823 + ], + [ + 77.607846608597598, + 12.9866177229966 + ], + [ + 77.6081943366556, + 12.986458707844401 + ], + [ + 77.6083534233763, + 12.986359793178901 + ], + [ + 77.608359884595799, + 12.9863531387329 + ], + [ + 77.6087836196007, + 12.985970406231999 + ], + [ + 77.609138171024199, + 12.985736525275099 + ], + [ + 77.6091515785144, + 12.985727680725599 + ], + [ + 77.609161041813707, + 12.9857263886587 + ], + [ + 77.609162276657401, + 12.985731365870601 + ], + [ + 77.6092376415139, + 12.9856897356744 + ], + [ + 77.609254602749303, + 12.985688556537101 + ], + [ + 77.609276680611103, + 12.985684803998501 + ], + [ + 77.609297183983799, + 12.9856780408502 + ], + [ + 77.609357246008301, + 12.985666845198899 + ], + [ + 77.609505210479995, + 12.985650731490599 + ], + [ + 77.609553921101707, + 12.9856361189794 + ], + [ + 77.609599635485395, + 12.9856301114077 + ], + [ + 77.609691578537095, + 12.985618091075899 + ], + [ + 77.609729934744394, + 12.985597025293201 + ], + [ + 77.610039971524699, + 12.9854937513512 + ], + [ + 77.610228248675199, + 12.9852929087081 + ], + [ + 77.6103225230991, + 12.985060945071099 + ], + [ + 77.610374947903694, + 12.984761811861199 + ], + [ + 77.610372645601004, + 12.9845414109001 + ], + [ + 77.610246765797399, + 12.983878673495299 + ], + [ + 77.610104613452194, + 12.9832308899773 + ], + [ + 77.610145320464397, + 12.9832133314126 + ], + [ + 77.610371894107899, + 12.983139934777199 + ], + [ + 77.610645304856803, + 12.9830695982729 + ], + [ + 77.610645349831799, + 12.9830695824629 + ], + [ + 77.610646666924794, + 12.9830720265435 + ], + [ + 77.6107362138235, + 12.9832048737722 + ], + [ + 77.610943500142298, + 12.983493810030801 + ], + [ + 77.610971267395399, + 12.983545349593401 + ], + [ + 77.611001438728806, + 12.983601353202101 + ], + [ + 77.6110183230318, + 12.9836192520195 + ], + [ + 77.611059250875698, + 12.9836622249758 + ], + [ + 77.611067750347104, + 12.9836711494137 + ], + [ + 77.611276518916199, + 12.9838903496386 + ], + [ + 77.611686884968506, + 12.984254062153401 + ], + [ + 77.611773118914797, + 12.9843848444657 + ], + [ + 77.611773121331694, + 12.984385075717499 + ], + [ + 77.611826829035294, + 12.9844777236216 + ], + [ + 77.611839543642304, + 12.9844774350136 + ], + [ + 77.611851606169594, + 12.9844771610901 + ], + [ + 77.611867059108405, + 12.9845639719035 + ], + [ + 77.612041016524898, + 12.984574328943699 + ], + [ + 77.612201534322793, + 12.984479905296 + ], + [ + 77.612246539113798, + 12.9844306519444 + ], + [ + 77.6123448494115, + 12.984336284763801 + ], + [ + 77.612460434410096, + 12.984201265384501 + ], + [ + 77.612465744942398, + 12.9842010538958 + ], + [ + 77.612560389131502, + 12.983825114322 + ], + [ + 77.612768728691805, + 12.9831410978543 + ], + [ + 77.612780297210605, + 12.9831006265856 + ], + [ + 77.612794937160899, + 12.9830494107549 + ], + [ + 77.612966233497204, + 12.982892933963001 + ], + [ + 77.612863853800903, + 12.9828085503488 + ], + [ + 77.612848528726303, + 12.9827924672246 + ], + [ + 77.612771841918203, + 12.982711988058901 + ], + [ + 77.612768741404096, + 12.982708494981001 + ], + [ + 77.612764196902503, + 12.982703374902499 + ], + [ + 77.612726188055603, + 12.982660548155501 + ], + [ + 77.612641114966294, + 12.98256469208 + ], + [ + 77.612465659161103, + 12.9823669974179 + ], + [ + 77.612438910576003, + 12.982338539277899 + ], + [ + 77.612370324572296, + 12.9822655708737 + ], + [ + 77.612369661289307, + 12.982264865644099 + ], + [ + 77.612367612739007, + 12.982262686402301 + ], + [ + 77.612241639426401, + 12.982128665121101 + ], + [ + 77.611415467503704, + 12.981247969120099 + ], + [ + 77.611295125535804, + 12.9811236898129 + ], + [ + 77.610909497013594, + 12.9807223242915 + ], + [ + 77.610882656153393, + 12.9806954044778 + ], + [ + 77.610113958827498, + 12.9809338755932 + ], + [ + 77.610117160375296, + 12.980942815345299 + ], + [ + 77.610061880985, + 12.9809581983619 + ], + [ + 77.609689934767005, + 12.979900149561299 + ], + [ + 77.609351388620894, + 12.978937099107201 + ], + [ + 77.608780916398899, + 12.9773142739802 + ], + [ + 77.6087423200552, + 12.977204478655301 + ], + [ + 77.608728577707396, + 12.977165386221399 + ], + [ + 77.608773831624902, + 12.977150687832999 + ], + [ + 77.608684449208596, + 12.977179262034699 + ], + [ + 77.607614096624701, + 12.977521433167601 + ], + [ + 77.6066810396877, + 12.9778210158261 + ], + [ + 77.606222113881103, + 12.977967715996201 + ], + [ + 77.605481127359397, + 12.9782045785962 + ], + [ + 77.605387128037194, + 12.9782347673194 + ], + [ + 77.605190765035104, + 12.9782978312713 + ], + [ + 77.603415993777801, + 12.978879124178 + ], + [ + 77.603276659105703, + 12.978924732445501 + ], + [ + 77.6024785008306, + 12.979185993358399 + ], + [ + 77.602447982550302, + 12.9791959827452 + ], + [ + 77.602433466495896, + 12.979200635277699 + ], + [ + 77.602431824801798, + 12.979201158536901 + ], + [ + 77.602431604446707, + 12.9792012294035 + ], + [ + 77.602428518517002, + 12.9792022179324 + ], + [ + 77.602421259544798, + 12.979204541949199 + ], + [ + 77.602419244185, + 12.979205187298399 + ], + [ + 77.602402682438097, + 12.979210491806199 + ], + [ + 77.602401453942406, + 12.9792108853519 + ], + [ + 77.602396393050199, + 12.9792125061772 + ], + [ + 77.602395042440094, + 12.9792129388894 + ], + [ + 77.602393554103202, + 12.9792134154417 + ], + [ + 77.602393479727297, + 12.979213438772 + ], + [ + 77.602393108796804, + 12.9792135581243 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "284", + "group": "Jaymahal", + "Corporatio": "Central", + "ac_no": "162", + "ac": "Shivajinagar", + "corporat_1": "1", + "ward_id": "2", + "ward_name": "2 - Jayamahal", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಿವಾಜಿನಗರ", + "ward_name_": "ಜಯಮಹಲ್", + "dig_ward_n": "Jaymahal", + "Assembly": "162 - Shivajinagar", + "Slno": "2" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.598907725929493, + 12.9874330034155 + ], + [ + 77.598652575462296, + 12.987600742592999 + ], + [ + 77.599287273337495, + 12.9895521334163 + ], + [ + 77.599618735148596, + 12.9894281689875 + ], + [ + 77.600050894218796, + 12.9893259460124 + ], + [ + 77.600603654702795, + 12.989171366433901 + ], + [ + 77.600795880457994, + 12.989672564228799 + ], + [ + 77.600944407373603, + 12.9901278043152 + ], + [ + 77.601002634158704, + 12.9900883819766 + ], + [ + 77.601118664990693, + 12.9902487726772 + ], + [ + 77.600920634025996, + 12.990468552025099 + ], + [ + 77.600879080368301, + 12.9905284880605 + ], + [ + 77.600014231764106, + 12.9916947597819 + ], + [ + 77.599949313594806, + 12.9918326082456 + ], + [ + 77.599540522444599, + 12.9905074019964 + ], + [ + 77.599253728544397, + 12.9906066519159 + ], + [ + 77.598964194969994, + 12.9907258658779 + ], + [ + 77.598362203301704, + 12.990974685914299 + ], + [ + 77.597675271944794, + 12.9912503279616 + ], + [ + 77.597584881670102, + 12.991306567171801 + ], + [ + 77.597507263160097, + 12.991372842231 + ], + [ + 77.597474939612297, + 12.991420595653301 + ], + [ + 77.597442604310004, + 12.991467219901899 + ], + [ + 77.597027657137303, + 12.9920252683463 + ], + [ + 77.596840906789794, + 12.9922692514037 + ], + [ + 77.596516160602107, + 12.992697209727901 + ], + [ + 77.596440912336206, + 12.9927816937585 + ], + [ + 77.5961434660842, + 12.9931639821811 + ], + [ + 77.595846812093995, + 12.993601723555001 + ], + [ + 77.595812984957206, + 12.9935602779459 + ], + [ + 77.595625952766397, + 12.9936533870525 + ], + [ + 77.594906179710406, + 12.9927050256259 + ], + [ + 77.594622396525807, + 12.992902605853899 + ], + [ + 77.594436259168106, + 12.9925516911633 + ], + [ + 77.593420701158806, + 12.992698884918999 + ], + [ + 77.593511646395498, + 12.992937066463901 + ], + [ + 77.593939044989199, + 12.9928833656823 + ], + [ + 77.594580941718903, + 12.994178811525 + ], + [ + 77.594360360718298, + 12.994291894711401 + ], + [ + 77.593771276718002, + 12.994594842158801 + ], + [ + 77.593688535194502, + 12.9946373937372 + ], + [ + 77.593636412439906, + 12.9946638880915 + ], + [ + 77.5934769519138, + 12.994747231675101 + ], + [ + 77.593178968380997, + 12.9948803452652 + ], + [ + 77.592853273941898, + 12.9950197881936 + ], + [ + 77.592718982454898, + 12.995065517165999 + ], + [ + 77.592522282345001, + 12.995112050634701 + ], + [ + 77.592515972614095, + 12.995114372220501 + ], + [ + 77.592466006569694, + 12.9951270475922 + ], + [ + 77.592381588590996, + 12.995148463446601 + ], + [ + 77.592242198670803, + 12.9951995439862 + ], + [ + 77.592168185604507, + 12.9952251273403 + ], + [ + 77.5920320507649, + 12.9952569772956 + ], + [ + 77.591960375792198, + 12.9952859251372 + ], + [ + 77.591884808671296, + 12.9952965065947 + ], + [ + 77.591799530538196, + 12.9953069416303 + ], + [ + 77.591734342698103, + 12.995310767283801 + ], + [ + 77.591730312487201, + 12.9953108075118 + ], + [ + 77.5917461960845, + 12.995398733879901 + ], + [ + 77.593462288094699, + 12.995473071326201 + ], + [ + 77.593950083934999, + 12.995481750071299 + ], + [ + 77.594039292378298, + 12.9954741580716 + ], + [ + 77.594175599498797, + 12.995462557631299 + ], + [ + 77.594405533207294, + 12.9954252521892 + ], + [ + 77.594676027752598, + 12.995357050365699 + ], + [ + 77.595008491779495, + 12.995212566450601 + ], + [ + 77.5961034171591, + 12.994690052778401 + ], + [ + 77.596119185229597, + 12.9947113516433 + ], + [ + 77.596197790363703, + 12.994850597712899 + ], + [ + 77.596228515115101, + 12.9949812881677 + ], + [ + 77.5962537772986, + 12.994974259836299 + ], + [ + 77.596231075952005, + 12.995061442163101 + ], + [ + 77.596112445647904, + 12.995558386702999 + ], + [ + 77.595921714750602, + 12.996430976535599 + ], + [ + 77.595821847182705, + 12.997071153392801 + ], + [ + 77.595659011091598, + 12.9977469678778 + ], + [ + 77.595551808868294, + 12.998103022698601 + ], + [ + 77.595096299281593, + 12.999615923382599 + ], + [ + 77.5949784665153, + 12.9999683108569 + ], + [ + 77.594810952718106, + 13.000471390692001 + ], + [ + 77.594659042535298, + 13.0009799609906 + ], + [ + 77.594476535566699, + 13.001495824310901 + ], + [ + 77.594475006895806, + 13.001500145353599 + ], + [ + 77.594382706848606, + 13.001760804998099 + ], + [ + 77.594289512835203, + 13.0021016532537 + ], + [ + 77.594194861925104, + 13.002413154504101 + ], + [ + 77.594042832621795, + 13.002910433093 + ], + [ + 77.593776175645999, + 13.0037363519941 + ], + [ + 77.5935545221773, + 13.004460184827099 + ], + [ + 77.593438834750103, + 13.004963875940399 + ], + [ + 77.593262900873697, + 13.005654502376601 + ], + [ + 77.5933278575815, + 13.0055883542099 + ], + [ + 77.593351781578207, + 13.0055632706674 + ], + [ + 77.593478369385295, + 13.005443429744901 + ], + [ + 77.593498321676506, + 13.005424032351399 + ], + [ + 77.593722390522302, + 13.0052648210273 + ], + [ + 77.593865956933499, + 13.0051631372912 + ], + [ + 77.593921313200198, + 13.005123929608599 + ], + [ + 77.594056219508502, + 13.0050288497353 + ], + [ + 77.594163107021501, + 13.004953401471999 + ], + [ + 77.594415801984596, + 13.0054232074687 + ], + [ + 77.594815844776306, + 13.006268971088801 + ], + [ + 77.595406218525099, + 13.006002223544099 + ], + [ + 77.595454989133799, + 13.006170776829601 + ], + [ + 77.595980667178907, + 13.0059584636619 + ], + [ + 77.596386375333907, + 13.006650672532 + ], + [ + 77.596436455620093, + 13.006618898080299 + ], + [ + 77.596436547263494, + 13.0066188510882 + ], + [ + 77.596493741961794, + 13.0065875559093 + ], + [ + 77.596632950614904, + 13.006519580892499 + ], + [ + 77.596766163681195, + 13.006460964295099 + ], + [ + 77.597010182941005, + 13.006337687896099 + ], + [ + 77.597291613368796, + 13.0061901317397 + ], + [ + 77.597295644290995, + 13.006188109259501 + ], + [ + 77.597495287583499, + 13.0060948129018 + ], + [ + 77.597531569608705, + 13.0060717513431 + ], + [ + 77.597605209587002, + 13.006030157104099 + ], + [ + 77.597769520533006, + 13.0059523465272 + ], + [ + 77.598154220689693, + 13.0057482449131 + ], + [ + 77.598222722279502, + 13.005707206395201 + ], + [ + 77.598525434557502, + 13.0055581490872 + ], + [ + 77.598953499717695, + 13.005270385124501 + ], + [ + 77.599414581402996, + 13.004991873577699 + ], + [ + 77.5995287431561, + 13.0049392804092 + ], + [ + 77.599847610522801, + 13.0047857725489 + ], + [ + 77.600252010717298, + 13.0046331490413 + ], + [ + 77.600989420689103, + 13.004426793761899 + ], + [ + 77.600600449957795, + 13.003998553322001 + ], + [ + 77.6004703886816, + 13.003447690966199 + ], + [ + 77.599927468603298, + 13.003613236917399 + ], + [ + 77.599563056628298, + 13.003690531124199 + ], + [ + 77.599402997943599, + 13.0033805020452 + ], + [ + 77.599245946371497, + 13.0031731603059 + ], + [ + 77.600128734119707, + 13.0027561008514 + ], + [ + 77.600623037736, + 13.0025313998221 + ], + [ + 77.600694746390204, + 13.0025348326832 + ], + [ + 77.600879358031804, + 13.002452444016701 + ], + [ + 77.600949922398897, + 13.0024116311125 + ], + [ + 77.601029192225297, + 13.0023508237777 + ], + [ + 77.601222417018306, + 13.0022534959997 + ], + [ + 77.601326526306707, + 13.002470355717101 + ], + [ + 77.601429375787703, + 13.002665034137999 + ], + [ + 77.6015152001941, + 13.002917024552801 + ], + [ + 77.601838651995905, + 13.002846078756701 + ], + [ + 77.602012583625196, + 13.002781998682799 + ], + [ + 77.602221412539905, + 13.0026970319004 + ], + [ + 77.60250061536, + 13.0025443330545 + ], + [ + 77.602738706072003, + 13.0023896149042 + ], + [ + 77.602925299384694, + 13.0022728297174 + ], + [ + 77.602982651340596, + 13.002172556267899 + ], + [ + 77.602799418838401, + 13.0018718975815 + ], + [ + 77.602739185759006, + 13.001783288183701 + ], + [ + 77.602586558685005, + 13.001558961881599 + ], + [ + 77.602563833442701, + 13.0015332162231 + ], + [ + 77.602435061085799, + 13.001387700492099 + ], + [ + 77.602332481561206, + 13.001324359830001 + ], + [ + 77.602239162407898, + 13.0013207783668 + ], + [ + 77.602105858390104, + 13.001348088451699 + ], + [ + 77.601515994350095, + 13.001436439564401 + ], + [ + 77.601590355271398, + 13.0005051630098 + ], + [ + 77.601701993296402, + 13.0005537325532 + ], + [ + 77.601849243800899, + 12.9998758146386 + ], + [ + 77.602395388404602, + 12.9995157441257 + ], + [ + 77.603775130442898, + 12.9990840725246 + ], + [ + 77.604275953950705, + 12.998850933160201 + ], + [ + 77.604296034402907, + 12.9988439560016 + ], + [ + 77.604357625990005, + 12.9987868739052 + ], + [ + 77.604363923858998, + 12.99878342287 + ], + [ + 77.604598273103406, + 12.9986726604014 + ], + [ + 77.604750384704005, + 12.9985717572191 + ], + [ + 77.604783917744697, + 12.9985296372709 + ], + [ + 77.604799838316893, + 12.998510279708899 + ], + [ + 77.604868160263607, + 12.998380855884101 + ], + [ + 77.6049259992663, + 12.998184909555199 + ], + [ + 77.604949919682397, + 12.9981044904395 + ], + [ + 77.604957156914594, + 12.9980807028764 + ], + [ + 77.605038929625096, + 12.997860801441499 + ], + [ + 77.605056412404707, + 12.997825618238499 + ], + [ + 77.605092941866999, + 12.9977947610349 + ], + [ + 77.605365820926806, + 12.997789764006299 + ], + [ + 77.605710726816298, + 12.9977896901585 + ], + [ + 77.605998997566005, + 12.9977698573074 + ], + [ + 77.606250514942602, + 12.997759427380901 + ], + [ + 77.606383207074401, + 12.997784068682501 + ], + [ + 77.606468253996198, + 12.997822739664899 + ], + [ + 77.6065235627117, + 12.9978809069897 + ], + [ + 77.6066016029298, + 12.998461703402301 + ], + [ + 77.606707057545194, + 12.9991726076248 + ], + [ + 77.606720530055, + 12.9992634282662 + ], + [ + 77.606745822007696, + 12.999424661507 + ], + [ + 77.606768054177394, + 12.9994583166794 + ], + [ + 77.606809684860906, + 12.999474837815701 + ], + [ + 77.606851327342099, + 12.9994924881071 + ], + [ + 77.606937783755001, + 12.9995006540668 + ], + [ + 77.607085033470597, + 12.9994856237848 + ], + [ + 77.607371764999002, + 12.9994285382672 + ], + [ + 77.607627205484505, + 12.999352569031201 + ], + [ + 77.6082777654767, + 12.999122435351 + ], + [ + 77.608466031813293, + 12.999065208834701 + ], + [ + 77.608769093024804, + 12.998972950145101 + ], + [ + 77.6086441724715, + 12.9988104599863 + ], + [ + 77.608389286229794, + 12.998438421946201 + ], + [ + 77.608284567571403, + 12.998285570429401 + ], + [ + 77.608132083255796, + 12.998065275698799 + ], + [ + 77.607821154209205, + 12.997602406712 + ], + [ + 77.607389267518798, + 12.996912312889799 + ], + [ + 77.606991054225105, + 12.996276021134401 + ], + [ + 77.606549769131604, + 12.995648054006001 + ], + [ + 77.606482850849105, + 12.9955455645422 + ], + [ + 77.606477563869205, + 12.995537467815399 + ], + [ + 77.6064674720608, + 12.995522011233501 + ], + [ + 77.605668531054505, + 12.994298372405799 + ], + [ + 77.605629355840605, + 12.9942411720998 + ], + [ + 77.605574430825399, + 12.994264693747899 + ], + [ + 77.6054241388306, + 12.994329056745601 + ], + [ + 77.605388548320704, + 12.994339577393101 + ], + [ + 77.605255401704099, + 12.9943815674803 + ], + [ + 77.604963270842504, + 12.994472582376799 + ], + [ + 77.604662316882397, + 12.994591085513299 + ], + [ + 77.604651318725104, + 12.9945954157412 + ], + [ + 77.604562775004396, + 12.9946298662048 + ], + [ + 77.604437000176901, + 12.994678049050901 + ], + [ + 77.604375652642602, + 12.994700770320801 + ], + [ + 77.604190686015897, + 12.9947615234765 + ], + [ + 77.603731626695193, + 12.994912934029999 + ], + [ + 77.603695484722195, + 12.99492571857 + ], + [ + 77.6035240847106, + 12.9949835843319 + ], + [ + 77.603385627780995, + 12.995030329159301 + ], + [ + 77.603271462289797, + 12.9950688720849 + ], + [ + 77.603137774315996, + 12.9951142544957 + ], + [ + 77.602940766127404, + 12.995165492530999 + ], + [ + 77.602704221453706, + 12.99522701205 + ], + [ + 77.602546752046095, + 12.9952683963964 + ], + [ + 77.602217277267101, + 12.995354984753201 + ], + [ + 77.602160984223701, + 12.995367971059 + ], + [ + 77.602080653531999, + 12.9953859457656 + ], + [ + 77.601938911511695, + 12.9954176518357 + ], + [ + 77.600959650346994, + 12.9956367235795 + ], + [ + 77.600676001007599, + 12.995700178638399 + ], + [ + 77.600551511526206, + 12.9956890033903 + ], + [ + 77.6004363689581, + 12.995657709051899 + ], + [ + 77.6003511412856, + 12.995634545862 + ], + [ + 77.600057886133598, + 12.995545724036401 + ], + [ + 77.599824499655696, + 12.995475035003199 + ], + [ + 77.599318929250302, + 12.995321905242999 + ], + [ + 77.598942762982702, + 12.9952257359708 + ], + [ + 77.598684716959497, + 12.9951468094097 + ], + [ + 77.5983452775194, + 12.995042988144901 + ], + [ + 77.598042307166594, + 12.994950320232901 + ], + [ + 77.597688091657105, + 12.9948419787272 + ], + [ + 77.597505986717294, + 12.9947862790149 + ], + [ + 77.597236698037094, + 12.9947001762322 + ], + [ + 77.597129821954596, + 12.994666237255201 + ], + [ + 77.596965953755998, + 12.994632841128 + ], + [ + 77.596786493027295, + 12.994596267161 + ], + [ + 77.596601142888602, + 12.9945491799932 + ], + [ + 77.596576923858393, + 12.9945430276875 + ], + [ + 77.596582643846602, + 12.994506237850601 + ], + [ + 77.596590239400598, + 12.994457383801 + ], + [ + 77.596592482855201, + 12.9944429561451 + ], + [ + 77.596592575278393, + 12.9944423643764 + ], + [ + 77.596675657382804, + 12.994410131175901 + ], + [ + 77.598642207757393, + 12.993647169661999 + ], + [ + 77.599188993144196, + 12.993459881118699 + ], + [ + 77.600280080232906, + 12.993017031109201 + ], + [ + 77.600572541998403, + 12.992898325353501 + ], + [ + 77.601264172790707, + 12.9926316626253 + ], + [ + 77.6018205882865, + 12.9924849279959 + ], + [ + 77.602395415409603, + 12.992392213487699 + ], + [ + 77.602565138902193, + 12.9923792198417 + ], + [ + 77.602857329554496, + 12.9924045236748 + ], + [ + 77.602930283568597, + 12.992418106399899 + ], + [ + 77.603352320325598, + 12.992496680663599 + ], + [ + 77.603665027713902, + 12.9926121206204 + ], + [ + 77.603797659290606, + 12.992686452903 + ], + [ + 77.603871788706201, + 12.992727493163899 + ], + [ + 77.603879706521994, + 12.9926585274443 + ], + [ + 77.603951973464902, + 12.9925549621081 + ], + [ + 77.603984434794597, + 12.9925084416794 + ], + [ + 77.604178224068804, + 12.9922307246733 + ], + [ + 77.604193886478498, + 12.9922082791692 + ], + [ + 77.604253271980298, + 12.992123173494999 + ], + [ + 77.604275692225002, + 12.992091044145599 + ], + [ + 77.604338023032895, + 12.9920497648887 + ], + [ + 77.604495598303004, + 12.9919816617554 + ], + [ + 77.604522596839104, + 12.991969993366601 + ], + [ + 77.604552534842995, + 12.9919696931304 + ], + [ + 77.604570252043402, + 12.9919570933304 + ], + [ + 77.604630620046393, + 12.9918932480306 + ], + [ + 77.604692572590395, + 12.991760500536 + ], + [ + 77.604783511777399, + 12.9916466601418 + ], + [ + 77.604918944264199, + 12.991437513674899 + ], + [ + 77.604980792851606, + 12.9913499385306 + ], + [ + 77.604999506535293, + 12.991313730310701 + ], + [ + 77.605129228956002, + 12.9910627410441 + ], + [ + 77.605208322001204, + 12.9908620645922 + ], + [ + 77.605287214722793, + 12.990642192332899 + ], + [ + 77.605291027267299, + 12.9906191754382 + ], + [ + 77.605294707230996, + 12.9905969612128 + ], + [ + 77.605317007047006, + 12.990462337486001 + ], + [ + 77.6053319600165, + 12.9902950536015 + ], + [ + 77.605363268876303, + 12.990150191323 + ], + [ + 77.605363834010305, + 12.990150229922399 + ], + [ + 77.605363058828701, + 12.9900813766964 + ], + [ + 77.605386619774507, + 12.9899731977827 + ], + [ + 77.605435216161197, + 12.9897502679081 + ], + [ + 77.605457733912502, + 12.989690017896001 + ], + [ + 77.605475229593296, + 12.989641419563601 + ], + [ + 77.605542756473596, + 12.9894581477672 + ], + [ + 77.605627853816401, + 12.989282770193 + ], + [ + 77.605667968337798, + 12.989232936158899 + ], + [ + 77.605746937242799, + 12.989111086923399 + ], + [ + 77.605806778139794, + 12.9890292775129 + ], + [ + 77.605427659362306, + 12.9890438336764 + ], + [ + 77.605289767537798, + 12.988442855197301 + ], + [ + 77.604946437204802, + 12.9885039941197 + ], + [ + 77.604483931968304, + 12.988543939966601 + ], + [ + 77.604527325647098, + 12.988956612547501 + ], + [ + 77.604619071704406, + 12.9889748600249 + ], + [ + 77.604680232943807, + 12.9890196432011 + ], + [ + 77.604686514018795, + 12.989227395029401 + ], + [ + 77.604710132724406, + 12.9894700291372 + ], + [ + 77.604700043975399, + 12.989735699460599 + ], + [ + 77.604642286062202, + 12.9898200098443 + ], + [ + 77.6046244191309, + 12.9901783164658 + ], + [ + 77.604495962758193, + 12.990166490036099 + ], + [ + 77.604452692589803, + 12.990160366649601 + ], + [ + 77.604199364221699, + 12.9901351643953 + ], + [ + 77.604154042085696, + 12.990129565934801 + ], + [ + 77.603875895531601, + 12.990092002047801 + ], + [ + 77.603805823560094, + 12.9900805987729 + ], + [ + 77.603499023021499, + 12.9900574450501 + ], + [ + 77.603179731917393, + 12.990020292784401 + ], + [ + 77.602906991284399, + 12.9900078939044 + ], + [ + 77.602871219029495, + 12.9894829240384 + ], + [ + 77.603245369307103, + 12.989417063970199 + ], + [ + 77.6032442301765, + 12.9890102816807 + ], + [ + 77.603243147886005, + 12.988623704879799 + ], + [ + 77.603243041714904, + 12.988585933622099 + ], + [ + 77.603231760059899, + 12.988442627491599 + ], + [ + 77.603227776229801, + 12.988391849591499 + ], + [ + 77.603211267690995, + 12.9883547486194 + ], + [ + 77.603071247721502, + 12.9882341889189 + ], + [ + 77.602980226215905, + 12.988340124481301 + ], + [ + 77.602755773374099, + 12.9885972115379 + ], + [ + 77.602723610196094, + 12.9886340512627 + ], + [ + 77.602449269744696, + 12.9889456828782 + ], + [ + 77.602225121771596, + 12.989200300246701 + ], + [ + 77.602179809405698, + 12.989136918906899 + ], + [ + 77.602097997314203, + 12.988590962541601 + ], + [ + 77.602091312943003, + 12.9885360137947 + ], + [ + 77.602064073234899, + 12.9882911454057 + ], + [ + 77.601941992150699, + 12.9869405603462 + ], + [ + 77.6019438384035, + 12.9868215020539 + ], + [ + 77.601954105265904, + 12.9866771745997 + ], + [ + 77.601795784564501, + 12.9866868306223 + ], + [ + 77.6016502166935, + 12.9867357025184 + ], + [ + 77.6015622295063, + 12.9867819801393 + ], + [ + 77.601466102187501, + 12.9869133897714 + ], + [ + 77.6014902615631, + 12.987181181601599 + ], + [ + 77.601548664664193, + 12.9876527208522 + ], + [ + 77.601454284949497, + 12.987677877454701 + ], + [ + 77.601318823954003, + 12.987709498259999 + ], + [ + 77.601076555798699, + 12.987758329410999 + ], + [ + 77.601005719641705, + 12.987644659163699 + ], + [ + 77.600768909632507, + 12.9873745330185 + ], + [ + 77.600575869688697, + 12.987094406532499 + ], + [ + 77.600364379011594, + 12.9868393686661 + ], + [ + 77.599967799713099, + 12.9869865891936 + ], + [ + 77.599738410278505, + 12.987086739618301 + ], + [ + 77.599658682900497, + 12.986938233012999 + ], + [ + 77.599330609988499, + 12.987144287166499 + ], + [ + 77.598907725929493, + 12.9874330034155 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "285", + "group": "Sampangiram Nagar", + "Corporatio": "Central", + "ac_no": "162", + "ac": "Shivajinagar", + "corporat_1": "1", + "ward_id": "16", + "ward_name": "16 - Sampangirama Nagar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಶಿವಾಜಿನಗರ", + "ward_name_": "ಸಂಪಂಗಿರಾಮ ನಗರ", + "dig_ward_n": "Sampangiram Nagar", + "Assembly": "162 - Shivajinagar", + "Slno": "16" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.581615458545301, + 12.9965910309227 + ], + [ + 77.581411854996503, + 12.996257359445501 + ], + [ + 77.581000487606403, + 12.995371039386001 + ], + [ + 77.580582185324204, + 12.994339735012501 + ], + [ + 77.580949856363802, + 12.9941038294647 + ], + [ + 77.581325709165895, + 12.993839816297999 + ], + [ + 77.581461196776104, + 12.993756478915699 + ], + [ + 77.581668991640399, + 12.9940017912795 + ], + [ + 77.581781381378207, + 12.994148722654799 + ], + [ + 77.582449174763198, + 12.995081493857301 + ], + [ + 77.582888695736997, + 12.995529057538301 + ], + [ + 77.584026215059495, + 12.995919319352501 + ], + [ + 77.584765694902401, + 12.9960051819623 + ], + [ + 77.584931508841805, + 12.9954010039836 + ], + [ + 77.585063310625799, + 12.994711270135101 + ], + [ + 77.585129007056295, + 12.9939935093199 + ], + [ + 77.585207100862505, + 12.9931874322639 + ], + [ + 77.585388601124393, + 12.9923537827919 + ], + [ + 77.585582645109099, + 12.9913192173239 + ], + [ + 77.585676697733206, + 12.9905151226928 + ], + [ + 77.585798068624499, + 12.9895243070894 + ], + [ + 77.5860841575672, + 12.988904748085799 + ], + [ + 77.586606896741799, + 12.988540990422999 + ], + [ + 77.587477479336599, + 12.9878725839447 + ], + [ + 77.5882892669391, + 12.987176076048 + ], + [ + 77.588656949367305, + 12.986727281546001 + ], + [ + 77.588883637875298, + 12.9863658823874 + ], + [ + 77.589040653365899, + 12.986526871472799 + ], + [ + 77.588890652961396, + 12.987241469385101 + ], + [ + 77.588888285975997, + 12.987663388883499 + ], + [ + 77.592322682997505, + 12.9862195556438 + ], + [ + 77.593564453203498, + 12.985628323353099 + ], + [ + 77.592280662627701, + 12.9831169311383 + ], + [ + 77.592329175705203, + 12.982732060892401 + ], + [ + 77.597103879594499, + 12.981098530931201 + ], + [ + 77.597746365715494, + 12.980736885271901 + ], + [ + 77.5976334946142, + 12.9806439479835 + ], + [ + 77.597512151342698, + 12.980544034070499 + ], + [ + 77.598000763556897, + 12.979526177843301 + ], + [ + 77.598562806076501, + 12.978316737442 + ], + [ + 77.599317225750596, + 12.9766717264886 + ], + [ + 77.599320609511906, + 12.9766649169259 + ], + [ + 77.599239091845405, + 12.9766060241208 + ], + [ + 77.599202856529004, + 12.976579846270001 + ], + [ + 77.598889417921498, + 12.9763534022469 + ], + [ + 77.598266775726501, + 12.9759035710068 + ], + [ + 77.598173653532498, + 12.975836294249699 + ], + [ + 77.597532125415299, + 12.975372814316801 + ], + [ + 77.596636392044502, + 12.9747211264434 + ], + [ + 77.596631926080605, + 12.9747174046274 + ], + [ + 77.595682756775304, + 12.9739265906796 + ], + [ + 77.595198815951093, + 12.973555967107901 + ], + [ + 77.595052480689503, + 12.973443898269499 + ], + [ + 77.594887284616902, + 12.973233423036501 + ], + [ + 77.594697157723004, + 12.972991184996101 + ], + [ + 77.594694721174093, + 12.9729880798093 + ], + [ + 77.594644210112094, + 12.972923723494 + ], + [ + 77.594602341784807, + 12.972870378726901 + ], + [ + 77.594511610202005, + 12.9727547788066 + ], + [ + 77.594000901214002, + 12.972086814311901 + ], + [ + 77.593953039851399, + 12.972024052128701 + ], + [ + 77.593963587117301, + 12.971974259825 + ], + [ + 77.593966400903696, + 12.9719609774688 + ], + [ + 77.593990727348697, + 12.971846147689099 + ], + [ + 77.594032592468295, + 12.971648523871901 + ], + [ + 77.594288106773206, + 12.9704423762914 + ], + [ + 77.594300198776693, + 12.9703852968403 + ], + [ + 77.594427128139898, + 12.969786130570499 + ], + [ + 77.594432759182794, + 12.9697595504693 + ], + [ + 77.594496948151502, + 12.9694675092203 + ], + [ + 77.594702049184093, + 12.9685343612809 + ], + [ + 77.594707593818796, + 12.9685091344854 + ], + [ + 77.5947780352206, + 12.9681886476966 + ], + [ + 77.594802189944204, + 12.9680909659434 + ], + [ + 77.594947120726204, + 12.967504868183299 + ], + [ + 77.594962656172498, + 12.967392913216299 + ], + [ + 77.594977133933199, + 12.9672900031441 + ], + [ + 77.594974985093501, + 12.9672594713269 + ], + [ + 77.594973082683396, + 12.967232449604699 + ], + [ + 77.594970860129294, + 12.9671984511409 + ], + [ + 77.594969990702097, + 12.9671851422851 + ], + [ + 77.594960765032795, + 12.967043980514401 + ], + [ + 77.595065801555407, + 12.9665686298016 + ], + [ + 77.595099842387299, + 12.966464125194101 + ], + [ + 77.595159541040502, + 12.966280854418001 + ], + [ + 77.595217951875, + 12.966178602928901 + ], + [ + 77.595221177319303, + 12.9661729568165 + ], + [ + 77.595325438848803, + 12.9660115572799 + ], + [ + 77.595373046136302, + 12.9659388076743 + ], + [ + 77.595421193943196, + 12.965862664794701 + ], + [ + 77.595565131793606, + 12.965641016930901 + ], + [ + 77.595592319158499, + 12.965597832608699 + ], + [ + 77.595666596525703, + 12.965487550278 + ], + [ + 77.595764160251704, + 12.965346544739999 + ], + [ + 77.595810697939498, + 12.965281710814301 + ], + [ + 77.595859068028005, + 12.965227022236901 + ], + [ + 77.595878406697693, + 12.9652042443673 + ], + [ + 77.595905147114905, + 12.9651734858019 + ], + [ + 77.595942696493694, + 12.965130198088699 + ], + [ + 77.596107108244695, + 12.9649953013305 + ], + [ + 77.596248608312294, + 12.964927261335401 + ], + [ + 77.596263540656096, + 12.964923724474099 + ], + [ + 77.596305907583897, + 12.964914085833801 + ], + [ + 77.596398519109798, + 12.9648930161186 + ], + [ + 77.596893725168499, + 12.9648491853686 + ], + [ + 77.596905384765094, + 12.9648481529275 + ], + [ + 77.596916202271501, + 12.964847195743801 + ], + [ + 77.596908444096698, + 12.9648259693071 + ], + [ + 77.596902415226893, + 12.964809474057599 + ], + [ + 77.596887940819599, + 12.9647698710538 + ], + [ + 77.596861094892404, + 12.964696420608201 + ], + [ + 77.596775461478501, + 12.9645142639488 + ], + [ + 77.596623839527396, + 12.964191736106899 + ], + [ + 77.596486202575406, + 12.963966121734099 + ], + [ + 77.596377324195601, + 12.963793297052399 + ], + [ + 77.596262583880502, + 12.963610367146799 + ], + [ + 77.595985075521398, + 12.9632766063623 + ], + [ + 77.595950771472801, + 12.963244199061901 + ], + [ + 77.595725786388002, + 12.963034136139701 + ], + [ + 77.595684562503195, + 12.9629997632754 + ], + [ + 77.595198467178193, + 12.9625944535257 + ], + [ + 77.595182783692195, + 12.962581059299101 + ], + [ + 77.595068208812407, + 12.962502004767 + ], + [ + 77.594948957894204, + 12.962419723649299 + ], + [ + 77.5949456150353, + 12.9624174170833 + ], + [ + 77.594926477569402, + 12.9624040572743 + ], + [ + 77.594926127789407, + 12.9624038159309 + ], + [ + 77.594875708115197, + 12.962369084673201 + ], + [ + 77.594827900172703, + 12.9623361523025 + ], + [ + 77.594818642682398, + 12.9623317274251 + ], + [ + 77.594817916457501, + 12.9623315160343 + ], + [ + 77.594523393396301, + 12.962245771962101 + ], + [ + 77.594454837213405, + 12.962225812783201 + ], + [ + 77.594132030697693, + 12.9621872465829 + ], + [ + 77.593989722387903, + 12.9621748243271 + ], + [ + 77.593979186736107, + 12.962173904836099 + ], + [ + 77.593968155044706, + 12.962172941502899 + ], + [ + 77.593965524590402, + 12.962172712047201 + ], + [ + 77.593899802839999, + 12.962166975251201 + ], + [ + 77.593885986828198, + 12.962167112945 + ], + [ + 77.593747109190005, + 12.962168496993399 + ], + [ + 77.593690123659499, + 12.962169064887201 + ], + [ + 77.593686230306702, + 12.9621691036863 + ], + [ + 77.593515350703797, + 12.962179840880101 + ], + [ + 77.593367871406997, + 12.9622005409748 + ], + [ + 77.59324687662, + 12.9622175241731 + ], + [ + 77.593051867615898, + 12.962244769662201 + ], + [ + 77.592977577353295, + 12.962255148569501 + ], + [ + 77.592872619868999, + 12.962269812613499 + ], + [ + 77.592441769284605, + 12.9623610603121 + ], + [ + 77.592434449423095, + 12.962362722368299 + ], + [ + 77.592254399966905, + 12.9624035929805 + ], + [ + 77.592176406819505, + 12.9624212974798 + ], + [ + 77.591850727551503, + 12.9624945573328 + ], + [ + 77.591652942942204, + 12.9625202421384 + ], + [ + 77.591168237315301, + 12.962581529539399 + ], + [ + 77.591168152717103, + 12.962581543933201 + ], + [ + 77.5910827341431, + 12.9625921559911 + ], + [ + 77.590901443202895, + 12.9626146802458 + ], + [ + 77.590749077737399, + 12.9626342657574 + ], + [ + 77.590411380093798, + 12.9626767423823 + ], + [ + 77.590300592776302, + 12.9626906774786 + ], + [ + 77.590163171905004, + 12.9627383707461 + ], + [ + 77.590148731956006, + 12.9627433821796 + ], + [ + 77.590029247146603, + 12.962784851074399 + ], + [ + 77.589987525061403, + 12.9627983290909 + ], + [ + 77.589949790282404, + 12.962810519773999 + ], + [ + 77.589921991160793, + 12.962819500137901 + ], + [ + 77.589884282079794, + 12.9628316824259 + ], + [ + 77.589802017630205, + 12.962858258069801 + ], + [ + 77.589706958074103, + 12.9629246300745 + ], + [ + 77.589573948692603, + 12.9630174998698 + ], + [ + 77.589362181797796, + 12.9632499836849 + ], + [ + 77.589360664243102, + 12.9632515490841 + ], + [ + 77.589288127035502, + 12.963326383450999 + ], + [ + 77.588868905246997, + 12.9637630753362 + ], + [ + 77.588629236159804, + 12.963969862484401 + ], + [ + 77.587904504731, + 12.964593667832901 + ], + [ + 77.587416212556704, + 12.9649768386932 + ], + [ + 77.586779997035904, + 12.965475538745901 + ], + [ + 77.586779711944899, + 12.9654757629228 + ], + [ + 77.586734880260394, + 12.9655109955541 + ], + [ + 77.586623545129697, + 12.9657684534069 + ], + [ + 77.586795321490499, + 12.965987799402001 + ], + [ + 77.586943852998203, + 12.9661774634486 + ], + [ + 77.587439788020802, + 12.966811668546599 + ], + [ + 77.587415454473003, + 12.9668217797105 + ], + [ + 77.586796570291796, + 12.9670789326823 + ], + [ + 77.586364890825195, + 12.9672582658278 + ], + [ + 77.585967041881204, + 12.9674350766808 + ], + [ + 77.585481155089099, + 12.967651011812899 + ], + [ + 77.585290879743894, + 12.9677353416442 + ], + [ + 77.585265207290007, + 12.967758182773601 + ], + [ + 77.585144846200606, + 12.967866662384001 + ], + [ + 77.585084041230601, + 12.9679440590503 + ], + [ + 77.5850725174557, + 12.9679587126301 + ], + [ + 77.585060226288604, + 12.9679743432267 + ], + [ + 77.585012438198504, + 12.9680351146152 + ], + [ + 77.584948673071295, + 12.968104635569199 + ], + [ + 77.584825125851296, + 12.9682391206688 + ], + [ + 77.584770478274294, + 12.968299516596099 + ], + [ + 77.584507773038595, + 12.9685784982884 + ], + [ + 77.584499966809204, + 12.968586788121801 + ], + [ + 77.584448813582, + 12.9686308141717 + ], + [ + 77.584361852010503, + 12.968704478286099 + ], + [ + 77.584416827971097, + 12.9699021218751 + ], + [ + 77.584421274811902, + 12.9699603767497 + ], + [ + 77.584451453345807, + 12.970355802787999 + ], + [ + 77.584443661160094, + 12.9703626921549 + ], + [ + 77.584284728254801, + 12.970503202718101 + ], + [ + 77.584151978143495, + 12.970620596637501 + ], + [ + 77.584135088434905, + 12.970635538409701 + ], + [ + 77.584112894138997, + 12.970655176569201 + ], + [ + 77.583783924435195, + 12.9709462367914 + ], + [ + 77.583770150710194, + 12.9709620320633 + ], + [ + 77.583666707989707, + 12.971080658789001 + ], + [ + 77.582870824811096, + 12.9718428633886 + ], + [ + 77.582722431843194, + 12.971985042220499 + ], + [ + 77.582674138647803, + 12.972031272089801 + ], + [ + 77.582308846653603, + 12.9722913521789 + ], + [ + 77.582207543509199, + 12.972363477877501 + ], + [ + 77.582119381481704, + 12.9724262471239 + ], + [ + 77.581668774631794, + 12.972747068180199 + ], + [ + 77.581505966889694, + 12.972836725689501 + ], + [ + 77.581485001386497, + 12.972848271100499 + ], + [ + 77.581093130730693, + 12.9730631741491 + ], + [ + 77.581086529824802, + 12.973066792903101 + ], + [ + 77.5811291167023, + 12.973116536622999 + ], + [ + 77.581337708874301, + 12.9733601783593 + ], + [ + 77.581630679336698, + 12.9737976985221 + ], + [ + 77.582085863089603, + 12.974498716370899 + ], + [ + 77.582174201013203, + 12.974634762202699 + ], + [ + 77.582197567170397, + 12.9746672808615 + ], + [ + 77.582335576361999, + 12.9748548987366 + ], + [ + 77.582519050474502, + 12.975104323864199 + ], + [ + 77.582523345606702, + 12.975110162614101 + ], + [ + 77.583291909276994, + 12.9761549943454 + ], + [ + 77.583956837645701, + 12.9771424352103 + ], + [ + 77.583969776746599, + 12.977161650187901 + ], + [ + 77.584239183696894, + 12.977561724595599 + ], + [ + 77.584450830538202, + 12.9779289021 + ], + [ + 77.583488354690999, + 12.978561842911899 + ], + [ + 77.582524068808496, + 12.9792071698041 + ], + [ + 77.581950166983205, + 12.979591238593899 + ], + [ + 77.581839524701294, + 12.979665173965101 + ], + [ + 77.581834583206302, + 12.9796684754377 + ], + [ + 77.581670544183297, + 12.9797780922342 + ], + [ + 77.581311286136597, + 12.9799782057902 + ], + [ + 77.581094629269302, + 12.9800988870912 + ], + [ + 77.580835357108796, + 12.9801898109597 + ], + [ + 77.580753279943906, + 12.980218594663199 + ], + [ + 77.580722468403195, + 12.9802253050819 + ], + [ + 77.580706227558906, + 12.9802288415903 + ], + [ + 77.5805902134001, + 12.980254107193 + ], + [ + 77.580567638545105, + 12.980259023796799 + ], + [ + 77.580432718811394, + 12.980288406099501 + ], + [ + 77.580193233380299, + 12.9803043549707 + ], + [ + 77.579023471194603, + 12.980382252315099 + ], + [ + 77.578958022463596, + 12.9803866103265 + ], + [ + 77.578234330686101, + 12.9804479962746 + ], + [ + 77.577919565184104, + 12.980465799219299 + ], + [ + 77.577548833404904, + 12.980528199720601 + ], + [ + 77.577522555891605, + 12.980541151893 + ], + [ + 77.577434260519993, + 12.9805846718558 + ], + [ + 77.577326009907594, + 12.9806359469816 + ], + [ + 77.577249188688299, + 12.9806723342537 + ], + [ + 77.577145409300996, + 12.980770483603299 + ], + [ + 77.576999923067206, + 12.9809560030422 + ], + [ + 77.576957205212807, + 12.981001685565801 + ], + [ + 77.576817098353104, + 12.9811515061756 + ], + [ + 77.576800598449196, + 12.9811691595554 + ], + [ + 77.576707339227298, + 12.981338350826601 + ], + [ + 77.576677321275696, + 12.9814425446447 + ], + [ + 77.576620593682605, + 12.981580882458401 + ], + [ + 77.576595409800007, + 12.981762950528701 + ], + [ + 77.576582983969899, + 12.982065727957499 + ], + [ + 77.576632502685797, + 12.982350608351201 + ], + [ + 77.576632568853697, + 12.9823509501011 + ], + [ + 77.576639978586897, + 12.9823871553948 + ], + [ + 77.576692585521101, + 12.9826439757373 + ], + [ + 77.576728056839301, + 12.9827378461747 + ], + [ + 77.576769536534499, + 12.982847617294 + ], + [ + 77.576950072453897, + 12.983157515804001 + ], + [ + 77.577130299656801, + 12.983381589882701 + ], + [ + 77.577185475036302, + 12.9834299877503 + ], + [ + 77.577243602110102, + 12.983480974512901 + ], + [ + 77.577384422949095, + 12.9835687930911 + ], + [ + 77.577509581920694, + 12.983621710548199 + ], + [ + 77.577587986152693, + 12.983654859948301 + ], + [ + 77.577445178205096, + 12.9837093537757 + ], + [ + 77.577291058779707, + 12.9837278219217 + ], + [ + 77.577126210145494, + 12.9837667238963 + ], + [ + 77.577080245337498, + 12.983776214180001 + ], + [ + 77.577022789320495, + 12.9837880770241 + ], + [ + 77.576957238220103, + 12.983796632211799 + ], + [ + 77.5767749430739, + 12.983818768292 + ], + [ + 77.575332876898798, + 12.9840498526315 + ], + [ + 77.574910540919305, + 12.9841175284007 + ], + [ + 77.574791762313495, + 12.9841365619475 + ], + [ + 77.574792736997594, + 12.984150152774101 + ], + [ + 77.5748005032425, + 12.984258440619699 + ], + [ + 77.574798388098699, + 12.984291172665699 + ], + [ + 77.574798020171599, + 12.9842968617002 + ], + [ + 77.574841314177505, + 12.984315593914999 + ], + [ + 77.574928152064103, + 12.9843531669671 + ], + [ + 77.575172941182402, + 12.984472706475 + ], + [ + 77.575410007801594, + 12.984625072169001 + ], + [ + 77.575594613653706, + 12.9847711817396 + ], + [ + 77.575795735826702, + 12.9849555238654 + ], + [ + 77.576097571468694, + 12.9853026168377 + ], + [ + 77.576566140319201, + 12.985960873920201 + ], + [ + 77.576708601176506, + 12.9861435381285 + ], + [ + 77.576753252807194, + 12.986200790218501 + ], + [ + 77.576823757003794, + 12.9862911907833 + ], + [ + 77.576969925628106, + 12.986478608973099 + ], + [ + 77.577130921019702, + 12.9867209295781 + ], + [ + 77.577480517867102, + 12.9872471186941 + ], + [ + 77.577848372813506, + 12.9877874780077 + ], + [ + 77.577870462453603, + 12.9878199273651 + ], + [ + 77.577885402817898, + 12.9878418177352 + ], + [ + 77.577885480449794, + 12.987841930798799 + ], + [ + 77.5778859462784, + 12.9878426127942 + ], + [ + 77.577886007086803, + 12.9878427025352 + ], + [ + 77.577887193190094, + 12.9878444407373 + ], + [ + 77.577887458839498, + 12.987844829292699 + ], + [ + 77.577888987293505, + 12.987847068219599 + ], + [ + 77.577889065874601, + 12.987847183984099 + ], + [ + 77.577891834689694, + 12.9878512409812 + ], + [ + 77.577892110639695, + 12.9878516456964 + ], + [ + 77.577894344396896, + 12.987854918392401 + ], + [ + 77.577894563279202, + 12.9878552387501 + ], + [ + 77.577894823327, + 12.9878556201335 + ], + [ + 77.577894900968204, + 12.987855734100499 + ], + [ + 77.577896789555197, + 12.987858500679 + ], + [ + 77.577897122563698, + 12.9878589888483 + ], + [ + 77.577899757609899, + 12.987862849318301 + ], + [ + 77.577899912882998, + 12.987863076349001 + ], + [ + 77.577901920276801, + 12.9878660179201 + ], + [ + 77.577901961433, + 12.987866078042501 + ], + [ + 77.577903481475602, + 12.987868305308 + ], + [ + 77.577903663882196, + 12.9878685727244 + ], + [ + 77.577908444762897, + 12.987875577570099 + ], + [ + 77.577908655224206, + 12.987875885363 + ], + [ + 77.5779102042614, + 12.987878154802599 + ], + [ + 77.577910298735404, + 12.9878782929956 + ], + [ + 77.577912997400603, + 12.987882247695699 + ], + [ + 77.577913179798003, + 12.9878825142087 + ], + [ + 77.577914048785999, + 12.9878837866698 + ], + [ + 77.577915866292201, + 12.987886450057299 + ], + [ + 77.577916003792794, + 12.9878866510644 + ], + [ + 77.577918221657598, + 12.9878899013317 + ], + [ + 77.577918712749494, + 12.987890621020901 + ], + [ + 77.577918837167203, + 12.987890804089 + ], + [ + 77.577920661215003, + 12.987893476446001 + ], + [ + 77.577920771591295, + 12.9878936379707 + ], + [ + 77.577921078406305, + 12.9878940875517 + ], + [ + 77.577921133594501, + 12.987894168314099 + ], + [ + 77.577921623746604, + 12.9878948862057 + ], + [ + 77.577921689226201, + 12.9878949822245 + ], + [ + 77.577922677951506, + 12.9878964305724 + ], + [ + 77.577922739681199, + 12.9878965203043 + ], + [ + 77.577922775226398, + 12.9878965723513 + ], + [ + 77.577923038075099, + 12.9878969573207 + ], + [ + 77.577923118517106, + 12.9878970748737 + ], + [ + 77.577923227962998, + 12.9878972355041 + ], + [ + 77.577924754547496, + 12.987899471738899 + ], + [ + 77.577925437406904, + 12.9879004732067 + ], + [ + 77.577925513149907, + 12.9879005817718 + ], + [ + 77.577926182898594, + 12.987901562590499 + ], + [ + 77.577926217513394, + 12.987901613743301 + ], + [ + 77.577926287934304, + 12.987901742237099 + ], + [ + 77.577926526450398, + 12.987902090406701 + ], + [ + 77.577926625595495, + 12.9879022348773 + ], + [ + 77.577948821742595, + 12.987934736470599 + ], + [ + 77.577951521333603, + 12.9879388700429 + ], + [ + 77.577954249026007, + 12.9879430485085 + ], + [ + 77.57795449052, + 12.987943417427701 + ], + [ + 77.577958363003802, + 12.9879493480565 + ], + [ + 77.577980437179704, + 12.987983152719 + ], + [ + 77.578346784924406, + 12.988544171375199 + ], + [ + 77.578364466265995, + 12.9885712491755 + ], + [ + 77.578410417710003, + 12.9886416176768 + ], + [ + 77.578793639830494, + 12.989219332424501 + ], + [ + 77.578796592401702, + 12.989223784193801 + ], + [ + 77.5790531870162, + 12.989610606444201 + ], + [ + 77.579391292539, + 12.990120302971 + ], + [ + 77.5796003104536, + 12.990399423936299 + ], + [ + 77.579777344046903, + 12.990703707003799 + ], + [ + 77.579882414868095, + 12.9909533687972 + ], + [ + 77.5798960067861, + 12.990987112898701 + ], + [ + 77.579674902442605, + 12.991098851475799 + ], + [ + 77.579455291862701, + 12.9911879889847 + ], + [ + 77.579429430185101, + 12.991192763040299 + ], + [ + 77.579249083452595, + 12.991181002395299 + ], + [ + 77.579161285948203, + 12.991211199124001 + ], + [ + 77.579154412738106, + 12.9912135630259 + ], + [ + 77.579121854641301, + 12.991224083497301 + ], + [ + 77.578949233653503, + 12.9912798596368 + ], + [ + 77.578746952283595, + 12.9913452157591 + ], + [ + 77.578404344046902, + 12.991455905663299 + ], + [ + 77.577795463307098, + 12.9916539323929 + ], + [ + 77.577571175423202, + 12.9917363381944 + ], + [ + 77.577950818450603, + 12.9920894305732 + ], + [ + 77.577918437950302, + 12.992149662976701 + ], + [ + 77.577767729505297, + 12.9924300015018 + ], + [ + 77.577520237664402, + 12.992890369568199 + ], + [ + 77.577498614682, + 12.9929305904981 + ], + [ + 77.577107901362396, + 12.9936573673245 + ], + [ + 77.577122458191994, + 12.9936730331404 + ], + [ + 77.577132059440999, + 12.993654868966299 + ], + [ + 77.577379108578398, + 12.9938514856401 + ], + [ + 77.577653416393204, + 12.994069795961 + ], + [ + 77.577939050852507, + 12.9942962093753 + ], + [ + 77.578141677524101, + 12.994457946871099 + ], + [ + 77.5781484521832, + 12.9944633391191 + ], + [ + 77.578162993586602, + 12.994474912408499 + ], + [ + 77.578263599097497, + 12.994554985838001 + ], + [ + 77.578495730446804, + 12.994771131719601 + ], + [ + 77.578754270762104, + 12.9950118669646 + ], + [ + 77.578994418826795, + 12.995235474567901 + ], + [ + 77.579231621809797, + 12.995455591309801 + ], + [ + 77.579457945191194, + 12.995681462359199 + ], + [ + 77.579499337145805, + 12.9957226583037 + ], + [ + 77.579686008826002, + 12.9959084451478 + ], + [ + 77.579763762421194, + 12.9959982183452 + ], + [ + 77.5797639013511, + 12.995998378681101 + ], + [ + 77.579764375955506, + 12.995998926872399 + ], + [ + 77.579764661268996, + 12.995999255600999 + ], + [ + 77.579769176976001, + 12.996004468769501 + ], + [ + 77.579769300049406, + 12.9960046102905 + ], + [ + 77.579777594856097, + 12.996014186579099 + ], + [ + 77.579777903489102, + 12.996014543082699 + ], + [ + 77.579789806771998, + 12.9960282863321 + ], + [ + 77.579790415644496, + 12.996028989484699 + ], + [ + 77.579806909239196, + 12.9960480327935 + ], + [ + 77.579807058423697, + 12.996048204772199 + ], + [ + 77.579826273755899, + 12.996070390312401 + ], + [ + 77.579828417391298, + 12.996072865224701 + ], + [ + 77.579875741499805, + 12.996127504091801 + ], + [ + 77.579882719763802, + 12.996135563025399 + ], + [ + 77.579884764567296, + 12.9961379241819 + ], + [ + 77.579997204687103, + 12.996267859363799 + ], + [ + 77.580199021092199, + 12.9964995201658 + ], + [ + 77.5802244670367, + 12.9965287285385 + ], + [ + 77.580251442742295, + 12.996560025821699 + ], + [ + 77.580256681431607, + 12.9965661054215 + ], + [ + 77.580260657517996, + 12.9965707177307 + ], + [ + 77.580290505282505, + 12.9966053481737 + ], + [ + 77.580291290422196, + 12.996606258268001 + ], + [ + 77.580314218274196, + 12.9966328617333 + ], + [ + 77.580535700433003, + 12.996891529353199 + ], + [ + 77.580617828090496, + 12.9969870082088 + ], + [ + 77.580740851850393, + 12.99713003159 + ], + [ + 77.5808386757612, + 12.9972352135775 + ], + [ + 77.580862550161299, + 12.9972609501965 + ], + [ + 77.580866039705498, + 12.9972643034138 + ], + [ + 77.581270730425999, + 12.997699578522299 + ], + [ + 77.581568868204997, + 12.9980207235861 + ], + [ + 77.581603798887301, + 12.9980576431782 + ], + [ + 77.581782567214205, + 12.9982249805244 + ], + [ + 77.581873588819093, + 12.9983101822507 + ], + [ + 77.5820579021388, + 12.9984822614623 + ], + [ + 77.582303193024401, + 12.998328338186401 + ], + [ + 77.582609861949805, + 12.998056760730201 + ], + [ + 77.582872410688196, + 12.997771972998301 + ], + [ + 77.583207802553403, + 12.997675411696999 + ], + [ + 77.583741732631594, + 12.9976844404293 + ], + [ + 77.584294523346102, + 12.9977437833838 + ], + [ + 77.584383915063398, + 12.9977617014105 + ], + [ + 77.5845232424454, + 12.9970497907862 + ], + [ + 77.584551563531093, + 12.9969341654521 + ], + [ + 77.584319065793096, + 12.996934462258301 + ], + [ + 77.583977906024401, + 12.9969721580607 + ], + [ + 77.583925856530399, + 12.9971118938511 + ], + [ + 77.583491584562196, + 12.997099065735499 + ], + [ + 77.582983739472397, + 12.997134383662299 + ], + [ + 77.5827527499805, + 12.997181070042901 + ], + [ + 77.582435167462506, + 12.9971481968246 + ], + [ + 77.582287757215994, + 12.9971070014936 + ], + [ + 77.582181135740697, + 12.9973637042162 + ], + [ + 77.582037718432304, + 12.9976413845366 + ], + [ + 77.581961432629996, + 12.997586458758899 + ], + [ + 77.581827169617995, + 12.9974308357222 + ], + [ + 77.581790552432807, + 12.9970310981181 + ], + [ + 77.581615458545301, + 12.9965910309227 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "286", + "group": "PATTANDURU AGRAHARA", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "26", + "ward_name": "26 - Pattanduru Agrahara", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಪಟ್ಟಂದೂರು ಅಗ್ರಹಾರ", + "dig_ward_n": "PATTANDURU AGRAHARA", + "Assembly": "174 - Mahadevapura", + "Slno": "26" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.734338596890396, + 12.9738000504735 + ], + [ + 77.734449513892102, + 12.9727133034062 + ], + [ + 77.734260855116901, + 12.9721791674621 + ], + [ + 77.7341151586877, + 12.9721137908593 + ], + [ + 77.733960122743795, + 12.9719307363713 + ], + [ + 77.7335996174765, + 12.9715179298218 + ], + [ + 77.733219521369406, + 12.971543653028199 + ], + [ + 77.732964015320903, + 12.971022519551401 + ], + [ + 77.732906542902398, + 12.970838938691299 + ], + [ + 77.732444975438995, + 12.970951986272601 + ], + [ + 77.732244572823305, + 12.970363013887001 + ], + [ + 77.732081774731398, + 12.970060220437199 + ], + [ + 77.732019238571496, + 12.9697544234849 + ], + [ + 77.732016778661801, + 12.969750827819 + ], + [ + 77.731820676954797, + 12.970069325088399 + ], + [ + 77.731523577066, + 12.9703356832878 + ], + [ + 77.731012565904805, + 12.9707062677707 + ], + [ + 77.7303589465469, + 12.9709494640079 + ], + [ + 77.728008983980601, + 12.971354488314701 + ], + [ + 77.726852103141496, + 12.971501890811499 + ], + [ + 77.726860598224405, + 12.9715972583928 + ], + [ + 77.726883379178702, + 12.971838664783499 + ], + [ + 77.726967322605503, + 12.972726451859399 + ], + [ + 77.726996964792804, + 12.9732274983759 + ], + [ + 77.727047018663598, + 12.974069344092401 + ], + [ + 77.727054461688297, + 12.9742239641179 + ], + [ + 77.727078600864203, + 12.974853795096401 + ], + [ + 77.727084329442206, + 12.9750095622706 + ], + [ + 77.727138852253503, + 12.976419339879399 + ], + [ + 77.727228101598001, + 12.976420662937301 + ], + [ + 77.727267514931199, + 12.9764450906055 + ], + [ + 77.727302875120202, + 12.9764673042264 + ], + [ + 77.727306673660806, + 12.976515254644401 + ], + [ + 77.727359625691506, + 12.9771837398779 + ], + [ + 77.7274235161223, + 12.978784815008 + ], + [ + 77.727425385834707, + 12.978831656462599 + ], + [ + 77.727425971653204, + 12.978851411009099 + ], + [ + 77.727457261595205, + 12.9799063036542 + ], + [ + 77.727491413985902, + 12.980187111674599 + ], + [ + 77.727495854693601, + 12.9802162268853 + ], + [ + 77.727549700264007, + 12.9805692919037 + ], + [ + 77.727733737327995, + 12.981343108566 + ], + [ + 77.727820536895806, + 12.981700148212701 + ], + [ + 77.727851850804697, + 12.981826287906101 + ], + [ + 77.7279865890997, + 12.982197503581601 + ], + [ + 77.728245739264096, + 12.9826792019593 + ], + [ + 77.728563457125702, + 12.9833048201035 + ], + [ + 77.728626149120203, + 12.9834046589314 + ], + [ + 77.729121182236597, + 12.9841876284185 + ], + [ + 77.7299643013842, + 12.9852131013592 + ], + [ + 77.730273293506201, + 12.9855136029565 + ], + [ + 77.730349333766, + 12.9855703920263 + ], + [ + 77.730450312382004, + 12.985643856674001 + ], + [ + 77.731790050322402, + 12.9863175667597 + ], + [ + 77.7319520146863, + 12.9863990136149 + ], + [ + 77.731885534441005, + 12.9864812989786 + ], + [ + 77.731847600960506, + 12.9867504422755 + ], + [ + 77.731830482069896, + 12.987501525773499 + ], + [ + 77.731826174624203, + 12.987686756286299 + ], + [ + 77.731866080561502, + 12.9881244577224 + ], + [ + 77.731600569141307, + 12.9881679003066 + ], + [ + 77.731562637162796, + 12.988173945076699 + ], + [ + 77.730607441123595, + 12.9883262643104 + ], + [ + 77.730060873835697, + 12.9884133101754 + ], + [ + 77.729475469201205, + 12.9885289925557 + ], + [ + 77.728235125344199, + 12.988772375801901 + ], + [ + 77.728122553899993, + 12.9887972709409 + ], + [ + 77.727883031605799, + 12.988848341277 + ], + [ + 77.727636613509006, + 12.988900613004001 + ], + [ + 77.7275508835599, + 12.988918643375101 + ], + [ + 77.727216140404707, + 12.988986788983199 + ], + [ + 77.727284237640404, + 12.989305035556001 + ], + [ + 77.7272132573287, + 12.989456335694101 + ], + [ + 77.727368293272605, + 12.989915839817 + ], + [ + 77.727592441625305, + 12.990388419260499 + ], + [ + 77.727641007101695, + 12.9908591308011 + ], + [ + 77.727524168474801, + 12.9908529079794 + ], + [ + 77.727432046020994, + 12.990914913227501 + ], + [ + 77.7274093871373, + 12.9910795433478 + ], + [ + 77.7275326687313, + 12.9911804101065 + ], + [ + 77.727627628702805, + 12.991161441159299 + ], + [ + 77.727715077228794, + 12.9911084793759 + ], + [ + 77.727961942279904, + 12.991229940488299 + ], + [ + 77.7285795154515, + 12.9915389467601 + ], + [ + 77.7286584400577, + 12.9916241610794 + ], + [ + 77.728720119443395, + 12.991710765703001 + ], + [ + 77.728752409350307, + 12.991808025494 + ], + [ + 77.728814984098705, + 12.992026570137799 + ], + [ + 77.7289375488172, + 12.9921852927556 + ], + [ + 77.729670848206595, + 12.992378354022801 + ], + [ + 77.730166411875004, + 12.992478602648999 + ], + [ + 77.730798697019694, + 12.9927980140515 + ], + [ + 77.731408853701197, + 12.993364897681101 + ], + [ + 77.731436585873297, + 12.9935423733726 + ], + [ + 77.732674071570301, + 12.9937338334238 + ], + [ + 77.732798200348995, + 12.9932298255435 + ], + [ + 77.732908191749502, + 12.992600845619201 + ], + [ + 77.732946692026303, + 12.992383638479 + ], + [ + 77.733000873514996, + 12.992073673811801 + ], + [ + 77.733035566441899, + 12.991876831933 + ], + [ + 77.7331000553921, + 12.9915091707868 + ], + [ + 77.7331336586942, + 12.991317986268699 + ], + [ + 77.733185673227993, + 12.991020465379099 + ], + [ + 77.7332956637932, + 12.990391485583499 + ], + [ + 77.733346855380404, + 12.990071389844699 + ], + [ + 77.733698608438104, + 12.9878601478308 + ], + [ + 77.733776787064798, + 12.987849162513699 + ], + [ + 77.734013637872707, + 12.987817311241001 + ], + [ + 77.734570562675103, + 12.987730148499899 + ], + [ + 77.735072922822894, + 12.9876548508871 + ], + [ + 77.735594198097303, + 12.9876245201656 + ], + [ + 77.736034243318102, + 12.9875893981022 + ], + [ + 77.736057832961393, + 12.987588020472099 + ], + [ + 77.736508134053196, + 12.9875956982261 + ], + [ + 77.737137217332801, + 12.987578908021201 + ], + [ + 77.737245991985802, + 12.9875755035364 + ], + [ + 77.737307599776301, + 12.9875759835402 + ], + [ + 77.738902066347606, + 12.98760208589 + ], + [ + 77.739671342485195, + 12.9876120406926 + ], + [ + 77.740138274562497, + 12.9876138908496 + ], + [ + 77.740142291776195, + 12.987612719304099 + ], + [ + 77.740253059155805, + 12.9875810632669 + ], + [ + 77.740495243122297, + 12.9875107582035 + ], + [ + 77.740841323377794, + 12.987412256681999 + ], + [ + 77.740856816542106, + 12.9874075765351 + ], + [ + 77.741020382980906, + 12.987360683912399 + ], + [ + 77.742090003785293, + 12.9870919450813 + ], + [ + 77.742330595796204, + 12.9870340761509 + ], + [ + 77.742386285551802, + 12.987019938242099 + ], + [ + 77.743292962289203, + 12.986802598418199 + ], + [ + 77.744224791918299, + 12.986569181674 + ], + [ + 77.7442902426709, + 12.9865526819528 + ], + [ + 77.744532523002405, + 12.986491405832099 + ], + [ + 77.744901503134301, + 12.9863926891408 + ], + [ + 77.7472609925954, + 12.9854674289684 + ], + [ + 77.747470197724596, + 12.9854338067155 + ], + [ + 77.747877400565301, + 12.985224601586401 + ], + [ + 77.747800816544796, + 12.9847707011722 + ], + [ + 77.747841168158303, + 12.9847483313442 + ], + [ + 77.749760713703395, + 12.9841015249444 + ], + [ + 77.7504905967767, + 12.9838610324411 + ], + [ + 77.750422146918197, + 12.9836407133125 + ], + [ + 77.751873422263102, + 12.9831099876978 + ], + [ + 77.752199002511702, + 12.982990922533901 + ], + [ + 77.752268328573706, + 12.9829655644398 + ], + [ + 77.752212807152702, + 12.982719640368799 + ], + [ + 77.752193713431694, + 12.9826344445899 + ], + [ + 77.752170540164897, + 12.982519315043101 + ], + [ + 77.752435255820401, + 12.9824639792015 + ], + [ + 77.753690314510806, + 12.982164976572699 + ], + [ + 77.753860760654007, + 12.982094930212501 + ], + [ + 77.754090512715507, + 12.9820351573184 + ], + [ + 77.754757354064594, + 12.9818427633158 + ], + [ + 77.754884371464499, + 12.9817853253004 + ], + [ + 77.757802035854894, + 12.980695870911401 + ], + [ + 77.757848733428403, + 12.980690267202499 + ], + [ + 77.757839796148005, + 12.9806600746049 + ], + [ + 77.757836379063605, + 12.9806413984847 + ], + [ + 77.757801760155303, + 12.9804521759512 + ], + [ + 77.757801510028997, + 12.9804522138349 + ], + [ + 77.757775568270901, + 12.980310592073099 + ], + [ + 77.757651980036002, + 12.9796746218796 + ], + [ + 77.757636236661597, + 12.9795935772581 + ], + [ + 77.757516306613496, + 12.9789761711114 + ], + [ + 77.757489789850297, + 12.9788396618475 + ], + [ + 77.757291493993804, + 12.9778859565711 + ], + [ + 77.757237493344107, + 12.977626236058001 + ], + [ + 77.757091523656896, + 12.976709779413399 + ], + [ + 77.758292571015204, + 12.9766405019048 + ], + [ + 77.759136333759599, + 12.976408891522301 + ], + [ + 77.760051401075501, + 12.975991993428501 + ], + [ + 77.760716903610501, + 12.975737221797599 + ], + [ + 77.761263567697597, + 12.9755866752215 + ], + [ + 77.762796601564304, + 12.975412967220599 + ], + [ + 77.763000766579694, + 12.9753875696126 + ], + [ + 77.763355149194894, + 12.975343484482099 + ], + [ + 77.763421621846106, + 12.975329385768299 + ], + [ + 77.763376792175606, + 12.975181821436101 + ], + [ + 77.763336463432907, + 12.9750286266678 + ], + [ + 77.763331962505106, + 12.975024917589201 + ], + [ + 77.763262062846294, + 12.9748093939466 + ], + [ + 77.763123409998499, + 12.974262901623 + ], + [ + 77.763105748003795, + 12.9741932869238 + ], + [ + 77.763081493145293, + 12.974097688671399 + ], + [ + 77.762810380852002, + 12.9733711369185 + ], + [ + 77.762802076614193, + 12.9732447600593 + ], + [ + 77.762670599059206, + 12.9729119277231 + ], + [ + 77.762614414782902, + 12.9725681330121 + ], + [ + 77.762618927784899, + 12.9723512877312 + ], + [ + 77.762633366806, + 12.9722361385017 + ], + [ + 77.762586669232505, + 12.9722417422105 + ], + [ + 77.762528764241395, + 12.9722473459193 + ], + [ + 77.762312087500504, + 12.972273496560501 + ], + [ + 77.762099146565504, + 12.9723052509104 + ], + [ + 77.762080227692195, + 12.972307773390201 + ], + [ + 77.761804017901099, + 12.972396778154399 + ], + [ + 77.761309023622402, + 12.972591040060101 + ], + [ + 77.761200685251893, + 12.97265454876 + ], + [ + 77.761079271560902, + 12.9727012463335 + ], + [ + 77.7610763246266, + 12.9727026308011 + ], + [ + 77.760946650452198, + 12.972770358742199 + ], + [ + 77.760774803381906, + 12.972852546471501 + ], + [ + 77.760627239049697, + 12.9728805650156 + ], + [ + 77.760526627034807, + 12.9728853584388 + ], + [ + 77.760381609813294, + 12.972928196540501 + ], + [ + 77.760213498548694, + 12.972941271861099 + ], + [ + 77.760187347907603, + 12.9728871026759 + ], + [ + 77.760187057193605, + 12.9728857155461 + ], + [ + 77.759858599271197, + 12.972906756842599 + ], + [ + 77.759738117250805, + 12.9729193240016 + ], + [ + 77.759598126343207, + 12.9729182029706 + ], + [ + 77.759199557745603, + 12.9729357183896 + ], + [ + 77.758917015383005, + 12.9729551873813 + ], + [ + 77.758765719723897, + 12.972974547350701 + ], + [ + 77.758687831729603, + 12.9729845143882 + ], + [ + 77.7584297176641, + 12.973053113014601 + ], + [ + 77.757642040962494, + 12.973262449941799 + ], + [ + 77.755979867952504, + 12.9739727280884 + ], + [ + 77.756383923423499, + 12.974760209034301 + ], + [ + 77.755573514996797, + 12.975110713633899 + ], + [ + 77.754759557566501, + 12.975417900329999 + ], + [ + 77.754756691896105, + 12.975419059851999 + ], + [ + 77.754704724394998, + 12.9754538976762 + ], + [ + 77.754441961768507, + 12.9749032165239 + ], + [ + 77.754315079949606, + 12.9746079292649 + ], + [ + 77.754225320885595, + 12.974341402761601 + ], + [ + 77.754031612245001, + 12.9743824327595 + ], + [ + 77.753153759391694, + 12.9744533392901 + ], + [ + 77.752296391942707, + 12.9741096451493 + ], + [ + 77.751310139191105, + 12.974120852566999 + ], + [ + 77.751332554026305, + 12.974655072807501 + ], + [ + 77.750742410410396, + 12.974802041762301 + ], + [ + 77.750722732868098, + 12.974804551623 + ], + [ + 77.750625826982201, + 12.974816913596401 + ], + [ + 77.750674405900597, + 12.9750986894986 + ], + [ + 77.750682333302805, + 12.9751215845481 + ], + [ + 77.750685702905201, + 12.9751313166103 + ], + [ + 77.750687702337103, + 12.975138157154401 + ], + [ + 77.750691777782393, + 12.975152101204801 + ], + [ + 77.7506922831449, + 12.9751538302525 + ], + [ + 77.7506880605021, + 12.9751524630204 + ], + [ + 77.750648374344095, + 12.975139615661501 + ], + [ + 77.750608507327001, + 12.975126487466699 + ], + [ + 77.750532276714296, + 12.975104710646301 + ], + [ + 77.750251972176102, + 12.9749842907004 + ], + [ + 77.750197802990797, + 12.9748236510476 + ], + [ + 77.750263179593702, + 12.9746835583272 + ], + [ + 77.750237028952498, + 12.9745322581892 + ], + [ + 77.750106275746802, + 12.9743492037012 + ], + [ + 77.749979258346997, + 12.9743137135453 + ], + [ + 77.749854108850101, + 12.9743716185364 + ], + [ + 77.749714016129701, + 12.9744650136834 + ], + [ + 77.749534697436005, + 12.9744659476313 + ], + [ + 77.749503410073302, + 12.974468749489301 + ], + [ + 77.749437566494706, + 12.9744668815863 + ], + [ + 77.749404411217597, + 12.9744678155378 + ], + [ + 77.749383397309501, + 12.9744706173922 + ], + [ + 77.749267587327296, + 12.974453806265799 + ], + [ + 77.749049614034504, + 12.974504996649999 + ], + [ + 77.749050529464597, + 12.974483532849501 + ], + [ + 77.749034036714306, + 12.974344820007399 + ], + [ + 77.748580575397895, + 12.9743089638733 + ], + [ + 77.747588342585303, + 12.974472952270901 + ], + [ + 77.746716031912896, + 12.9745803566899 + ], + [ + 77.746692363670704, + 12.974523133282 + ], + [ + 77.746653988101798, + 12.9744885345042 + ], + [ + 77.746573861590207, + 12.974636172534399 + ], + [ + 77.746492578527196, + 12.974835764431299 + ], + [ + 77.746395091067399, + 12.9750276233232 + ], + [ + 77.746336719279597, + 12.9751117982139 + ], + [ + 77.746281751609303, + 12.9751914204759 + ], + [ + 77.746155512666704, + 12.9753338996838 + ], + [ + 77.745995743788995, + 12.9754112413097 + ], + [ + 77.745708520505701, + 12.975520416380199 + ], + [ + 77.745578900027596, + 12.9755646935615 + ], + [ + 77.745323075472001, + 12.9756498241789 + ], + [ + 77.745230047042696, + 12.9756711314767 + ], + [ + 77.745155389074398, + 12.975687728109699 + ], + [ + 77.7449855047456, + 12.975682746774099 + ], + [ + 77.744804695878898, + 12.9756790098259 + ], + [ + 77.744635461497793, + 12.975680796404699 + ], + [ + 77.744546641417102, + 12.9756659256661 + ], + [ + 77.744410997272198, + 12.9756334824649 + ], + [ + 77.744251232024098, + 12.975553868713799 + ], + [ + 77.744087710051403, + 12.975499136200799 + ], + [ + 77.743990781694905, + 12.975479834155299 + ], + [ + 77.743908268800197, + 12.975462638274299 + ], + [ + 77.743746994110893, + 12.975455306892901 + ], + [ + 77.743570926529301, + 12.975463939872901 + ], + [ + 77.743561165641793, + 12.975466301209799 + ], + [ + 77.743433599357104, + 12.975487972327199 + ], + [ + 77.743263510923398, + 12.975516867059699 + ], + [ + 77.743190530090203, + 12.975528928769901 + ], + [ + 77.743138859852493, + 12.975541894790799 + ], + [ + 77.742951149776403, + 12.975591300301099 + ], + [ + 77.742815109891794, + 12.975627739736399 + ], + [ + 77.742679032802698, + 12.9756607919911 + ], + [ + 77.742664679251305, + 12.9756643309147 + ], + [ + 77.742505075646307, + 12.975704406282899 + ], + [ + 77.742181498446897, + 12.975806057075999 + ], + [ + 77.741392212063204, + 12.976015372995899 + ], + [ + 77.741356058804996, + 12.976025916740101 + ], + [ + 77.741355744840405, + 12.9760260130942 + ], + [ + 77.741344583347598, + 12.976029425250999 + ], + [ + 77.740459721621207, + 12.9762905590658 + ], + [ + 77.740103721421804, + 12.9763756117509 + ], + [ + 77.739798865473304, + 12.976452220810501 + ], + [ + 77.739624015413796, + 12.9765195553917 + ], + [ + 77.739612044281202, + 12.9765829151871 + ], + [ + 77.739724742210996, + 12.9768854748752 + ], + [ + 77.739726326481801, + 12.976924979203799 + ], + [ + 77.739532436523206, + 12.9770410688486 + ], + [ + 77.739468838176094, + 12.9770688391684 + ], + [ + 77.739186312806297, + 12.977186991771401 + ], + [ + 77.739019019471101, + 12.9772610214827 + ], + [ + 77.738847059108195, + 12.977329454409499 + ], + [ + 77.738797752487201, + 12.977348040638701 + ], + [ + 77.738711753695696, + 12.9773805634885 + ], + [ + 77.738484495145997, + 12.977446191247999 + ], + [ + 77.738119356182693, + 12.977538112948301 + ], + [ + 77.737980435892496, + 12.9775745805126 + ], + [ + 77.737823132321097, + 12.977614629139399 + ], + [ + 77.737570483414302, + 12.977674877715099 + ], + [ + 77.737359695022604, + 12.9777200060149 + ], + [ + 77.737354526665698, + 12.977721189611801 + ], + [ + 77.737005529098596, + 12.977815198272999 + ], + [ + 77.736740438107304, + 12.9778959022564 + ], + [ + 77.736450037361195, + 12.9779855437472 + ], + [ + 77.736422018817095, + 12.9779042899694 + ], + [ + 77.736331425524597, + 12.9777137638696 + ], + [ + 77.736271652630506, + 12.9775867464698 + ], + [ + 77.736128758055699, + 12.977234646765799 + ], + [ + 77.735983061626499, + 12.976924574878 + ], + [ + 77.736021700640705, + 12.976872530957699 + ], + [ + 77.735913949217704, + 12.976779812400199 + ], + [ + 77.735738366341494, + 12.9763333835979 + ], + [ + 77.735616150229504, + 12.9763754447571 + ], + [ + 77.735078237037001, + 12.9763562624037 + ], + [ + 77.734808872873302, + 12.9763094122697 + ], + [ + 77.734569906195802, + 12.976252079523199 + ], + [ + 77.734457529528001, + 12.9761888984254 + ], + [ + 77.734340374993295, + 12.976109959042899 + ], + [ + 77.7340211824839, + 12.976139286921899 + ], + [ + 77.733968528306804, + 12.975967274621899 + ], + [ + 77.733615688502596, + 12.975962882384099 + ], + [ + 77.733609384588306, + 12.9758601935211 + ], + [ + 77.733513847672896, + 12.975430596541599 + ], + [ + 77.733578021296694, + 12.975189721407 + ], + [ + 77.734338596890396, + 12.9738000504735 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "287", + "group": "marathahalli", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "47", + "ward_name": "47 - Marathahalli", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಮಾರತಹಳ್ಳಿ", + "dig_ward_n": "marathahalli", + "Assembly": "174 - Mahadevapura", + "Slno": "47" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.696346161265097, + 12.9481906239713 + ], + [ + 77.695246900385698, + 12.948233585738899 + ], + [ + 77.694679057892301, + 12.947972079327499 + ], + [ + 77.694694001115806, + 12.9481794165537 + ], + [ + 77.694318552625106, + 12.948261604282999 + ], + [ + 77.694234496992905, + 12.948261604282999 + ], + [ + 77.694204610545796, + 12.948948058613 + ], + [ + 77.6940570462137, + 12.948947124661499 + ], + [ + 77.694077593146005, + 12.9490218407791 + ], + [ + 77.694058914116596, + 12.949071340206901 + ], + [ + 77.6940234239608, + 12.9490741420614 + ], + [ + 77.694018754203398, + 12.9494542603094 + ], + [ + 77.693238529510097, + 12.9495742867852 + ], + [ + 77.692348228795694, + 12.9501259956629 + ], + [ + 77.691810497828897, + 12.950472192944799 + ], + [ + 77.691009436628093, + 12.9510578776092 + ], + [ + 77.690969272014598, + 12.951360029152999 + ], + [ + 77.690913017375095, + 12.951745648453199 + ], + [ + 77.690711905611195, + 12.951999481959399 + ], + [ + 77.690546499624205, + 12.9520632041379 + ], + [ + 77.690420099271904, + 12.952097269784201 + ], + [ + 77.690667416629793, + 12.9531637293685 + ], + [ + 77.689290780217405, + 12.9532867585188 + ], + [ + 77.689251001421098, + 12.9533545573215 + ], + [ + 77.689235641969603, + 12.953371654178399 + ], + [ + 77.689202644892106, + 12.953408129849 + ], + [ + 77.689169245220697, + 12.953445799416899 + ], + [ + 77.689021772761706, + 12.953612127325201 + ], + [ + 77.688653150640206, + 12.953969378310299 + ], + [ + 77.688352509467606, + 12.954224297603099 + ], + [ + 77.688294511790602, + 12.954281479165999 + ], + [ + 77.687953190480798, + 12.9546179997977 + ], + [ + 77.687538791271805, + 12.955054529935 + ], + [ + 77.687534232818507, + 12.955059331442399 + ], + [ + 77.687816113013795, + 12.9551043477219 + ], + [ + 77.688483990506199, + 12.955211005014799 + ], + [ + 77.6895661878808, + 12.955407873075099 + ], + [ + 77.689635278084296, + 12.955420441698299 + ], + [ + 77.689877712469098, + 12.9554645739378 + ], + [ + 77.6905979549649, + 12.955595687104299 + ], + [ + 77.691460122719107, + 12.9557516914861 + ], + [ + 77.691713596701703, + 12.9557975569754 + ], + [ + 77.692357171760406, + 12.9559140080266 + ], + [ + 77.694039434192106, + 12.9561958484526 + ], + [ + 77.6940553047028, + 12.956199055613499 + ], + [ + 77.694467499967303, + 12.956282815441 + ], + [ + 77.694490648277693, + 12.9562875146023 + ], + [ + 77.6945736737283, + 12.95630437134 + ], + [ + 77.694630438086193, + 12.956315799579301 + ], + [ + 77.695027133243997, + 12.9563956609306 + ], + [ + 77.695057824940307, + 12.956401795097999 + ], + [ + 77.695268858298505, + 12.9564439732015 + ], + [ + 77.695655401872301, + 12.956522403782699 + ], + [ + 77.695684437481503, + 12.9565271674425 + ], + [ + 77.695797844091899, + 12.9565457715888 + ], + [ + 77.696632357575297, + 12.956685816703001 + ], + [ + 77.696670820172301, + 12.9566922712738 + ], + [ + 77.696995676578993, + 12.9567467869048 + ], + [ + 77.697222231340106, + 12.9567760578079 + ], + [ + 77.697524286941899, + 12.956813580827101 + ], + [ + 77.697555418327596, + 12.956817774206099 + ], + [ + 77.697696073054303, + 12.956835513380399 + ], + [ + 77.697703181423094, + 12.956836923054601 + ], + [ + 77.697809721094799, + 12.9568580491589 + ], + [ + 77.697835437991401, + 12.9568632290762 + ], + [ + 77.698043926735494, + 12.9569052242587 + ], + [ + 77.698061288881405, + 12.95690872194 + ], + [ + 77.698094611939496, + 12.956915434612499 + ], + [ + 77.698153959295794, + 12.956927389923701 + ], + [ + 77.698428183160502, + 12.956982627112099 + ], + [ + 77.698506563784903, + 12.956997677835 + ], + [ + 77.698751804951698, + 12.9570447676747 + ], + [ + 77.698752137967006, + 12.957044814811301 + ], + [ + 77.698803694700203, + 12.957052134242501 + ], + [ + 77.699009331266296, + 12.957063553006201 + ], + [ + 77.699262181541201, + 12.957075611309 + ], + [ + 77.699365204064193, + 12.957065234878099 + ], + [ + 77.699435414892406, + 12.9570581625635 + ], + [ + 77.699449646597699, + 12.9570567295111 + ], + [ + 77.699496221086505, + 12.9570517297648 + ], + [ + 77.699936158860297, + 12.9570099039427 + ], + [ + 77.699990229281298, + 12.957005955582099 + ], + [ + 77.700351453951598, + 12.9569784958585 + ], + [ + 77.700395151268793, + 12.9569735257988 + ], + [ + 77.7006953494123, + 12.956945570279199 + ], + [ + 77.700984609061294, + 12.9569177260984 + ], + [ + 77.700984714819299, + 12.9569194188106 + ], + [ + 77.700986033672805, + 12.9569407579678 + ], + [ + 77.700986702109006, + 12.9569515796699 + ], + [ + 77.700989784502596, + 12.9569513688255 + ], + [ + 77.701088430387799, + 12.9569446298208 + ], + [ + 77.701142585382698, + 12.9569409296773 + ], + [ + 77.701140304302797, + 12.9569267921948 + ], + [ + 77.7011303598198, + 12.956927505139999 + ], + [ + 77.701121427948706, + 12.956873853013301 + ], + [ + 77.701120532724701, + 12.956868478245999 + ], + [ + 77.701099582410805, + 12.956742634634001 + ], + [ + 77.701084976356398, + 12.9566693877621 + ], + [ + 77.7009146614907, + 12.9560365406582 + ], + [ + 77.700754107327796, + 12.955614753649 + ], + [ + 77.700744495918499, + 12.9555775895259 + ], + [ + 77.700617135984501, + 12.955084317989799 + ], + [ + 77.700505411850401, + 12.9546529905047 + ], + [ + 77.700500024509395, + 12.9546338498594 + ], + [ + 77.700485001519993, + 12.9545752869022 + ], + [ + 77.700432806311994, + 12.9543793461934 + ], + [ + 77.700428594530095, + 12.9543624517671 + ], + [ + 77.700383598758293, + 12.9541935373374 + ], + [ + 77.700370436529894, + 12.954147376343 + ], + [ + 77.7003482751728, + 12.9540674324557 + ], + [ + 77.700310551869407, + 12.953932318789199 + ], + [ + 77.700294908077794, + 12.9538989353521 + ], + [ + 77.699964289257593, + 12.9539885946932 + ], + [ + 77.699743876710798, + 12.9540222169461 + ], + [ + 77.699121865032197, + 12.954145498540001 + ], + [ + 77.698042217133604, + 12.9543659110868 + ], + [ + 77.697978579175697, + 12.954001068392801 + ], + [ + 77.698021361763494, + 12.9537648047394 + ], + [ + 77.6982303878425, + 12.9530206465795 + ], + [ + 77.698218802235601, + 12.952864964987199 + ], + [ + 77.697938891017998, + 12.9514639993854 + ], + [ + 77.6978703700632, + 12.9510727982058 + ], + [ + 77.697754653860599, + 12.9502343081282 + ], + [ + 77.697478110445999, + 12.948711768891201 + ], + [ + 77.6969146973628, + 12.9488874813301 + ], + [ + 77.696368576100397, + 12.949137650761299 + ], + [ + 77.696346161265097, + 12.9481906239713 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "288", + "group": "Bellanduru", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "45", + "ward_name": "45 - Bellanduru", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಬೆಳ್ಳಂದೂರು", + "dig_ward_n": "Bellanduru", + "Assembly": "174 - Mahadevapura", + "Slno": "45" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.669522442967306, + 12.922711367543499 + ], + [ + 77.669527536062205, + 12.922773932882601 + ], + [ + 77.669579827872496, + 12.9234162452363 + ], + [ + 77.668872650854794, + 12.923346347548501 + ], + [ + 77.668871214976804, + 12.9234479834843 + ], + [ + 77.668871163386797, + 12.9235187771362 + ], + [ + 77.668870426470804, + 12.9245355897795 + ], + [ + 77.668873931099199, + 12.924749979469899 + ], + [ + 77.668916923834203, + 12.9252512662386 + ], + [ + 77.668922826050505, + 12.925328691286101 + ], + [ + 77.668934579736302, + 12.9254256563946 + ], + [ + 77.6689364855349, + 12.9254422321434 + ], + [ + 77.668939232605297, + 12.925466124862499 + ], + [ + 77.668979716711405, + 12.925818276085 + ], + [ + 77.669012759932599, + 12.9261228198495 + ], + [ + 77.668987789154798, + 12.9268579281927 + ], + [ + 77.668932897855697, + 12.9271575870312 + ], + [ + 77.668925967247901, + 12.927195423162299 + ], + [ + 77.668802559056701, + 12.927435292001601 + ], + [ + 77.668625321812499, + 12.928205428482601 + ], + [ + 77.668563520276507, + 12.9284330450688 + ], + [ + 77.668561103384704, + 12.928441947387199 + ], + [ + 77.6684960233748, + 12.9286816360634 + ], + [ + 77.668463672847295, + 12.928687713416799 + ], + [ + 77.668345232555495, + 12.9287099647759 + ], + [ + 77.668205053314693, + 12.9287362995048 + ], + [ + 77.667781722022696, + 12.9288158287015 + ], + [ + 77.667808419326406, + 12.929166644182599 + ], + [ + 77.667857974566203, + 12.929443083863401 + ], + [ + 77.667865126951298, + 12.929495847211999 + ], + [ + 77.667974564518403, + 12.930364204280799 + ], + [ + 77.668014866122704, + 12.930741038095601 + ], + [ + 77.668044616191906, + 12.931239422315601 + ], + [ + 77.668930415659105, + 12.9309854683094 + ], + [ + 77.671151534542503, + 12.930968568491799 + ], + [ + 77.673037071333695, + 12.9309758112708 + ], + [ + 77.673491428844898, + 12.9311729905183 + ], + [ + 77.673778249047999, + 12.9312679366891 + ], + [ + 77.674170832473706, + 12.931349291706001 + ], + [ + 77.674617004938099, + 12.9314224660368 + ], + [ + 77.6754759501178, + 12.931536987287799 + ], + [ + 77.675588943789805, + 12.9311520522257 + ], + [ + 77.675774841783294, + 12.931147223706301 + ], + [ + 77.675948668478497, + 12.931079624436 + ], + [ + 77.675957118387302, + 12.930505030637899 + ], + [ + 77.676028339047093, + 12.930378282006 + ], + [ + 77.6760977490123, + 12.930320943339201 + ], + [ + 77.676184662359901, + 12.930309475605799 + ], + [ + 77.676188283749397, + 12.9302370478161 + ], + [ + 77.676219367342398, + 12.9302376513811 + ], + [ + 77.676224497644199, + 12.930156773682601 + ], + [ + 77.676225704773998, + 12.930047528433199 + ], + [ + 77.677110530937895, + 12.930048433780501 + ], + [ + 77.677735824188701, + 12.9300967189736 + ], + [ + 77.677972421634905, + 12.930161903984301 + ], + [ + 77.678163148147704, + 12.930229503254701 + ], + [ + 77.678274204091906, + 12.9302826169671 + ], + [ + 77.678535316365597, + 12.9305706061915 + ], + [ + 77.678643746923299, + 12.9306842221845 + ], + [ + 77.678859283599706, + 12.930787177672 + ], + [ + 77.679473696261894, + 12.930819109763499 + ], + [ + 77.679640094294996, + 12.930884326469601 + ], + [ + 77.680343850249798, + 12.9309648899085 + ], + [ + 77.681054271235098, + 12.9313161185504 + ], + [ + 77.681131708550197, + 12.931721655552399 + ], + [ + 77.681233765657396, + 12.932150841904299 + ], + [ + 77.681107453556606, + 12.9326445211581 + ], + [ + 77.681066353886905, + 12.9329030853139 + ], + [ + 77.680935699347003, + 12.9329904753374 + ], + [ + 77.680629768145394, + 12.933094008104799 + ], + [ + 77.680296435393601, + 12.9333699170038 + ], + [ + 77.680212242995694, + 12.9337006289795 + ], + [ + 77.680215000264596, + 12.9339587424434 + ], + [ + 77.680029237575198, + 12.9343622050182 + ], + [ + 77.6798008426736, + 12.9348808349927 + ], + [ + 77.679556907736895, + 12.9353135776167 + ], + [ + 77.679268808495607, + 12.9357180916197 + ], + [ + 77.679139989616502, + 12.9359775562998 + ], + [ + 77.679097969127994, + 12.9361500830073 + ], + [ + 77.679129964654607, + 12.9364078953231 + ], + [ + 77.679395566083898, + 12.936634625667701 + ], + [ + 77.679487112168204, + 12.9369922149482 + ], + [ + 77.679492473531695, + 12.9374941015539 + ], + [ + 77.679481990079495, + 12.9378814216671 + ], + [ + 77.679661868057195, + 12.9382954675247 + ], + [ + 77.679826206941698, + 12.9386236250034 + ], + [ + 77.680004093287906, + 12.938851255809899 + ], + [ + 77.680884947680696, + 12.939186387329499 + ], + [ + 77.681705332206604, + 12.9393357017735 + ], + [ + 77.682202551962106, + 12.939344927418601 + ], + [ + 77.6826837714937, + 12.9392252465932 + ], + [ + 77.682885685024402, + 12.938965027430999 + ], + [ + 77.682722261590996, + 12.938722910039701 + ], + [ + 77.682924634955597, + 12.9385057095748 + ], + [ + 77.683435705024806, + 12.9384430850053 + ], + [ + 77.683626218847195, + 12.9384841472973 + ], + [ + 77.684949951733401, + 12.938959311147199 + ], + [ + 77.684850251260102, + 12.939185875046199 + ], + [ + 77.684839347739697, + 12.9393054968717 + ], + [ + 77.6853166581989, + 12.9395037462573 + ], + [ + 77.685883218197006, + 12.9400715541069 + ], + [ + 77.685910272491896, + 12.9403222449577 + ], + [ + 77.686217407028707, + 12.940558098821301 + ], + [ + 77.686645733218896, + 12.9407329484026 + ], + [ + 77.686416048636502, + 12.9409026290264 + ], + [ + 77.686148533213199, + 12.940953189975501 + ], + [ + 77.684980465694593, + 12.9415237528418 + ], + [ + 77.686536602771298, + 12.941976808772401 + ], + [ + 77.687146323094197, + 12.942154320450699 + ], + [ + 77.687161254316806, + 12.9422740997143 + ], + [ + 77.687507012543094, + 12.942309408701201 + ], + [ + 77.6876557219462, + 12.941920984800401 + ], + [ + 77.687734804204197, + 12.94172764967 + ], + [ + 77.688439499926602, + 12.941318609813299 + ], + [ + 77.689417823098495, + 12.9416465371666 + ], + [ + 77.689461492852303, + 12.941675338694001 + ], + [ + 77.690518725501505, + 12.9422501020805 + ], + [ + 77.690987091874803, + 12.9426363836254 + ], + [ + 77.691361302121393, + 12.94288505237 + ], + [ + 77.692044537604005, + 12.9434499891294 + ], + [ + 77.692211121520202, + 12.943802471039101 + ], + [ + 77.692505661198297, + 12.9440994249768 + ], + [ + 77.693064497487796, + 12.9447037668054 + ], + [ + 77.694104453102696, + 12.9452711739357 + ], + [ + 77.695231746955798, + 12.9453950215247 + ], + [ + 77.696238568022906, + 12.945191077515499 + ], + [ + 77.696446520123999, + 12.945149478416401 + ], + [ + 77.696806158862799, + 12.945076103081099 + ], + [ + 77.697285291751399, + 12.944939587336901 + ], + [ + 77.697772802339401, + 12.9447023216039 + ], + [ + 77.697850735943007, + 12.944672186009999 + ], + [ + 77.697856367619707, + 12.944670008403 + ], + [ + 77.697855341790699, + 12.944656932837599 + ], + [ + 77.697851807361005, + 12.944611876019399 + ], + [ + 77.697851501216107, + 12.9446079910939 + ], + [ + 77.697838780234804, + 12.944445837283199 + ], + [ + 77.697829014219593, + 12.944321365772399 + ], + [ + 77.697548751084, + 12.9435259156371 + ], + [ + 77.697331133464601, + 12.942988405632899 + ], + [ + 77.696989475589902, + 12.9423661962715 + ], + [ + 77.696986481638405, + 12.942360742903301 + ], + [ + 77.696237555172601, + 12.941127489529 + ], + [ + 77.695795890945405, + 12.9404172668653 + ], + [ + 77.695207189330105, + 12.939469170257601 + ], + [ + 77.695180315928596, + 12.9394254494755 + ], + [ + 77.695173626773197, + 12.9394276054195 + ], + [ + 77.694659829859702, + 12.939588751156901 + ], + [ + 77.694623596479303, + 12.9395987068506 + ], + [ + 77.693685870820701, + 12.9398563602431 + ], + [ + 77.692446035656303, + 12.940132088418199 + ], + [ + 77.691928388811903, + 12.940149386336 + ], + [ + 77.691281602911303, + 12.9400544825367 + ], + [ + 77.690811277261901, + 12.939939829023 + ], + [ + 77.689811950986893, + 12.9394640464378 + ], + [ + 77.689949563787295, + 12.9386021557407 + ], + [ + 77.690063033991095, + 12.938203802897499 + ], + [ + 77.690137876040396, + 12.9380565330585 + ], + [ + 77.690203061051207, + 12.937991348047801 + ], + [ + 77.690183746973901, + 12.9378151070929 + ], + [ + 77.690205475310805, + 12.9373032840459 + ], + [ + 77.690289974398794, + 12.9362337670184 + ], + [ + 77.690309288476001, + 12.9359126704842 + ], + [ + 77.690343088111206, + 12.935741258048701 + ], + [ + 77.690422758679802, + 12.9355360459779 + ], + [ + 77.690548300182002, + 12.9352390920403 + ], + [ + 77.690427587199196, + 12.935113550538199 + ], + [ + 77.690524157585401, + 12.934942138102601 + ], + [ + 77.690467075283095, + 12.9348960309629 + ], + [ + 77.690363639734898, + 12.934801282755901 + ], + [ + 77.6903539477359, + 12.9347924041213 + ], + [ + 77.690345229580203, + 12.9347845886467 + ], + [ + 77.689675658015901, + 12.9341528800371 + ], + [ + 77.689379212605303, + 12.933873195777901 + ], + [ + 77.689227579293302, + 12.9337301355932 + ], + [ + 77.689078127632598, + 12.933588846892301 + ], + [ + 77.6888199380641, + 12.933344758618199 + ], + [ + 77.688244182718904, + 12.9328290267132 + ], + [ + 77.687991151165207, + 12.9326023725807 + ], + [ + 77.687260016451603, + 12.9319481833937 + ], + [ + 77.686789907898799, + 12.9315340859557 + ], + [ + 77.686676599091001, + 12.931434752541 + ], + [ + 77.685820377240802, + 12.9306803772844 + ], + [ + 77.685720114731794, + 12.9305920403801 + ], + [ + 77.685240025744307, + 12.930213048681299 + ], + [ + 77.685113673721602, + 12.9301319161615 + ], + [ + 77.685052242510807, + 12.930093025745199 + ], + [ + 77.684759816579202, + 12.929906118565601 + ], + [ + 77.684694063834996, + 12.9298640926321 + ], + [ + 77.684637644822502, + 12.929837264801 + ], + [ + 77.684560431101104, + 12.9298005484867 + ], + [ + 77.684298909711401, + 12.929676191378499 + ], + [ + 77.683824177005803, + 12.929457731105799 + ], + [ + 77.683538768695996, + 12.9293263927203 + ], + [ + 77.683153108624495, + 12.929148919710901 + ], + [ + 77.683029190745998, + 12.9290918946711 + ], + [ + 77.682962051045195, + 12.9290598250538 + ], + [ + 77.682056730133098, + 12.9286273907945 + ], + [ + 77.6820135997107, + 12.928606789075999 + ], + [ + 77.682013228507998, + 12.928606612216299 + ], + [ + 77.681687280476197, + 12.928449427856901 + ], + [ + 77.681667556474693, + 12.9284399165611 + ], + [ + 77.681470008216806, + 12.9283446512929 + ], + [ + 77.681293182947897, + 12.9282593792526 + ], + [ + 77.680908117508594, + 12.928073685369201 + ], + [ + 77.680776810127696, + 12.9280116155364 + ], + [ + 77.680275372179196, + 12.927774579294899 + ], + [ + 77.680264362898399, + 12.927973643096699 + ], + [ + 77.680278430935601, + 12.928432265113001 + ], + [ + 77.680295650053196, + 12.928993612993199 + ], + [ + 77.680114610027402, + 12.9290032951049 + ], + [ + 77.679592629695506, + 12.929201834574499 + ], + [ + 77.679172663091606, + 12.9292561193718 + ], + [ + 77.679275299775298, + 12.9285548778902 + ], + [ + 77.679433350508106, + 12.927410025204701 + ], + [ + 77.679162649240297, + 12.927248475510799 + ], + [ + 77.678705064210405, + 12.9270314514727 + ], + [ + 77.677725448805603, + 12.926552563064201 + ], + [ + 77.6773724858962, + 12.926380014676999 + ], + [ + 77.677224375443899, + 12.9263092637895 + ], + [ + 77.677136434896298, + 12.926267255402401 + ], + [ + 77.676699547114495, + 12.9260572210995 + ], + [ + 77.676169011591796, + 12.9258021632769 + ], + [ + 77.676054287081996, + 12.9253035384549 + ], + [ + 77.675747058053901, + 12.9239682185039 + ], + [ + 77.675712290932395, + 12.9236184283164 + ], + [ + 77.675521986583902, + 12.923635500389899 + ], + [ + 77.675363597672202, + 12.9236482311629 + ], + [ + 77.675224394157098, + 12.9236903838835 + ], + [ + 77.675009533426405, + 12.923716651519401 + ], + [ + 77.674815935787905, + 12.9237459406004 + ], + [ + 77.674740791102295, + 12.923749073277 + ], + [ + 77.674664300998899, + 12.9227538791868 + ], + [ + 77.674232130015099, + 12.9228109454478 + ], + [ + 77.673153107396203, + 12.922933546579699 + ], + [ + 77.672753426827697, + 12.9229280793841 + ], + [ + 77.672460949572894, + 12.922921513872 + ], + [ + 77.672322472680307, + 12.9227316576712 + ], + [ + 77.6718773176528, + 12.9230326018843 + ], + [ + 77.671810723640306, + 12.9231862567687 + ], + [ + 77.671803216307097, + 12.9233967297207 + ], + [ + 77.671432319753805, + 12.923593760827901 + ], + [ + 77.670657369058802, + 12.923237291183501 + ], + [ + 77.669720065920799, + 12.922802947058999 + ], + [ + 77.669522442967306, + 12.922711367543499 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "306", + "group": "HOMBEGOWDA NAGARA", + "Corporatio": "Central", + "ac_no": "169", + "ac": "Chickpet", + "corporat_1": "1", + "ward_id": "41", + "ward_name": "41 - Hombegowda Nagara", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಿಕ್ಕಪೇಟೆ", + "ward_name_": "ಹೊಂಬೇಗೌಡ ನಗರ", + "dig_ward_n": "HOMBEGOWDA NAGARA", + "Assembly": "169 - Chickpet", + "Slno": "41" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.5896444530986, + 12.956809889258899 + ], + [ + 77.589459564139801, + 12.956060377625899 + ], + [ + 77.589508387053201, + 12.956020709008699 + ], + [ + 77.589563312830904, + 12.955959680366799 + ], + [ + 77.589554158534696, + 12.9558376230831 + ], + [ + 77.589194089547703, + 12.9546124730979 + ], + [ + 77.589990615014599, + 12.954320413894401 + ], + [ + 77.589984125206897, + 12.9542981870884 + ], + [ + 77.591437042800294, + 12.9538087861881 + ], + [ + 77.592143077176502, + 12.9556523522856 + ], + [ + 77.592164650142607, + 12.9557086818384 + ], + [ + 77.592288636102793, + 12.955998702011099 + ], + [ + 77.592311245993898, + 12.955981839221399 + ], + [ + 77.592382653404101, + 12.9559280513883 + ], + [ + 77.592523879100199, + 12.955813617251501 + ], + [ + 77.592753754010104, + 12.955627351695799 + ], + [ + 77.592948520246296, + 12.955477474585701 + ], + [ + 77.592986336448405, + 12.9554481790165 + ], + [ + 77.593604177571194, + 12.954969537850101 + ], + [ + 77.594060122082695, + 12.9546233204661 + ], + [ + 77.594133125476702, + 12.9545678865874 + ], + [ + 77.594497548830006, + 12.9542898375175 + ], + [ + 77.594564994951597, + 12.9542428644809 + ], + [ + 77.594765457843593, + 12.954087283155101 + ], + [ + 77.595134447969301, + 12.9538058000511 + ], + [ + 77.595392924110797, + 12.9536083695436 + ], + [ + 77.595452027709896, + 12.953563224914101 + ], + [ + 77.5955777340303, + 12.9534716286008 + ], + [ + 77.595711452500296, + 12.9533754352122 + ], + [ + 77.595851207295695, + 12.953257311259801 + ], + [ + 77.595885808562699, + 12.953228064595001 + ], + [ + 77.595914352144106, + 12.953203941155399 + ], + [ + 77.595938594843801, + 12.953183449929201 + ], + [ + 77.596248089587505, + 12.9529386960916 + ], + [ + 77.596567534414007, + 12.9527096528893 + ], + [ + 77.5966113486555, + 12.952676855054699 + ], + [ + 77.596619520127007, + 12.952670738645301 + ], + [ + 77.596782796679705, + 12.952538112792899 + ], + [ + 77.596793930893298, + 12.9525291923935 + ], + [ + 77.596809199792801, + 12.952516960337199 + ], + [ + 77.596859876556806, + 12.952476362460301 + ], + [ + 77.597005460067805, + 12.952358593723901 + ], + [ + 77.597139308182193, + 12.952219485396199 + ], + [ + 77.597309115212298, + 12.9521059921604 + ], + [ + 77.597461816701099, + 12.952008479518801 + ], + [ + 77.597504770469797, + 12.9519808451488 + ], + [ + 77.597522436746701, + 12.951969479035901 + ], + [ + 77.597531062356893, + 12.951962392305999 + ], + [ + 77.597531913599298, + 12.951961693593301 + ], + [ + 77.5975470449455, + 12.951949261412 + ], + [ + 77.597700538521593, + 12.9518231534158 + ], + [ + 77.597795743878294, + 12.951741780220001 + ], + [ + 77.597823111960096, + 12.951718388392401 + ], + [ + 77.597869549585596, + 12.951678698144701 + ], + [ + 77.597985289776801, + 12.951579774162999 + ], + [ + 77.598092854582205, + 12.951515460914001 + ], + [ + 77.598337467550095, + 12.9513221136695 + ], + [ + 77.598369228093603, + 12.951297009342699 + ], + [ + 77.598583002325199, + 12.951120965857401 + ], + [ + 77.598597078382795, + 12.9511093735122 + ], + [ + 77.598795828216097, + 12.950945702338201 + ], + [ + 77.598796775324701, + 12.950944922260501 + ], + [ + 77.598818462228294, + 12.950926637230401 + ], + [ + 77.5988316481927, + 12.9509158180611 + ], + [ + 77.598900663257496, + 12.950859188915601 + ], + [ + 77.598996000268002, + 12.9507261106403 + ], + [ + 77.599213830983501, + 12.9505805171737 + ], + [ + 77.599411092416403, + 12.9503944743687 + ], + [ + 77.599584093748206, + 12.9502907883495 + ], + [ + 77.5996142020077, + 12.950272742659401 + ], + [ + 77.599650524168794, + 12.950239431992999 + ], + [ + 77.599831661317694, + 12.9500733169842 + ], + [ + 77.599879377879901, + 12.950029557310099 + ], + [ + 77.600025239623093, + 12.949938887560799 + ], + [ + 77.6000936005413, + 12.949886114245 + ], + [ + 77.600100944704806, + 12.949880445082201 + ], + [ + 77.600107557836907, + 12.949875340633501 + ], + [ + 77.600132906471302, + 12.949855772241101 + ], + [ + 77.600142319451294, + 12.949848505035201 + ], + [ + 77.600236549512502, + 12.9497752899037 + ], + [ + 77.600277326838295, + 12.949765848550699 + ], + [ + 77.600483051961803, + 12.949729916243101 + ], + [ + 77.600536115895807, + 12.9497395501252 + ], + [ + 77.600545123474106, + 12.9497475404974 + ], + [ + 77.600548558608097, + 12.9497505878106 + ], + [ + 77.600604098049402, + 12.9497998531023 + ], + [ + 77.600628850392596, + 12.949799606896899 + ], + [ + 77.600635192498302, + 12.949800961969601 + ], + [ + 77.600709626876196, + 12.9498168681995 + ], + [ + 77.600763894836504, + 12.9498315718126 + ], + [ + 77.600767073319105, + 12.9498324326696 + ], + [ + 77.600774309661603, + 12.949834393144201 + ], + [ + 77.600818162801204, + 12.949846275413201 + ], + [ + 77.600981259912501, + 12.949890856610301 + ], + [ + 77.601025425464101, + 12.9499029299591 + ], + [ + 77.601211991702399, + 12.9499533721108 + ], + [ + 77.601295026334398, + 12.9499758225611 + ], + [ + 77.601553092081701, + 12.9500455966764 + ], + [ + 77.601594091177503, + 12.9500576093921 + ], + [ + 77.601835663510897, + 12.950125512489301 + ], + [ + 77.601912227886103, + 12.9501470335737 + ], + [ + 77.602188789978101, + 12.950224450469101 + ], + [ + 77.602285358836994, + 12.950251353892799 + ], + [ + 77.602322150449396, + 12.9502616034592 + ], + [ + 77.602400105962403, + 12.9502833209862 + ], + [ + 77.602488424536205, + 12.95030615368 + ], + [ + 77.6027729871318, + 12.950377843517201 + ], + [ + 77.603439688429802, + 12.9505484791336 + ], + [ + 77.603455841436201, + 12.9505517055517 + ], + [ + 77.603446770990999, + 12.9505207417089 + ], + [ + 77.603443307265707, + 12.9505089179069 + ], + [ + 77.603369159790304, + 12.9502431480414 + ], + [ + 77.603348978163993, + 12.950184626790801 + ], + [ + 77.603151955299694, + 12.949617434796499 + ], + [ + 77.603146611298001, + 12.949601678171 + ], + [ + 77.603080474707795, + 12.9494419792938 + ], + [ + 77.603005909938304, + 12.949262226234501 + ], + [ + 77.602996035261995, + 12.949238422848399 + ], + [ + 77.602919279498394, + 12.949053986567201 + ], + [ + 77.602915743603901, + 12.9490461168811 + ], + [ + 77.602899227129399, + 12.949007886116799 + ], + [ + 77.602840244795303, + 12.9488718315861 + ], + [ + 77.602832574852101, + 12.9488538396098 + ], + [ + 77.602791870190899, + 12.948759386097599 + ], + [ + 77.602745868528302, + 12.948653692612799 + ], + [ + 77.602700505811498, + 12.9485484977466 + ], + [ + 77.6026532554516, + 12.948438923822801 + ], + [ + 77.602630453692896, + 12.9483584969493 + ], + [ + 77.602131980936804, + 12.948556810647 + ], + [ + 77.601933194503005, + 12.9485234304688 + ], + [ + 77.601737387039805, + 12.948429830832501 + ], + [ + 77.600272599643802, + 12.948930253597499 + ], + [ + 77.600171087577394, + 12.948554341726499 + ], + [ + 77.599946650742993, + 12.9479135468072 + ], + [ + 77.599324558490594, + 12.946253578354399 + ], + [ + 77.598624484962301, + 12.9465183492711 + ], + [ + 77.598248833057099, + 12.946708156425901 + ], + [ + 77.597678421283405, + 12.945923520098299 + ], + [ + 77.596740964015794, + 12.9465607500226 + ], + [ + 77.596235702039493, + 12.946881264490001 + ], + [ + 77.595579999699893, + 12.945912798640601 + ], + [ + 77.594882503738205, + 12.9465166340867 + ], + [ + 77.594175982588396, + 12.9474180898006 + ], + [ + 77.594096428272294, + 12.9475756581495 + ], + [ + 77.594042829961595, + 12.9476812162521 + ], + [ + 77.594007947052702, + 12.947759484929 + ], + [ + 77.593875734879404, + 12.9480566766176 + ], + [ + 77.59385881643, + 12.948090723917501 + ], + [ + 77.593858386683806, + 12.948091564778 + ], + [ + 77.593719439245604, + 12.948363142421799 + ], + [ + 77.593597275492499, + 12.9485744075791 + ], + [ + 77.5935022630091, + 12.948739101301999 + ], + [ + 77.593455817304999, + 12.9488683033666 + ], + [ + 77.593365608390002, + 12.949052147278399 + ], + [ + 77.5933574149511, + 12.949068869239699 + ], + [ + 77.593123178678297, + 12.9495469334863 + ], + [ + 77.593001501472301, + 12.949796052213401 + ], + [ + 77.592991260057801, + 12.949817019026501 + ], + [ + 77.592905997642902, + 12.949978227733901 + ], + [ + 77.591793591729896, + 12.951060324008401 + ], + [ + 77.590563598289805, + 12.951528035351901 + ], + [ + 77.590554207906806, + 12.9515318247126 + ], + [ + 77.590556580532706, + 12.9515385769012 + ], + [ + 77.590056357846606, + 12.9517118169667 + ], + [ + 77.589057049524399, + 12.9520571539708 + ], + [ + 77.587607260772003, + 12.9525589230898 + ], + [ + 77.587142187472395, + 12.952719882720499 + ], + [ + 77.586914280265106, + 12.9528384645052 + ], + [ + 77.586677459996395, + 12.9530493009515 + ], + [ + 77.586186936979601, + 12.953486001751401 + ], + [ + 77.585846331716397, + 12.9537299250735 + ], + [ + 77.585669242967498, + 12.9538937580188 + ], + [ + 77.585514180846999, + 12.954037211906 + ], + [ + 77.585498939687696, + 12.954051312356899 + ], + [ + 77.585497576524006, + 12.954052573543001 + ], + [ + 77.585492196862901, + 12.954057550708299 + ], + [ + 77.583495698766001, + 12.9546140521939 + ], + [ + 77.583495772726494, + 12.9546145248641 + ], + [ + 77.583554756510395, + 12.954913464302701 + ], + [ + 77.583629631319994, + 12.955588217556899 + ], + [ + 77.583650870804703, + 12.9559767258398 + ], + [ + 77.5837236102155, + 12.956313362541399 + ], + [ + 77.583839831121594, + 12.956265595748199 + ], + [ + 77.584462698105398, + 12.955999137887 + ], + [ + 77.584819992709896, + 12.9558462885231 + ], + [ + 77.585719059562507, + 12.9555551859921 + ], + [ + 77.5859343937163, + 12.956463593917601 + ], + [ + 77.586023839339504, + 12.956818435392099 + ], + [ + 77.586035243225794, + 12.9568634941669 + ], + [ + 77.586093926495906, + 12.9570982594292 + ], + [ + 77.586093978406197, + 12.9570984694153 + ], + [ + 77.586094094657696, + 12.957098933532601 + ], + [ + 77.586094135904801, + 12.9570990921285 + ], + [ + 77.586110889391705, + 12.957164266169899 + ], + [ + 77.586203941248797, + 12.9575337525678 + ], + [ + 77.586262781452007, + 12.9577680626399 + ], + [ + 77.586266375350903, + 12.957781578548101 + ], + [ + 77.586272388506103, + 12.9578063634311 + ], + [ + 77.586539618960799, + 12.9586518133545 + ], + [ + 77.586564613227793, + 12.958730616055799 + ], + [ + 77.586583925011993, + 12.958760915292499 + ], + [ + 77.586775244056398, + 12.9590828519434 + ], + [ + 77.588377635618698, + 12.958599470700801 + ], + [ + 77.588137212270993, + 12.9578188704734 + ], + [ + 77.587499505826798, + 12.9580148599313 + ], + [ + 77.587384957161007, + 12.9576002090774 + ], + [ + 77.588069225120705, + 12.957409419770199 + ], + [ + 77.587853305901106, + 12.9566738979064 + ], + [ + 77.588319825940999, + 12.9565427609485 + ], + [ + 77.588318379551893, + 12.9565376978647 + ], + [ + 77.588559391672504, + 12.9564860524028 + ], + [ + 77.588736374733799, + 12.9570719273646 + ], + [ + 77.5896444530986, + 12.956809889258899 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "289", + "group": "Dodda Nekkundi", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "38", + "ward_name": "38 - Dodda Nekkundi", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ದೊಡ್ಡ ನೆಕ್ಕುಂಡಿ", + "dig_ward_n": "Dodda Nekkundi", + "Assembly": "174 - Mahadevapura", + "Slno": "38" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.694949798971194, + 12.961447461237601 + ], + [ + 77.694452799679894, + 12.9612278550341 + ], + [ + 77.694285397347699, + 12.9611846907647 + ], + [ + 77.694169587365494, + 12.9618907580755 + ], + [ + 77.690628103711205, + 12.9612834008494 + ], + [ + 77.690619947350797, + 12.961282365890501 + ], + [ + 77.690174839886296, + 12.9635539735651 + ], + [ + 77.690195053927397, + 12.9636206900032 + ], + [ + 77.690341673814999, + 12.963657416665001 + ], + [ + 77.691640836776998, + 12.963902121236799 + ], + [ + 77.6917587291465, + 12.963986947849 + ], + [ + 77.691818652985006, + 12.9641201777248 + ], + [ + 77.691968974706398, + 12.9645010502144 + ], + [ + 77.692496688825202, + 12.965528144368401 + ], + [ + 77.692696264036002, + 12.965956309992 + ], + [ + 77.692986446670204, + 12.9666512367099 + ], + [ + 77.693189522163493, + 12.967404428512999 + ], + [ + 77.693362019348001, + 12.9680336481929 + ], + [ + 77.693350700372207, + 12.968180120286201 + ], + [ + 77.6933744359999, + 12.968290444263401 + ], + [ + 77.693137953043504, + 12.968366386240699 + ], + [ + 77.692919176211802, + 12.9684188441183 + ], + [ + 77.692774263870206, + 12.9683854565935 + ], + [ + 77.692709821218799, + 12.968353702243601 + ], + [ + 77.692622963732106, + 12.9683042028157 + ], + [ + 77.692442711098494, + 12.9682565712908 + ], + [ + 77.692266528228203, + 12.9682391664109 + ], + [ + 77.692127969453395, + 12.9681015353469 + ], + [ + 77.691844048206704, + 12.967953971014699 + ], + [ + 77.691666597427499, + 12.9679240845677 + ], + [ + 77.691513429386504, + 12.967940895694101 + ], + [ + 77.691406958919004, + 12.9676551065445 + ], + [ + 77.691301746446698, + 12.967589460957299 + ], + [ + 77.690654194034593, + 12.9676326917092 + ], + [ + 77.690573874208297, + 12.9674384298036 + ], + [ + 77.689890221732696, + 12.9675673151064 + ], + [ + 77.689727714176996, + 12.967128357915801 + ], + [ + 77.688737498200297, + 12.9670996972471 + ], + [ + 77.688722807850496, + 12.9677738798409 + ], + [ + 77.688720351474601, + 12.968225648482701 + ], + [ + 77.688876030762003, + 12.968424814852 + ], + [ + 77.688893503790695, + 12.9686899439179 + ], + [ + 77.688896971212202, + 12.9690125819 + ], + [ + 77.688943531864993, + 12.9692630692214 + ], + [ + 77.689048192337196, + 12.969477102851201 + ], + [ + 77.689486213944704, + 12.969415210177599 + ], + [ + 77.690893892289907, + 12.969400616246499 + ], + [ + 77.691059910595996, + 12.9694597218987 + ], + [ + 77.692333021819394, + 12.969380655914801 + ], + [ + 77.692349485954594, + 12.9697099439704 + ], + [ + 77.690789787228496, + 12.9698122496015 + ], + [ + 77.690736119758199, + 12.970228113802699 + ], + [ + 77.689185701997999, + 12.9702530864068 + ], + [ + 77.6891990976453, + 12.9708137304139 + ], + [ + 77.686806313980696, + 12.971062161504801 + ], + [ + 77.686726473188202, + 12.9706943921604 + ], + [ + 77.686623737682595, + 12.9705220091884 + ], + [ + 77.686442218841194, + 12.9702174315824 + ], + [ + 77.686412673167297, + 12.970226141730301 + ], + [ + 77.686093391743697, + 12.9703017090832 + ], + [ + 77.686241578406197, + 12.9708037746017 + ], + [ + 77.6863296598912, + 12.9711021979005 + ], + [ + 77.6863329663977, + 12.9711134008197 + ], + [ + 77.686472747995694, + 12.9715850991777 + ], + [ + 77.686682535232507, + 12.972088821460099 + ], + [ + 77.686762802731394, + 12.972593881540799 + ], + [ + 77.686843070757405, + 12.973098941515801 + ], + [ + 77.686824280538303, + 12.9731183323461 + ], + [ + 77.686822469668797, + 12.9732177221603 + ], + [ + 77.6867419894769, + 12.973279109519799 + ], + [ + 77.686108104383607, + 12.973762609610199 + ], + [ + 77.685901683138397, + 12.9739476750739 + ], + [ + 77.685843924624706, + 12.9740374798654 + ], + [ + 77.685823832339295, + 12.974203682421001 + ], + [ + 77.685832613282301, + 12.9743244180335 + ], + [ + 77.685780703126596, + 12.9745835451031 + ], + [ + 77.685741134971906, + 12.9746517068735 + ], + [ + 77.685639020359801, + 12.9746855089059 + ], + [ + 77.685559156415906, + 12.9747540868533 + ], + [ + 77.6855090872575, + 12.9748630089122 + ], + [ + 77.685425538931298, + 12.974910169743 + ], + [ + 77.685300220745503, + 12.9749308765994 + ], + [ + 77.6852870367143, + 12.9749330552859 + ], + [ + 77.684937851626799, + 12.975119594613499 + ], + [ + 77.684538771927393, + 12.9753777895073 + ], + [ + 77.684302298876204, + 12.9754987989371 + ], + [ + 77.684270953030804, + 12.975635758056301 + ], + [ + 77.684272601381096, + 12.9757893148305 + ], + [ + 77.684171334412895, + 12.9759021529931 + ], + [ + 77.684004303077302, + 12.9759490461037 + ], + [ + 77.684061843960194, + 12.976062852840199 + ], + [ + 77.684196817771294, + 12.9763298106447 + ], + [ + 77.684268409093207, + 12.9764714064075 + ], + [ + 77.684271692501596, + 12.976477880422699 + ], + [ + 77.684558378779997, + 12.9770431847768 + ], + [ + 77.684900064671297, + 12.978034497685501 + ], + [ + 77.685252894443707, + 12.978202569492201 + ], + [ + 77.685633259916997, + 12.9783837569053 + ], + [ + 77.685606555553704, + 12.9784167801082 + ], + [ + 77.686015666860598, + 12.978770515108399 + ], + [ + 77.686447859748597, + 12.9790754543638 + ], + [ + 77.6868071400567, + 12.9795064894204 + ], + [ + 77.687047486703193, + 12.979370757398501 + ], + [ + 77.687187452606395, + 12.9794302881585 + ], + [ + 77.6888217944324, + 12.978506627523201 + ], + [ + 77.689614223002195, + 12.980430421512001 + ], + [ + 77.690045985288094, + 12.9814786000829 + ], + [ + 77.690094773967402, + 12.981597041953201 + ], + [ + 77.690177937154303, + 12.981798934616799 + ], + [ + 77.691604092062207, + 12.9815379998472 + ], + [ + 77.691614060771201, + 12.981554834793 + ], + [ + 77.692051903256598, + 12.981795338884501 + ], + [ + 77.692127716897204, + 12.981831817556101 + ], + [ + 77.692229926084806, + 12.981860118281 + ], + [ + 77.692264514726801, + 12.981864276814701 + ], + [ + 77.692348671504206, + 12.9818735678968 + ], + [ + 77.693316463878006, + 12.9818725737448 + ], + [ + 77.693501028237307, + 12.981582712174699 + ], + [ + 77.693520649528494, + 12.981587025664 + ], + [ + 77.693538507320895, + 12.981587969796101 + ], + [ + 77.6935868145342, + 12.981582952288599 + ], + [ + 77.693625323266502, + 12.981576907117301 + ], + [ + 77.693748811408298, + 12.9815496553608 + ], + [ + 77.693770650176504, + 12.9815460413721 + ], + [ + 77.693814939881904, + 12.981542194676299 + ], + [ + 77.693860956579499, + 12.9815383300724 + ], + [ + 77.693926509375999, + 12.9815308753276 + ], + [ + 77.694007641628104, + 12.9815266467049 + ], + [ + 77.694094003537003, + 12.9815268806876 + ], + [ + 77.694162592852294, + 12.9815340741428 + ], + [ + 77.694239865824301, + 12.9815456943992 + ], + [ + 77.694326912930507, + 12.981556084091901 + ], + [ + 77.694358635354604, + 12.9815614012719 + ], + [ + 77.694371924332202, + 12.981565780342599 + ], + [ + 77.694414652444706, + 12.981470483711201 + ], + [ + 77.694438501723695, + 12.9814397477819 + ], + [ + 77.694498925740405, + 12.9813837900378 + ], + [ + 77.694600821898007, + 12.9813296607258 + ], + [ + 77.694970867851197, + 12.9812625880911 + ], + [ + 77.695056325235598, + 12.9812323424885 + ], + [ + 77.695115841205904, + 12.981198978243 + ], + [ + 77.695182941634002, + 12.981121496162899 + ], + [ + 77.695210785740002, + 12.9812476788828 + ], + [ + 77.695254805930205, + 12.9814324127319 + ], + [ + 77.695302490592496, + 12.981583232273101 + ], + [ + 77.695374962059404, + 12.9817902551915 + ], + [ + 77.695477481219498, + 12.981954056465099 + ], + [ + 77.695542695195002, + 12.982075334661699 + ], + [ + 77.695560330479694, + 12.982109028020099 + ], + [ + 77.695618551313302, + 12.982222474253 + ], + [ + 77.695672888682694, + 12.982349511253499 + ], + [ + 77.695700635862394, + 12.9824666611732 + ], + [ + 77.695752240289593, + 12.9828206974887 + ], + [ + 77.695785320452501, + 12.9830586174114 + ], + [ + 77.695815214667803, + 12.983321412961301 + ], + [ + 77.695827190188496, + 12.983577619134699 + ], + [ + 77.6958416787255, + 12.983799922963099 + ], + [ + 77.695849326567497, + 12.983921798170799 + ], + [ + 77.695819939863199, + 12.983972917444801 + ], + [ + 77.695819212504304, + 12.983981661453701 + ], + [ + 77.697753890780405, + 12.984424347124101 + ], + [ + 77.697802658581793, + 12.9843873140941 + ], + [ + 77.697963298234498, + 12.984239749762001 + ], + [ + 77.698150088528394, + 12.9841258076827 + ], + [ + 77.698387312201405, + 12.983958163393901 + ], + [ + 77.698510593795504, + 12.983963300127 + ], + [ + 77.698318199792695, + 12.9833006615595 + ], + [ + 77.698547951854295, + 12.9832460253985 + ], + [ + 77.699702315870496, + 12.9829546325401 + ], + [ + 77.700170229784604, + 12.982844559630699 + ], + [ + 77.700754176408296, + 12.9827665032824 + ], + [ + 77.700830353526896, + 12.9827580935145 + ], + [ + 77.700878385730505, + 12.982752791124399 + ], + [ + 77.700944979775798, + 12.9827351609201 + ], + [ + 77.700980573350094, + 12.9827257573404 + ], + [ + 77.7010170253876, + 12.982689243924799 + ], + [ + 77.701162625979194, + 12.9825239959121 + ], + [ + 77.701237515301401, + 12.9824215890972 + ], + [ + 77.701407098190103, + 12.982238024453901 + ], + [ + 77.701555881699804, + 12.9821009733301 + ], + [ + 77.701629057751902, + 12.982076718158901 + ], + [ + 77.7020726846999, + 12.981858173515 + ], + [ + 77.700813718119093, + 12.979909950749899 + ], + [ + 77.701674821373899, + 12.9795288985504 + ], + [ + 77.701736462170899, + 12.979663387562001 + ], + [ + 77.703195294366097, + 12.979101148777501 + ], + [ + 77.702427586258196, + 12.9771697371388 + ], + [ + 77.703008634154301, + 12.9769299306615 + ], + [ + 77.703421361099799, + 12.9767822304033 + ], + [ + 77.703385593902695, + 12.9766828774479 + ], + [ + 77.704050085583702, + 12.976465072616501 + ], + [ + 77.704135696973395, + 12.9767190259799 + ], + [ + 77.704858196998998, + 12.976514290003699 + ], + [ + 77.704888248183906, + 12.9765552421977 + ], + [ + 77.705030208790902, + 12.9766460630895 + ], + [ + 77.706051318096797, + 12.976293451261499 + ], + [ + 77.706387540488194, + 12.976122310565801 + ], + [ + 77.7067835359112, + 12.9759299165631 + ], + [ + 77.7067218951142, + 12.9754274506726 + ], + [ + 77.706738341044002, + 12.9752941070448 + ], + [ + 77.706785438883003, + 12.975163157985 + ], + [ + 77.707101250669993, + 12.9744829255631 + ], + [ + 77.707136484123396, + 12.974360661158601 + ], + [ + 77.707091844100304, + 12.9742894217064 + ], + [ + 77.706916388387896, + 12.974291248290999 + ], + [ + 77.705169602552601, + 12.974352449361801 + ], + [ + 77.704037609038807, + 12.9744717805857 + ], + [ + 77.703869230416004, + 12.974452019775599 + ], + [ + 77.703729474410395, + 12.974374597731501 + ], + [ + 77.703446552511494, + 12.973904289479799 + ], + [ + 77.703231133908304, + 12.9735910295999 + ], + [ + 77.703149708829699, + 12.973498659849501 + ], + [ + 77.703039738590405, + 12.9734711212081 + ], + [ + 77.702244531769907, + 12.9732718906813 + ], + [ + 77.702337926916798, + 12.9735296612869 + ], + [ + 77.7024025302252, + 12.973842775877401 + ], + [ + 77.702508521861205, + 12.9741786856885 + ], + [ + 77.702692697815706, + 12.9747581767569 + ], + [ + 77.702731517404004, + 12.9748660078725 + ], + [ + 77.701659878150096, + 12.9751771516788 + ], + [ + 77.701620652188296, + 12.975087492337799 + ], + [ + 77.700598909280799, + 12.9751958307082 + ], + [ + 77.700523282866399, + 12.974892001730501 + ], + [ + 77.7005124413608, + 12.9748525343227 + ], + [ + 77.700459058535301, + 12.9745693166835 + ], + [ + 77.700116762206903, + 12.9727532653721 + ], + [ + 77.700114930508207, + 12.9724073020014 + ], + [ + 77.699842762191594, + 12.9725298009438 + ], + [ + 77.6990290173419, + 12.972896055385601 + ], + [ + 77.698686390167794, + 12.973023655967699 + ], + [ + 77.698694105170901, + 12.973019435779801 + ], + [ + 77.699076852283298, + 12.9723521945141 + ], + [ + 77.699232121094795, + 12.9721245898891 + ], + [ + 77.6996149292886, + 12.9714633234424 + ], + [ + 77.699835432787296, + 12.971144800759699 + ], + [ + 77.700106178035398, + 12.970753703127899 + ], + [ + 77.700537775906199, + 12.970031599300301 + ], + [ + 77.701063692923697, + 12.969082026103701 + ], + [ + 77.701279397569394, + 12.9687451647331 + ], + [ + 77.7014540404695, + 12.9684734114775 + ], + [ + 77.701519082703598, + 12.968372201535001 + ], + [ + 77.701649754300604, + 12.968060124306501 + ], + [ + 77.702123773883002, + 12.9670194954784 + ], + [ + 77.7021518470969, + 12.9667981146636 + ], + [ + 77.702173893309507, + 12.9665827722005 + ], + [ + 77.702195809560607, + 12.966355479587801 + ], + [ + 77.702183489808604, + 12.966176431668901 + ], + [ + 77.702025073333502, + 12.9662194835043 + ], + [ + 77.701892874412096, + 12.9662389236785 + ], + [ + 77.701823896808193, + 12.966248673630099 + ], + [ + 77.701778120295103, + 12.966167846235001 + ], + [ + 77.701733790330906, + 12.966061032088501 + ], + [ + 77.701629697165203, + 12.9656443070718 + ], + [ + 77.701553216666895, + 12.965332311333 + ], + [ + 77.701502192318401, + 12.965138617793301 + ], + [ + 77.701425197567502, + 12.964832273315 + ], + [ + 77.701332517905101, + 12.9644594684803 + ], + [ + 77.700723734465001, + 12.9639531282251 + ], + [ + 77.700087113396904, + 12.963480951103699 + ], + [ + 77.699892841969998, + 12.9634523249323 + ], + [ + 77.698385444298395, + 12.963131045626801 + ], + [ + 77.698096681168096, + 12.963080401184801 + ], + [ + 77.697403559059794, + 12.962760115879499 + ], + [ + 77.696274195475794, + 12.962077355161799 + ], + [ + 77.695264342206997, + 12.961586445810701 + ], + [ + 77.694949798971194, + 12.961447461237601 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "307", + "group": "SOMESHWARA NAGARA", + "Corporatio": "Central", + "ac_no": "169", + "ac": "Chickpet", + "corporat_1": "1", + "ward_id": "62", + "ward_name": "62 - Someshwara Nagara", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಿಕ್ಕಪೇಟೆ", + "ward_name_": "ಸೋಮೇಶ್ವರ ನಗರ", + "dig_ward_n": "SOMESHWARA NAGARA", + "Assembly": "169 - Chickpet", + "Slno": "62" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.596478421244996, + 12.939827563344499 + ], + [ + 77.596260006089196, + 12.9398048942457 + ], + [ + 77.596117031537901, + 12.9397848615528 + ], + [ + 77.595921524105194, + 12.9397506710811 + ], + [ + 77.595889666599902, + 12.9397317903146 + ], + [ + 77.594096837157295, + 12.939547492989799 + ], + [ + 77.594091081005999, + 12.939547550268401 + ], + [ + 77.593172404210804, + 12.9389096539698 + ], + [ + 77.593066508547096, + 12.9388361231102 + ], + [ + 77.592865898606206, + 12.9386980855815 + ], + [ + 77.592614699659194, + 12.938522888436999 + ], + [ + 77.592613662419794, + 12.9385221651604 + ], + [ + 77.592609590734895, + 12.938629488861899 + ], + [ + 77.592598188113499, + 12.9389377386075 + ], + [ + 77.592576745329296, + 12.9395174428929 + ], + [ + 77.592556433911597, + 12.9400585781123 + ], + [ + 77.592543356090303, + 12.940464125760201 + ], + [ + 77.592558046435798, + 12.940548676921299 + ], + [ + 77.592599110174703, + 12.9406228021028 + ], + [ + 77.592650441679893, + 12.9406877907747 + ], + [ + 77.592860596922193, + 12.9409103898316 + ], + [ + 77.592981047406198, + 12.9410379721281 + ], + [ + 77.593000253003595, + 12.941058108413699 + ], + [ + 77.593216777098405, + 12.9412874601417 + ], + [ + 77.593226092106306, + 12.9412975311356 + ], + [ + 77.593444355159505, + 12.9415279945918 + ], + [ + 77.593855094147699, + 12.942008626537 + ], + [ + 77.593870591997103, + 12.942027110203099 + ], + [ + 77.5940339881451, + 12.942221977887201 + ], + [ + 77.594034818841095, + 12.942223479261999 + ], + [ + 77.594231151308904, + 12.942529157894599 + ], + [ + 77.594526422898596, + 12.9429944590243 + ], + [ + 77.594782224363797, + 12.9435540793922 + ], + [ + 77.594571269600706, + 12.9441409460262 + ], + [ + 77.5945276502148, + 12.944350069945299 + ], + [ + 77.594532289538705, + 12.944451991484399 + ], + [ + 77.594563739269802, + 12.9445472917076 + ], + [ + 77.594650635672295, + 12.9447017994415 + ], + [ + 77.594755635193593, + 12.944793843879699 + ], + [ + 77.595231793135994, + 12.9453986465138 + ], + [ + 77.594737206064806, + 12.9457895143544 + ], + [ + 77.594227253181899, + 12.946046891704 + ], + [ + 77.593101379630099, + 12.946648211544099 + ], + [ + 77.593215990684996, + 12.946797895761501 + ], + [ + 77.593389816432307, + 12.9469457917012 + ], + [ + 77.593749952649205, + 12.9471436265297 + ], + [ + 77.594175982588396, + 12.9474180898006 + ], + [ + 77.594882503738205, + 12.9465166340867 + ], + [ + 77.595579999699893, + 12.945912798640601 + ], + [ + 77.596235702039493, + 12.946881264490001 + ], + [ + 77.596740964015794, + 12.9465607500226 + ], + [ + 77.597678421283405, + 12.945923520098299 + ], + [ + 77.598248833057099, + 12.946708156425901 + ], + [ + 77.598624484962301, + 12.9465183492711 + ], + [ + 77.599324558490594, + 12.946253578354399 + ], + [ + 77.599946650742993, + 12.9479135468072 + ], + [ + 77.600171087577394, + 12.948554341726499 + ], + [ + 77.600272599643802, + 12.948930253597499 + ], + [ + 77.601737387039805, + 12.948429830832501 + ], + [ + 77.601933194503005, + 12.9485234304688 + ], + [ + 77.602131980936804, + 12.948556810647 + ], + [ + 77.602630453692896, + 12.9483584969493 + ], + [ + 77.6026299488814, + 12.948356718620399 + ], + [ + 77.602620410446207, + 12.9483251938397 + ], + [ + 77.602582340804105, + 12.9481516637628 + ], + [ + 77.602506968683201, + 12.947825416357899 + ], + [ + 77.602502169571395, + 12.9478046438339 + ], + [ + 77.602449757430605, + 12.9475804389924 + ], + [ + 77.602425550332896, + 12.9473559523974 + ], + [ + 77.602424036979897, + 12.947210289308201 + ], + [ + 77.602423439376906, + 12.9471971783664 + ], + [ + 77.602422546641705, + 12.947177554830001 + ], + [ + 77.602415254733003, + 12.9469743557455 + ], + [ + 77.602434321975593, + 12.946914251578701 + ], + [ + 77.602442570416898, + 12.946888256991301 + ], + [ + 77.602443639605198, + 12.946880341292999 + ], + [ + 77.602467850389601, + 12.9466415793026 + ], + [ + 77.602483933092202, + 12.9464829867294 + ], + [ + 77.602485938409302, + 12.9464632113803 + ], + [ + 77.602486277831204, + 12.946459884268499 + ], + [ + 77.602516770149506, + 12.946161382522501 + ], + [ + 77.602517541990693, + 12.9460931558553 + ], + [ + 77.602517932390001, + 12.946058630964201 + ], + [ + 77.602517970636896, + 12.946055217420801 + ], + [ + 77.602518688118593, + 12.9460134265831 + ], + [ + 77.602552132843698, + 12.9455195935038 + ], + [ + 77.602607117384593, + 12.9452541241172 + ], + [ + 77.602650808855202, + 12.945043178448101 + ], + [ + 77.6026760448853, + 12.944923221831299 + ], + [ + 77.602680235294699, + 12.944902939517601 + ], + [ + 77.602725377382697, + 12.944684449270699 + ], + [ + 77.602783654722501, + 12.9443958336427 + ], + [ + 77.602785138754001, + 12.944388484770499 + ], + [ + 77.602787754649199, + 12.944375531454501 + ], + [ + 77.602844192275597, + 12.9440960326574 + ], + [ + 77.602848190022698, + 12.943926599485 + ], + [ + 77.602853989840696, + 12.9437897657736 + ], + [ + 77.602864373487705, + 12.943544738405301 + ], + [ + 77.602863477956802, + 12.943422811314001 + ], + [ + 77.602863436870607, + 12.943417167992999 + ], + [ + 77.602863242031205, + 12.943390681352099 + ], + [ + 77.602861585934207, + 12.943165324464299 + ], + [ + 77.602861539054004, + 12.943160808682601 + ], + [ + 77.602787961019104, + 12.942838567018701 + ], + [ + 77.602729208377497, + 12.942579707402199 + ], + [ + 77.602717379473503, + 12.9425275882554 + ], + [ + 77.602632358562303, + 12.9421523823643 + ], + [ + 77.602629294712699, + 12.9421388623986 + ], + [ + 77.602613757636306, + 12.9421421217319 + ], + [ + 77.602024423479804, + 12.942265735563099 + ], + [ + 77.601986264494997, + 12.9422736926859 + ], + [ + 77.601985892263301, + 12.9422737704833 + ], + [ + 77.601734334030297, + 12.942326225193501 + ], + [ + 77.601443104858404, + 12.9423878551902 + ], + [ + 77.601147168819494, + 12.9424502031105 + ], + [ + 77.600955278505396, + 12.9424906305088 + ], + [ + 77.600947952549404, + 12.942492174403901 + ], + [ + 77.600935312363106, + 12.942494559123499 + ], + [ + 77.600898755557907, + 12.9424666916804 + ], + [ + 77.600746493624698, + 12.942493146697901 + ], + [ + 77.600739664109597, + 12.9424943332951 + ], + [ + 77.600738443105399, + 12.942494545137301 + ], + [ + 77.600498804112902, + 12.9425361813561 + ], + [ + 77.600240317608893, + 12.9425810915284 + ], + [ + 77.600229871984297, + 12.942582907744701 + ], + [ + 77.600100615963797, + 12.9426055580045 + ], + [ + 77.599883295511404, + 12.942643641890401 + ], + [ + 77.599730535452395, + 12.9426704121006 + ], + [ + 77.599307061332695, + 12.942744621138401 + ], + [ + 77.599286894846998, + 12.942748155928999 + ], + [ + 77.599080069563797, + 12.9427886144413 + ], + [ + 77.598967388427397, + 12.9428032887039 + ], + [ + 77.598677626831901, + 12.9428400576711 + ], + [ + 77.598568528069606, + 12.942867118260001 + ], + [ + 77.598499041797695, + 12.9428836211438 + ], + [ + 77.598221287357205, + 12.9429259994936 + ], + [ + 77.598142683408199, + 12.9429379919961 + ], + [ + 77.597975116856503, + 12.9429893512454 + ], + [ + 77.597965225227, + 12.9429924573784 + ], + [ + 77.5977708391368, + 12.9430534985359 + ], + [ + 77.597255264394803, + 12.943187376394601 + ], + [ + 77.597301575470993, + 12.942878618827001 + ], + [ + 77.597381856125196, + 12.942348180441501 + ], + [ + 77.597420130882199, + 12.942041760659 + ], + [ + 77.597443399096804, + 12.941867188555999 + ], + [ + 77.597456454046096, + 12.9417692391147 + ], + [ + 77.597589381755796, + 12.940434690355 + ], + [ + 77.597593945448594, + 12.9403888696721 + ], + [ + 77.597603502537098, + 12.940292917353799 + ], + [ + 77.597628041249905, + 12.940143636897099 + ], + [ + 77.597653191652299, + 12.9399906318114 + ], + [ + 77.597659282985106, + 12.9399535736739 + ], + [ + 77.597666589602497, + 12.9399365605697 + ], + [ + 77.596950422521303, + 12.939878197064401 + ], + [ + 77.596931357084003, + 12.9398716112344 + ], + [ + 77.596824657923804, + 12.939852346864299 + ], + [ + 77.596478421244996, + 12.939827563344499 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "290", + "group": "Dodda kannalli", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "44", + "ward_name": "44 - Dodda Kannalli", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ದೊಡ್ಡ ಕಣ್ಣಲ್ಲಿ", + "dig_ward_n": "Dodda kannalli", + "Assembly": "174 - Mahadevapura", + "Slno": "44" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.684492629888595, + 12.9107698134777 + ], + [ + 77.684020207798099, + 12.9098236331397 + ], + [ + 77.683797532276301, + 12.908821979508 + ], + [ + 77.683693447519204, + 12.9086581260085 + ], + [ + 77.682767130287303, + 12.908846903754499 + ], + [ + 77.682702266124494, + 12.9088348113942 + ], + [ + 77.679598447111701, + 12.9089864090858 + ], + [ + 77.6796933601278, + 12.910854300455201 + ], + [ + 77.680004313938099, + 12.910813714844799 + ], + [ + 77.680257019749703, + 12.911662091356501 + ], + [ + 77.68006744326, + 12.911707002021 + ], + [ + 77.680340062138498, + 12.9127447436073 + ], + [ + 77.679769709646195, + 12.913061020056499 + ], + [ + 77.678759469629696, + 12.9135755458459 + ], + [ + 77.677769000961106, + 12.9139203314838 + ], + [ + 77.677215471173099, + 12.914130387860499 + ], + [ + 77.676544714602898, + 12.9142950165564 + ], + [ + 77.676157956996306, + 12.9143959556776 + ], + [ + 77.675801170303103, + 12.9144890728444 + ], + [ + 77.675394760433605, + 12.9147657200318 + ], + [ + 77.6744659074715, + 12.915406250624301 + ], + [ + 77.673842508998604, + 12.915900237785699 + ], + [ + 77.673641361315902, + 12.9162321469673 + ], + [ + 77.673515136888597, + 12.9167353839195 + ], + [ + 77.673283684366993, + 12.916967213666901 + ], + [ + 77.672760929592499, + 12.9173024150606 + ], + [ + 77.672334700375899, + 12.917518912855799 + ], + [ + 77.672007024383106, + 12.917685351228601 + ], + [ + 77.671948024039295, + 12.917715319614199 + ], + [ + 77.671612779644704, + 12.917857559227301 + ], + [ + 77.670637320861502, + 12.916361468205199 + ], + [ + 77.669919397225698, + 12.916674757794 + ], + [ + 77.669671693938, + 12.9162949123556 + ], + [ + 77.669128884450799, + 12.9165776701184 + ], + [ + 77.669379736603801, + 12.917253928894199 + ], + [ + 77.6682346956446, + 12.9175446922556 + ], + [ + 77.668781335124393, + 12.9188807476236 + ], + [ + 77.669560537428296, + 12.918630871749199 + ], + [ + 77.670291281252503, + 12.918418190736499 + ], + [ + 77.671173445357297, + 12.9202592506663 + ], + [ + 77.671400567300594, + 12.9203070644015 + ], + [ + 77.671806710804006, + 12.9213785041118 + ], + [ + 77.671788750067606, + 12.9217516186671 + ], + [ + 77.671960908197605, + 12.9221299001749 + ], + [ + 77.672322472680307, + 12.9227316576712 + ], + [ + 77.672460949572894, + 12.922921513872 + ], + [ + 77.672753426827697, + 12.9229280793841 + ], + [ + 77.673153107396203, + 12.922933546579699 + ], + [ + 77.674232130015099, + 12.9228109454478 + ], + [ + 77.674664300998899, + 12.9227538791868 + ], + [ + 77.674740791102295, + 12.923749073277 + ], + [ + 77.674815935787905, + 12.9237459406004 + ], + [ + 77.675009533426405, + 12.923716651519401 + ], + [ + 77.675224394157098, + 12.9236903838835 + ], + [ + 77.675363597672202, + 12.9236482311629 + ], + [ + 77.675521986583902, + 12.923635500389899 + ], + [ + 77.675712290932395, + 12.9236184283164 + ], + [ + 77.675747058053901, + 12.9239682185039 + ], + [ + 77.676054287081996, + 12.9253035384549 + ], + [ + 77.676169011591796, + 12.9258021632769 + ], + [ + 77.676699547114495, + 12.9260572210995 + ], + [ + 77.677136434896298, + 12.926267255402401 + ], + [ + 77.677224375443899, + 12.9263092637895 + ], + [ + 77.6773724858962, + 12.926380014676999 + ], + [ + 77.677725448805603, + 12.926552563064201 + ], + [ + 77.678705064210405, + 12.9270314514727 + ], + [ + 77.679162649240297, + 12.927248475510799 + ], + [ + 77.679433350508106, + 12.927410025204701 + ], + [ + 77.679275299775298, + 12.9285548778902 + ], + [ + 77.679172663091606, + 12.9292561193718 + ], + [ + 77.679592629695506, + 12.929201834574499 + ], + [ + 77.680114610027402, + 12.9290032951049 + ], + [ + 77.680295650053196, + 12.928993612993199 + ], + [ + 77.680278430935601, + 12.928432265113001 + ], + [ + 77.680264362898399, + 12.927973643096699 + ], + [ + 77.680275372179196, + 12.927774579294899 + ], + [ + 77.680776810127696, + 12.9280116155364 + ], + [ + 77.680908117508594, + 12.928073685369201 + ], + [ + 77.681293182947897, + 12.9282593792526 + ], + [ + 77.681470008216806, + 12.9283446512929 + ], + [ + 77.681667556474693, + 12.9284399165611 + ], + [ + 77.681687280476197, + 12.928449427856901 + ], + [ + 77.682013228507998, + 12.928606612216299 + ], + [ + 77.6820135997107, + 12.928606789075999 + ], + [ + 77.682056730133098, + 12.9286273907945 + ], + [ + 77.682962051045195, + 12.9290598250538 + ], + [ + 77.683029190745998, + 12.9290918946711 + ], + [ + 77.683153108624495, + 12.929148919710901 + ], + [ + 77.683538768695996, + 12.9293263927203 + ], + [ + 77.683824177005803, + 12.929457731105799 + ], + [ + 77.684298909711401, + 12.929676191378499 + ], + [ + 77.684560431101104, + 12.9298005484867 + ], + [ + 77.684637644822502, + 12.929837264801 + ], + [ + 77.684694063834996, + 12.9298640926321 + ], + [ + 77.684759816579202, + 12.929906118565601 + ], + [ + 77.685052242510807, + 12.930093025745199 + ], + [ + 77.685113673721602, + 12.9301319161615 + ], + [ + 77.685240025744307, + 12.930213048681299 + ], + [ + 77.685720114731794, + 12.9305920403801 + ], + [ + 77.685820377240802, + 12.9306803772844 + ], + [ + 77.686676599091001, + 12.931434752541 + ], + [ + 77.686789907898799, + 12.9315340859557 + ], + [ + 77.687260016451603, + 12.9319481833937 + ], + [ + 77.687991151165207, + 12.9326023725807 + ], + [ + 77.688244182718904, + 12.9328290267132 + ], + [ + 77.6888199380641, + 12.933344758618199 + ], + [ + 77.689078127632598, + 12.933588846892301 + ], + [ + 77.689227579293302, + 12.9337301355932 + ], + [ + 77.689379212605303, + 12.933873195777901 + ], + [ + 77.689675658015901, + 12.9341528800371 + ], + [ + 77.690345229580203, + 12.9347845886467 + ], + [ + 77.6903539477359, + 12.9347924041213 + ], + [ + 77.690363639734898, + 12.934801282755901 + ], + [ + 77.690395804068999, + 12.9347348429518 + ], + [ + 77.690586111000499, + 12.934341737806401 + ], + [ + 77.690777242785998, + 12.9339469284813 + ], + [ + 77.691406745481601, + 12.9326592963241 + ], + [ + 77.691752713966693, + 12.932156761470299 + ], + [ + 77.693128206139605, + 12.9313986346947 + ], + [ + 77.693732047760093, + 12.9313541567815 + ], + [ + 77.694687710590699, + 12.9313442854186 + ], + [ + 77.694978116190796, + 12.9313412850281 + ], + [ + 77.695018518824895, + 12.9313408675737 + ], + [ + 77.695036130630399, + 12.931340685600199 + ], + [ + 77.695020384122202, + 12.931296731302201 + ], + [ + 77.6949976178539, + 12.9312328760118 + ], + [ + 77.694994533601104, + 12.9312242246823 + ], + [ + 77.6949622221411, + 12.931133596350501 + ], + [ + 77.6949507026643, + 12.930922999340799 + ], + [ + 77.694947081274805, + 12.930886181881 + ], + [ + 77.694944063450293, + 12.9308529858108 + ], + [ + 77.694922938678204, + 12.930573535255601 + ], + [ + 77.694908453120306, + 12.930518007283499 + ], + [ + 77.694904831730796, + 12.9304781719992 + ], + [ + 77.694893363997494, + 12.9304051406446 + ], + [ + 77.694856546537693, + 12.9300399838717 + ], + [ + 77.694788947267398, + 12.9300411910015 + ], + [ + 77.694769633190106, + 12.929914442369601 + ], + [ + 77.694743076333907, + 12.9295366107335 + ], + [ + 77.694714105217997, + 12.9292191355888 + ], + [ + 77.694687548361799, + 12.9291189438131 + ], + [ + 77.694654326838304, + 12.9288731244944 + ], + [ + 77.6946585017659, + 12.9287936163576 + ], + [ + 77.6946637266186, + 12.928738043929499 + ], + [ + 77.694677100058897, + 12.9285958118891 + ], + [ + 77.694687798334698, + 12.928412768797401 + ], + [ + 77.694712539082403, + 12.9280364851521 + ], + [ + 77.694741641781405, + 12.9276375721865 + ], + [ + 77.6947592897628, + 12.927229671556701 + ], + [ + 77.694759628478096, + 12.927221845770299 + ], + [ + 77.694784793122906, + 12.926777795006 + ], + [ + 77.694809503339599, + 12.9265596024866 + ], + [ + 77.694840853849996, + 12.9263298703458 + ], + [ + 77.694852321583298, + 12.9261216404505 + ], + [ + 77.694829007825405, + 12.9258937983368 + ], + [ + 77.6948245575973, + 12.925830722162001 + ], + [ + 77.694800415000699, + 12.925666552505399 + ], + [ + 77.694801622130598, + 12.9256267172211 + ], + [ + 77.694810072039402, + 12.925460133304799 + ], + [ + 77.694808864909504, + 12.9254323693188 + ], + [ + 77.694816107688496, + 12.9251450724198 + ], + [ + 77.694826357086697, + 12.9249408518692 + ], + [ + 77.694867395403804, + 12.924833149445901 + ], + [ + 77.694874049920202, + 12.9247986261592 + ], + [ + 77.694891475110595, + 12.924768952808201 + ], + [ + 77.694924749373001, + 12.9246344565026 + ], + [ + 77.694942856320395, + 12.924537886116299 + ], + [ + 77.694941950971995, + 12.9244432018703 + ], + [ + 77.694959756138005, + 12.9243918234072 + ], + [ + 77.694986312988306, + 12.924339916823 + ], + [ + 77.695044142645301, + 12.9243022070126 + ], + [ + 77.695532231906, + 12.9213066724532 + ], + [ + 77.695568872112503, + 12.921151949244701 + ], + [ + 77.695875792575904, + 12.9208022050609 + ], + [ + 77.696181814289602, + 12.920368813349899 + ], + [ + 77.696398267441495, + 12.920103658027999 + ], + [ + 77.696462381162107, + 12.919834102243801 + ], + [ + 77.696650431950502, + 12.919419084771601 + ], + [ + 77.696652523579004, + 12.9194144695291 + ], + [ + 77.696657858511301, + 12.919414293368501 + ], + [ + 77.696659928321594, + 12.919411934969601 + ], + [ + 77.696702997596006, + 12.9193628553389 + ], + [ + 77.696717969347006, + 12.9193457941121 + ], + [ + 77.6967355249501, + 12.919325789211999 + ], + [ + 77.696747003045502, + 12.9193127090905 + ], + [ + 77.696790076832897, + 12.9192636239846 + ], + [ + 77.697031163850298, + 12.9189878640396 + ], + [ + 77.697424192343107, + 12.918550186023801 + ], + [ + 77.697894556207203, + 12.9180247592291 + ], + [ + 77.698524231282406, + 12.9173271745444 + ], + [ + 77.698629597178694, + 12.9172015633618 + ], + [ + 77.698727208331206, + 12.917126108973401 + ], + [ + 77.698805671770003, + 12.9170355742363 + ], + [ + 77.698853956963106, + 12.9169800462642 + ], + [ + 77.698898620766698, + 12.916941418109699 + ], + [ + 77.699021748009201, + 12.9168448477235 + ], + [ + 77.699091761539194, + 12.9167048206634 + ], + [ + 77.699071240332103, + 12.9165720363824 + ], + [ + 77.699057961904003, + 12.916477880255799 + ], + [ + 77.699032612177604, + 12.916401831076699 + ], + [ + 77.698944491700203, + 12.916107291398699 + ], + [ + 77.698833435756001, + 12.915807923201299 + ], + [ + 77.698744108148802, + 12.915642546414899 + ], + [ + 77.698703669300301, + 12.915546579593601 + ], + [ + 77.698695219390004, + 12.9155001050961 + ], + [ + 77.6986698696643, + 12.915369735073799 + ], + [ + 77.698652969846805, + 12.9149810392693 + ], + [ + 77.698623998730895, + 12.9145682008681 + ], + [ + 77.698610720302796, + 12.9143472961096 + ], + [ + 77.698601063264107, + 12.914283318228801 + ], + [ + 77.698571084220902, + 12.914026006240199 + ], + [ + 77.698540245252303, + 12.913512533781301 + ], + [ + 77.698518518923507, + 12.9132049723087 + ], + [ + 77.698505391422501, + 12.9129903960907 + ], + [ + 77.698501690874394, + 12.912929471366599 + ], + [ + 77.698500367546501, + 12.9129076885503 + ], + [ + 77.698508114267398, + 12.9126778355577 + ], + [ + 77.698459829074295, + 12.9124062313465 + ], + [ + 77.698418786660099, + 12.912273447065401 + ], + [ + 77.698257031263196, + 12.911759209758699 + ], + [ + 77.6982292672771, + 12.9116626393725 + ], + [ + 77.698147182448807, + 12.911475534249201 + ], + [ + 77.698071133269707, + 12.911362064045401 + ], + [ + 77.697981002002095, + 12.9112241326606 + ], + [ + 77.697955581407896, + 12.9111641675774 + ], + [ + 77.697931756078702, + 12.911132023345401 + ], + [ + 77.697905112498702, + 12.9110960770278 + ], + [ + 77.6978808264994, + 12.9110633106081 + ], + [ + 77.697893113626805, + 12.911059746381 + ], + [ + 77.697891678592796, + 12.9110570619342 + ], + [ + 77.697661717514293, + 12.910743934166801 + ], + [ + 77.697375222922503, + 12.9103626359933 + ], + [ + 77.697312452171502, + 12.9103891928495 + ], + [ + 77.697073440465502, + 12.910529219909501 + ], + [ + 77.696921342107203, + 12.9102853796843 + ], + [ + 77.696788365122202, + 12.910360963379601 + ], + [ + 77.696126447116995, + 12.9106800356926 + ], + [ + 77.696073333404499, + 12.910657100225899 + ], + [ + 77.695935720604098, + 12.9108200627527 + ], + [ + 77.695772758077396, + 12.9110035464865 + ], + [ + 77.6956435951858, + 12.911077181406 + ], + [ + 77.695533746371495, + 12.9112099656871 + ], + [ + 77.695019916232894, + 12.911396289961999 + ], + [ + 77.694962032243694, + 12.9117330147182 + ], + [ + 77.695117941314706, + 12.912545909054 + ], + [ + 77.694992924867705, + 12.913207862964301 + ], + [ + 77.694951519818304, + 12.913921378365901 + ], + [ + 77.694989619385296, + 12.9146575364613 + ], + [ + 77.694779191371595, + 12.9153512193697 + ], + [ + 77.694702956575597, + 12.9158416454605 + ], + [ + 77.692117250755999, + 12.9155719340738 + ], + [ + 77.689317924935807, + 12.915403688463501 + ], + [ + 77.688226638531702, + 12.915512694038499 + ], + [ + 77.687645213354401, + 12.913360211584299 + ], + [ + 77.687134537028996, + 12.912210072749399 + ], + [ + 77.687295688859606, + 12.912125045541901 + ], + [ + 77.6871122051258, + 12.911651850649401 + ], + [ + 77.686910550500997, + 12.9117356814661 + ], + [ + 77.686727060746804, + 12.911228721501301 + ], + [ + 77.686492754050605, + 12.910670231403 + ], + [ + 77.686394797945795, + 12.9101566176113 + ], + [ + 77.686349091043098, + 12.9100251066089 + ], + [ + 77.685190454439805, + 12.9105026630533 + ], + [ + 77.685060386200902, + 12.910565132021899 + ], + [ + 77.684886559505699, + 12.910613417215 + ], + [ + 77.684492629888595, + 12.9107698134777 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "291", + "group": "V.VPURAM", + "Corporatio": "Central", + "ac_no": "169", + "ac": "Chickpet", + "corporat_1": "1", + "ward_id": "58", + "ward_name": "58 - V.V Puram", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಿಕ್ಕಪೇಟೆ", + "ward_name_": "ವಿ.ವಿ. ಪುರಂ", + "dig_ward_n": "V.VPURAM", + "Assembly": "169 - Chickpet", + "Slno": "58" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.577645031144897, + 12.9441872636447 + ], + [ + 77.577557987695997, + 12.9443156143252 + ], + [ + 77.577474507232395, + 12.9443436655343 + ], + [ + 77.577293923626002, + 12.9444150597107 + ], + [ + 77.577153270395797, + 12.9444471796662 + ], + [ + 77.576982777023801, + 12.9445226151699 + ], + [ + 77.576838960436902, + 12.944546062907801 + ], + [ + 77.573795751714698, + 12.9445469413109 + ], + [ + 77.573795523940504, + 12.945042932206601 + ], + [ + 77.573796627514497, + 12.9458232756466 + ], + [ + 77.573796712737504, + 12.945887645566399 + ], + [ + 77.573798156478603, + 12.9465889337961 + ], + [ + 77.573798260831396, + 12.946599096569299 + ], + [ + 77.573798895888601, + 12.9469412716933 + ], + [ + 77.573798470983405, + 12.9469559569404 + ], + [ + 77.573799303259193, + 12.947317328404001 + ], + [ + 77.573799778672907, + 12.9473636254792 + ], + [ + 77.5738011123495, + 12.9482783545927 + ], + [ + 77.573716469424099, + 12.948276932151201 + ], + [ + 77.573716102506907, + 12.948297263382999 + ], + [ + 77.573714272913094, + 12.948790926997599 + ], + [ + 77.573706791587099, + 12.950810073279399 + ], + [ + 77.573698221961905, + 12.9531704184887 + ], + [ + 77.573632219919702, + 12.954802052642799 + ], + [ + 77.5735288116867, + 12.957358449088 + ], + [ + 77.573682382148803, + 12.9572880431118 + ], + [ + 77.574531376195594, + 12.957044752867199 + ], + [ + 77.577306085942098, + 12.956291328202401 + ], + [ + 77.578414168296703, + 12.9557498966716 + ], + [ + 77.578576084225404, + 12.9556721445826 + ], + [ + 77.578824135567203, + 12.9555522401687 + ], + [ + 77.579620683102604, + 12.9552438539209 + ], + [ + 77.580004730538704, + 12.956261743587 + ], + [ + 77.580104642127495, + 12.956604791198901 + ], + [ + 77.580125507763896, + 12.957109562062101 + ], + [ + 77.580147866551002, + 12.958975606532499 + ], + [ + 77.582715539164099, + 12.9573993660719 + ], + [ + 77.582432419743796, + 12.954775436328401 + ], + [ + 77.580760738567093, + 12.9549958334681 + ], + [ + 77.580094802569107, + 12.955152623936099 + ], + [ + 77.580048398130501, + 12.9546194094569 + ], + [ + 77.580035145640196, + 12.954022333021101 + ], + [ + 77.580022668846794, + 12.9534602049557 + ], + [ + 77.579998016496305, + 12.952349459480899 + ], + [ + 77.579974822598302, + 12.9513043807997 + ], + [ + 77.580006514721205, + 12.9493102720786 + ], + [ + 77.579990646108996, + 12.9491315561365 + ], + [ + 77.580043787421403, + 12.947413867490701 + ], + [ + 77.580069392819397, + 12.9435882826127 + ], + [ + 77.580072772082005, + 12.9421399306627 + ], + [ + 77.579256129712206, + 12.9421357230742 + ], + [ + 77.579273489261396, + 12.9406638126333 + ], + [ + 77.578532889729203, + 12.9406506304588 + ], + [ + 77.578011443423804, + 12.9406413482172 + ], + [ + 77.577792588505304, + 12.9406332812688 + ], + [ + 77.577775287560598, + 12.9425716791059 + ], + [ + 77.5789082755349, + 12.942596582118901 + ], + [ + 77.578895140234707, + 12.943656819480299 + ], + [ + 77.577767502806694, + 12.943655255065099 + ], + [ + 77.577748945834102, + 12.9439355293086 + ], + [ + 77.577706737007802, + 12.944029679413701 + ], + [ + 77.577661731258701, + 12.9441317623417 + ], + [ + 77.5776500376966, + 12.944170274495599 + ], + [ + 77.577645031144897, + 12.9441872636447 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "292", + "group": "Munnenkolala", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "40", + "ward_name": "40 - Munnenkolalu", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಮುನ್ನೆನಕೋಳಲು", + "dig_ward_n": "Munnenkolala", + "Assembly": "174 - Mahadevapura", + "Slno": "40" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.706306745644596, + 12.945573822476399 + ], + [ + 77.706305177388899, + 12.9455885183985 + ], + [ + 77.706287841242499, + 12.9457422700103 + ], + [ + 77.706276253931904, + 12.945788687667401 + ], + [ + 77.7062301293562, + 12.9458885365648 + ], + [ + 77.706183377771794, + 12.9460369476867 + ], + [ + 77.706155760437696, + 12.946572385346601 + ], + [ + 77.706153105926802, + 12.94658252696 + ], + [ + 77.706091473698507, + 12.9468179988003 + ], + [ + 77.706027431695603, + 12.947303984451599 + ], + [ + 77.705988365525599, + 12.9476004472938 + ], + [ + 77.705953983101594, + 12.947861367489899 + ], + [ + 77.705933960008693, + 12.9480133095974 + ], + [ + 77.705896460314193, + 12.948231024554801 + ], + [ + 77.705894688769106, + 12.9482413096669 + ], + [ + 77.705881655247694, + 12.9483169778674 + ], + [ + 77.705859621000997, + 12.948444903304599 + ], + [ + 77.705833770788104, + 12.9486350043426 + ], + [ + 77.705794141759498, + 12.9489264359126 + ], + [ + 77.705764670119393, + 12.9491578338364 + ], + [ + 77.705726436223799, + 12.9494580325103 + ], + [ + 77.705690240897695, + 12.9497422250203 + ], + [ + 77.705671662716497, + 12.949888099612799 + ], + [ + 77.705654320206506, + 12.950005109787501 + ], + [ + 77.705609947161307, + 12.950304509537 + ], + [ + 77.705562671512496, + 12.9506234945272 + ], + [ + 77.705559416949995, + 12.9506454538396 + ], + [ + 77.705533663179693, + 12.950873839303901 + ], + [ + 77.705513524210602, + 12.951052421899099 + ], + [ + 77.7055032150285, + 12.951178497438599 + ], + [ + 77.705487686298198, + 12.9511797879457 + ], + [ + 77.705437667364393, + 12.951514183003299 + ], + [ + 77.705095214420695, + 12.953803615703899 + ], + [ + 77.705066125118606, + 12.9541990648738 + ], + [ + 77.705056060798498, + 12.954335877067299 + ], + [ + 77.705023647432498, + 12.954664118991699 + ], + [ + 77.705022734695007, + 12.9546693246142 + ], + [ + 77.7049628091344, + 12.955228344377399 + ], + [ + 77.704955601929697, + 12.9553280538041 + ], + [ + 77.704933863038704, + 12.9556287732219 + ], + [ + 77.704915487198093, + 12.955873226102 + ], + [ + 77.704903077786895, + 12.956107678205999 + ], + [ + 77.704913052247704, + 12.9564753469775 + ], + [ + 77.704910817495403, + 12.9566116008605 + ], + [ + 77.705269137261297, + 12.9565819062709 + ], + [ + 77.706647345332996, + 12.956481743891599 + ], + [ + 77.707154690522998, + 12.956444870450699 + ], + [ + 77.709044353619703, + 12.9563156829467 + ], + [ + 77.709068504385201, + 12.956313173259099 + ], + [ + 77.709189307053705, + 12.956305141077999 + ], + [ + 77.7092445279836, + 12.9563011788727 + ], + [ + 77.711121219076404, + 12.9561588702023 + ], + [ + 77.7112325466301, + 12.956150428071201 + ], + [ + 77.711246770876301, + 12.956149349491399 + ], + [ + 77.711371014555397, + 12.9561401512924 + ], + [ + 77.711447531205295, + 12.9561343200404 + ], + [ + 77.712417857986196, + 12.956060366606399 + ], + [ + 77.7126025951369, + 12.956046178020401 + ], + [ + 77.712894109345001, + 12.9560237872145 + ], + [ + 77.713520494248201, + 12.955976608771699 + ], + [ + 77.714078431564602, + 12.955934659150399 + ], + [ + 77.714111293787298, + 12.9559321738307 + ], + [ + 77.714730152379303, + 12.955885398023099 + ], + [ + 77.714754279988099, + 12.955883574616401 + ], + [ + 77.714761187141207, + 12.955883502598301 + ], + [ + 77.714771426304694, + 12.955883395838301 + ], + [ + 77.714869343942595, + 12.955882374866601 + ], + [ + 77.714873423539203, + 12.9547535009466 + ], + [ + 77.715041534803703, + 12.954465843894001 + ], + [ + 77.715172288009398, + 12.953898001400599 + ], + [ + 77.715183998555304, + 12.953875002720199 + ], + [ + 77.715263815253394, + 12.9531807266721 + ], + [ + 77.715499171023694, + 12.9515033498331 + ], + [ + 77.715704640346999, + 12.9498072939647 + ], + [ + 77.715805507105699, + 12.949220772442001 + ], + [ + 77.715736394696904, + 12.948503497713499 + ], + [ + 77.715511375204301, + 12.947943939259099 + ], + [ + 77.715346002982699, + 12.947365944823799 + ], + [ + 77.715620584714699, + 12.9472912287063 + ], + [ + 77.716240728490405, + 12.9472221162975 + ], + [ + 77.716817910498406, + 12.947225852103401 + ], + [ + 77.716741326478001, + 12.946530992210199 + ], + [ + 77.716598744136604, + 12.9458345117873 + ], + [ + 77.716592853894298, + 12.9457568945984 + ], + [ + 77.716550780147202, + 12.945202481690201 + ], + [ + 77.716537931997706, + 12.9450531636555 + ], + [ + 77.716533804301505, + 12.945005258402 + ], + [ + 77.716523508307105, + 12.944909311079799 + ], + [ + 77.716622175677401, + 12.9448774265359 + ], + [ + 77.716869893064597, + 12.944288860046001 + ], + [ + 77.716873370686898, + 12.9442791605998 + ], + [ + 77.717120534731805, + 12.944279665786199 + ], + [ + 77.717579123972698, + 12.9443585243661 + ], + [ + 77.717666987581893, + 12.9443736335458 + ], + [ + 77.717866159683098, + 12.944498019550499 + ], + [ + 77.717889735662595, + 12.944598416352401 + ], + [ + 77.717899522922096, + 12.9446400925977 + ], + [ + 77.717907256111303, + 12.944673084641501 + ], + [ + 77.718006732626407, + 12.944674407515899 + ], + [ + 77.718067527409801, + 12.944675216033501 + ], + [ + 77.718239738610194, + 12.944677507330701 + ], + [ + 77.718366545295297, + 12.944683503477799 + ], + [ + 77.718373261670394, + 12.944770250243 + ], + [ + 77.718416167557393, + 12.9448228620333 + ], + [ + 77.718443622909504, + 12.9448344890383 + ], + [ + 77.718590188267896, + 12.944832510084501 + ], + [ + 77.718644510065801, + 12.9448317798294 + ], + [ + 77.718647974061398, + 12.9448953072722 + ], + [ + 77.718650696377495, + 12.9449452225881 + ], + [ + 77.718663373916897, + 12.945177713841501 + ], + [ + 77.718668532441399, + 12.9452723061955 + ], + [ + 77.718671699872203, + 12.945330395828799 + ], + [ + 77.718673815444006, + 12.9454317878563 + ], + [ + 77.718733372772903, + 12.9454415342286 + ], + [ + 77.719012800497595, + 12.9454872640967 + ], + [ + 77.719013963668999, + 12.9454875970399 + ], + [ + 77.719274246731501, + 12.945562065122299 + ], + [ + 77.719623703169404, + 12.945662293543499 + ], + [ + 77.719783658264504, + 12.9457192750318 + ], + [ + 77.720036813119194, + 12.945809456413601 + ], + [ + 77.720371793145205, + 12.945990187133001 + ], + [ + 77.720704412279602, + 12.9462159885455 + ], + [ + 77.721004203244703, + 12.9464688588348 + ], + [ + 77.721268650214697, + 12.9466052167362 + ], + [ + 77.721717586460599, + 12.946797518521199 + ], + [ + 77.721801737343299, + 12.9468248366351 + ], + [ + 77.722155750692295, + 12.9469397580124 + ], + [ + 77.722216891725907, + 12.9469596062851 + ], + [ + 77.722291970936993, + 12.9469315803443 + ], + [ + 77.722304657305997, + 12.946932705250701 + ], + [ + 77.722335666617894, + 12.9469415628964 + ], + [ + 77.722497668200006, + 12.946987836218799 + ], + [ + 77.722689334893204, + 12.9470425826969 + ], + [ + 77.722730492192497, + 12.947054338783699 + ], + [ + 77.722796626773601, + 12.9470732295625 + ], + [ + 77.722885415202498, + 12.947083259272601 + ], + [ + 77.723016742136195, + 12.947125528482401 + ], + [ + 77.723072769878002, + 12.947127333151901 + ], + [ + 77.723128387614494, + 12.9471291240275 + ], + [ + 77.7232194374009, + 12.9471320558428 + ], + [ + 77.723218918602697, + 12.9471096536557 + ], + [ + 77.723215668031301, + 12.9469691705528 + ], + [ + 77.723210420695693, + 12.946600745998399 + ], + [ + 77.723209639222603, + 12.946545859359199 + ], + [ + 77.723208671537407, + 12.946476037764301 + ], + [ + 77.724182729981806, + 12.9464607131773 + ], + [ + 77.724764146339496, + 12.946449523122499 + ], + [ + 77.724900076448407, + 12.946446907301899 + ], + [ + 77.724923312375793, + 12.9465963944516 + ], + [ + 77.724917482553906, + 12.946632841434701 + ], + [ + 77.725070613742005, + 12.9466700477182 + ], + [ + 77.7250798086842, + 12.9465672497636 + ], + [ + 77.725164167805005, + 12.946414248276501 + ], + [ + 77.725453692760595, + 12.9464702853647 + ], + [ + 77.725698388045501, + 12.946528190355799 + ], + [ + 77.725881442533506, + 12.946582359541001 + ], + [ + 77.726736942079498, + 12.946888695623 + ], + [ + 77.7269207592946, + 12.946886689517299 + ], + [ + 77.727592441625504, + 12.947051203178701 + ], + [ + 77.727749345472404, + 12.947195031704901 + ], + [ + 77.728010851883795, + 12.9474042368341 + ], + [ + 77.728369489248095, + 12.9476657432455 + ], + [ + 77.728657146300606, + 12.947736723557201 + ], + [ + 77.728810314341601, + 12.9477666100042 + ], + [ + 77.728989633023701, + 12.947770345810101 + ], + [ + 77.729422986505597, + 12.9477778174218 + ], + [ + 77.729664299735603, + 12.947845400287299 + ], + [ + 77.729665813887607, + 12.9478450619276 + ], + [ + 77.729867547404993, + 12.947904834821699 + ], + [ + 77.730080488339993, + 12.9479571361039 + ], + [ + 77.730330787333799, + 12.9480243806097 + ], + [ + 77.730566143104099, + 12.948065474474401 + ], + [ + 77.730670745668704, + 12.948125247368401 + ], + [ + 77.730808970486095, + 12.948158869621301 + ], + [ + 77.730977081750595, + 12.9481962276801 + ], + [ + 77.7311377214034, + 12.948188756068401 + ], + [ + 77.731201230103295, + 12.9481532659125 + ], + [ + 77.7312553992885, + 12.948125247368401 + ], + [ + 77.731302096861995, + 12.9480860214067 + ], + [ + 77.7313282475032, + 12.9480673423773 + ], + [ + 77.731361869756, + 12.948054267056801 + ], + [ + 77.734681133278301, + 12.943055758792701 + ], + [ + 77.734509461850706, + 12.9428411088284 + ], + [ + 77.734501814596101, + 12.9428353462459 + ], + [ + 77.734173063678895, + 12.942282446976 + ], + [ + 77.734155954104395, + 12.9422597041349 + ], + [ + 77.7340759327261, + 12.9420059973411 + ], + [ + 77.7340198956379, + 12.941187855853901 + ], + [ + 77.733930236296899, + 12.941154233601001 + ], + [ + 77.733661258273699, + 12.9411504977951 + ], + [ + 77.733283941880003, + 12.9411729126304 + ], + [ + 77.733044850303799, + 12.9412027990774 + ], + [ + 77.732816966145293, + 12.9412401571362 + ], + [ + 77.732853070347602, + 12.9407387755359 + ], + [ + 77.732911012579393, + 12.9402655806434 + ], + [ + 77.733058282418398, + 12.939746514817401 + ], + [ + 77.733000340186607, + 12.939304705300399 + ], + [ + 77.733351186385804, + 12.9384943398162 + ], + [ + 77.733401619765203, + 12.938380397736999 + ], + [ + 77.733663126176594, + 12.937905950390499 + ], + [ + 77.733732238585304, + 12.9378797997494 + ], + [ + 77.733762125032399, + 12.9376687267173 + ], + [ + 77.733797615188195, + 12.9375202284337 + ], + [ + 77.733759624848403, + 12.937382954614501 + ], + [ + 77.733967251178797, + 12.9373805403548 + ], + [ + 77.733993808034995, + 12.937042544003001 + ], + [ + 77.733638911865597, + 12.9365005427103 + ], + [ + 77.733465085170394, + 12.936280845081701 + ], + [ + 77.733502506195094, + 12.9359633699369 + ], + [ + 77.7332453875417, + 12.9358625745963 + ], + [ + 77.733101739092206, + 12.9359863054037 + ], + [ + 77.732636994108404, + 12.935977855494899 + ], + [ + 77.7324269535182, + 12.9358686102454 + ], + [ + 77.732146899398202, + 12.9357249617959 + ], + [ + 77.731869259537703, + 12.935753932911799 + ], + [ + 77.730809625405797, + 12.935563509264901 + ], + [ + 77.7303628943082, + 12.935489314543 + ], + [ + 77.730406218186502, + 12.9352113280542 + ], + [ + 77.730412857400495, + 12.9349192026358 + ], + [ + 77.730383886284699, + 12.933459782673999 + ], + [ + 77.730298156054602, + 12.932227493572199 + ], + [ + 77.730192761116896, + 12.9312749429007 + ], + [ + 77.730092364431101, + 12.930370133879601 + ], + [ + 77.728899720161095, + 12.9305994885469 + ], + [ + 77.728899720161095, + 12.9307998720983 + ], + [ + 77.727371493798998, + 12.9312754812505 + ], + [ + 77.72729423749, + 12.931005084169 + ], + [ + 77.725883706286297, + 12.9314378402123 + ], + [ + 77.725438275379801, + 12.931350926864701 + ], + [ + 77.725335669344403, + 12.9313086773207 + ], + [ + 77.725207713582606, + 12.9313497197349 + ], + [ + 77.724932699806104, + 12.9311232040171 + ], + [ + 77.724336832233007, + 12.930778081052001 + ], + [ + 77.723888631036402, + 12.930567651494499 + ], + [ + 77.723353574668906, + 12.930549336607699 + ], + [ + 77.722584387500703, + 12.9303996184589 + ], + [ + 77.721800074611906, + 12.9303250663136 + ], + [ + 77.721376798455793, + 12.9302688127207 + ], + [ + 77.721090725331194, + 12.9301785819403 + ], + [ + 77.720335303043399, + 12.929949838578199 + ], + [ + 77.719894880406301, + 12.929782341411199 + ], + [ + 77.719300263834995, + 12.9295519178969 + ], + [ + 77.718933789384593, + 12.9294625234593 + ], + [ + 77.718567548065394, + 12.929394636706499 + ], + [ + 77.717976893697994, + 12.9295298583296 + ], + [ + 77.717663058908698, + 12.929576150350099 + ], + [ + 77.717328617063103, + 12.929744553653 + ], + [ + 77.716935466530998, + 12.9298920564867 + ], + [ + 77.7161916229349, + 12.930057551508799 + ], + [ + 77.715143035958306, + 12.9304341596201 + ], + [ + 77.7146696789967, + 12.930630497832301 + ], + [ + 77.714232489187296, + 12.930785990105299 + ], + [ + 77.713554082224107, + 12.9309525740215 + ], + [ + 77.713582449775004, + 12.9311070866395 + ], + [ + 77.713374823444596, + 12.9311469219238 + ], + [ + 77.713378444834106, + 12.9312006392011 + ], + [ + 77.713299981395295, + 12.931226592492401 + ], + [ + 77.713223932216195, + 12.9312314210118 + ], + [ + 77.712786951218405, + 12.931370844506899 + ], + [ + 77.7120034526463, + 12.931603773008799 + ], + [ + 77.711747020995205, + 12.9316643527207 + ], + [ + 77.711562417619106, + 12.931708355796101 + ], + [ + 77.7113806498309, + 12.931709464136301 + ], + [ + 77.711108198190104, + 12.931699842876499 + ], + [ + 77.710899000167601, + 12.931642448718099 + ], + [ + 77.710663237533197, + 12.9316281405306 + ], + [ + 77.710532032699902, + 12.9316303774198 + ], + [ + 77.710478918987505, + 12.9314951788791 + ], + [ + 77.711224560400495, + 12.9310071645045 + ], + [ + 77.711570246402502, + 12.930525542239 + ], + [ + 77.712135861850101, + 12.929901489698899 + ], + [ + 77.713410190481198, + 12.9290804508416 + ], + [ + 77.713119261682195, + 12.927864505718301 + ], + [ + 77.713271541909407, + 12.927074175515401 + ], + [ + 77.713655701613803, + 12.9260950033401 + ], + [ + 77.713529573443594, + 12.925889693536 + ], + [ + 77.710572419844993, + 12.9242271303313 + ], + [ + 77.707120786735004, + 12.9271473325411 + ], + [ + 77.707796072945001, + 12.929528160824599 + ], + [ + 77.707826854755595, + 12.929597570789699 + ], + [ + 77.707836511794198, + 12.9297279408111 + ], + [ + 77.707841340313493, + 12.9297798473937 + ], + [ + 77.707833493969602, + 12.929826321892101 + ], + [ + 77.707846772397701, + 12.9298788320396 + ], + [ + 77.707857033001304, + 12.9299434134854 + ], + [ + 77.707863672215296, + 12.9300930975841 + ], + [ + 77.707919200187405, + 12.9304262654166 + ], + [ + 77.707950585562898, + 12.9305904350731 + ], + [ + 77.708008527794703, + 12.930928431424899 + ], + [ + 77.708009721873594, + 12.9312357558297 + ], + [ + 77.707958131924698, + 12.9324389350488 + ], + [ + 77.707484922120699, + 12.9359226114153 + ], + [ + 77.707268143094794, + 12.9375119218906 + ], + [ + 77.707059367650004, + 12.938995759624 + ], + [ + 77.707041823853203, + 12.9391204521779 + ], + [ + 77.706985736404604, + 12.939833626223299 + ], + [ + 77.706944642539895, + 12.9400316239349 + ], + [ + 77.7068475115871, + 12.940894595092599 + ], + [ + 77.7067914744989, + 12.9414960598388 + ], + [ + 77.706439082612704, + 12.943508953158601 + ], + [ + 77.706386402973806, + 12.944768584646701 + ], + [ + 77.706386235430401, + 12.944772601831099 + ], + [ + 77.706385724454805, + 12.944784818786401 + ], + [ + 77.706306745644596, + 12.945573822476399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "293", + "group": "RAMAKRISHNA MATHA (RK)", + "Corporatio": "Central", + "ac_no": "169", + "ac": "Chickpet", + "corporat_1": "1", + "ward_id": "56", + "ward_name": "56 - Devraj Urs Ward", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಿಕ್ಕಪೇಟೆ", + "ward_name_": "ದೇವರಾಜ್ ಅರಸು ವಾರ್ಡ್", + "dig_ward_n": "RAMAKRISHNA MATHA (RK)", + "Assembly": "169 - Chickpet", + "Slno": "56" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.563992376311006, + 12.9486279944669 + ], + [ + 77.563930240801099, + 12.9486319939393 + ], + [ + 77.563823803358204, + 12.948638688019701 + ], + [ + 77.563792822234305, + 12.9486491567811 + ], + [ + 77.563757961727404, + 12.948674344868699 + ], + [ + 77.563658202929403, + 12.9487148527472 + ], + [ + 77.563440828858006, + 12.9487949592331 + ], + [ + 77.563288040155598, + 12.948870487229099 + ], + [ + 77.563205403022494, + 12.9489113369397 + ], + [ + 77.562967295002096, + 12.9490469392991 + ], + [ + 77.562826273404099, + 12.949105877580701 + ], + [ + 77.562771632719105, + 12.949110932389001 + ], + [ + 77.562679309108404, + 12.9490903835111 + ], + [ + 77.562600604845997, + 12.949050502182599 + ], + [ + 77.562520266021494, + 12.9490196714671 + ], + [ + 77.562354211286802, + 12.9489388643889 + ], + [ + 77.561820702761594, + 12.9491608812589 + ], + [ + 77.561634182714798, + 12.9492384404295 + ], + [ + 77.561495059547795, + 12.9492578766421 + ], + [ + 77.561495488968703, + 12.9493561242688 + ], + [ + 77.561603494680298, + 12.9494465806214 + ], + [ + 77.561665134178199, + 12.9495136940225 + ], + [ + 77.561735070612599, + 12.949589839886 + ], + [ + 77.561736715302104, + 12.9495911463735 + ], + [ + 77.561738081388, + 12.949592231543299 + ], + [ + 77.5617532810151, + 12.9496043004246 + ], + [ + 77.561858699609701, + 12.9496880043723 + ], + [ + 77.561877869320298, + 12.9497047556662 + ], + [ + 77.561903993047494, + 12.9497259558533 + ], + [ + 77.561934146351106, + 12.949747116408 + ], + [ + 77.561970044647197, + 12.949767091137501 + ], + [ + 77.562120605055597, + 12.9499090341076 + ], + [ + 77.562214130660806, + 12.950047021569899 + ], + [ + 77.562230629702498, + 12.9501357205547 + ], + [ + 77.5622620438849, + 12.950304600043699 + ], + [ + 77.562272003582706, + 12.9503581438995 + ], + [ + 77.5622720130294, + 12.9503583470843 + ], + [ + 77.562292740559201, + 12.950809668119801 + ], + [ + 77.562195296722507, + 12.950967408838499 + ], + [ + 77.561896868917302, + 12.9514504996855 + ], + [ + 77.561820091983904, + 12.9515991949413 + ], + [ + 77.561793555632207, + 12.9516502762754 + ], + [ + 77.561791038315405, + 12.9521923750161 + ], + [ + 77.561783258747795, + 12.952276021271301 + ], + [ + 77.561762034254699, + 12.9525088692073 + ], + [ + 77.561758888469399, + 12.952547420828701 + ], + [ + 77.561743353579999, + 12.952737804550701 + ], + [ + 77.561733120553896, + 12.9528632083113 + ], + [ + 77.561719339904897, + 12.953032096906 + ], + [ + 77.561691943914795, + 12.9533678424049 + ], + [ + 77.561692261864707, + 12.953367857346599 + ], + [ + 77.561828456187698, + 12.9533743605836 + ], + [ + 77.562015109091803, + 12.9533860762991 + ], + [ + 77.5620746354696, + 12.9533898354229 + ], + [ + 77.562117079122899, + 12.9533925158216 + ], + [ + 77.562219607491798, + 12.9533976163086 + ], + [ + 77.562295721839703, + 12.953409289984799 + ], + [ + 77.562299612954007, + 12.953411918704401 + ], + [ + 77.562306327560606, + 12.9534164548479 + ], + [ + 77.562338143805505, + 12.9534379494429 + ], + [ + 77.562353286576595, + 12.953448223690801 + ], + [ + 77.562358332503607, + 12.953451632475501 + ], + [ + 77.562436589650304, + 12.9535039405579 + ], + [ + 77.562507732846697, + 12.953592457754899 + ], + [ + 77.562586221072294, + 12.953667349002099 + ], + [ + 77.562588546821502, + 12.9536695847573 + ], + [ + 77.562603715664295, + 12.9536789732835 + ], + [ + 77.562660390590807, + 12.953714006255501 + ], + [ + 77.562743736421197, + 12.9537572295774 + ], + [ + 77.562841358307693, + 12.953789019179 + ], + [ + 77.562946440714498, + 12.953818476678199 + ], + [ + 77.563011641643797, + 12.9538325170615 + ], + [ + 77.563036909140905, + 12.9538381282002 + ], + [ + 77.563167440107307, + 12.953867121926301 + ], + [ + 77.5633169400556, + 12.953905176643801 + ], + [ + 77.563371202501003, + 12.953919323691601 + ], + [ + 77.563429046017305, + 12.953945857086699 + ], + [ + 77.563425900012504, + 12.954043862379599 + ], + [ + 77.5634172594349, + 12.9543130027961 + ], + [ + 77.563415328247999, + 12.9545199989347 + ], + [ + 77.563414204317795, + 12.954640428865201 + ], + [ + 77.563413648215203, + 12.954700046136701 + ], + [ + 77.563412524454094, + 12.954820401077701 + ], + [ + 77.563412316963806, + 12.954842702207401 + ], + [ + 77.563410686808496, + 12.954902320113201 + ], + [ + 77.563406236526305, + 12.9550651376804 + ], + [ + 77.563402063034104, + 12.955217825690299 + ], + [ + 77.563399514175003, + 12.9553110765399 + ], + [ + 77.563396566378202, + 12.9554414940516 + ], + [ + 77.563394308101493, + 12.9557271355794 + ], + [ + 77.563381936868595, + 12.956085452136501 + ], + [ + 77.563375336051706, + 12.956276647624099 + ], + [ + 77.563363222086295, + 12.9566275099452 + ], + [ + 77.563357003419497, + 12.956863598883 + ], + [ + 77.563354881941507, + 12.9569867182725 + ], + [ + 77.563356193124307, + 12.956986754150201 + ], + [ + 77.565008753761404, + 12.9570314544767 + ], + [ + 77.565173354119494, + 12.9570357396492 + ], + [ + 77.565296297609905, + 12.957038940835201 + ], + [ + 77.5655955303924, + 12.957046730895099 + ], + [ + 77.565984294474106, + 12.957056850949201 + ], + [ + 77.566001349847497, + 12.957057306246501 + ], + [ + 77.566021087461493, + 12.957057833584599 + ], + [ + 77.566405036028002, + 12.9570680826755 + ], + [ + 77.566458216342397, + 12.957069501805901 + ], + [ + 77.567007950162207, + 12.957084176147299 + ], + [ + 77.567404749478996, + 12.957094766841699 + ], + [ + 77.567412355872094, + 12.9569260470203 + ], + [ + 77.567447736635401, + 12.9561412806981 + ], + [ + 77.567521038131602, + 12.954486059411201 + ], + [ + 77.567530835423099, + 12.9542623582405 + ], + [ + 77.567543345998104, + 12.953966354091399 + ], + [ + 77.567547965646497, + 12.953844221349 + ], + [ + 77.567585933737206, + 12.952840479508501 + ], + [ + 77.566618097980196, + 12.952842983646599 + ], + [ + 77.566387370987798, + 12.950770753232501 + ], + [ + 77.567667571667897, + 12.9506822761573 + ], + [ + 77.567681118104105, + 12.9503241566235 + ], + [ + 77.567755198741295, + 12.948365799217299 + ], + [ + 77.567763257322696, + 12.948152774108801 + ], + [ + 77.567768786309898, + 12.947333262606101 + ], + [ + 77.564477110294106, + 12.947287835662699 + ], + [ + 77.564217335220505, + 12.9472872302903 + ], + [ + 77.564214244718301, + 12.9474399220717 + ], + [ + 77.564219021097898, + 12.9475457473805 + ], + [ + 77.564226464466799, + 12.9477106658452 + ], + [ + 77.564226529957395, + 12.9477121152464 + ], + [ + 77.564231268773597, + 12.948001534782801 + ], + [ + 77.564239395261694, + 12.9485194072595 + ], + [ + 77.564111200750702, + 12.9485940747439 + ], + [ + 77.563992376311006, + 12.9486279944669 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "294", + "group": "Varthur", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "41", + "ward_name": "41 - Varthur", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ವರ್ತೂರ್", + "dig_ward_n": "Varthur", + "Assembly": "174 - Mahadevapura", + "Slno": "41" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.751458562384997, + 12.9262839994123 + ], + [ + 77.751005888699595, + 12.926503697040999 + ], + [ + 77.750387838227695, + 12.9269020498842 + ], + [ + 77.750247811167696, + 12.9270143129581 + ], + [ + 77.749752822869397, + 12.9274254789091 + ], + [ + 77.749562698507404, + 12.9276161168013 + ], + [ + 77.749387570495003, + 12.927791135108899 + ], + [ + 77.749209680039499, + 12.9279612466377 + ], + [ + 77.749125191857104, + 12.9280420404504 + ], + [ + 77.748278077071006, + 12.928816859573599 + ], + [ + 77.7481193394987, + 12.9289882720092 + ], + [ + 77.747105930796593, + 12.929969141388201 + ], + [ + 77.746754927197699, + 12.9309476106432 + ], + [ + 77.746426038132498, + 12.930989391481299 + ], + [ + 77.744697428218998, + 12.931235645966201 + ], + [ + 77.744760198969999, + 12.931349116170001 + ], + [ + 77.744552572639606, + 12.9315881278759 + ], + [ + 77.744528430043104, + 12.931943024045299 + ], + [ + 77.744142148498099, + 12.9322170425162 + ], + [ + 77.743952629115199, + 12.932372762264 + ], + [ + 77.742780506052299, + 12.932936491893599 + ], + [ + 77.740360210747397, + 12.933658355530699 + ], + [ + 77.740123613301094, + 12.933717504892201 + ], + [ + 77.739515219867798, + 12.9334229652142 + ], + [ + 77.739380021327094, + 12.933497807263601 + ], + [ + 77.738901311329698, + 12.9335121589785 + ], + [ + 77.738028652405404, + 12.9336163434114 + ], + [ + 77.736521455382899, + 12.934836773051 + ], + [ + 77.735822261076606, + 12.9350735587798 + ], + [ + 77.735104367476694, + 12.9357122869328 + ], + [ + 77.735087467659099, + 12.935946470119401 + ], + [ + 77.734964340416695, + 12.9361178825549 + ], + [ + 77.734807413539002, + 12.936236181278 + ], + [ + 77.734551502015506, + 12.9363086090677 + ], + [ + 77.734032436189494, + 12.936373794078399 + ], + [ + 77.733622012048002, + 12.936332751664301 + ], + [ + 77.733502506195094, + 12.9359633699369 + ], + [ + 77.733465085170394, + 12.936280845081701 + ], + [ + 77.733638911865597, + 12.9365005427103 + ], + [ + 77.733993808034995, + 12.937042544003001 + ], + [ + 77.733967251178797, + 12.9373805403548 + ], + [ + 77.733759624848403, + 12.937382954614501 + ], + [ + 77.733797615188195, + 12.9375202284337 + ], + [ + 77.733762125032399, + 12.9376687267173 + ], + [ + 77.733732238585304, + 12.9378797997494 + ], + [ + 77.733663126176594, + 12.937905950390499 + ], + [ + 77.733401619765203, + 12.938380397736999 + ], + [ + 77.733351186385804, + 12.9384943398162 + ], + [ + 77.733000340186607, + 12.939304705300399 + ], + [ + 77.733058282418398, + 12.939746514817401 + ], + [ + 77.732911012579393, + 12.9402655806434 + ], + [ + 77.732853070347602, + 12.9407387755359 + ], + [ + 77.732816966145293, + 12.9412401571362 + ], + [ + 77.733044850303799, + 12.9412027990774 + ], + [ + 77.733283941880003, + 12.9411729126304 + ], + [ + 77.733661258273699, + 12.9411504977951 + ], + [ + 77.733930236296899, + 12.941154233601001 + ], + [ + 77.7340198956379, + 12.941187855853901 + ], + [ + 77.7340759327261, + 12.9420059973411 + ], + [ + 77.734155954104395, + 12.9422597041349 + ], + [ + 77.734173063678895, + 12.942282446976 + ], + [ + 77.734501814596101, + 12.9428353462459 + ], + [ + 77.734509461850706, + 12.9428411088284 + ], + [ + 77.734681133278301, + 12.943055758792701 + ], + [ + 77.731361869756, + 12.948054267056801 + ], + [ + 77.731985749337596, + 12.9481364547861 + ], + [ + 77.732450857169397, + 12.9482373215448 + ], + [ + 77.732650722783802, + 12.9483419241093 + ], + [ + 77.732921568709997, + 12.9484913563444 + ], + [ + 77.732988813215798, + 12.948629581161899 + ], + [ + 77.733151320771398, + 12.9488612011263 + ], + [ + 77.733315696230093, + 12.949303894122799 + ], + [ + 77.733556655709194, + 12.949380478143301 + ], + [ + 77.734083404337895, + 12.9495336461843 + ], + [ + 77.734628831996005, + 12.949582211660699 + ], + [ + 77.734953847107406, + 12.949585947466501 + ], + [ + 77.735757045371102, + 12.9502247702716 + ], + [ + 77.736668582005194, + 12.9507440472886 + ], + [ + 77.7372158775663, + 12.9510186290206 + ], + [ + 77.737469912365995, + 12.951119495779199 + ], + [ + 77.737583854445205, + 12.9512334378585 + ], + [ + 77.7376585705628, + 12.9515621887757 + ], + [ + 77.737890190527196, + 12.951823695187199 + ], + [ + 77.738147961132796, + 12.9521076164338 + ], + [ + 77.738629880090997, + 12.9522383696396 + ], + [ + 77.739255627575503, + 12.9521487102985 + ], + [ + 77.739801055233599, + 12.952583931683201 + ], + [ + 77.740133541956695, + 12.9527090811801 + ], + [ + 77.740705120255996, + 12.952879060347501 + ], + [ + 77.741631700205005, + 12.9532081037197 + ], + [ + 77.742769153003394, + 12.953633693134799 + ], + [ + 77.743140865688204, + 12.953844766166901 + ], + [ + 77.743404240002604, + 12.9540894614519 + ], + [ + 77.743777820590296, + 12.9548067361803 + ], + [ + 77.744093496187006, + 12.955659433871901 + ], + [ + 77.744177551819305, + 12.9560031280126 + ], + [ + 77.744332587763196, + 12.9564187364165 + ], + [ + 77.744433454521896, + 12.956688648391101 + ], + [ + 77.744573547242297, + 12.956662497749999 + ], + [ + 77.744667876340699, + 12.956660629847001 + ], + [ + 77.744786488177297, + 12.9566475545265 + ], + [ + 77.744903232111, + 12.956511197611899 + ], + [ + 77.744945987673901, + 12.956400775447101 + ], + [ + 77.744710683938706, + 12.9561019748501 + ], + [ + 77.744453990457799, + 12.9556259770547 + ], + [ + 77.744329208668901, + 12.9553011158501 + ], + [ + 77.744281672561399, + 12.955023160918101 + ], + [ + 77.744174716139895, + 12.954548318704299 + ], + [ + 77.744240078043106, + 12.9543051067813 + ], + [ + 77.744275729961501, + 12.954073476181399 + ], + [ + 77.744192542914206, + 12.9537144484883 + ], + [ + 77.744584714104704, + 12.953627586140099 + ], + [ + 77.745695222956698, + 12.953584193706901 + ], + [ + 77.746765425408199, + 12.9535638880023 + ], + [ + 77.747680492778997, + 12.953621796420199 + ], + [ + 77.7480013601526, + 12.953807100644299 + ], + [ + 77.748298460017594, + 12.9539576610078 + ], + [ + 77.748020762115502, + 12.9554287478589 + ], + [ + 77.747917093502394, + 12.955460502208799 + ], + [ + 77.747921763259995, + 12.9557985926408 + ], + [ + 77.748147779515605, + 12.955802328446699 + ], + [ + 77.748334569809501, + 12.9558471581172 + ], + [ + 77.748383135285906, + 12.955873308758401 + ], + [ + 77.748400167272607, + 12.9558516748132 + ], + [ + 77.748480266238701, + 12.9558807803701 + ], + [ + 77.748599812026796, + 12.955878912467201 + ], + [ + 77.748799677641301, + 12.9558583655348 + ], + [ + 77.748919223429297, + 12.955863969243699 + ], + [ + 77.749173258229007, + 12.9558714408554 + ], + [ + 77.749728025401893, + 12.955873308758299 + ], + [ + 77.750039965192599, + 12.955906931011199 + ], + [ + 77.750187529524794, + 12.955914402623 + ], + [ + 77.750381791430399, + 12.9559256100406 + ], + [ + 77.750478922383195, + 12.955983515031701 + ], + [ + 77.7505611101125, + 12.956050759537501 + ], + [ + 77.750882389417995, + 12.956224474510799 + ], + [ + 77.751351233055701, + 12.956431811737 + ], + [ + 77.751663172846406, + 12.9566391489632 + ], + [ + 77.751840645582305, + 12.956818758973 + ], + [ + 77.752102130037102, + 12.9569735035893 + ], + [ + 77.752316938874998, + 12.957100520989099 + ], + [ + 77.752361768545597, + 12.957132275339101 + ], + [ + 77.752418267035694, + 12.957141872161101 + ], + [ + 77.752425277245493, + 12.957143482756701 + ], + [ + 77.752929993733503, + 12.957362790116299 + ], + [ + 77.753397119327403, + 12.9575972323376 + ], + [ + 77.753452623861804, + 12.9576478165502 + ], + [ + 77.7535217362705, + 12.9576870425119 + ], + [ + 77.7541101256963, + 12.957984039079101 + ], + [ + 77.754511724828106, + 12.958107320673101 + ], + [ + 77.754605119975096, + 12.9581334713142 + ], + [ + 77.754719062054406, + 12.9581484145377 + ], + [ + 77.754864758483606, + 12.9582212627523 + ], + [ + 77.755189773594907, + 12.9583632233757 + ], + [ + 77.755763219797103, + 12.9586172581754 + ], + [ + 77.755991103955694, + 12.9586788989723 + ], + [ + 77.756280628911199, + 12.958826463304501 + ], + [ + 77.756897297553095, + 12.959135365413401 + ], + [ + 77.757250070536401, + 12.9591421389012 + ], + [ + 77.757746932718206, + 12.959461550303701 + ], + [ + 77.758184022005807, + 12.959747339453299 + ], + [ + 77.758441792611407, + 12.9599677520001 + ], + [ + 77.758636054516998, + 12.9600947693999 + ], + [ + 77.759162803145799, + 12.9603581437143 + ], + [ + 77.759222576039804, + 12.9602572769556 + ], + [ + 77.759289820545604, + 12.9600480718264 + ], + [ + 77.759352681463795, + 12.9599404076287 + ], + [ + 77.759935424341194, + 12.960113764983101 + ], + [ + 77.760487494109896, + 12.9603766494685 + ], + [ + 77.760575692530196, + 12.960440075883399 + ], + [ + 77.760600579603306, + 12.9604522326309 + ], + [ + 77.761061073162907, + 12.960658500010499 + ], + [ + 77.761077451021706, + 12.960682038521099 + ], + [ + 77.761094404468494, + 12.960705570923899 + ], + [ + 77.761175655981901, + 12.9608176244358 + ], + [ + 77.761357821779001, + 12.9609455445776 + ], + [ + 77.761383346782495, + 12.960963340237701 + ], + [ + 77.761408871789399, + 12.9609811358945 + ], + [ + 77.761590402627306, + 12.9610514756867 + ], + [ + 77.761810432859093, + 12.961167702119701 + ], + [ + 77.761864198968496, + 12.9611885854987 + ], + [ + 77.761833134407198, + 12.961346996739501 + ], + [ + 77.762118719517801, + 12.9614568813964 + ], + [ + 77.762191066408505, + 12.961492246492 + ], + [ + 77.762279604475196, + 12.961534214638601 + ], + [ + 77.7624500003853, + 12.961586605428099 + ], + [ + 77.762619584025103, + 12.9616175507972 + ], + [ + 77.763004282615697, + 12.961736544607399 + ], + [ + 77.763222452381996, + 12.961788427629299 + ], + [ + 77.763470839353005, + 12.961865960103699 + ], + [ + 77.763574806340998, + 12.961897601533501 + ], + [ + 77.764051537033595, + 12.9620099705483 + ], + [ + 77.764496473577793, + 12.962110255674601 + ], + [ + 77.764514015479904, + 12.962134910673001 + ], + [ + 77.764532132972207, + 12.962159559554999 + ], + [ + 77.764627400000705, + 12.9622895291338 + ], + [ + 77.764734008230704, + 12.9622996880962 + ], + [ + 77.764793191935098, + 12.9623419670988 + ], + [ + 77.764935124900106, + 12.962319005288 + ], + [ + 77.764980922406394, + 12.962295935678799 + ], + [ + 77.765012417539793, + 12.962280922082901 + ], + [ + 77.765312759535405, + 12.962319509433399 + ], + [ + 77.765541666473695, + 12.9623532098051 + ], + [ + 77.765657558916502, + 12.962370044618201 + ], + [ + 77.765923180377001, + 12.9623401220194 + ], + [ + 77.766108932503101, + 12.9623234687613 + ], + [ + 77.766232533773803, + 12.9623086051651 + ], + [ + 77.766377391006898, + 12.9623940099326 + ], + [ + 77.7665345259921, + 12.9623923395208 + ], + [ + 77.766761916784802, + 12.962497191332099 + ], + [ + 77.767043114787299, + 12.9625224303135 + ], + [ + 77.767113303249999, + 12.962362473912799 + ], + [ + 77.767127330949293, + 12.9623295794188 + ], + [ + 77.767147527835704, + 12.962281940383299 + ], + [ + 77.767477399251305, + 12.9623360192645 + ], + [ + 77.767507342174, + 12.962336829989599 + ], + [ + 77.767537910611793, + 12.962342150656101 + ], + [ + 77.767613588289507, + 12.962314246266899 + ], + [ + 77.767728831522305, + 12.962272371283801 + ], + [ + 77.767756347256594, + 12.9622619163046 + ], + [ + 77.767784451056798, + 12.962252584217699 + ], + [ + 77.767913807876297, + 12.9622376586331 + ], + [ + 77.768138624353497, + 12.962213813580799 + ], + [ + 77.768476835070501, + 12.9625534770132 + ], + [ + 77.769905778546601, + 12.9626342987189 + ], + [ + 77.769964771516001, + 12.9626376354591 + ], + [ + 77.770056661744306, + 12.9626428324319 + ], + [ + 77.770157065910993, + 12.9626485114453 + ], + [ + 77.770360260494897, + 12.9626938077812 + ], + [ + 77.770344548377807, + 12.9626631809556 + ], + [ + 77.770332711816195, + 12.962640108867401 + ], + [ + 77.770189055872805, + 12.962360076752301 + ], + [ + 77.770156613178898, + 12.9622968357641 + ], + [ + 77.770110082258, + 12.9622061312129 + ], + [ + 77.769991879022797, + 12.9619757127802 + ], + [ + 77.769952064745596, + 12.961898100735899 + ], + [ + 77.769848745431005, + 12.9618630902651 + ], + [ + 77.769763775770997, + 12.9618342980148 + ], + [ + 77.769740574303498, + 12.9618264340493 + ], + [ + 77.769327507259504, + 12.961686466951001 + ], + [ + 77.769261497238602, + 12.9616782319205 + ], + [ + 77.769078782201404, + 12.961655436888201 + ], + [ + 77.768953130889997, + 12.9616397742325 + ], + [ + 77.768716638064006, + 12.961467162998201 + ], + [ + 77.7685642384685, + 12.961355938958899 + ], + [ + 77.768552052424994, + 12.9613470498564 + ], + [ + 77.768390786983105, + 12.9612294079721 + ], + [ + 77.7681747618348, + 12.960560979620301 + ], + [ + 77.768144685191999, + 12.9604679207013 + ], + [ + 77.767988893853797, + 12.960406805013699 + ], + [ + 77.767495560554096, + 12.9602132728808 + ], + [ + 77.767490870261, + 12.960202240827501 + ], + [ + 77.767461715059397, + 12.9601336871626 + ], + [ + 77.767244965540698, + 12.9596240316133 + ], + [ + 77.7672166557916, + 12.959557458014499 + ], + [ + 77.767203649817503, + 12.9595268707647 + ], + [ + 77.767102262058501, + 12.959487679515 + ], + [ + 77.767072275860002, + 12.9594760889184 + ], + [ + 77.767058229952795, + 12.9594706602338 + ], + [ + 77.767046815620901, + 12.959466247811299 + ], + [ + 77.767046071011094, + 12.9594659603413 + ], + [ + 77.767042924197199, + 12.9594810774287 + ], + [ + 77.767042253471004, + 12.959480808143001 + ], + [ + 77.767016721834395, + 12.9594705070987 + ], + [ + 77.767008736909403, + 12.9595120507514 + ], + [ + 77.767000746437603, + 12.959553592656601 + ], + [ + 77.766990623912704, + 12.9595555611014 + ], + [ + 77.766958968131704, + 12.9595617457038 + ], + [ + 77.7669528049733, + 12.9595629494024 + ], + [ + 77.766879006116298, + 12.9595773676956 + ], + [ + 77.766919544474604, + 12.959425093204199 + ], + [ + 77.766852030753796, + 12.959392417831699 + ], + [ + 77.766705472035, + 12.959321485123599 + ], + [ + 77.766699932783496, + 12.9593188042306 + ], + [ + 77.766666837709096, + 12.9593314312141 + ], + [ + 77.766512971969505, + 12.9593901528191 + ], + [ + 77.7662939638479, + 12.9594682753276 + ], + [ + 77.766241756275207, + 12.959486900184 + ], + [ + 77.766192425713697, + 12.959504498094301 + ], + [ + 77.766037496426094, + 12.9595597647197 + ], + [ + 77.766034113858296, + 12.9595609677553 + ], + [ + 77.765740389948704, + 12.9596654333491 + ], + [ + 77.765533400747501, + 12.959739051910599 + ], + [ + 77.765208747770401, + 12.959846175263699 + ], + [ + 77.765001445452498, + 12.9599145773944 + ], + [ + 77.764955010157195, + 12.9599298995919 + ], + [ + 77.764943252479199, + 12.959876216350599 + ], + [ + 77.764942273786502, + 12.959871746273301 + ], + [ + 77.764864073200201, + 12.9595147054238 + ], + [ + 77.764830301407699, + 12.9595040156251 + ], + [ + 77.764805633614998, + 12.9594962046608 + ], + [ + 77.764799673935698, + 12.9594943176927 + ], + [ + 77.764724319270897, + 12.9594704556041 + ], + [ + 77.764668388115695, + 12.9594527447655 + ], + [ + 77.764476880347601, + 12.958116804873001 + ], + [ + 77.764387412389894, + 12.957401984451 + ], + [ + 77.764387550124496, + 12.957330194196601 + ], + [ + 77.764387570732396, + 12.9573201300693 + ], + [ + 77.764389859671198, + 12.9567339329961 + ], + [ + 77.764390297048706, + 12.956622033873501 + ], + [ + 77.764390392665007, + 12.956597487796699 + ], + [ + 77.764393788343597, + 12.9561284641886 + ], + [ + 77.764418848020696, + 12.956056162708499 + ], + [ + 77.764430195131595, + 12.956023463021101 + ], + [ + 77.7644669554589, + 12.9559737721096 + ], + [ + 77.764496255919894, + 12.955934117248599 + ], + [ + 77.764521632407806, + 12.9558827372542 + ], + [ + 77.764587264658303, + 12.955750041732299 + ], + [ + 77.7646231819148, + 12.955677548179199 + ], + [ + 77.764609093188298, + 12.9554757267731 + ], + [ + 77.764604903091197, + 12.955382492450401 + ], + [ + 77.7646035581013, + 12.955352343914001 + ], + [ + 77.764596237785497, + 12.9551867957836 + ], + [ + 77.764543948312905, + 12.9544992663345 + ], + [ + 77.764545099919502, + 12.953792404733001 + ], + [ + 77.764570002157299, + 12.9529193064651 + ], + [ + 77.764550432862293, + 12.952212364870499 + ], + [ + 77.764600359892299, + 12.952059218629801 + ], + [ + 77.764707868944399, + 12.951574797431 + ], + [ + 77.764960382649406, + 12.951207378024501 + ], + [ + 77.764985120574806, + 12.951171383607401 + ], + [ + 77.764985156303595, + 12.951165023843 + ], + [ + 77.764987284895497, + 12.9508837944761 + ], + [ + 77.764987701807996, + 12.950828769625501 + ], + [ + 77.764989897522597, + 12.9505386770516 + ], + [ + 77.764998543645405, + 12.9505084423225 + ], + [ + 77.7651157317257, + 12.950101315945499 + ], + [ + 77.765213614734193, + 12.9493779094516 + ], + [ + 77.765218193279793, + 12.9493745113303 + ], + [ + 77.765236247466405, + 12.949233787209799 + ], + [ + 77.765283773171006, + 12.9488633480833 + ], + [ + 77.765293535080303, + 12.948787257037401 + ], + [ + 77.765579864160301, + 12.9466197352317 + ], + [ + 77.765580131872795, + 12.946617705336299 + ], + [ + 77.765588364878496, + 12.9465553836033 + ], + [ + 77.765567913075301, + 12.9463112133661 + ], + [ + 77.765527076662096, + 12.945823679709701 + ], + [ + 77.765513246856997, + 12.9456779942527 + ], + [ + 77.765490092304503, + 12.945434075776101 + ], + [ + 77.765490016261296, + 12.945433277143501 + ], + [ + 77.765489133647506, + 12.9454239832012 + ], + [ + 77.765480870693494, + 12.9453369283606 + ], + [ + 77.765477199394596, + 12.945298255474601 + ], + [ + 77.765475172267898, + 12.945274878247499 + ], + [ + 77.765474875674599, + 12.9452714523861 + ], + [ + 77.765465508419695, + 12.9451637728781 + ], + [ + 77.765456360556101, + 12.945058614016601 + ], + [ + 77.765456041113893, + 12.945054953533999 + ], + [ + 77.765455826220901, + 12.945052505102799 + ], + [ + 77.7654555111896, + 12.945048910515901 + ], + [ + 77.765444894969903, + 12.9449274433084 + ], + [ + 77.765442900486605, + 12.9449046863148 + ], + [ + 77.765427247380401, + 12.944772110213 + ], + [ + 77.7654046424922, + 12.944580656200401 + ], + [ + 77.7653673863732, + 12.9442651111648 + ], + [ + 77.765363092166297, + 12.944228740219801 + ], + [ + 77.765347070572403, + 12.944093552885301 + ], + [ + 77.765321624957707, + 12.943880164708601 + ], + [ + 77.765264882323194, + 12.943404315111801 + ], + [ + 77.765257972860297, + 12.9433516028116 + ], + [ + 77.765135240598795, + 12.942388724440301 + ], + [ + 77.765236934816599, + 12.942327051497299 + ], + [ + 77.765282260312105, + 12.9422995639523 + ], + [ + 77.765358422762404, + 12.941590710372701 + ], + [ + 77.765391721890694, + 12.9412807949381 + ], + [ + 77.765438626961995, + 12.940844246586099 + ], + [ + 77.765441667188199, + 12.9408159484812 + ], + [ + 77.765444993893098, + 12.940784983440301 + ], + [ + 77.765485340734799, + 12.9404094762063 + ], + [ + 77.765531783876099, + 12.939977223557801 + ], + [ + 77.765539628812505, + 12.9391500641471 + ], + [ + 77.765539663614405, + 12.9391463719009 + ], + [ + 77.765539756628797, + 12.939136600583399 + ], + [ + 77.765542518130601, + 12.938845427895499 + ], + [ + 77.765542848155704, + 12.9388106311405 + ], + [ + 77.765546809966494, + 12.9383929499181 + ], + [ + 77.765548963997404, + 12.938165854490601 + ], + [ + 77.765547738451403, + 12.938135893459799 + ], + [ + 77.765522948186202, + 12.9375297771119 + ], + [ + 77.765513934245405, + 12.9373093871615 + ], + [ + 77.765508160578094, + 12.9371682085737 + ], + [ + 77.765503414384597, + 12.9370504711337 + ], + [ + 77.765511950300507, + 12.9370308896079 + ], + [ + 77.765514706071997, + 12.937024566930999 + ], + [ + 77.765523219533094, + 12.9370050371327 + ], + [ + 77.765613581724097, + 12.936797739970601 + ], + [ + 77.765995878982196, + 12.935920725037001 + ], + [ + 77.765996580500797, + 12.935919116005399 + ], + [ + 77.766051130699907, + 12.9357939737442 + ], + [ + 77.766051601358399, + 12.9357928928949 + ], + [ + 77.766058950644293, + 12.935776033016699 + ], + [ + 77.766183131190104, + 12.935491152976899 + ], + [ + 77.766407686056496, + 12.934976006426499 + ], + [ + 77.766412947828897, + 12.934963934618599 + ], + [ + 77.766389860273506, + 12.934919719877101 + ], + [ + 77.766321057946897, + 12.9347461349178 + ], + [ + 77.766320483875006, + 12.9347446857567 + ], + [ + 77.766257004524505, + 12.9345845299808 + ], + [ + 77.765798403658707, + 12.9334274848408 + ], + [ + 77.765764082984703, + 12.9333319928074 + ], + [ + 77.765717472874698, + 12.932816886179999 + ], + [ + 77.765713334643294, + 12.932771143373101 + ], + [ + 77.765681147499706, + 12.932415432122699 + ], + [ + 77.765668162671204, + 12.9322719217077 + ], + [ + 77.765650412781099, + 12.9320757556722 + ], + [ + 77.765603183731997, + 12.9318269368208 + ], + [ + 77.765557576398805, + 12.9315807745778 + ], + [ + 77.765551077596101, + 12.931545698826699 + ], + [ + 77.765550831796205, + 12.9315443699358 + ], + [ + 77.7655125342243, + 12.9313376649633 + ], + [ + 77.765497684012402, + 12.9312575098299 + ], + [ + 77.765416364691504, + 12.930993171914499 + ], + [ + 77.765376762815606, + 12.930826280194699 + ], + [ + 77.765238942655998, + 12.930544192891601 + ], + [ + 77.765153697243605, + 12.9303697137866 + ], + [ + 77.765134849000901, + 12.9303311357575 + ], + [ + 77.765098427286304, + 12.930256587620701 + ], + [ + 77.765098355886096, + 12.9302563760967 + ], + [ + 77.764947394186805, + 12.929810477420901 + ], + [ + 77.764945067730196, + 12.9298036052105 + ], + [ + 77.764790298171604, + 12.9293464560537 + ], + [ + 77.764716960178504, + 12.929129834185501 + ], + [ + 77.764629945521705, + 12.9288728133597 + ], + [ + 77.764675562827904, + 12.9288529409831 + ], + [ + 77.764741543486295, + 12.9288241980466 + ], + [ + 77.764835055618605, + 12.9287834616569 + ], + [ + 77.7645988423196, + 12.9287578590724 + ], + [ + 77.764591374494003, + 12.928756599488599 + ], + [ + 77.764590595783602, + 12.928756467726 + ], + [ + 77.763804306253405, + 12.9286237769359 + ], + [ + 77.763796515499195, + 12.9286224620329 + ], + [ + 77.763259683467197, + 12.928531867214399 + ], + [ + 77.763021209399298, + 12.9284916224999 + ], + [ + 77.762353358546306, + 12.9283789151423 + ], + [ + 77.761867537075105, + 12.9282028817131 + ], + [ + 77.760881776034097, + 12.9278332225326 + ], + [ + 77.7604960269733, + 12.927688565536201 + ], + [ + 77.760011173747898, + 12.9275266992019 + ], + [ + 77.759909621333804, + 12.927492896980899 + ], + [ + 77.759314362581307, + 12.9272906043227 + ], + [ + 77.758436118486799, + 12.927020187729401 + ], + [ + 77.758417566043903, + 12.927013271076101 + ], + [ + 77.758390782777894, + 12.9270032870217 + ], + [ + 77.757902849321397, + 12.926799516319599 + ], + [ + 77.757900947177902, + 12.9267987216243 + ], + [ + 77.757868808153006, + 12.9267853262443 + ], + [ + 77.757266584855699, + 12.926535045704201 + ], + [ + 77.757025364980294, + 12.9264347959673 + ], + [ + 77.756996029861995, + 12.926422624653 + ], + [ + 77.756977641870506, + 12.9264149952234 + ], + [ + 77.756655821378999, + 12.926313732283401 + ], + [ + 77.756549204486404, + 12.9262670852483 + ], + [ + 77.756521058583999, + 12.9262547712289 + ], + [ + 77.755380904096199, + 12.9260051222494 + ], + [ + 77.755254768256407, + 12.925973128590201 + ], + [ + 77.7551818943885, + 12.9259546138169 + ], + [ + 77.754719221040403, + 12.925837060664101 + ], + [ + 77.754672186115499, + 12.9258315311146 + ], + [ + 77.754532024294505, + 12.925814936071401 + ], + [ + 77.754322107076504, + 12.925790081927101 + ], + [ + 77.7534995148429, + 12.9256182810281 + ], + [ + 77.752973213211504, + 12.9254921557534 + ], + [ + 77.752372973940794, + 12.925326284857601 + ], + [ + 77.752272492884401, + 12.9252985175952 + ], + [ + 77.752271429653007, + 12.925298892852499 + ], + [ + 77.752264925110097, + 12.925332781107899 + ], + [ + 77.752251043116999, + 12.925373823522101 + ], + [ + 77.752234143299404, + 12.925410037416899 + ], + [ + 77.752206982878306, + 12.925487293725901 + ], + [ + 77.752190686625696, + 12.9255229040558 + ], + [ + 77.752005392197105, + 12.9260253718467 + ], + [ + 77.751876229305495, + 12.926094480029301 + ], + [ + 77.751458562384997, + 12.9262839994123 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "295", + "group": "WHITEFIELD", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "29", + "ward_name": "29 - Whitefield", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ವೈಟ್‌ಫೀಲ್ಡ್", + "dig_ward_n": "WHITEFIELD", + "Assembly": "174 - Mahadevapura", + "Slno": "29" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.743777820590296, + 12.9548067361803 + ], + [ + 77.743404240002604, + 12.9540894614519 + ], + [ + 77.743140865688204, + 12.953844766166901 + ], + [ + 77.742769153003394, + 12.953633693134799 + ], + [ + 77.741631700205005, + 12.9532081037197 + ], + [ + 77.740705120255996, + 12.952879060347501 + ], + [ + 77.740133541956695, + 12.9527090811801 + ], + [ + 77.739801055233599, + 12.952583931683201 + ], + [ + 77.739255627575503, + 12.9521487102985 + ], + [ + 77.738629880090997, + 12.9522383696396 + ], + [ + 77.738147961132796, + 12.9521076164338 + ], + [ + 77.737890190527196, + 12.951823695187199 + ], + [ + 77.7376585705628, + 12.9515621887757 + ], + [ + 77.737047145439107, + 12.951667842425801 + ], + [ + 77.736854624988197, + 12.952341893463799 + ], + [ + 77.736469583635994, + 12.952251556649999 + ], + [ + 77.736134455057794, + 12.9521125774454 + ], + [ + 77.736048890319907, + 12.9523696893232 + ], + [ + 77.735493671056503, + 12.952285067212999 + ], + [ + 77.735501142668298, + 12.9534506386467 + ], + [ + 77.736020419685204, + 12.9536224857171 + ], + [ + 77.735983061626399, + 12.954110008384101 + ], + [ + 77.735983061626499, + 12.9545993989541 + ], + [ + 77.736009212267604, + 12.9548609053655 + ], + [ + 77.735923288732394, + 12.9552456933709 + ], + [ + 77.735945703567694, + 12.9554175404412 + ], + [ + 77.735897138091303, + 12.9556865184644 + ], + [ + 77.735982339628805, + 12.9557561322059 + ], + [ + 77.736194134658504, + 12.955821007476001 + ], + [ + 77.736119418540994, + 12.956323473366499 + ], + [ + 77.736113814832194, + 12.956603658807399 + ], + [ + 77.736171719823304, + 12.956951088754 + ], + [ + 77.7341403218892, + 12.956671065687299 + ], + [ + 77.732414767270797, + 12.956386161871 + ], + [ + 77.731009238432904, + 12.9561564629674 + ], + [ + 77.731819083174798, + 12.958544862382899 + ], + [ + 77.731876769133805, + 12.958663833559299 + ], + [ + 77.732129012400193, + 12.9594589039058 + ], + [ + 77.732257056863403, + 12.959862497275701 + ], + [ + 77.732637343982006, + 12.9610727378207 + ], + [ + 77.732964154116303, + 12.962248227840499 + ], + [ + 77.733029516223795, + 12.9626130340312 + ], + [ + 77.733079270179203, + 12.963223822678 + ], + [ + 77.733123302227099, + 12.9635447861277 + ], + [ + 77.731259135094206, + 12.963731576421599 + ], + [ + 77.730881818700595, + 12.963776406092199 + ], + [ + 77.730646462930295, + 12.9641126286211 + ], + [ + 77.730750028790595, + 12.965538972702999 + ], + [ + 77.730792811074807, + 12.9667202327123 + ], + [ + 77.7309782014988, + 12.967832001678101 + ], + [ + 77.731249156558704, + 12.9684434724924 + ], + [ + 77.731864746437793, + 12.9695285978085 + ], + [ + 77.732016778661801, + 12.969750827819 + ], + [ + 77.732019238571496, + 12.9697544234849 + ], + [ + 77.732081774731398, + 12.970060220437199 + ], + [ + 77.732244572823305, + 12.970363013887001 + ], + [ + 77.732444975438995, + 12.970951986272601 + ], + [ + 77.732906542902398, + 12.970838938691299 + ], + [ + 77.732964015320903, + 12.971022519551401 + ], + [ + 77.733219521369406, + 12.971543653028199 + ], + [ + 77.7335996174765, + 12.9715179298218 + ], + [ + 77.733960122743795, + 12.9719307363713 + ], + [ + 77.7341151586877, + 12.9721137908593 + ], + [ + 77.734260855116901, + 12.9721791674621 + ], + [ + 77.734449513892102, + 12.9727133034062 + ], + [ + 77.734338596890396, + 12.9738000504735 + ], + [ + 77.733578021296694, + 12.975189721407 + ], + [ + 77.733513847672896, + 12.975430596541599 + ], + [ + 77.733609384588306, + 12.9758601935211 + ], + [ + 77.733615688502596, + 12.975962882384099 + ], + [ + 77.733968528306804, + 12.975967274621899 + ], + [ + 77.7340211824839, + 12.976139286921899 + ], + [ + 77.734340374993295, + 12.976109959042899 + ], + [ + 77.734457529528001, + 12.9761888984254 + ], + [ + 77.734569906195802, + 12.976252079523199 + ], + [ + 77.734808872873302, + 12.9763094122697 + ], + [ + 77.735078237037001, + 12.9763562624037 + ], + [ + 77.735616150229504, + 12.9763754447571 + ], + [ + 77.735738366341494, + 12.9763333835979 + ], + [ + 77.735913949217704, + 12.976779812400199 + ], + [ + 77.736021700640705, + 12.976872530957699 + ], + [ + 77.735983061626499, + 12.976924574878 + ], + [ + 77.736128758055699, + 12.977234646765799 + ], + [ + 77.736271652630506, + 12.9775867464698 + ], + [ + 77.736331425524597, + 12.9777137638696 + ], + [ + 77.736422018817095, + 12.9779042899694 + ], + [ + 77.736450037361195, + 12.9779855437472 + ], + [ + 77.736740438107304, + 12.9778959022564 + ], + [ + 77.737005529098596, + 12.977815198272999 + ], + [ + 77.737354526665698, + 12.977721189611801 + ], + [ + 77.737359695022604, + 12.9777200060149 + ], + [ + 77.737570483414302, + 12.977674877715099 + ], + [ + 77.737823132321097, + 12.977614629139399 + ], + [ + 77.737980435892496, + 12.9775745805126 + ], + [ + 77.738119356182693, + 12.977538112948301 + ], + [ + 77.738484495145997, + 12.977446191247999 + ], + [ + 77.738711753695696, + 12.9773805634885 + ], + [ + 77.738797752487201, + 12.977348040638701 + ], + [ + 77.738847059108195, + 12.977329454409499 + ], + [ + 77.739019019471101, + 12.9772610214827 + ], + [ + 77.739186312806297, + 12.977186991771401 + ], + [ + 77.739468838176094, + 12.9770688391684 + ], + [ + 77.739532436523206, + 12.9770410688486 + ], + [ + 77.739726326481801, + 12.976924979203799 + ], + [ + 77.739724742210996, + 12.9768854748752 + ], + [ + 77.739612044281202, + 12.9765829151871 + ], + [ + 77.739624015413796, + 12.9765195553917 + ], + [ + 77.739798865473304, + 12.976452220810501 + ], + [ + 77.740103721421804, + 12.9763756117509 + ], + [ + 77.740459721621207, + 12.9762905590658 + ], + [ + 77.741344583347598, + 12.976029425250999 + ], + [ + 77.741355744840405, + 12.9760260130942 + ], + [ + 77.741356058804996, + 12.976025916740101 + ], + [ + 77.741392212063204, + 12.976015372995899 + ], + [ + 77.742181498446897, + 12.975806057075999 + ], + [ + 77.742505075646307, + 12.975704406282899 + ], + [ + 77.742664679251305, + 12.9756643309147 + ], + [ + 77.742679032802698, + 12.9756607919911 + ], + [ + 77.742815109891794, + 12.975627739736399 + ], + [ + 77.742951149776403, + 12.975591300301099 + ], + [ + 77.743138859852493, + 12.975541894790799 + ], + [ + 77.743190530090203, + 12.975528928769901 + ], + [ + 77.743263510923398, + 12.975516867059699 + ], + [ + 77.743433599357104, + 12.975487972327199 + ], + [ + 77.743561165641793, + 12.975466301209799 + ], + [ + 77.743570926529301, + 12.975463939872901 + ], + [ + 77.743746994110893, + 12.975455306892901 + ], + [ + 77.743908268800197, + 12.975462638274299 + ], + [ + 77.743990781694905, + 12.975479834155299 + ], + [ + 77.744087710051403, + 12.975499136200799 + ], + [ + 77.744251232024098, + 12.975553868713799 + ], + [ + 77.744410997272198, + 12.9756334824649 + ], + [ + 77.744546641417102, + 12.9756659256661 + ], + [ + 77.744635461497793, + 12.975680796404699 + ], + [ + 77.744804695878898, + 12.9756790098259 + ], + [ + 77.7449855047456, + 12.975682746774099 + ], + [ + 77.745155389074398, + 12.975687728109699 + ], + [ + 77.745230047042696, + 12.9756711314767 + ], + [ + 77.745323075472001, + 12.9756498241789 + ], + [ + 77.745578900027596, + 12.9755646935615 + ], + [ + 77.745708520505701, + 12.975520416380199 + ], + [ + 77.745995743788995, + 12.9754112413097 + ], + [ + 77.746155512666704, + 12.9753338996838 + ], + [ + 77.746281751609303, + 12.9751914204759 + ], + [ + 77.746336719279597, + 12.9751117982139 + ], + [ + 77.746395091067399, + 12.9750276233232 + ], + [ + 77.746492578527196, + 12.974835764431299 + ], + [ + 77.746573861590207, + 12.974636172534399 + ], + [ + 77.746653988101798, + 12.9744885345042 + ], + [ + 77.746692363670704, + 12.974523133282 + ], + [ + 77.746716031912896, + 12.9745803566899 + ], + [ + 77.747588342585303, + 12.974472952270901 + ], + [ + 77.748580575397895, + 12.9743089638733 + ], + [ + 77.749034036714306, + 12.974344820007399 + ], + [ + 77.749050529464597, + 12.974483532849501 + ], + [ + 77.749049614034504, + 12.974504996649999 + ], + [ + 77.749267587327296, + 12.974453806265799 + ], + [ + 77.749383397309501, + 12.9744706173922 + ], + [ + 77.749404411217597, + 12.9744678155378 + ], + [ + 77.749437566494706, + 12.9744668815863 + ], + [ + 77.749503410073302, + 12.974468749489301 + ], + [ + 77.749534697436005, + 12.9744659476313 + ], + [ + 77.749714016129701, + 12.9744650136834 + ], + [ + 77.749854108850101, + 12.9743716185364 + ], + [ + 77.749979258346997, + 12.9743137135453 + ], + [ + 77.750106275746802, + 12.9743492037012 + ], + [ + 77.750237028952498, + 12.9745322581892 + ], + [ + 77.750263179593702, + 12.9746835583272 + ], + [ + 77.750197802990797, + 12.9748236510476 + ], + [ + 77.750251972176102, + 12.9749842907004 + ], + [ + 77.750532276714296, + 12.975104710646301 + ], + [ + 77.750608507327001, + 12.975126487466699 + ], + [ + 77.750648374344095, + 12.975139615661501 + ], + [ + 77.7506880605021, + 12.9751524630204 + ], + [ + 77.7506922831449, + 12.9751538302525 + ], + [ + 77.750691777782393, + 12.975152101204801 + ], + [ + 77.750687702337103, + 12.975138157154401 + ], + [ + 77.750685702905201, + 12.9751313166103 + ], + [ + 77.750682333302805, + 12.9751215845481 + ], + [ + 77.750674405900597, + 12.9750986894986 + ], + [ + 77.750625826982201, + 12.974816913596401 + ], + [ + 77.750722732868098, + 12.974804551623 + ], + [ + 77.750742410410396, + 12.974802041762301 + ], + [ + 77.751332554026305, + 12.974655072807501 + ], + [ + 77.751310139191105, + 12.974120852566999 + ], + [ + 77.752296391942707, + 12.9741096451493 + ], + [ + 77.753153759391694, + 12.9744533392901 + ], + [ + 77.754031612245001, + 12.9743824327595 + ], + [ + 77.754225320885595, + 12.974341402761601 + ], + [ + 77.754315079949606, + 12.9746079292649 + ], + [ + 77.754441961768507, + 12.9749032165239 + ], + [ + 77.754704724394998, + 12.9754538976762 + ], + [ + 77.754756691896105, + 12.975419059851999 + ], + [ + 77.754759557566501, + 12.975417900329999 + ], + [ + 77.755573514996797, + 12.975110713633899 + ], + [ + 77.756383923423499, + 12.974760209034301 + ], + [ + 77.755979867952504, + 12.9739727280884 + ], + [ + 77.757642040962494, + 12.973262449941799 + ], + [ + 77.7584297176641, + 12.973053113014601 + ], + [ + 77.758687831729603, + 12.9729845143882 + ], + [ + 77.758765719723897, + 12.972974547350701 + ], + [ + 77.758917015383005, + 12.9729551873813 + ], + [ + 77.759199557745603, + 12.9729357183896 + ], + [ + 77.759598126343207, + 12.9729182029706 + ], + [ + 77.759738117250805, + 12.9729193240016 + ], + [ + 77.759858599271197, + 12.972906756842599 + ], + [ + 77.760187057193605, + 12.9728857155461 + ], + [ + 77.760187347907603, + 12.9728871026759 + ], + [ + 77.760213498548694, + 12.972941271861099 + ], + [ + 77.760381609813294, + 12.972928196540501 + ], + [ + 77.760526627034807, + 12.9728853584388 + ], + [ + 77.760627239049697, + 12.9728805650156 + ], + [ + 77.760774803381906, + 12.972852546471501 + ], + [ + 77.760946650452198, + 12.972770358742199 + ], + [ + 77.7610763246266, + 12.9727026308011 + ], + [ + 77.761079271560902, + 12.9727012463335 + ], + [ + 77.761200685251893, + 12.97265454876 + ], + [ + 77.761309023622402, + 12.972591040060101 + ], + [ + 77.761804017901099, + 12.972396778154399 + ], + [ + 77.762080227692195, + 12.972307773390201 + ], + [ + 77.762099146565504, + 12.9723052509104 + ], + [ + 77.762312087500504, + 12.972273496560501 + ], + [ + 77.762528764241395, + 12.9722473459193 + ], + [ + 77.762586669232505, + 12.9722417422105 + ], + [ + 77.762633366806, + 12.9722361385017 + ], + [ + 77.762603127240894, + 12.971753644944499 + ], + [ + 77.762566261769607, + 12.9715860746206 + ], + [ + 77.762593073021407, + 12.9712710424118 + ], + [ + 77.762613181460296, + 12.9711168777139 + ], + [ + 77.762536099111301, + 12.970708006123701 + ], + [ + 77.762455665355901, + 12.970426487979701 + ], + [ + 77.762438908323503, + 12.9702421606234 + ], + [ + 77.762469070981794, + 12.9698533974722 + ], + [ + 77.762472422388299, + 12.9694713371338 + ], + [ + 77.762489038364805, + 12.9692086510083 + ], + [ + 77.762544141501394, + 12.9687809012357 + ], + [ + 77.762559558956696, + 12.9684960778491 + ], + [ + 77.762623235679797, + 12.9683184533058 + ], + [ + 77.762613181460296, + 12.9679866640646 + ], + [ + 77.762648744065899, + 12.967811459611401 + ], + [ + 77.762672092852597, + 12.9676741687455 + ], + [ + 77.762730931795105, + 12.9675462173943 + ], + [ + 77.7628448738743, + 12.9673846437903 + ], + [ + 77.762907448622698, + 12.967288446789 + ], + [ + 77.762884099836, + 12.9672408152641 + ], + [ + 77.762527330374994, + 12.967227739943599 + ], + [ + 77.762328391962996, + 12.9677025102828 + ], + [ + 77.762352681450395, + 12.9683596891234 + ], + [ + 77.761891061648996, + 12.968628980380901 + ], + [ + 77.761273094191907, + 12.9687864799936 + ], + [ + 77.760804189915504, + 12.9687762314783 + ], + [ + 77.760370836434106, + 12.968940606936799 + ], + [ + 77.759842219902893, + 12.969345941874099 + ], + [ + 77.7594518281891, + 12.970033330154999 + ], + [ + 77.759350961430499, + 12.9701435364282 + ], + [ + 77.758658617091299, + 12.9706949975195 + ], + [ + 77.758050156958404, + 12.9711304335221 + ], + [ + 77.757896364953297, + 12.9711789054384 + ], + [ + 77.757580689356601, + 12.9712256030119 + ], + [ + 77.7571548074866, + 12.971264828973601 + ], + [ + 77.756536295403095, + 12.970856679796 + ], + [ + 77.756486383364404, + 12.9703424942246 + ], + [ + 77.7563437756734, + 12.969265478646401 + ], + [ + 77.756236819002595, + 12.9684247087083 + ], + [ + 77.756040020702798, + 12.968471495884801 + ], + [ + 77.754768077741602, + 12.969005994003201 + ], + [ + 77.754097332231296, + 12.9692827464612 + ], + [ + 77.754073817942199, + 12.9692924487622 + ], + [ + 77.753960233637798, + 12.969335170147501 + ], + [ + 77.753916190317895, + 12.9693517355757 + ], + [ + 77.753667385566303, + 12.9694453158806 + ], + [ + 77.752851159115593, + 12.969667771960999 + ], + [ + 77.752386291821907, + 12.969711674558001 + ], + [ + 77.752573729511198, + 12.9706481589264 + ], + [ + 77.751480731544405, + 12.9707932037711 + ], + [ + 77.750150171466103, + 12.971050020135699 + ], + [ + 77.750112679434196, + 12.970796310027399 + ], + [ + 77.750109248599102, + 12.9707686817951 + ], + [ + 77.750086821021199, + 12.9705867875488 + ], + [ + 77.750071398440994, + 12.9704617064932 + ], + [ + 77.750052354660895, + 12.9703072602973 + ], + [ + 77.750046677540197, + 12.970261218826 + ], + [ + 77.749988378779307, + 12.969839712242299 + ], + [ + 77.749985389985994, + 12.969818105449701 + ], + [ + 77.749901750383302, + 12.969279249379399 + ], + [ + 77.749841488876896, + 12.9689817871591 + ], + [ + 77.749817737145193, + 12.9688634760262 + ], + [ + 77.749805008876294, + 12.968752952503699 + ], + [ + 77.749785315165894, + 12.968584915241699 + ], + [ + 77.749763663538701, + 12.968500456811899 + ], + [ + 77.749598924218702, + 12.967863091215399 + ], + [ + 77.749570054389807, + 12.967750479927901 + ], + [ + 77.749564466286799, + 12.967728777736401 + ], + [ + 77.749556061960106, + 12.9676961343499 + ], + [ + 77.749535110341995, + 12.967614756959 + ], + [ + 77.749505109812304, + 12.9674982335302 + ], + [ + 77.7494134422858, + 12.967198712716 + ], + [ + 77.749310367892605, + 12.9668619189541 + ], + [ + 77.749230077533397, + 12.966599571797 + ], + [ + 77.749222402062202, + 12.966574489696701 + ], + [ + 77.749171326139503, + 12.9664076004902 + ], + [ + 77.749100309253606, + 12.966177005818 + ], + [ + 77.749085363186097, + 12.966128475964 + ], + [ + 77.748992075162704, + 12.965830565386099 + ], + [ + 77.748834792287496, + 12.965328287104199 + ], + [ + 77.748795438486297, + 12.965204494701601 + ], + [ + 77.748729256732503, + 12.964990211659501 + ], + [ + 77.748586525874998, + 12.964528073317499 + ], + [ + 77.748483216042601, + 12.9641892857793 + ], + [ + 77.748459102251601, + 12.9641135187376 + ], + [ + 77.748381854689498, + 12.963870802541001 + ], + [ + 77.748339672157201, + 12.9637515565118 + ], + [ + 77.748326129822303, + 12.963753910900101 + ], + [ + 77.748326628165003, + 12.963722375718501 + ], + [ + 77.748254910567894, + 12.9635026061973 + ], + [ + 77.748166005337893, + 12.9632301668602 + ], + [ + 77.748132663908194, + 12.9631279952231 + ], + [ + 77.747963690338494, + 12.9626599896351 + ], + [ + 77.747854280316602, + 12.9623057385261 + ], + [ + 77.747838749627903, + 12.9622429112987 + ], + [ + 77.747821894638903, + 12.9621747295435 + ], + [ + 77.747785013567196, + 12.962025534237 + ], + [ + 77.7477700092238, + 12.961964838726299 + ], + [ + 77.7477365672883, + 12.9618321579563 + ], + [ + 77.747741767455807, + 12.9618303849137 + ], + [ + 77.747649574948795, + 12.9614553440564 + ], + [ + 77.747632221653106, + 12.9613902524093 + ], + [ + 77.747630320758105, + 12.9613698752155 + ], + [ + 77.747915535674906, + 12.9614046187877 + ], + [ + 77.748212635564897, + 12.9616362425572 + ], + [ + 77.749650597733293, + 12.96249324898 + ], + [ + 77.750545592725203, + 12.963056394565699 + ], + [ + 77.750509780150907, + 12.961795532281901 + ], + [ + 77.750457490965303, + 12.9614758910368 + ], + [ + 77.750329143456895, + 12.9610682334526 + ], + [ + 77.750162767891695, + 12.9606374114282 + ], + [ + 77.749647705575597, + 12.9606009710963 + ], + [ + 77.749606611710902, + 12.9607149131756 + ], + [ + 77.749115353237997, + 12.960643932863899 + ], + [ + 77.749026659046805, + 12.960197323749201 + ], + [ + 77.749007644310893, + 12.9592939845438 + ], + [ + 77.749088455710904, + 12.958325785993599 + ], + [ + 77.748389677745095, + 12.958191442433099 + ], + [ + 77.747305355290294, + 12.958213791140601 + ], + [ + 77.746461340429093, + 12.9585625388811 + ], + [ + 77.746364351048399, + 12.9585895330135 + ], + [ + 77.746222111224398, + 12.958628168803701 + ], + [ + 77.745851080246396, + 12.957821467455901 + ], + [ + 77.745718206229299, + 12.957515735158999 + ], + [ + 77.745458499825602, + 12.9571402026755 + ], + [ + 77.745041418535905, + 12.9567968167065 + ], + [ + 77.744890065085301, + 12.9566956581155 + ], + [ + 77.743876487719703, + 12.9568809988002 + ], + [ + 77.743515380227507, + 12.9569361455305 + ], + [ + 77.743472418459902, + 12.956616734128 + ], + [ + 77.744332587763196, + 12.9564187364165 + ], + [ + 77.744177551819305, + 12.9560031280126 + ], + [ + 77.744093496187006, + 12.955659433871901 + ], + [ + 77.743777820590296, + 12.9548067361803 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "296", + "group": "Kundalahalli", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "30", + "ward_name": "30 - Kundalahalli", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಕುಂದಲಹಳ್ಳಿ", + "dig_ward_n": "Kundalahalli", + "Assembly": "174 - Mahadevapura", + "Slno": "30" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.722730492192497, + 12.947054338783699 + ], + [ + 77.722689334893204, + 12.9470425826969 + ], + [ + 77.722497668200006, + 12.946987836218799 + ], + [ + 77.722335666617894, + 12.9469415628964 + ], + [ + 77.722304657305997, + 12.946932705250701 + ], + [ + 77.722291970936993, + 12.9469315803443 + ], + [ + 77.722216891725907, + 12.9469596062851 + ], + [ + 77.722155750692295, + 12.9469397580124 + ], + [ + 77.721801737343299, + 12.9468248366351 + ], + [ + 77.721717586460599, + 12.946797518521199 + ], + [ + 77.721268650214697, + 12.9466052167362 + ], + [ + 77.721004203244703, + 12.9464688588348 + ], + [ + 77.720704412279602, + 12.9462159885455 + ], + [ + 77.720371793145205, + 12.945990187133001 + ], + [ + 77.720036813119194, + 12.945809456413601 + ], + [ + 77.719783658264504, + 12.9457192750318 + ], + [ + 77.719623703169404, + 12.945662293543499 + ], + [ + 77.719274246731501, + 12.945562065122299 + ], + [ + 77.719013963668999, + 12.9454875970399 + ], + [ + 77.719012800497595, + 12.9454872640967 + ], + [ + 77.718733372772903, + 12.9454415342286 + ], + [ + 77.718673815444006, + 12.9454317878563 + ], + [ + 77.718671699872203, + 12.945330395828799 + ], + [ + 77.718668532441399, + 12.9452723061955 + ], + [ + 77.718663373916897, + 12.945177713841501 + ], + [ + 77.718650696377495, + 12.9449452225881 + ], + [ + 77.718647974061398, + 12.9448953072722 + ], + [ + 77.718644510065801, + 12.9448317798294 + ], + [ + 77.718590188267896, + 12.944832510084501 + ], + [ + 77.718443622909504, + 12.9448344890383 + ], + [ + 77.718416167557393, + 12.9448228620333 + ], + [ + 77.718373261670394, + 12.944770250243 + ], + [ + 77.718366545295297, + 12.944683503477799 + ], + [ + 77.718239738610194, + 12.944677507330701 + ], + [ + 77.718067527409801, + 12.944675216033501 + ], + [ + 77.718006732626407, + 12.944674407515899 + ], + [ + 77.717907256111303, + 12.944673084641501 + ], + [ + 77.717899522922096, + 12.9446400925977 + ], + [ + 77.717889735662595, + 12.944598416352401 + ], + [ + 77.717866159683098, + 12.944498019550499 + ], + [ + 77.717666987581893, + 12.9443736335458 + ], + [ + 77.717579123972698, + 12.9443585243661 + ], + [ + 77.717120534731805, + 12.944279665786199 + ], + [ + 77.716873370686898, + 12.9442791605998 + ], + [ + 77.716869893064597, + 12.944288860046001 + ], + [ + 77.716622175677401, + 12.9448774265359 + ], + [ + 77.716523508307105, + 12.944909311079799 + ], + [ + 77.716533804301505, + 12.945005258402 + ], + [ + 77.716537931997706, + 12.9450531636555 + ], + [ + 77.716550780147202, + 12.945202481690201 + ], + [ + 77.716592853894298, + 12.9457568945984 + ], + [ + 77.716598744136604, + 12.9458345117873 + ], + [ + 77.716741326478001, + 12.946530992210199 + ], + [ + 77.716817910498406, + 12.947225852103401 + ], + [ + 77.716240728490405, + 12.9472221162975 + ], + [ + 77.715620584714699, + 12.9472912287063 + ], + [ + 77.715346002982699, + 12.947365944823799 + ], + [ + 77.715511375204301, + 12.947943939259099 + ], + [ + 77.715736394696904, + 12.948503497713499 + ], + [ + 77.715805507105699, + 12.949220772442001 + ], + [ + 77.715704640346999, + 12.9498072939647 + ], + [ + 77.715499171023694, + 12.9515033498331 + ], + [ + 77.715263815253394, + 12.9531807266721 + ], + [ + 77.715183998555304, + 12.953875002720199 + ], + [ + 77.715172288009398, + 12.953898001400599 + ], + [ + 77.715041534803703, + 12.954465843894001 + ], + [ + 77.714873423539203, + 12.9547535009466 + ], + [ + 77.714869343942595, + 12.955882374866601 + ], + [ + 77.714771426304694, + 12.955883395838301 + ], + [ + 77.714761187141207, + 12.955883502598301 + ], + [ + 77.714844368618699, + 12.956100159731299 + ], + [ + 77.714867306789699, + 12.956159904274299 + ], + [ + 77.714892070500795, + 12.9562244058191 + ], + [ + 77.715025341822397, + 12.9565715234751 + ], + [ + 77.715102035987798, + 12.956771281259099 + ], + [ + 77.715281366924501, + 12.9572383708126 + ], + [ + 77.715391006352306, + 12.9575239369029 + ], + [ + 77.715427035377402, + 12.957617777447799 + ], + [ + 77.715557338302702, + 12.957955741074301 + ], + [ + 77.715632571348806, + 12.958150872328901 + ], + [ + 77.715781942658495, + 12.9585633785903 + ], + [ + 77.715797547800804, + 12.958606473843499 + ], + [ + 77.715877421348694, + 12.9588252686967 + ], + [ + 77.715911722357205, + 12.9589192283022 + ], + [ + 77.715971238945798, + 12.9590822581943 + ], + [ + 77.716028340671201, + 12.9592386726924 + ], + [ + 77.716094976463694, + 12.959444926936101 + ], + [ + 77.716280884880902, + 12.9600185684171 + ], + [ + 77.716372582434204, + 12.9603006956782 + ], + [ + 77.716399394636895, + 12.9603831902295 + ], + [ + 77.716419569070794, + 12.960445261453801 + ], + [ + 77.716420243706693, + 12.960447336645 + ], + [ + 77.716467069987502, + 12.960687387729299 + ], + [ + 77.716490696308995, + 12.960808507707901 + ], + [ + 77.716506193313506, + 12.9608879540679 + ], + [ + 77.716535562148593, + 12.9610350072155 + ], + [ + 77.716636457663299, + 12.9615402073842 + ], + [ + 77.716665076742103, + 12.9616835049352 + ], + [ + 77.716695944176706, + 12.9618217906845 + ], + [ + 77.716713039747901, + 12.961898379267801 + ], + [ + 77.716725975198898, + 12.9619563308138 + ], + [ + 77.716761891606794, + 12.962117232602999 + ], + [ + 77.716786433992596, + 12.9622093362297 + ], + [ + 77.716830304991305, + 12.9623739752369 + ], + [ + 77.716917970334293, + 12.962548084879799 + ], + [ + 77.716923251762793, + 12.9625567362678 + ], + [ + 77.716931902514801, + 12.962570904493401 + ], + [ + 77.717030190258797, + 12.9627318912615 + ], + [ + 77.717076216136107, + 12.9628072761894 + ], + [ + 77.717126019088099, + 12.962879747195499 + ], + [ + 77.717187934966105, + 12.9629698435175 + ], + [ + 77.7172031459842, + 12.962992268538899 + ], + [ + 77.717285565375406, + 12.963111311901301 + ], + [ + 77.717328887100507, + 12.9631738838189 + ], + [ + 77.717445725857502, + 12.9633782101319 + ], + [ + 77.7176462941827, + 12.963728960039001 + ], + [ + 77.717691542290694, + 12.9638080900797 + ], + [ + 77.717849701149603, + 12.9641301079188 + ], + [ + 77.717960307030197, + 12.9643553040531 + ], + [ + 77.718000937402607, + 12.964438028795101 + ], + [ + 77.718008259845803, + 12.9644529380337 + ], + [ + 77.718030035771605, + 12.964496749036501 + ], + [ + 77.718181131895307, + 12.9647638179453 + ], + [ + 77.718192620104602, + 12.964784123648901 + ], + [ + 77.718265630947499, + 12.9649348098595 + ], + [ + 77.718278053049104, + 12.9649604482293 + ], + [ + 77.718351029160502, + 12.9651110633929 + ], + [ + 77.718367722288306, + 12.965331648557299 + ], + [ + 77.718377243181706, + 12.965457451178599 + ], + [ + 77.718377709217194, + 12.965500355569199 + ], + [ + 77.718376486631797, + 12.965528057010101 + ], + [ + 77.718371820633905, + 12.965633737515899 + ], + [ + 77.718371726764502, + 12.965635864989199 + ], + [ + 77.718362988509199, + 12.9658337932643 + ], + [ + 77.718360152797104, + 12.965898014239899 + ], + [ + 77.718345267740702, + 12.965952010490099 + ], + [ + 77.718322406264093, + 12.966034944973901 + ], + [ + 77.718305918118503, + 12.9660947574988 + ], + [ + 77.718294112536398, + 12.966137585945001 + ], + [ + 77.718292324221594, + 12.966144071732201 + ], + [ + 77.718291474372094, + 12.966147153817699 + ], + [ + 77.718281877162795, + 12.966167473835201 + ], + [ + 77.718273715189198, + 12.9661847571421 + ], + [ + 77.718255196072903, + 12.966223969147199 + ], + [ + 77.718254380328005, + 12.966225696750399 + ], + [ + 77.718250948939698, + 12.966232960327201 + ], + [ + 77.718246573969097, + 12.9662422238488 + ], + [ + 77.718245281019804, + 12.966244961869499 + ], + [ + 77.718229838510297, + 12.9662776592701 + ], + [ + 77.718220383561402, + 12.9662976787909 + ], + [ + 77.718218924946697, + 12.966300768140099 + ], + [ + 77.718215604316796, + 12.966307798397899 + ], + [ + 77.718156388625999, + 12.9664331791337 + ], + [ + 77.718145161718596, + 12.966456951627499 + ], + [ + 77.717950078086901, + 12.966675794436901 + ], + [ + 77.717750512907799, + 12.9668529038918 + ], + [ + 77.717681525990002, + 12.966914600886 + ], + [ + 77.717501871647897, + 12.9670169755735 + ], + [ + 77.717211773993398, + 12.967180350879101 + ], + [ + 77.7169351457229, + 12.967311967881701 + ], + [ + 77.716829254879102, + 12.967349594522 + ], + [ + 77.716755074843405, + 12.9673759539725 + ], + [ + 77.716510754846595, + 12.9674609363173 + ], + [ + 77.716481921345505, + 12.967471002652401 + ], + [ + 77.716374031969494, + 12.967508668067399 + ], + [ + 77.716410767869604, + 12.967506857186599 + ], + [ + 77.7164298988274, + 12.967705454033201 + ], + [ + 77.716597540459205, + 12.9694456913448 + ], + [ + 77.716843010740703, + 12.9714030318206 + ], + [ + 77.717329715903801, + 12.9713498185573 + ], + [ + 77.717566939576997, + 12.9724911072529 + ], + [ + 77.717600561829897, + 12.972601313526299 + ], + [ + 77.717890086785403, + 12.9726311999733 + ], + [ + 77.717950149405198, + 12.9732605424259 + ], + [ + 77.718261530282305, + 12.977290205077001 + ], + [ + 77.718281296536304, + 12.977288984836701 + ], + [ + 77.718398666445594, + 12.9772821116161 + ], + [ + 77.718527549206598, + 12.9772751179525 + ], + [ + 77.719196113673505, + 12.9771845657969 + ], + [ + 77.720087168378498, + 12.9770657128421 + ], + [ + 77.720386096904704, + 12.977025321762699 + ], + [ + 77.721337899199199, + 12.976934058741 + ], + [ + 77.721482249977498, + 12.9769201266155 + ], + [ + 77.722731961928204, + 12.9768008977757 + ], + [ + 77.723109800968601, + 12.9767641940002 + ], + [ + 77.723914469239801, + 12.9766959174988 + ], + [ + 77.724754727747296, + 12.976618232095401 + ], + [ + 77.725646147711998, + 12.9765356797555 + ], + [ + 77.725937182224897, + 12.9765087267249 + ], + [ + 77.727138852253503, + 12.976419339879399 + ], + [ + 77.727084329442206, + 12.9750095622706 + ], + [ + 77.727078600864203, + 12.974853795096401 + ], + [ + 77.727054461688297, + 12.9742239641179 + ], + [ + 77.727047018663598, + 12.974069344092401 + ], + [ + 77.726996964792804, + 12.9732274983759 + ], + [ + 77.726967322605503, + 12.972726451859399 + ], + [ + 77.726883379178702, + 12.971838664783499 + ], + [ + 77.726860598224405, + 12.9715972583928 + ], + [ + 77.726852103141496, + 12.971501890811499 + ], + [ + 77.728008983980601, + 12.971354488314701 + ], + [ + 77.7303589465469, + 12.9709494640079 + ], + [ + 77.731012565904805, + 12.9707062677707 + ], + [ + 77.731523577066, + 12.9703356832878 + ], + [ + 77.731820676954797, + 12.970069325088399 + ], + [ + 77.732016778661801, + 12.969750827819 + ], + [ + 77.731864746437793, + 12.9695285978085 + ], + [ + 77.731249156558704, + 12.9684434724924 + ], + [ + 77.7309782014988, + 12.967832001678101 + ], + [ + 77.730792811074807, + 12.9667202327123 + ], + [ + 77.730750028790595, + 12.965538972702999 + ], + [ + 77.730646462930295, + 12.9641126286211 + ], + [ + 77.730881818700595, + 12.963776406092199 + ], + [ + 77.731259135094206, + 12.963731576421599 + ], + [ + 77.733123302227099, + 12.9635447861277 + ], + [ + 77.733079270179203, + 12.963223822678 + ], + [ + 77.733029516223795, + 12.9626130340312 + ], + [ + 77.732964154116303, + 12.962248227840499 + ], + [ + 77.732637343982006, + 12.9610727378207 + ], + [ + 77.732257056863403, + 12.959862497275701 + ], + [ + 77.732129012400193, + 12.9594589039058 + ], + [ + 77.731876769133805, + 12.958663833559299 + ], + [ + 77.731819083174798, + 12.958544862382899 + ], + [ + 77.731009238432904, + 12.9561564629674 + ], + [ + 77.732414767270797, + 12.956386161871 + ], + [ + 77.7341403218892, + 12.956671065687299 + ], + [ + 77.736171719823304, + 12.956951088754 + ], + [ + 77.736113814832194, + 12.956603658807399 + ], + [ + 77.736119418540994, + 12.956323473366499 + ], + [ + 77.736194134658504, + 12.955821007476001 + ], + [ + 77.735982339628805, + 12.9557561322059 + ], + [ + 77.735897138091303, + 12.9556865184644 + ], + [ + 77.735945703567694, + 12.9554175404412 + ], + [ + 77.735923288732394, + 12.9552456933709 + ], + [ + 77.736009212267604, + 12.9548609053655 + ], + [ + 77.735983061626499, + 12.9545993989541 + ], + [ + 77.735983061626399, + 12.954110008384101 + ], + [ + 77.736020419685204, + 12.9536224857171 + ], + [ + 77.735501142668298, + 12.9534506386467 + ], + [ + 77.735493671056503, + 12.952285067212999 + ], + [ + 77.736048890319907, + 12.9523696893232 + ], + [ + 77.736134455057794, + 12.9521125774454 + ], + [ + 77.736469583635994, + 12.952251556649999 + ], + [ + 77.736854624988197, + 12.952341893463799 + ], + [ + 77.737047145439107, + 12.951667842425801 + ], + [ + 77.7376585705628, + 12.9515621887757 + ], + [ + 77.737583854445205, + 12.9512334378585 + ], + [ + 77.737469912365995, + 12.951119495779199 + ], + [ + 77.7372158775663, + 12.9510186290206 + ], + [ + 77.736668582005194, + 12.9507440472886 + ], + [ + 77.735757045371102, + 12.9502247702716 + ], + [ + 77.734953847107406, + 12.949585947466501 + ], + [ + 77.734628831996005, + 12.949582211660699 + ], + [ + 77.734083404337895, + 12.9495336461843 + ], + [ + 77.733556655709194, + 12.949380478143301 + ], + [ + 77.733315696230093, + 12.949303894122799 + ], + [ + 77.733151320771398, + 12.9488612011263 + ], + [ + 77.732988813215798, + 12.948629581161899 + ], + [ + 77.732921568709997, + 12.9484913563444 + ], + [ + 77.732650722783802, + 12.9483419241093 + ], + [ + 77.732450857169397, + 12.9482373215448 + ], + [ + 77.731985749337596, + 12.9481364547861 + ], + [ + 77.731361869756, + 12.948054267056801 + ], + [ + 77.7313282475032, + 12.9480673423773 + ], + [ + 77.731302096861995, + 12.9480860214067 + ], + [ + 77.7312553992885, + 12.948125247368401 + ], + [ + 77.731201230103295, + 12.9481532659125 + ], + [ + 77.7311377214034, + 12.948188756068401 + ], + [ + 77.730977081750595, + 12.9481962276801 + ], + [ + 77.730808970486095, + 12.948158869621301 + ], + [ + 77.730670745668704, + 12.948125247368401 + ], + [ + 77.730566143104099, + 12.948065474474401 + ], + [ + 77.730330787333799, + 12.9480243806097 + ], + [ + 77.730080488339993, + 12.9479571361039 + ], + [ + 77.729867547404993, + 12.947904834821699 + ], + [ + 77.729665813887607, + 12.9478450619276 + ], + [ + 77.729664299735603, + 12.947845400287299 + ], + [ + 77.729422986505597, + 12.9477778174218 + ], + [ + 77.728989633023701, + 12.947770345810101 + ], + [ + 77.728810314341601, + 12.9477666100042 + ], + [ + 77.728657146300606, + 12.947736723557201 + ], + [ + 77.728369489248095, + 12.9476657432455 + ], + [ + 77.728010851883795, + 12.9474042368341 + ], + [ + 77.727749345472404, + 12.947195031704901 + ], + [ + 77.727592441625504, + 12.947051203178701 + ], + [ + 77.7269207592946, + 12.946886689517299 + ], + [ + 77.726736942079498, + 12.946888695623 + ], + [ + 77.725881442533506, + 12.946582359541001 + ], + [ + 77.725698388045501, + 12.946528190355799 + ], + [ + 77.725453692760595, + 12.9464702853647 + ], + [ + 77.725164167805005, + 12.946414248276501 + ], + [ + 77.7250798086842, + 12.9465672497636 + ], + [ + 77.725070613742005, + 12.9466700477182 + ], + [ + 77.724917482553906, + 12.946632841434701 + ], + [ + 77.724923312375793, + 12.9465963944516 + ], + [ + 77.724900076448407, + 12.946446907301899 + ], + [ + 77.724764146339496, + 12.946449523122499 + ], + [ + 77.724182729981806, + 12.9464607131773 + ], + [ + 77.723208671537407, + 12.946476037764301 + ], + [ + 77.723209639222603, + 12.946545859359199 + ], + [ + 77.723210420695693, + 12.946600745998399 + ], + [ + 77.723215668031301, + 12.9469691705528 + ], + [ + 77.723218918602697, + 12.9471096536557 + ], + [ + 77.7232194374009, + 12.9471320558428 + ], + [ + 77.723128387614494, + 12.9471291240275 + ], + [ + 77.723072769878002, + 12.947127333151901 + ], + [ + 77.723016742136195, + 12.947125528482401 + ], + [ + 77.722885415202498, + 12.947083259272601 + ], + [ + 77.722796626773601, + 12.9470732295625 + ], + [ + 77.722730492192497, + 12.947054338783699 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "297", + "group": "SILVERJUBILEE F PARK", + "Corporatio": "Central", + "ac_no": "169", + "ac": "Chickpet", + "corporat_1": "1", + "ward_id": "42", + "ward_name": "42 - Silver Jubilee Park Ward", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಿಕ್ಕಪೇಟೆ", + "ward_name_": "ಸಿಲ್ವರ್ ಜುಬಿಲಿ ಪಾರ್ಕ್ ವಾರ್ಡ್", + "dig_ward_n": "SILVERJUBILEE F PARK", + "Assembly": "169 - Chickpet", + "Slno": "42" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.5896444530986, + 12.956809889258899 + ], + [ + 77.588736374733799, + 12.9570719273646 + ], + [ + 77.588559391672504, + 12.9564860524028 + ], + [ + 77.588318379551893, + 12.9565376978647 + ], + [ + 77.588319825940999, + 12.9565427609485 + ], + [ + 77.587853305901106, + 12.9566738979064 + ], + [ + 77.588069225120705, + 12.957409419770199 + ], + [ + 77.587384957161007, + 12.9576002090774 + ], + [ + 77.587499505826798, + 12.9580148599313 + ], + [ + 77.588137212270993, + 12.9578188704734 + ], + [ + 77.588377635618698, + 12.958599470700801 + ], + [ + 77.586775244056398, + 12.9590828519434 + ], + [ + 77.585907179543895, + 12.959308247919299 + ], + [ + 77.585053185921694, + 12.9596086159621 + ], + [ + 77.584873213391106, + 12.959711954096999 + ], + [ + 77.584554816012499, + 12.9585883234534 + ], + [ + 77.584460300244203, + 12.958564340329801 + ], + [ + 77.5832612662999, + 12.958909904419899 + ], + [ + 77.582883280802093, + 12.9590925692033 + ], + [ + 77.5828065240173, + 12.958968704036799 + ], + [ + 77.582373175174496, + 12.9591778618381 + ], + [ + 77.583161963599593, + 12.960622483391001 + ], + [ + 77.582361097924306, + 12.9610447566541 + ], + [ + 77.581526616775506, + 12.9614484118857 + ], + [ + 77.5812482789662, + 12.961498289903201 + ], + [ + 77.580487794879701, + 12.961785975326499 + ], + [ + 77.579684006921298, + 12.9619255652104 + ], + [ + 77.5797797581304, + 12.962624568933 + ], + [ + 77.579832085319197, + 12.9636035075081 + ], + [ + 77.582041485878506, + 12.963374869949 + ], + [ + 77.583031929986205, + 12.9633906789124 + ], + [ + 77.584059795418895, + 12.963570440131599 + ], + [ + 77.585233620815998, + 12.9638562143775 + ], + [ + 77.585233907218395, + 12.963856295552301 + ], + [ + 77.584429191546207, + 12.962011614022799 + ], + [ + 77.584153851885105, + 12.961495998222301 + ], + [ + 77.584152861419696, + 12.9614941036007 + ], + [ + 77.585845024370002, + 12.9612666335104 + ], + [ + 77.5876678243296, + 12.961091575460101 + ], + [ + 77.588247793668401, + 12.9610443229481 + ], + [ + 77.587860332903205, + 12.960539615935 + ], + [ + 77.587191006054795, + 12.9595382484105 + ], + [ + 77.588521115940196, + 12.959251480756301 + ], + [ + 77.589398438668596, + 12.959051741248199 + ], + [ + 77.589654187886595, + 12.9598677061157 + ], + [ + 77.589973430239795, + 12.960863930383001 + ], + [ + 77.590687435372999, + 12.9606557224936 + ], + [ + 77.590740152521406, + 12.960852511954499 + ], + [ + 77.591388648952602, + 12.960681551506401 + ], + [ + 77.591556044418098, + 12.9614117811856 + ], + [ + 77.590969111768601, + 12.9615686635073 + ], + [ + 77.591109793831606, + 12.962082769898601 + ], + [ + 77.591132380846304, + 12.9622758155512 + ], + [ + 77.591151809907004, + 12.962441869923801 + ], + [ + 77.591162498646696, + 12.962533223874599 + ], + [ + 77.591168152717103, + 12.962581543933201 + ], + [ + 77.591168237315301, + 12.962581529539399 + ], + [ + 77.591652942942204, + 12.9625202421384 + ], + [ + 77.591850727551503, + 12.9624945573328 + ], + [ + 77.592176406819505, + 12.9624212974798 + ], + [ + 77.592254399966905, + 12.9624035929805 + ], + [ + 77.592434449423095, + 12.962362722368299 + ], + [ + 77.592441769284605, + 12.9623610603121 + ], + [ + 77.592872619868999, + 12.962269812613499 + ], + [ + 77.592977577353295, + 12.962255148569501 + ], + [ + 77.593051867615898, + 12.962244769662201 + ], + [ + 77.59324687662, + 12.9622175241731 + ], + [ + 77.593367871406997, + 12.9622005409748 + ], + [ + 77.593515350703797, + 12.962179840880101 + ], + [ + 77.593686230306702, + 12.9621691036863 + ], + [ + 77.593690123659499, + 12.962169064887201 + ], + [ + 77.593747109190005, + 12.962168496993399 + ], + [ + 77.593885986828198, + 12.962167112945 + ], + [ + 77.593899802839999, + 12.962166975251201 + ], + [ + 77.593965524590402, + 12.962172712047201 + ], + [ + 77.593968155044706, + 12.962172941502899 + ], + [ + 77.593979186736107, + 12.962173904836099 + ], + [ + 77.593989722387903, + 12.9621748243271 + ], + [ + 77.594132030697693, + 12.9621872465829 + ], + [ + 77.594454837213405, + 12.962225812783201 + ], + [ + 77.594523393396301, + 12.962245771962101 + ], + [ + 77.594817916457501, + 12.9623315160343 + ], + [ + 77.594818642682398, + 12.9623317274251 + ], + [ + 77.594817389477996, + 12.9623309756136 + ], + [ + 77.594723762799802, + 12.9622349298287 + ], + [ + 77.594543375095, + 12.9620503946675 + ], + [ + 77.594535233844894, + 12.9620425707683 + ], + [ + 77.594516026203607, + 12.962022434953001 + ], + [ + 77.594300251361503, + 12.9614520897797 + ], + [ + 77.594205830241904, + 12.9612025109929 + ], + [ + 77.594205695560802, + 12.961201603479401 + ], + [ + 77.594057211727105, + 12.9608091331077 + ], + [ + 77.594007100903198, + 12.960676849175099 + ], + [ + 77.5939738288249, + 12.9605890153857 + ], + [ + 77.593792126582002, + 12.9601093445754 + ], + [ + 77.593733016321394, + 12.959960866682501 + ], + [ + 77.593507455797806, + 12.959392829252099 + ], + [ + 77.593373938899504, + 12.9590565878696 + ], + [ + 77.593136633347996, + 12.958458968136901 + ], + [ + 77.593126456393307, + 12.958433339645 + ], + [ + 77.5929544888035, + 12.958000262047401 + ], + [ + 77.592810201074101, + 12.957613323509401 + ], + [ + 77.592663739511806, + 12.957220554891 + ], + [ + 77.592586533918507, + 12.9570137763068 + ], + [ + 77.592576059346499, + 12.9569857231998 + ], + [ + 77.592428071142095, + 12.956589366597299 + ], + [ + 77.592225655648605, + 12.956046209257799 + ], + [ + 77.592225552384406, + 12.956045932930699 + ], + [ + 77.592232977451701, + 12.9560402125304 + ], + [ + 77.592238016800295, + 12.956036453752899 + ], + [ + 77.592238316622201, + 12.956036230329399 + ], + [ + 77.592238935458397, + 12.956035768836401 + ], + [ + 77.5922457837856, + 12.9560306612871 + ], + [ + 77.592288636102793, + 12.955998702011099 + ], + [ + 77.592164650142607, + 12.9557086818384 + ], + [ + 77.592143077176502, + 12.9556523522856 + ], + [ + 77.591437042800294, + 12.9538087861881 + ], + [ + 77.589984125206897, + 12.9542981870884 + ], + [ + 77.589990615014599, + 12.954320413894401 + ], + [ + 77.589194089547703, + 12.9546124730979 + ], + [ + 77.589554158534696, + 12.9558376230831 + ], + [ + 77.589563312830904, + 12.955959680366799 + ], + [ + 77.589508387053201, + 12.956020709008699 + ], + [ + 77.589459564139801, + 12.956060377625899 + ], + [ + 77.5896444530986, + 12.956809889258899 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "298", + "group": "Ashwath Nagar", + "Corporatio": "East", + "ac_no": "174", + "ac": "Mahadevapura", + "corporat_1": "3", + "ward_id": "37", + "ward_name": "37 - Ashwath Nagar", + "corporat_2": "ಪೂರ್ವ", + "ac_kn": "ಮಹದೇವಪುರ", + "ward_name_": "ಅಶ್ವಥ್ ನಗರ", + "dig_ward_n": "Ashwath Nagar", + "Assembly": "174 - Mahadevapura", + "Slno": "37" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.694467499967303, + 12.956282815441 + ], + [ + 77.6940553047028, + 12.956199055613499 + ], + [ + 77.694039434192106, + 12.9561958484526 + ], + [ + 77.692357171760406, + 12.9559140080266 + ], + [ + 77.691713596701703, + 12.9557975569754 + ], + [ + 77.691460122719107, + 12.9557516914861 + ], + [ + 77.6905979549649, + 12.955595687104299 + ], + [ + 77.689877712469098, + 12.9554645739378 + ], + [ + 77.689635278084296, + 12.955420441698299 + ], + [ + 77.689518729029999, + 12.9558247757 + ], + [ + 77.689449730609695, + 12.956735964456399 + ], + [ + 77.689374535534299, + 12.9577289941709 + ], + [ + 77.689331742517894, + 12.958435226955499 + ], + [ + 77.689237125830999, + 12.9599967502116 + ], + [ + 77.689262593807896, + 12.960170386342099 + ], + [ + 77.689498622066793, + 12.9608669321804 + ], + [ + 77.689545771008895, + 12.961129552222401 + ], + [ + 77.689548831058602, + 12.9611464588356 + ], + [ + 77.689593777953903, + 12.9611505112334 + ], + [ + 77.6895939728049, + 12.961152186782501 + ], + [ + 77.689602025219202, + 12.9612215665896 + ], + [ + 77.689602345180404, + 12.9612315437421 + ], + [ + 77.689608947082903, + 12.9614371752323 + ], + [ + 77.689546715015197, + 12.961592520867599 + ], + [ + 77.689568390202695, + 12.9617345780402 + ], + [ + 77.689347955738597, + 12.9621682163403 + ], + [ + 77.688865482134204, + 12.9623245165083 + ], + [ + 77.6884046236964, + 12.9670121377704 + ], + [ + 77.687793750465602, + 12.967274781693799 + ], + [ + 77.687791060716904, + 12.9673459501333 + ], + [ + 77.687781628424801, + 12.967593346033899 + ], + [ + 77.687777563499395, + 12.9676972759642 + ], + [ + 77.687770319986498, + 12.968094835064599 + ], + [ + 77.687743252917997, + 12.968093985499401 + ], + [ + 77.687746302796299, + 12.968324314186701 + ], + [ + 77.687746189990506, + 12.9685817767462 + ], + [ + 77.687746275877601, + 12.968696955954901 + ], + [ + 77.687746470938507, + 12.9688222969842 + ], + [ + 77.687770108513007, + 12.968825440402499 + ], + [ + 77.687781209904301, + 12.9688942079099 + ], + [ + 77.687788627009994, + 12.968941558368799 + ], + [ + 77.687805406487698, + 12.969056565082001 + ], + [ + 77.687805539914706, + 12.9690689850853 + ], + [ + 77.687789016192099, + 12.969084964851501 + ], + [ + 77.687785598745407, + 12.9690883878125 + ], + [ + 77.687770765549402, + 12.9691009624605 + ], + [ + 77.687738160308399, + 12.969120496037499 + ], + [ + 77.687721527413103, + 12.969126313979199 + ], + [ + 77.687697459721505, + 12.9691367256055 + ], + [ + 77.687629189077001, + 12.9691588861093 + ], + [ + 77.687593608585701, + 12.9691694166783 + ], + [ + 77.687560930545999, + 12.9691821756889 + ], + [ + 77.6875237686708, + 12.9692062731894 + ], + [ + 77.687502258218103, + 12.969240371932401 + ], + [ + 77.687484813624707, + 12.969277816318099 + ], + [ + 77.687471289350398, + 12.969305057249001 + ], + [ + 77.687449215372297, + 12.9693402910292 + ], + [ + 77.6874287227689, + 12.9693619578686 + ], + [ + 77.687399607688107, + 12.969384843006001 + ], + [ + 77.687370407704904, + 12.9693998245 + ], + [ + 77.687364663430898, + 12.9694010130625 + ], + [ + 77.687358343516607, + 12.969402207571999 + ], + [ + 77.687337656852606, + 12.969405808940699 + ], + [ + 77.687310626016995, + 12.9694083466329 + ], + [ + 77.687262308617704, + 12.969412233449001 + ], + [ + 77.687250795811906, + 12.969412352386099 + ], + [ + 77.687182906637503, + 12.9694164413796 + ], + [ + 77.687166237322202, + 12.9694188720167 + ], + [ + 77.687128857080296, + 12.9694226458221 + ], + [ + 77.687120234601693, + 12.969423864112301 + ], + [ + 77.687116217246, + 12.96942503483 + ], + [ + 77.687046110383903, + 12.9694370512183 + ], + [ + 77.687000168285707, + 12.969447688753499 + ], + [ + 77.686948591039197, + 12.969469676663101 + ], + [ + 77.686910841283407, + 12.969492650949601 + ], + [ + 77.686894268965304, + 12.969504114306901 + ], + [ + 77.686836529407799, + 12.969541974894399 + ], + [ + 77.6868216355019, + 12.969548904042 + ], + [ + 77.686808468517498, + 12.9695558153512 + ], + [ + 77.686781534654202, + 12.969567385729601 + ], + [ + 77.686735126000201, + 12.969588191000099 + ], + [ + 77.686717905273298, + 12.9695928857416 + ], + [ + 77.686705277548, + 12.9695964038242 + ], + [ + 77.686680022095999, + 12.9696034399878 + ], + [ + 77.686612241954606, + 12.9696176906746 + ], + [ + 77.686600753383004, + 12.9696200677693 + ], + [ + 77.686597299536501, + 12.969620103442301 + ], + [ + 77.686549288483405, + 12.969630394603101 + ], + [ + 77.686536414950794, + 12.969633153672699 + ], + [ + 77.686499695161501, + 12.9696448250969 + ], + [ + 77.686477893542303, + 12.9696518255712 + ], + [ + 77.686442888545699, + 12.9696623500603 + ], + [ + 77.6864308607, + 12.9696681203707 + ], + [ + 77.686390159904505, + 12.969684349767199 + ], + [ + 77.686372448385995, + 12.9696969540809 + ], + [ + 77.6863514527505, + 12.969725401358801 + ], + [ + 77.686329929964103, + 12.969758370951 + ], + [ + 77.686315314871706, + 12.969791269203199 + ], + [ + 77.686314856709799, + 12.969794667008401 + ], + [ + 77.6863110492028, + 12.9698229313539 + ], + [ + 77.686308425592699, + 12.969846672021999 + ], + [ + 77.686307821923904, + 12.9698535899724 + ], + [ + 77.686305862601202, + 12.9698760581529 + ], + [ + 77.686307777684107, + 12.9699471790928 + ], + [ + 77.686308535183699, + 12.9699641095358 + ], + [ + 77.686315036980204, + 12.969979851435999 + ], + [ + 77.686329240356301, + 12.9700158397154 + ], + [ + 77.6863558232033, + 12.9700788013647 + ], + [ + 77.686369868977906, + 12.970100111437301 + ], + [ + 77.686390343815702, + 12.9701303888504 + ], + [ + 77.686460306001194, + 12.970212099153301 + ], + [ + 77.686442218841194, + 12.9702174315824 + ], + [ + 77.686623737682595, + 12.9705220091884 + ], + [ + 77.686726473188202, + 12.9706943921604 + ], + [ + 77.686806313980696, + 12.971062161504801 + ], + [ + 77.6891990976453, + 12.9708137304139 + ], + [ + 77.689185701997999, + 12.9702530864068 + ], + [ + 77.690736119758199, + 12.970228113802699 + ], + [ + 77.690789787228496, + 12.9698122496015 + ], + [ + 77.692349485954594, + 12.9697099439704 + ], + [ + 77.692333021819394, + 12.969380655914801 + ], + [ + 77.691059910595996, + 12.9694597218987 + ], + [ + 77.690893892289907, + 12.969400616246499 + ], + [ + 77.689486213944704, + 12.969415210177599 + ], + [ + 77.689048192337196, + 12.969477102851201 + ], + [ + 77.688943531864993, + 12.9692630692214 + ], + [ + 77.688896971212202, + 12.9690125819 + ], + [ + 77.688893503790695, + 12.9686899439179 + ], + [ + 77.688876030762003, + 12.968424814852 + ], + [ + 77.688720351474601, + 12.968225648482701 + ], + [ + 77.688722807850496, + 12.9677738798409 + ], + [ + 77.688737498200297, + 12.9670996972471 + ], + [ + 77.689727714176996, + 12.967128357915801 + ], + [ + 77.689890221732696, + 12.9675673151064 + ], + [ + 77.690573874208297, + 12.9674384298036 + ], + [ + 77.690654194034593, + 12.9676326917092 + ], + [ + 77.691301746446698, + 12.967589460957299 + ], + [ + 77.691406958919004, + 12.9676551065445 + ], + [ + 77.691513429386504, + 12.967940895694101 + ], + [ + 77.691666597427499, + 12.9679240845677 + ], + [ + 77.691844048206704, + 12.967953971014699 + ], + [ + 77.692127969453395, + 12.9681015353469 + ], + [ + 77.692266528228203, + 12.9682391664109 + ], + [ + 77.692442711098494, + 12.9682565712908 + ], + [ + 77.692622963732106, + 12.9683042028157 + ], + [ + 77.692709821218799, + 12.968353702243601 + ], + [ + 77.692774263870206, + 12.9683854565935 + ], + [ + 77.692919176211802, + 12.9684188441183 + ], + [ + 77.693137953043504, + 12.968366386240699 + ], + [ + 77.6933744359999, + 12.968290444263401 + ], + [ + 77.693350700372207, + 12.968180120286201 + ], + [ + 77.693362019348001, + 12.9680336481929 + ], + [ + 77.693189522163493, + 12.967404428512999 + ], + [ + 77.692986446670204, + 12.9666512367099 + ], + [ + 77.692696264036002, + 12.965956309992 + ], + [ + 77.692496688825202, + 12.965528144368401 + ], + [ + 77.691968974706398, + 12.9645010502144 + ], + [ + 77.691818652985006, + 12.9641201777248 + ], + [ + 77.6917587291465, + 12.963986947849 + ], + [ + 77.691640836776998, + 12.963902121236799 + ], + [ + 77.690341673814999, + 12.963657416665001 + ], + [ + 77.690195053927397, + 12.9636206900032 + ], + [ + 77.690174839886296, + 12.9635539735651 + ], + [ + 77.690619947350797, + 12.961282365890501 + ], + [ + 77.690628103711205, + 12.9612834008494 + ], + [ + 77.694169587365494, + 12.9618907580755 + ], + [ + 77.694285397347699, + 12.9611846907647 + ], + [ + 77.694452799679894, + 12.9612278550341 + ], + [ + 77.694949798971194, + 12.961447461237601 + ], + [ + 77.695264342206997, + 12.961586445810701 + ], + [ + 77.696274195475794, + 12.962077355161799 + ], + [ + 77.697403559059794, + 12.962760115879499 + ], + [ + 77.698096681168096, + 12.963080401184801 + ], + [ + 77.698385444298395, + 12.963131045626801 + ], + [ + 77.699892841969998, + 12.9634523249323 + ], + [ + 77.700087113396904, + 12.963480951103699 + ], + [ + 77.700723734465001, + 12.9639531282251 + ], + [ + 77.701332517905101, + 12.9644594684803 + ], + [ + 77.701425197567502, + 12.964832273315 + ], + [ + 77.701502192318401, + 12.965138617793301 + ], + [ + 77.701553216666895, + 12.965332311333 + ], + [ + 77.701629697165203, + 12.9656443070718 + ], + [ + 77.701733790330906, + 12.966061032088501 + ], + [ + 77.701778120295103, + 12.966167846235001 + ], + [ + 77.701823896808193, + 12.966248673630099 + ], + [ + 77.701892874412096, + 12.9662389236785 + ], + [ + 77.702025073333502, + 12.9662194835043 + ], + [ + 77.702183489808604, + 12.966176431668901 + ], + [ + 77.702159371750298, + 12.965905089454701 + ], + [ + 77.702131092044496, + 12.9656418312853 + ], + [ + 77.702096411310094, + 12.9653189877478 + ], + [ + 77.702086987230004, + 12.9652312596792 + ], + [ + 77.702081301829907, + 12.965178331914 + ], + [ + 77.7020783533018, + 12.965153583263 + ], + [ + 77.7020546810177, + 12.9649548857812 + ], + [ + 77.701865208378507, + 12.9633645232748 + ], + [ + 77.701821022313894, + 12.9630853727682 + ], + [ + 77.701814493283393, + 12.963044126097801 + ], + [ + 77.701781938076905, + 12.962838455500799 + ], + [ + 77.701781592117698, + 12.9628362711445 + ], + [ + 77.701722743060202, + 12.962464483745199 + ], + [ + 77.701716356424299, + 12.9624241362406 + ], + [ + 77.701671728079603, + 12.962142189792999 + ], + [ + 77.701992645966399, + 12.9620971381055 + ], + [ + 77.702664190683393, + 12.961996948886799 + ], + [ + 77.702853601047096, + 12.9619340328265 + ], + [ + 77.703130542453593, + 12.961852281190801 + ], + [ + 77.703699508861902, + 12.9617316440025 + ], + [ + 77.704060091923495, + 12.9616095853505 + ], + [ + 77.704137330476001, + 12.9613147943101 + ], + [ + 77.704199127591394, + 12.960801763139299 + ], + [ + 77.704288354979099, + 12.9600610082882 + ], + [ + 77.704294786690397, + 12.9600169025373 + ], + [ + 77.704336611089104, + 12.959731908775201 + ], + [ + 77.704399328122705, + 12.959462506803501 + ], + [ + 77.704442945131603, + 12.9593434873057 + ], + [ + 77.704472186517606, + 12.9591726738161 + ], + [ + 77.704502349828303, + 12.958927323339299 + ], + [ + 77.704542469185697, + 12.9586976782739 + ], + [ + 77.704544707013895, + 12.958674532556399 + ], + [ + 77.704564217870796, + 12.958472740885201 + ], + [ + 77.704591393359706, + 12.9582172586327 + ], + [ + 77.704625168793896, + 12.9579865502856 + ], + [ + 77.704643939433595, + 12.957805682768401 + ], + [ + 77.704694490289995, + 12.9576357771153 + ], + [ + 77.704776650567098, + 12.9574610262506 + ], + [ + 77.704821847701496, + 12.957328439920699 + ], + [ + 77.704873383749202, + 12.957036570107499 + ], + [ + 77.704907685802695, + 12.956801339502499 + ], + [ + 77.704909971159395, + 12.9566398397287 + ], + [ + 77.704892139675295, + 12.956641154187601 + ], + [ + 77.704733370913701, + 12.956651837248099 + ], + [ + 77.704546985379807, + 12.956663936299201 + ], + [ + 77.703186488387004, + 12.9567525929605 + ], + [ + 77.702837063832504, + 12.956782937695699 + ], + [ + 77.702772970500604, + 12.956788503816499 + ], + [ + 77.702506024287203, + 12.956803696151299 + ], + [ + 77.702025343018803, + 12.956857241091299 + ], + [ + 77.701955755791403, + 12.9568636093103 + ], + [ + 77.701694062802105, + 12.9568855215495 + ], + [ + 77.701530137267994, + 12.9568985146282 + ], + [ + 77.701423272192898, + 12.956906313808799 + ], + [ + 77.701277617260402, + 12.9569169436593 + ], + [ + 77.701140304302797, + 12.9569267921948 + ], + [ + 77.701142585382698, + 12.9569409296773 + ], + [ + 77.701088430387799, + 12.9569446298208 + ], + [ + 77.700989784502596, + 12.9569513688255 + ], + [ + 77.700986702109006, + 12.9569515796699 + ], + [ + 77.700986033672805, + 12.9569407579678 + ], + [ + 77.700984714819299, + 12.9569194188106 + ], + [ + 77.700984609061294, + 12.9569177260984 + ], + [ + 77.7006953494123, + 12.956945570279199 + ], + [ + 77.700395151268793, + 12.9569735257988 + ], + [ + 77.700351453951598, + 12.9569784958585 + ], + [ + 77.699990229281298, + 12.957005955582099 + ], + [ + 77.699936158860297, + 12.9570099039427 + ], + [ + 77.699496221086505, + 12.9570517297648 + ], + [ + 77.699449646597699, + 12.9570567295111 + ], + [ + 77.699435414892406, + 12.9570581625635 + ], + [ + 77.699365204064193, + 12.957065234878099 + ], + [ + 77.699262181541201, + 12.957075611309 + ], + [ + 77.699009331266296, + 12.957063553006201 + ], + [ + 77.698803694700203, + 12.957052134242501 + ], + [ + 77.698752137967006, + 12.957044814811301 + ], + [ + 77.698751804951698, + 12.9570447676747 + ], + [ + 77.698506563784903, + 12.956997677835 + ], + [ + 77.698428183160502, + 12.956982627112099 + ], + [ + 77.698153959295794, + 12.956927389923701 + ], + [ + 77.698094611939496, + 12.956915434612499 + ], + [ + 77.698061288881405, + 12.95690872194 + ], + [ + 77.698043926735494, + 12.9569052242587 + ], + [ + 77.697835437991401, + 12.9568632290762 + ], + [ + 77.697809721094799, + 12.9568580491589 + ], + [ + 77.697703181423094, + 12.956836923054601 + ], + [ + 77.697696073054303, + 12.956835513380399 + ], + [ + 77.697555418327596, + 12.956817774206099 + ], + [ + 77.697524286941899, + 12.956813580827101 + ], + [ + 77.697222231340106, + 12.9567760578079 + ], + [ + 77.696995676578993, + 12.9567467869048 + ], + [ + 77.696670820172301, + 12.9566922712738 + ], + [ + 77.696632357575297, + 12.956685816703001 + ], + [ + 77.695797844091899, + 12.9565457715888 + ], + [ + 77.695684437481503, + 12.9565271674425 + ], + [ + 77.695655401872301, + 12.956522403782699 + ], + [ + 77.695268858298505, + 12.9564439732015 + ], + [ + 77.695057824940307, + 12.956401795097999 + ], + [ + 77.695027133243997, + 12.9563956609306 + ], + [ + 77.694630438086193, + 12.956315799579301 + ], + [ + 77.6945736737283, + 12.95630437134 + ], + [ + 77.694490648277693, + 12.9562875146023 + ], + [ + 77.694467499967303, + 12.956282815441 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "299", + "group": "VENKAT REDDY NAGARA", + "Corporatio": "Central", + "ac_no": "169", + "ac": "Chickpet", + "corporat_1": "1", + "ward_id": "61", + "ward_name": "61 - Venkat Reddy Nagara", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಿಕ್ಕಪೇಟೆ", + "ward_name_": "ವೆಂಕಟ್ ರೆಡ್ಡಿ ನಗರ", + "dig_ward_n": "VENKAT REDDY NAGARA", + "Assembly": "169 - Chickpet", + "Slno": "61" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.589827518749303, + 12.9457609964282 + ], + [ + 77.589830358271996, + 12.945768615907699 + ], + [ + 77.588171261208402, + 12.9457817520889 + ], + [ + 77.587999594351501, + 12.9461591660127 + ], + [ + 77.588685966143998, + 12.9462291403336 + ], + [ + 77.589046580560506, + 12.946251531322099 + ], + [ + 77.5895598024848, + 12.946310326383401 + ], + [ + 77.589867763621001, + 12.9464079029412 + ], + [ + 77.590023096549501, + 12.946507205421099 + ], + [ + 77.590145342539302, + 12.946618926409799 + ], + [ + 77.5901756276442, + 12.946650748921799 + ], + [ + 77.590188993438403, + 12.946664793717201 + ], + [ + 77.590199471523505, + 12.946675982538601 + ], + [ + 77.590377011813601, + 12.9468650689501 + ], + [ + 77.590508361942696, + 12.947005178284201 + ], + [ + 77.590594138977295, + 12.947096674914301 + ], + [ + 77.590611030770603, + 12.947115705028001 + ], + [ + 77.590813016796901, + 12.947330521809301 + ], + [ + 77.5908902111874, + 12.947368646303101 + ], + [ + 77.591025959211805, + 12.947435687540599 + ], + [ + 77.591279219562907, + 12.9475427106706 + ], + [ + 77.591521496325896, + 12.947645325576699 + ], + [ + 77.591542899897405, + 12.9476552763547 + ], + [ + 77.592063598770096, + 12.9479041883001 + ], + [ + 77.5935022630091, + 12.948739101301999 + ], + [ + 77.593597275492499, + 12.9485744075791 + ], + [ + 77.593719439245604, + 12.948363142421799 + ], + [ + 77.593858386683806, + 12.948091564778 + ], + [ + 77.59385881643, + 12.948090723917501 + ], + [ + 77.593875734879404, + 12.9480566766176 + ], + [ + 77.594007947052702, + 12.947759484929 + ], + [ + 77.594042829961595, + 12.9476812162521 + ], + [ + 77.594096428272294, + 12.9475756581495 + ], + [ + 77.594175982588396, + 12.9474180898006 + ], + [ + 77.593749952649205, + 12.9471436265297 + ], + [ + 77.593389816432307, + 12.9469457917012 + ], + [ + 77.593215990684996, + 12.946797895761501 + ], + [ + 77.593101379630099, + 12.946648211544099 + ], + [ + 77.594227253181899, + 12.946046891704 + ], + [ + 77.594737206064806, + 12.9457895143544 + ], + [ + 77.595231793135994, + 12.9453986465138 + ], + [ + 77.594755635193593, + 12.944793843879699 + ], + [ + 77.594650635672295, + 12.9447017994415 + ], + [ + 77.594563739269802, + 12.9445472917076 + ], + [ + 77.594532289538705, + 12.944451991484399 + ], + [ + 77.5945276502148, + 12.944350069945299 + ], + [ + 77.594228191384602, + 12.9443029091727 + ], + [ + 77.593512742927601, + 12.9442001131842 + ], + [ + 77.593512543729702, + 12.9441901385529 + ], + [ + 77.592205090165294, + 12.944236459696 + ], + [ + 77.592224924473896, + 12.9443447855353 + ], + [ + 77.5918938440918, + 12.944433277066 + ], + [ + 77.591849598326505, + 12.9442761283133 + ], + [ + 77.591848072610404, + 12.9440793109433 + ], + [ + 77.591648203808404, + 12.9434705502408 + ], + [ + 77.591770261092094, + 12.9433988415866 + ], + [ + 77.591698659503393, + 12.943229713733 + ], + [ + 77.591695076764694, + 12.94323142178 + ], + [ + 77.591695882434806, + 12.943222621383301 + ], + [ + 77.591737839626106, + 12.9432050756488 + ], + [ + 77.591621122348499, + 12.942954858217201 + ], + [ + 77.5915555165586, + 12.9429807953899 + ], + [ + 77.591311401991106, + 12.9424773090947 + ], + [ + 77.590921244176599, + 12.9426933810701 + ], + [ + 77.590921244176599, + 12.9426933810701 + ], + [ + 77.590090285254902, + 12.943153246626901 + ], + [ + 77.590542059674704, + 12.943337812944799 + ], + [ + 77.590775494229803, + 12.943720767672399 + ], + [ + 77.590391013786203, + 12.9439008021658 + ], + [ + 77.590532905378495, + 12.9442212025356 + ], + [ + 77.590455093860101, + 12.9442608711528 + ], + [ + 77.590812111415005, + 12.9450756035215 + ], + [ + 77.590231057366793, + 12.9452748228284 + ], + [ + 77.590469206733502, + 12.9458430386928 + ], + [ + 77.589827518749303, + 12.9457609964282 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "300", + "group": "VRISABHAVATHI NAGAR", + "Corporatio": "West", + "ac_no": "156", + "ac": "Mahalakshmi Layout", + "corporat_1": "5", + "ward_id": "62", + "ward_name": "62 - Vrishabhavathi Nagar", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಮಹಾಲಕ್ಷ್ಮಿ ಲೇಔಟ್", + "ward_name_": "ವೃಷಭಾವತಿ ನಗರ", + "dig_ward_n": "VRISABHAVATHI NAGAR", + "Assembly": "156 - Mahalakshmi Layout", + "Slno": "62" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.530885970807503, + 12.9890445996481 + ], + [ + 77.5307948303182, + 12.9887906077763 + ], + [ + 77.530766826326797, + 12.988712567443701 + ], + [ + 77.530759135579999, + 12.988692314195401 + ], + [ + 77.530703758563106, + 12.988547582225999 + ], + [ + 77.530623096928394, + 12.9883367670609 + ], + [ + 77.5306013308535, + 12.988306535613701 + ], + [ + 77.530502786957499, + 12.988169666874199 + ], + [ + 77.5304338445778, + 12.9881063001315 + ], + [ + 77.530411839016494, + 12.9880860751668 + ], + [ + 77.530402182336402, + 12.988077198625801 + ], + [ + 77.530383636203695, + 12.9880601518144 + ], + [ + 77.5303795716043, + 12.988056803374301 + ], + [ + 77.530344312360796, + 12.9880103016415 + ], + [ + 77.530343054575496, + 12.988008643367699 + ], + [ + 77.530301368198707, + 12.987953665487201 + ], + [ + 77.530224423244306, + 12.9878042122309 + ], + [ + 77.530206174034603, + 12.9877805472675 + ], + [ + 77.530177745310297, + 12.9877436822935 + ], + [ + 77.530158923076101, + 12.987714088244299 + ], + [ + 77.530106359671194, + 12.9876314431681 + ], + [ + 77.530066723906202, + 12.9875679724716 + ], + [ + 77.530046074447299, + 12.987534906720001 + ], + [ + 77.530037038250896, + 12.9875117680711 + ], + [ + 77.529948535581198, + 12.9872851422978 + ], + [ + 77.5299290305216, + 12.9872603665128 + ], + [ + 77.529923023794595, + 12.987252736433501 + ], + [ + 77.529915175672002, + 12.9872427680223 + ], + [ + 77.529904379242794, + 12.987229053602199 + ], + [ + 77.529890184633899, + 12.9872110231905 + ], + [ + 77.529843539249697, + 12.9871517728171 + ], + [ + 77.529703126039493, + 12.9869595677938 + ], + [ + 77.529698505267604, + 12.9869532423821 + ], + [ + 77.529677194237806, + 12.986924070677199 + ], + [ + 77.529623991913397, + 12.986851246377199 + ], + [ + 77.529591326626203, + 12.9868070215269 + ], + [ + 77.529517154379405, + 12.986706601185199 + ], + [ + 77.529437178826996, + 12.986598962769699 + ], + [ + 77.529262246956606, + 12.986382702314099 + ], + [ + 77.529109125623094, + 12.9861756263349 + ], + [ + 77.529106372355699, + 12.986171902907 + ], + [ + 77.529105678970296, + 12.9861680587435 + ], + [ + 77.529099661912198, + 12.9861346998618 + ], + [ + 77.529099508423201, + 12.9861338258881 + ], + [ + 77.529084998096195, + 12.986051271112901 + ], + [ + 77.529079607748997, + 12.9859169316001 + ], + [ + 77.5290855338488, + 12.985819750301401 + ], + [ + 77.529086006737003, + 12.985809581599201 + ], + [ + 77.529116218678197, + 12.985551797013599 + ], + [ + 77.529117831638104, + 12.9855404878702 + ], + [ + 77.529114696817999, + 12.9855077801087 + ], + [ + 77.5290974260556, + 12.9853275819081 + ], + [ + 77.529096822423497, + 12.9853212824277 + ], + [ + 77.529094871544501, + 12.9853009262025 + ], + [ + 77.529090148600304, + 12.9852516451515 + ], + [ + 77.5290250991508, + 12.984968812814 + ], + [ + 77.529021567048403, + 12.984957081228201 + ], + [ + 77.528937453676804, + 12.984677715798499 + ], + [ + 77.528904741126496, + 12.984569066860599 + ], + [ + 77.528868936151298, + 12.984409918417599 + ], + [ + 77.528794097627795, + 12.984077269571401 + ], + [ + 77.528762346389499, + 12.9839361376012 + ], + [ + 77.528740949984496, + 12.9838410327215 + ], + [ + 77.528738937688701, + 12.983832088919 + ], + [ + 77.528738327664797, + 12.983828706820599 + ], + [ + 77.528726710647007, + 12.9838308126697 + ], + [ + 77.528665909290893, + 12.9838418342914 + ], + [ + 77.528651836124396, + 12.9838478245887 + ], + [ + 77.528643016292605, + 12.983851578783501 + ], + [ + 77.528637212318102, + 12.983854049346199 + ], + [ + 77.528522002426598, + 12.9839030898223 + ], + [ + 77.528473648627397, + 12.9839510659718 + ], + [ + 77.528398929617794, + 12.9840252008779 + ], + [ + 77.528398542033699, + 12.984025585432001 + ], + [ + 77.528393675823295, + 12.9840304139735 + ], + [ + 77.528381761572504, + 12.984042234426299 + ], + [ + 77.528220516766595, + 12.9842109463039 + ], + [ + 77.528213397821602, + 12.984220219275899 + ], + [ + 77.528074038760906, + 12.984401758945401 + ], + [ + 77.528073956010402, + 12.984401866360701 + ], + [ + 77.528043202406806, + 12.9844419284419 + ], + [ + 77.528022465693894, + 12.984465794288701 + ], + [ + 77.527875543316199, + 12.984634886842199 + ], + [ + 77.527848328301701, + 12.9846662086197 + ], + [ + 77.527846098085206, + 12.9846687753769 + ], + [ + 77.527815369699994, + 12.984704141830401 + ], + [ + 77.527779756360601, + 12.9847451284437 + ], + [ + 77.527777823883099, + 12.984747352628199 + ], + [ + 77.527736414921307, + 12.9847950099667 + ], + [ + 77.527705645412198, + 12.984822306057501 + ], + [ + 77.527643181534103, + 12.9848777179427 + ], + [ + 77.527444223893099, + 12.985054213601201 + ], + [ + 77.527433490861696, + 12.9850637783008 + ], + [ + 77.527433218765395, + 12.9850640203687 + ], + [ + 77.527287635949506, + 12.985193744121499 + ], + [ + 77.527277303344107, + 12.985202951137399 + ], + [ + 77.527264914881798, + 12.985213987433999 + ], + [ + 77.527244039571698, + 12.985232593384801 + ], + [ + 77.527243047982694, + 12.985233476690899 + ], + [ + 77.5271046789004, + 12.985356792700999 + ], + [ + 77.526917526587297, + 12.985506828177799 + ], + [ + 77.526914253060696, + 12.9855094529913 + ], + [ + 77.526679722878001, + 12.985697469579099 + ], + [ + 77.526657935040106, + 12.985715219742801 + ], + [ + 77.526655428587404, + 12.9857172624834 + ], + [ + 77.526615188172102, + 12.985750047951299 + ], + [ + 77.526612078431199, + 12.9857521064962 + ], + [ + 77.526520231687499, + 12.985812893570699 + ], + [ + 77.526490496324797, + 12.9858325733603 + ], + [ + 77.526449529491103, + 12.985860125705001 + ], + [ + 77.526448769067798, + 12.985860637239099 + ], + [ + 77.526419100877902, + 12.9858805901791 + ], + [ + 77.526408711799306, + 12.9858875772121 + ], + [ + 77.526361767503602, + 12.9859001531825 + ], + [ + 77.526259980124806, + 12.985927421107901 + ], + [ + 77.526072997574204, + 12.985942791176001 + ], + [ + 77.526063796949799, + 12.985944009971 + ], + [ + 77.525994709138502, + 12.9859433788156 + ], + [ + 77.5259861998547, + 12.985943301361999 + ], + [ + 77.525984245954305, + 12.9859432835771 + ], + [ + 77.525944017591897, + 12.985942915738701 + ], + [ + 77.525925481238204, + 12.9859263977082 + ], + [ + 77.525762953494095, + 12.985781566560499 + ], + [ + 77.5257133436331, + 12.9857373582762 + ], + [ + 77.525661948952404, + 12.9856951500336 + ], + [ + 77.525550251204905, + 12.985603417379499 + ], + [ + 77.525465996069798, + 12.985534221291401 + ], + [ + 77.525462447109803, + 12.985531290570901 + ], + [ + 77.525391672161504, + 12.985472829559599 + ], + [ + 77.5251838740746, + 12.985420186848099 + ], + [ + 77.524949471017806, + 12.9853608041415 + ], + [ + 77.524906018155306, + 12.9853488523433 + ], + [ + 77.524747066090498, + 12.985305130775901 + ], + [ + 77.524654658798696, + 12.985279713015499 + ], + [ + 77.5246439364727, + 12.9852767634372 + ], + [ + 77.524588588010303, + 12.985261540017699 + ], + [ + 77.524523038921302, + 12.985243390844101 + ], + [ + 77.524363970402007, + 12.985199349414501 + ], + [ + 77.524353708537504, + 12.985195013027599 + ], + [ + 77.524352261452705, + 12.9851944009752 + ], + [ + 77.524168200192705, + 12.9851166169605 + ], + [ + 77.524116105360704, + 12.9850946019952 + ], + [ + 77.524000225663698, + 12.985045631273 + ], + [ + 77.523990403841907, + 12.985041480570899 + ], + [ + 77.523986093621104, + 12.985040733538201 + ], + [ + 77.523868784861406, + 12.9850204019566 + ], + [ + 77.523837403485004, + 12.985014963152 + ], + [ + 77.523786787256498, + 12.985006190686301 + ], + [ + 77.523773556388605, + 12.9850074494432 + ], + [ + 77.523748132334404, + 12.985009358773601 + ], + [ + 77.523719497260799, + 12.9850115107019 + ], + [ + 77.523704511838403, + 12.9850126374221 + ], + [ + 77.523689987677898, + 12.9850189246462 + ], + [ + 77.523686991740405, + 12.9850202215286 + ], + [ + 77.523683747315204, + 12.985021626327001 + ], + [ + 77.523664406420195, + 12.9850299996871 + ], + [ + 77.523645140743099, + 12.9850383406937 + ], + [ + 77.523557746650894, + 12.9850761760749 + ], + [ + 77.523496609869994, + 12.985130846645101 + ], + [ + 77.523478786258295, + 12.985146785448199 + ], + [ + 77.523380272871805, + 12.985234879084199 + ], + [ + 77.5230624074362, + 12.9855180443079 + ], + [ + 77.523058128853506, + 12.9855215700046 + ], + [ + 77.523042991461296, + 12.985534043726201 + ], + [ + 77.522947837589498, + 12.9856141469966 + ], + [ + 77.522794624308005, + 12.985743126188799 + ], + [ + 77.522755136726701, + 12.985767225915801 + ], + [ + 77.522723800799596, + 12.985785579870599 + ], + [ + 77.522509892270804, + 12.9859108713607 + ], + [ + 77.522495435082604, + 12.9859193390859 + ], + [ + 77.522349286927707, + 12.9860049414093 + ], + [ + 77.522333832752196, + 12.986014126230501 + ], + [ + 77.522293167789201, + 12.9860346794281 + ], + [ + 77.522235868890405, + 12.986063639248 + ], + [ + 77.522148820995298, + 12.986083991265501 + ], + [ + 77.5221249990242, + 12.986089561165899 + ], + [ + 77.522085696309304, + 12.986104058639301 + ], + [ + 77.5220209352604, + 12.9861279473403 + ], + [ + 77.522004839310299, + 12.9861338849433 + ], + [ + 77.521876597613101, + 12.9861811909007 + ], + [ + 77.521847382270593, + 12.9861961560132 + ], + [ + 77.521664228540999, + 12.9862877916493 + ], + [ + 77.521594110014405, + 12.9863228733645 + ], + [ + 77.521295517216799, + 12.986472264954999 + ], + [ + 77.521287467921795, + 12.9864762921775 + ], + [ + 77.521073941036803, + 12.9865831236046 + ], + [ + 77.520990822681398, + 12.9866180473353 + ], + [ + 77.520981292617094, + 12.9866220518749 + ], + [ + 77.520974874409205, + 12.986624748698899 + ], + [ + 77.520464265790594, + 12.986839294741999 + ], + [ + 77.520377854647705, + 12.9868756027592 + ], + [ + 77.520325850219095, + 12.9868970950953 + ], + [ + 77.5203078970316, + 12.986904515167 + ], + [ + 77.520335518579799, + 12.986979134590699 + ], + [ + 77.5203447301664, + 12.9870040196153 + ], + [ + 77.520350918596606, + 12.987020738127899 + ], + [ + 77.520352884788494, + 12.987026048688501 + ], + [ + 77.520349460247104, + 12.9870444921399 + ], + [ + 77.520331039128394, + 12.9871437131282 + ], + [ + 77.5202026098614, + 12.987255635373799 + ], + [ + 77.520198156604806, + 12.987259527147399 + ], + [ + 77.520152951728207, + 12.9872990324162 + ], + [ + 77.520142436251106, + 12.9873282888473 + ], + [ + 77.520118065098004, + 12.9873960933313 + ], + [ + 77.520094172899206, + 12.9874625652593 + ], + [ + 77.520081259298394, + 12.987498493669101 + ], + [ + 77.520078206714203, + 12.987539292862699 + ], + [ + 77.520071702827593, + 12.9876262093932 + ], + [ + 77.520060962563093, + 12.9877697348706 + ], + [ + 77.520142602546898, + 12.9880147906897 + ], + [ + 77.520163920864107, + 12.988078781010501 + ], + [ + 77.520177057541403, + 12.988118214297 + ], + [ + 77.520203473395696, + 12.9881975059263 + ], + [ + 77.520218098658006, + 12.988229424068701 + ], + [ + 77.520298938555996, + 12.988405852183901 + ], + [ + 77.520400766646702, + 12.988628085136501 + ], + [ + 77.520404141877407, + 12.988635451341199 + ], + [ + 77.520434275248405, + 12.988701216079599 + ], + [ + 77.520561738710498, + 12.9890071628136 + ], + [ + 77.520678970681601, + 12.9895213073919 + ], + [ + 77.520701514083498, + 12.989620173351099 + ], + [ + 77.520707839941494, + 12.9896866551163 + ], + [ + 77.520709495077597, + 12.989704048221901 + ], + [ + 77.5207272794174, + 12.989890967490499 + ], + [ + 77.520931318425497, + 12.990454014089501 + ], + [ + 77.520940236585005, + 12.990478623765 + ], + [ + 77.521025806906707, + 12.990714754869 + ], + [ + 77.521163505471407, + 12.9908848672733 + ], + [ + 77.521189072952296, + 12.9909164532258 + ], + [ + 77.521229976892101, + 12.990970379327999 + ], + [ + 77.521427177331603, + 12.9912303599389 + ], + [ + 77.521434474846203, + 12.991245851539601 + ], + [ + 77.521441379756396, + 12.991260509425301 + ], + [ + 77.521511911735303, + 12.991410233337 + ], + [ + 77.521519923756799, + 12.991457341460499 + ], + [ + 77.521614339773294, + 12.991493041127599 + ], + [ + 77.5222604420658, + 12.991164388335299 + ], + [ + 77.522308919120704, + 12.9912094008263 + ], + [ + 77.522508352760099, + 12.991581932721299 + ], + [ + 77.522515857072307, + 12.991592076382901 + ], + [ + 77.522965410039006, + 12.9913720864953 + ], + [ + 77.523013422176703, + 12.9913562645865 + ], + [ + 77.523206223463902, + 12.991258056425099 + ], + [ + 77.5232593930739, + 12.9913091737188 + ], + [ + 77.523701139086, + 12.991072171090201 + ], + [ + 77.523767836223598, + 12.991038653577601 + ], + [ + 77.523512960140494, + 12.990542122400299 + ], + [ + 77.523511152573803, + 12.9905377499579 + ], + [ + 77.524163383342398, + 12.990254035691301 + ], + [ + 77.524314884094593, + 12.990787566209301 + ], + [ + 77.524356950374397, + 12.9909357072713 + ], + [ + 77.524412155686093, + 12.9912399012508 + ], + [ + 77.524534509969797, + 12.991369626031799 + ], + [ + 77.524630596301904, + 12.9913247378755 + ], + [ + 77.524814509025106, + 12.991237672693901 + ], + [ + 77.525051671174197, + 12.9911253985972 + ], + [ + 77.525481962191904, + 12.9909216947876 + ], + [ + 77.525558555621998, + 12.990885434354301 + ], + [ + 77.525583554115201, + 12.990875096730701 + ], + [ + 77.525763492355296, + 12.9908006857908 + ], + [ + 77.526064688579496, + 12.9906761288622 + ], + [ + 77.526128089517698, + 12.990654257972 + ], + [ + 77.526396269961296, + 12.990561748300999 + ], + [ + 77.526658747177606, + 12.9904838958551 + ], + [ + 77.526730462960401, + 12.990463860227701 + ], + [ + 77.527110870291196, + 12.9903575842101 + ], + [ + 77.527337376260803, + 12.990284922839599 + ], + [ + 77.527436518143702, + 12.9902531189316 + ], + [ + 77.527606539336006, + 12.9901985768558 + ], + [ + 77.527775075803405, + 12.9901744944667 + ], + [ + 77.527821958841599, + 12.9901677952056 + ], + [ + 77.528117811649096, + 12.990136230565399 + ], + [ + 77.528139213806995, + 12.990130511061199 + ], + [ + 77.528270968455004, + 12.9900952977539 + ], + [ + 77.528332058622198, + 12.9900685411937 + ], + [ + 77.528354696150203, + 12.990058625653001 + ], + [ + 77.528474107837596, + 12.9899936381918 + ], + [ + 77.528718280140694, + 12.989860753372101 + ], + [ + 77.528722540743203, + 12.989858434234099 + ], + [ + 77.528743792467907, + 12.9898468688574 + ], + [ + 77.528950146659, + 12.9897542079297 + ], + [ + 77.529013144825598, + 12.989725919338699 + ], + [ + 77.529661019696206, + 12.989494263496301 + ], + [ + 77.529700945780604, + 12.989465189356901 + ], + [ + 77.529744564464295, + 12.9894396651445 + ], + [ + 77.529986695969399, + 12.9893285566892 + ], + [ + 77.529992052414201, + 12.9893260985677 + ], + [ + 77.530331089342496, + 12.989164476882699 + ], + [ + 77.530611952685504, + 12.9890971994715 + ], + [ + 77.530875262713195, + 12.9890475199101 + ], + [ + 77.530885970807503, + 12.9890445996481 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "312", + "group": "Bagalagunte", + "Corporatio": "North", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "2", + "ward_id": "23", + "ward_name": "23 - Bagalagunte", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ಬಾಗಲಗುಂಟೆ", + "dig_ward_n": "Bagalagunte", + "Assembly": "155 - Dasarahalli", + "Slno": "23" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.495043766904502, + 13.0580034090168 + ], + [ + 77.494601940987394, + 13.056613141625901 + ], + [ + 77.495008235319602, + 13.0565161208 + ], + [ + 77.495105884111993, + 13.0568344998208 + ], + [ + 77.4951611451649, + 13.0568319879547 + ], + [ + 77.495190663326895, + 13.0569774826269 + ], + [ + 77.495468220788396, + 13.0569280668308 + ], + [ + 77.495514690310202, + 13.057091966090001 + ], + [ + 77.495766363437696, + 13.0569827663012 + ], + [ + 77.495985351209697, + 13.056896668505299 + ], + [ + 77.496422415900895, + 13.0567220938154 + ], + [ + 77.496589454992701, + 13.0566819039588 + ], + [ + 77.496681262545295, + 13.057133639101099 + ], + [ + 77.496711544895604, + 13.057127997638601 + ], + [ + 77.496956579913601, + 13.0571907138238 + ], + [ + 77.4972931699632, + 13.0571907138238 + ], + [ + 77.497624736280599, + 13.0571756426276 + ], + [ + 77.498614411500995, + 13.057142988369 + ], + [ + 77.498890716765501, + 13.0573338901882 + ], + [ + 77.498910535384795, + 13.057418906654901 + ], + [ + 77.499055392438905, + 13.0574647698047 + ], + [ + 77.499374960681607, + 13.057652947558299 + ], + [ + 77.499583962717296, + 13.057748456200599 + ], + [ + 77.499841871057299, + 13.057734127959501 + ], + [ + 77.500169839144604, + 13.0577193380925 + ], + [ + 77.500922070383893, + 13.0576306724186 + ], + [ + 77.500845451761904, + 13.057253829621599 + ], + [ + 77.501072429414094, + 13.057198406413599 + ], + [ + 77.501269610898305, + 13.0571356097626 + ], + [ + 77.501259530019198, + 13.057085917932101 + ], + [ + 77.501608018671007, + 13.056952215372901 + ], + [ + 77.5017457360956, + 13.0571937485802 + ], + [ + 77.5038818795705, + 13.056859775396701 + ], + [ + 77.503543955576504, + 13.055474033894001 + ], + [ + 77.503468017600198, + 13.0551267442161 + ], + [ + 77.5033439855724, + 13.054351164352299 + ], + [ + 77.503779498801805, + 13.054271158488801 + ], + [ + 77.504323079212497, + 13.054190175842701 + ], + [ + 77.505035883682595, + 13.0540808251569 + ], + [ + 77.505687431518695, + 13.0539562868759 + ], + [ + 77.505228699361297, + 13.0520681147394 + ], + [ + 77.505230538028201, + 13.0520675828439 + ], + [ + 77.506451367559393, + 13.0517383917171 + ], + [ + 77.506495917838805, + 13.051989493291799 + ], + [ + 77.506844220023098, + 13.051975318202899 + ], + [ + 77.507529686821798, + 13.051927730404399 + ], + [ + 77.507875519688795, + 13.0519142831492 + ], + [ + 77.507852006599606, + 13.051628042229501 + ], + [ + 77.507842053082697, + 13.0516166382866 + ], + [ + 77.507772957088804, + 13.051414117192101 + ], + [ + 77.507743392893104, + 13.0509004517719 + ], + [ + 77.507739595282999, + 13.050523989120901 + ], + [ + 77.507742789640801, + 13.0505144245724 + ], + [ + 77.507737489062393, + 13.0505153532501 + ], + [ + 77.507674567242901, + 13.049987424407499 + ], + [ + 77.507649395938898, + 13.049718881552501 + ], + [ + 77.507622383124499, + 13.0494390629666 + ], + [ + 77.507628512517201, + 13.049313545561301 + ], + [ + 77.507633362449695, + 13.049214214532 + ], + [ + 77.507682249099304, + 13.0489788343942 + ], + [ + 77.507730245845593, + 13.0487694380914 + ], + [ + 77.507783785191407, + 13.0485385302801 + ], + [ + 77.507791198745196, + 13.0485047936406 + ], + [ + 77.507791494784399, + 13.0485034454809 + ], + [ + 77.507798651250397, + 13.0484706247576 + ], + [ + 77.507863994799195, + 13.0481537714056 + ], + [ + 77.507916177169406, + 13.047902548338 + ], + [ + 77.507932081095703, + 13.047823339189801 + ], + [ + 77.507961123312896, + 13.0476762412728 + ], + [ + 77.507991237589394, + 13.047521227467501 + ], + [ + 77.508020832891802, + 13.047371865477899 + ], + [ + 77.508023404883005, + 13.0473413479152 + ], + [ + 77.508028086859596, + 13.047291610834799 + ], + [ + 77.508027967241404, + 13.0472797510399 + ], + [ + 77.508027403484903, + 13.047223856064599 + ], + [ + 77.508006923053202, + 13.0471348354427 + ], + [ + 77.507639101203296, + 13.0461852237929 + ], + [ + 77.507303371680905, + 13.045333554175301 + ], + [ + 77.507182786011697, + 13.0453697327708 + ], + [ + 77.507124791061102, + 13.0453872351047 + ], + [ + 77.506898085302794, + 13.045466228083599 + ], + [ + 77.506390732220297, + 13.045643935153199 + ], + [ + 77.506062747253907, + 13.0457318140884 + ], + [ + 77.505917431567497, + 13.0457716197664 + ], + [ + 77.505704225299795, + 13.045834147835199 + ], + [ + 77.505640879455996, + 13.045852725343901 + ], + [ + 77.505551054275699, + 13.0458790690535 + ], + [ + 77.505518972859406, + 13.0458883793666 + ], + [ + 77.505446471511604, + 13.0459094198584 + ], + [ + 77.505422141448193, + 13.045916480404999 + ], + [ + 77.505216877222196, + 13.045976049984001 + ], + [ + 77.505160545638105, + 13.045992398327 + ], + [ + 77.504991144114996, + 13.0460426009813 + ], + [ + 77.503889086923195, + 13.0464180521274 + ], + [ + 77.503795690755695, + 13.046449565277699 + ], + [ + 77.503601648366995, + 13.046515036918199 + ], + [ + 77.5028690729185, + 13.0467622126823 + ], + [ + 77.502706118741301, + 13.046823645236101 + ], + [ + 77.501511438038094, + 13.0472677451218 + ], + [ + 77.501421880848397, + 13.047296845122499 + ], + [ + 77.501157816365406, + 13.0473841004173 + ], + [ + 77.500910972036095, + 13.047465542190301 + ], + [ + 77.5006526434546, + 13.0475504828526 + ], + [ + 77.500375892865506, + 13.047645758376699 + ], + [ + 77.500280710285196, + 13.0476785263584 + ], + [ + 77.500115976503096, + 13.047735238589301 + ], + [ + 77.499373837480903, + 13.0479919991526 + ], + [ + 77.499322176056793, + 13.0480094387355 + ], + [ + 77.499136872913397, + 13.048082378879601 + ], + [ + 77.498918291805694, + 13.0481680633783 + ], + [ + 77.498657828067806, + 13.0482699633636 + ], + [ + 77.498578082493907, + 13.0483007015214 + ], + [ + 77.498468493098002, + 13.048342942037101 + ], + [ + 77.498295238062795, + 13.048411247837 + ], + [ + 77.497411196139296, + 13.0487043841785 + ], + [ + 77.497313608999207, + 13.048736948541499 + ], + [ + 77.496760799016997, + 13.0489207246315 + ], + [ + 77.496754580830199, + 13.0489228762353 + ], + [ + 77.496653601083494, + 13.0489578086513 + ], + [ + 77.496602956453103, + 13.0489753282907 + ], + [ + 77.496573425360793, + 13.048985503843801 + ], + [ + 77.496580073523702, + 13.0490024027466 + ], + [ + 77.496612944279505, + 13.0490927175103 + ], + [ + 77.496657967927703, + 13.0492074845336 + ], + [ + 77.49666568056, + 13.049227143264799 + ], + [ + 77.496989422711593, + 13.0500523614374 + ], + [ + 77.497001958816298, + 13.0500843161871 + ], + [ + 77.497145486328904, + 13.0504501647496 + ], + [ + 77.497217218995601, + 13.0506298832301 + ], + [ + 77.497220917177202, + 13.0506391480682 + ], + [ + 77.497005209218301, + 13.050683823100799 + ], + [ + 77.4968501026989, + 13.0507159470883 + ], + [ + 77.496811973447606, + 13.0507243905907 + ], + [ + 77.496470087180796, + 13.050800094890301 + ], + [ + 77.496467762662604, + 13.0508006097308 + ], + [ + 77.496139343254598, + 13.050873332216501 + ], + [ + 77.494893458742297, + 13.051144441906199 + ], + [ + 77.494789318078901, + 13.0511671032171 + ], + [ + 77.494502086054794, + 13.0512429220935 + ], + [ + 77.494073297838398, + 13.0513233186376 + ], + [ + 77.493272679674902, + 13.051473431553999 + ], + [ + 77.493052717156104, + 13.051502436386199 + ], + [ + 77.492578613899397, + 13.051564654930401 + ], + [ + 77.492474502124395, + 13.0515783036467 + ], + [ + 77.492472987187398, + 13.0516118700139 + ], + [ + 77.492472454776902, + 13.0516236594265 + ], + [ + 77.492470351145698, + 13.0516701943183 + ], + [ + 77.492467939855402, + 13.051723544525199 + ], + [ + 77.492465721679906, + 13.0517726256654 + ], + [ + 77.492417631323605, + 13.0528367535725 + ], + [ + 77.492375546518204, + 13.053770027796901 + ], + [ + 77.492347637056298, + 13.0543958665604 + ], + [ + 77.4923451640352, + 13.0544513261178 + ], + [ + 77.492337272272394, + 13.0546282784263 + ], + [ + 77.492333975212702, + 13.0547277388866 + ], + [ + 77.492333649876002, + 13.0547378448994 + ], + [ + 77.491748758538094, + 13.0556955286043 + ], + [ + 77.491735018555801, + 13.055718024329501 + ], + [ + 77.491548156856496, + 13.0560239731862 + ], + [ + 77.491516919272598, + 13.056073256299699 + ], + [ + 77.491296655255397, + 13.056420727758701 + ], + [ + 77.491214197300593, + 13.056550822441 + ], + [ + 77.490955708950807, + 13.056958413344899 + ], + [ + 77.491196795173096, + 13.057666992807301 + ], + [ + 77.4912829854525, + 13.057920315365401 + ], + [ + 77.491583177249396, + 13.058808829171999 + ], + [ + 77.491674281901396, + 13.0590926982158 + ], + [ + 77.491677757065204, + 13.0591035265308 + ], + [ + 77.491771448889693, + 13.059395489789599 + ], + [ + 77.491801510614707, + 13.0594891571118 + ], + [ + 77.491859912261702, + 13.0596711271176 + ], + [ + 77.491895823752202, + 13.0597830202331 + ], + [ + 77.491928262016302, + 13.0598840931426 + ], + [ + 77.491945835959896, + 13.059936564918001 + ], + [ + 77.491965350437894, + 13.0599949738176 + ], + [ + 77.491970112516498, + 13.0600071223709 + ], + [ + 77.492635738897803, + 13.0594871805202 + ], + [ + 77.493012538656401, + 13.0591297527963 + ], + [ + 77.493400049091505, + 13.0588678408349 + ], + [ + 77.493729427571594, + 13.058644737736 + ], + [ + 77.4941953404944, + 13.0584203169515 + ], + [ + 77.494710015114606, + 13.058195424886501 + ], + [ + 77.495043766904502, + 13.0580034090168 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "301", + "group": "IPD Salappa", + "Corporatio": "Central", + "ac_no": "168", + "ac": "Chamrajapet", + "corporat_1": "1", + "ward_id": "46", + "ward_name": "46 - IPD Salappa Ward", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಾಮರಾಜಪೇಟೆ", + "ward_name_": "ಐಪಿಡಿ ಸಾಲಪ್ಪ ವಾರ್ಡ್", + "dig_ward_n": "IPD Salappa", + "Assembly": "168 - Chamrajapet", + "Slno": "46" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.559166309011601, + 12.9612041974472 + ], + [ + 77.559020655740895, + 12.9611696194399 + ], + [ + 77.5589475899436, + 12.961152273125901 + ], + [ + 77.558920455174601, + 12.96114583081 + ], + [ + 77.558417182791004, + 12.961026351902699 + ], + [ + 77.558349608722096, + 12.9610104078023 + ], + [ + 77.558145482966594, + 12.9609622440588 + ], + [ + 77.558058785143501, + 12.9609417871266 + ], + [ + 77.557710665847495, + 12.960795057717499 + ], + [ + 77.557686984413706, + 12.9607850768107 + ], + [ + 77.5576038408839, + 12.960736603761299 + ], + [ + 77.557502579467098, + 12.960677566565799 + ], + [ + 77.557357427781994, + 12.9605929418146 + ], + [ + 77.557356025723706, + 12.960592128020799 + ], + [ + 77.557349072899299, + 12.960588093721899 + ], + [ + 77.557313409899805, + 12.960567399821301 + ], + [ + 77.557243990131994, + 12.960525228948701 + ], + [ + 77.557195646950703, + 12.960495861714801 + ], + [ + 77.557104850345397, + 12.960440705779 + ], + [ + 77.557098287098199, + 12.960513762848199 + ], + [ + 77.557048995922798, + 12.960587573611001 + ], + [ + 77.556947649849405, + 12.960739334817699 + ], + [ + 77.556867828621293, + 12.9608588632621 + ], + [ + 77.556391435878496, + 12.961601226263101 + ], + [ + 77.556300316287604, + 12.961737671745899 + ], + [ + 77.556245826687004, + 12.961819267104699 + ], + [ + 77.556166407678205, + 12.9619381915979 + ], + [ + 77.555937200962006, + 12.962296594510301 + ], + [ + 77.555670893582203, + 12.962713009614699 + ], + [ + 77.555668336647997, + 12.962717008139499 + ], + [ + 77.555655781370305, + 12.962736641644399 + ], + [ + 77.555653588031703, + 12.9627400719364 + ], + [ + 77.555623189460107, + 12.9627876033218 + ], + [ + 77.555587589971907, + 12.962843269031699 + ], + [ + 77.5555554483782, + 12.962875597452401 + ], + [ + 77.555509272001899, + 12.9629478009515 + ], + [ + 77.555477980874002, + 12.9629976006463 + ], + [ + 77.555470425505405, + 12.9630096258023 + ], + [ + 77.555457150342704, + 12.9630307534664 + ], + [ + 77.555452054860595, + 12.9630391090072 + ], + [ + 77.555422465781206, + 12.9631092406234 + ], + [ + 77.555366510480795, + 12.963218505233501 + ], + [ + 77.555319284459301, + 12.963282475830701 + ], + [ + 77.555283861002906, + 12.963346868732399 + ], + [ + 77.555237365329404, + 12.963429524129401 + ], + [ + 77.555232452069106, + 12.963439127364699 + ], + [ + 77.555152179675602, + 12.9635934820554 + ], + [ + 77.555101341021796, + 12.963691235981001 + ], + [ + 77.5550386484108, + 12.9638253089736 + ], + [ + 77.5550040754908, + 12.9639058393344 + ], + [ + 77.554959718840607, + 12.9639635533754 + ], + [ + 77.554956482102895, + 12.963969362781601 + ], + [ + 77.554946005911503, + 12.963988166574699 + ], + [ + 77.554883246511807, + 12.9640033623569 + ], + [ + 77.554882920367504, + 12.9642939904071 + ], + [ + 77.554945755089904, + 12.9643160264018 + ], + [ + 77.555137876322902, + 12.964376337009501 + ], + [ + 77.5551949670798, + 12.964394258530399 + ], + [ + 77.555219992351894, + 12.9644021150381 + ], + [ + 77.555325069090401, + 12.9644351003429 + ], + [ + 77.555740413161203, + 12.9643153588231 + ], + [ + 77.555843207063504, + 12.964285723143901 + ], + [ + 77.555950127858097, + 12.9642564453207 + ], + [ + 77.556018818144196, + 12.964237635507899 + ], + [ + 77.556116198025194, + 12.964210969275699 + ], + [ + 77.556169672155093, + 12.964196325666199 + ], + [ + 77.556231364306996, + 12.964179432116801 + ], + [ + 77.556262000479094, + 12.964171043413501 + ], + [ + 77.556392383292106, + 12.964137279666 + ], + [ + 77.556460837670599, + 12.964119552602501 + ], + [ + 77.556487509397499, + 12.9641126456448 + ], + [ + 77.556513000505106, + 12.964106043907201 + ], + [ + 77.556537401201595, + 12.964097305356599 + ], + [ + 77.556648852311298, + 12.964057394226 + ], + [ + 77.556661000800801, + 12.964053043975801 + ], + [ + 77.556660260470295, + 12.9640501881867 + ], + [ + 77.556668466204499, + 12.9640470059952 + ], + [ + 77.557736893501101, + 12.963632603387 + ], + [ + 77.558232694464806, + 12.9633572355919 + ], + [ + 77.558370619293797, + 12.963818632132501 + ], + [ + 77.558516067525503, + 12.964732101400999 + ], + [ + 77.558544613440205, + 12.9649550314011 + ], + [ + 77.558524933920296, + 12.965090854272001 + ], + [ + 77.558650233618806, + 12.9649010245212 + ], + [ + 77.558658844400696, + 12.9648422159934 + ], + [ + 77.558731978525302, + 12.9647872885099 + ], + [ + 77.558838745023607, + 12.9647557478743 + ], + [ + 77.558855758546599, + 12.9647871925646 + ], + [ + 77.558874192894095, + 12.9648240765525 + ], + [ + 77.558881037373496, + 12.964837772523801 + ], + [ + 77.558959013610405, + 12.9649975068098 + ], + [ + 77.558987476844806, + 12.965055814330199 + ], + [ + 77.559033004085904, + 12.9651163500041 + ], + [ + 77.559215055551704, + 12.965352846534699 + ], + [ + 77.559240859330203, + 12.9653988949491 + ], + [ + 77.559365769391604, + 12.9656777382057 + ], + [ + 77.5597438304478, + 12.9665582780575 + ], + [ + 77.559918332813595, + 12.9665068711142 + ], + [ + 77.560031235999404, + 12.9664560701477 + ], + [ + 77.560198862653706, + 12.966351652598 + ], + [ + 77.560331970752003, + 12.9662498332713 + ], + [ + 77.560474842386895, + 12.966145659175201 + ], + [ + 77.560564336356407, + 12.966057820794299 + ], + [ + 77.560626980744701, + 12.9659905743934 + ], + [ + 77.560689969719704, + 12.965900738177901 + ], + [ + 77.560741271535093, + 12.965794077161201 + ], + [ + 77.560865968791703, + 12.9655455287447 + ], + [ + 77.560970066095095, + 12.9652531395491 + ], + [ + 77.561009336004105, + 12.9651522435363 + ], + [ + 77.5610333511503, + 12.9650797306707 + ], + [ + 77.561069305539903, + 12.964992419133401 + ], + [ + 77.561105629653795, + 12.9649412422105 + ], + [ + 77.561187386910802, + 12.964885100838799 + ], + [ + 77.561241695979206, + 12.964847298733501 + ], + [ + 77.561363140976098, + 12.9647873787272 + ], + [ + 77.561455734290107, + 12.964777432758201 + ], + [ + 77.561651801160906, + 12.9647517870194 + ], + [ + 77.561674992163901, + 12.964744492795999 + ], + [ + 77.561740755389096, + 12.964723807657 + ], + [ + 77.5618098338295, + 12.964703468414299 + ], + [ + 77.561832023909105, + 12.964696935707501 + ], + [ + 77.5618681326077, + 12.9647372348372 + ], + [ + 77.561923757317899, + 12.9648006247839 + ], + [ + 77.561999785917394, + 12.964887267540901 + ], + [ + 77.562072196714595, + 12.964996916248101 + ], + [ + 77.562114973083695, + 12.96506169115 + ], + [ + 77.562414991279994, + 12.965515997498199 + ], + [ + 77.562696299350904, + 12.9659419690998 + ], + [ + 77.562745134886597, + 12.9660222272044 + ], + [ + 77.562752881719604, + 12.966034959189701 + ], + [ + 77.562760646350398, + 12.966047719909801 + ], + [ + 77.562932124371102, + 12.9663295378557 + ], + [ + 77.563000227926196, + 12.9664414646263 + ], + [ + 77.5631355339046, + 12.966663839869399 + ], + [ + 77.563136054857097, + 12.96666469573 + ], + [ + 77.563185789145507, + 12.966746419283 + ], + [ + 77.563191319142902, + 12.966755506865301 + ], + [ + 77.5632010907905, + 12.966771563471401 + ], + [ + 77.563286354498999, + 12.9669030742043 + ], + [ + 77.563430992740805, + 12.9671261631379 + ], + [ + 77.563435018166402, + 12.9671319868984 + ], + [ + 77.563664493566506, + 12.967463942636099 + ], + [ + 77.563668263728104, + 12.967469396683001 + ], + [ + 77.563725790132395, + 12.967549433331399 + ], + [ + 77.563791661884395, + 12.9676410820376 + ], + [ + 77.563829888587904, + 12.9676942675384 + ], + [ + 77.563868943296299, + 12.967748604906101 + ], + [ + 77.563893133463907, + 12.9677822605145 + ], + [ + 77.564104461187696, + 12.968050084800399 + ], + [ + 77.564135776097899, + 12.9680897720843 + ], + [ + 77.564224265585196, + 12.9682019184258 + ], + [ + 77.564256546512794, + 12.9682428284781 + ], + [ + 77.564342774354301, + 12.968221108767199 + ], + [ + 77.564667149627496, + 12.9681394020092 + ], + [ + 77.564840613627695, + 12.968042828386 + ], + [ + 77.565014075645706, + 12.967946255593001 + ], + [ + 77.565048217581307, + 12.967909530574101 + ], + [ + 77.565143346800099, + 12.967807204371001 + ], + [ + 77.565199714422803, + 12.9677456654843 + ], + [ + 77.565281928138901, + 12.9676217593163 + ], + [ + 77.565292278221506, + 12.967395793879801 + ], + [ + 77.565327154635199, + 12.967203465221299 + ], + [ + 77.5653647852576, + 12.9670551545751 + ], + [ + 77.565433207166294, + 12.966990438630001 + ], + [ + 77.565448037450906, + 12.966976410838001 + ], + [ + 77.5654653976829, + 12.9669288083553 + ], + [ + 77.565465866080999, + 12.966862174044101 + ], + [ + 77.565494505499998, + 12.966735409072999 + ], + [ + 77.565524404997603, + 12.9666881138143 + ], + [ + 77.565528353299797, + 12.966645019679801 + ], + [ + 77.565522282000899, + 12.9665693108279 + ], + [ + 77.565396403175299, + 12.9660855266496 + ], + [ + 77.565353833579294, + 12.9659436036117 + ], + [ + 77.565343100024407, + 12.9659230438374 + ], + [ + 77.565305532693102, + 12.965786112471299 + ], + [ + 77.565303175163294, + 12.965770259104699 + ], + [ + 77.565218772063005, + 12.9653790196624 + ], + [ + 77.565206788692393, + 12.965280648991399 + ], + [ + 77.5652017758364, + 12.965219882915999 + ], + [ + 77.565193007487693, + 12.965113945883999 + ], + [ + 77.565202757265098, + 12.965101471395499 + ], + [ + 77.565254150536205, + 12.9651364853055 + ], + [ + 77.565240540153397, + 12.9648793645657 + ], + [ + 77.565230782041795, + 12.964837481925301 + ], + [ + 77.565215779469995, + 12.964712231499901 + ], + [ + 77.565158460894494, + 12.964688039779 + ], + [ + 77.565148143079099, + 12.964645086268099 + ], + [ + 77.5651465272678, + 12.9645945123129 + ], + [ + 77.5651566463808, + 12.9644038932167 + ], + [ + 77.565183364370299, + 12.964226565256499 + ], + [ + 77.565182541288706, + 12.9641730234404 + ], + [ + 77.565185258575696, + 12.9641436652868 + ], + [ + 77.565194980750704, + 12.964128500125399 + ], + [ + 77.565392413283405, + 12.964116866469499 + ], + [ + 77.565426992376004, + 12.964117601964 + ], + [ + 77.565457143264794, + 12.9641146137775 + ], + [ + 77.565482372404404, + 12.964113288678799 + ], + [ + 77.565511425892097, + 12.9641103113049 + ], + [ + 77.5655256920748, + 12.964110170660801 + ], + [ + 77.565814990273097, + 12.9640935945822 + ], + [ + 77.566133618941393, + 12.964074307109801 + ], + [ + 77.566122902533493, + 12.964019248319101 + ], + [ + 77.566092958019794, + 12.9639160469036 + ], + [ + 77.566076279131806, + 12.9638341976879 + ], + [ + 77.566074078217099, + 12.963823395116499 + ], + [ + 77.566071979184997, + 12.963813095667399 + ], + [ + 77.566047189252501, + 12.963691436252301 + ], + [ + 77.566040433338301, + 12.963658283793499 + ], + [ + 77.566033501987903, + 12.963656093504399 + ], + [ + 77.566030329628006, + 12.963585751194501 + ], + [ + 77.566025304903704, + 12.9634743543547 + ], + [ + 77.566034774489395, + 12.963433626366299 + ], + [ + 77.566050470375302, + 12.9633661200665 + ], + [ + 77.566064737876601, + 12.963304761394999 + ], + [ + 77.566089585708397, + 12.963197893550699 + ], + [ + 77.566151911273096, + 12.9629298405935 + ], + [ + 77.566158444580694, + 12.962901740213701 + ], + [ + 77.566165374056695, + 12.9628719383392 + ], + [ + 77.566173842247593, + 12.9628355197601 + ], + [ + 77.566175845903203, + 12.962826900935999 + ], + [ + 77.566158735193596, + 12.962822074455399 + ], + [ + 77.566098473105001, + 12.962805077494499 + ], + [ + 77.565995479218302, + 12.9627727166928 + ], + [ + 77.565993927550593, + 12.962772228767699 + ], + [ + 77.565980640583604, + 12.9627678425013 + ], + [ + 77.565815143164698, + 12.9627154936942 + ], + [ + 77.565717895491403, + 12.9626847330532 + ], + [ + 77.565572268302304, + 12.9626386090313 + ], + [ + 77.565385122728102, + 12.9625794706468 + ], + [ + 77.565212944731798, + 12.9625276272421 + ], + [ + 77.565196273317397, + 12.9625226075394 + ], + [ + 77.564824229817702, + 12.9624115779598 + ], + [ + 77.564822627585897, + 12.9624110995598 + ], + [ + 77.564619927312407, + 12.9623509845272 + ], + [ + 77.564541380218401, + 12.962326913506001 + ], + [ + 77.564430997180907, + 12.962286216370201 + ], + [ + 77.564206178292906, + 12.9622026032305 + ], + [ + 77.564017670338401, + 12.9621334379774 + ], + [ + 77.563981371087706, + 12.962120119072299 + ], + [ + 77.5633648279547, + 12.9618461200171 + ], + [ + 77.563270138913893, + 12.9618199498008 + ], + [ + 77.563255029188397, + 12.961817359616701 + ], + [ + 77.562941963029999, + 12.9617308285188 + ], + [ + 77.562780551704407, + 12.9616869939303 + ], + [ + 77.562777086073297, + 12.9616858996377 + ], + [ + 77.562712874028605, + 12.9616731923537 + ], + [ + 77.562635743893395, + 12.961657928976701 + ], + [ + 77.562589541739399, + 12.9616489888275 + ], + [ + 77.562263655798901, + 12.961585927731001 + ], + [ + 77.562071757813399, + 12.9615686173914 + ], + [ + 77.561817058073203, + 12.961545973968001 + ], + [ + 77.561702988341395, + 12.9615395067283 + ], + [ + 77.5610851039647, + 12.9615163621772 + ], + [ + 77.5610445048233, + 12.9615148409034 + ], + [ + 77.5607238567667, + 12.961502829364999 + ], + [ + 77.560227974474202, + 12.961429784291401 + ], + [ + 77.560150742200307, + 12.9614138019883 + ], + [ + 77.560105776279897, + 12.9614044968651 + ], + [ + 77.559949384244405, + 12.9613721328121 + ], + [ + 77.559834645016196, + 12.9613483890771 + ], + [ + 77.559805962288195, + 12.9613424535661 + ], + [ + 77.559685837508297, + 12.961317595457601 + ], + [ + 77.5596493450617, + 12.9613100436497 + ], + [ + 77.559516458883806, + 12.961282544564 + ], + [ + 77.559424313422994, + 12.9612634761033 + ], + [ + 77.559347534468898, + 12.9612475875621 + ], + [ + 77.559259224453598, + 12.9612258694291 + ], + [ + 77.559229640172902, + 12.961218968786399 + ], + [ + 77.559166309011601, + 12.9612041974472 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "313", + "group": "Dasarahalli", + "Corporatio": "North", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "2", + "ward_id": "25", + "ward_name": "25 - Dasarahalli", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ದಾಸರಹಳ್ಳಿ", + "dig_ward_n": "Dasarahalli", + "Assembly": "155 - Dasarahalli", + "Slno": "25" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.514366084847097, + 13.0502655211061 + ], + [ + 77.5140687458168, + 13.0503135385857 + ], + [ + 77.514065919967507, + 13.0502928156909 + ], + [ + 77.513718262008197, + 13.0503289237652 + ], + [ + 77.513451376241306, + 13.0503739803624 + ], + [ + 77.512916191782907, + 13.0505055393463 + ], + [ + 77.512899864653605, + 13.0504439986283 + ], + [ + 77.512726545896697, + 13.050494235949101 + ], + [ + 77.512727801829797, + 13.050533169872701 + ], + [ + 77.512617279723898, + 13.050563312265201 + ], + [ + 77.512457776230306, + 13.0505859190596 + ], + [ + 77.512451496565205, + 13.0505570326001 + ], + [ + 77.512106114984505, + 13.050607269921001 + ], + [ + 77.512023906171706, + 13.050547229787799 + ], + [ + 77.511999396102198, + 13.0505805907063 + ], + [ + 77.511803919095399, + 13.050665261549799 + ], + [ + 77.511707224738998, + 13.050704243044301 + ], + [ + 77.5116454618516, + 13.050757905880801 + ], + [ + 77.511574586407093, + 13.0508206812745 + ], + [ + 77.511486498354699, + 13.050850043958601 + ], + [ + 77.511422710454696, + 13.0508692815792 + ], + [ + 77.511201984070496, + 13.0509340819856 + ], + [ + 77.510808119100403, + 13.0510444451777 + ], + [ + 77.511134146144997, + 13.0520620140591 + ], + [ + 77.511230334248197, + 13.0524427164465 + ], + [ + 77.511443973088006, + 13.0530441452182 + ], + [ + 77.511559398811897, + 13.053355997173901 + ], + [ + 77.511595849040404, + 13.0534774979359 + ], + [ + 77.511718364103601, + 13.053402879327001 + ], + [ + 77.511746241561895, + 13.0533687279473 + ], + [ + 77.511748510984205, + 13.0533653178439 + ], + [ + 77.511770931001493, + 13.0533366385613 + ], + [ + 77.511803667138693, + 13.053294762188701 + ], + [ + 77.511996437774201, + 13.0531630140367 + ], + [ + 77.512142325680003, + 13.053065601816201 + ], + [ + 77.512142039280505, + 13.053064710151 + ], + [ + 77.512143815859005, + 13.0530646928921 + ], + [ + 77.5121468585766, + 13.053063027126599 + ], + [ + 77.512365655581206, + 13.0529432509407 + ], + [ + 77.512372336237107, + 13.052941915739099 + ], + [ + 77.513609170914805, + 13.052049799693 + ], + [ + 77.513772986450306, + 13.051931640243099 + ], + [ + 77.514559868328007, + 13.051364063520699 + ], + [ + 77.5157685241618, + 13.0504922528833 + ], + [ + 77.5159064167553, + 13.050392790018 + ], + [ + 77.516316153642506, + 13.050054213967799 + ], + [ + 77.516331794297201, + 13.050054061803699 + ], + [ + 77.516503884637899, + 13.0499326292848 + ], + [ + 77.516681795083201, + 13.049859455609299 + ], + [ + 77.516686921802503, + 13.049857473183099 + ], + [ + 77.518306835448698, + 13.0486390604792 + ], + [ + 77.518308173512295, + 13.048640698108301 + ], + [ + 77.518332189778107, + 13.048623524071299 + ], + [ + 77.5183807981998, + 13.0485891703857 + ], + [ + 77.518548358889205, + 13.048471216138401 + ], + [ + 77.518702631108596, + 13.0483805409719 + ], + [ + 77.519360625759006, + 13.047862493458901 + ], + [ + 77.519429537114405, + 13.0478154196872 + ], + [ + 77.519731278961899, + 13.047609297629601 + ], + [ + 77.520500080759106, + 13.047031488018099 + ], + [ + 77.520744317068306, + 13.0468642237387 + ], + [ + 77.520840415012998, + 13.046798914619901 + ], + [ + 77.5218097264124, + 13.046164792326699 + ], + [ + 77.521872584687401, + 13.046123670437799 + ], + [ + 77.521924016844594, + 13.046089983497099 + ], + [ + 77.522133916049, + 13.045952502638601 + ], + [ + 77.522198086456697, + 13.0459104725521 + ], + [ + 77.52219228717, + 13.045901460893599 + ], + [ + 77.522192160770601, + 13.045901264264501 + ], + [ + 77.522003860844293, + 13.0456085384732 + ], + [ + 77.521957632499607, + 13.045536711859 + ], + [ + 77.521872834221696, + 13.0454099214223 + ], + [ + 77.521753014589194, + 13.045230954076001 + ], + [ + 77.521600899920202, + 13.0450037485338 + ], + [ + 77.521529553604694, + 13.0448971559545 + ], + [ + 77.521520179073605, + 13.044881436465401 + ], + [ + 77.521476191743503, + 13.044812659696699 + ], + [ + 77.521428298882398, + 13.0447377755241 + ], + [ + 77.521190099705706, + 13.0443640242458 + ], + [ + 77.521136381387095, + 13.0442797924534 + ], + [ + 77.520997553146401, + 13.044062106028999 + ], + [ + 77.520810834647193, + 13.043766906887701 + ], + [ + 77.520682848449198, + 13.043567754214701 + ], + [ + 77.520670189992998, + 13.043548056127699 + ], + [ + 77.520562721538397, + 13.0433808284454 + ], + [ + 77.520223295044303, + 13.0428499531266 + ], + [ + 77.519751786968598, + 13.0421295033871 + ], + [ + 77.519676297093, + 13.042012227860299 + ], + [ + 77.519582460802496, + 13.0418664518012 + ], + [ + 77.519376121929596, + 13.0415458997791 + ], + [ + 77.5192106653938, + 13.041302441820299 + ], + [ + 77.519056909808299, + 13.0410769393838 + ], + [ + 77.518981340348802, + 13.040951187871 + ], + [ + 77.518873837569799, + 13.040772043419899 + ], + [ + 77.518730022452203, + 13.040532386701701 + ], + [ + 77.518500920452993, + 13.0401461200826 + ], + [ + 77.518451883366097, + 13.039935695374499 + ], + [ + 77.518441313562903, + 13.0398903378569 + ], + [ + 77.518387373090704, + 13.0399356264675 + ], + [ + 77.518145278934895, + 13.0401388867602 + ], + [ + 77.517801698258495, + 13.0404273547024 + ], + [ + 77.517792564141402, + 13.0404353490032 + ], + [ + 77.517726310349502, + 13.0404902022717 + ], + [ + 77.517621227916706, + 13.040578184361699 + ], + [ + 77.517502598463196, + 13.0406934025824 + ], + [ + 77.517238524073605, + 13.0409489454187 + ], + [ + 77.5169847231289, + 13.0412291841723 + ], + [ + 77.516920699806207, + 13.041299876198799 + ], + [ + 77.516730193644605, + 13.041483554182999 + ], + [ + 77.5166433123442, + 13.0415576297206 + ], + [ + 77.516560030684104, + 13.041628636348699 + ], + [ + 77.516488467670996, + 13.0416711181692 + ], + [ + 77.516280067525997, + 13.0417939849881 + ], + [ + 77.516113711658406, + 13.041859975377101 + ], + [ + 77.515712178723405, + 13.042020858658599 + ], + [ + 77.515612362715302, + 13.042060226868101 + ], + [ + 77.515544647883701, + 13.042084601451499 + ], + [ + 77.515516797679098, + 13.042094318052699 + ], + [ + 77.5152690492625, + 13.042180751621 + ], + [ + 77.514872014448699, + 13.0423192677447 + ], + [ + 77.514858335593999, + 13.0423237391896 + ], + [ + 77.514661913064302, + 13.0423879411317 + ], + [ + 77.514659045040304, + 13.042389098352 + ], + [ + 77.514602755436002, + 13.042407784509001 + ], + [ + 77.514525872805606, + 13.0424333077233 + ], + [ + 77.514125734207695, + 13.042561424105999 + ], + [ + 77.513685960679794, + 13.042699100696 + ], + [ + 77.513403479764307, + 13.042787534269699 + ], + [ + 77.513325667713403, + 13.0428119395518 + ], + [ + 77.513269708275402, + 13.042829490181299 + ], + [ + 77.513048099410298, + 13.0428994035156 + ], + [ + 77.512978291842799, + 13.0429258451209 + ], + [ + 77.512978886347298, + 13.0429291415759 + ], + [ + 77.513140427476699, + 13.0436389737366 + ], + [ + 77.513250790668906, + 13.044107257923301 + ], + [ + 77.513412285431599, + 13.044308240433701 + ], + [ + 77.513581880245198, + 13.0445451669195 + ], + [ + 77.513599092853099, + 13.044781080899 + ], + [ + 77.5135995991063, + 13.045097995386399 + ], + [ + 77.513621367992798, + 13.045153683235601 + ], + [ + 77.514432385164497, + 13.047553323444999 + ], + [ + 77.514463773275693, + 13.047603948601701 + ], + [ + 77.514520473631293, + 13.0476272362478 + ], + [ + 77.514726012420297, + 13.0483076405147 + ], + [ + 77.514955914643195, + 13.049262307438999 + ], + [ + 77.514951475056705, + 13.0492634601926 + ], + [ + 77.515139428717006, + 13.050146499494 + ], + [ + 77.515130284673901, + 13.050147906283501 + ], + [ + 77.515146964315093, + 13.0502297050566 + ], + [ + 77.514835492925997, + 13.0504143272106 + ], + [ + 77.514585562254894, + 13.050606484962801 + ], + [ + 77.514457457086706, + 13.050647930752501 + ], + [ + 77.514366084847097, + 13.0502655211061 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "302", + "group": "Rayapuram", + "Corporatio": "Central", + "ac_no": "168", + "ac": "Chamrajapet", + "corporat_1": "1", + "ward_id": "49", + "ward_name": "49 - Rayapuram", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಾಮರಾಜಪೇಟೆ", + "ward_name_": "ರಾಯಪುರಂ", + "dig_ward_n": "Rayapuram", + "Assembly": "168 - Chamrajapet", + "Slno": "49" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.552002399930998, + 12.965977888533899 + ], + [ + 77.552037935264593, + 12.966079644815 + ], + [ + 77.552047621642402, + 12.966113604006599 + ], + [ + 77.552055080149898, + 12.9661397547428 + ], + [ + 77.552065304428396, + 12.9661756023135 + ], + [ + 77.552070814937693, + 12.966194921202099 + ], + [ + 77.552094258014804, + 12.966249166375199 + ], + [ + 77.5521000333774, + 12.966269162971599 + ], + [ + 77.552085462442903, + 12.9662725728066 + ], + [ + 77.552065720657296, + 12.966277325308599 + ], + [ + 77.551688406362302, + 12.966367009674199 + ], + [ + 77.551684078621193, + 12.9664513130936 + ], + [ + 77.5516911003579, + 12.966633613214601 + ], + [ + 77.551688503867794, + 12.9666582264038 + ], + [ + 77.551675254759402, + 12.96676190056 + ], + [ + 77.551788067310198, + 12.966745607880201 + ], + [ + 77.552187710115206, + 12.966685117727801 + ], + [ + 77.552260434231101, + 12.967092236843699 + ], + [ + 77.551822050541901, + 12.967179913581599 + ], + [ + 77.551512123468697, + 12.9672315680938 + ], + [ + 77.551272131013206, + 12.967268178503099 + ], + [ + 77.550927532138999, + 12.967360152724799 + ], + [ + 77.5509050614084, + 12.9673661506845 + ], + [ + 77.550848290261996, + 12.967385334887201 + ], + [ + 77.5509439058292, + 12.967506381150001 + ], + [ + 77.551018573764296, + 12.967601641942601 + ], + [ + 77.551023851034401, + 12.9676069396005 + ], + [ + 77.551047076650406, + 12.967630258814999 + ], + [ + 77.551094581496599, + 12.9676779557005 + ], + [ + 77.551103505417601, + 12.967686916374801 + ], + [ + 77.551123281731194, + 12.967706772098399 + ], + [ + 77.551184834306298, + 12.967768308683301 + ], + [ + 77.551225077672299, + 12.9678085427669 + ], + [ + 77.551301557046997, + 12.9678586396603 + ], + [ + 77.5513532589638, + 12.96789250668 + ], + [ + 77.551368835658295, + 12.967902709410801 + ], + [ + 77.551439649566106, + 12.967949095278099 + ], + [ + 77.551564047167702, + 12.9680305800253 + ], + [ + 77.551565214779401, + 12.9680313455515 + ], + [ + 77.551591981588103, + 12.9680488794332 + ], + [ + 77.551769217054698, + 12.9681136332128 + ], + [ + 77.551808772967206, + 12.968128085499201 + ], + [ + 77.551865911241194, + 12.968148961494601 + ], + [ + 77.551900160135304, + 12.9681615242805 + ], + [ + 77.551922882081598, + 12.968169858994299 + ], + [ + 77.551943441228502, + 12.9681774009017 + ], + [ + 77.552016559622402, + 12.9682042220909 + ], + [ + 77.552017514806295, + 12.968204572298999 + ], + [ + 77.552044422755998, + 12.968214443383101 + ], + [ + 77.552072806481306, + 12.9682248556164 + ], + [ + 77.552104023771605, + 12.968233272309501 + ], + [ + 77.552128431161506, + 12.9682398531119 + ], + [ + 77.552128535542906, + 12.9682398809987 + ], + [ + 77.552128747087593, + 12.968239938551999 + ], + [ + 77.552128811750194, + 12.968239955986901 + ], + [ + 77.552149594336996, + 12.9682455595651 + ], + [ + 77.552154832355399, + 12.968247005216799 + ], + [ + 77.552154861914204, + 12.968247013058001 + ], + [ + 77.552270339498506, + 12.9682788890834 + ], + [ + 77.552329388722001, + 12.968295188251799 + ], + [ + 77.552349816085098, + 12.968300826918499 + ], + [ + 77.552370319201898, + 12.968306486523201 + ], + [ + 77.552646496984707, + 12.968382719509901 + ], + [ + 77.552652918408896, + 12.9683844914336 + ], + [ + 77.552653257446096, + 12.968384584777301 + ], + [ + 77.552695185659005, + 12.968396157792901 + ], + [ + 77.552698616699104, + 12.968397104382801 + ], + [ + 77.552699590398404, + 12.9683973730949 + ], + [ + 77.552726301563894, + 12.9684047470561 + ], + [ + 77.552749686071706, + 12.9684112023117 + ], + [ + 77.552777787571202, + 12.9684189592442 + ], + [ + 77.552819650384905, + 12.9684308030143 + ], + [ + 77.552858588197097, + 12.968441818998 + ], + [ + 77.5529805920238, + 12.9684763374044 + ], + [ + 77.553034557677805, + 12.968491605742599 + ], + [ + 77.553035991533406, + 12.968492010877499 + ], + [ + 77.553059973603993, + 12.9684987963256 + ], + [ + 77.553142278348204, + 12.9685220821101 + ], + [ + 77.553142426169899, + 12.968522124025499 + ], + [ + 77.5531532614241, + 12.968525188837599 + ], + [ + 77.553153285446996, + 12.9685251958295 + ], + [ + 77.553165278331306, + 12.968528588981499 + ], + [ + 77.553211074123894, + 12.968541545092901 + ], + [ + 77.553218345059193, + 12.968543602288801 + ], + [ + 77.553218835639797, + 12.968543741124501 + ], + [ + 77.553222135735993, + 12.9685446745364 + ], + [ + 77.553331857567997, + 12.968575717523301 + ], + [ + 77.553337406392302, + 12.9685772874862 + ], + [ + 77.553455613166904, + 12.9686107316556 + ], + [ + 77.553491484664804, + 12.968620880494001 + ], + [ + 77.553508754684401, + 12.9686254884838 + ], + [ + 77.553529850790497, + 12.9686311177735 + ], + [ + 77.553569731842998, + 12.968641760286101 + ], + [ + 77.553579263787796, + 12.9686443030226 + ], + [ + 77.553579496564794, + 12.968644364883399 + ], + [ + 77.553595925997499, + 12.968648748928301 + ], + [ + 77.553596583688403, + 12.9686489240682 + ], + [ + 77.553806654346303, + 12.9687049807055 + ], + [ + 77.553873593271007, + 12.968722842720799 + ], + [ + 77.553876677596904, + 12.9687236653092 + ], + [ + 77.553891182911499, + 12.968727536084 + ], + [ + 77.554057883645598, + 12.968772018489499 + ], + [ + 77.554119687588596, + 12.968788510608199 + ], + [ + 77.554165530417507, + 12.9688007433036 + ], + [ + 77.554418099281193, + 12.968868140681501 + ], + [ + 77.5544679595709, + 12.968881820062499 + ], + [ + 77.554485653121802, + 12.968886674080601 + ], + [ + 77.554496926879594, + 12.9688890153705 + ], + [ + 77.5545012306996, + 12.968889909094401 + ], + [ + 77.554573047806997, + 12.968908972495999 + ], + [ + 77.554583328777696, + 12.9689117020806 + ], + [ + 77.554938025852806, + 12.969005853919301 + ], + [ + 77.555046712248298, + 12.9690347036403 + ], + [ + 77.555253470653099, + 12.9690895854029 + ], + [ + 77.555260102025798, + 12.969091346158701 + ], + [ + 77.555304716654703, + 12.969103188657201 + ], + [ + 77.555331210718805, + 12.9691102211408 + ], + [ + 77.555331316942997, + 12.9691102490081 + ], + [ + 77.555425778148901, + 12.9691353226904 + ], + [ + 77.555487953582499, + 12.9691518261606 + ], + [ + 77.555553880240495, + 12.969169325417999 + ], + [ + 77.555580247769896, + 12.969176324785201 + ], + [ + 77.555407675065993, + 12.968765197658399 + ], + [ + 77.555371010520602, + 12.968677850831501 + ], + [ + 77.5552615854278, + 12.968417160798801 + ], + [ + 77.555255697810196, + 12.9684032529441 + ], + [ + 77.554973081493202, + 12.967735623313599 + ], + [ + 77.554813768119203, + 12.9673887277019 + ], + [ + 77.554797016668005, + 12.967352252363501 + ], + [ + 77.554806692378804, + 12.9673490304769 + ], + [ + 77.554873906412595, + 12.9673266521788 + ], + [ + 77.554853750784602, + 12.967264339689599 + ], + [ + 77.554844774994606, + 12.9672365922192 + ], + [ + 77.555082179717402, + 12.9671688856195 + ], + [ + 77.555082464460298, + 12.967168804222201 + ], + [ + 77.555152089794106, + 12.9671490095702 + ], + [ + 77.555187934895997, + 12.9671388188638 + ], + [ + 77.555271894016897, + 12.9671149488445 + ], + [ + 77.555340781526098, + 12.967095073757701 + ], + [ + 77.555365598107997, + 12.967100056538399 + ], + [ + 77.555552294821098, + 12.9671375432061 + ], + [ + 77.555761106253399, + 12.9671794707338 + ], + [ + 77.555796561559802, + 12.9671865895449 + ], + [ + 77.555801265687094, + 12.967186543335201 + ], + [ + 77.5558581610224, + 12.967185983529101 + ], + [ + 77.555869099246095, + 12.9671858760777 + ], + [ + 77.555914244774598, + 12.967152683081901 + ], + [ + 77.556019405228696, + 12.9670786558963 + ], + [ + 77.556032926193893, + 12.967069137929 + ], + [ + 77.556041149625301, + 12.967063349084601 + ], + [ + 77.5560506064637, + 12.967054936221601 + ], + [ + 77.556051420788705, + 12.967054212681701 + ], + [ + 77.556100796256999, + 12.9670080143669 + ], + [ + 77.5561353721221, + 12.9669756633083 + ], + [ + 77.556139246534201, + 12.9669720385108 + ], + [ + 77.5562004943815, + 12.966915551494701 + ], + [ + 77.556266484108306, + 12.966854691214101 + ], + [ + 77.556328612557706, + 12.966797391447001 + ], + [ + 77.556387574615002, + 12.966764061740299 + ], + [ + 77.556491886156294, + 12.9667393454276 + ], + [ + 77.556561606369499, + 12.966722825448199 + ], + [ + 77.556716686274498, + 12.966686292573799 + ], + [ + 77.556771019611801, + 12.9666507496294 + ], + [ + 77.556793597455993, + 12.966606484138399 + ], + [ + 77.556811591892597, + 12.966564522333901 + ], + [ + 77.556843300992, + 12.966512261845001 + ], + [ + 77.556880193636601, + 12.966469013013199 + ], + [ + 77.556946278659296, + 12.966391541579201 + ], + [ + 77.5569620288924, + 12.966355248443101 + ], + [ + 77.556971318224697, + 12.9663286433469 + ], + [ + 77.556978250980507, + 12.9663087867571 + ], + [ + 77.556977512331301, + 12.966306006845199 + ], + [ + 77.556973459917202, + 12.9662907646613 + ], + [ + 77.556955380523704, + 12.966213505057199 + ], + [ + 77.556944113267406, + 12.966165353003699 + ], + [ + 77.556944062215095, + 12.9661651348683 + ], + [ + 77.556937338684193, + 12.966136403185899 + ], + [ + 77.556922143651903, + 12.966072222613301 + ], + [ + 77.556914588975104, + 12.966040312597 + ], + [ + 77.556912863711005, + 12.966033023277999 + ], + [ + 77.556912566222806, + 12.9660317667795 + ], + [ + 77.556912357315994, + 12.9660308852495 + ], + [ + 77.556911544736707, + 12.966027451055799 + ], + [ + 77.556911464814505, + 12.966027112140599 + ], + [ + 77.556914940661201, + 12.9660264961569 + ], + [ + 77.556924342909298, + 12.9660248290346 + ], + [ + 77.556958069624898, + 12.9660188491835 + ], + [ + 77.5571137625532, + 12.9659912444378 + ], + [ + 77.557221108629605, + 12.965937279318201 + ], + [ + 77.557232906645993, + 12.9659313487085 + ], + [ + 77.557314061427505, + 12.965866597082 + ], + [ + 77.557370188551502, + 12.9658218148244 + ], + [ + 77.557402375394503, + 12.9657961329744 + ], + [ + 77.557404757539501, + 12.9657942321746 + ], + [ + 77.557462165701693, + 12.9657484272453 + ], + [ + 77.557463628615295, + 12.9657472600537 + ], + [ + 77.557593217714796, + 12.9656825617422 + ], + [ + 77.557627457193703, + 12.9656654678487 + ], + [ + 77.557901210756697, + 12.9655291726021 + ], + [ + 77.557979177612793, + 12.9654903543072 + ], + [ + 77.557981462693903, + 12.9654888718552 + ], + [ + 77.558056963778498, + 12.9654398985163 + ], + [ + 77.558072137203894, + 12.9654317329655 + ], + [ + 77.558102313658296, + 12.9654154947862 + ], + [ + 77.558153413342694, + 12.9653879970968 + ], + [ + 77.558313488227697, + 12.9653018578617 + ], + [ + 77.558418445695693, + 12.965205962847801 + ], + [ + 77.558524933920296, + 12.965090854272001 + ], + [ + 77.558544613440205, + 12.9649550314011 + ], + [ + 77.558516067525503, + 12.964732101400999 + ], + [ + 77.558370619293797, + 12.963818632132501 + ], + [ + 77.558232694464806, + 12.9633572355919 + ], + [ + 77.557736893501101, + 12.963632603387 + ], + [ + 77.556668466204499, + 12.9640470059952 + ], + [ + 77.556660260470295, + 12.9640501881867 + ], + [ + 77.556661000800801, + 12.964053043975801 + ], + [ + 77.556648852311298, + 12.964057394226 + ], + [ + 77.556537401201595, + 12.964097305356599 + ], + [ + 77.556513000505106, + 12.964106043907201 + ], + [ + 77.556487509397499, + 12.9641126456448 + ], + [ + 77.556460837670599, + 12.964119552602501 + ], + [ + 77.556392383292106, + 12.964137279666 + ], + [ + 77.556262000479094, + 12.964171043413501 + ], + [ + 77.556231364306996, + 12.964179432116801 + ], + [ + 77.556169672155093, + 12.964196325666199 + ], + [ + 77.556116198025194, + 12.964210969275699 + ], + [ + 77.556018818144196, + 12.964237635507899 + ], + [ + 77.555950127858097, + 12.9642564453207 + ], + [ + 77.555843207063504, + 12.964285723143901 + ], + [ + 77.555740413161203, + 12.9643153588231 + ], + [ + 77.555325069090401, + 12.9644351003429 + ], + [ + 77.555325568443493, + 12.9644376332589 + ], + [ + 77.555264565232093, + 12.964473751805 + ], + [ + 77.555261070155694, + 12.9644758216197 + ], + [ + 77.555261074789996, + 12.9644759146305 + ], + [ + 77.555219083143399, + 12.9645008369235 + ], + [ + 77.555208993605802, + 12.964506824746699 + ], + [ + 77.555073154897599, + 12.9645829912279 + ], + [ + 77.554993744398601, + 12.9646275173655 + ], + [ + 77.554976925216707, + 12.9646372673113 + ], + [ + 77.554838283675906, + 12.9647176370067 + ], + [ + 77.554809443964402, + 12.964734354995199 + ], + [ + 77.554784993598005, + 12.9647429348831 + ], + [ + 77.554774057620705, + 12.964746772636 + ], + [ + 77.554757253448997, + 12.964752670067799 + ], + [ + 77.554715541788596, + 12.964767308167399 + ], + [ + 77.554678143882597, + 12.964776037646001 + ], + [ + 77.554766306962094, + 12.965091090904 + ], + [ + 77.554480998061393, + 12.9651811081507 + ], + [ + 77.553666265692698, + 12.965461839903201 + ], + [ + 77.553345865322896, + 12.9655594857302 + ], + [ + 77.552997239206306, + 12.965685357304 + ], + [ + 77.552759227503103, + 12.965751725952 + ], + [ + 77.552369025624301, + 12.9658669175135 + ], + [ + 77.552002399930998, + 12.965977888533899 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "303", + "group": "DHRAMARAYA SWAMY TEMPLE", + "Corporatio": "Central", + "ac_no": "169", + "ac": "Chickpet", + "corporat_1": "1", + "ward_id": "25", + "ward_name": "25 - Dharmaraya Swamy Temple Ward", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಿಕ್ಕಪೇಟೆ", + "ward_name_": "ಧರ್ಮರಾಯ ಸ್ವಾಮಿ ದೇವಸ್ಥಾನ ವಾರ್ಡ್", + "dig_ward_n": "DHRAMARAYA SWAMY TEMPLE", + "Assembly": "169 - Chickpet", + "Slno": "25" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.585233620815998, + 12.9638562143775 + ], + [ + 77.584059795418895, + 12.963570440131599 + ], + [ + 77.583031929986205, + 12.9633906789124 + ], + [ + 77.582041485878506, + 12.963374869949 + ], + [ + 77.579832085319197, + 12.9636035075081 + ], + [ + 77.578858930978896, + 12.9636195540863 + ], + [ + 77.578242416486802, + 12.963709419728399 + ], + [ + 77.576852778669306, + 12.9641597749208 + ], + [ + 77.576931111395098, + 12.964328765444399 + ], + [ + 77.576997603881296, + 12.9644681411542 + ], + [ + 77.577092956800001, + 12.9646704731519 + ], + [ + 77.577314523108498, + 12.965136083125101 + ], + [ + 77.577324965005502, + 12.965158026494001 + ], + [ + 77.577368498972206, + 12.965249510987199 + ], + [ + 77.577368950928602, + 12.965250461453 + ], + [ + 77.577513072223297, + 12.9655970846055 + ], + [ + 77.577823811733595, + 12.966262881315201 + ], + [ + 77.577979716110804, + 12.966582640726299 + ], + [ + 77.578054997382594, + 12.966736608937801 + ], + [ + 77.578212248990397, + 12.967043917014101 + ], + [ + 77.578376401504698, + 12.967364707305 + ], + [ + 77.578459514861805, + 12.9675352608289 + ], + [ + 77.578473627462401, + 12.967564220025601 + ], + [ + 77.578543445215004, + 12.9677074902283 + ], + [ + 77.578665582673906, + 12.967958339915199 + ], + [ + 77.578676964131404, + 12.9679816706119 + ], + [ + 77.580910868154504, + 12.9667545508772 + ], + [ + 77.581059532675297, + 12.966654826654 + ], + [ + 77.581269445744198, + 12.966520615606401 + ], + [ + 77.581295223726002, + 12.966507983863901 + ], + [ + 77.581346905729902, + 12.966606286139699 + ], + [ + 77.581800362486007, + 12.967437443680399 + ], + [ + 77.581820311906299, + 12.967473795399499 + ], + [ + 77.581823121862101, + 12.967478916236001 + ], + [ + 77.581846298088905, + 12.9675211480606 + ], + [ + 77.581903798733904, + 12.967625602668701 + ], + [ + 77.581955838637597, + 12.967703008163801 + ], + [ + 77.581961902602899, + 12.9677121811691 + ], + [ + 77.5820400229386, + 12.9678303495305 + ], + [ + 77.582088605803094, + 12.9679038367311 + ], + [ + 77.582200099191098, + 12.9681240365554 + ], + [ + 77.582200349330293, + 12.968124530966101 + ], + [ + 77.582237278134897, + 12.9681974661476 + ], + [ + 77.582337800646002, + 12.9683959981779 + ], + [ + 77.582340443216495, + 12.9684010538114 + ], + [ + 77.582343085777794, + 12.9684061085416 + ], + [ + 77.582348427661998, + 12.968422342778799 + ], + [ + 77.58235795217, + 12.9684512912029 + ], + [ + 77.582366215597105, + 12.9684764043824 + ], + [ + 77.582371263598404, + 12.9684917435138 + ], + [ + 77.582374331603702, + 12.9685010682068 + ], + [ + 77.582405618381401, + 12.9685961548424 + ], + [ + 77.582416790069303, + 12.9686301082439 + ], + [ + 77.582433445402998, + 12.968681890853301 + ], + [ + 77.582444678181304, + 12.9687110517868 + ], + [ + 77.582613291252599, + 12.9691487662143 + ], + [ + 77.582600132938197, + 12.9691568028713 + ], + [ + 77.582978609252194, + 12.970125327265899 + ], + [ + 77.582791235068996, + 12.970323639974 + ], + [ + 77.582791235438194, + 12.970323686496201 + ], + [ + 77.582835629485501, + 12.97038540384 + ], + [ + 77.582837487769297, + 12.970667122003899 + ], + [ + 77.582838370809199, + 12.9708009256587 + ], + [ + 77.582838581907296, + 12.9708328828267 + ], + [ + 77.582841745822407, + 12.9713124075297 + ], + [ + 77.582841746191505, + 12.9713124540392 + ], + [ + 77.582870819992706, + 12.9718427428399 + ], + [ + 77.582870820361805, + 12.9718427893505 + ], + [ + 77.583553233756206, + 12.971189341573099 + ], + [ + 77.583666707989707, + 12.971080658789001 + ], + [ + 77.583783924435195, + 12.9709462367914 + ], + [ + 77.584443661160094, + 12.9703626921549 + ], + [ + 77.584451453345807, + 12.970355802787999 + ], + [ + 77.584421274811902, + 12.9699603767497 + ], + [ + 77.584416827971097, + 12.9699021218751 + ], + [ + 77.584361852010503, + 12.968704478286099 + ], + [ + 77.584499966809204, + 12.968586788121801 + ], + [ + 77.584770478274294, + 12.968299516596099 + ], + [ + 77.584825125851296, + 12.9682391206688 + ], + [ + 77.584948673071295, + 12.968104635569199 + ], + [ + 77.585012438198504, + 12.9680351146152 + ], + [ + 77.585060226288604, + 12.9679743432267 + ], + [ + 77.585084041230601, + 12.9679440590503 + ], + [ + 77.585144846200606, + 12.967866662384001 + ], + [ + 77.585290879743894, + 12.9677353416442 + ], + [ + 77.586364890825195, + 12.9672582658278 + ], + [ + 77.587439788020802, + 12.966811668546599 + ], + [ + 77.586943852998203, + 12.9661774634486 + ], + [ + 77.586795321490499, + 12.965987799402001 + ], + [ + 77.586623545129697, + 12.9657684534069 + ], + [ + 77.586734880260394, + 12.9655109955541 + ], + [ + 77.586779711944899, + 12.9654757629228 + ], + [ + 77.586779997035904, + 12.965475538745901 + ], + [ + 77.587416212556704, + 12.9649768386932 + ], + [ + 77.587904504731, + 12.964593667832901 + ], + [ + 77.588629236159804, + 12.963969862484401 + ], + [ + 77.588868905246997, + 12.9637630753362 + ], + [ + 77.589288127035502, + 12.963326383450999 + ], + [ + 77.589360664243102, + 12.9632515490841 + ], + [ + 77.589362181797796, + 12.9632499836849 + ], + [ + 77.589573948692603, + 12.9630174998698 + ], + [ + 77.589706958074103, + 12.9629246300745 + ], + [ + 77.589802017630205, + 12.962858258069801 + ], + [ + 77.589884282079794, + 12.9628316824259 + ], + [ + 77.589921991160793, + 12.962819500137901 + ], + [ + 77.589949790282404, + 12.962810519773999 + ], + [ + 77.589987525061403, + 12.9627983290909 + ], + [ + 77.590029247146603, + 12.962784851074399 + ], + [ + 77.590148731956006, + 12.9627433821796 + ], + [ + 77.590163171905004, + 12.9627383707461 + ], + [ + 77.590300592776302, + 12.9626906774786 + ], + [ + 77.590411380093798, + 12.9626767423823 + ], + [ + 77.590749077737399, + 12.9626342657574 + ], + [ + 77.590901443202895, + 12.9626146802458 + ], + [ + 77.5910827341431, + 12.9625921559911 + ], + [ + 77.591168152717103, + 12.962581543933201 + ], + [ + 77.591162498646696, + 12.962533223874599 + ], + [ + 77.591151809907004, + 12.962441869923801 + ], + [ + 77.591132380846304, + 12.9622758155512 + ], + [ + 77.591109793831606, + 12.962082769898601 + ], + [ + 77.590969111768601, + 12.9615686635073 + ], + [ + 77.591556044418098, + 12.9614117811856 + ], + [ + 77.591388648952602, + 12.960681551506401 + ], + [ + 77.590740152521406, + 12.960852511954499 + ], + [ + 77.590687435372999, + 12.9606557224936 + ], + [ + 77.589973430239795, + 12.960863930383001 + ], + [ + 77.589654187886595, + 12.9598677061157 + ], + [ + 77.589398438668596, + 12.959051741248199 + ], + [ + 77.588521115940196, + 12.959251480756301 + ], + [ + 77.587191006054795, + 12.9595382484105 + ], + [ + 77.587860332903205, + 12.960539615935 + ], + [ + 77.588247793668401, + 12.9610443229481 + ], + [ + 77.5876678243296, + 12.961091575460101 + ], + [ + 77.585845024370002, + 12.9612666335104 + ], + [ + 77.584152861419696, + 12.9614941036007 + ], + [ + 77.584153851885105, + 12.961495998222301 + ], + [ + 77.584429191546207, + 12.962011614022799 + ], + [ + 77.585233907218395, + 12.963856295552301 + ], + [ + 77.585233620815998, + 12.9638562143775 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "308", + "group": "KANKANPALYA", + "Corporatio": "Central", + "ac_no": "169", + "ac": "Chickpet", + "corporat_1": "1", + "ward_id": "60", + "ward_name": "60 - Kanakanpalya", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಿಕ್ಕಪೇಟೆ", + "ward_name_": "ಕನಕನಪಾಳ್ಯ", + "dig_ward_n": "KANKANPALYA", + "Assembly": "169 - Chickpet", + "Slno": "60" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.589827518749303, + 12.9457609964282 + ], + [ + 77.590469206733502, + 12.9458430386928 + ], + [ + 77.590231057366793, + 12.9452748228284 + ], + [ + 77.590812111415005, + 12.9450756035215 + ], + [ + 77.590455093860101, + 12.9442608711528 + ], + [ + 77.590532905378495, + 12.9442212025356 + ], + [ + 77.590391013786203, + 12.9439008021658 + ], + [ + 77.590775494229803, + 12.943720767672399 + ], + [ + 77.590542059674704, + 12.943337812944799 + ], + [ + 77.590090285254902, + 12.943153246626901 + ], + [ + 77.590921244176599, + 12.9426933810701 + ], + [ + 77.590921244176599, + 12.9426933810701 + ], + [ + 77.591311401991106, + 12.9424773090947 + ], + [ + 77.5915555165586, + 12.9429807953899 + ], + [ + 77.591621122348499, + 12.942954858217201 + ], + [ + 77.591737839626106, + 12.9432050756488 + ], + [ + 77.591695882434806, + 12.943222621383301 + ], + [ + 77.591695076764694, + 12.94323142178 + ], + [ + 77.591698659503393, + 12.943229713733 + ], + [ + 77.591770261092094, + 12.9433988415866 + ], + [ + 77.591648203808404, + 12.9434705502408 + ], + [ + 77.591848072610404, + 12.9440793109433 + ], + [ + 77.591849598326505, + 12.9442761283133 + ], + [ + 77.5918938440918, + 12.944433277066 + ], + [ + 77.592224924473896, + 12.9443447855353 + ], + [ + 77.592205090165294, + 12.944236459696 + ], + [ + 77.593512543729702, + 12.9441901385529 + ], + [ + 77.593512742927601, + 12.9442001131842 + ], + [ + 77.594228191384602, + 12.9443029091727 + ], + [ + 77.5945276502148, + 12.944350069945299 + ], + [ + 77.594571269600706, + 12.9441409460262 + ], + [ + 77.594782224363797, + 12.9435540793922 + ], + [ + 77.594526422898596, + 12.9429944590243 + ], + [ + 77.594231151308904, + 12.942529157894599 + ], + [ + 77.594034818841095, + 12.942223479261999 + ], + [ + 77.5940339881451, + 12.942221977887201 + ], + [ + 77.593870591997103, + 12.942027110203099 + ], + [ + 77.593855094147699, + 12.942008626537 + ], + [ + 77.593444355159505, + 12.9415279945918 + ], + [ + 77.593226092106306, + 12.9412975311356 + ], + [ + 77.593216777098405, + 12.9412874601417 + ], + [ + 77.593000253003595, + 12.941058108413699 + ], + [ + 77.592981047406198, + 12.9410379721281 + ], + [ + 77.592860596922193, + 12.9409103898316 + ], + [ + 77.592650441679893, + 12.9406877907747 + ], + [ + 77.592599110174703, + 12.9406228021028 + ], + [ + 77.592558046435798, + 12.940548676921299 + ], + [ + 77.592543356090303, + 12.940464125760201 + ], + [ + 77.592556433911597, + 12.9400585781123 + ], + [ + 77.592576745329296, + 12.9395174428929 + ], + [ + 77.592598188113499, + 12.9389377386075 + ], + [ + 77.592609590734895, + 12.938629488861899 + ], + [ + 77.592613662419794, + 12.9385221651604 + ], + [ + 77.592614699659194, + 12.938522888436999 + ], + [ + 77.592607626428205, + 12.938504058862099 + ], + [ + 77.592700242376793, + 12.9362051160784 + ], + [ + 77.591741410916597, + 12.936338870830999 + ], + [ + 77.591604424376897, + 12.9363878508022 + ], + [ + 77.591306086703696, + 12.936494523331 + ], + [ + 77.591041939572904, + 12.9366699309276 + ], + [ + 77.590624399504307, + 12.9362065500497 + ], + [ + 77.590556237008499, + 12.9361281763292 + ], + [ + 77.590116116259495, + 12.936321141428801 + ], + [ + 77.589936661911096, + 12.9354996647438 + ], + [ + 77.589625479532899, + 12.935524211907699 + ], + [ + 77.589622601493204, + 12.935524240488901 + ], + [ + 77.589555756542794, + 12.935573464187801 + ], + [ + 77.589519010865999, + 12.935582863488101 + ], + [ + 77.589450520636802, + 12.935640008602601 + ], + [ + 77.589383698927094, + 12.9356914906373 + ], + [ + 77.5893226216199, + 12.935741786318999 + ], + [ + 77.589244206100005, + 12.9357854783524 + ], + [ + 77.589201233563301, + 12.9358051031441 + ], + [ + 77.589172534700793, + 12.9358132932038 + ], + [ + 77.589148934738802, + 12.935813527533099 + ], + [ + 77.589134521210298, + 12.9358114120473 + ], + [ + 77.589112554845101, + 12.9358025957533 + ], + [ + 77.589061458438195, + 12.9357601896857 + ], + [ + 77.588886883454407, + 12.935634312030199 + ], + [ + 77.588729432388803, + 12.9355500483416 + ], + [ + 77.588388175952602, + 12.935449540247999 + ], + [ + 77.587937778382297, + 12.9352044349944 + ], + [ + 77.587866041917707, + 12.935170138572399 + ], + [ + 77.587816458102694, + 12.935162725519801 + ], + [ + 77.587748559656305, + 12.935165657910201 + ], + [ + 77.587703133211093, + 12.9351706258929 + ], + [ + 77.587629159287502, + 12.9351984631673 + ], + [ + 77.587553668149198, + 12.935246642901101 + ], + [ + 77.587216644351699, + 12.9355006917925 + ], + [ + 77.586708688438904, + 12.935870495521399 + ], + [ + 77.586648831511496, + 12.935927554384 + ], + [ + 77.586559333874305, + 12.9360131398064 + ], + [ + 77.586434818386707, + 12.9362199078772 + ], + [ + 77.586362810107701, + 12.9363267765237 + ], + [ + 77.586272021317399, + 12.9363988230683 + ], + [ + 77.586138544079304, + 12.9364622585629 + ], + [ + 77.585730704064105, + 12.936604078158499 + ], + [ + 77.585296244777098, + 12.9366208084964 + ], + [ + 77.585267475791497, + 12.9366222230412 + ], + [ + 77.585108066038103, + 12.9366271914261 + ], + [ + 77.585024530286603, + 12.9366294407216 + ], + [ + 77.584908938986999, + 12.936632553454 + ], + [ + 77.584515301306396, + 12.9366443606026 + ], + [ + 77.584001383598803, + 12.9366596177743 + ], + [ + 77.584001391804605, + 12.936659877884599 + ], + [ + 77.584049383331802, + 12.939872754277699 + ], + [ + 77.584049384170399, + 12.939873014461 + ], + [ + 77.584057627920501, + 12.940424928286699 + ], + [ + 77.584099835820297, + 12.9416385688193 + ], + [ + 77.584088988698596, + 12.9418847150411 + ], + [ + 77.5841740968838, + 12.9420916447463 + ], + [ + 77.584325956586696, + 12.9423619883933 + ], + [ + 77.584476415969107, + 12.9428389052526 + ], + [ + 77.584017230816997, + 12.9429660896293 + ], + [ + 77.583730593682603, + 12.9430225575194 + ], + [ + 77.583218849519497, + 12.9431208410079 + ], + [ + 77.582894675950797, + 12.9432252814176 + ], + [ + 77.582899142893993, + 12.943636942383 + ], + [ + 77.585124606525596, + 12.9436490328148 + ], + [ + 77.585126298482507, + 12.9436456281238 + ], + [ + 77.585127990439304, + 12.9436422234328 + ], + [ + 77.585129682396101, + 12.9436388187418 + ], + [ + 77.585131961624498, + 12.9436365375281 + ], + [ + 77.585133653581295, + 12.9436331328371 + ], + [ + 77.585135921166497, + 12.943629722436199 + ], + [ + 77.585138200394795, + 12.9436274412225 + ], + [ + 77.585140467979997, + 12.943624030821599 + ], + [ + 77.585142747208195, + 12.9436217496078 + ], + [ + 77.585145602064898, + 12.9436194626842 + ], + [ + 77.585147881292997, + 12.943617181470399 + ], + [ + 77.585149584892505, + 12.9436149059665 + ], + [ + 77.585151864120505, + 12.943612624752699 + ], + [ + 77.585154718976995, + 12.9436103378289 + ], + [ + 77.585157573833499, + 12.943608050905199 + ], + [ + 77.585161015961603, + 12.943606887458699 + ], + [ + 77.585163870817993, + 12.943604600534901 + ], + [ + 77.585166725674199, + 12.9436023136111 + ], + [ + 77.585170167802204, + 12.943601150164399 + ], + [ + 77.5851735982869, + 12.9435988575307 + ], + [ + 77.585176464786201, + 12.9435976997939 + ], + [ + 77.585179906913993, + 12.943596536347201 + ], + [ + 77.585183349041799, + 12.943595372900401 + ], + [ + 77.585186779526296, + 12.943593080266499 + ], + [ + 77.585190233297197, + 12.943593046006701 + ], + [ + 77.585194251053395, + 12.943591876849901 + ], + [ + 77.585197693181001, + 12.9435907134029 + ], + [ + 77.585201135308495, + 12.943589549955901 + ], + [ + 77.585204589079396, + 12.943589515696001 + ], + [ + 77.585208606835394, + 12.943588346539 + ], + [ + 77.585212060606196, + 12.9435883122789 + ], + [ + 77.585215514376898, + 12.943588278018799 + ], + [ + 77.585219543776205, + 12.943588238048701 + ], + [ + 77.585222997546893, + 12.9435882037886 + ], + [ + 77.585226451317695, + 12.943588169528301 + ], + [ + 77.585232219245697, + 12.943589241614999 + ], + [ + 77.585235673016498, + 12.9435892073546 + ], + [ + 77.585239714059099, + 12.9435902965712 + ], + [ + 77.585244906358696, + 12.9435913743676 + ], + [ + 77.585248371773005, + 12.943592469294099 + ], + [ + 77.585251825543693, + 12.943592435033599 + ], + [ + 77.585255302601595, + 12.943594659147101 + ], + [ + 77.585258768015905, + 12.943595754073501 + ], + [ + 77.585263971959193, + 12.943597961056501 + ], + [ + 77.585268600274105, + 12.9436001737495 + ], + [ + 77.585273804217593, + 12.9436023807322 + ], + [ + 77.585276705647303, + 12.9436046105555 + ], + [ + 77.585279607076998, + 12.9436068403788 + ], + [ + 77.585283072491507, + 12.943607935304801 + ], + [ + 77.585285973921302, + 12.9436101651279 + ], + [ + 77.585288875351097, + 12.943612394951 + ], + [ + 77.585291212796207, + 12.9436157596713 + ], + [ + 77.585294114226201, + 12.943617989494401 + ], + [ + 77.585296440027605, + 12.9436202250275 + ], + [ + 77.585299341457699, + 12.9436224548505 + ], + [ + 77.585301678903093, + 12.943625819570601 + ], + [ + 77.585304004704696, + 12.9436280551037 + ], + [ + 77.585305766521699, + 12.943631425534001 + ], + [ + 77.585308103967293, + 12.9436347902541 + ], + [ + 77.585309854140505, + 12.943637031497399 + ], + [ + 77.585311615957593, + 12.943640401927601 + ], + [ + 77.585313377774796, + 12.943643772357801 + ], + [ + 77.585315139591998, + 12.943647142788 + ], + [ + 77.5853169014093, + 12.9436505132182 + ], + [ + 77.585318087598097, + 12.9436538893586 + ], + [ + 77.585319273786894, + 12.943657265499001 + ], + [ + 77.585320459975705, + 12.943660641639401 + ], + [ + 77.585321646164601, + 12.943664017779801 + ], + [ + 77.585322832353498, + 12.943667393920199 + ], + [ + 77.585323442913904, + 12.9436707757708 + ], + [ + 77.585324053474295, + 12.9436741576215 + ], + [ + 77.585324664034701, + 12.9436775394721 + ], + [ + 77.585325274595107, + 12.9436809213227 + ], + [ + 77.585325321170899, + 12.943685438070601 + ], + [ + 77.5853253561028, + 12.943688825631501 + ], + [ + 77.585325391034601, + 12.943692213192501 + ], + [ + 77.585325425966502, + 12.943695600753401 + ], + [ + 77.585325460898403, + 12.943698988314299 + ], + [ + 77.585324920201501, + 12.9437023815856 + ], + [ + 77.585324391148703, + 12.9437069040438 + ], + [ + 77.5853238504519, + 12.943710297315 + ], + [ + 77.585323309755097, + 12.9437136905862 + ], + [ + 77.585322193429604, + 12.9437170895678 + ], + [ + 77.585321077103998, + 12.9437204885493 + ], + [ + 77.585319960778506, + 12.943723887530901 + ], + [ + 77.5853188444529, + 12.9437272865124 + ], + [ + 77.585317728127293, + 12.9437306854939 + ], + [ + 77.585316036172898, + 12.943734090185799 + ], + [ + 77.585314344218403, + 12.943737494877601 + ], + [ + 77.585312652263994, + 12.9437408995694 + ], + [ + 77.585310948665594, + 12.9437431750743 + ], + [ + 77.585309256711, + 12.943746579766101 + ], + [ + 77.585306989127602, + 12.9437499901683 + ], + [ + 77.585305285529103, + 12.943752265673099 + ], + [ + 77.585303017945606, + 12.943755676075201 + ], + [ + 77.585300738718203, + 12.9437579572903 + ], + [ + 77.585297895505803, + 12.9437613734026 + ], + [ + 77.585295616278202, + 12.943763654617699 + ], + [ + 77.585292761421798, + 12.943765941543001 + ], + [ + 77.585290482194196, + 12.9437682227581 + ], + [ + 77.585287627337706, + 12.9437705096834 + ], + [ + 77.585284772481202, + 12.9437727966086 + ], + [ + 77.585281341995696, + 12.943775089244101 + ], + [ + 77.585278487139007, + 12.943777376169299 + ], + [ + 77.585275632282205, + 12.943779663094499 + ], + [ + 77.585272190152807, + 12.9437808265429 + ], + [ + 77.585269335295905, + 12.943783113467999 + ], + [ + 77.585265893166394, + 12.943784276916301 + ], + [ + 77.585262451036797, + 12.9437854403646 + ], + [ + 77.585259020550893, + 12.9437877329998 + ], + [ + 77.585255578421197, + 12.943788896448 + ], + [ + 77.585252136291501, + 12.9437900598962 + ], + [ + 77.585248694161805, + 12.9437912233443 + ], + [ + 77.585245240388204, + 12.9437912576053 + ], + [ + 77.585241798258394, + 12.9437924210534 + ], + [ + 77.585237780499597, + 12.9437935902115 + ], + [ + 77.585234326726095, + 12.9437936244724 + ], + [ + 77.585230872952494, + 12.9437936587333 + ], + [ + 77.585226855193596, + 12.943794827891301 + ], + [ + 77.585223401419896, + 12.943794862152 + ], + [ + 77.585219947646394, + 12.943794896412699 + ], + [ + 77.585215918243804, + 12.943794936383499 + ], + [ + 77.585212452826596, + 12.943793841457 + ], + [ + 77.585208423424007, + 12.9437938814277 + ], + [ + 77.585205545279393, + 12.943793909978099 + ], + [ + 77.585287413637303, + 12.944308059789201 + ], + [ + 77.585319442427306, + 12.9445110164877 + ], + [ + 77.585433467096607, + 12.944738004332301 + ], + [ + 77.585552789148096, + 12.9449762325488 + ], + [ + 77.585643903727998, + 12.945102939644 + ], + [ + 77.585814445823104, + 12.9453395301295 + ], + [ + 77.586130663084603, + 12.9455227268434 + ], + [ + 77.586295720237402, + 12.945618208614199 + ], + [ + 77.586866927183607, + 12.945853079769799 + ], + [ + 77.587084485074897, + 12.945918480056999 + ], + [ + 77.587270588198095, + 12.945974424465 + ], + [ + 77.587469247000598, + 12.9460345633955 + ], + [ + 77.587769333864301, + 12.9461049878757 + ], + [ + 77.587962660568095, + 12.946150498440501 + ], + [ + 77.587999594351501, + 12.9461591660127 + ], + [ + 77.588171261208402, + 12.9457817520889 + ], + [ + 77.589830358271996, + 12.945768615907699 + ], + [ + 77.589827518749303, + 12.9457609964282 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "309", + "group": "DR.A.P.J. ABDUL KALAM", + "Corporatio": "Central", + "ac_no": "169", + "ac": "Chickpet", + "corporat_1": "1", + "ward_id": "63", + "ward_name": "63 - BHEL Ward", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಿಕ್ಕಪೇಟೆ", + "ward_name_": "ಬಿಎಚ್‌ಇಎಲ್ ವಾರ್ಡ್", + "dig_ward_n": "DR.A.P.J. ABDUL KALAM", + "Assembly": "169 - Chickpet", + "Slno": "63" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.592498337554602, + 12.9284748237465 + ], + [ + 77.592499321317206, + 12.928514339391899 + ], + [ + 77.592507533816104, + 12.928807875192801 + ], + [ + 77.592509804171002, + 12.9288932166974 + ], + [ + 77.592513179915201, + 12.9290201270544 + ], + [ + 77.592519739874206, + 12.929265119462499 + ], + [ + 77.592520844754901, + 12.9293051226611 + ], + [ + 77.592528936399702, + 12.929598170879199 + ], + [ + 77.592537090900805, + 12.929886060735599 + ], + [ + 77.592541765067693, + 12.9300599261147 + ], + [ + 77.592541794690902, + 12.930063596489299 + ], + [ + 77.592543778844302, + 12.930310610165799 + ], + [ + 77.5925509263745, + 12.9305567260005 + ], + [ + 77.592559358774807, + 12.9307965953364 + ], + [ + 77.592570491283496, + 12.9311132752317 + ], + [ + 77.592578972847903, + 12.9314327821214 + ], + [ + 77.592583962849801, + 12.9316138347967 + ], + [ + 77.592583968540097, + 12.9316140289793 + ], + [ + 77.592613044062801, + 12.932669024133601 + ], + [ + 77.592635906027695, + 12.9331788011025 + ], + [ + 77.592686347435603, + 12.9343035178811 + ], + [ + 77.592698011320607, + 12.934485218767 + ], + [ + 77.592708924612495, + 12.9346499876526 + ], + [ + 77.592711510775203, + 12.9347360703962 + ], + [ + 77.592715944907297, + 12.9348836823631 + ], + [ + 77.592728052599099, + 12.9352754280798 + ], + [ + 77.592727640364998, + 12.9352912423377 + ], + [ + 77.592723518032301, + 12.935449384916099 + ], + [ + 77.592714946655704, + 12.9357340530016 + ], + [ + 77.592704703074205, + 12.9360797197529 + ], + [ + 77.592703796929996, + 12.9361034440008 + ], + [ + 77.592700242376793, + 12.9362051160784 + ], + [ + 77.592607626428205, + 12.938504058862099 + ], + [ + 77.592614699659194, + 12.938522888436999 + ], + [ + 77.592865898606206, + 12.9386980855815 + ], + [ + 77.593066508547096, + 12.9388361231102 + ], + [ + 77.593172404210804, + 12.9389096539698 + ], + [ + 77.594091081005999, + 12.939547550268401 + ], + [ + 77.594096837157295, + 12.939547492989799 + ], + [ + 77.595889666599902, + 12.9397317903146 + ], + [ + 77.595921524105194, + 12.9397506710811 + ], + [ + 77.596117031537901, + 12.9397848615528 + ], + [ + 77.596260006089196, + 12.9398048942457 + ], + [ + 77.596478421244996, + 12.939827563344499 + ], + [ + 77.596824657923804, + 12.939852346864299 + ], + [ + 77.596931357084003, + 12.9398716112344 + ], + [ + 77.596950422521303, + 12.939878197064401 + ], + [ + 77.597666589602497, + 12.9399365605697 + ], + [ + 77.597771449134399, + 12.9396702709849 + ], + [ + 77.597812384511201, + 12.9395663168577 + ], + [ + 77.597843217041401, + 12.9394880170408 + ], + [ + 77.597863472014097, + 12.939436580542999 + ], + [ + 77.598068372365503, + 12.9390438042812 + ], + [ + 77.5984739009495, + 12.938401712476599 + ], + [ + 77.598581991790695, + 12.938277542286199 + ], + [ + 77.598586221441295, + 12.938272661337599 + ], + [ + 77.598753790380798, + 12.938079333073601 + ], + [ + 77.599093190043604, + 12.937777816799599 + ], + [ + 77.599376948430901, + 12.937606723482 + ], + [ + 77.599671286577603, + 12.937512315340699 + ], + [ + 77.599933497615297, + 12.9374283926975 + ], + [ + 77.600378691153495, + 12.937336997570201 + ], + [ + 77.600484392158805, + 12.9373156161188 + ], + [ + 77.601600928441798, + 12.9371071428292 + ], + [ + 77.601698425038094, + 12.937088939746699 + ], + [ + 77.601693515692901, + 12.937059627201201 + ], + [ + 77.601458206034295, + 12.9357407058404 + ], + [ + 77.601142682210806, + 12.9340691159247 + ], + [ + 77.601064721243105, + 12.9336565731953 + ], + [ + 77.6009960170407, + 12.9332484552321 + ], + [ + 77.600979404653401, + 12.933149617356801 + ], + [ + 77.600786818841797, + 12.9320038044642 + ], + [ + 77.600704632948805, + 12.9315167702817 + ], + [ + 77.600702972229001, + 12.931356427532799 + ], + [ + 77.600702230078895, + 12.9313392055669 + ], + [ + 77.600698156137398, + 12.931244533912 + ], + [ + 77.600676496529104, + 12.930741164699301 + ], + [ + 77.600675674787695, + 12.930722038185699 + ], + [ + 77.600658107320598, + 12.930582181247001 + ], + [ + 77.600656521314306, + 12.9305696510877 + ], + [ + 77.600599169521303, + 12.9301163716229 + ], + [ + 77.600589157377101, + 12.9299278798233 + ], + [ + 77.600544551917196, + 12.9291547970872 + ], + [ + 77.600539339700305, + 12.929064468707599 + ], + [ + 77.600521827411598, + 12.9287631225166 + ], + [ + 77.600512618012203, + 12.9287632143139 + ], + [ + 77.600510317112196, + 12.9287079019781 + ], + [ + 77.600503261878202, + 12.9285006570147 + ], + [ + 77.600496250640802, + 12.928294720682301 + ], + [ + 77.599084546806097, + 12.9283291150909 + ], + [ + 77.598545878954596, + 12.928342385776901 + ], + [ + 77.598027931983097, + 12.9283554490212 + ], + [ + 77.597471031383407, + 12.928368955074101 + ], + [ + 77.597158922789703, + 12.928376523342401 + ], + [ + 77.596634055233096, + 12.928389034778 + ], + [ + 77.596426879591306, + 12.928393973172399 + ], + [ + 77.595929641090606, + 12.9284056968937 + ], + [ + 77.595432977945507, + 12.9284174139491 + ], + [ + 77.595361029317502, + 12.9284181296853 + ], + [ + 77.594843069259795, + 12.9284288251911 + ], + [ + 77.594727951237005, + 12.928431202389699 + ], + [ + 77.594176594849799, + 12.928442331705099 + ], + [ + 77.594174329543705, + 12.928442375008601 + ], + [ + 77.593623355420206, + 12.9284529094143 + ], + [ + 77.593561347701595, + 12.928454094997299 + ], + [ + 77.592878192221207, + 12.9284676610402 + ], + [ + 77.592498337554602, + 12.9284748237465 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "310", + "group": "ASHOKA PILLAR", + "Corporatio": "Central", + "ac_no": "169", + "ac": "Chickpet", + "corporat_1": "1", + "ward_id": "59", + "ward_name": "59 - Ashoka Pillar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಚಿಕ್ಕಪೇಟೆ", + "ward_name_": "ಅಶೋಕ ಪಿಲ್ಲರ್‌", + "dig_ward_n": "ASHOKA PILLAR", + "Assembly": "169 - Chickpet", + "Slno": "59" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.582736918071006, + 12.9367706128533 + ], + [ + 77.582744206717507, + 12.9366958393875 + ], + [ + 77.581830598932001, + 12.9367229055682 + ], + [ + 77.580089137336898, + 12.936774022444901 + ], + [ + 77.580036975549405, + 12.936774538584499 + ], + [ + 77.580101477057994, + 12.937477180430699 + ], + [ + 77.580107845172606, + 12.9374776947159 + ], + [ + 77.580065840288, + 12.9406489269309 + ], + [ + 77.579273489261396, + 12.9406638126333 + ], + [ + 77.579256129712206, + 12.9421357230742 + ], + [ + 77.580072772082005, + 12.9421399306627 + ], + [ + 77.580069392819397, + 12.9435882826127 + ], + [ + 77.580043787421403, + 12.947413867490701 + ], + [ + 77.579990646108996, + 12.9491315561365 + ], + [ + 77.580006514721205, + 12.9493102720786 + ], + [ + 77.579974822598302, + 12.9513043807997 + ], + [ + 77.579998016496305, + 12.952349459480899 + ], + [ + 77.580022668846794, + 12.9534602049557 + ], + [ + 77.580035145640196, + 12.954022333021101 + ], + [ + 77.580048398130501, + 12.9546194094569 + ], + [ + 77.580094802569107, + 12.955152623936099 + ], + [ + 77.580760738567093, + 12.9549958334681 + ], + [ + 77.582432419743796, + 12.954775436328401 + ], + [ + 77.582458896389298, + 12.9547704614743 + ], + [ + 77.582812801254207, + 12.954724453603699 + ], + [ + 77.582844415713396, + 12.9547196228246 + ], + [ + 77.582976101, + 12.954704765035601 + ], + [ + 77.582990244647505, + 12.9547029307899 + ], + [ + 77.5830232464902, + 12.954698650880401 + ], + [ + 77.583155507392604, + 12.9546837872946 + ], + [ + 77.583159525332206, + 12.954682618134701 + ], + [ + 77.583232551985105, + 12.9546739886037 + ], + [ + 77.583312463195995, + 12.954663032150201 + ], + [ + 77.583343501971299, + 12.9546582070243 + ], + [ + 77.583495698766001, + 12.9546140521939 + ], + [ + 77.585492196862901, + 12.954057550708299 + ], + [ + 77.585497576524006, + 12.954052573543001 + ], + [ + 77.585498939687696, + 12.954051312356899 + ], + [ + 77.585514180846999, + 12.954037211906 + ], + [ + 77.585669242967498, + 12.9538937580188 + ], + [ + 77.585846331716397, + 12.9537299250735 + ], + [ + 77.586186936979601, + 12.953486001751401 + ], + [ + 77.586677459996395, + 12.9530493009515 + ], + [ + 77.586914280265106, + 12.9528384645052 + ], + [ + 77.587142187472395, + 12.952719882720499 + ], + [ + 77.587607260772003, + 12.9525589230898 + ], + [ + 77.589057049524399, + 12.9520571539708 + ], + [ + 77.590056357846606, + 12.9517118169667 + ], + [ + 77.590556580532706, + 12.9515385769012 + ], + [ + 77.590554207906806, + 12.9515318247126 + ], + [ + 77.590563598289805, + 12.951528035351901 + ], + [ + 77.591793591729896, + 12.951060324008401 + ], + [ + 77.592905997642902, + 12.949978227733901 + ], + [ + 77.592991260057801, + 12.949817019026501 + ], + [ + 77.593001501472301, + 12.949796052213401 + ], + [ + 77.593123178678297, + 12.9495469334863 + ], + [ + 77.5933574149511, + 12.949068869239699 + ], + [ + 77.593365608390002, + 12.949052147278399 + ], + [ + 77.593455817304999, + 12.9488683033666 + ], + [ + 77.5935022630091, + 12.948739101301999 + ], + [ + 77.592063598770096, + 12.9479041883001 + ], + [ + 77.591542899897405, + 12.9476552763547 + ], + [ + 77.591521496325896, + 12.947645325576699 + ], + [ + 77.591279219562907, + 12.9475427106706 + ], + [ + 77.591025959211805, + 12.947435687540599 + ], + [ + 77.5908902111874, + 12.947368646303101 + ], + [ + 77.590813016796901, + 12.947330521809301 + ], + [ + 77.590611030770603, + 12.947115705028001 + ], + [ + 77.590594138977295, + 12.947096674914301 + ], + [ + 77.590508361942696, + 12.947005178284201 + ], + [ + 77.590377011813601, + 12.9468650689501 + ], + [ + 77.590199471523505, + 12.946675982538601 + ], + [ + 77.590188993438403, + 12.946664793717201 + ], + [ + 77.5901756276442, + 12.946650748921799 + ], + [ + 77.590145342539302, + 12.946618926409799 + ], + [ + 77.590023096549501, + 12.946507205421099 + ], + [ + 77.589867763621001, + 12.9464079029412 + ], + [ + 77.5895598024848, + 12.946310326383401 + ], + [ + 77.589046580560506, + 12.946251531322099 + ], + [ + 77.588685966143998, + 12.9462291403336 + ], + [ + 77.587999594351501, + 12.9461591660127 + ], + [ + 77.587962660568095, + 12.946150498440501 + ], + [ + 77.587769333864301, + 12.9461049878757 + ], + [ + 77.587469247000598, + 12.9460345633955 + ], + [ + 77.587270588198095, + 12.945974424465 + ], + [ + 77.587084485074897, + 12.945918480056999 + ], + [ + 77.586866927183607, + 12.945853079769799 + ], + [ + 77.586295720237402, + 12.945618208614199 + ], + [ + 77.586130663084603, + 12.9455227268434 + ], + [ + 77.585814445823104, + 12.9453395301295 + ], + [ + 77.585643903727998, + 12.945102939644 + ], + [ + 77.585552789148096, + 12.9449762325488 + ], + [ + 77.585433467096607, + 12.944738004332301 + ], + [ + 77.585319442427306, + 12.9445110164877 + ], + [ + 77.585287413637303, + 12.944308059789201 + ], + [ + 77.585205545279393, + 12.943793909978099 + ], + [ + 77.585208423424007, + 12.9437938814277 + ], + [ + 77.585212452826596, + 12.943793841457 + ], + [ + 77.585215918243804, + 12.943794936383499 + ], + [ + 77.585219947646394, + 12.943794896412699 + ], + [ + 77.585223401419896, + 12.943794862152 + ], + [ + 77.585226855193596, + 12.943794827891301 + ], + [ + 77.585230872952494, + 12.9437936587333 + ], + [ + 77.585234326726095, + 12.9437936244724 + ], + [ + 77.585237780499597, + 12.9437935902115 + ], + [ + 77.585241798258394, + 12.9437924210534 + ], + [ + 77.585245240388204, + 12.9437912576053 + ], + [ + 77.585248694161805, + 12.9437912233443 + ], + [ + 77.585252136291501, + 12.9437900598962 + ], + [ + 77.585255578421197, + 12.943788896448 + ], + [ + 77.585259020550893, + 12.9437877329998 + ], + [ + 77.585262451036797, + 12.9437854403646 + ], + [ + 77.585265893166394, + 12.943784276916301 + ], + [ + 77.585269335295905, + 12.943783113467999 + ], + [ + 77.585272190152807, + 12.9437808265429 + ], + [ + 77.585275632282205, + 12.943779663094499 + ], + [ + 77.585278487139007, + 12.943777376169299 + ], + [ + 77.585281341995696, + 12.943775089244101 + ], + [ + 77.585284772481202, + 12.9437727966086 + ], + [ + 77.585287627337706, + 12.9437705096834 + ], + [ + 77.585290482194196, + 12.9437682227581 + ], + [ + 77.585292761421798, + 12.943765941543001 + ], + [ + 77.585295616278202, + 12.943763654617699 + ], + [ + 77.585297895505803, + 12.9437613734026 + ], + [ + 77.585300738718203, + 12.9437579572903 + ], + [ + 77.585303017945606, + 12.943755676075201 + ], + [ + 77.585305285529103, + 12.943752265673099 + ], + [ + 77.585306989127602, + 12.9437499901683 + ], + [ + 77.585309256711, + 12.943746579766101 + ], + [ + 77.585310948665594, + 12.9437431750743 + ], + [ + 77.585312652263994, + 12.9437408995694 + ], + [ + 77.585314344218403, + 12.943737494877601 + ], + [ + 77.585316036172898, + 12.943734090185799 + ], + [ + 77.585317728127293, + 12.9437306854939 + ], + [ + 77.5853188444529, + 12.9437272865124 + ], + [ + 77.585319960778506, + 12.943723887530901 + ], + [ + 77.585321077103998, + 12.9437204885493 + ], + [ + 77.585322193429604, + 12.9437170895678 + ], + [ + 77.585323309755097, + 12.9437136905862 + ], + [ + 77.5853238504519, + 12.943710297315 + ], + [ + 77.585324391148703, + 12.9437069040438 + ], + [ + 77.585324920201501, + 12.9437023815856 + ], + [ + 77.585325460898403, + 12.943698988314299 + ], + [ + 77.585325425966502, + 12.943695600753401 + ], + [ + 77.585325391034601, + 12.943692213192501 + ], + [ + 77.5853253561028, + 12.943688825631501 + ], + [ + 77.585325321170899, + 12.943685438070601 + ], + [ + 77.585325274595107, + 12.9436809213227 + ], + [ + 77.585324664034701, + 12.9436775394721 + ], + [ + 77.585324053474295, + 12.9436741576215 + ], + [ + 77.585323442913904, + 12.9436707757708 + ], + [ + 77.585322832353498, + 12.943667393920199 + ], + [ + 77.585321646164601, + 12.943664017779801 + ], + [ + 77.585320459975705, + 12.943660641639401 + ], + [ + 77.585319273786894, + 12.943657265499001 + ], + [ + 77.585318087598097, + 12.9436538893586 + ], + [ + 77.5853169014093, + 12.9436505132182 + ], + [ + 77.585315139591998, + 12.943647142788 + ], + [ + 77.585313377774796, + 12.943643772357801 + ], + [ + 77.585311615957593, + 12.943640401927601 + ], + [ + 77.585309854140505, + 12.943637031497399 + ], + [ + 77.585308103967293, + 12.9436347902541 + ], + [ + 77.585305766521699, + 12.943631425534001 + ], + [ + 77.585304004704696, + 12.9436280551037 + ], + [ + 77.585301678903093, + 12.943625819570601 + ], + [ + 77.585299341457699, + 12.9436224548505 + ], + [ + 77.585296440027605, + 12.9436202250275 + ], + [ + 77.585294114226201, + 12.943617989494401 + ], + [ + 77.585291212796207, + 12.9436157596713 + ], + [ + 77.585288875351097, + 12.943612394951 + ], + [ + 77.585285973921302, + 12.9436101651279 + ], + [ + 77.585283072491507, + 12.943607935304801 + ], + [ + 77.585279607076998, + 12.9436068403788 + ], + [ + 77.585276705647303, + 12.9436046105555 + ], + [ + 77.585273804217593, + 12.9436023807322 + ], + [ + 77.585268600274105, + 12.9436001737495 + ], + [ + 77.585263971959193, + 12.943597961056501 + ], + [ + 77.585258768015905, + 12.943595754073501 + ], + [ + 77.585255302601595, + 12.943594659147101 + ], + [ + 77.585251825543693, + 12.943592435033599 + ], + [ + 77.585248371773005, + 12.943592469294099 + ], + [ + 77.585244906358696, + 12.9435913743676 + ], + [ + 77.585239714059099, + 12.9435902965712 + ], + [ + 77.585235673016498, + 12.9435892073546 + ], + [ + 77.585232219245697, + 12.943589241614999 + ], + [ + 77.585226451317695, + 12.943588169528301 + ], + [ + 77.585222997546893, + 12.9435882037886 + ], + [ + 77.585219543776205, + 12.943588238048701 + ], + [ + 77.585215514376898, + 12.943588278018799 + ], + [ + 77.585212060606196, + 12.9435883122789 + ], + [ + 77.585208606835394, + 12.943588346539 + ], + [ + 77.585204589079396, + 12.943589515696001 + ], + [ + 77.585201135308495, + 12.943589549955901 + ], + [ + 77.585197693181001, + 12.9435907134029 + ], + [ + 77.585194251053395, + 12.943591876849901 + ], + [ + 77.585190233297197, + 12.943593046006701 + ], + [ + 77.585186779526296, + 12.943593080266499 + ], + [ + 77.585183349041799, + 12.943595372900401 + ], + [ + 77.585179906913993, + 12.943596536347201 + ], + [ + 77.585176464786201, + 12.9435976997939 + ], + [ + 77.5851735982869, + 12.9435988575307 + ], + [ + 77.585170167802204, + 12.943601150164399 + ], + [ + 77.585166725674199, + 12.9436023136111 + ], + [ + 77.585163870817993, + 12.943604600534901 + ], + [ + 77.585161015961603, + 12.943606887458699 + ], + [ + 77.585157573833499, + 12.943608050905199 + ], + [ + 77.585154718976995, + 12.9436103378289 + ], + [ + 77.585151864120505, + 12.943612624752699 + ], + [ + 77.585149584892505, + 12.9436149059665 + ], + [ + 77.585147881292997, + 12.943617181470399 + ], + [ + 77.585145602064898, + 12.9436194626842 + ], + [ + 77.585142747208195, + 12.9436217496078 + ], + [ + 77.585140467979997, + 12.943624030821599 + ], + [ + 77.585138200394795, + 12.9436274412225 + ], + [ + 77.585135921166497, + 12.943629722436199 + ], + [ + 77.585133653581295, + 12.9436331328371 + ], + [ + 77.585131961624498, + 12.9436365375281 + ], + [ + 77.585129682396101, + 12.9436388187418 + ], + [ + 77.585127990439304, + 12.9436422234328 + ], + [ + 77.585126298482507, + 12.9436456281238 + ], + [ + 77.585124606525596, + 12.9436490328148 + ], + [ + 77.582899142893993, + 12.943636942383 + ], + [ + 77.582894675950797, + 12.9432252814176 + ], + [ + 77.583218849519497, + 12.9431208410079 + ], + [ + 77.583730593682603, + 12.9430225575194 + ], + [ + 77.584017230816997, + 12.9429660896293 + ], + [ + 77.584476415969107, + 12.9428389052526 + ], + [ + 77.584325956586696, + 12.9423619883933 + ], + [ + 77.5841740968838, + 12.9420916447463 + ], + [ + 77.584088988698596, + 12.9418847150411 + ], + [ + 77.584099835820297, + 12.9416385688193 + ], + [ + 77.584057627920501, + 12.940424928286699 + ], + [ + 77.584049384170399, + 12.939873014461 + ], + [ + 77.584049383331802, + 12.939872754277699 + ], + [ + 77.584001391804605, + 12.936659877884599 + ], + [ + 77.582746806965602, + 12.9366960232305 + ], + [ + 77.582744223210796, + 12.936696099416 + ], + [ + 77.5827369595617, + 12.9367706169595 + ], + [ + 77.582736918071006, + 12.9367706128533 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "315", + "group": "rbi layout", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "58", + "ward_name": "58 - RBI Layout", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಆರ್‌ಬಿಐ ಲೇಔಟ್", + "dig_ward_n": "rbi layout", + "Assembly": "176 - Bangalore South", + "Slno": "58" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.581331641596904, + 12.892130308407999 + ], + [ + 77.581807466394494, + 12.892169655508299 + ], + [ + 77.581809708475802, + 12.8921287423282 + ], + [ + 77.581855950426601, + 12.8912849281375 + ], + [ + 77.582047859214299, + 12.891084275675199 + ], + [ + 77.582217921512907, + 12.8908860973816 + ], + [ + 77.582446438641298, + 12.890607161098901 + ], + [ + 77.582516840385097, + 12.8905127335332 + ], + [ + 77.582592838608406, + 12.890458905810799 + ], + [ + 77.582674869855893, + 12.8904321219122 + ], + [ + 77.582854016354602, + 12.890384176273701 + ], + [ + 77.583020985951407, + 12.890339489463299 + ], + [ + 77.583559131909098, + 12.8901704260107 + ], + [ + 77.583662760303596, + 12.890136294964099 + ], + [ + 77.583689918770702, + 12.890127350043899 + ], + [ + 77.583958973909205, + 12.890041124045499 + ], + [ + 77.584205653608706, + 12.889961894661401 + ], + [ + 77.584707366817398, + 12.889776249384701 + ], + [ + 77.585074473062505, + 12.889654045167299 + ], + [ + 77.585447310719005, + 12.8895295252462 + ], + [ + 77.585461651957402, + 12.8895248663005 + ], + [ + 77.585828954411397, + 12.889421857410699 + ], + [ + 77.586240041147903, + 12.8893229324778 + ], + [ + 77.586480759657903, + 12.889279897888599 + ], + [ + 77.586625624159694, + 12.8892626554701 + ], + [ + 77.586773532033206, + 12.889245128113901 + ], + [ + 77.587103909285304, + 12.889205978507601 + ], + [ + 77.587596465560495, + 12.8891378665211 + ], + [ + 77.588029825882799, + 12.889078244330401 + ], + [ + 77.588168766423095, + 12.889063269469601 + ], + [ + 77.588202878001596, + 12.889059592949399 + ], + [ + 77.588205442150596, + 12.889029076378501 + ], + [ + 77.589368204488295, + 12.8888340877002 + ], + [ + 77.589572343220297, + 12.8887998542403 + ], + [ + 77.590708778597502, + 12.888603398594199 + ], + [ + 77.5909671494761, + 12.888542116510701 + ], + [ + 77.591377859398904, + 12.8884070501829 + ], + [ + 77.591438066049506, + 12.888384997166799 + ], + [ + 77.591607821165795, + 12.8883257214674 + ], + [ + 77.591681967572796, + 12.888315952644501 + ], + [ + 77.5917536689023, + 12.888305918977199 + ], + [ + 77.591760130841095, + 12.888305014712 + ], + [ + 77.591796340787297, + 12.888300138833401 + ], + [ + 77.591779141496104, + 12.8879152175291 + ], + [ + 77.591765586818099, + 12.8876047939809 + ], + [ + 77.591758030665403, + 12.887429827146001 + ], + [ + 77.591749078858101, + 12.887334002908 + ], + [ + 77.591745698940898, + 12.8872978255686 + ], + [ + 77.591743800993001, + 12.8872775124286 + ], + [ + 77.591717103101104, + 12.8869762534359 + ], + [ + 77.591682763296703, + 12.8863238574114 + ], + [ + 77.591681833775496, + 12.886233522513701 + ], + [ + 77.591627885176706, + 12.88585687014 + ], + [ + 77.591622893777796, + 12.8858345639202 + ], + [ + 77.591529548829897, + 12.8854174163856 + ], + [ + 77.591412384384299, + 12.884993959172499 + ], + [ + 77.591381618425402, + 12.8848554527584 + ], + [ + 77.591303754602905, + 12.8845049178243 + ], + [ + 77.591251494635699, + 12.8843352843259 + ], + [ + 77.591196577271404, + 12.8841570246902 + ], + [ + 77.591081348690395, + 12.883865676252301 + ], + [ + 77.591066354814203, + 12.883827621985199 + ], + [ + 77.591042344390004, + 12.883766683801101 + ], + [ + 77.591010466649095, + 12.883689077529301 + ], + [ + 77.590978083123403, + 12.8836182520688 + ], + [ + 77.590727235075903, + 12.8830673769827 + ], + [ + 77.590683941228903, + 12.882971127200801 + ], + [ + 77.590677169107096, + 12.882956071582401 + ], + [ + 77.5905691612341, + 12.882695142390901 + ], + [ + 77.590560704616493, + 12.8826003646784 + ], + [ + 77.590560383329503, + 12.882569117800699 + ], + [ + 77.590559891879906, + 12.882521321550101 + ], + [ + 77.590559462292802, + 12.8824795416106 + ], + [ + 77.590588106527505, + 12.881972944860401 + ], + [ + 77.590607187055795, + 12.8816354803648 + ], + [ + 77.590615704813601, + 12.8815123021018 + ], + [ + 77.590616646805302, + 12.881491965335099 + ], + [ + 77.590616368170998, + 12.8814648648329 + ], + [ + 77.590613472043202, + 12.8813575832087 + ], + [ + 77.585721850264093, + 12.8788280716839 + ], + [ + 77.585837061835093, + 12.879608585653401 + ], + [ + 77.585938721048095, + 12.880255371618301 + ], + [ + 77.585944423231197, + 12.8803812880631 + ], + [ + 77.585944776382902, + 12.8803825891495 + ], + [ + 77.585287109923001, + 12.880254304529799 + ], + [ + 77.585317102692002, + 12.880684585408201 + ], + [ + 77.585182135231406, + 12.8806834318402 + ], + [ + 77.584025106488596, + 12.8806142177579 + ], + [ + 77.584068421511105, + 12.880315979524299 + ], + [ + 77.584168528240497, + 12.8799564353188 + ], + [ + 77.584203629778401, + 12.8798155352116 + ], + [ + 77.584214182834401, + 12.879561573504001 + ], + [ + 77.584203362071506, + 12.879504311470001 + ], + [ + 77.584142770428599, + 12.879180332685801 + ], + [ + 77.582843852817007, + 12.879154954189 + ], + [ + 77.582397421986002, + 12.879075357994299 + ], + [ + 77.581694899050504, + 12.8790511330655 + ], + [ + 77.581672981257796, + 12.879197636206399 + ], + [ + 77.581384589248103, + 12.879180332685801 + ], + [ + 77.581465339010805, + 12.8783059281125 + ], + [ + 77.579534266113995, + 12.878347456561899 + ], + [ + 77.579580834366098, + 12.878876038597801 + ], + [ + 77.579573487427396, + 12.879143418508599 + ], + [ + 77.579799586763002, + 12.879154954189 + ], + [ + 77.579811122443303, + 12.879593310043701 + ], + [ + 77.579769593994001, + 12.8797432738887 + ], + [ + 77.579672694278699, + 12.8799405340233 + ], + [ + 77.579618437630202, + 12.880835780613101 + ], + [ + 77.579544239518498, + 12.8808231253033 + ], + [ + 77.579512476362694, + 12.8809572996238 + ], + [ + 77.579485484487094, + 12.8809862500887 + ], + [ + 77.579450402749103, + 12.880986595748301 + ], + [ + 77.579391698304093, + 12.8809642265402 + ], + [ + 77.579323236747399, + 12.881131271248201 + ], + [ + 77.579157638234307, + 12.8815201446569 + ], + [ + 77.579017719518802, + 12.881847092879701 + ], + [ + 77.578821154958902, + 12.881781621153999 + ], + [ + 77.578585622823795, + 12.881765295895899 + ], + [ + 77.5784919390873, + 12.8817533110914 + ], + [ + 77.577696967595998, + 12.8818333841577 + ], + [ + 77.577110794939102, + 12.8818937659772 + ], + [ + 77.576507065647704, + 12.881938391266299 + ], + [ + 77.576439683841997, + 12.8819265395502 + ], + [ + 77.576380601963095, + 12.8814788597416 + ], + [ + 77.576375225022701, + 12.881335276832401 + ], + [ + 77.575808131078006, + 12.881404852794599 + ], + [ + 77.575623866025097, + 12.881757083435099 + ], + [ + 77.575594453685397, + 12.8819428211225 + ], + [ + 77.574879606621394, + 12.881953669208199 + ], + [ + 77.574477511739204, + 12.8819862082802 + ], + [ + 77.574437766804493, + 12.881990199410501 + ], + [ + 77.574296472827001, + 12.8820043881323 + ], + [ + 77.574000555816497, + 12.8820341043334 + ], + [ + 77.5735307981994, + 12.882101576171999 + ], + [ + 77.573466091623104, + 12.8821108700884 + ], + [ + 77.572854995333898, + 12.882162259223801 + ], + [ + 77.572859427267701, + 12.8822061506028 + ], + [ + 77.572956887156494, + 12.883004660330499 + ], + [ + 77.572649372887099, + 12.8830183363869 + ], + [ + 77.572013809582401, + 12.8830756724652 + ], + [ + 77.572061298633997, + 12.883332014399 + ], + [ + 77.573132213228504, + 12.883213271641299 + ], + [ + 77.573627338472406, + 12.8831394487962 + ], + [ + 77.574324421163993, + 12.883067575276099 + ], + [ + 77.574349459832405, + 12.8835643019126 + ], + [ + 77.575578160320006, + 12.8835348781443 + ], + [ + 77.575549523498694, + 12.883931565568201 + ], + [ + 77.575506095824295, + 12.884160127070899 + ], + [ + 77.575463975337399, + 12.8843818004477 + ], + [ + 77.575457864351705, + 12.884498989466 + ], + [ + 77.575448608374501, + 12.8847336174831 + ], + [ + 77.575456959863502, + 12.8849546460408 + ], + [ + 77.575480171171804, + 12.8851396730805 + ], + [ + 77.575516052556495, + 12.885372382464899 + ], + [ + 77.575546819638504, + 12.885369958380799 + ], + [ + 77.575614343773395, + 12.8855399675827 + ], + [ + 77.575716179363795, + 12.885777047371301 + ], + [ + 77.575821973821306, + 12.8859724959303 + ], + [ + 77.575908985871905, + 12.8861896431752 + ], + [ + 77.576029585553798, + 12.886260167510599 + ], + [ + 77.576166352356196, + 12.886339137997901 + ], + [ + 77.576555140145302, + 12.886331007285699 + ], + [ + 77.576504844062896, + 12.8864161223918 + ], + [ + 77.576435397724197, + 12.8864870837523 + ], + [ + 77.576494614332205, + 12.886834256622301 + ], + [ + 77.576425400249803, + 12.887157255673101 + ], + [ + 77.576079329838194, + 12.8878724678571 + ], + [ + 77.575826528459402, + 12.8882575845865 + ], + [ + 77.5758355680899, + 12.888283789640299 + ], + [ + 77.575733143563198, + 12.88906917514 + ], + [ + 77.575713210267196, + 12.8892166194577 + ], + [ + 77.575652509663897, + 12.889526684424499 + ], + [ + 77.576766856389298, + 12.8896189698676 + ], + [ + 77.576689567330703, + 12.8900688614027 + ], + [ + 77.576630356557601, + 12.8906276208522 + ], + [ + 77.576573403054098, + 12.8911337481773 + ], + [ + 77.576519416045002, + 12.891456026969101 + ], + [ + 77.577328644024107, + 12.8916169497105 + ], + [ + 77.577205212243896, + 12.892524807756899 + ], + [ + 77.577971181421603, + 12.8926851537143 + ], + [ + 77.577583582560607, + 12.8941167316503 + ], + [ + 77.576923741642503, + 12.893939082172301 + ], + [ + 77.576852323397105, + 12.8942368360948 + ], + [ + 77.575846309094402, + 12.894049824704 + ], + [ + 77.575742487970899, + 12.8946196873151 + ], + [ + 77.575562531356894, + 12.895127257252099 + ], + [ + 77.575458646041795, + 12.895146980731299 + ], + [ + 77.575480286753901, + 12.8951592097931 + ], + [ + 77.5754811302467, + 12.895241641389401 + ], + [ + 77.5755438359962, + 12.8952730249936 + ], + [ + 77.576441513427397, + 12.895722303621801 + ], + [ + 77.577259580906201, + 12.896132088287301 + ], + [ + 77.577199546739905, + 12.896227542174399 + ], + [ + 77.577464429477502, + 12.896385992594499 + ], + [ + 77.577728871528606, + 12.896544178887799 + ], + [ + 77.577791756649205, + 12.8965736398565 + ], + [ + 77.5779151193735, + 12.8966314338301 + ], + [ + 77.5792256644133, + 12.8972454028937 + ], + [ + 77.579337532202103, + 12.897063383926699 + ], + [ + 77.579435283932099, + 12.8969043328489 + ], + [ + 77.579447025668699, + 12.8968852279476 + ], + [ + 77.579792583466201, + 12.8970862223256 + ], + [ + 77.579851771084094, + 12.897120648835401 + ], + [ + 77.579682139585401, + 12.8969740405563 + ], + [ + 77.579673487670306, + 12.8969665629131 + ], + [ + 77.579670021919, + 12.8969617322023 + ], + [ + 77.579637284294805, + 12.8969161011035 + ], + [ + 77.579552803162201, + 12.8968164258815 + ], + [ + 77.579539032310294, + 12.896760777741701 + ], + [ + 77.579537191375707, + 12.896753338505601 + ], + [ + 77.579526794035701, + 12.8966935876206 + ], + [ + 77.579540762833503, + 12.896643733968601 + ], + [ + 77.579562331225802, + 12.896566754301499 + ], + [ + 77.579596381691402, + 12.896407185648901 + ], + [ + 77.579635909575899, + 12.896220459517799 + ], + [ + 77.579701789310903, + 12.8959092493053 + ], + [ + 77.579734680253694, + 12.895805028301799 + ], + [ + 77.579760123774605, + 12.895725438294299 + ], + [ + 77.579853469836607, + 12.8954334427125 + ], + [ + 77.579892714562803, + 12.895331417650199 + ], + [ + 77.580005513119005, + 12.895095395727401 + ], + [ + 77.580022317807007, + 12.8950602339808 + ], + [ + 77.580105148193297, + 12.894886632391399 + ], + [ + 77.580221554351695, + 12.894575001267301 + ], + [ + 77.580415500506803, + 12.894055786352 + ], + [ + 77.580433759926507, + 12.8939961683683 + ], + [ + 77.580539696588502, + 12.8936502681064 + ], + [ + 77.580677901548199, + 12.893263809910801 + ], + [ + 77.580715561884304, + 12.8930633418261 + ], + [ + 77.580878623273307, + 12.8921953519277 + ], + [ + 77.580893872165205, + 12.8921141824862 + ], + [ + 77.580895125273301, + 12.8921075122242 + ], + [ + 77.580977455863305, + 12.8921118118298 + ], + [ + 77.581331641596904, + 12.892130308407999 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "311", + "group": "Abbigere", + "Corporatio": "North", + "ac_no": "155", + "ac": "Dasarahalli", + "corporat_1": "2", + "ward_id": "21", + "ward_name": "21 - Abbigere", + "corporat_2": "ಉತ್ತರ", + "ac_kn": "ದಾಸರಹಳ್ಳಿ", + "ward_name_": "ಅಬ್ಬಿಗೆರೆ", + "dig_ward_n": "Abbigere", + "Assembly": "155 - Dasarahalli", + "Slno": "21" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.499504573101106, + 13.0719799168054 + ], + [ + 77.500370944556096, + 13.072463919460199 + ], + [ + 77.5010035351375, + 13.072636026548 + ], + [ + 77.501433231447606, + 13.0728446829383 + ], + [ + 77.501433231743405, + 13.0728447212924 + ], + [ + 77.501611759195896, + 13.0730491212872 + ], + [ + 77.501887578272004, + 13.0734787737864 + ], + [ + 77.502142636040503, + 13.0738686851994 + ], + [ + 77.502341056403793, + 13.074026376061401 + ], + [ + 77.502471408480602, + 13.0741647747274 + ], + [ + 77.502637035331503, + 13.0744358418721 + ], + [ + 77.502672376784005, + 13.0745751218807 + ], + [ + 77.502707114926494, + 13.074654591983199 + ], + [ + 77.502768730856701, + 13.074707199270501 + ], + [ + 77.502998811138397, + 13.074786014051799 + ], + [ + 77.503582106636998, + 13.0751091212733 + ], + [ + 77.5036805034579, + 13.0751636267407 + ], + [ + 77.503758223866697, + 13.075206678601599 + ], + [ + 77.504108035037206, + 13.0753941475368 + ], + [ + 77.504316003295699, + 13.0757388440363 + ], + [ + 77.504481059972704, + 13.075998123580201 + ], + [ + 77.504560252489497, + 13.0761185805466 + ], + [ + 77.504620005899397, + 13.076209469760199 + ], + [ + 77.504795612199004, + 13.0764765792416 + ], + [ + 77.505077989871893, + 13.0767063802568 + ], + [ + 77.5053301046988, + 13.076823634672699 + ], + [ + 77.505456666740102, + 13.0769324030143 + ], + [ + 77.505721691917003, + 13.077020415967199 + ], + [ + 77.506009694930697, + 13.0774220174655 + ], + [ + 77.506405576976107, + 13.077653400814601 + ], + [ + 77.506931053003896, + 13.0778647657704 + ], + [ + 77.507125553301094, + 13.0779770609387 + ], + [ + 77.5071768677183, + 13.0780066774778 + ], + [ + 77.507351377624005, + 13.0779469932534 + ], + [ + 77.5074393728204, + 13.0779168972606 + ], + [ + 77.507459688516306, + 13.077909949089699 + ], + [ + 77.507510483721902, + 13.0778925767915 + ], + [ + 77.507543673667598, + 13.077880134151499 + ], + [ + 77.507711751614195, + 13.0778171196106 + ], + [ + 77.508021947852697, + 13.077700820002701 + ], + [ + 77.508047241499398, + 13.0776913370402 + ], + [ + 77.508175083267105, + 13.0776434065129 + ], + [ + 77.508236590758997, + 13.0776344317848 + ], + [ + 77.5083401784279, + 13.077619316459501 + ], + [ + 77.508384692770804, + 13.0776128206385 + ], + [ + 77.508455146903003, + 13.077651811588201 + ], + [ + 77.508760250359103, + 13.077820664703101 + ], + [ + 77.508766556542398, + 13.0778241550075 + ], + [ + 77.508778244846098, + 13.0778306232866 + ], + [ + 77.508816908675001, + 13.0778520214623 + ], + [ + 77.508837742123504, + 13.077833940861099 + ], + [ + 77.508865159151, + 13.0778101449862 + ], + [ + 77.508925940159003, + 13.0777270644415 + ], + [ + 77.508989031015204, + 13.0775778517832 + ], + [ + 77.509070774356999, + 13.0774603787826 + ], + [ + 77.509087299798196, + 13.077436630029499 + ], + [ + 77.509150881528399, + 13.077345257174899 + ], + [ + 77.509339191711007, + 13.0770937583352 + ], + [ + 77.509357355235807, + 13.077069499445001 + ], + [ + 77.509413097990304, + 13.0769950518039 + ], + [ + 77.509558781819194, + 13.076888607576899 + ], + [ + 77.509690382455801, + 13.076792412602 + ], + [ + 77.510167388302094, + 13.0763707482408 + ], + [ + 77.510469779249306, + 13.076128096885901 + ], + [ + 77.510639812117205, + 13.075993817656499 + ], + [ + 77.510976521042707, + 13.0757965076514 + ], + [ + 77.511092735960801, + 13.0757590907884 + ], + [ + 77.511132407443796, + 13.075724448512901 + ], + [ + 77.511157491920102, + 13.075716735444299 + ], + [ + 77.511162428252206, + 13.075720473019 + ], + [ + 77.511284495479799, + 13.0758772711985 + ], + [ + 77.511621785116205, + 13.075791300768399 + ], + [ + 77.512367964816903, + 13.0756537983267 + ], + [ + 77.512540701590495, + 13.0755900030177 + ], + [ + 77.512659378903507, + 13.075580475927699 + ], + [ + 77.513076570983799, + 13.0755497775842 + ], + [ + 77.514288461892804, + 13.0751584978205 + ], + [ + 77.514442190824198, + 13.0753559830759 + ], + [ + 77.515420856458107, + 13.0750800338202 + ], + [ + 77.516148141218295, + 13.0748650123892 + ], + [ + 77.516983406115997, + 13.074560400162101 + ], + [ + 77.517670665225793, + 13.0742925792965 + ], + [ + 77.517957131399399, + 13.0741808886646 + ], + [ + 77.518192508909095, + 13.0750082094742 + ], + [ + 77.518276263810094, + 13.0754553158264 + ], + [ + 77.518289758996801, + 13.0758990365567 + ], + [ + 77.518295883444694, + 13.0761003436329 + ], + [ + 77.518338673554794, + 13.0769419425653 + ], + [ + 77.518393835520399, + 13.0770824932316 + ], + [ + 77.518700984071302, + 13.078170558809701 + ], + [ + 77.518774320015297, + 13.078649698720101 + ], + [ + 77.518951847407905, + 13.079557629069001 + ], + [ + 77.518979950410198, + 13.0796651802117 + ], + [ + 77.519142503259104, + 13.079619549220601 + ], + [ + 77.519410138439696, + 13.0793663264058 + ], + [ + 77.519412614139398, + 13.0793639830167 + ], + [ + 77.519418647302899, + 13.079358273785701 + ], + [ + 77.519419193032107, + 13.0793581943737 + ], + [ + 77.519472415563598, + 13.079350417234901 + ], + [ + 77.519501472475895, + 13.0793461718578 + ], + [ + 77.519503823167298, + 13.0793478537715 + ], + [ + 77.519505977048595, + 13.079349395760699 + ], + [ + 77.519508470723906, + 13.079351181081901 + ], + [ + 77.519519254958098, + 13.0793588990136 + ], + [ + 77.519629125899499, + 13.079437532065301 + ], + [ + 77.520882531125594, + 13.0791508636174 + ], + [ + 77.521136723365203, + 13.0799603783791 + ], + [ + 77.521151518663501, + 13.080007807247201 + ], + [ + 77.521164622952497, + 13.080049816421401 + ], + [ + 77.521179942256097, + 13.0800989260518 + ], + [ + 77.521202420095094, + 13.0801709826855 + ], + [ + 77.521212938778007, + 13.080204701526 + ], + [ + 77.521255996768204, + 13.0803321253482 + ], + [ + 77.521270792887506, + 13.080375912284399 + ], + [ + 77.521280642731497, + 13.0804050231287 + ], + [ + 77.521709547362093, + 13.0803816339197 + ], + [ + 77.522066962281897, + 13.0803521665659 + ], + [ + 77.5222434805235, + 13.0805469875762 + ], + [ + 77.522590452322504, + 13.0807192228089 + ], + [ + 77.522713533628107, + 13.0807686676053 + ], + [ + 77.5227324910677, + 13.0807762828953 + ], + [ + 77.522766281714297, + 13.0807944268327 + ], + [ + 77.522795119091001, + 13.0808099105684 + ], + [ + 77.522840784315505, + 13.080876529966 + ], + [ + 77.522868177530299, + 13.0809018937452 + ], + [ + 77.522876981102598, + 13.080910045562399 + ], + [ + 77.522955139873005, + 13.080914499971801 + ], + [ + 77.523095190627103, + 13.0808910092586 + ], + [ + 77.523189622001993, + 13.080875170593799 + ], + [ + 77.523202075269495, + 13.080873081978501 + ], + [ + 77.523214428740204, + 13.0809255009171 + ], + [ + 77.523231893147695, + 13.0809996074655 + ], + [ + 77.523310743678195, + 13.081334188839801 + ], + [ + 77.523344240325002, + 13.081476323776499 + ], + [ + 77.523353451220302, + 13.081508198615699 + ], + [ + 77.523365317008796, + 13.081549455367 + ], + [ + 77.523375615858399, + 13.0815852641328 + ], + [ + 77.523392991788199, + 13.0816456811788 + ], + [ + 77.523445154051799, + 13.0818270530281 + ], + [ + 77.523566421884894, + 13.0827916108755 + ], + [ + 77.523585056807306, + 13.08286985104 + ], + [ + 77.523586279581806, + 13.082874987073801 + ], + [ + 77.523568721327194, + 13.0831530247816 + ], + [ + 77.523556548573595, + 13.0833457806461 + ], + [ + 77.523555338832793, + 13.083364927142901 + ], + [ + 77.523545731526298, + 13.083517068466699 + ], + [ + 77.523542150153304, + 13.083573775675699 + ], + [ + 77.523514407579597, + 13.084459242331 + ], + [ + 77.523472801302404, + 13.0851178468608 + ], + [ + 77.523470736664294, + 13.0851505240067 + ], + [ + 77.523469529386503, + 13.0851696397614 + ], + [ + 77.523435980755707, + 13.0860377035628 + ], + [ + 77.523436387133998, + 13.0865612976749 + ], + [ + 77.523447858364094, + 13.0881137881781 + ], + [ + 77.523524570143707, + 13.089504355772 + ], + [ + 77.523533753908396, + 13.089670827522999 + ], + [ + 77.523548743330096, + 13.0898307772114 + ], + [ + 77.523616765057596, + 13.0905566314129 + ], + [ + 77.523639054520004, + 13.090803472531 + ], + [ + 77.523656138361005, + 13.090992661561 + ], + [ + 77.523664275172706, + 13.0916554031604 + ], + [ + 77.523670992579198, + 13.0917377684909 + ], + [ + 77.523679677387904, + 13.0918442553641 + ], + [ + 77.523711681294003, + 13.0922366393842 + ], + [ + 77.523748111313495, + 13.092683308589001 + ], + [ + 77.523765472728002, + 13.0928961712456 + ], + [ + 77.523768172157205, + 13.092929267947 + ], + [ + 77.523769212724503, + 13.092942023833899 + ], + [ + 77.523772251703605, + 13.092982756978 + ], + [ + 77.523778489856099, + 13.093066376479999 + ], + [ + 77.523778610515095, + 13.093067997032801 + ], + [ + 77.524583065380199, + 13.093009169058 + ], + [ + 77.524614575790693, + 13.0930068647809 + ], + [ + 77.524874525340607, + 13.0929878546878 + ], + [ + 77.525303760339696, + 13.092956464120199 + ], + [ + 77.526027564847595, + 13.0929035297964 + ], + [ + 77.526061720319603, + 13.0929010313895 + ], + [ + 77.526194800944097, + 13.092891298278399 + ], + [ + 77.5264200446518, + 13.0928748248111 + ], + [ + 77.526728544956498, + 13.092837592132 + ], + [ + 77.527479269813597, + 13.092746986366301 + ], + [ + 77.5274888040246, + 13.0927458358547 + ], + [ + 77.527497008028206, + 13.0927448456469 + ], + [ + 77.527656990686793, + 13.092725536950001 + ], + [ + 77.528106658547699, + 13.0926712644511 + ], + [ + 77.528568535395294, + 13.0926155180835 + ], + [ + 77.5285774537317, + 13.0926144413326 + ], + [ + 77.528618375172101, + 13.092609501932801 + ], + [ + 77.528642832734505, + 13.092607477748899 + ], + [ + 77.528859950390896, + 13.0925895044423 + ], + [ + 77.528886019531399, + 13.0925873460769 + ], + [ + 77.529244688356002, + 13.0925173790949 + ], + [ + 77.529441974580294, + 13.092478894120401 + ], + [ + 77.529498152958595, + 13.092467935090699 + ], + [ + 77.529685701792999, + 13.092449887067099 + ], + [ + 77.530043079760901, + 13.0924154958582 + ], + [ + 77.530652228581104, + 13.092378239577 + ], + [ + 77.530709753843993, + 13.092374721596499 + ], + [ + 77.531070614866195, + 13.0923526506523 + ], + [ + 77.531137896503097, + 13.092348535391199 + ], + [ + 77.532159437508298, + 13.092286054653499 + ], + [ + 77.532829167957701, + 13.092245089607401 + ], + [ + 77.533029315905793, + 13.0922303387027 + ], + [ + 77.53304675487, + 13.0922290534273 + ], + [ + 77.533168664587706, + 13.0922200680073 + ], + [ + 77.533586182757205, + 13.092189294997899 + ], + [ + 77.533682678585905, + 13.0921821825594 + ], + [ + 77.533911903800103, + 13.092165287762899 + ], + [ + 77.533995794918894, + 13.092159104054801 + ], + [ + 77.534295011573803, + 13.092133717904501 + ], + [ + 77.534335690725797, + 13.092130266211001 + ], + [ + 77.534394101861196, + 13.092137059013201 + ], + [ + 77.5346515895897, + 13.091627958475 + ], + [ + 77.534824217515407, + 13.091286638911001 + ], + [ + 77.534922895759095, + 13.091111799663199 + ], + [ + 77.534951107627407, + 13.091061813661399 + ], + [ + 77.535439593022005, + 13.0901963079453 + ], + [ + 77.535452397998995, + 13.090173619814699 + ], + [ + 77.537247929214502, + 13.090095058614599 + ], + [ + 77.538542861645098, + 13.090036132028199 + ], + [ + 77.538966747660496, + 13.090022576125399 + ], + [ + 77.5390020610471, + 13.0900214469902 + ], + [ + 77.5394624635626, + 13.090006723998499 + ], + [ + 77.540550553730199, + 13.089977684974 + ], + [ + 77.540550611780404, + 13.089977683498701 + ], + [ + 77.540712967736695, + 13.089973350290601 + ], + [ + 77.540713742654603, + 13.0899733300083 + ], + [ + 77.5407136051126, + 13.089973039544899 + ], + [ + 77.540710098644894, + 13.089965625943799 + ], + [ + 77.540643316603294, + 13.0898244320835 + ], + [ + 77.540642803836406, + 13.089823502051001 + ], + [ + 77.540600736111102, + 13.089747183574 + ], + [ + 77.540590515480105, + 13.0897286413048 + ], + [ + 77.540575745676804, + 13.0897018464469 + ], + [ + 77.540573889008002, + 13.0896984785585 + ], + [ + 77.540254865066004, + 13.089119706883601 + ], + [ + 77.540242722083505, + 13.0890976762813 + ], + [ + 77.540064870526905, + 13.0887750178129 + ], + [ + 77.539927495831094, + 13.088525790649699 + ], + [ + 77.539767682967806, + 13.088235857418301 + ], + [ + 77.539662724630702, + 13.0880454388743 + ], + [ + 77.539481498987897, + 13.0877137204848 + ], + [ + 77.539260091659401, + 13.0873084489339 + ], + [ + 77.5390944619609, + 13.0870052741684 + ], + [ + 77.538823803897301, + 13.086710010943801 + ], + [ + 77.538678644521099, + 13.0865516537781 + ], + [ + 77.538469055853994, + 13.086323009463401 + ], + [ + 77.538415821520999, + 13.0862649355029 + ], + [ + 77.537953530936505, + 13.085760612982799 + ], + [ + 77.537244316999903, + 13.0844514710149 + ], + [ + 77.536892945171104, + 13.083802863713199 + ], + [ + 77.536884620273, + 13.0837874972132 + ], + [ + 77.536626852952097, + 13.0837887620589 + ], + [ + 77.535069983103298, + 13.0837963968892 + ], + [ + 77.534982684971098, + 13.0837767296194 + ], + [ + 77.534546770885996, + 13.0836785235498 + ], + [ + 77.534399691358502, + 13.0836453889503 + ], + [ + 77.534347898740805, + 13.0836337198326 + ], + [ + 77.533178388274195, + 13.083382936489899 + ], + [ + 77.533036571613906, + 13.08337190602 + ], + [ + 77.531747250666598, + 13.0830723724787 + ], + [ + 77.531716629884897, + 13.0830652581466 + ], + [ + 77.531196696507394, + 13.082917898519399 + ], + [ + 77.530840190729904, + 13.08281072037 + ], + [ + 77.530629429451807, + 13.082647904269299 + ], + [ + 77.5300981845715, + 13.082238646940199 + ], + [ + 77.530043807477696, + 13.0821991943208 + ], + [ + 77.530010870920293, + 13.0821752979294 + ], + [ + 77.530003701796801, + 13.082170096471399 + ], + [ + 77.529979194369204, + 13.082152315235801 + ], + [ + 77.529946138979497, + 13.0821283332658 + ], + [ + 77.529955515771903, + 13.0820875852068 + ], + [ + 77.529949800603703, + 13.0819306679159 + ], + [ + 77.529934711097994, + 13.081516344651799 + ], + [ + 77.529839756352501, + 13.0813557803045 + ], + [ + 77.529787158714399, + 13.080942958507601 + ], + [ + 77.529632857474695, + 13.079990180940101 + ], + [ + 77.529421940678105, + 13.079021017773 + ], + [ + 77.5294394850755, + 13.078877419970601 + ], + [ + 77.529526536863798, + 13.0787715384939 + ], + [ + 77.5296827156494, + 13.0787790426161 + ], + [ + 77.529809428051394, + 13.078777800744099 + ], + [ + 77.529904911885495, + 13.078595041598 + ], + [ + 77.530051114833697, + 13.078584573894901 + ], + [ + 77.530123120610796, + 13.0785893828801 + ], + [ + 77.530228074264997, + 13.078596391363799 + ], + [ + 77.530256937354295, + 13.078599032964 + ], + [ + 77.5302615147816, + 13.0785994515733 + ], + [ + 77.530265942107903, + 13.0785997018016 + ], + [ + 77.530295519743802, + 13.078601376908299 + ], + [ + 77.530350610651595, + 13.0782506629157 + ], + [ + 77.530373529034705, + 13.078104761019899 + ], + [ + 77.530403524960604, + 13.077913807806199 + ], + [ + 77.530345693724101, + 13.077913297764001 + ], + [ + 77.530296202256395, + 13.077572869485801 + ], + [ + 77.530094404678096, + 13.0761847706442 + ], + [ + 77.528573945178906, + 13.0763255630074 + ], + [ + 77.527259122643997, + 13.076517720731999 + ], + [ + 77.526853526202203, + 13.0765461416559 + ], + [ + 77.526790935532006, + 13.076278479150099 + ], + [ + 77.526673826299699, + 13.0762724535712 + ], + [ + 77.526751294264201, + 13.0759776712825 + ], + [ + 77.525961889071198, + 13.076042766601599 + ], + [ + 77.525749558494496, + 13.0753061973346 + ], + [ + 77.525634963586796, + 13.074109706579801 + ], + [ + 77.525541932161602, + 13.0735942809401 + ], + [ + 77.525450656224095, + 13.073479949262101 + ], + [ + 77.524171492164498, + 13.0748048254503 + ], + [ + 77.5241710352458, + 13.074805298820101 + ], + [ + 77.524170752655607, + 13.074803702434499 + ], + [ + 77.524015806394004, + 13.073928327269 + ], + [ + 77.523597171346907, + 13.072506517520999 + ], + [ + 77.525301540801394, + 13.071956786963099 + ], + [ + 77.524932968727001, + 13.0710059652653 + ], + [ + 77.524806553497598, + 13.0710362550493 + ], + [ + 77.524587019391205, + 13.071028839699 + ], + [ + 77.5241915944803, + 13.070989676860201 + ], + [ + 77.523548802906902, + 13.0708707116996 + ], + [ + 77.522153569156998, + 13.0709739873472 + ], + [ + 77.521059049478794, + 13.0710732129458 + ], + [ + 77.520709734687699, + 13.0711127006859 + ], + [ + 77.520336177820496, + 13.071167968414899 + ], + [ + 77.520264231765395, + 13.071179019842299 + ], + [ + 77.520211495370404, + 13.071187120964099 + ], + [ + 77.519818729514796, + 13.071253439099699 + ], + [ + 77.5193433286763, + 13.0713526366279 + ], + [ + 77.519239913234998, + 13.0713751536179 + ], + [ + 77.518964174155698, + 13.0714437902935 + ], + [ + 77.518417737135096, + 13.071587123223701 + ], + [ + 77.518049184823795, + 13.070850018601201 + ], + [ + 77.517844658541193, + 13.0704753912519 + ], + [ + 77.517602353115393, + 13.0700556440881 + ], + [ + 77.517362389110602, + 13.069703291878501 + ], + [ + 77.517204335267095, + 13.069529545859799 + ], + [ + 77.516205094352898, + 13.068204782481001 + ], + [ + 77.515904379967097, + 13.067767379737999 + ], + [ + 77.515911467511501, + 13.067550703379201 + ], + [ + 77.514219885809496, + 13.068152701685801 + ], + [ + 77.512742322637095, + 13.068695848060599 + ], + [ + 77.511929970378105, + 13.0690782768564 + ], + [ + 77.511809400808104, + 13.067541014839099 + ], + [ + 77.511214088556301, + 13.0675887402939 + ], + [ + 77.511162261785898, + 13.0670643503785 + ], + [ + 77.511131010087695, + 13.0670686935531 + ], + [ + 77.511100616030205, + 13.0664406050025 + ], + [ + 77.510991830487995, + 13.0658105790293 + ], + [ + 77.510885662071502, + 13.0656056220542 + ], + [ + 77.510750021305299, + 13.064568221379099 + ], + [ + 77.510101959866503, + 13.064668696020799 + ], + [ + 77.510061770009898, + 13.0643898788902 + ], + [ + 77.509931731573502, + 13.0642963814082 + ], + [ + 77.509832695796405, + 13.0642484772017 + ], + [ + 77.509648419640797, + 13.064195826871501 + ], + [ + 77.509354476390996, + 13.0641965229695 + ], + [ + 77.509184248761002, + 13.064208799609 + ], + [ + 77.509184755014104, + 13.0642590452366 + ], + [ + 77.509073632442295, + 13.0642700562431 + ], + [ + 77.509065215983398, + 13.0641026762873 + ], + [ + 77.509132231247406, + 13.0640216124976 + ], + [ + 77.509297269782394, + 13.0637745609483 + ], + [ + 77.509053065907096, + 13.0637725992173 + ], + [ + 77.508467837237006, + 13.063824237041199 + ], + [ + 77.507544431446206, + 13.0638181620031 + ], + [ + 77.505977071616897, + 13.0636764111141 + ], + [ + 77.505220729373704, + 13.063568579187899 + ], + [ + 77.505116888655806, + 13.0638310357304 + ], + [ + 77.505111038781905, + 13.0638404877966 + ], + [ + 77.505078915681693, + 13.0638923891876 + ], + [ + 77.505058538438803, + 13.0639237452675 + ], + [ + 77.504963458511995, + 13.0640700542211 + ], + [ + 77.505023768423499, + 13.0640972427089 + ], + [ + 77.5049923830003, + 13.0641466297712 + ], + [ + 77.504551765559796, + 13.0648391327298 + ], + [ + 77.504252265441195, + 13.065309843930899 + ], + [ + 77.504181233645099, + 13.065273730677699 + ], + [ + 77.504116351871701, + 13.065236809708599 + ], + [ + 77.503857302596003, + 13.0651415640769 + ], + [ + 77.503876208844105, + 13.065075984647599 + ], + [ + 77.503624947436194, + 13.0650322061746 + ], + [ + 77.503611155933001, + 13.0651640042044 + ], + [ + 77.503344653122298, + 13.0652150064873 + ], + [ + 77.502906443815405, + 13.0652684903403 + ], + [ + 77.502891265263699, + 13.065198385818 + ], + [ + 77.500973631180898, + 13.065518250627701 + ], + [ + 77.499475049188703, + 13.0657924873244 + ], + [ + 77.499584240871499, + 13.066587176292099 + ], + [ + 77.499716649717996, + 13.0674791601379 + ], + [ + 77.499424017324102, + 13.0675733551144 + ], + [ + 77.4995144445016, + 13.0680845198538 + ], + [ + 77.499197949380402, + 13.0681159181794 + ], + [ + 77.499195123531095, + 13.068093625368199 + ], + [ + 77.498873366595603, + 13.068103008140699 + ], + [ + 77.498870778828504, + 13.0680320846502 + ], + [ + 77.498282410312797, + 13.068066870476599 + ], + [ + 77.498239544659199, + 13.067903374967299 + ], + [ + 77.497978048433495, + 13.067951271339499 + ], + [ + 77.498040921085305, + 13.068915005563801 + ], + [ + 77.497610614990705, + 13.0689095954436 + ], + [ + 77.497780628966495, + 13.0705238557633 + ], + [ + 77.497658803463494, + 13.0705251116963 + ], + [ + 77.497534711762697, + 13.0715038372308 + ], + [ + 77.497394377093997, + 13.0722331655502 + ], + [ + 77.497197945467406, + 13.0732231436396 + ], + [ + 77.4971798354199, + 13.073348153616999 + ], + [ + 77.497288744895698, + 13.0733417020123 + ], + [ + 77.497291411628794, + 13.0733431190964 + ], + [ + 77.498343977853494, + 13.073292178231799 + ], + [ + 77.499416351620297, + 13.071998381482601 + ], + [ + 77.499504573101106, + 13.0719799168054 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "314", + "group": "Gavi Gangadhareshwara", + "Corporatio": "West", + "ac_no": "170", + "ac": "Basavanagudi", + "corporat_1": "5", + "ward_id": "75", + "ward_name": "75 - Kempambudhi Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಬಸವನಗುಡಿ", + "ward_name_": "ಕೆಂಪಾಂಬುಧಿ ವಾರ್ಡ್", + "dig_ward_n": "Gavi Gangadhareshwara", + "Assembly": "170 - Basavanagudi", + "Slno": "75" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.564178156057693, + 12.9461946195275 + ], + [ + 77.563552068377106, + 12.9462045870926 + ], + [ + 77.563332367643994, + 12.946235007229999 + ], + [ + 77.563335818935997, + 12.9465298567742 + ], + [ + 77.563070432516199, + 12.946527364883 + ], + [ + 77.562792586640001, + 12.9465211351548 + ], + [ + 77.5626852532002, + 12.94651602942 + ], + [ + 77.562579685939298, + 12.946488382924001 + ], + [ + 77.562425166637297, + 12.9464949085817 + ], + [ + 77.562424750469106, + 12.946494926226199 + ], + [ + 77.562144694910799, + 12.9465036919159 + ], + [ + 77.561977738196006, + 12.9465061838072 + ], + [ + 77.562014833243794, + 12.946591465629 + ], + [ + 77.562074125511103, + 12.9466697182609 + ], + [ + 77.562234966950697, + 12.9468832731914 + ], + [ + 77.562301125152302, + 12.946989520492901 + ], + [ + 77.562386840119103, + 12.947149313032799 + ], + [ + 77.562169434712999, + 12.9471959119084 + ], + [ + 77.561780548989603, + 12.9472757508307 + ], + [ + 77.561730943708199, + 12.9472859606543 + ], + [ + 77.561650319247605, + 12.9473025539007 + ], + [ + 77.561619813505999, + 12.947104377869801 + ], + [ + 77.561508310805493, + 12.947115992125999 + ], + [ + 77.561359501940998, + 12.9471259402971 + ], + [ + 77.561255741438302, + 12.947131980801901 + ], + [ + 77.561252553363701, + 12.947106194946601 + ], + [ + 77.561229124636895, + 12.9468884210119 + ], + [ + 77.561221658208893, + 12.946801722754101 + ], + [ + 77.561007001152007, + 12.946831083666799 + ], + [ + 77.560914184593699, + 12.9468348644122 + ], + [ + 77.560860860083693, + 12.9468396907737 + ], + [ + 77.560703123479797, + 12.9468584518828 + ], + [ + 77.560440241284795, + 12.946890558034999 + ], + [ + 77.560168479884396, + 12.9469287329672 + ], + [ + 77.559879873815106, + 12.946939564181299 + ], + [ + 77.5598199515007, + 12.946758527982301 + ], + [ + 77.559769942856704, + 12.946586910486101 + ], + [ + 77.559734395548503, + 12.9463993738113 + ], + [ + 77.559712622193203, + 12.946271939892901 + ], + [ + 77.559694639458002, + 12.9461142119127 + ], + [ + 77.559693348477794, + 12.9461028889032 + ], + [ + 77.559527994531905, + 12.946002132367999 + ], + [ + 77.559420172249304, + 12.946030556297799 + ], + [ + 77.559328824845593, + 12.946035038440799 + ], + [ + 77.559095028771793, + 12.946051677964601 + ], + [ + 77.558916026077299, + 12.946064192469001 + ], + [ + 77.558759071268398, + 12.9460913617831 + ], + [ + 77.558623263194406, + 12.9461150347501 + ], + [ + 77.558598344281805, + 12.9459655212741 + ], + [ + 77.558102613664701, + 12.946061926317601 + ], + [ + 77.557629149713506, + 12.9461869121733 + ], + [ + 77.557090905810696, + 12.9462513100538 + ], + [ + 77.556592527557498, + 12.946307377607299 + ], + [ + 77.556879718025897, + 12.947937697468101 + ], + [ + 77.555358418407906, + 12.9481999690239 + ], + [ + 77.555226348170805, + 12.9474623692091 + ], + [ + 77.554504322676493, + 12.948356335200801 + ], + [ + 77.554445763231698, + 12.948467224362201 + ], + [ + 77.553979730166503, + 12.949113823559101 + ], + [ + 77.554332226434497, + 12.9493557393416 + ], + [ + 77.554124932231204, + 12.9496670700068 + ], + [ + 77.553361835944898, + 12.950703156701 + ], + [ + 77.553534106919201, + 12.950472037225 + ], + [ + 77.553387293226905, + 12.9506697648896 + ], + [ + 77.553767814873098, + 12.950800792233 + ], + [ + 77.553839584918293, + 12.951291260995999 + ], + [ + 77.554052417633699, + 12.9513189549749 + ], + [ + 77.554143148597802, + 12.951330760744201 + ], + [ + 77.554151600292698, + 12.9513318604997 + ], + [ + 77.554270239283497, + 12.9517862494883 + ], + [ + 77.554926595401597, + 12.951831408697601 + ], + [ + 77.555598285305805, + 12.951735178663499 + ], + [ + 77.555391137369597, + 12.9504567460439 + ], + [ + 77.555477281201306, + 12.9504340073966 + ], + [ + 77.555482220893694, + 12.9504327031263 + ], + [ + 77.555511430323094, + 12.9504242068236 + ], + [ + 77.555518383682099, + 12.9504221844226 + ], + [ + 77.555554717703302, + 12.9504096691933 + ], + [ + 77.5555549949121, + 12.9504095734173 + ], + [ + 77.555556687555693, + 12.9504089903416 + ], + [ + 77.555565843809504, + 12.950405836878099 + ], + [ + 77.5555757536671, + 12.950402423051999 + ], + [ + 77.555632019237706, + 12.9503929629224 + ], + [ + 77.555643210373503, + 12.9503910814412 + ], + [ + 77.555697021619693, + 12.9503820347689 + ], + [ + 77.555733218936993, + 12.9503749036766 + ], + [ + 77.555734842492598, + 12.950374591412499 + ], + [ + 77.555779260567306, + 12.9503660615093 + ], + [ + 77.555819981962003, + 12.950358241850701 + ], + [ + 77.556036739849603, + 12.9503301414461 + ], + [ + 77.556046404695095, + 12.9503288070633 + ], + [ + 77.556060276946994, + 12.9503268938362 + ], + [ + 77.556168968201902, + 12.9503119031552 + ], + [ + 77.556353730746395, + 12.9502513651275 + ], + [ + 77.556527192199198, + 12.950160179596001 + ], + [ + 77.556563890826894, + 12.9501408874224 + ], + [ + 77.556687909647906, + 12.9500515828906 + ], + [ + 77.556720905994197, + 12.9500128619911 + ], + [ + 77.556751132717494, + 12.949986084006101 + ], + [ + 77.556755709946799, + 12.949982028622401 + ], + [ + 77.5567642410969, + 12.9499717809655 + ], + [ + 77.556766520678707, + 12.9499694999417 + ], + [ + 77.556854056673899, + 12.949993593427299 + ], + [ + 77.556943237863393, + 12.950018140530799 + ], + [ + 77.5569691948524, + 12.9500252850812 + ], + [ + 77.556996300044105, + 12.950032745410599 + ], + [ + 77.557140422969496, + 12.950054243324001 + ], + [ + 77.557153924434402, + 12.950056257407899 + ], + [ + 77.557173890175804, + 12.950059235268 + ], + [ + 77.557391269731795, + 12.950092110318201 + ], + [ + 77.557455376007397, + 12.9500986408695 + ], + [ + 77.5575024981095, + 12.9501034408881 + ], + [ + 77.557606422485705, + 12.950114293817901 + ], + [ + 77.557673897111101, + 12.9501213396418 + ], + [ + 77.557745052863297, + 12.9501287703154 + ], + [ + 77.557764437765897, + 12.950130794357101 + ], + [ + 77.557828699721398, + 12.950137505782999 + ], + [ + 77.557837910216193, + 12.9501374153439 + ], + [ + 77.557903468632006, + 12.9501386625476 + ], + [ + 77.558072846973502, + 12.950141884301001 + ], + [ + 77.558078939244695, + 12.9502875072544 + ], + [ + 77.558064237313204, + 12.950313626079 + ], + [ + 77.557972742559997, + 12.9503179134303 + ], + [ + 77.5579086615124, + 12.9503275754707 + ], + [ + 77.557844555616299, + 12.9503372404504 + ], + [ + 77.557745070792095, + 12.950348381222099 + ], + [ + 77.557665147372205, + 12.950414666776901 + ], + [ + 77.557647533151794, + 12.950493892419001 + ], + [ + 77.5576445643607, + 12.950550031815601 + ], + [ + 77.557641259807696, + 12.950612533056001 + ], + [ + 77.557626938161206, + 12.950675915831599 + ], + [ + 77.557619541314395, + 12.9507338487073 + ], + [ + 77.557613078460804, + 12.9507844670401 + ], + [ + 77.557587495669694, + 12.9508163393081 + ], + [ + 77.557515410499207, + 12.9508402470133 + ], + [ + 77.557496265756498, + 12.9508465965769 + ], + [ + 77.557430467581895, + 12.9508867698532 + ], + [ + 77.557372442890696, + 12.9509550990034 + ], + [ + 77.557277955430806, + 12.951061053833399 + ], + [ + 77.557248180208802, + 12.9510869128616 + ], + [ + 77.557227028991903, + 12.951105282154399 + ], + [ + 77.557139856127606, + 12.951180988686801 + ], + [ + 77.557044584879904, + 12.9512101570828 + ], + [ + 77.556993316680504, + 12.9512072723966 + ], + [ + 77.556917924731906, + 12.951208013386401 + ], + [ + 77.556912724460602, + 12.9512080644342 + ], + [ + 77.556802278614498, + 12.951217052956499 + ], + [ + 77.556758783953597, + 12.9512398052909 + ], + [ + 77.556718670257993, + 12.951260787982999 + ], + [ + 77.556652758438403, + 12.951289668065201 + ], + [ + 77.556568355456207, + 12.951311953676599 + ], + [ + 77.556436793554795, + 12.9513392194144 + ], + [ + 77.556308168432693, + 12.951372102894601 + ], + [ + 77.556187948097005, + 12.951438783594099 + ], + [ + 77.556137631607001, + 12.951467344278401 + ], + [ + 77.556078619149304, + 12.951500840066499 + ], + [ + 77.555826135078107, + 12.951582370450099 + ], + [ + 77.555792297830095, + 12.951595125055499 + ], + [ + 77.555726275278701, + 12.951624099079201 + ], + [ + 77.555650156048898, + 12.9516575033457 + ], + [ + 77.555650170219295, + 12.951657540909601 + ], + [ + 77.555655801513097, + 12.951672468762601 + ], + [ + 77.555690267858395, + 12.951763834663099 + ], + [ + 77.555789800563005, + 12.952027681260301 + ], + [ + 77.555921322886505, + 12.9523053972803 + ], + [ + 77.555968673076507, + 12.9524053793329 + ], + [ + 77.556313947671399, + 12.9529542307084 + ], + [ + 77.556422335993005, + 12.9531053411092 + ], + [ + 77.556481736012003, + 12.9531881537216 + ], + [ + 77.556533542754195, + 12.953260380927899 + ], + [ + 77.556600589271298, + 12.953255808076101 + ], + [ + 77.556814857141504, + 12.953241193496201 + ], + [ + 77.5570635779047, + 12.953224228471001 + ], + [ + 77.557219471342705, + 12.953213595453001 + ], + [ + 77.557597310400396, + 12.953187823626299 + ], + [ + 77.557706117743294, + 12.9531810379844 + ], + [ + 77.557873315703603, + 12.953170610677899 + ], + [ + 77.557898220721199, + 12.9531690578651 + ], + [ + 77.557898544759297, + 12.953169037516799 + ], + [ + 77.558482195488295, + 12.9531317006342 + ], + [ + 77.558480451477294, + 12.9531534125202 + ], + [ + 77.558478109120699, + 12.9531825603285 + ], + [ + 77.558477579585499, + 12.953187082824 + ], + [ + 77.558537253940401, + 12.9531874678083 + ], + [ + 77.558558201405702, + 12.953187602623601 + ], + [ + 77.558579453796895, + 12.953187739862299 + ], + [ + 77.558579659230205, + 12.953187741457899 + ], + [ + 77.558579932831293, + 12.9531877432873 + ], + [ + 77.558582227570298, + 12.9531877577852 + ], + [ + 77.558616337337796, + 12.9531879783099 + ], + [ + 77.558771991174297, + 12.953213075802299 + ], + [ + 77.558776001104405, + 12.95321372213 + ], + [ + 77.558789553310604, + 12.9532159072546 + ], + [ + 77.558807791765304, + 12.9532188477035 + ], + [ + 77.559131432679095, + 12.953396359363699 + ], + [ + 77.559178035937094, + 12.953420103254899 + ], + [ + 77.559261704960406, + 12.9534627319746 + ], + [ + 77.559346721295, + 12.953506046698401 + ], + [ + 77.559504074580502, + 12.953580164896 + ], + [ + 77.559660772439599, + 12.953646384166699 + ], + [ + 77.559811377280496, + 12.9536799128726 + ], + [ + 77.559812839290501, + 12.953679926509301 + ], + [ + 77.5601084771356, + 12.9536826390471 + ], + [ + 77.560146253074393, + 12.9536779871103 + ], + [ + 77.560184144935207, + 12.953673321380199 + ], + [ + 77.560198940308993, + 12.953671500017601 + ], + [ + 77.560257976420402, + 12.9536642304436 + ], + [ + 77.560282198952507, + 12.953662056202599 + ], + [ + 77.560356909645407, + 12.9536553516613 + ], + [ + 77.560480814248095, + 12.953611219260299 + ], + [ + 77.560593511109303, + 12.9535541068116 + ], + [ + 77.560740743571898, + 12.953479493577399 + ], + [ + 77.560762608998601, + 12.953468412701101 + ], + [ + 77.560807457870396, + 12.953450731939601 + ], + [ + 77.561024083580804, + 12.9533653319597 + ], + [ + 77.561085160047597, + 12.9533573546195 + ], + [ + 77.561201743751795, + 12.9533421277433 + ], + [ + 77.5614088078474, + 12.9533529710006 + ], + [ + 77.561520486309107, + 12.953358819280799 + ], + [ + 77.5616919435668, + 12.9533677981472 + ], + [ + 77.561719339556802, + 12.953032052645501 + ], + [ + 77.561733120205801, + 12.952863164049299 + ], + [ + 77.561743353231904, + 12.9527377602877 + ], + [ + 77.561758888121304, + 12.9525473765641 + ], + [ + 77.561762033906604, + 12.952508824942401 + ], + [ + 77.5617832583997, + 12.9522759770042 + ], + [ + 77.561791037967296, + 12.952192330748201 + ], + [ + 77.561793555284098, + 12.951650232007299 + ], + [ + 77.561820091635795, + 12.9515991506704 + ], + [ + 77.561896868568994, + 12.951450455406601 + ], + [ + 77.562195296374, + 12.9509673645286 + ], + [ + 77.562292740210594, + 12.950809623799801 + ], + [ + 77.562272012680907, + 12.950358302766499 + ], + [ + 77.562272003234199, + 12.9503580995818 + ], + [ + 77.562262043536407, + 12.950304555727 + ], + [ + 77.562230629354005, + 12.950135676241301 + ], + [ + 77.562214130312299, + 12.9500469772582 + ], + [ + 77.562151789832797, + 12.949955000289201 + ], + [ + 77.562144279647001, + 12.9499439197755 + ], + [ + 77.562120604707104, + 12.9499089898056 + ], + [ + 77.561970044298903, + 12.9497670468512 + ], + [ + 77.561934146002898, + 12.949747072125501 + ], + [ + 77.5619039926993, + 12.9497259115739 + ], + [ + 77.561877868972104, + 12.949704711389501 + ], + [ + 77.561858699261506, + 12.9496879600976 + ], + [ + 77.561753280667006, + 12.949604256160899 + ], + [ + 77.561738081039906, + 12.949592187281199 + ], + [ + 77.561736714953994, + 12.9495911021115 + ], + [ + 77.561735070264504, + 12.949589795624201 + ], + [ + 77.561665133830203, + 12.949513649768001 + ], + [ + 77.561603494332402, + 12.9494465363733 + ], + [ + 77.561495488968703, + 12.9493561242688 + ], + [ + 77.561495059547795, + 12.9492578766421 + ], + [ + 77.561634182714798, + 12.9492384404295 + ], + [ + 77.561987810162293, + 12.949091310006301 + ], + [ + 77.562354211286802, + 12.9489388643889 + ], + [ + 77.562520266021494, + 12.9490196714671 + ], + [ + 77.562593640529897, + 12.9490478295677 + ], + [ + 77.562679309108404, + 12.9490903835111 + ], + [ + 77.562771632719105, + 12.949110932389001 + ], + [ + 77.562826273404099, + 12.949105877580701 + ], + [ + 77.562967294652907, + 12.949046894908999 + ], + [ + 77.563205402673006, + 12.9489112925247 + ], + [ + 77.563288039806096, + 12.9488704428055 + ], + [ + 77.563440828508305, + 12.948794914793501 + ], + [ + 77.563647775123798, + 12.948718693459099 + ], + [ + 77.563757961727404, + 12.948674344868699 + ], + [ + 77.563792822234305, + 12.9486491567811 + ], + [ + 77.563823803358204, + 12.948638688019701 + ], + [ + 77.563992376311006, + 12.9486279944669 + ], + [ + 77.564111200750702, + 12.9485940747439 + ], + [ + 77.564239395261694, + 12.9485194072595 + ], + [ + 77.564237121259595, + 12.948353419736399 + ], + [ + 77.564235736879795, + 12.948274381025699 + ], + [ + 77.5642312684232, + 12.948001490260699 + ], + [ + 77.564226529606998, + 12.947712070724799 + ], + [ + 77.564226464116402, + 12.9477106213236 + ], + [ + 77.564219020747501, + 12.9475457028598 + ], + [ + 77.564214244367903, + 12.947439877551499 + ], + [ + 77.564217334870094, + 12.947287185769801 + ], + [ + 77.564223441555995, + 12.946985338156001 + ], + [ + 77.564230189178602, + 12.9466518641972 + ], + [ + 77.564232114081307, + 12.946550812743 + ], + [ + 77.564232591650907, + 12.9465257326393 + ], + [ + 77.564232946576993, + 12.946507122482901 + ], + [ + 77.564233043712306, + 12.9465020246019 + ], + [ + 77.564233463212204, + 12.9464800083166 + ], + [ + 77.564233496264293, + 12.946478286908899 + ], + [ + 77.564234174553505, + 12.9464426633124 + ], + [ + 77.564234801937602, + 12.946409717155101 + ], + [ + 77.564235454991007, + 12.946375408334401 + ], + [ + 77.564235979221394, + 12.946347865855399 + ], + [ + 77.5642362741781, + 12.9463323976035 + ], + [ + 77.564236869405505, + 12.946301170134699 + ], + [ + 77.564237457986096, + 12.946270283333901 + ], + [ + 77.564238680883406, + 12.946198663425401 + ], + [ + 77.564178156057693, + 12.9461946195275 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "349", + "group": "puttenahalli", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "59", + "ward_name": "59 - Puttenahalli", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಪುಟ್ಟೇನಹಳ್ಳಿ", + "dig_ward_n": "puttenahalli", + "Assembly": "175 - Bommanahalli", + "Slno": "59" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.589815368882, + 12.900166411200701 + ], + [ + 77.589788147278497, + 12.900319448981399 + ], + [ + 77.589766327185501, + 12.900442119820401 + ], + [ + 77.590572448057401, + 12.9004809444251 + ], + [ + 77.590623691570897, + 12.9002295940058 + ], + [ + 77.590656734761794, + 12.900040474489 + ], + [ + 77.5910417817731, + 12.900055141713599 + ], + [ + 77.591107677963194, + 12.9000505279369 + ], + [ + 77.591307052062106, + 12.9000696753945 + ], + [ + 77.591381850705602, + 12.8998841026724 + ], + [ + 77.591330506786704, + 12.899820588811901 + ], + [ + 77.591306532917002, + 12.8997675557052 + ], + [ + 77.591304992247501, + 12.8996889815595 + ], + [ + 77.591320398942699, + 12.899564187328201 + ], + [ + 77.591331183629407, + 12.8994902351911 + ], + [ + 77.591339741804902, + 12.8993060857022 + ], + [ + 77.591554575786105, + 12.8981294332426 + ], + [ + 77.591680959689299, + 12.8981119142592 + ], + [ + 77.591705387576098, + 12.8980170510606 + ], + [ + 77.591701294322405, + 12.8979008858096 + ], + [ + 77.591828761628605, + 12.897869632491201 + ], + [ + 77.5919838091163, + 12.8978317894071 + ], + [ + 77.592085900956107, + 12.8978136144489 + ], + [ + 77.592185260699296, + 12.8977915058697 + ], + [ + 77.592082788057695, + 12.8972842210298 + ], + [ + 77.592208159602905, + 12.897249184964 + ], + [ + 77.592239105999894, + 12.897076532718099 + ], + [ + 77.592247226886798, + 12.8963600357818 + ], + [ + 77.592292370729496, + 12.8957420347504 + ], + [ + 77.592303320986005, + 12.8955292003875 + ], + [ + 77.592305364327302, + 12.8954894847807 + ], + [ + 77.592325720690695, + 12.895384107210401 + ], + [ + 77.5923244339549, + 12.895375592393799 + ], + [ + 77.592317353864004, + 12.895328733377401 + ], + [ + 77.592329873648396, + 12.8948409765615 + ], + [ + 77.592355689556697, + 12.8943346044684 + ], + [ + 77.5923558198226, + 12.8943320518622 + ], + [ + 77.592357984529698, + 12.8939744325269 + ], + [ + 77.592356409171302, + 12.8938214659052 + ], + [ + 77.592353975681604, + 12.893513587688799 + ], + [ + 77.592354427116604, + 12.893055684917099 + ], + [ + 77.592373385622594, + 12.8927851511579 + ], + [ + 77.592367385913505, + 12.892474312873899 + ], + [ + 77.592356689630506, + 12.892271870684 + ], + [ + 77.592346897835796, + 12.8919513440153 + ], + [ + 77.592291156127402, + 12.8914272668089 + ], + [ + 77.592099822532802, + 12.8914667250948 + ], + [ + 77.592064395658596, + 12.891440544792699 + ], + [ + 77.591748705070003, + 12.8903794859692 + ], + [ + 77.591590016109095, + 12.889868754022499 + ], + [ + 77.591428245809297, + 12.889898026743399 + ], + [ + 77.590787327287799, + 12.8900482420219 + ], + [ + 77.590762079403405, + 12.890058574450499 + ], + [ + 77.590531028824799, + 12.8901383815216 + ], + [ + 77.590337978653395, + 12.889747023635 + ], + [ + 77.590262754400399, + 12.889550077665699 + ], + [ + 77.590229604920694, + 12.889452773251399 + ], + [ + 77.589793571418596, + 12.8893964568203 + ], + [ + 77.589747080803605, + 12.889305908228099 + ], + [ + 77.589593492808802, + 12.8888041931027 + ], + [ + 77.589592159603498, + 12.8887964286245 + ], + [ + 77.589572343220297, + 12.8887998542403 + ], + [ + 77.589368204488295, + 12.8888340877002 + ], + [ + 77.588205442150596, + 12.889029076378501 + ], + [ + 77.588202878001596, + 12.889059592949399 + ], + [ + 77.588029825882799, + 12.889078244330401 + ], + [ + 77.587596465560495, + 12.8891378665211 + ], + [ + 77.587103909285304, + 12.889205978507601 + ], + [ + 77.586773532033206, + 12.889245128113901 + ], + [ + 77.586625624159694, + 12.8892626554701 + ], + [ + 77.586480759657903, + 12.889279897888599 + ], + [ + 77.586240041147903, + 12.8893229324778 + ], + [ + 77.585828954411397, + 12.889421857410699 + ], + [ + 77.585461651957402, + 12.8895248663005 + ], + [ + 77.585447310719005, + 12.8895295252462 + ], + [ + 77.585074473062505, + 12.889654045167299 + ], + [ + 77.584707366817398, + 12.889776249384701 + ], + [ + 77.584205653608706, + 12.889961894661401 + ], + [ + 77.583958973909205, + 12.890041124045499 + ], + [ + 77.583689918770702, + 12.890127350043899 + ], + [ + 77.583559131909098, + 12.8901704260107 + ], + [ + 77.583020985951407, + 12.890339489463299 + ], + [ + 77.582674869855893, + 12.8904321219122 + ], + [ + 77.582592838608406, + 12.890458905810799 + ], + [ + 77.582516840385097, + 12.8905127335332 + ], + [ + 77.582446438641298, + 12.890607161098901 + ], + [ + 77.582217921512907, + 12.8908860973816 + ], + [ + 77.582047859214299, + 12.891084275675199 + ], + [ + 77.581855950426601, + 12.8912849281375 + ], + [ + 77.581809708475802, + 12.8921287423282 + ], + [ + 77.581807466394494, + 12.892169655508299 + ], + [ + 77.581331641596904, + 12.892130308407999 + ], + [ + 77.580977455863305, + 12.8921118118298 + ], + [ + 77.580895125273301, + 12.8921075122242 + ], + [ + 77.580878623273307, + 12.8921953519277 + ], + [ + 77.580715561884304, + 12.8930633418261 + ], + [ + 77.580677901548199, + 12.893263809910801 + ], + [ + 77.580539696588502, + 12.8936502681064 + ], + [ + 77.580433759926507, + 12.8939961683683 + ], + [ + 77.580415500506803, + 12.894055786352 + ], + [ + 77.580221554351695, + 12.894575001267301 + ], + [ + 77.580105148193297, + 12.894886632391399 + ], + [ + 77.580022317807007, + 12.8950602339808 + ], + [ + 77.580005513119005, + 12.895095395727401 + ], + [ + 77.579892714562803, + 12.895331417650199 + ], + [ + 77.579853469836607, + 12.8954334427125 + ], + [ + 77.579760123774605, + 12.895725438294299 + ], + [ + 77.579734680253694, + 12.895805028301799 + ], + [ + 77.579701789310903, + 12.8959092493053 + ], + [ + 77.579635909575899, + 12.896220459517799 + ], + [ + 77.579596381691402, + 12.896407185648901 + ], + [ + 77.579562331225802, + 12.896566754301499 + ], + [ + 77.579540762833503, + 12.896643733968601 + ], + [ + 77.579526794035701, + 12.8966935876206 + ], + [ + 77.579537191375707, + 12.896753338505601 + ], + [ + 77.579539032310294, + 12.896760777741701 + ], + [ + 77.579552803162201, + 12.8968164258815 + ], + [ + 77.579637284294805, + 12.8969161011035 + ], + [ + 77.579670021919, + 12.8969617322023 + ], + [ + 77.579673487670306, + 12.8969665629131 + ], + [ + 77.579682139585401, + 12.8969740405563 + ], + [ + 77.579851771084094, + 12.897120648835401 + ], + [ + 77.579899800938605, + 12.897174608898601 + ], + [ + 77.580215638190793, + 12.897370273928001 + ], + [ + 77.580845772025498, + 12.8977508193001 + ], + [ + 77.5810691691063, + 12.897844800141 + ], + [ + 77.582122339108494, + 12.897794615346299 + ], + [ + 77.582237045942094, + 12.8978390379648 + ], + [ + 77.582411233926095, + 12.8978371424306 + ], + [ + 77.5825719904349, + 12.897837101901599 + ], + [ + 77.582652654215394, + 12.8978787403454 + ], + [ + 77.582694252286302, + 12.8979619365037 + ], + [ + 77.582716915161001, + 12.8980454723463 + ], + [ + 77.582691005640498, + 12.898118782734 + ], + [ + 77.582648802518705, + 12.8981953479363 + ], + [ + 77.582694575452805, + 12.898430254559599 + ], + [ + 77.582687642440007, + 12.898609742559 + ], + [ + 77.582740025203705, + 12.8986397856146 + ], + [ + 77.582851723744099, + 12.898671369339899 + ], + [ + 77.583070733750503, + 12.898723893220801 + ], + [ + 77.583464139879396, + 12.898732225786 + ], + [ + 77.583743771397707, + 12.898682924361299 + ], + [ + 77.584054986641306, + 12.898608972224199 + ], + [ + 77.584215986606395, + 12.8985689148166 + ], + [ + 77.584658929094203, + 12.8984533646024 + ], + [ + 77.5849115988959, + 12.8983640057701 + ], + [ + 77.585045637144404, + 12.898337814388199 + ], + [ + 77.585284440920404, + 12.898342436396799 + ], + [ + 77.585388821280603, + 12.898323948362499 + ], + [ + 77.585812505399304, + 12.898312393341101 + ], + [ + 77.5858868427038, + 12.8983293407058 + ], + [ + 77.585884146532095, + 12.8987892305583 + ], + [ + 77.586071276512797, + 12.8987714488827 + ], + [ + 77.586098299595704, + 12.8987707425241 + ], + [ + 77.586226175166104, + 12.898790771227899 + ], + [ + 77.586276381902707, + 12.8988041235549 + ], + [ + 77.586326318685096, + 12.898800015245 + ], + [ + 77.586597476521106, + 12.898831598970199 + ], + [ + 77.586656021962895, + 12.898889374077299 + ], + [ + 77.586674110841599, + 12.898871267184401 + ], + [ + 77.587033094031796, + 12.8988612669598 + ], + [ + 77.587037083142107, + 12.8990817290917 + ], + [ + 77.587007294614097, + 12.8993076658527 + ], + [ + 77.586991117584105, + 12.899410505543299 + ], + [ + 77.587344316072205, + 12.899412046212801 + ], + [ + 77.587584660517706, + 12.8994320749166 + ], + [ + 77.587556928466398, + 12.899646998314999 + ], + [ + 77.587543832775395, + 12.899833419327299 + ], + [ + 77.587425201222104, + 12.8998380413358 + ], + [ + 77.587372079384394, + 12.8999562216255 + ], + [ + 77.588505144762493, + 12.900203381112901 + ], + [ + 77.588562533746696, + 12.9001161213738 + ], + [ + 77.588777031574395, + 12.900132940709801 + ], + [ + 77.589016866953301, + 12.9001475564966 + ], + [ + 77.589205596099205, + 12.900167399772799 + ], + [ + 77.589815368882, + 12.900166411200701 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "316", + "group": "yelachenahalli", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "63", + "ward_name": "63 - Yelachenahalli", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಯೆಲಚೇನಹಳ್ಳಿ", + "dig_ward_n": "yelachenahalli", + "Assembly": "176 - Bangalore South", + "Slno": "63" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.568408216548804, + 12.8941239906235 + ], + [ + 77.568361431426595, + 12.894080032082901 + ], + [ + 77.568160542585204, + 12.8938438790488 + ], + [ + 77.567482259616995, + 12.893822478581299 + ], + [ + 77.565785486241694, + 12.893888105419901 + ], + [ + 77.564449028830595, + 12.894038349176901 + ], + [ + 77.563421774822999, + 12.8941561701641 + ], + [ + 77.562833349286294, + 12.8941717304986 + ], + [ + 77.562402249310907, + 12.8942032599064 + ], + [ + 77.561986189398695, + 12.894231228105401 + ], + [ + 77.561880136879594, + 12.893838612391299 + ], + [ + 77.561477492982306, + 12.8939312988952 + ], + [ + 77.561596530435594, + 12.894460315309701 + ], + [ + 77.561708935053204, + 12.8950212529715 + ], + [ + 77.561774216921705, + 12.8953391778906 + ], + [ + 77.561672379061505, + 12.895441584932 + ], + [ + 77.561674464308297, + 12.895451652539199 + ], + [ + 77.561757220950398, + 12.8958342568696 + ], + [ + 77.561855832231402, + 12.896065387743301 + ], + [ + 77.561947034660804, + 12.8961891709756 + ], + [ + 77.562031461063896, + 12.896684867517299 + ], + [ + 77.562274629875901, + 12.8963844767406 + ], + [ + 77.562367880123006, + 12.8966883396309 + ], + [ + 77.562829963071394, + 12.8966781284528 + ], + [ + 77.563333827912004, + 12.896679902624699 + ], + [ + 77.563459794122195, + 12.896672805936801 + ], + [ + 77.563697533166803, + 12.8965344205228 + ], + [ + 77.564233333103004, + 12.8963747450452 + ], + [ + 77.565174687299901, + 12.8961281601745 + ], + [ + 77.565752542898593, + 12.895984715919599 + ], + [ + 77.565936649375303, + 12.8959390141949 + ], + [ + 77.566036359873607, + 12.895920108537601 + ], + [ + 77.566160481863506, + 12.8959057425919 + ], + [ + 77.566620645747307, + 12.8957506322841 + ], + [ + 77.566649194228603, + 12.895740736610399 + ], + [ + 77.566791711523194, + 12.8961744163123 + ], + [ + 77.566903164256701, + 12.8964945923631 + ], + [ + 77.567043211565405, + 12.896846996676 + ], + [ + 77.567285211743894, + 12.897543573442301 + ], + [ + 77.567297244491002, + 12.8975838967092 + ], + [ + 77.5673921839619, + 12.8979020390325 + ], + [ + 77.567493927918093, + 12.8982423177898 + ], + [ + 77.5675215402226, + 12.898321527283899 + ], + [ + 77.567515059069095, + 12.898327167959399 + ], + [ + 77.567200922289601, + 12.898494349630599 + ], + [ + 77.566880075919897, + 12.8986476794573 + ], + [ + 77.566420767645894, + 12.898643086482799 + ], + [ + 77.566076228340904, + 12.8986339531581 + ], + [ + 77.565566151033806, + 12.8986548869161 + ], + [ + 77.565369244864797, + 12.8986795735036 + ], + [ + 77.565109811028904, + 12.8987139752131 + ], + [ + 77.565060109066295, + 12.898844163697101 + ], + [ + 77.565068226600204, + 12.8989578567565 + ], + [ + 77.565022792039201, + 12.8990515961131 + ], + [ + 77.565019313193105, + 12.899165402942799 + ], + [ + 77.564913113555804, + 12.8994417747644 + ], + [ + 77.564916442935797, + 12.8995357824947 + ], + [ + 77.565071149766098, + 12.899813398736301 + ], + [ + 77.565073099009794, + 12.900459608482601 + ], + [ + 77.565272860108195, + 12.900714774620599 + ], + [ + 77.565288994928196, + 12.9008896128757 + ], + [ + 77.565459100735694, + 12.901648513744099 + ], + [ + 77.565651138508699, + 12.901601119936799 + ], + [ + 77.565697723142605, + 12.901703482894201 + ], + [ + 77.565749791216007, + 12.901791416656 + ], + [ + 77.565920053479999, + 12.902119620082599 + ], + [ + 77.565800399726498, + 12.9021822034551 + ], + [ + 77.566015327074396, + 12.902517617886399 + ], + [ + 77.5660430951134, + 12.9025648481392 + ], + [ + 77.566205731647699, + 12.902841475455499 + ], + [ + 77.566226601778993, + 12.902876972448199 + ], + [ + 77.566359508625894, + 12.903102277915499 + ], + [ + 77.5664511491035, + 12.9033442732684 + ], + [ + 77.566896492032797, + 12.9031479716561 + ], + [ + 77.567290674220203, + 12.9029731871943 + ], + [ + 77.567372084934803, + 12.903314838858501 + ], + [ + 77.567447578141696, + 12.9035718694224 + ], + [ + 77.567539249098004, + 12.903576657535501 + ], + [ + 77.568166576834102, + 12.9035659433529 + ], + [ + 77.568461268883695, + 12.903576700270101 + ], + [ + 77.568761642991007, + 12.903576023768601 + ], + [ + 77.568848142308894, + 12.9047777474289 + ], + [ + 77.568429374902493, + 12.904825950097401 + ], + [ + 77.569059464750495, + 12.905198903264701 + ], + [ + 77.569563112418507, + 12.9054556279682 + ], + [ + 77.571091327061694, + 12.9062916373231 + ], + [ + 77.571125618759993, + 12.9066068318514 + ], + [ + 77.571140795063201, + 12.906720823894901 + ], + [ + 77.571156271687201, + 12.9068640947985 + ], + [ + 77.5711794201641, + 12.9071023081775 + ], + [ + 77.571203572290202, + 12.9073195967286 + ], + [ + 77.571215626630504, + 12.907433201065 + ], + [ + 77.571328507755595, + 12.9073119843355 + ], + [ + 77.571478929066998, + 12.907161434322401 + ], + [ + 77.571754978424707, + 12.906884185363401 + ], + [ + 77.571805969294999, + 12.9068329727074 + ], + [ + 77.571947021468304, + 12.906723170101101 + ], + [ + 77.572109750008096, + 12.906650421494099 + ], + [ + 77.572152695310507, + 12.906643098420799 + ], + [ + 77.572868462809794, + 12.906521044005199 + ], + [ + 77.573171045256402, + 12.906469446304101 + ], + [ + 77.573259162012903, + 12.9064742251686 + ], + [ + 77.573258068691004, + 12.906479882508799 + ], + [ + 77.573262145817097, + 12.9064798423595 + ], + [ + 77.573264399728899, + 12.906479820164201 + ], + [ + 77.573268853902206, + 12.9064650952102 + ], + [ + 77.573273957415495, + 12.9064083105304 + ], + [ + 77.573280739566997, + 12.906332848342 + ], + [ + 77.573282281330407, + 12.906314764123699 + ], + [ + 77.573293891880098, + 12.9062118821486 + ], + [ + 77.573297056292404, + 12.906183618119 + ], + [ + 77.573325122221505, + 12.9059450563349 + ], + [ + 77.573342980703202, + 12.905777741896999 + ], + [ + 77.5733542099358, + 12.9056375962936 + ], + [ + 77.573368888072693, + 12.905384485255601 + ], + [ + 77.573369168429707, + 12.905364099049599 + ], + [ + 77.573369705507005, + 12.9053250454372 + ], + [ + 77.573371528163904, + 12.9051924757526 + ], + [ + 77.5733645342128, + 12.905015242204501 + ], + [ + 77.573354468310697, + 12.904875306288901 + ], + [ + 77.573338743740706, + 12.9048169502683 + ], + [ + 77.573315634773607, + 12.9047311896739 + ], + [ + 77.573312585713694, + 12.9047198732443 + ], + [ + 77.573305020613006, + 12.904655576787601 + ], + [ + 77.573279852001704, + 12.904502237783401 + ], + [ + 77.573223893923398, + 12.904096235373601 + ], + [ + 77.573216409764001, + 12.9040398433122 + ], + [ + 77.573197893701504, + 12.9038615938468 + ], + [ + 77.5731978664396, + 12.9037464039871 + ], + [ + 77.573202847857999, + 12.9036706908397 + ], + [ + 77.573212789665305, + 12.903573471871599 + ], + [ + 77.573237427791994, + 12.9033936682226 + ], + [ + 77.5732377641081, + 12.9033910738112 + ], + [ + 77.573243296663094, + 12.903348437843499 + ], + [ + 77.573284655996204, + 12.903058926023 + ], + [ + 77.573322034785903, + 12.9028304364038 + ], + [ + 77.573345546949795, + 12.9027093682254 + ], + [ + 77.573355433037904, + 12.902662968983501 + ], + [ + 77.573390017002097, + 12.9024988778364 + ], + [ + 77.573406287650101, + 12.9023451308218 + ], + [ + 77.573413582768595, + 12.902270524216499 + ], + [ + 77.573424488734901, + 12.902098760980101 + ], + [ + 77.573427375926897, + 12.9020433961248 + ], + [ + 77.573423040669596, + 12.9018446793777 + ], + [ + 77.573400091868507, + 12.901626947515 + ], + [ + 77.573355455534795, + 12.9013710324271 + ], + [ + 77.573306249699897, + 12.901118550237999 + ], + [ + 77.573252337736093, + 12.9009124162632 + ], + [ + 77.573246938461295, + 12.900891012422999 + ], + [ + 77.573239167744106, + 12.9008628560346 + ], + [ + 77.573169661053996, + 12.9006268754889 + ], + [ + 77.573127063323497, + 12.900482250941 + ], + [ + 77.573002642160702, + 12.900079180642599 + ], + [ + 77.572990246168004, + 12.900046037528 + ], + [ + 77.572983705400603, + 12.9000285478224 + ], + [ + 77.572970087031806, + 12.899991414442299 + ], + [ + 77.572962984308305, + 12.899972285983001 + ], + [ + 77.572910295231793, + 12.899829381461 + ], + [ + 77.572842432695296, + 12.899609832781699 + ], + [ + 77.572801129246699, + 12.899510859472301 + ], + [ + 77.572786382973007, + 12.899475995802201 + ], + [ + 77.572768534212102, + 12.8994335835978 + ], + [ + 77.572745678202594, + 12.899379275215299 + ], + [ + 77.572736308028695, + 12.8993635570025 + ], + [ + 77.572644263684694, + 12.8991995826407 + ], + [ + 77.572493409577504, + 12.898969557235599 + ], + [ + 77.572445477095698, + 12.8988977526285 + ], + [ + 77.572186281699402, + 12.898542309491299 + ], + [ + 77.571822682193201, + 12.8980523749259 + ], + [ + 77.571639323011397, + 12.897795564864801 + ], + [ + 77.571550428040496, + 12.8976918083958 + ], + [ + 77.571517486350103, + 12.8976533588544 + ], + [ + 77.571476213022706, + 12.897605185159501 + ], + [ + 77.571290552447394, + 12.8973483973569 + ], + [ + 77.571197187163605, + 12.897223961249299 + ], + [ + 77.571145836876198, + 12.897155577828199 + ], + [ + 77.571050894431593, + 12.8970481131686 + ], + [ + 77.570722490592203, + 12.896676392269899 + ], + [ + 77.570484838042702, + 12.896400916325 + ], + [ + 77.5704188256706, + 12.8963268278525 + ], + [ + 77.570241453828999, + 12.8961277550356 + ], + [ + 77.570083019454898, + 12.8959441040111 + ], + [ + 77.570064464241497, + 12.8959307345509 + ], + [ + 77.570020366790104, + 12.8958961590643 + ], + [ + 77.569964412911204, + 12.895827820540999 + ], + [ + 77.569841258952707, + 12.895660762362301 + ], + [ + 77.569493577575003, + 12.8952632706053 + ], + [ + 77.569429543588996, + 12.8951927526637 + ], + [ + 77.569410919299798, + 12.8951726079073 + ], + [ + 77.5692166599476, + 12.894952510349601 + ], + [ + 77.569150041258894, + 12.894877030648299 + ], + [ + 77.569118041649702, + 12.894843465427501 + ], + [ + 77.569096528266101, + 12.8948222197007 + ], + [ + 77.569074439362097, + 12.894800979624801 + ], + [ + 77.569054548828603, + 12.8947695540814 + ], + [ + 77.569044571099596, + 12.8947590518534 + ], + [ + 77.568809015554507, + 12.8945110931269 + ], + [ + 77.568805527840794, + 12.894507739425499 + ], + [ + 77.568705407813795, + 12.894407901278401 + ], + [ + 77.568645484250993, + 12.8943481463617 + ], + [ + 77.568617122298605, + 12.894319864213299 + ], + [ + 77.568580495602404, + 12.894284085703999 + ], + [ + 77.568453177054195, + 12.8941599815932 + ], + [ + 77.568413626702295, + 12.8941197144849 + ], + [ + 77.568408216548804, + 12.8941239906235 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "317", + "group": "naganathapura", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "42", + "ward_name": "42 - Sir M.Visvesvaraya Layout", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಸರ್ ಎಂ. ವಿಶ್ವೇಶ್ವರಯ್ಯ ಲೇಔಟ್", + "dig_ward_n": "naganathapura", + "Assembly": "176 - Bangalore South", + "Slno": "42" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.654824790384694, + 12.8768014841505 + ], + [ + 77.654719809888206, + 12.8768055546103 + ], + [ + 77.654725737099, + 12.8769088179044 + ], + [ + 77.654730266301002, + 12.8769266285969 + ], + [ + 77.654738804593293, + 12.877027045312801 + ], + [ + 77.654740651918701, + 12.877049355928101 + ], + [ + 77.654744830991604, + 12.877099841638699 + ], + [ + 77.654771775945505, + 12.877425336386199 + ], + [ + 77.654793361178307, + 12.8777808313619 + ], + [ + 77.654806953105293, + 12.8779681490862 + ], + [ + 77.654814606215794, + 12.878138282014 + ], + [ + 77.654814865711899, + 12.8781440349451 + ], + [ + 77.654834859282602, + 12.8783680714909 + ], + [ + 77.6548385677863, + 12.8784056081057 + ], + [ + 77.654847852355005, + 12.878677805978599 + ], + [ + 77.654861188225098, + 12.878974443097601 + ], + [ + 77.654870455607195, + 12.8791805754816 + ], + [ + 77.654891653438597, + 12.879652090721899 + ], + [ + 77.654910206174506, + 12.8800647702978 + ], + [ + 77.654911492593598, + 12.8800933847211 + ], + [ + 77.654939868835797, + 12.880090874591501 + ], + [ + 77.6549982398884, + 12.880277839296699 + ], + [ + 77.655049958294697, + 12.880443497000201 + ], + [ + 77.655049950188399, + 12.8804435245014 + ], + [ + 77.655012786604402, + 12.8805696055667 + ], + [ + 77.655012795000104, + 12.8805696334895 + ], + [ + 77.655178390726206, + 12.8811203811398 + ], + [ + 77.655206082088995, + 12.881224923545499 + ], + [ + 77.655522513300198, + 12.882419513984299 + ], + [ + 77.655711082613394, + 12.883131393810199 + ], + [ + 77.655731351059003, + 12.8832101886173 + ], + [ + 77.655751876999503, + 12.8833883529161 + ], + [ + 77.655760281831903, + 12.8834116259253 + ], + [ + 77.655808427043098, + 12.883514556292599 + ], + [ + 77.656091083902197, + 12.884118850283 + ], + [ + 77.656172613528398, + 12.884293152165901 + ], + [ + 77.656212655407401, + 12.884288204394601 + ], + [ + 77.656521588413398, + 12.884937611741 + ], + [ + 77.656905014451198, + 12.884887227812699 + ], + [ + 77.657020539171398, + 12.884872503986299 + ], + [ + 77.657048234007803, + 12.8848688160954 + ], + [ + 77.657341804835198, + 12.8848297184414 + ], + [ + 77.657486598657002, + 12.8847852726481 + ], + [ + 77.657600527455202, + 12.884750301569699 + ], + [ + 77.657656779616403, + 12.884736180273199 + ], + [ + 77.657710409794305, + 12.8847240324148 + ], + [ + 77.658058684278203, + 12.8846451466283 + ], + [ + 77.658141455172796, + 12.8846352719848 + ], + [ + 77.658669670975101, + 12.8845700564491 + ], + [ + 77.659140439067599, + 12.884460253748401 + ], + [ + 77.659311127159995, + 12.8843828599492 + ], + [ + 77.659475508928793, + 12.884307788631499 + ], + [ + 77.659526597100907, + 12.8843213453136 + ], + [ + 77.659717329377401, + 12.8843719567377 + ], + [ + 77.660043331247294, + 12.884287337854699 + ], + [ + 77.660123979534902, + 12.884254115136599 + ], + [ + 77.660161374808496, + 12.8842387097611 + ], + [ + 77.660181189686298, + 12.8842306406811 + ], + [ + 77.660216203478399, + 12.884216382437801 + ], + [ + 77.660238164217006, + 12.8842074396287 + ], + [ + 77.660374232720699, + 12.884196717226599 + ], + [ + 77.660534310304698, + 12.8841841028971 + ], + [ + 77.660782907978998, + 12.8841815756498 + ], + [ + 77.661150899624602, + 12.8842038068322 + ], + [ + 77.661410941005101, + 12.8843039238547 + ], + [ + 77.661930251398601, + 12.884376560307601 + ], + [ + 77.662492312812802, + 12.8844645701655 + ], + [ + 77.663116683892198, + 12.8844582184496 + ], + [ + 77.663191446467295, + 12.8844529398087 + ], + [ + 77.663438637100398, + 12.884434497466501 + ], + [ + 77.663438696909694, + 12.884434493244299 + ], + [ + 77.663771196867103, + 12.8844080446872 + ], + [ + 77.664532095392801, + 12.884344201975599 + ], + [ + 77.664651431111693, + 12.8843341888499 + ], + [ + 77.665928418920899, + 12.8842172940802 + ], + [ + 77.666198152644895, + 12.884181134416499 + ], + [ + 77.666193646273697, + 12.884215340294899 + ], + [ + 77.666216216085303, + 12.884213544791599 + ], + [ + 77.666377733146703, + 12.884200695449501 + ], + [ + 77.666561400920202, + 12.884183314296701 + ], + [ + 77.666579592627599, + 12.8841815927419 + ], + [ + 77.666670684162, + 12.884152506801501 + ], + [ + 77.667490615807793, + 12.8838754636653 + ], + [ + 77.667565848764198, + 12.883850043335499 + ], + [ + 77.668159765160496, + 12.8836223505056 + ], + [ + 77.668159752519301, + 12.8836224120781 + ], + [ + 77.668156901784897, + 12.883636297337 + ], + [ + 77.668063019770599, + 12.8841291345316 + ], + [ + 77.668014066661101, + 12.8843861135114 + ], + [ + 77.667942936423501, + 12.884759517251 + ], + [ + 77.667942948206203, + 12.8847595143436 + ], + [ + 77.667970329451606, + 12.884752757972599 + ], + [ + 77.667970318670697, + 12.8847528172717 + ], + [ + 77.667834009559698, + 12.8855025710339 + ], + [ + 77.6678340206619, + 12.8855025690155 + ], + [ + 77.667977371126696, + 12.885476506553299 + ], + [ + 77.667977360109802, + 12.885476565166201 + ], + [ + 77.667968509360705, + 12.8855236536322 + ], + [ + 77.667968520931396, + 12.885523651055999 + ], + [ + 77.669304408594002, + 12.8852262082978 + ], + [ + 77.669359265955904, + 12.885213993849399 + ], + [ + 77.670259938268302, + 12.8850134499195 + ], + [ + 77.670359451102101, + 12.884991292164999 + ], + [ + 77.670786540274094, + 12.884909404277 + ], + [ + 77.6720534806568, + 12.8846664833678 + ], + [ + 77.672235378565901, + 12.8846218669617 + ], + [ + 77.672235403729701, + 12.884622155789 + ], + [ + 77.672235829540298, + 12.884626966500299 + ], + [ + 77.672236782680201, + 12.884637737802899 + ], + [ + 77.672239354566798, + 12.884666817806499 + ], + [ + 77.672328141851594, + 12.8846500197119 + ], + [ + 77.673637375689694, + 12.8843928163857 + ], + [ + 77.673753023776698, + 12.8843700963612 + ], + [ + 77.673817813338403, + 12.884310977166701 + ], + [ + 77.673824036750304, + 12.884305298130799 + ], + [ + 77.674003384681797, + 12.8842812081147 + ], + [ + 77.674015876155295, + 12.884279529962299 + ], + [ + 77.674015888191903, + 12.884279528345299 + ], + [ + 77.6740117003298, + 12.884260881862501 + ], + [ + 77.674010836250602, + 12.8842570323249 + ], + [ + 77.673991084957507, + 12.8841894033097 + ], + [ + 77.673990222085195, + 12.8841864481127 + ], + [ + 77.673989222737504, + 12.8841830252675 + ], + [ + 77.673989207275994, + 12.8841829723104 + ], + [ + 77.674172454009494, + 12.884129926754101 + ], + [ + 77.674184322406404, + 12.8841264913372 + ], + [ + 77.674184323758794, + 12.8841264909458 + ], + [ + 77.674179661053103, + 12.883980798787601 + ], + [ + 77.674177010324797, + 12.883897990709601 + ], + [ + 77.674176613528402, + 12.8838855939713 + ], + [ + 77.674173852578505, + 12.8837993415006 + ], + [ + 77.674133202818197, + 12.8825650833521 + ], + [ + 77.674130393733407, + 12.882497707633 + ], + [ + 77.674127254680798, + 12.882422407159501 + ], + [ + 77.674125603109701, + 12.882382796055699 + ], + [ + 77.674090732435801, + 12.8815463412109 + ], + [ + 77.674007865766399, + 12.8804030947492 + ], + [ + 77.6739952839918, + 12.8802295116687 + ], + [ + 77.673971834636205, + 12.879905993642399 + ], + [ + 77.673967696628495, + 12.879848904790901 + ], + [ + 77.673848495417502, + 12.879872152258701 + ], + [ + 77.673750460219793, + 12.8798912709386 + ], + [ + 77.673725596496098, + 12.879896120401201 + ], + [ + 77.673722578565801, + 12.879871345106499 + ], + [ + 77.673721571927601, + 12.8798630821647 + ], + [ + 77.6737145627785, + 12.879805547438901 + ], + [ + 77.672044259315001, + 12.880139679319999 + ], + [ + 77.671999993811397, + 12.8801485341562 + ], + [ + 77.671731979891604, + 12.8802021474381 + ], + [ + 77.671527039144607, + 12.880243143313599 + ], + [ + 77.671395240535304, + 12.8802695076033 + ], + [ + 77.671382128389595, + 12.880272130238801 + ], + [ + 77.671399814013597, + 12.880243867924399 + ], + [ + 77.671423394242296, + 12.880206186349501 + ], + [ + 77.671616603760896, + 12.8799779293582 + ], + [ + 77.672244862612899, + 12.879109673884001 + ], + [ + 77.672327601437502, + 12.8789953077905 + ], + [ + 77.672529378211394, + 12.878716492031099 + ], + [ + 77.672649534030398, + 12.8785504600474 + ], + [ + 77.672703465401497, + 12.878475937302101 + ], + [ + 77.672719457307707, + 12.878459298967201 + ], + [ + 77.672806379498496, + 12.878368862402199 + ], + [ + 77.672905980295496, + 12.878235638404 + ], + [ + 77.673001160336398, + 12.8781083279254 + ], + [ + 77.673168433578894, + 12.877884585533399 + ], + [ + 77.673379885788506, + 12.877601750415399 + ], + [ + 77.673429385661905, + 12.877535131493699 + ], + [ + 77.673484990198702, + 12.877475177766501 + ], + [ + 77.67350871907, + 12.8774282077596 + ], + [ + 77.673603780758299, + 12.8772997763696 + ], + [ + 77.673646296046201, + 12.8772423366974 + ], + [ + 77.673786843681796, + 12.8769615407241 + ], + [ + 77.673796415975602, + 12.8769424167364 + ], + [ + 77.673963100863602, + 12.8766544908089 + ], + [ + 77.673900482319794, + 12.8766541509502 + ], + [ + 77.673893177232003, + 12.876654110813 + ], + [ + 77.6740200074603, + 12.876390601177 + ], + [ + 77.674030662790301, + 12.876372886253201 + ], + [ + 77.674058967803902, + 12.8763258270435 + ], + [ + 77.674075848388597, + 12.876297762580499 + ], + [ + 77.674088719649802, + 12.8762763635984 + ], + [ + 77.674120921673406, + 12.876217348911601 + ], + [ + 77.674146112674904, + 12.8761711706816 + ], + [ + 77.674203199707193, + 12.8760663883128 + ], + [ + 77.674212871216099, + 12.8760486364566 + ], + [ + 77.674342451954701, + 12.875810791019999 + ], + [ + 77.674598055166697, + 12.875362812588 + ], + [ + 77.674662172574003, + 12.875282374226 + ], + [ + 77.674680998680898, + 12.8752587372525 + ], + [ + 77.674689110044397, + 12.875227334884199 + ], + [ + 77.674716667146797, + 12.875170989239299 + ], + [ + 77.674866149242405, + 12.8746484458245 + ], + [ + 77.675063467178106, + 12.8738047042751 + ], + [ + 77.675066275236404, + 12.8737926975882 + ], + [ + 77.675206224974104, + 12.873161040240401 + ], + [ + 77.675267319747206, + 12.872880405177099 + ], + [ + 77.675297137404598, + 12.8727241218673 + ], + [ + 77.675324889525896, + 12.872578665968801 + ], + [ + 77.672811982440905, + 12.8693072576923 + ], + [ + 77.672914353468201, + 12.8683515520106 + ], + [ + 77.672892636691003, + 12.8682522761295 + ], + [ + 77.672444389114702, + 12.8682026450142 + ], + [ + 77.6722654348563, + 12.8682044701647 + ], + [ + 77.672086278467702, + 12.8681328968831 + ], + [ + 77.671144871078695, + 12.8678138884255 + ], + [ + 77.670224242592795, + 12.867391901909601 + ], + [ + 77.6699481639006, + 12.867226547996999 + ], + [ + 77.669864592381401, + 12.867176494335199 + ], + [ + 77.669487603966104, + 12.867062894260201 + ], + [ + 77.667820990664893, + 12.866406839930701 + ], + [ + 77.667085926958805, + 12.866335275233901 + ], + [ + 77.667045988565306, + 12.866204689768701 + ], + [ + 77.666718953415895, + 12.866211811218101 + ], + [ + 77.666701809233302, + 12.866176309788001 + ], + [ + 77.666565008677395, + 12.8659627746915 + ], + [ + 77.666460069687005, + 12.865985970033799 + ], + [ + 77.666307174479599, + 12.866044664808699 + ], + [ + 77.665027775653499, + 12.866520600142399 + ], + [ + 77.665022083894996, + 12.8665237756379 + ], + [ + 77.663610631107602, + 12.867311086667501 + ], + [ + 77.662718530131002, + 12.8677517684019 + ], + [ + 77.661253764783794, + 12.868507592309999 + ], + [ + 77.659760200637606, + 12.869607886555199 + ], + [ + 77.6592063276602, + 12.870075585984599 + ], + [ + 77.658699654105007, + 12.8702616669216 + ], + [ + 77.658688875242007, + 12.8702674126072 + ], + [ + 77.658562031346804, + 12.8705041596677 + ], + [ + 77.658803489582795, + 12.8709566866551 + ], + [ + 77.658980197990701, + 12.871264668256099 + ], + [ + 77.659188913584003, + 12.8716507261079 + ], + [ + 77.659253190997006, + 12.8718317315022 + ], + [ + 77.659328563243903, + 12.872140742250499 + ], + [ + 77.659446255120798, + 12.8726178836818 + ], + [ + 77.659446595547294, + 12.872619517181599 + ], + [ + 77.659500059604596, + 12.8728760180066 + ], + [ + 77.659527447823393, + 12.8730074173102 + ], + [ + 77.659621916260704, + 12.873417579737501 + ], + [ + 77.659747776009993, + 12.8738011308241 + ], + [ + 77.659831328100296, + 12.8742162388716 + ], + [ + 77.659862436269194, + 12.8743937566515 + ], + [ + 77.659939955076297, + 12.8747790306412 + ], + [ + 77.659948826268504, + 12.8748231229757 + ], + [ + 77.660163277445207, + 12.8756459331334 + ], + [ + 77.659865708080801, + 12.875675873873799 + ], + [ + 77.659999989333798, + 12.8761436564861 + ], + [ + 77.660045088041301, + 12.876331626072901 + ], + [ + 77.658972998745597, + 12.876470024579 + ], + [ + 77.658257786561606, + 12.876453874626399 + ], + [ + 77.657899529885299, + 12.8766335393149 + ], + [ + 77.657286730176196, + 12.8767425389458 + ], + [ + 77.656557260899604, + 12.8768833605347 + ], + [ + 77.656554891882806, + 12.8768838181996 + ], + [ + 77.656504363142801, + 12.8764757924192 + ], + [ + 77.654824790384694, + 12.8768014841505 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "318", + "group": "begur", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "46", + "ward_name": "46 - Beguru", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಬೇಗೂರು", + "dig_ward_n": "begur", + "Assembly": "176 - Bangalore South", + "Slno": "46" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.6175461522093, + 12.8760745636227 + ], + [ + 77.6175461522093, + 12.8760745636227 + ], + [ + 77.617633067296893, + 12.876241957727901 + ], + [ + 77.617682155483706, + 12.87636907579 + ], + [ + 77.617686841341197, + 12.8763892683733 + ], + [ + 77.6176960125497, + 12.876428789159 + ], + [ + 77.617696005681594, + 12.876428808227899 + ], + [ + 77.617665805452603, + 12.8765126578903 + ], + [ + 77.617630807039703, + 12.876578506021 + ], + [ + 77.617612356250007, + 12.8766306373725 + ], + [ + 77.617600387959698, + 12.876697384577399 + ], + [ + 77.617588090454404, + 12.876787849971899 + ], + [ + 77.617586598594897, + 12.876810450501999 + ], + [ + 77.617571693484194, + 12.876926915423001 + ], + [ + 77.617564973818304, + 12.877055720613299 + ], + [ + 77.617562706279102, + 12.8771144658855 + ], + [ + 77.617562707676996, + 12.877114490522301 + ], + [ + 77.617564115181807, + 12.877139295981401 + ], + [ + 77.617570162957605, + 12.8771674675494 + ], + [ + 77.617587179687206, + 12.8771989173124 + ], + [ + 77.6176179362906, + 12.8772787888014 + ], + [ + 77.617644453598999, + 12.877338375606699 + ], + [ + 77.617682620890307, + 12.8774113973151 + ], + [ + 77.617704358625502, + 12.877454092677301 + ], + [ + 77.617851775694106, + 12.8776250790599 + ], + [ + 77.618003803696695, + 12.8778014126983 + ], + [ + 77.618005531943496, + 12.877803417248099 + ], + [ + 77.618037746135698, + 12.877801965881799 + ], + [ + 77.618114273541593, + 12.878520552314299 + ], + [ + 77.618149470037295, + 12.878584569354899 + ], + [ + 77.618194073409299, + 12.8786676900875 + ], + [ + 77.618228600639597, + 12.8787226795599 + ], + [ + 77.618280661652093, + 12.878803467132601 + ], + [ + 77.618298371390196, + 12.8788462026814 + ], + [ + 77.618308171448206, + 12.8788836518899 + ], + [ + 77.618314937068206, + 12.8789095059534 + ], + [ + 77.6183163509575, + 12.8789149089727 + ], + [ + 77.618261193620199, + 12.878921360619399 + ], + [ + 77.6178835064309, + 12.878965537642699 + ], + [ + 77.617917114502902, + 12.879264460928701 + ], + [ + 77.617931536349403, + 12.879267704566701 + ], + [ + 77.617949434453905, + 12.8792731720056 + ], + [ + 77.617983527726295, + 12.8792863824679 + ], + [ + 77.617993956501195, + 12.8792930538707 + ], + [ + 77.618031725455097, + 12.8793276838983 + ], + [ + 77.618064373875001, + 12.8793680115232 + ], + [ + 77.618085924210504, + 12.879392640195199 + ], + [ + 77.618118525724199, + 12.879428451158001 + ], + [ + 77.618172031745701, + 12.8794821215536 + ], + [ + 77.618194157568695, + 12.8795067444578 + ], + [ + 77.618215731392496, + 12.8795336314399 + ], + [ + 77.618230376156305, + 12.8795583291519 + ], + [ + 77.618233312148405, + 12.879563946191899 + ], + [ + 77.618241004387201, + 12.879584196309599 + ], + [ + 77.618243332232097, + 12.879591016468 + ], + [ + 77.618247533961906, + 12.8796033287739 + ], + [ + 77.6182670640341, + 12.8796550803504 + ], + [ + 77.618292090085504, + 12.8797372675233 + ], + [ + 77.618299852729393, + 12.8797642926137 + ], + [ + 77.618325442544005, + 12.879845344860801 + ], + [ + 77.618338607319899, + 12.8798937722435 + ], + [ + 77.618374319801006, + 12.8800628070847 + ], + [ + 77.618393344881198, + 12.8801213393696 + ], + [ + 77.618454471400597, + 12.8803544889621 + ], + [ + 77.618466966909807, + 12.880393888781899 + ], + [ + 77.618483443770401, + 12.880428731659601 + ], + [ + 77.618519779917605, + 12.8804916078986 + ], + [ + 77.618533023281699, + 12.880507801209699 + ], + [ + 77.618564665980401, + 12.880546493651201 + ], + [ + 77.618571436473601, + 12.880555643205099 + ], + [ + 77.618580426588807, + 12.8805677923246 + ], + [ + 77.618582220936005, + 12.880577241741999 + ], + [ + 77.618634506614896, + 12.8808525888539 + ], + [ + 77.618705849891498, + 12.8812282956597 + ], + [ + 77.618674174850995, + 12.881241762780601 + ], + [ + 77.618469201485794, + 12.881328910177601 + ], + [ + 77.618202757426602, + 12.881442244600599 + ], + [ + 77.617943183544597, + 12.881552122247401 + ], + [ + 77.617618862615103, + 12.8816897498556 + ], + [ + 77.617696560509998, + 12.8819114411512 + ], + [ + 77.617718685309498, + 12.8820467335534 + ], + [ + 77.617728748677393, + 12.882184405127299 + ], + [ + 77.617721195913504, + 12.8822883744542 + ], + [ + 77.617698199222801, + 12.8824015324697 + ], + [ + 77.617707351279094, + 12.882539232126399 + ], + [ + 77.617712524993706, + 12.8826170817616 + ], + [ + 77.617739815731198, + 12.882917197411301 + ], + [ + 77.617781690744096, + 12.883110676192 + ], + [ + 77.617782739418104, + 12.883115521466101 + ], + [ + 77.617781838624694, + 12.883124907989499 + ], + [ + 77.617758332006403, + 12.8833698536365 + ], + [ + 77.617735956637205, + 12.883598192039701 + ], + [ + 77.617734358726494, + 12.883665964838899 + ], + [ + 77.617732111587799, + 12.8837394067942 + ], + [ + 77.617728343656694, + 12.883862519769 + ], + [ + 77.617728670080993, + 12.883864954846301 + ], + [ + 77.617748930160602, + 12.884015895988 + ], + [ + 77.617762646698097, + 12.884117394020899 + ], + [ + 77.617791876668804, + 12.8843271477852 + ], + [ + 77.617849761380498, + 12.8847466610233 + ], + [ + 77.618214673570293, + 12.884748657090199 + ], + [ + 77.618309360653697, + 12.8851275146042 + ], + [ + 77.618336577939203, + 12.885236415644201 + ], + [ + 77.618406139254503, + 12.8854502828155 + ], + [ + 77.618528655286397, + 12.8859414228481 + ], + [ + 77.618574293618195, + 12.8861239094539 + ], + [ + 77.618594763932904, + 12.8862106591348 + ], + [ + 77.618631609445103, + 12.8863634252381 + ], + [ + 77.618646188109807, + 12.8864238701589 + ], + [ + 77.618656715257799, + 12.886467514903799 + ], + [ + 77.618659844564803, + 12.8864797565969 + ], + [ + 77.618663914548307, + 12.886495674844401 + ], + [ + 77.618664134646806, + 12.8864965616105 + ], + [ + 77.618686172230596, + 12.8865855125885 + ], + [ + 77.618734803571002, + 12.8867818023844 + ], + [ + 77.618769038494193, + 12.8869192318434 + ], + [ + 77.618824578104693, + 12.8870575773523 + ], + [ + 77.618847961434994, + 12.887116704566701 + ], + [ + 77.618867727343499, + 12.887166685586401 + ], + [ + 77.618920301158596, + 12.8872885554457 + ], + [ + 77.618934400422106, + 12.887321238518 + ], + [ + 77.618949704012195, + 12.887356713290099 + ], + [ + 77.6190200185751, + 12.887476842374101 + ], + [ + 77.619069885850294, + 12.887623149506499 + ], + [ + 77.619125238205598, + 12.8878137570776 + ], + [ + 77.619158827320604, + 12.8879294230911 + ], + [ + 77.619176162306701, + 12.887991359903999 + ], + [ + 77.619194495604404, + 12.888038606096099 + ], + [ + 77.619222529960396, + 12.888077850224001 + ], + [ + 77.619246443625997, + 12.8881151162631 + ], + [ + 77.619259971752598, + 12.8881361979132 + ], + [ + 77.619303227146801, + 12.888200133789301 + ], + [ + 77.619309064219195, + 12.888207980307101 + ], + [ + 77.619352655393499, + 12.888263381786 + ], + [ + 77.6194790832119, + 12.888424061668299 + ], + [ + 77.619500372412602, + 12.888451118549099 + ], + [ + 77.619558003349695, + 12.8885137811588 + ], + [ + 77.619676955891507, + 12.8886326579385 + ], + [ + 77.619704564790496, + 12.888660249226 + ], + [ + 77.619788903174694, + 12.8887452299192 + ], + [ + 77.619827306201501, + 12.8887861888165 + ], + [ + 77.619879113965496, + 12.888841444553799 + ], + [ + 77.619903625117004, + 12.888873948181001 + ], + [ + 77.620456045498102, + 12.8888085642373 + ], + [ + 77.620608373246, + 12.8887900993857 + ], + [ + 77.620772140176896, + 12.8887647442016 + ], + [ + 77.621041056539198, + 12.8887225257028 + ], + [ + 77.621107648416896, + 12.8887060487156 + ], + [ + 77.621272988840602, + 12.888665996871101 + ], + [ + 77.621331970062897, + 12.8886371740324 + ], + [ + 77.621334095400201, + 12.8886355359801 + ], + [ + 77.621376505348593, + 12.8886028495309 + ], + [ + 77.621380878691895, + 12.8886129789785 + ], + [ + 77.621388736619593, + 12.888631179345801 + ], + [ + 77.6214478670815, + 12.8887681382617 + ], + [ + 77.621470652440607, + 12.888855993565 + ], + [ + 77.622022307874602, + 12.8887773870599 + ], + [ + 77.622186720745802, + 12.888753958766101 + ], + [ + 77.622588796337197, + 12.888713032200799 + ], + [ + 77.622686580724803, + 12.888703078712201 + ], + [ + 77.622765106724799, + 12.888695085511401 + ], + [ + 77.622766890425396, + 12.888695067631099 + ], + [ + 77.622772012551394, + 12.8886950162854 + ], + [ + 77.622806762500304, + 12.888688347677 + ], + [ + 77.623032788968104, + 12.8886449724748 + ], + [ + 77.623080483676503, + 12.8886377186644 + ], + [ + 77.623327583682197, + 12.8885958611672 + ], + [ + 77.623335575640894, + 12.888594507214099 + ], + [ + 77.623412561239107, + 12.8885813132861 + ], + [ + 77.623533606725999, + 12.888571749509801 + ], + [ + 77.623658116837802, + 12.888561911936099 + ], + [ + 77.623666749110299, + 12.8885618253749 + ], + [ + 77.623927443708595, + 12.888559211093099 + ], + [ + 77.6240927019373, + 12.888566587924201 + ], + [ + 77.624173986469998, + 12.888579323983 + ], + [ + 77.624308896981105, + 12.888601685616701 + ], + [ + 77.624473110145004, + 12.888619236151699 + ], + [ + 77.624811976360206, + 12.8886068026502 + ], + [ + 77.625503355225703, + 12.8885659875766 + ], + [ + 77.625556276205401, + 12.8885631979794 + ], + [ + 77.625555312689002, + 12.888554579503699 + ], + [ + 77.625537233998202, + 12.8883928687534 + ], + [ + 77.625574996948401, + 12.8883940084587 + ], + [ + 77.625602590074095, + 12.888394841303599 + ], + [ + 77.625551153095898, + 12.887672158398701 + ], + [ + 77.625546954639304, + 12.8866375094007 + ], + [ + 77.625459744119496, + 12.886241471763899 + ], + [ + 77.625399897928105, + 12.8859697003556 + ], + [ + 77.625406414485397, + 12.885968515643301 + ], + [ + 77.625330970265694, + 12.885691555141801 + ], + [ + 77.625136210866899, + 12.885046331225199 + ], + [ + 77.624936208420195, + 12.884522115901801 + ], + [ + 77.627154699471802, + 12.8840804579762 + ], + [ + 77.628365081433998, + 12.883865747023901 + ], + [ + 77.628365190815302, + 12.883865727857099 + ], + [ + 77.628364539210196, + 12.8838613492132 + ], + [ + 77.628196860795001, + 12.8827356123466 + ], + [ + 77.628196465369399, + 12.882731956572901 + ], + [ + 77.6281676301153, + 12.8824655617774 + ], + [ + 77.628095540403706, + 12.881610085875501 + ], + [ + 77.627774415276306, + 12.881638472627101 + ], + [ + 77.6276271590025, + 12.880463970780101 + ], + [ + 77.627728286804995, + 12.8804515515763 + ], + [ + 77.627719415945194, + 12.880283005238701 + ], + [ + 77.627621836486597, + 12.880284779410699 + ], + [ + 77.627440870945193, + 12.8779641624684 + ], + [ + 77.629487742695005, + 12.8782118605753 + ], + [ + 77.630187080801903, + 12.8783322562289 + ], + [ + 77.6311119439126, + 12.8782842832582 + ], + [ + 77.631566904687901, + 12.878433297112 + ], + [ + 77.631896739712701, + 12.8784590143523 + ], + [ + 77.632477185811894, + 12.878543602429801 + ], + [ + 77.632700578166094, + 12.878734723764801 + ], + [ + 77.632899803734205, + 12.8790965357161 + ], + [ + 77.633297412632402, + 12.879252211321701 + ], + [ + 77.633364831167398, + 12.8788104425001 + ], + [ + 77.633170017723202, + 12.8779320966198 + ], + [ + 77.632922703224807, + 12.877843933581 + ], + [ + 77.632786470269295, + 12.8761703314243 + ], + [ + 77.6329306375047, + 12.8756618678936 + ], + [ + 77.633006223720997, + 12.8755712317872 + ], + [ + 77.633134912717594, + 12.875568800250599 + ], + [ + 77.633504210376898, + 12.874955294352 + ], + [ + 77.633934340371098, + 12.8742295304626 + ], + [ + 77.633583872182001, + 12.8737007780122 + ], + [ + 77.633379049098494, + 12.8734081801035 + ], + [ + 77.632843834240106, + 12.8726797611666 + ], + [ + 77.632513447602904, + 12.872355431724101 + ], + [ + 77.632216770067899, + 12.872372065170399 + ], + [ + 77.632034144874098, + 12.8717618315578 + ], + [ + 77.631699919137304, + 12.870763789850299 + ], + [ + 77.631779231270102, + 12.8704469657165 + ], + [ + 77.631897597448699, + 12.8700111850341 + ], + [ + 77.631873007775198, + 12.8698771864735 + ], + [ + 77.631814180949107, + 12.8697958648495 + ], + [ + 77.631631990878205, + 12.869338074371999 + ], + [ + 77.631361955825298, + 12.8684940163003 + ], + [ + 77.631345790231094, + 12.868357997739199 + ], + [ + 77.630916941274194, + 12.8683759561449 + ], + [ + 77.630637105097307, + 12.868450439312401 + ], + [ + 77.630516103988299, + 12.868719782832599 + ], + [ + 77.630277190711396, + 12.868740746806401 + ], + [ + 77.629990601761094, + 12.8687237142559 + ], + [ + 77.629584377088506, + 12.868687403885501 + ], + [ + 77.629578137710197, + 12.8689787116543 + ], + [ + 77.629495327790593, + 12.8692662371837 + ], + [ + 77.629404873216302, + 12.869487854201701 + ], + [ + 77.629213312455505, + 12.869799224629 + ], + [ + 77.628893883335095, + 12.871192671064801 + ], + [ + 77.627722201047305, + 12.871132883165901 + ], + [ + 77.626687366876993, + 12.8711967319402 + ], + [ + 77.626457092585596, + 12.871184164268801 + ], + [ + 77.6270787775386, + 12.8700701290753 + ], + [ + 77.627508518958805, + 12.8694431687207 + ], + [ + 77.626932958737001, + 12.869291940444301 + ], + [ + 77.626952904552994, + 12.8692030015394 + ], + [ + 77.626216134934893, + 12.869048837050499 + ], + [ + 77.626176071570001, + 12.868764818817899 + ], + [ + 77.626142162174503, + 12.868626361820899 + ], + [ + 77.625990984657903, + 12.868584645162899 + ], + [ + 77.625795442753898, + 12.8687367785164 + ], + [ + 77.625691613961195, + 12.868787876909201 + ], + [ + 77.625119688696202, + 12.8687628902186 + ], + [ + 77.624905390124297, + 12.8693962847787 + ], + [ + 77.624723666857506, + 12.869819254594599 + ], + [ + 77.624524802229104, + 12.870282119499899 + ], + [ + 77.624447691789996, + 12.8705708547303 + ], + [ + 77.624458248969304, + 12.8711395892042 + ], + [ + 77.624477466454195, + 12.871649077505801 + ], + [ + 77.624494858382107, + 12.871960364507601 + ], + [ + 77.623543902203807, + 12.8720313313865 + ], + [ + 77.623538579687903, + 12.8719177843802 + ], + [ + 77.62311810093, + 12.871910687692299 + ], + [ + 77.623102133382204, + 12.8719639128515 + ], + [ + 77.621950695717004, + 12.871971009484 + ], + [ + 77.622376497044797, + 12.872622130653999 + ], + [ + 77.622376497044797, + 12.8727640644119 + ], + [ + 77.621355764656798, + 12.8726573569406 + ], + [ + 77.620972021228894, + 12.8726552207035 + ], + [ + 77.620632960058103, + 12.872557024925401 + ], + [ + 77.620317940197197, + 12.872480141138899 + ], + [ + 77.620132586905697, + 12.8724582008136 + ], + [ + 77.6189062823765, + 12.8725541254564 + ], + [ + 77.618130526623702, + 12.8726335894308 + ], + [ + 77.616606082338606, + 12.8728643678258 + ], + [ + 77.616794733024605, + 12.874505302701699 + ], + [ + 77.616914366689002, + 12.875976273567201 + ], + [ + 77.617511647077606, + 12.8759006211826 + ], + [ + 77.6175461522093, + 12.8760745636227 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "319", + "group": "gottigere", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "55", + "ward_name": "55 - Gottigere", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಗೊಟ್ಟಿಗೆರೆ", + "dig_ward_n": "gottigere", + "Assembly": "176 - Bangalore South", + "Slno": "55" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.573427285560598, + 12.8390622281907 + ], + [ + 77.573537422649693, + 12.8393968608897 + ], + [ + 77.573537422649693, + 12.8393968608897 + ], + [ + 77.573537422649693, + 12.8393968608897 + ], + [ + 77.573341675203395, + 12.8395307553364 + ], + [ + 77.573444934900394, + 12.8398790247122 + ], + [ + 77.573551769607604, + 12.8398950434848 + ], + [ + 77.573652651961297, + 12.8403514197823 + ], + [ + 77.573791826311606, + 12.8410383785553 + ], + [ + 77.573925977245906, + 12.841573500214899 + ], + [ + 77.575052475811304, + 12.8439149035884 + ], + [ + 77.575270758901596, + 12.8445109962543 + ], + [ + 77.575366523342197, + 12.844805864508301 + ], + [ + 77.575838718788106, + 12.8465396702024 + ], + [ + 77.575703812469996, + 12.8481174704726 + ], + [ + 77.576572233633698, + 12.8498620964194 + ], + [ + 77.576593698120902, + 12.8499052170438 + ], + [ + 77.576925784337604, + 12.8499798442421 + ], + [ + 77.578743296975006, + 12.850468749044699 + ], + [ + 77.579041519936595, + 12.8505402928373 + ], + [ + 77.580168631614001, + 12.8533837456488 + ], + [ + 77.580140840241498, + 12.8535999227076 + ], + [ + 77.580801461027093, + 12.8549452948102 + ], + [ + 77.580703561321599, + 12.855009970260699 + ], + [ + 77.580620652661693, + 12.8550665341646 + ], + [ + 77.580330373223603, + 12.855254838047401 + ], + [ + 77.580284536544696, + 12.8556404102138 + ], + [ + 77.580339266285804, + 12.856361844510101 + ], + [ + 77.580602588151095, + 12.8583615664175 + ], + [ + 77.580061936285901, + 12.858374825462599 + ], + [ + 77.580601819777598, + 12.8583560480989 + ], + [ + 77.581339310048804, + 12.8583303978924 + ], + [ + 77.581591482403994, + 12.8582983893536 + ], + [ + 77.581733078171098, + 12.858340173902601 + ], + [ + 77.581914089770905, + 12.8583520442655 + ], + [ + 77.582101154536105, + 12.858388884646301 + ], + [ + 77.582211062373702, + 12.858364479179899 + ], + [ + 77.582302387575496, + 12.858331175401499 + ], + [ + 77.583583339740898, + 12.858098758872799 + ], + [ + 77.583987850951004, + 12.8580632754334 + ], + [ + 77.584004650337803, + 12.8582279196273 + ], + [ + 77.584259065614503, + 12.8585007392922 + ], + [ + 77.584324028869602, + 12.8585035121902 + ], + [ + 77.584473927254805, + 12.8586476622056 + ], + [ + 77.585097171220596, + 12.859382170091701 + ], + [ + 77.585509604642098, + 12.8593462475378 + ], + [ + 77.585315935672398, + 12.857305961658 + ], + [ + 77.585160103363904, + 12.8564690029598 + ], + [ + 77.585009246925296, + 12.855891393646001 + ], + [ + 77.5850218322377, + 12.855761570227299 + ], + [ + 77.585153121020596, + 12.8556738099289 + ], + [ + 77.585400817278895, + 12.8556543972939 + ], + [ + 77.585651761164996, + 12.8557080790043 + ], + [ + 77.585657182606198, + 12.8557092388853 + ], + [ + 77.586081263575906, + 12.855726570561499 + ], + [ + 77.586240167496996, + 12.8560681186792 + ], + [ + 77.5863535813494, + 12.8564993310784 + ], + [ + 77.586537577676907, + 12.8573732824832 + ], + [ + 77.586593192964699, + 12.857363110713299 + ], + [ + 77.587068218974693, + 12.8572752291999 + ], + [ + 77.586986315643998, + 12.856737089709901 + ], + [ + 77.586982278155801, + 12.8567197861893 + ], + [ + 77.587138009841098, + 12.8567030594528 + ], + [ + 77.587371607368894, + 12.8566926773404 + ], + [ + 77.5875118803948, + 12.8566719953253 + ], + [ + 77.587622508417297, + 12.856687486284301 + ], + [ + 77.587748247333593, + 12.856687486284301 + ], + [ + 77.588010107278294, + 12.8566367292905 + ], + [ + 77.588325031352895, + 12.8565282938949 + ], + [ + 77.588371174074396, + 12.8565098368063 + ], + [ + 77.588379249050703, + 12.856411783523001 + ], + [ + 77.588796412150401, + 12.856408028130801 + ], + [ + 77.5887648147677, + 12.855953714979 + ], + [ + 77.5887135042843, + 12.855526023924201 + ], + [ + 77.588684898758103, + 12.855287590887601 + ], + [ + 77.588651918139604, + 12.854922190241201 + ], + [ + 77.588564180435498, + 12.8542059450471 + ], + [ + 77.588460138478496, + 12.8533249258785 + ], + [ + 77.588459417477495, + 12.853316297866501 + ], + [ + 77.588268543227301, + 12.851032060405 + ], + [ + 77.588264388900797, + 12.8499134085609 + ], + [ + 77.588320689916202, + 12.8499050192057 + ], + [ + 77.588150058402704, + 12.847134376072001 + ], + [ + 77.587610710122505, + 12.8471450211039 + ], + [ + 77.587585871714893, + 12.8468895403396 + ], + [ + 77.587369422734, + 12.8468221218046 + ], + [ + 77.587347326512798, + 12.8467537784247 + ], + [ + 77.586100889772396, + 12.845285688874901 + ], + [ + 77.585867665452696, + 12.845294603876001 + ], + [ + 77.585722991141907, + 12.8453406882061 + ], + [ + 77.585723678797905, + 12.8460806732212 + ], + [ + 77.585570140636406, + 12.8460332641445 + ], + [ + 77.5844353062907, + 12.844346425585501 + ], + [ + 77.584392884726796, + 12.8443705072717 + ], + [ + 77.584127544463101, + 12.844396285811699 + ], + [ + 77.584096930921206, + 12.8443992595904 + ], + [ + 77.583954818296903, + 12.844413065645499 + ], + [ + 77.583768458504295, + 12.8444114507462 + ], + [ + 77.583438314720397, + 12.8444085884215 + ], + [ + 77.583245711045095, + 12.8440214995773 + ], + [ + 77.582728106644097, + 12.842955702028499 + ], + [ + 77.582667447992606, + 12.8427411649521 + ], + [ + 77.582624860168096, + 12.842387807643799 + ], + [ + 77.582424202572994, + 12.842072463902699 + ], + [ + 77.582476752721803, + 12.842053764163801 + ], + [ + 77.582628200073501, + 12.841974586769799 + ], + [ + 77.582749687572004, + 12.841943511864001 + ], + [ + 77.582883201479802, + 12.841897379154499 + ], + [ + 77.583370215107493, + 12.8427710522214 + ], + [ + 77.583512802738497, + 12.8427188535303 + ], + [ + 77.583503210093994, + 12.842674127842701 + ], + [ + 77.583535450840699, + 12.8425513038188 + ], + [ + 77.583711424028806, + 12.8423471561408 + ], + [ + 77.583181972324695, + 12.841738822354699 + ], + [ + 77.582680487154207, + 12.836835925216601 + ], + [ + 77.582680487154207, + 12.836835925216601 + ], + [ + 77.582012092198298, + 12.8364526717594 + ], + [ + 77.582012092198298, + 12.8364526717594 + ], + [ + 77.582012092198298, + 12.8364526717594 + ], + [ + 77.58208912117, + 12.8368945706129 + ], + [ + 77.581992955385402, + 12.8369499922928 + ], + [ + 77.582018551510401, + 12.8370467820156 + ], + [ + 77.581657519327194, + 12.8372827691165 + ], + [ + 77.581650622735495, + 12.837285339469 + ], + [ + 77.581545153202796, + 12.837324648201999 + ], + [ + 77.581432373954399, + 12.8373667391003 + ], + [ + 77.580415001848394, + 12.837746298526399 + ], + [ + 77.580337276406993, + 12.8377752959841 + ], + [ + 77.5799942724733, + 12.8379042511263 + ], + [ + 77.579856696563596, + 12.8379559737153 + ], + [ + 77.579040862008895, + 12.8382626899919 + ], + [ + 77.578486009125996, + 12.8382985361782 + ], + [ + 77.576863277819101, + 12.838467546664999 + ], + [ + 77.576222464554704, + 12.838562825529401 + ], + [ + 77.574366800771301, + 12.838856290907399 + ], + [ + 77.574285894400603, + 12.838868888611101 + ], + [ + 77.573793240595293, + 12.838975355593201 + ], + [ + 77.573427285560598, + 12.8390622281907 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "320", + "group": "ramanjanaeyanagar", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "3", + "ward_name": "3 - Sarvabhouma Nagar", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಸಾರ್ವಭೌಮ ನಗರ", + "dig_ward_n": "ramanjanaeyanagar", + "Assembly": "176 - Bangalore South", + "Slno": "3" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.554424185354705, + 12.908729117494 + ], + [ + 77.553769266798597, + 12.9089758014922 + ], + [ + 77.553914748900397, + 12.9094654729571 + ], + [ + 77.553060036654699, + 12.9096413597095 + ], + [ + 77.552011062372003, + 12.9098699841672 + ], + [ + 77.551283651862605, + 12.9100119179252 + ], + [ + 77.550724787690697, + 12.9101831255207 + ], + [ + 77.550223005964597, + 12.9097796669818 + ], + [ + 77.5495856645868, + 12.9093695032028 + ], + [ + 77.5492187607299, + 12.9091511675433 + ], + [ + 77.548904418394201, + 12.909253754950701 + ], + [ + 77.548393110657003, + 12.9094206215462 + ], + [ + 77.548300807788095, + 12.909450744522401 + ], + [ + 77.547674617606305, + 12.909624275861599 + ], + [ + 77.547668019744194, + 12.9096256565535 + ], + [ + 77.547332014646898, + 12.909695953061 + ], + [ + 77.546761398135402, + 12.9097873766713 + ], + [ + 77.546816769401204, + 12.9107056168301 + ], + [ + 77.546134694264595, + 12.9104530035214 + ], + [ + 77.545573352465098, + 12.910250689485 + ], + [ + 77.545365583035405, + 12.9101803387596 + ], + [ + 77.545319871744894, + 12.9101317555472 + ], + [ + 77.545212265396998, + 12.910081441675301 + ], + [ + 77.545202036914105, + 12.9100115025609 + ], + [ + 77.545154324203807, + 12.9100002945619 + ], + [ + 77.5448059989304, + 12.909878421940901 + ], + [ + 77.544719835183002, + 12.909845128953799 + ], + [ + 77.544614442807898, + 12.9098218836582 + ], + [ + 77.544089236361003, + 12.9087538583479 + ], + [ + 77.543927275594996, + 12.9084162915167 + ], + [ + 77.544140018512607, + 12.908326200271199 + ], + [ + 77.543422707959195, + 12.906437702746601 + ], + [ + 77.542871243979803, + 12.906626272173 + ], + [ + 77.543191405601704, + 12.907562599140199 + ], + [ + 77.543795435653195, + 12.9088495040249 + ], + [ + 77.543519957585104, + 12.9089811302619 + ], + [ + 77.542770479112306, + 12.907275741225799 + ], + [ + 77.542547665416905, + 12.907339347569801 + ], + [ + 77.542509414895207, + 12.9072321833417 + ], + [ + 77.542101570609105, + 12.907384358658801 + ], + [ + 77.542236093008796, + 12.907674684201201 + ], + [ + 77.542582094146596, + 12.908154185990799 + ], + [ + 77.542813866717495, + 12.908426526531001 + ], + [ + 77.542976574973096, + 12.908688899596401 + ], + [ + 77.543141667005798, + 12.9087282514917 + ], + [ + 77.543431735492007, + 12.9092789838013 + ], + [ + 77.543596794123502, + 12.909215226257 + ], + [ + 77.543722628955905, + 12.909520937181201 + ], + [ + 77.543645925328704, + 12.9094939149086 + ], + [ + 77.543529946208295, + 12.909471139124401 + ], + [ + 77.543481516646395, + 12.9095014910915 + ], + [ + 77.543396176172195, + 12.9094963463423 + ], + [ + 77.543352930729995, + 12.9094370063596 + ], + [ + 77.543236873685998, + 12.909431019304201 + ], + [ + 77.543055621999599, + 12.909399409809 + ], + [ + 77.542894487247096, + 12.909369121371901 + ], + [ + 77.542821658922307, + 12.9093546602868 + ], + [ + 77.542749030734498, + 12.9093592194798 + ], + [ + 77.542608980194302, + 12.909356003685 + ], + [ + 77.542566226584896, + 12.9093550220858 + ], + [ + 77.542340298992698, + 12.9093034361035 + ], + [ + 77.542345121877403, + 12.909177890674099 + ], + [ + 77.542216893125797, + 12.9091523384061 + ], + [ + 77.541726625142203, + 12.908956106816101 + ], + [ + 77.5411001521434, + 12.908786229306999 + ], + [ + 77.540867650651293, + 12.908656511971 + ], + [ + 77.539834702167298, + 12.9081038978986 + ], + [ + 77.539703222495106, + 12.908176140099799 + ], + [ + 77.539642044809497, + 12.9082097548732 + ], + [ + 77.539391344050699, + 12.908359203770599 + ], + [ + 77.539162571679796, + 12.9085084393764 + ], + [ + 77.5389772591422, + 12.9086178104694 + ], + [ + 77.538747363975602, + 12.9086559014325 + ], + [ + 77.538412430257097, + 12.9085238559068 + ], + [ + 77.538249219578006, + 12.9084596198588 + ], + [ + 77.538347004191394, + 12.908560348603 + ], + [ + 77.538473080002206, + 12.9087384072905 + ], + [ + 77.538605873325395, + 12.908936121639901 + ], + [ + 77.538998793529998, + 12.9094773249172 + ], + [ + 77.539259922433502, + 12.9099982947636 + ], + [ + 77.539351289000905, + 12.9103316058802 + ], + [ + 77.538729935821195, + 12.910509671001 + ], + [ + 77.538874945139099, + 12.9110848746288 + ], + [ + 77.539394546965994, + 12.911022486121899 + ], + [ + 77.539422203113205, + 12.9111747897821 + ], + [ + 77.539047786601202, + 12.911232526907799 + ], + [ + 77.539067032309703, + 12.911496717998 + ], + [ + 77.539509683606695, + 12.9114319824329 + ], + [ + 77.5395681807816, + 12.911664852643 + ], + [ + 77.540414231908997, + 12.911517713316499 + ], + [ + 77.541932893275401, + 12.910964836597801 + ], + [ + 77.5423702254039, + 12.9108195381983 + ], + [ + 77.542812493887496, + 12.91219150831 + ], + [ + 77.543062730670798, + 12.9121229345416 + ], + [ + 77.543473528966501, + 12.913265849057399 + ], + [ + 77.543477311221395, + 12.913276371084899 + ], + [ + 77.543747215887507, + 12.913940674414301 + ], + [ + 77.543990384484005, + 12.9138801378491 + ], + [ + 77.544198126408602, + 12.914431102928001 + ], + [ + 77.544199032787802, + 12.9144332958546 + ], + [ + 77.544794208369595, + 12.9160834039048 + ], + [ + 77.544787704603607, + 12.916084727623801 + ], + [ + 77.543565882739799, + 12.9164093714492 + ], + [ + 77.543579857484701, + 12.916863363020401 + ], + [ + 77.543211869280398, + 12.9169533413274 + ], + [ + 77.542663924462005, + 12.917125222965099 + ], + [ + 77.542809850818898, + 12.917598185860999 + ], + [ + 77.542748711712903, + 12.917661055319099 + ], + [ + 77.542876491036196, + 12.917775783193299 + ], + [ + 77.5431720508533, + 12.9176431739451 + ], + [ + 77.543241696940797, + 12.9176371813594 + ], + [ + 77.5434135481336, + 12.91762239462 + ], + [ + 77.543590103931095, + 12.9176072029606 + ], + [ + 77.544341317347204, + 12.9175425650634 + ], + [ + 77.544343711180701, + 12.9175515764334 + ], + [ + 77.544697975537105, + 12.9175187613386 + ], + [ + 77.544698669360798, + 12.917537309237501 + ], + [ + 77.544708237428907, + 12.917793090162499 + ], + [ + 77.544759032913603, + 12.918244001637101 + ], + [ + 77.544763898935898, + 12.918287197152599 + ], + [ + 77.544798239909298, + 12.9182829093631 + ], + [ + 77.545068030744304, + 12.9182492233129 + ], + [ + 77.545343992886004, + 12.918214911762099 + ], + [ + 77.545909708000906, + 12.918143894679099 + ], + [ + 77.546724239855607, + 12.918029793541001 + ], + [ + 77.546726058191197, + 12.9180388104863 + ], + [ + 77.546728303043494, + 12.9180492783833 + ], + [ + 77.546729683416103, + 12.9180557151532 + ], + [ + 77.546744083581999, + 12.918090103389799 + ], + [ + 77.546788086000404, + 12.918195183042799 + ], + [ + 77.546835864787198, + 12.918308779831101 + ], + [ + 77.546843530589797, + 12.9183267744153 + ], + [ + 77.546856757664898, + 12.9183255160559 + ], + [ + 77.546864438126093, + 12.9182881730807 + ], + [ + 77.546984484122603, + 12.9182621566846 + ], + [ + 77.547293703756495, + 12.918215095999599 + ], + [ + 77.547454383919899, + 12.918196885645999 + ], + [ + 77.547588095345205, + 12.918181731662701 + ], + [ + 77.547659191919394, + 12.9181740707545 + ], + [ + 77.547864677948496, + 12.918151928796 + ], + [ + 77.547899731499896, + 12.918145940058301 + ], + [ + 77.548110605435298, + 12.9181077434776 + ], + [ + 77.548294080188896, + 12.9180924008306 + ], + [ + 77.548594047559703, + 12.918036058304301 + ], + [ + 77.548623871269598, + 12.9180304565316 + ], + [ + 77.548569435565796, + 12.9178445900029 + ], + [ + 77.548549334179697, + 12.9177759546742 + ], + [ + 77.548534417621795, + 12.9177241509187 + ], + [ + 77.548455164565695, + 12.917174938902299 + ], + [ + 77.548150124544904, + 12.917162353002199 + ], + [ + 77.548100996761804, + 12.917160325964399 + ], + [ + 77.548087097086494, + 12.9170384935197 + ], + [ + 77.548074554735607, + 12.916936975840301 + ], + [ + 77.548065647918705, + 12.916862951631799 + ], + [ + 77.548038723249505, + 12.9166391812683 + ], + [ + 77.548035980737097, + 12.916513986894801 + ], + [ + 77.548035507837795, + 12.916492399198299 + ], + [ + 77.548254232414905, + 12.916433798128701 + ], + [ + 77.548514295735202, + 12.9163646294432 + ], + [ + 77.548829454413706, + 12.9162791120875 + ], + [ + 77.548998815898898, + 12.9162345442712 + ], + [ + 77.549179067538205, + 12.9161853527125 + ], + [ + 77.549238192094094, + 12.916168964866401 + ], + [ + 77.549481562824695, + 12.916099958265001 + ], + [ + 77.550602441731101, + 12.9157845990197 + ], + [ + 77.550604305239503, + 12.915784074717299 + ], + [ + 77.550581954267599, + 12.915680394457 + ], + [ + 77.5505410688788, + 12.9154868043119 + ], + [ + 77.550514832742707, + 12.9153625783173 + ], + [ + 77.550505176483497, + 12.915318628664901 + ], + [ + 77.550569260641794, + 12.915337201429599 + ], + [ + 77.550869979148004, + 12.915303772255299 + ], + [ + 77.551368031699297, + 12.9152029136841 + ], + [ + 77.551447301051198, + 12.9151863285924 + ], + [ + 77.551833849844101, + 12.9150876811419 + ], + [ + 77.551946821693704, + 12.915058850550601 + ], + [ + 77.552086901472904, + 12.915023101899999 + ], + [ + 77.552100306902602, + 12.915017893259501 + ], + [ + 77.552489408761701, + 12.914866708503199 + ], + [ + 77.553111430399198, + 12.914592406908 + ], + [ + 77.553620800193002, + 12.914367780922101 + ], + [ + 77.553628664824004, + 12.9143643127037 + ], + [ + 77.553640124016994, + 12.914358778971099 + ], + [ + 77.553642985373102, + 12.9143573967009 + ], + [ + 77.553634248467006, + 12.914347318159599 + ], + [ + 77.553365005260105, + 12.9140224448873 + ], + [ + 77.5532706263172, + 12.9139115638771 + ], + [ + 77.5529996540497, + 12.9133597115322 + ], + [ + 77.552933767473505, + 12.913220318557 + ], + [ + 77.552795525642296, + 12.912928043768501 + ], + [ + 77.552771468386993, + 12.9128831056652 + ], + [ + 77.552721797691106, + 12.9127907657482 + ], + [ + 77.552707442100598, + 12.912764078083001 + ], + [ + 77.552212242531098, + 12.9118434758236 + ], + [ + 77.552166318588604, + 12.911881131755299 + ], + [ + 77.551998785394204, + 12.9120185026222 + ], + [ + 77.551877683841994, + 12.9120913991918 + ], + [ + 77.551620860962601, + 12.9122373332064 + ], + [ + 77.551371914295103, + 12.9123958177166 + ], + [ + 77.551315790889504, + 12.912431546962701 + ], + [ + 77.551306440708899, + 12.912438237335399 + ], + [ + 77.551180311948301, + 12.9125284866976 + ], + [ + 77.551103117038593, + 12.9126057343806 + ], + [ + 77.551006429951499, + 12.9126831724205 + ], + [ + 77.550909935951694, + 12.9127797322083 + ], + [ + 77.550829215857107, + 12.912880815167901 + ], + [ + 77.550703599712307, + 12.9130381201494 + ], + [ + 77.550667269423201, + 12.913022347179 + ], + [ + 77.550663213243396, + 12.9130205861685 + ], + [ + 77.550574173034505, + 12.913046023621201 + ], + [ + 77.550400616324595, + 12.9130956056828 + ], + [ + 77.550252436288503, + 12.9127454551413 + ], + [ + 77.550198793691095, + 12.912502155944599 + ], + [ + 77.550185328453793, + 12.9124187240122 + ], + [ + 77.5501720843409, + 12.9123366604764 + ], + [ + 77.550152819701495, + 12.9122172955799 + ], + [ + 77.550050932970095, + 12.911585987457901 + ], + [ + 77.5500509264442, + 12.9115859470222 + ], + [ + 77.5505204197419, + 12.911387258193299 + ], + [ + 77.551404534933894, + 12.911013099426899 + ], + [ + 77.551446386981198, + 12.910991400494799 + ], + [ + 77.551525687994797, + 12.9110835889275 + ], + [ + 77.551627531532901, + 12.9112140673453 + ], + [ + 77.551726146828997, + 12.9113266488728 + ], + [ + 77.551861614679098, + 12.9114687506436 + ], + [ + 77.551929167137104, + 12.9115218758055 + ], + [ + 77.551999445036103, + 12.911560211551301 + ], + [ + 77.552085023211902, + 12.9116068933685 + ], + [ + 77.552248528713093, + 12.911666279766701 + ], + [ + 77.552304496618802, + 12.9116792848953 + ], + [ + 77.552357586676706, + 12.911692318130401 + ], + [ + 77.552415748186405, + 12.9116991369009 + ], + [ + 77.552439746114402, + 12.9117019503789 + ], + [ + 77.552606554096002, + 12.9117215066114 + ], + [ + 77.552647419581803, + 12.9117211072709 + ], + [ + 77.552689401803605, + 12.9117173090184 + ], + [ + 77.552727343563902, + 12.911712420913799 + ], + [ + 77.552848402930195, + 12.9116685881413 + ], + [ + 77.552906854766903, + 12.911647424070701 + ], + [ + 77.554145191642505, + 12.9113236237605 + ], + [ + 77.554259615050697, + 12.9113112116517 + ], + [ + 77.554525968225306, + 12.9114403457547 + ], + [ + 77.554603237139403, + 12.9114778074073 + ], + [ + 77.554734543868406, + 12.911541467824399 + ], + [ + 77.554791270970696, + 12.911572534242399 + ], + [ + 77.554839181726905, + 12.9115748841564 + ], + [ + 77.554848862291806, + 12.9115753589651 + ], + [ + 77.555618089209304, + 12.9114808761235 + ], + [ + 77.555813426035201, + 12.9114569758286 + ], + [ + 77.555818732907994, + 12.911456326508 + ], + [ + 77.555805394079002, + 12.911421736504 + ], + [ + 77.5557555997609, + 12.9112926106861 + ], + [ + 77.555650828561994, + 12.911020919119 + ], + [ + 77.555640192824697, + 12.9109939192853 + ], + [ + 77.555403440999399, + 12.910524175936001 + ], + [ + 77.555255391070006, + 12.910229739932999 + ], + [ + 77.555251130089601, + 12.910222063867099 + ], + [ + 77.555129406877398, + 12.910002781806099 + ], + [ + 77.555117596699404, + 12.9099815059659 + ], + [ + 77.555047349117004, + 12.909855237910399 + ], + [ + 77.554986449398399, + 12.909745772235199 + ], + [ + 77.554911435898603, + 12.9096109370915 + ], + [ + 77.554889513185202, + 12.909571531450201 + ], + [ + 77.5548832680456, + 12.909564859465499 + ], + [ + 77.554864432174796, + 12.9095447361903 + ], + [ + 77.554858088450501, + 12.909537958880501 + ], + [ + 77.554840188582801, + 12.909532487277801 + ], + [ + 77.554817074212096, + 12.909523678678299 + ], + [ + 77.554672896919499, + 12.9095283660576 + ], + [ + 77.554668037496796, + 12.909528524042001 + ], + [ + 77.554660955869394, + 12.909436880898401 + ], + [ + 77.554660164631201, + 12.909426642262799 + ], + [ + 77.5546415267425, + 12.9091854671225 + ], + [ + 77.554639327683702, + 12.909176621348401 + ], + [ + 77.5546289235768, + 12.9091347705302 + ], + [ + 77.554607134353105, + 12.9090864224148 + ], + [ + 77.554594093324994, + 12.9090492820538 + ], + [ + 77.5545451019361, + 12.9089753971134 + ], + [ + 77.554544988760398, + 12.9089752264307 + ], + [ + 77.554520840431906, + 12.908906164167099 + ], + [ + 77.554499339507899, + 12.908844670530099 + ], + [ + 77.554462224412106, + 12.908737429980199 + ], + [ + 77.554459606560002, + 12.9087298673833 + ], + [ + 77.554438298175995, + 12.908668584536599 + ], + [ + 77.554424185354705, + 12.908729117494 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "331", + "group": "bommanahalli", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "37", + "ward_name": "37 - Bommanahalli", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "dig_ward_n": "bommanahalli", + "Assembly": "175 - Bommanahalli", + "Slno": "37" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.626010943169902, + 12.8995381012371 + ], + [ + 77.625741008134099, + 12.8996062569197 + ], + [ + 77.625618336842393, + 12.8997902638573 + ], + [ + 77.625292991242702, + 12.899984937863699 + ], + [ + 77.625042315124801, + 12.9000489402768 + ], + [ + 77.624855641420098, + 12.900142277129101 + ], + [ + 77.624559630259697, + 12.900238280748701 + ], + [ + 77.624475593220694, + 12.899920508752601 + ], + [ + 77.624470942850095, + 12.8999003152389 + ], + [ + 77.624362666792607, + 12.8994242984596 + ], + [ + 77.624272002258195, + 12.8990202789282 + ], + [ + 77.624380924143097, + 12.8990158095342 + ], + [ + 77.624413772690602, + 12.899014014458301 + ], + [ + 77.624638079711005, + 12.899001754704001 + ], + [ + 77.624589820903395, + 12.8985864234337 + ], + [ + 77.624512638894601, + 12.898594567388701 + ], + [ + 77.624453584185801, + 12.8981888095185 + ], + [ + 77.624399364393597, + 12.8977794164883 + ], + [ + 77.624375979896399, + 12.897639819081601 + ], + [ + 77.624245225590599, + 12.8971343872979 + ], + [ + 77.624117650374401, + 12.896611060124 + ], + [ + 77.624044722938905, + 12.8965712197993 + ], + [ + 77.623971798638493, + 12.896514926807299 + ], + [ + 77.623758419914907, + 12.896491723538199 + ], + [ + 77.623667928434102, + 12.8964850281859 + ], + [ + 77.623579623875102, + 12.896440294335999 + ], + [ + 77.623290678412502, + 12.8963551215382 + ], + [ + 77.623192384514397, + 12.896343435410699 + ], + [ + 77.623118604660604, + 12.8963289689053 + ], + [ + 77.622915165265795, + 12.896391836028499 + ], + [ + 77.6227641136757, + 12.8963996871889 + ], + [ + 77.622629038181998, + 12.896437766881901 + ], + [ + 77.622628878216105, + 12.896437792878601 + ], + [ + 77.622519157890594, + 12.896445229373599 + ], + [ + 77.622351315353896, + 12.8964532486981 + ], + [ + 77.622154951865596, + 12.896451416163799 + ], + [ + 77.621775352064304, + 12.896467894541599 + ], + [ + 77.621424180623194, + 12.8964853546081 + ], + [ + 77.621051262886297, + 12.896523307698899 + ], + [ + 77.6211793912437, + 12.896691852654101 + ], + [ + 77.621255375389893, + 12.8969628726121 + ], + [ + 77.621356165566894, + 12.8973801435087 + ], + [ + 77.621364261153204, + 12.897408423448899 + ], + [ + 77.621441294030106, + 12.8976775156919 + ], + [ + 77.621124146979795, + 12.8977807300223 + ], + [ + 77.620605643901698, + 12.8979764317332 + ], + [ + 77.620193465643297, + 12.898152202098 + ], + [ + 77.620357471826793, + 12.898588218537 + ], + [ + 77.619786783643605, + 12.898625553278 + ], + [ + 77.619810784548505, + 12.8989188976712 + ], + [ + 77.620137737147701, + 12.8988848795659 + ], + [ + 77.620151647164207, + 12.8990306240569 + ], + [ + 77.620194574600305, + 12.899502757520899 + ], + [ + 77.620252635654893, + 12.9000242187587 + ], + [ + 77.620311974004693, + 12.9001068074713 + ], + [ + 77.620299176562796, + 12.9003772494377 + ], + [ + 77.620294249281798, + 12.900746361924099 + ], + [ + 77.620286373455102, + 12.9010601404763 + ], + [ + 77.620279243971893, + 12.9013662595637 + ], + [ + 77.620273751807702, + 12.901681118198001 + ], + [ + 77.620256343586902, + 12.901694200785901 + ], + [ + 77.619979918394506, + 12.901811467012299 + ], + [ + 77.619993458102499, + 12.9019276777769 + ], + [ + 77.620090795105796, + 12.9022830245077 + ], + [ + 77.619532377943997, + 12.9024361739272 + ], + [ + 77.619592746617599, + 12.902796634961399 + ], + [ + 77.619706766816705, + 12.9030575053297 + ], + [ + 77.619791824161297, + 12.903285145806899 + ], + [ + 77.619874202442205, + 12.9035048164159 + ], + [ + 77.620028608450099, + 12.903632525072799 + ], + [ + 77.620087023754493, + 12.9037219121033 + ], + [ + 77.620187923129393, + 12.904107402677701 + ], + [ + 77.620281159247099, + 12.9041292778741 + ], + [ + 77.620488295686201, + 12.904749047198999 + ], + [ + 77.620519930234494, + 12.904841895313201 + ], + [ + 77.620849163139098, + 12.9047566200875 + ], + [ + 77.621109853428706, + 12.904688682285601 + ], + [ + 77.621200321604306, + 12.904692843793301 + ], + [ + 77.6216517774685, + 12.9046287560846 + ], + [ + 77.621708856110999, + 12.9049411247252 + ], + [ + 77.621714189645502, + 12.905165133171 + ], + [ + 77.621799711866799, + 12.905808319601 + ], + [ + 77.621809498312999, + 12.906464965498399 + ], + [ + 77.621935531323999, + 12.906487849707601 + ], + [ + 77.621949206631697, + 12.9067030197051 + ], + [ + 77.622034338624999, + 12.906709777510899 + ], + [ + 77.622051521928995, + 12.906711141803701 + ], + [ + 77.622135454328301, + 12.9067623456079 + ], + [ + 77.622274470643006, + 12.906759646606201 + ], + [ + 77.622305983523503, + 12.906820248291099 + ], + [ + 77.622333676051497, + 12.906849818472701 + ], + [ + 77.622342722826403, + 12.9069053505401 + ], + [ + 77.622423378769, + 12.906897571379099 + ], + [ + 77.622883339947094, + 12.906846494045 + ], + [ + 77.622883963390393, + 12.9068657378519 + ], + [ + 77.622899448153106, + 12.9073435286279 + ], + [ + 77.622900328782407, + 12.907350876333499 + ], + [ + 77.622908242202598, + 12.907416891072 + ], + [ + 77.622952903015005, + 12.9076892283361 + ], + [ + 77.623106242129694, + 12.907971905660499 + ], + [ + 77.623152243863998, + 12.908073242814501 + ], + [ + 77.623230246804994, + 12.908231915463499 + ], + [ + 77.623476256080195, + 12.908801270263099 + ], + [ + 77.623648262565297, + 12.9087906031942 + ], + [ + 77.623937606807701, + 12.908791936577799 + ], + [ + 77.624005609371594, + 12.9088359382368 + ], + [ + 77.624168282171397, + 12.9090426126957 + ], + [ + 77.624256212059507, + 12.9090458689536 + ], + [ + 77.624264322666406, + 12.909058557307199 + ], + [ + 77.624309012689096, + 12.9090329870477 + ], + [ + 77.624612804393905, + 12.9089570312864 + ], + [ + 77.624678729637793, + 12.909211450622699 + ], + [ + 77.625147374317706, + 12.909111688240801 + ], + [ + 77.625173236579499, + 12.909268531067999 + ], + [ + 77.625524932278395, + 12.9091818248534 + ], + [ + 77.625529175693003, + 12.909249565050001 + ], + [ + 77.625855461033396, + 12.909259034525601 + ], + [ + 77.625943348448203, + 12.909427135471001 + ], + [ + 77.626095634910499, + 12.909576106363 + ], + [ + 77.626201589713105, + 12.909670094925399 + ], + [ + 77.626215026005895, + 12.909773306911401 + ], + [ + 77.626217692773295, + 12.9098453096261 + ], + [ + 77.626196766435399, + 12.909902013160901 + ], + [ + 77.626104355166802, + 12.910090652209499 + ], + [ + 77.626040352753705, + 12.9102079899668 + ], + [ + 77.626075274577403, + 12.910657850815699 + ], + [ + 77.626415879621703, + 12.9107935419634 + ], + [ + 77.626560293748099, + 12.910862083998 + ], + [ + 77.626828689515605, + 12.9104221395955 + ], + [ + 77.626949693695394, + 12.9102269881451 + ], + [ + 77.627560017473002, + 12.9092426688206 + ], + [ + 77.627936751710394, + 12.908622191425501 + ], + [ + 77.6280092463046, + 12.908502793102 + ], + [ + 77.628054832773898, + 12.9084277123892 + ], + [ + 77.628291082221196, + 12.908038608824199 + ], + [ + 77.628484202980502, + 12.9077302427745 + ], + [ + 77.629014300078794, + 12.9068838070538 + ], + [ + 77.629200384534499, + 12.9065810196921 + ], + [ + 77.629372336028098, + 12.9063012272787 + ], + [ + 77.629595118778695, + 12.9059387224621 + ], + [ + 77.629595693817294, + 12.9059377897715 + ], + [ + 77.629761935187702, + 12.9056672858057 + ], + [ + 77.629888530266896, + 12.905460191272899 + ], + [ + 77.630311122460597, + 12.904768876696201 + ], + [ + 77.630682008845696, + 12.9041621459228 + ], + [ + 77.631003809154095, + 12.9036412275172 + ], + [ + 77.631138050716402, + 12.9034239266703 + ], + [ + 77.630752451154706, + 12.9034947593381 + ], + [ + 77.629989361539998, + 12.9035194567237 + ], + [ + 77.629296194806798, + 12.9035945059256 + ], + [ + 77.629342948192601, + 12.9039022036226 + ], + [ + 77.629061917267606, + 12.903965222279099 + ], + [ + 77.628987863155004, + 12.9039720273179 + ], + [ + 77.628373107371402, + 12.904113093506201 + ], + [ + 77.627482582086401, + 12.9043615821699 + ], + [ + 77.627464435763301, + 12.9043166777856 + ], + [ + 77.627304491279801, + 12.9039208789836 + ], + [ + 77.627266952107803, + 12.903648951134199 + ], + [ + 77.627264515266603, + 12.903415663693901 + ], + [ + 77.627312206614704, + 12.9033044380294 + ], + [ + 77.627380494042299, + 12.903193797621601 + ], + [ + 77.627420800894001, + 12.9030870241417 + ], + [ + 77.627457556066602, + 12.9027567945925 + ], + [ + 77.627460235915606, + 12.902647381943501 + ], + [ + 77.627462680152405, + 12.902547592148499 + ], + [ + 77.627430423229598, + 12.9022586901987 + ], + [ + 77.627398266307694, + 12.901979348985799 + ], + [ + 77.627348121699498, + 12.901681624233399 + ], + [ + 77.627345013328096, + 12.901663169758001 + ], + [ + 77.627292036064404, + 12.9013732816701 + ], + [ + 77.627265812488801, + 12.9011954681842 + ], + [ + 77.627101186255103, + 12.900597158843601 + ], + [ + 77.627095708001605, + 12.9005769005612 + ], + [ + 77.627008678850302, + 12.9002550808145 + ], + [ + 77.626935473073004, + 12.8999669713317 + ], + [ + 77.6269172028573, + 12.8998950649221 + ], + [ + 77.626800527495305, + 12.8994552277283 + ], + [ + 77.626779485042803, + 12.899375216219999 + ], + [ + 77.626010943169902, + 12.8995381012371 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "321", + "group": "doddakammanahalli", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "54", + "ward_name": "54 - Doddakammanahalli", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ದೊಡ್ಡಕಮ್ಮನಹಳ್ಳಿ", + "dig_ward_n": "doddakammanahalli", + "Assembly": "176 - Bangalore South", + "Slno": "54" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.609099586841694, + 12.851268308768701 + ], + [ + 77.609085364619006, + 12.850785595801399 + ], + [ + 77.609078520983005, + 12.850553322912701 + ], + [ + 77.609072597365994, + 12.850352263469199 + ], + [ + 77.609065088473798, + 12.8500973806755 + ], + [ + 77.609061772443795, + 12.8499848379263 + ], + [ + 77.609061749372202, + 12.8499840304878 + ], + [ + 77.609057568130893, + 12.8498420959617 + ], + [ + 77.609057215303494, + 12.8498301326134 + ], + [ + 77.609041696328305, + 12.8493033657747 + ], + [ + 77.609014766945293, + 12.84838930543 + ], + [ + 77.609024986430498, + 12.848270661819001 + ], + [ + 77.609047137751503, + 12.8480217629291 + ], + [ + 77.609065216921493, + 12.847818626310801 + ], + [ + 77.609114164461204, + 12.847268648923601 + ], + [ + 77.609153478504794, + 12.846826921666899 + ], + [ + 77.609221231312901, + 12.8460656524251 + ], + [ + 77.607084351075699, + 12.8474716378911 + ], + [ + 77.604472656953007, + 12.8481733149722 + ], + [ + 77.602671791801299, + 12.848398138115501 + ], + [ + 77.601280169677494, + 12.8481036392803 + ], + [ + 77.600547292323199, + 12.8481242514816 + ], + [ + 77.6001874452609, + 12.847912219202501 + ], + [ + 77.599439443506199, + 12.848015236069701 + ], + [ + 77.599217768970206, + 12.848050994073001 + ], + [ + 77.598851414085502, + 12.8481063567002 + ], + [ + 77.598517864284204, + 12.8482064750419 + ], + [ + 77.598157156410906, + 12.848233311133701 + ], + [ + 77.597011173566599, + 12.848663309757001 + ], + [ + 77.596557033190194, + 12.848800894416801 + ], + [ + 77.596353709004305, + 12.8488859798242 + ], + [ + 77.596043197904095, + 12.8490215947078 + ], + [ + 77.595608965774602, + 12.849190857771401 + ], + [ + 77.595607184708797, + 12.8491867918386 + ], + [ + 77.595407772226693, + 12.848810450157499 + ], + [ + 77.5952287878101, + 12.848401838773301 + ], + [ + 77.594952428600493, + 12.8476686585962 + ], + [ + 77.5948495654455, + 12.8474502000757 + ], + [ + 77.594768978016106, + 12.8471737398442 + ], + [ + 77.594721598739696, + 12.847011202207099 + ], + [ + 77.594610451269006, + 12.8466299042224 + ], + [ + 77.594578765678804, + 12.8465212037288 + ], + [ + 77.594524479364594, + 12.846334276323701 + ], + [ + 77.594437953277804, + 12.845866633160099 + ], + [ + 77.594423949834393, + 12.8457909466474 + ], + [ + 77.594392053995307, + 12.8456172618165 + ], + [ + 77.594351089736804, + 12.8456307259853 + ], + [ + 77.5943420499447, + 12.845593954022601 + ], + [ + 77.5943100581311, + 12.845463824127901 + ], + [ + 77.594380858763301, + 12.8450076858703 + ], + [ + 77.594415775762499, + 12.8439917188539 + ], + [ + 77.594338885826602, + 12.843184641160599 + ], + [ + 77.594166978326001, + 12.8419778962789 + ], + [ + 77.5940814621257, + 12.8419835837301 + ], + [ + 77.594020081170399, + 12.8416533109411 + ], + [ + 77.594002614649398, + 12.8411728008893 + ], + [ + 77.593992177214403, + 12.8408856618532 + ], + [ + 77.593915336422995, + 12.840573171454899 + ], + [ + 77.593978191487906, + 12.840500903005999 + ], + [ + 77.593987141986801, + 12.8403599589293 + ], + [ + 77.593497433762096, + 12.839573746915599 + ], + [ + 77.593372242963099, + 12.8392743466526 + ], + [ + 77.593065616897803, + 12.838541033777799 + ], + [ + 77.592745966886099, + 12.837231615658 + ], + [ + 77.591676938859095, + 12.835059258526201 + ], + [ + 77.591530278882999, + 12.8345839067012 + ], + [ + 77.590758744992399, + 12.8348378299134 + ], + [ + 77.590628115594996, + 12.834965469545001 + ], + [ + 77.590563039025497, + 12.835588835825201 + ], + [ + 77.589984027813202, + 12.835533329475799 + ], + [ + 77.589666243532605, + 12.835474347423901 + ], + [ + 77.589623922258497, + 12.835447606224401 + ], + [ + 77.589304693397906, + 12.8352458971888 + ], + [ + 77.589221388677799, + 12.835173159867701 + ], + [ + 77.587497009812793, + 12.8338427396368 + ], + [ + 77.587061124360005, + 12.8335234027557 + ], + [ + 77.587016283483706, + 12.833490518003901 + ], + [ + 77.586064792295005, + 12.834013443211401 + ], + [ + 77.584227911638493, + 12.835022950572901 + ], + [ + 77.584210871365599, + 12.8350319693094 + ], + [ + 77.584165615302695, + 12.835063159816301 + ], + [ + 77.582229932421896, + 12.8363815832929 + ], + [ + 77.582012092198298, + 12.8364526717594 + ], + [ + 77.582680487154207, + 12.836835925216601 + ], + [ + 77.582680487154207, + 12.836835925216601 + ], + [ + 77.582680487154207, + 12.836835925216601 + ], + [ + 77.582680487154207, + 12.836835925216601 + ], + [ + 77.583181972324695, + 12.841738822354699 + ], + [ + 77.583711424028806, + 12.8423471561408 + ], + [ + 77.583535450840699, + 12.8425513038188 + ], + [ + 77.583503210093994, + 12.842674127842701 + ], + [ + 77.583512802738497, + 12.8427188535303 + ], + [ + 77.583370215107493, + 12.8427710522214 + ], + [ + 77.582883201479802, + 12.841897379154499 + ], + [ + 77.582749687572004, + 12.841943511864001 + ], + [ + 77.582628200073501, + 12.841974586769799 + ], + [ + 77.582476752721803, + 12.842053764163801 + ], + [ + 77.582424202572994, + 12.842072463902699 + ], + [ + 77.582624860168096, + 12.842387807643799 + ], + [ + 77.582667447992606, + 12.8427411649521 + ], + [ + 77.582728106644097, + 12.842955702028499 + ], + [ + 77.583245711045095, + 12.8440214995773 + ], + [ + 77.583438314720397, + 12.8444085884215 + ], + [ + 77.583768458504295, + 12.8444114507462 + ], + [ + 77.583954818296903, + 12.844413065645499 + ], + [ + 77.584096930921206, + 12.8443992595904 + ], + [ + 77.584127544463101, + 12.844396285811699 + ], + [ + 77.584392884726796, + 12.8443705072717 + ], + [ + 77.5844353062907, + 12.844346425585501 + ], + [ + 77.585570140636406, + 12.8460332641445 + ], + [ + 77.585723678797905, + 12.8460806732212 + ], + [ + 77.585722991141907, + 12.8453406882061 + ], + [ + 77.585867665452696, + 12.845294603876001 + ], + [ + 77.586100889772396, + 12.845285688874901 + ], + [ + 77.587347326512798, + 12.8467537784247 + ], + [ + 77.587369422734, + 12.8468221218046 + ], + [ + 77.587585871714893, + 12.8468895403396 + ], + [ + 77.587610710122505, + 12.8471450211039 + ], + [ + 77.588150058402704, + 12.847134376072001 + ], + [ + 77.588320689916202, + 12.8499050192057 + ], + [ + 77.588264388900797, + 12.8499134085609 + ], + [ + 77.588268543227301, + 12.851032060405 + ], + [ + 77.588459417477495, + 12.853316297866501 + ], + [ + 77.588460138478496, + 12.8533249258785 + ], + [ + 77.588564180435498, + 12.8542059450471 + ], + [ + 77.588651918139604, + 12.854922190241201 + ], + [ + 77.588684898758103, + 12.855287590887601 + ], + [ + 77.5887135042843, + 12.855526023924201 + ], + [ + 77.5887648147677, + 12.855953714979 + ], + [ + 77.588796412150401, + 12.856408028130801 + ], + [ + 77.588850541059898, + 12.8571862990909 + ], + [ + 77.588861361155196, + 12.8572674724628 + ], + [ + 77.588985144192606, + 12.8581960952431 + ], + [ + 77.589033648948103, + 12.8585654168667 + ], + [ + 77.589040639427793, + 12.858618642925901 + ], + [ + 77.589153054512195, + 12.8588900343095 + ], + [ + 77.589554969807395, + 12.8595960042557 + ], + [ + 77.589794270591199, + 12.860124302799001 + ], + [ + 77.590186504504103, + 12.8613108296092 + ], + [ + 77.590852115958498, + 12.8610993987093 + ], + [ + 77.591187600550796, + 12.862236569325701 + ], + [ + 77.591128850783903, + 12.8622251649536 + ], + [ + 77.590891931907507, + 12.8622219720984 + ], + [ + 77.590594849774405, + 12.8623428384318 + ], + [ + 77.591572237696795, + 12.8652661887704 + ], + [ + 77.591911712776195, + 12.8663675457591 + ], + [ + 77.592076730592197, + 12.8664023202791 + ], + [ + 77.592391309659902, + 12.866321844546899 + ], + [ + 77.5929885399201, + 12.8662135424594 + ], + [ + 77.593082232286093, + 12.8663036319507 + ], + [ + 77.593272220317601, + 12.8662858241282 + ], + [ + 77.593293180683801, + 12.866519984222 + ], + [ + 77.593328148253903, + 12.866763107340301 + ], + [ + 77.593383237824199, + 12.866933218107301 + ], + [ + 77.593530219223197, + 12.867018229165399 + ], + [ + 77.594775579492605, + 12.866789737070301 + ], + [ + 77.594957282094299, + 12.8666991968988 + ], + [ + 77.595107217072197, + 12.8665358736719 + ], + [ + 77.595253614528204, + 12.8664232132853 + ], + [ + 77.595475166458996, + 12.8662330134777 + ], + [ + 77.595812312071104, + 12.866120170219901 + ], + [ + 77.596148251276105, + 12.865946471365801 + ], + [ + 77.596059306165799, + 12.8649655137752 + ], + [ + 77.596032781712495, + 12.864557056262001 + ], + [ + 77.595140097550697, + 12.8645749981238 + ], + [ + 77.595025565668095, + 12.863811594300801 + ], + [ + 77.5952122029219, + 12.8636937005669 + ], + [ + 77.595213271319395, + 12.8636976660282 + ], + [ + 77.595276809578607, + 12.8635620525259 + ], + [ + 77.595401639941599, + 12.8634816339352 + ], + [ + 77.595513696735296, + 12.863440704716901 + ], + [ + 77.595547634318393, + 12.8633995118107 + ], + [ + 77.5961010101054, + 12.8621811285856 + ], + [ + 77.5969916444365, + 12.8618582292863 + ], + [ + 77.596557104341102, + 12.860547429065701 + ], + [ + 77.596449611049295, + 12.860137808287799 + ], + [ + 77.598935553351296, + 12.860005070424499 + ], + [ + 77.599138195453506, + 12.8599780322138 + ], + [ + 77.599218892310205, + 12.859819660514299 + ], + [ + 77.599254292123604, + 12.8598367987794 + ], + [ + 77.599569022441003, + 12.8597625566315 + ], + [ + 77.599613201979693, + 12.8596570418742 + ], + [ + 77.6003054600003, + 12.859545508840499 + ], + [ + 77.600953370455102, + 12.8594737421529 + ], + [ + 77.600946273767306, + 12.8593034216433 + ], + [ + 77.601453686951899, + 12.8592537448281 + ], + [ + 77.601474977015599, + 12.859876479191 + ], + [ + 77.602224193269095, + 12.859852992744401 + ], + [ + 77.602645848130905, + 12.859812401131901 + ], + [ + 77.602687641836695, + 12.860267065901001 + ], + [ + 77.604152591213904, + 12.8601979097421 + ], + [ + 77.604554934644995, + 12.8601961885294 + ], + [ + 77.605122605755199, + 12.860147316128 + ], + [ + 77.606245756785299, + 12.8601042983481 + ], + [ + 77.606245854360196, + 12.860089582261301 + ], + [ + 77.6062413318826, + 12.859788062792299 + ], + [ + 77.605238841224505, + 12.859725213265 + ], + [ + 77.605396307243595, + 12.858242367147501 + ], + [ + 77.605411467678707, + 12.858026054085 + ], + [ + 77.605305115832394, + 12.857945196563699 + ], + [ + 77.605127443993894, + 12.857919656999499 + ], + [ + 77.605002532665594, + 12.85795047805 + ], + [ + 77.604851362969299, + 12.857908747250599 + ], + [ + 77.604968315745694, + 12.8571066464932 + ], + [ + 77.605011622040394, + 12.857033403675301 + ], + [ + 77.604895431004806, + 12.8563360115637 + ], + [ + 77.604861296046394, + 12.8559495334323 + ], + [ + 77.604891524476201, + 12.8555078065315 + ], + [ + 77.604891270665703, + 12.855146021210601 + ], + [ + 77.604821805119897, + 12.8548190541789 + ], + [ + 77.6047291707727, + 12.8542693284006 + ], + [ + 77.604607630507701, + 12.8541731235419 + ], + [ + 77.604589122342901, + 12.8538532674875 + ], + [ + 77.604769523151404, + 12.853886522151001 + ], + [ + 77.605803631298997, + 12.8540771449779 + ], + [ + 77.606825252365894, + 12.8543968598111 + ], + [ + 77.608450739392495, + 12.8546866633825 + ], + [ + 77.609534315446197, + 12.8548718917191 + ], + [ + 77.609260616210904, + 12.8538467717598 + ], + [ + 77.608957407352705, + 12.8518514682986 + ], + [ + 77.608951410814996, + 12.851270943431601 + ], + [ + 77.609099586841694, + 12.851268308768701 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "332", + "group": "Okalipuram ward", + "Corporatio": "Central", + "ac_no": "164", + "ac": "Gandhinagara", + "corporat_1": "1", + "ward_id": "20", + "ward_name": "20 - Okalipuram ward", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಗಾಂಧಿನಗರ", + "ward_name_": "ಓಕಳಿಪುರಂ ವಾರ್ಡ್", + "dig_ward_n": "Okalipuram ward", + "Assembly": "164 - Gandhinagara", + "Slno": "20" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.566868286641494, + 12.985962886417299 + ], + [ + 77.566786660833003, + 12.9858026862325 + ], + [ + 77.566774455104706, + 12.9852991999372 + ], + [ + 77.567421394617796, + 12.985345868967499 + ], + [ + 77.568028259309401, + 12.985317587957001 + ], + [ + 77.5680291225312, + 12.985285486613 + ], + [ + 77.568063608360603, + 12.9849025684571 + ], + [ + 77.568063688889794, + 12.9849015295962 + ], + [ + 77.568159987985197, + 12.982525723749101 + ], + [ + 77.5676585169156, + 12.9823306949942 + ], + [ + 77.567320352348005, + 12.982209408188501 + ], + [ + 77.567210786201898, + 12.9821579110674 + ], + [ + 77.566647345985999, + 12.9819798882312 + ], + [ + 77.566621060251506, + 12.9819715830894 + ], + [ + 77.566433008394597, + 12.9819314738478 + ], + [ + 77.5664170289987, + 12.9819219385005 + ], + [ + 77.566023963155899, + 12.9820591807116 + ], + [ + 77.564742089376196, + 12.9822978406642 + ], + [ + 77.564709706873501, + 12.982303462589501 + ], + [ + 77.564503164318893, + 12.9823393187735 + ], + [ + 77.5644063137904, + 12.9823561327376 + ], + [ + 77.563788282048407, + 12.982462627362899 + ], + [ + 77.563135907099806, + 12.982547944457201 + ], + [ + 77.563038707969795, + 12.9825607057727 + ], + [ + 77.562683141498894, + 12.982607389097099 + ], + [ + 77.562673465863, + 12.982608141316 + ], + [ + 77.562295887737406, + 12.982637501512301 + ], + [ + 77.562136520451105, + 12.982648592391 + ], + [ + 77.562015774250796, + 12.982656995927099 + ], + [ + 77.5615746010359, + 12.982704841062599 + ], + [ + 77.561550787557493, + 12.9827694620092 + ], + [ + 77.5614665643309, + 12.982998012394599 + ], + [ + 77.561458318080994, + 12.983020390944599 + ], + [ + 77.561397935983905, + 12.9834772309333 + ], + [ + 77.561387682613898, + 12.9836679149529 + ], + [ + 77.561385845735003, + 12.9837020845656 + ], + [ + 77.5613726734789, + 12.983933724776501 + ], + [ + 77.561370785926997, + 12.9839510302624 + ], + [ + 77.561357474661705, + 12.9840730708212 + ], + [ + 77.561351093783301, + 12.9841315682899 + ], + [ + 77.561230598015399, + 12.984453483448201 + ], + [ + 77.561226013590499, + 12.9844625424067 + ], + [ + 77.561100794755603, + 12.984709988022001 + ], + [ + 77.561038655990203, + 12.9848269203305 + ], + [ + 77.561006440906098, + 12.9848859624342 + ], + [ + 77.560976491123697, + 12.9851098628064 + ], + [ + 77.560995641395905, + 12.985588118884801 + ], + [ + 77.560995837675506, + 12.9855930207095 + ], + [ + 77.560996563133003, + 12.985596217178699 + ], + [ + 77.5610356200376, + 12.985768307278599 + ], + [ + 77.561044682810405, + 12.9858082392104 + ], + [ + 77.5610435299849, + 12.9858300509483 + ], + [ + 77.561042682773106, + 12.985846085691399 + ], + [ + 77.561038413465496, + 12.985926880408501 + ], + [ + 77.560923740715296, + 12.9861990463674 + ], + [ + 77.560806365592597, + 12.986544645600899 + ], + [ + 77.560802693367293, + 12.9865699920969 + ], + [ + 77.560785393152401, + 12.9866894051671 + ], + [ + 77.560828428722502, + 12.986757366236301 + ], + [ + 77.560835141073298, + 12.9867679671729 + ], + [ + 77.560868243605896, + 12.986818604362499 + ], + [ + 77.560881353578793, + 12.9868386587773 + ], + [ + 77.560921496494998, + 12.986871249416801 + ], + [ + 77.561031155828701, + 12.9869602779376 + ], + [ + 77.561044379783596, + 12.9869648581983 + ], + [ + 77.561087760052203, + 12.986979883271299 + ], + [ + 77.561132174906206, + 12.986995266747 + ], + [ + 77.561265762493207, + 12.9870415348037 + ], + [ + 77.561267082873201, + 12.9870419129829 + ], + [ + 77.561386435719996, + 12.9870760698896 + ], + [ + 77.561536606119702, + 12.987119046198901 + ], + [ + 77.561789397266296, + 12.9871799085786 + ], + [ + 77.561813779990501, + 12.987185778984999 + ], + [ + 77.561815981750001, + 12.9871863092852 + ], + [ + 77.561847832666203, + 12.987204064306599 + ], + [ + 77.561857808676194, + 12.9872785009431 + ], + [ + 77.561849638912406, + 12.9873802201505 + ], + [ + 77.561765876711505, + 12.9875222109004 + ], + [ + 77.561637656851403, + 12.9876499669981 + ], + [ + 77.561634425622998, + 12.9876531717919 + ], + [ + 77.561631932380706, + 12.987655661903901 + ], + [ + 77.561556528229403, + 12.9877704665645 + ], + [ + 77.561484738377402, + 12.988069315404299 + ], + [ + 77.561483103764203, + 12.9880783651664 + ], + [ + 77.561453005867506, + 12.988263858426899 + ], + [ + 77.561450160011901, + 12.988281397973701 + ], + [ + 77.561450067484003, + 12.988281968240999 + ], + [ + 77.561626325581202, + 12.9882881364132 + ], + [ + 77.5616574156452, + 12.9882878298428 + ], + [ + 77.561918837187605, + 12.988288639845999 + ], + [ + 77.561953946778303, + 12.9882871642822 + ], + [ + 77.561963146136407, + 12.9882859433371 + ], + [ + 77.562122465226295, + 12.988280133985899 + ], + [ + 77.562132943625798, + 12.9882797514743 + ], + [ + 77.562233732481701, + 12.988274909654301 + ], + [ + 77.562280851323194, + 12.9882726460875 + ], + [ + 77.562292930315394, + 12.9882713976322 + ], + [ + 77.562344148152803, + 12.988268633818899 + ], + [ + 77.562404035247695, + 12.9882662794572 + ], + [ + 77.562650925703593, + 12.988256573223801 + ], + [ + 77.562899495368299, + 12.988239439941999 + ], + [ + 77.563172234558095, + 12.9882209449654 + ], + [ + 77.563193576535198, + 12.9882195001173 + ], + [ + 77.563230925325101, + 12.9882169716067 + ], + [ + 77.563256158507699, + 12.988215791926899 + ], + [ + 77.563537103652095, + 12.9882026572591 + ], + [ + 77.563665505447503, + 12.98820251948 + ], + [ + 77.563679323236201, + 12.9882023840228 + ], + [ + 77.563702928609104, + 12.9882021510718 + ], + [ + 77.563934590385898, + 12.988184362436099 + ], + [ + 77.563940694742996, + 12.9881838936384 + ], + [ + 77.5639560806909, + 12.988182712039499 + ], + [ + 77.563961497848396, + 12.988261711636399 + ], + [ + 77.563988048911298, + 12.9883574740143 + ], + [ + 77.563989600677104, + 12.988363071853501 + ], + [ + 77.565080673673194, + 12.9883025580988 + ], + [ + 77.565084575400306, + 12.9882665431177 + ], + [ + 77.565081707707407, + 12.988187336839699 + ], + [ + 77.5650794713316, + 12.988125560961301 + ], + [ + 77.565077471304505, + 12.987930763817699 + ], + [ + 77.565068302873598, + 12.987777603493299 + ], + [ + 77.566236736092407, + 12.9877414037676 + ], + [ + 77.566555815216304, + 12.987730281326201 + ], + [ + 77.566546173783607, + 12.987487681614001 + ], + [ + 77.566549374127504, + 12.987355013073101 + ], + [ + 77.566546887078104, + 12.9872927238535 + ], + [ + 77.566558193344093, + 12.9868671484593 + ], + [ + 77.566586592383501, + 12.9868645623984 + ], + [ + 77.566593657753202, + 12.9867959273786 + ], + [ + 77.567013229665903, + 12.986667767230699 + ], + [ + 77.566965932468406, + 12.986329058268501 + ], + [ + 77.566868286641494, + 12.985962886417299 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "333", + "group": "vijaya bank layout", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "48", + "ward_name": "48 - Vijaya Bank Layout", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ವಿಜಯ ಬ್ಯಾಂಕ್ ಲೇಔಟ್", + "dig_ward_n": "vijaya bank layout", + "Assembly": "175 - Bommanahalli", + "Slno": "48" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.608801316992597, + 12.8882936941366 + ], + [ + 77.608465044260399, + 12.888345672182099 + ], + [ + 77.608455689764298, + 12.888347165755199 + ], + [ + 77.607490461476701, + 12.8884641628888 + ], + [ + 77.607239849051695, + 12.8885476121763 + ], + [ + 77.606991830817506, + 12.8886301979244 + ], + [ + 77.606267481131297, + 12.8888713920661 + ], + [ + 77.605649581239604, + 12.889086675443799 + ], + [ + 77.605409873108599, + 12.8891701907658 + ], + [ + 77.605044686716397, + 12.889297424726401 + ], + [ + 77.604851147645206, + 12.889362862973901 + ], + [ + 77.604700739318801, + 12.8894137176329 + ], + [ + 77.604464161993207, + 12.8894877601579 + ], + [ + 77.604225793918999, + 12.889599520565501 + ], + [ + 77.604019522508807, + 12.8897298845541 + ], + [ + 77.603813791665601, + 12.8897748262787 + ], + [ + 77.603727996462098, + 12.889722456226099 + ], + [ + 77.603432717265903, + 12.8893984477298 + ], + [ + 77.603172628666499, + 12.8894796043633 + ], + [ + 77.603294161827293, + 12.8902579044618 + ], + [ + 77.603086153984904, + 12.890287238901101 + ], + [ + 77.602517228504695, + 12.890387669219001 + ], + [ + 77.601998253155301, + 12.890494361149001 + ], + [ + 77.601928011688699, + 12.8901930579281 + ], + [ + 77.602054115074296, + 12.890152567156999 + ], + [ + 77.601922557991301, + 12.8896798759788 + ], + [ + 77.601824825526606, + 12.8893771937209 + ], + [ + 77.601562182384001, + 12.889472751688899 + ], + [ + 77.6009883501481, + 12.8896596336331 + ], + [ + 77.600403985295699, + 12.8898785944365 + ], + [ + 77.599884572339207, + 12.890075591188699 + ], + [ + 77.599718669210404, + 12.890204780529899 + ], + [ + 77.599600883470799, + 12.890296499594699 + ], + [ + 77.599533126398299, + 12.8903492622589 + ], + [ + 77.598995121079895, + 12.8904372069186 + ], + [ + 77.598157171404793, + 12.8905741777105 + ], + [ + 77.598123882820502, + 12.8905796190496 + ], + [ + 77.598438055665397, + 12.891343687900299 + ], + [ + 77.598555160095302, + 12.891673470559899 + ], + [ + 77.598580045098203, + 12.8917435513561 + ], + [ + 77.598819529759496, + 12.8924179714655 + ], + [ + 77.598901701881402, + 12.892780134866401 + ], + [ + 77.598967051928497, + 12.8930681523135 + ], + [ + 77.599089002877804, + 12.8936134822002 + ], + [ + 77.599115462255995, + 12.8937401185743 + ], + [ + 77.599246790955902, + 12.894368665377201 + ], + [ + 77.599466851698594, + 12.8952253319611 + ], + [ + 77.599837170648399, + 12.8964407684393 + ], + [ + 77.600079788975705, + 12.897369371780901 + ], + [ + 77.600189615259396, + 12.8977555641665 + ], + [ + 77.600279911429297, + 12.898073081825499 + ], + [ + 77.600519389052195, + 12.8987343587198 + ], + [ + 77.600730638721004, + 12.899329850488501 + ], + [ + 77.600902564156797, + 12.899806096245801 + ], + [ + 77.602111859941203, + 12.899325185028699 + ], + [ + 77.602324594885403, + 12.899275503530101 + ], + [ + 77.602572755620699, + 12.899180407935599 + ], + [ + 77.602873155344497, + 12.899071047247 + ], + [ + 77.603159288721898, + 12.8989906730984 + ], + [ + 77.603471697903004, + 12.8988497398022 + ], + [ + 77.603982006247094, + 12.898660969820501 + ], + [ + 77.604583033700095, + 12.898386464948199 + ], + [ + 77.604729938208195, + 12.898337195507199 + ], + [ + 77.605039148774395, + 12.898196521390901 + ], + [ + 77.604715594504498, + 12.8972813287549 + ], + [ + 77.604548243074504, + 12.8966276713459 + ], + [ + 77.604490373637802, + 12.896402264829 + ], + [ + 77.605595251357997, + 12.895944026164599 + ], + [ + 77.605327696732502, + 12.894362667231 + ], + [ + 77.605763552917907, + 12.894289894400901 + ], + [ + 77.606556465019395, + 12.8940528272785 + ], + [ + 77.606938070642201, + 12.8939837963099 + ], + [ + 77.607234804898297, + 12.893933031639 + ], + [ + 77.607316232047694, + 12.8939201428611 + ], + [ + 77.607433045058499, + 12.894272653276399 + ], + [ + 77.607562773240801, + 12.894682497487601 + ], + [ + 77.607751987317499, + 12.895212985110099 + ], + [ + 77.607848847912607, + 12.8955311279133 + ], + [ + 77.608268407449103, + 12.8953921809163 + ], + [ + 77.608749608084807, + 12.8952768892142 + ], + [ + 77.608997655877999, + 12.8951135782448 + ], + [ + 77.609107043414099, + 12.8950165160648 + ], + [ + 77.6091640481864, + 12.894940252923501 + ], + [ + 77.609207168788899, + 12.894906601665699 + ], + [ + 77.609248593672106, + 12.895215638295401 + ], + [ + 77.609310745434996, + 12.8956117877963 + ], + [ + 77.609366177665194, + 12.895931201455101 + ], + [ + 77.609731596874695, + 12.8959300735265 + ], + [ + 77.609916360230997, + 12.895838455561901 + ], + [ + 77.610422004851699, + 12.895792050585801 + ], + [ + 77.611040318836999, + 12.895798521288199 + ], + [ + 77.611100912443206, + 12.895739749315201 + ], + [ + 77.611365430355306, + 12.895679757063499 + ], + [ + 77.611577954120506, + 12.8956697135519 + ], + [ + 77.611627857570994, + 12.8954210166922 + ], + [ + 77.611683093840199, + 12.8952323358961 + ], + [ + 77.611838161852901, + 12.895197122033601 + ], + [ + 77.611999052968997, + 12.895197201872399 + ], + [ + 77.612377000660601, + 12.895189228984 + ], + [ + 77.612753831541298, + 12.895186655294699 + ], + [ + 77.613097001445198, + 12.895187187189 + ], + [ + 77.613362373031194, + 12.895212259736301 + ], + [ + 77.613492827955199, + 12.8952043550527 + ], + [ + 77.613608345837704, + 12.895041650770001 + ], + [ + 77.614040321270494, + 12.8950930912868 + ], + [ + 77.614285252585702, + 12.8950450228197 + ], + [ + 77.614481358298207, + 12.8950962236233 + ], + [ + 77.614598142430907, + 12.8951070337137 + ], + [ + 77.614643256385406, + 12.8951097540562 + ], + [ + 77.614623588977196, + 12.894921746967899 + ], + [ + 77.614646923190307, + 12.8948857456105 + ], + [ + 77.614616332406499, + 12.894608319894999 + ], + [ + 77.614581025342503, + 12.894207626835 + ], + [ + 77.614564429565803, + 12.8940192947663 + ], + [ + 77.614491319071206, + 12.893598558506 + ], + [ + 77.614416808000897, + 12.8934513338989 + ], + [ + 77.614359734730201, + 12.8933385650797 + ], + [ + 77.614232013391103, + 12.8926233498531 + ], + [ + 77.614225774571594, + 12.892599428954901 + ], + [ + 77.614246350628804, + 12.8925946040934 + ], + [ + 77.615023119277595, + 12.8924124459692 + ], + [ + 77.615013579731396, + 12.892388240997899 + ], + [ + 77.614943041514806, + 12.8922285068205 + ], + [ + 77.614731229614193, + 12.891847202156899 + ], + [ + 77.614449927885701, + 12.891342073413799 + ], + [ + 77.6143591533056, + 12.891192478880701 + ], + [ + 77.614355694195396, + 12.891186778501901 + ], + [ + 77.614168389340904, + 12.8910506429389 + ], + [ + 77.613578229240005, + 12.8906549774605 + ], + [ + 77.613532771025902, + 12.8906112811454 + ], + [ + 77.613496760864805, + 12.890565165012999 + ], + [ + 77.613467809145405, + 12.8905143311333 + ], + [ + 77.613433760048906, + 12.8904286912581 + ], + [ + 77.613428916576893, + 12.890415864005901 + ], + [ + 77.6133932292461, + 12.890321350766699 + ], + [ + 77.613388474977796, + 12.890313479724201 + ], + [ + 77.613335334072104, + 12.890178943751 + ], + [ + 77.613623610266302, + 12.8900378568579 + ], + [ + 77.613815643486802, + 12.889947496510599 + ], + [ + 77.613913692004502, + 12.8898633330185 + ], + [ + 77.614001630670899, + 12.8897986526217 + ], + [ + 77.614019119154904, + 12.889785790166799 + ], + [ + 77.614112498201607, + 12.889721274014001 + ], + [ + 77.614386901711796, + 12.8896324807511 + ], + [ + 77.614697331331698, + 12.889540458817899 + ], + [ + 77.614981737131203, + 12.889476423702 + ], + [ + 77.615066975952402, + 12.889414021340301 + ], + [ + 77.615128923361397, + 12.889366205392999 + ], + [ + 77.615222276084396, + 12.8892941482911 + ], + [ + 77.615483318294395, + 12.889091947787801 + ], + [ + 77.6155883952555, + 12.8890208484647 + ], + [ + 77.615694800855096, + 12.8889488504703 + ], + [ + 77.615756721084693, + 12.888906952122101 + ], + [ + 77.616009308298004, + 12.888770568975501 + ], + [ + 77.616007144552498, + 12.888603211996699 + ], + [ + 77.616357987702401, + 12.888544506528801 + ], + [ + 77.616723334810303, + 12.8884725038141 + ], + [ + 77.617043417363604, + 12.888440480689599 + ], + [ + 77.617071347931301, + 12.888431835614099 + ], + [ + 77.617081499664295, + 12.888430594856199 + ], + [ + 77.617200019449299, + 12.8884251686961 + ], + [ + 77.617404237680404, + 12.8883995293235 + ], + [ + 77.617494030534303, + 12.8883651664339 + ], + [ + 77.617652703183296, + 12.8883531659814 + ], + [ + 77.617743373268496, + 12.888361166283101 + ], + [ + 77.617960714796197, + 12.8883504992142 + ], + [ + 77.618292414087406, + 12.8883126952765 + ], + [ + 77.618437413009502, + 12.8883154271156 + ], + [ + 77.6184475023137, + 12.888314383877599 + ], + [ + 77.618712440209407, + 12.888286978612401 + ], + [ + 77.619008075244693, + 12.888248762630299 + ], + [ + 77.619308658233294, + 12.8882180078561 + ], + [ + 77.619316331881507, + 12.8882172170243 + ], + [ + 77.619309064219195, + 12.888207980307101 + ], + [ + 77.619303227146801, + 12.888200133789301 + ], + [ + 77.619259971752598, + 12.8881361979132 + ], + [ + 77.619246443625997, + 12.8881151162631 + ], + [ + 77.619222529960396, + 12.888077850224001 + ], + [ + 77.619194495604404, + 12.888038606096099 + ], + [ + 77.619176162306701, + 12.887991359903999 + ], + [ + 77.619158827320604, + 12.8879294230911 + ], + [ + 77.619125238205598, + 12.8878137570776 + ], + [ + 77.619069885850294, + 12.887623149506499 + ], + [ + 77.6190200185751, + 12.887476842374101 + ], + [ + 77.618949704012195, + 12.887356713290099 + ], + [ + 77.618934400422106, + 12.887321238518 + ], + [ + 77.618932188772604, + 12.887316111761701 + ], + [ + 77.618920301158596, + 12.8872885554457 + ], + [ + 77.618867727343499, + 12.887166685586401 + ], + [ + 77.618847961434994, + 12.887116704566701 + ], + [ + 77.618824578104693, + 12.8870575773523 + ], + [ + 77.618769038494193, + 12.8869192318434 + ], + [ + 77.618734803571002, + 12.8867818023844 + ], + [ + 77.618686172230596, + 12.8865855125885 + ], + [ + 77.618664134646806, + 12.8864965616105 + ], + [ + 77.618663914548307, + 12.886495674844401 + ], + [ + 77.618659844564803, + 12.8864797565969 + ], + [ + 77.618656715257799, + 12.886467514903799 + ], + [ + 77.618646188109807, + 12.8864238701589 + ], + [ + 77.618631609445103, + 12.8863634252381 + ], + [ + 77.618594763932904, + 12.8862106591348 + ], + [ + 77.618574293618195, + 12.8861239094539 + ], + [ + 77.618528655286397, + 12.8859414228481 + ], + [ + 77.618406139254503, + 12.8854502828155 + ], + [ + 77.618336577939203, + 12.885236415644201 + ], + [ + 77.618309360653697, + 12.8851275146042 + ], + [ + 77.618214673570293, + 12.884748657090199 + ], + [ + 77.617849761380498, + 12.8847466610233 + ], + [ + 77.617791876668804, + 12.8843271477852 + ], + [ + 77.617762646698097, + 12.884117394020899 + ], + [ + 77.617748930160602, + 12.884015895988 + ], + [ + 77.617728670080993, + 12.883864954846301 + ], + [ + 77.617728343656694, + 12.883862519769 + ], + [ + 77.617732111587799, + 12.8837394067942 + ], + [ + 77.617734358726494, + 12.883665964838899 + ], + [ + 77.617735956637205, + 12.883598192039701 + ], + [ + 77.617758332006403, + 12.8833698536365 + ], + [ + 77.617782739418104, + 12.883115521466101 + ], + [ + 77.617739815731198, + 12.882917197411301 + ], + [ + 77.617712524993706, + 12.8826170817616 + ], + [ + 77.617707351279094, + 12.882539232126399 + ], + [ + 77.617698199222801, + 12.8824015324697 + ], + [ + 77.617721195913504, + 12.8822883744542 + ], + [ + 77.617728748677393, + 12.882184405127299 + ], + [ + 77.617718685309498, + 12.8820467335534 + ], + [ + 77.617696560509998, + 12.8819114411512 + ], + [ + 77.617618862615103, + 12.8816897498556 + ], + [ + 77.617943183544597, + 12.881552122247401 + ], + [ + 77.618202757426602, + 12.881442244600599 + ], + [ + 77.618469201485794, + 12.881328910177601 + ], + [ + 77.618674174850995, + 12.881241762780601 + ], + [ + 77.618705849891498, + 12.8812282956597 + ], + [ + 77.618580426588807, + 12.8805677923246 + ], + [ + 77.618571436473601, + 12.880555643205099 + ], + [ + 77.618564665980401, + 12.880546493651201 + ], + [ + 77.618533023281699, + 12.880507801209699 + ], + [ + 77.618519779917605, + 12.8804916078986 + ], + [ + 77.618483443770401, + 12.880428731659601 + ], + [ + 77.618466966909807, + 12.880393888781899 + ], + [ + 77.618454471400597, + 12.8803544889621 + ], + [ + 77.618393344881198, + 12.8801213393696 + ], + [ + 77.618374319801006, + 12.8800628070847 + ], + [ + 77.618338607319899, + 12.8798937722435 + ], + [ + 77.618325442544005, + 12.879845344860801 + ], + [ + 77.618299852729393, + 12.8797642926137 + ], + [ + 77.618292090085504, + 12.8797372675233 + ], + [ + 77.6182670640341, + 12.8796550803504 + ], + [ + 77.618247533961906, + 12.8796033287739 + ], + [ + 77.618243332232097, + 12.879591016468 + ], + [ + 77.618241004387201, + 12.879584196309599 + ], + [ + 77.618233312148405, + 12.879563946191899 + ], + [ + 77.618230376156305, + 12.8795583291519 + ], + [ + 77.618215731392496, + 12.8795336314399 + ], + [ + 77.618194157568695, + 12.8795067444578 + ], + [ + 77.618172031745701, + 12.8794821215536 + ], + [ + 77.618118525724199, + 12.879428451158001 + ], + [ + 77.618085924210504, + 12.879392640195199 + ], + [ + 77.618064373875001, + 12.8793680115232 + ], + [ + 77.618031725455097, + 12.8793276838983 + ], + [ + 77.617993956501195, + 12.8792930538707 + ], + [ + 77.617983527726295, + 12.8792863824679 + ], + [ + 77.617949434453905, + 12.8792731720056 + ], + [ + 77.617931536349403, + 12.879267704566701 + ], + [ + 77.617917114502902, + 12.879264460928701 + ], + [ + 77.6178835064309, + 12.878965537642699 + ], + [ + 77.618261193620199, + 12.878921360619399 + ], + [ + 77.6183163509575, + 12.8789149089727 + ], + [ + 77.618314937068206, + 12.8789095059534 + ], + [ + 77.618308171448206, + 12.8788836518899 + ], + [ + 77.618298371390196, + 12.8788462026814 + ], + [ + 77.618280661652093, + 12.878803467132601 + ], + [ + 77.618228600639597, + 12.8787226795599 + ], + [ + 77.618194073409299, + 12.8786676900875 + ], + [ + 77.618149470037295, + 12.878584569354899 + ], + [ + 77.618114273541593, + 12.878520552314299 + ], + [ + 77.618037746135698, + 12.877801965881799 + ], + [ + 77.618005531943496, + 12.877803417248099 + ], + [ + 77.617851775694106, + 12.8776250790599 + ], + [ + 77.617704358625502, + 12.877454092677301 + ], + [ + 77.617682620890307, + 12.8774113973151 + ], + [ + 77.617644453598999, + 12.877338375606699 + ], + [ + 77.6176179362906, + 12.8772787888014 + ], + [ + 77.617587179687206, + 12.8771989173124 + ], + [ + 77.617570162957605, + 12.8771674675494 + ], + [ + 77.617564115181807, + 12.877139295981401 + ], + [ + 77.617562706279102, + 12.8771144658855 + ], + [ + 77.617564973818304, + 12.877055720613299 + ], + [ + 77.617571693484194, + 12.876926915423001 + ], + [ + 77.617586598594897, + 12.876810450501999 + ], + [ + 77.617588090454404, + 12.876787849971899 + ], + [ + 77.617600387959698, + 12.876697384577399 + ], + [ + 77.617612356250007, + 12.8766306373725 + ], + [ + 77.617630807039703, + 12.876578506021 + ], + [ + 77.617665805452603, + 12.8765126578903 + ], + [ + 77.617696005681594, + 12.876428808227899 + ], + [ + 77.6176960125497, + 12.876428789159 + ], + [ + 77.617686841341197, + 12.8763892683733 + ], + [ + 77.617682155483706, + 12.87636907579 + ], + [ + 77.617633067296893, + 12.876241957727901 + ], + [ + 77.6175461522093, + 12.8760745636227 + ], + [ + 77.6175264341705, + 12.876060080054801 + ], + [ + 77.617499846561799, + 12.876063492428001 + ], + [ + 77.617478729686397, + 12.8760662032669 + ], + [ + 77.616927990634196, + 12.876124783513699 + ], + [ + 77.616799216628493, + 12.876138492400401 + ], + [ + 77.616513141681494, + 12.8761899099316 + ], + [ + 77.616256943605805, + 12.8762365115627 + ], + [ + 77.616195662862197, + 12.876241636866199 + ], + [ + 77.616164940298404, + 12.8762442063869 + ], + [ + 77.616018890589501, + 12.8762569582094 + ], + [ + 77.615719228071697, + 12.8762746321833 + ], + [ + 77.615708869783404, + 12.8762747356453 + ], + [ + 77.615628235014796, + 12.8762687653428 + ], + [ + 77.615595044080095, + 12.8762682774443 + ], + [ + 77.615536713361294, + 12.876267420879699 + ], + [ + 77.615454399071297, + 12.8762659844274 + ], + [ + 77.614919069189497, + 12.876256641585799 + ], + [ + 77.614968363556798, + 12.8756271468189 + ], + [ + 77.614990261977297, + 12.875352512370601 + ], + [ + 77.615007353066204, + 12.875224732727901 + ], + [ + 77.615131125696806, + 12.874285062649401 + ], + [ + 77.615266907736498, + 12.873504501623399 + ], + [ + 77.615340753800595, + 12.8730780246138 + ], + [ + 77.615247204828705, + 12.8725481956052 + ], + [ + 77.615227630917403, + 12.872436592000399 + ], + [ + 77.615209278204006, + 12.8723317518971 + ], + [ + 77.615206034217806, + 12.872018972853301 + ], + [ + 77.615218543507694, + 12.871948832413899 + ], + [ + 77.615277824584098, + 12.871616231351499 + ], + [ + 77.615156100150898, + 12.8715880851706 + ], + [ + 77.614985581391096, + 12.8711279104706 + ], + [ + 77.614970158953497, + 12.8711280255669 + ], + [ + 77.614728224264098, + 12.8711298341528 + ], + [ + 77.614534992987799, + 12.8711312784952 + ], + [ + 77.614498234475803, + 12.871138421049301 + ], + [ + 77.614102475564593, + 12.871212386028301 + ], + [ + 77.613868700589407, + 12.871256502169601 + ], + [ + 77.613752204988899, + 12.8712740831677 + ], + [ + 77.613580246030907, + 12.871300034352799 + ], + [ + 77.613562752486203, + 12.871166953301501 + ], + [ + 77.613544695226807, + 12.8710350071529 + ], + [ + 77.613439886948299, + 12.870251199868401 + ], + [ + 77.613374612317401, + 12.8700056669124 + ], + [ + 77.613335722262306, + 12.8698626356602 + ], + [ + 77.613321948759506, + 12.869810825942499 + ], + [ + 77.613302482565601, + 12.8693762454326 + ], + [ + 77.613292638402399, + 12.869148228069299 + ], + [ + 77.613280606517094, + 12.868709056235099 + ], + [ + 77.613274614436406, + 12.8681862570558 + ], + [ + 77.613230833963001, + 12.8681821765419 + ], + [ + 77.613198010306306, + 12.868180245319801 + ], + [ + 77.613123120806804, + 12.8681730871764 + ], + [ + 77.613070135091206, + 12.8678359593099 + ], + [ + 77.613065215720297, + 12.867805517666399 + ], + [ + 77.613060895188298, + 12.867777328621401 + ], + [ + 77.613031931060902, + 12.8675924146753 + ], + [ + 77.612955310504205, + 12.867140335302301 + ], + [ + 77.612950437962198, + 12.867114410324801 + ], + [ + 77.612947867184801, + 12.867088462395801 + ], + [ + 77.612860517712505, + 12.8659894093364 + ], + [ + 77.612800075744502, + 12.8654058984733 + ], + [ + 77.612763321556301, + 12.865422814792201 + ], + [ + 77.612055970545796, + 12.8657483820898 + ], + [ + 77.611857790378806, + 12.8658796605087 + ], + [ + 77.611563224867396, + 12.866074786793799 + ], + [ + 77.611457908459201, + 12.866144550421 + ], + [ + 77.611139090262498, + 12.8666457426721 + ], + [ + 77.611120443892105, + 12.867068281738501 + ], + [ + 77.611105112708501, + 12.867421901275099 + ], + [ + 77.610938985158398, + 12.867440495875 + ], + [ + 77.610803908090702, + 12.867456522439401 + ], + [ + 77.610681797114907, + 12.867473219874601 + ], + [ + 77.610554493175698, + 12.867490627333501 + ], + [ + 77.610332077227497, + 12.8675199459047 + ], + [ + 77.610306982518793, + 12.867263847628999 + ], + [ + 77.610273741012705, + 12.8669040080968 + ], + [ + 77.610271337166907, + 12.8668779863661 + ], + [ + 77.609771558728497, + 12.866910066965 + ], + [ + 77.609303405931598, + 12.8669395731565 + ], + [ + 77.609073357525602, + 12.866954285841601 + ], + [ + 77.608857683434806, + 12.8669677259384 + ], + [ + 77.608379183807102, + 12.866998462808301 + ], + [ + 77.608304934986606, + 12.8672758776728 + ], + [ + 77.608210728983494, + 12.8676268949781 + ], + [ + 77.608161969636697, + 12.867809195854299 + ], + [ + 77.608076643587694, + 12.8681285046863 + ], + [ + 77.608090034029303, + 12.8688669265392 + ], + [ + 77.608092726190307, + 12.869015965911 + ], + [ + 77.608075958235801, + 12.869175362589999 + ], + [ + 77.608047639686305, + 12.869442156716 + ], + [ + 77.608023562748102, + 12.8696739006597 + ], + [ + 77.607986263654198, + 12.8696844355413 + ], + [ + 77.607318197890905, + 12.869881353059601 + ], + [ + 77.607246883430193, + 12.869902373432399 + ], + [ + 77.607141688751199, + 12.869933379850201 + ], + [ + 77.606428875036897, + 12.869905949218101 + ], + [ + 77.606417892831104, + 12.869896539004699 + ], + [ + 77.606295064547794, + 12.869705781499199 + ], + [ + 77.606260070193898, + 12.8694938229721 + ], + [ + 77.606143338853599, + 12.869280418871501 + ], + [ + 77.606070143904901, + 12.8692145187531 + ], + [ + 77.605994289797493, + 12.869235829370099 + ], + [ + 77.605895122009898, + 12.869263689746299 + ], + [ + 77.6057064116319, + 12.868923476971499 + ], + [ + 77.605325113142499, + 12.8682360566316 + ], + [ + 77.605199592028796, + 12.8681187290209 + ], + [ + 77.605005267278301, + 12.8676361948169 + ], + [ + 77.604939397688895, + 12.867336561176799 + ], + [ + 77.604872310935804, + 12.8670313896886 + ], + [ + 77.604864565364394, + 12.866996155722701 + ], + [ + 77.604662370387103, + 12.867033173551199 + ], + [ + 77.604638409893795, + 12.8666076685764 + ], + [ + 77.604588923567704, + 12.866273889932 + ], + [ + 77.604586545339998, + 12.866043537959101 + ], + [ + 77.604525870552294, + 12.8655178907626 + ], + [ + 77.604473382570305, + 12.865283519565001 + ], + [ + 77.604467815820897, + 12.8651345082923 + ], + [ + 77.604331568994894, + 12.865092949069901 + ], + [ + 77.604285746192701, + 12.864779461072899 + ], + [ + 77.604272271134903, + 12.8647801994909 + ], + [ + 77.603857817228501, + 12.8648029107596 + ], + [ + 77.603509841098003, + 12.864655042296899 + ], + [ + 77.603509243168602, + 12.8649317250631 + ], + [ + 77.603538836227301, + 12.865234081656601 + ], + [ + 77.603472627701095, + 12.865299017816501 + ], + [ + 77.603399251423994, + 12.865370983418799 + ], + [ + 77.6030796941495, + 12.866081095217501 + ], + [ + 77.602925585304106, + 12.8663163896521 + ], + [ + 77.602822776859497, + 12.8665037442001 + ], + [ + 77.602633267149599, + 12.8666546931205 + ], + [ + 77.602380113454302, + 12.8667170597476 + ], + [ + 77.602045232126699, + 12.8667527749946 + ], + [ + 77.602041514184293, + 12.866753171512499 + ], + [ + 77.601484518542705, + 12.866769623982901 + ], + [ + 77.601601183095298, + 12.866467314569 + ], + [ + 77.601537148662004, + 12.866285004515699 + ], + [ + 77.600653573514407, + 12.8663318215422 + ], + [ + 77.600566804579401, + 12.866336419200699 + ], + [ + 77.599851950684098, + 12.8663288310663 + ], + [ + 77.599720441390602, + 12.866356109486899 + ], + [ + 77.599637856543794, + 12.8663840318287 + ], + [ + 77.599540483593998, + 12.866317239949201 + ], + [ + 77.599263770501295, + 12.8663832252176 + ], + [ + 77.599271200321297, + 12.8665457702218 + ], + [ + 77.5990444648303, + 12.8667198292849 + ], + [ + 77.599034240013793, + 12.8667276785703 + ], + [ + 77.598062511111095, + 12.866774834762699 + ], + [ + 77.5979989047419, + 12.8670337103914 + ], + [ + 77.597953873815996, + 12.8672241886851 + ], + [ + 77.597902472633905, + 12.867478590555701 + ], + [ + 77.597856949241105, + 12.8676696302553 + ], + [ + 77.597572575921006, + 12.868862992073399 + ], + [ + 77.596784940127193, + 12.8702835514041 + ], + [ + 77.596367281886202, + 12.8719476431882 + ], + [ + 77.596583498960399, + 12.8719557053565 + ], + [ + 77.597569134848001, + 12.8719420464185 + ], + [ + 77.598731123839997, + 12.871926936136701 + ], + [ + 77.599357849266497, + 12.8719380361541 + ], + [ + 77.599769203463794, + 12.8719453211837 + ], + [ + 77.600328866955905, + 12.871901186068801 + ], + [ + 77.600744902862402, + 12.871875133287601 + ], + [ + 77.600846015151504, + 12.8718688018824 + ], + [ + 77.601523591522295, + 12.8718004035837 + ], + [ + 77.602179625667702, + 12.8717695059542 + ], + [ + 77.602264173902597, + 12.8718712231375 + ], + [ + 77.602398720091401, + 12.872443568609601 + ], + [ + 77.602556169539696, + 12.873110343697199 + ], + [ + 77.602627518054604, + 12.873366357495399 + ], + [ + 77.602905604376303, + 12.874385660931599 + ], + [ + 77.603191411574301, + 12.874545026863601 + ], + [ + 77.603554047414306, + 12.8744692598847 + ], + [ + 77.6037661784774, + 12.8742934694785 + ], + [ + 77.604114851549795, + 12.874036555616501 + ], + [ + 77.604234848288698, + 12.874149413856101 + ], + [ + 77.604184016761593, + 12.874355211643101 + ], + [ + 77.604327169265204, + 12.8748340709872 + ], + [ + 77.6043262007381, + 12.8751933364873 + ], + [ + 77.604355535177405, + 12.8753433421429 + ], + [ + 77.604381683700197, + 12.8754848885453 + ], + [ + 77.605054807087399, + 12.8753768149724 + ], + [ + 77.605745046666797, + 12.875300250356201 + ], + [ + 77.606240581526905, + 12.875256035276299 + ], + [ + 77.606244954831098, + 12.8753355637925 + ], + [ + 77.606254741849398, + 12.875371112107301 + ], + [ + 77.606859186306707, + 12.8755255019007 + ], + [ + 77.607177196217407, + 12.8756272801851 + ], + [ + 77.607094971794893, + 12.875829360467099 + ], + [ + 77.607092305027706, + 12.8759320310047 + ], + [ + 77.607168096759196, + 12.876421829212701 + ], + [ + 77.607170974660505, + 12.8765187197911 + ], + [ + 77.607406983558704, + 12.8765133862567 + ], + [ + 77.607742996227302, + 12.8765600546829 + ], + [ + 77.608289683505504, + 12.876633390781199 + ], + [ + 77.608426051198407, + 12.876685465288899 + ], + [ + 77.608774139810293, + 12.876702076613499 + ], + [ + 77.608911715574195, + 12.876725095959401 + ], + [ + 77.608924564023795, + 12.876789507214101 + ], + [ + 77.609141827412301, + 12.8773012633989 + ], + [ + 77.609426376725395, + 12.877958159599601 + ], + [ + 77.609470190428695, + 12.8780931715156 + ], + [ + 77.609554728539393, + 12.8783536750244 + ], + [ + 77.609699762845693, + 12.878713169613199 + ], + [ + 77.609758343440603, + 12.8789587893017 + ], + [ + 77.609760041695495, + 12.8789646789979 + ], + [ + 77.609907448525703, + 12.879476004459599 + ], + [ + 77.609959067255602, + 12.8797551582584 + ], + [ + 77.609992682299094, + 12.879972044648699 + ], + [ + 77.610033879237704, + 12.8804210151199 + ], + [ + 77.609995102488796, + 12.8808925889448 + ], + [ + 77.609990601935195, + 12.8809473193012 + ], + [ + 77.609977140953006, + 12.881476412928301 + ], + [ + 77.609983661664401, + 12.8818565172293 + ], + [ + 77.609981330661398, + 12.882130262371099 + ], + [ + 77.610062039433302, + 12.8828350101961 + ], + [ + 77.610096891973996, + 12.883329899094299 + ], + [ + 77.610083797690905, + 12.883477034770801 + ], + [ + 77.610069963315695, + 12.8837879153429 + ], + [ + 77.610064779124301, + 12.8841106611181 + ], + [ + 77.610093158295598, + 12.884380485371601 + ], + [ + 77.610084069111196, + 12.884443919048 + ], + [ + 77.610105599053298, + 12.8845382238081 + ], + [ + 77.6101491637842, + 12.8850094534302 + ], + [ + 77.6102034443538, + 12.8855965863525 + ], + [ + 77.610505433939906, + 12.8868474376075 + ], + [ + 77.610478881301404, + 12.886845291241601 + ], + [ + 77.609565099228206, + 12.886838374386301 + ], + [ + 77.608812933721097, + 12.886800253879599 + ], + [ + 77.608801316992597, + 12.8882936941366 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "322", + "group": "yelenahalli", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "47", + "ward_name": "47 - Yelenahalli", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಯೆಲೇನಹಳ್ಳಿ", + "dig_ward_n": "yelenahalli", + "Assembly": "176 - Bangalore South", + "Slno": "47" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.588889426929796, + 12.8698429209201 + ], + [ + 77.588889426929796, + 12.8698429209201 + ], + [ + 77.588987872795698, + 12.869893185143599 + ], + [ + 77.589527708493193, + 12.8701735641126 + ], + [ + 77.590358411599397, + 12.870532375887301 + ], + [ + 77.591848500033507, + 12.871547562359099 + ], + [ + 77.592658165176204, + 12.872098554773199 + ], + [ + 77.592954031980398, + 12.872719000628701 + ], + [ + 77.593669214875504, + 12.8728124279894 + ], + [ + 77.593957939850696, + 12.8728502238183 + ], + [ + 77.594191235027097, + 12.8729646993663 + ], + [ + 77.594202711311596, + 12.8729703306846 + ], + [ + 77.594202851363306, + 12.8729707864383 + ], + [ + 77.594237471686696, + 12.873084062904301 + ], + [ + 77.594256220272698, + 12.8731454060063 + ], + [ + 77.594259096667898, + 12.8731453775183 + ], + [ + 77.594273210184198, + 12.8731427704422 + ], + [ + 77.594276896902201, + 12.873142089604301 + ], + [ + 77.594282060087394, + 12.8731411361023 + ], + [ + 77.594300187275806, + 12.873137789106799 + ], + [ + 77.594414192852696, + 12.8731167372898 + ], + [ + 77.594600422089698, + 12.873093435997299 + ], + [ + 77.594675714767604, + 12.873083655790801 + ], + [ + 77.594799311447403, + 12.8730700091667 + ], + [ + 77.595526516072795, + 12.8729893999867 + ], + [ + 77.595601797007504, + 12.872978490342501 + ], + [ + 77.595680460957297, + 12.8729607713604 + ], + [ + 77.595699210028997, + 12.8729538922271 + ], + [ + 77.595772197770003, + 12.8729271126246 + ], + [ + 77.595848280830396, + 12.8728823160007 + ], + [ + 77.595985554614401, + 12.8727996460825 + ], + [ + 77.596022140013503, + 12.8727755682314 + ], + [ + 77.596058678901201, + 12.872746973642601 + ], + [ + 77.596092189334101, + 12.872703728182 + ], + [ + 77.596106930431901, + 12.8726821254123 + ], + [ + 77.596126112450506, + 12.8726446684483 + ], + [ + 77.596153153272994, + 12.8725879355197 + ], + [ + 77.596172079501102, + 12.872525636520599 + ], + [ + 77.596237774853293, + 12.8723104186867 + ], + [ + 77.596284979886605, + 12.872143943949499 + ], + [ + 77.596297901551097, + 12.8721133248215 + ], + [ + 77.596347646769303, + 12.8720258758035 + ], + [ + 77.596784940127193, + 12.8702835514041 + ], + [ + 77.597572575921006, + 12.868862992073399 + ], + [ + 77.597856949241105, + 12.8676696302553 + ], + [ + 77.597902472633905, + 12.867478590555701 + ], + [ + 77.597953873815996, + 12.8672241886851 + ], + [ + 77.5979989047419, + 12.8670337103914 + ], + [ + 77.598062511111095, + 12.866774834762699 + ], + [ + 77.599034240013793, + 12.8667276785703 + ], + [ + 77.5990444648303, + 12.8667198292849 + ], + [ + 77.599271200321297, + 12.8665457702218 + ], + [ + 77.599263770501295, + 12.8663832252176 + ], + [ + 77.599540483593998, + 12.866317239949201 + ], + [ + 77.599637856543794, + 12.8663840318287 + ], + [ + 77.599720441390602, + 12.866356109486899 + ], + [ + 77.599851950684098, + 12.8663288310663 + ], + [ + 77.600506314409799, + 12.866335777176699 + ], + [ + 77.600566804579401, + 12.866336419200699 + ], + [ + 77.600653573514407, + 12.8663318215422 + ], + [ + 77.601537148662004, + 12.866285004515699 + ], + [ + 77.601601183095298, + 12.866467314569 + ], + [ + 77.601484518542705, + 12.866769623982901 + ], + [ + 77.602041514184293, + 12.866753171512499 + ], + [ + 77.602045232126699, + 12.8667527749946 + ], + [ + 77.602380113454302, + 12.8667170597476 + ], + [ + 77.602633267149599, + 12.8666546931205 + ], + [ + 77.602822776859497, + 12.8665037442001 + ], + [ + 77.602925585304106, + 12.8663163896521 + ], + [ + 77.6030796941495, + 12.866081095217501 + ], + [ + 77.603399251423994, + 12.865370983418799 + ], + [ + 77.603472627701095, + 12.865299017816501 + ], + [ + 77.603538836227301, + 12.865234081656601 + ], + [ + 77.603509243168602, + 12.8649317250631 + ], + [ + 77.603509841098003, + 12.864655042296899 + ], + [ + 77.603667145166796, + 12.864721886940201 + ], + [ + 77.603841034666104, + 12.864795779217999 + ], + [ + 77.603857817228501, + 12.8648029107596 + ], + [ + 77.604272271134903, + 12.8647801994909 + ], + [ + 77.604285746192701, + 12.864779461072899 + ], + [ + 77.604331568994894, + 12.865092949069901 + ], + [ + 77.604467815820897, + 12.8651345082923 + ], + [ + 77.604473382570305, + 12.865283519565001 + ], + [ + 77.604525870552294, + 12.8655178907626 + ], + [ + 77.604586545339998, + 12.866043537959101 + ], + [ + 77.604588923567704, + 12.866273889932 + ], + [ + 77.604638409893795, + 12.8666076685764 + ], + [ + 77.604662370387103, + 12.867033173551199 + ], + [ + 77.604834341210505, + 12.8670016891669 + ], + [ + 77.604864565364394, + 12.866996155722701 + ], + [ + 77.604872310935804, + 12.8670313896886 + ], + [ + 77.604939397688895, + 12.867336561176799 + ], + [ + 77.605005267278301, + 12.8676361948169 + ], + [ + 77.605199592028796, + 12.8681187290209 + ], + [ + 77.605325113142499, + 12.8682360566316 + ], + [ + 77.6057064116319, + 12.868923476971499 + ], + [ + 77.605895122009898, + 12.869263689746299 + ], + [ + 77.605994289797493, + 12.869235829370099 + ], + [ + 77.606070143904901, + 12.8692145187531 + ], + [ + 77.606143338853599, + 12.869280418871501 + ], + [ + 77.606228005777098, + 12.869435203991401 + ], + [ + 77.606260070193898, + 12.8694938229721 + ], + [ + 77.606295064547794, + 12.869705781499199 + ], + [ + 77.606417892831104, + 12.869896539004699 + ], + [ + 77.606428875036897, + 12.869905949218101 + ], + [ + 77.607141688751199, + 12.869933379850201 + ], + [ + 77.607246883430193, + 12.869902373432399 + ], + [ + 77.607318197890905, + 12.869881353059601 + ], + [ + 77.607986263654198, + 12.8696844355413 + ], + [ + 77.608023562748102, + 12.8696739006597 + ], + [ + 77.608047639686305, + 12.869442156716 + ], + [ + 77.608075958235801, + 12.869175362589999 + ], + [ + 77.608092726190307, + 12.869015965911 + ], + [ + 77.608090034029303, + 12.8688669265392 + ], + [ + 77.608076643587694, + 12.8681285046863 + ], + [ + 77.608161969636697, + 12.867809195854299 + ], + [ + 77.608210728983494, + 12.8676268949781 + ], + [ + 77.608304934986606, + 12.8672758776728 + ], + [ + 77.608379183807102, + 12.866998462808301 + ], + [ + 77.608857683434806, + 12.8669677259384 + ], + [ + 77.609073357525602, + 12.866954285841601 + ], + [ + 77.609303405931598, + 12.8669395731565 + ], + [ + 77.609771558728497, + 12.866910066965 + ], + [ + 77.610271337166907, + 12.8668779863661 + ], + [ + 77.610273741012705, + 12.8669040080968 + ], + [ + 77.610306982518793, + 12.867263847628999 + ], + [ + 77.610332077227497, + 12.8675199459047 + ], + [ + 77.610554493175698, + 12.867490627333501 + ], + [ + 77.610681797114907, + 12.867473219874601 + ], + [ + 77.610803908090702, + 12.867456522439401 + ], + [ + 77.610938985158398, + 12.867440495875 + ], + [ + 77.611105112708501, + 12.867421901275099 + ], + [ + 77.611120443892105, + 12.867068281738501 + ], + [ + 77.611139090262498, + 12.8666457426721 + ], + [ + 77.611457908459201, + 12.866144550421 + ], + [ + 77.611563224867396, + 12.866074786793799 + ], + [ + 77.611857790378806, + 12.8658796605087 + ], + [ + 77.612055970545796, + 12.8657483820898 + ], + [ + 77.612763321556301, + 12.865422814792201 + ], + [ + 77.612800075744502, + 12.8654058984733 + ], + [ + 77.612860517712505, + 12.8659894093364 + ], + [ + 77.612947867184801, + 12.867088462395801 + ], + [ + 77.612950437962198, + 12.867114410324801 + ], + [ + 77.612955310504205, + 12.867140335302301 + ], + [ + 77.613031931060902, + 12.8675924146753 + ], + [ + 77.613060895188298, + 12.867777328621401 + ], + [ + 77.613065215720297, + 12.867805517666399 + ], + [ + 77.613070135091206, + 12.8678359593099 + ], + [ + 77.613123120806804, + 12.8681730871764 + ], + [ + 77.613198010306306, + 12.868180245319801 + ], + [ + 77.613230833963001, + 12.8681821765419 + ], + [ + 77.613274614436406, + 12.8681862570558 + ], + [ + 77.613280606517094, + 12.868709056235099 + ], + [ + 77.613292638402399, + 12.869148228069299 + ], + [ + 77.613302482565601, + 12.8693762454326 + ], + [ + 77.613321948759506, + 12.869810825942499 + ], + [ + 77.613335722262306, + 12.8698626356602 + ], + [ + 77.613374612317401, + 12.8700056669124 + ], + [ + 77.613439886948299, + 12.870251199868401 + ], + [ + 77.613544695226807, + 12.8710350071529 + ], + [ + 77.613562752486203, + 12.871166953301501 + ], + [ + 77.613580246030907, + 12.871300034352799 + ], + [ + 77.613752204988899, + 12.8712740831677 + ], + [ + 77.613868700589407, + 12.871256502169601 + ], + [ + 77.614102475564593, + 12.871212386028301 + ], + [ + 77.614498234475803, + 12.871138421049301 + ], + [ + 77.614534992987799, + 12.8711312784952 + ], + [ + 77.614728224264098, + 12.8711298341528 + ], + [ + 77.614970158953497, + 12.8711280255669 + ], + [ + 77.614985581391096, + 12.8711279104706 + ], + [ + 77.615156100150898, + 12.8715880851706 + ], + [ + 77.615277824584098, + 12.871616231351499 + ], + [ + 77.615218543507694, + 12.871948832413899 + ], + [ + 77.615206034217806, + 12.872018972853301 + ], + [ + 77.615209278204006, + 12.8723317518971 + ], + [ + 77.615227630917403, + 12.872436592000399 + ], + [ + 77.615247204828705, + 12.8725481956052 + ], + [ + 77.615340753800595, + 12.8730780246138 + ], + [ + 77.615266907736498, + 12.873504501623399 + ], + [ + 77.615131125696806, + 12.874285062649401 + ], + [ + 77.615007353066204, + 12.875224732727901 + ], + [ + 77.614990261977297, + 12.875352512370601 + ], + [ + 77.614968363556798, + 12.8756271468189 + ], + [ + 77.614919069189497, + 12.876256641585799 + ], + [ + 77.615454399071297, + 12.8762659844274 + ], + [ + 77.615536713361294, + 12.876267420879699 + ], + [ + 77.615595044080095, + 12.8762682774443 + ], + [ + 77.615628235014796, + 12.8762687653428 + ], + [ + 77.615708869783404, + 12.8762747356453 + ], + [ + 77.615719228071697, + 12.8762746321833 + ], + [ + 77.616018890589501, + 12.8762569582094 + ], + [ + 77.616164940298404, + 12.8762442063869 + ], + [ + 77.616195662854807, + 12.876241636866901 + ], + [ + 77.616256943605805, + 12.8762365115627 + ], + [ + 77.616513141681494, + 12.8761899099316 + ], + [ + 77.616564394021694, + 12.876180698142701 + ], + [ + 77.616194341906805, + 12.8762275738534 + ], + [ + 77.616564394022006, + 12.876180698142701 + ], + [ + 77.616799216628493, + 12.876138492400401 + ], + [ + 77.616927990634196, + 12.876124783513699 + ], + [ + 77.617084921901593, + 12.876108091384999 + ], + [ + 77.617084921902304, + 12.8761080913849 + ], + [ + 77.617478729686397, + 12.8760662032669 + ], + [ + 77.617499846561799, + 12.876063492428001 + ], + [ + 77.6175264341705, + 12.876060080054801 + ], + [ + 77.6175461522093, + 12.8760745636227 + ], + [ + 77.6175461522093, + 12.8760745636227 + ], + [ + 77.6175461522093, + 12.8760745636227 + ], + [ + 77.617511647077606, + 12.8759006211826 + ], + [ + 77.616914366689002, + 12.875976273567201 + ], + [ + 77.616794733024605, + 12.874505302701699 + ], + [ + 77.616606082338606, + 12.8728643678258 + ], + [ + 77.618130526623702, + 12.8726335894308 + ], + [ + 77.6189062823765, + 12.8725541254564 + ], + [ + 77.620132586905697, + 12.8724582008136 + ], + [ + 77.620317940197197, + 12.872480141138899 + ], + [ + 77.620632960058103, + 12.872557024925401 + ], + [ + 77.620972021228894, + 12.8726552207035 + ], + [ + 77.621355764656798, + 12.8726573569406 + ], + [ + 77.622376497044797, + 12.8727640644119 + ], + [ + 77.622376497044797, + 12.872622130653999 + ], + [ + 77.621950695717004, + 12.871971009484 + ], + [ + 77.623102133382204, + 12.8719639128515 + ], + [ + 77.62311810093, + 12.871910687692299 + ], + [ + 77.623538579687903, + 12.8719177843802 + ], + [ + 77.623543902203807, + 12.8720313313865 + ], + [ + 77.624494858382107, + 12.871960364507601 + ], + [ + 77.624477466454195, + 12.871649077505801 + ], + [ + 77.624458248969304, + 12.8711395892042 + ], + [ + 77.624447691789996, + 12.8705708547303 + ], + [ + 77.624524802229104, + 12.870282119499899 + ], + [ + 77.624723666857506, + 12.869819254594599 + ], + [ + 77.624905390124297, + 12.8693962847787 + ], + [ + 77.625119688696202, + 12.8687628902186 + ], + [ + 77.625143118156203, + 12.868127042299299 + ], + [ + 77.625328946809105, + 12.867489358869101 + ], + [ + 77.625411994577505, + 12.867184559281901 + ], + [ + 77.625497808224296, + 12.8660710485793 + ], + [ + 77.625450220535896, + 12.8655095114094 + ], + [ + 77.625357461240498, + 12.8646184994212 + ], + [ + 77.6254246581031, + 12.864167304995499 + ], + [ + 77.625457190925999, + 12.863783580925601 + ], + [ + 77.625480834475098, + 12.863715652132001 + ], + [ + 77.625661461638998, + 12.863746266683499 + ], + [ + 77.625614206786395, + 12.8632723274798 + ], + [ + 77.625582852959994, + 12.8628221202344 + ], + [ + 77.625643874270693, + 12.8624460746033 + ], + [ + 77.625578354335602, + 12.8621668615505 + ], + [ + 77.625583969288996, + 12.8609233208856 + ], + [ + 77.625776890295697, + 12.860408295009901 + ], + [ + 77.626061983394393, + 12.8599480922532 + ], + [ + 77.626235405744595, + 12.8593422472333 + ], + [ + 77.626436060700499, + 12.8585677528615 + ], + [ + 77.626477087705894, + 12.858276095922401 + ], + [ + 77.626444690678099, + 12.858003041224199 + ], + [ + 77.626448740484506, + 12.8580033367335 + ], + [ + 77.626377351369399, + 12.857541207371099 + ], + [ + 77.625504621265407, + 12.857650187599999 + ], + [ + 77.621118372609203, + 12.857940077546999 + ], + [ + 77.620267888410496, + 12.857947298125501 + ], + [ + 77.6191840964253, + 12.8579564940731 + ], + [ + 77.619016800376002, + 12.8578840841977 + ], + [ + 77.618987006471002, + 12.8576489022796 + ], + [ + 77.618904813818105, + 12.857630802728099 + ], + [ + 77.618905829564795, + 12.857596379323001 + ], + [ + 77.618056526527198, + 12.857430653334101 + ], + [ + 77.618055298469201, + 12.8574665460399 + ], + [ + 77.617290761380104, + 12.85748423205 + ], + [ + 77.617099058999301, + 12.857495634002699 + ], + [ + 77.6169485554977, + 12.8575178145142 + ], + [ + 77.616842134268197, + 12.8575334984764 + ], + [ + 77.616839397336193, + 12.857533901613801 + ], + [ + 77.616835393805601, + 12.857511067716301 + ], + [ + 77.616763688777397, + 12.857134006512 + ], + [ + 77.616760632885203, + 12.857117938851699 + ], + [ + 77.616493597420899, + 12.8557137233914 + ], + [ + 77.615901293337402, + 12.855433792946799 + ], + [ + 77.615544618827499, + 12.8552004272901 + ], + [ + 77.615488974666903, + 12.8551640555078 + ], + [ + 77.614956310431694, + 12.854728312548 + ], + [ + 77.614685075691995, + 12.8544958751036 + ], + [ + 77.614684481129899, + 12.8544953651733 + ], + [ + 77.614472966400299, + 12.854314104835 + ], + [ + 77.614358918083198, + 12.8542152782034 + ], + [ + 77.613703022413404, + 12.8531764504962 + ], + [ + 77.613245496022998, + 12.8526622537108 + ], + [ + 77.612745271809302, + 12.8517500994549 + ], + [ + 77.611555428628805, + 12.851424653854 + ], + [ + 77.609180603598304, + 12.851211927546 + ], + [ + 77.609099586841694, + 12.851268308768701 + ], + [ + 77.609099586841694, + 12.851268308768701 + ], + [ + 77.608951410814996, + 12.851270943431601 + ], + [ + 77.608957407352705, + 12.8518514682986 + ], + [ + 77.609260616210904, + 12.8538467717598 + ], + [ + 77.609534315446197, + 12.8548718917191 + ], + [ + 77.608450739392495, + 12.8546866633825 + ], + [ + 77.606825252365894, + 12.8543968598111 + ], + [ + 77.605803631298997, + 12.8540771449779 + ], + [ + 77.604769523151404, + 12.853886522151001 + ], + [ + 77.604589122342901, + 12.8538532674875 + ], + [ + 77.604607630507701, + 12.8541731235419 + ], + [ + 77.6047291707727, + 12.8542693284006 + ], + [ + 77.604821805119897, + 12.8548190541789 + ], + [ + 77.604891270665703, + 12.855146021210601 + ], + [ + 77.604891524476201, + 12.8555078065315 + ], + [ + 77.604861296046394, + 12.8559495334323 + ], + [ + 77.604895431004806, + 12.8563360115637 + ], + [ + 77.605011622040394, + 12.857033403675301 + ], + [ + 77.604968315745694, + 12.8571066464932 + ], + [ + 77.604851362969299, + 12.857908747250599 + ], + [ + 77.605002532665594, + 12.85795047805 + ], + [ + 77.605127443993894, + 12.857919656999499 + ], + [ + 77.605305115832394, + 12.857945196563699 + ], + [ + 77.605411467678707, + 12.858026054085 + ], + [ + 77.605396307243595, + 12.858242367147501 + ], + [ + 77.605238841224505, + 12.859725213265 + ], + [ + 77.6062413318826, + 12.859788062792299 + ], + [ + 77.606245854360196, + 12.860089582261301 + ], + [ + 77.606245756785299, + 12.8601042983481 + ], + [ + 77.605122605755199, + 12.860147316128 + ], + [ + 77.604554934644995, + 12.8601961885294 + ], + [ + 77.604152591213904, + 12.8601979097421 + ], + [ + 77.602687641836695, + 12.860267065901001 + ], + [ + 77.602645848130905, + 12.859812401131901 + ], + [ + 77.602224193269095, + 12.859852992744401 + ], + [ + 77.601474977015599, + 12.859876479191 + ], + [ + 77.601453686951899, + 12.8592537448281 + ], + [ + 77.600946273767306, + 12.8593034216433 + ], + [ + 77.600953370455102, + 12.8594737421529 + ], + [ + 77.6003054600003, + 12.859545508840499 + ], + [ + 77.599613201979693, + 12.8596570418742 + ], + [ + 77.599569022441003, + 12.8597625566315 + ], + [ + 77.599254292123604, + 12.8598367987794 + ], + [ + 77.599218892310205, + 12.859819660514299 + ], + [ + 77.599138195453506, + 12.8599780322138 + ], + [ + 77.598935553351296, + 12.860005070424499 + ], + [ + 77.596449611049295, + 12.860137808287799 + ], + [ + 77.596557104341102, + 12.860547429065701 + ], + [ + 77.5969916444365, + 12.8618582292863 + ], + [ + 77.5961010101054, + 12.8621811285856 + ], + [ + 77.595547634318393, + 12.8633995118107 + ], + [ + 77.595513696735296, + 12.863440704716901 + ], + [ + 77.595401639941599, + 12.8634816339352 + ], + [ + 77.595276809578607, + 12.8635620525259 + ], + [ + 77.595213271319395, + 12.8636976660282 + ], + [ + 77.5952122029219, + 12.8636937005669 + ], + [ + 77.595025565668095, + 12.863811594300801 + ], + [ + 77.595140097550697, + 12.8645749981238 + ], + [ + 77.596032781712495, + 12.864557056262001 + ], + [ + 77.596059306165799, + 12.8649655137752 + ], + [ + 77.596148251276105, + 12.865946471365801 + ], + [ + 77.595812312071104, + 12.866120170219901 + ], + [ + 77.595475166458996, + 12.8662330134777 + ], + [ + 77.595253614528204, + 12.8664232132853 + ], + [ + 77.595107217072197, + 12.8665358736719 + ], + [ + 77.594957282094299, + 12.8666991968988 + ], + [ + 77.594775579492605, + 12.866789737070301 + ], + [ + 77.593530219223197, + 12.867018229165399 + ], + [ + 77.593383237824199, + 12.866933218107301 + ], + [ + 77.593328148253903, + 12.866763107340301 + ], + [ + 77.593293180683801, + 12.866519984222 + ], + [ + 77.593272220317601, + 12.8662858241282 + ], + [ + 77.593082232286093, + 12.8663036319507 + ], + [ + 77.5929885399201, + 12.8662135424594 + ], + [ + 77.592391309659902, + 12.866321844546899 + ], + [ + 77.592076730592197, + 12.8664023202791 + ], + [ + 77.591911712776195, + 12.8663675457591 + ], + [ + 77.591572237696795, + 12.8652661887704 + ], + [ + 77.590594849774405, + 12.8623428384318 + ], + [ + 77.590891931907507, + 12.8622219720984 + ], + [ + 77.591128850783903, + 12.8622251649536 + ], + [ + 77.591187600550796, + 12.862236569325701 + ], + [ + 77.590852115958498, + 12.8610993987093 + ], + [ + 77.590186504504103, + 12.8613108296092 + ], + [ + 77.589794270591199, + 12.860124302799001 + ], + [ + 77.589554969807395, + 12.8595960042557 + ], + [ + 77.589153054512195, + 12.8588900343095 + ], + [ + 77.589040639427793, + 12.858618642925901 + ], + [ + 77.589033648948103, + 12.8585654168667 + ], + [ + 77.588985144192606, + 12.8581960952431 + ], + [ + 77.588861361155196, + 12.8572674724628 + ], + [ + 77.588850541059898, + 12.8571862990909 + ], + [ + 77.588796412150401, + 12.856408028130801 + ], + [ + 77.588379249050703, + 12.856411783523001 + ], + [ + 77.588371174074396, + 12.8565098368063 + ], + [ + 77.588325031352895, + 12.8565282938949 + ], + [ + 77.588010107278294, + 12.8566367292905 + ], + [ + 77.587748247333593, + 12.856687486284301 + ], + [ + 77.587622508417297, + 12.856687486284301 + ], + [ + 77.5875118803948, + 12.8566719953253 + ], + [ + 77.587371607368894, + 12.8566926773404 + ], + [ + 77.587138009841098, + 12.8567030594528 + ], + [ + 77.586982278155801, + 12.8567197861893 + ], + [ + 77.586986315643998, + 12.856737089709901 + ], + [ + 77.587068218974693, + 12.8572752291999 + ], + [ + 77.586593192964699, + 12.857363110713299 + ], + [ + 77.586537577676907, + 12.8573732824832 + ], + [ + 77.5863535813494, + 12.8564993310784 + ], + [ + 77.586240167496996, + 12.8560681186792 + ], + [ + 77.586081263575906, + 12.855726570561499 + ], + [ + 77.585657182606198, + 12.8557092388853 + ], + [ + 77.585651761164996, + 12.8557080790043 + ], + [ + 77.585400817278895, + 12.8556543972939 + ], + [ + 77.585153121020596, + 12.8556738099289 + ], + [ + 77.5850218322377, + 12.855761570227299 + ], + [ + 77.585009246925296, + 12.855891393646001 + ], + [ + 77.585160103363904, + 12.8564690029598 + ], + [ + 77.585315935672398, + 12.857305961658 + ], + [ + 77.585509604642098, + 12.8593462475378 + ], + [ + 77.585097171220596, + 12.859382170091701 + ], + [ + 77.584473927254805, + 12.8586476622056 + ], + [ + 77.584324028869602, + 12.8585035121902 + ], + [ + 77.584259065614503, + 12.8585007392922 + ], + [ + 77.584004650337803, + 12.8582279196273 + ], + [ + 77.583987850951004, + 12.8580632754334 + ], + [ + 77.583583339740898, + 12.858098758872799 + ], + [ + 77.582302387575496, + 12.858331175401499 + ], + [ + 77.582211062373702, + 12.858364479179899 + ], + [ + 77.582101154536105, + 12.858388884646301 + ], + [ + 77.581914089770905, + 12.8583520442655 + ], + [ + 77.581733078171098, + 12.858340173902601 + ], + [ + 77.581591482403994, + 12.8582983893536 + ], + [ + 77.581339310048804, + 12.8583303978924 + ], + [ + 77.581367105464693, + 12.858440482779599 + ], + [ + 77.581350435151407, + 12.858511185315299 + ], + [ + 77.581514342697801, + 12.8591182500112 + ], + [ + 77.581642088195906, + 12.8600442310566 + ], + [ + 77.581574423629803, + 12.860060825333401 + ], + [ + 77.581678914941705, + 12.8607538033485 + ], + [ + 77.581670430644706, + 12.8608312515943 + ], + [ + 77.581923403185499, + 12.8607997732936 + ], + [ + 77.582208676139899, + 12.8608220624814 + ], + [ + 77.583709028846101, + 12.8606136551038 + ], + [ + 77.583854378418906, + 12.860987411148299 + ], + [ + 77.583923654336999, + 12.8612027649979 + ], + [ + 77.583226743593997, + 12.861322953125899 + ], + [ + 77.583026340168701, + 12.862118532647701 + ], + [ + 77.583110296925298, + 12.8621330043841 + ], + [ + 77.583107104150798, + 12.8622018785734 + ], + [ + 77.5830383934655, + 12.862344065364701 + ], + [ + 77.583031311364905, + 12.862604208894 + ], + [ + 77.5829677557266, + 12.862773881988399 + ], + [ + 77.584495762248494, + 12.863075369298301 + ], + [ + 77.584288698974106, + 12.8638631738316 + ], + [ + 77.584536569535004, + 12.8640337284506 + ], + [ + 77.585700087280799, + 12.8648161034686 + ], + [ + 77.585913497367997, + 12.865903918129 + ], + [ + 77.585388623910404, + 12.8660261963411 + ], + [ + 77.585560505548202, + 12.866872915281499 + ], + [ + 77.585767464174907, + 12.866821909827999 + ], + [ + 77.585903841743004, + 12.867152756558999 + ], + [ + 77.586033669492195, + 12.867374466997999 + ], + [ + 77.586421754514902, + 12.8679030860457 + ], + [ + 77.586494571673398, + 12.8679364986585 + ], + [ + 77.586595806129694, + 12.867974311144399 + ], + [ + 77.586622857912602, + 12.868008514168499 + ], + [ + 77.587050941866096, + 12.868592016597299 + ], + [ + 77.587391472843507, + 12.8691757130944 + ], + [ + 77.587816441662397, + 12.869455943850999 + ], + [ + 77.588086561949495, + 12.8695624959882 + ], + [ + 77.588889426929796, + 12.8698429209201 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "323", + "group": "kothanur", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "56", + "ward_name": "56 - Kothanur", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಕೊತ್ತನೂರು", + "dig_ward_n": "kothanur", + "Assembly": "176 - Bangalore South", + "Slno": "56" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.588889426929796, + 12.8698429209201 + ], + [ + 77.588889426929796, + 12.8698429209201 + ], + [ + 77.588086561949495, + 12.8695624959882 + ], + [ + 77.587816441662397, + 12.869455943850999 + ], + [ + 77.587391472843507, + 12.8691757130944 + ], + [ + 77.587050941866096, + 12.868592016597299 + ], + [ + 77.586622857912602, + 12.868008514168499 + ], + [ + 77.586595806129694, + 12.867974311144399 + ], + [ + 77.586494571673398, + 12.8679364986585 + ], + [ + 77.586421754514902, + 12.8679030860457 + ], + [ + 77.586033669492195, + 12.867374466997999 + ], + [ + 77.585903841743004, + 12.867152756558999 + ], + [ + 77.585767464174907, + 12.866821909827999 + ], + [ + 77.585560505548202, + 12.866872915281499 + ], + [ + 77.585388623910404, + 12.8660261963411 + ], + [ + 77.585913497367997, + 12.865903918129 + ], + [ + 77.585700087280799, + 12.8648161034686 + ], + [ + 77.584536569535004, + 12.8640337284506 + ], + [ + 77.584288698974106, + 12.8638631738316 + ], + [ + 77.584495762248494, + 12.863075369298301 + ], + [ + 77.5829677557266, + 12.862773881988399 + ], + [ + 77.583031311364905, + 12.862604208894 + ], + [ + 77.5830383934655, + 12.862344065364701 + ], + [ + 77.583107104150798, + 12.8622018785734 + ], + [ + 77.583110296925298, + 12.8621330043841 + ], + [ + 77.583026340168701, + 12.862118532647701 + ], + [ + 77.583226743593997, + 12.861322953125899 + ], + [ + 77.583923654336999, + 12.8612027649979 + ], + [ + 77.583854378418906, + 12.860987411148299 + ], + [ + 77.583709028846101, + 12.8606136551038 + ], + [ + 77.582208676139899, + 12.8608220624814 + ], + [ + 77.581923403185499, + 12.8607997732936 + ], + [ + 77.581670430644706, + 12.8608312515943 + ], + [ + 77.581678914941705, + 12.8607538033485 + ], + [ + 77.581574423629803, + 12.860060825333401 + ], + [ + 77.581642088195906, + 12.8600442310566 + ], + [ + 77.581514342697801, + 12.8591182500112 + ], + [ + 77.581350435151407, + 12.858511185315299 + ], + [ + 77.581367105464693, + 12.858440482779599 + ], + [ + 77.581339310048804, + 12.8583303978924 + ], + [ + 77.580601819777598, + 12.8583560480989 + ], + [ + 77.580061936285901, + 12.858374825462599 + ], + [ + 77.579999208297593, + 12.858400113962899 + ], + [ + 77.579920711407098, + 12.858368811700601 + ], + [ + 77.579651787485503, + 12.858430736673499 + ], + [ + 77.579306651554106, + 12.8585079156624 + ], + [ + 77.577798146215898, + 12.858728724928699 + ], + [ + 77.577830446120998, + 12.859619279454501 + ], + [ + 77.5768245347912, + 12.860002264043301 + ], + [ + 77.576554599870207, + 12.8587933247388 + ], + [ + 77.575680195296897, + 12.8590101955301 + ], + [ + 77.575716798254206, + 12.859210245194101 + ], + [ + 77.575700959521598, + 12.8592086092327 + ], + [ + 77.574054384223899, + 12.859452056456799 + ], + [ + 77.573984658646594, + 12.8594677698969 + ], + [ + 77.573354378583304, + 12.859606769620701 + ], + [ + 77.572701682621002, + 12.8597773182758 + ], + [ + 77.572376376434093, + 12.859964196298099 + ], + [ + 77.571441986322796, + 12.860349488022999 + ], + [ + 77.571349700879694, + 12.860282581076699 + ], + [ + 77.570934416385796, + 12.860457923418601 + ], + [ + 77.571208965579004, + 12.8612331211406 + ], + [ + 77.571271258253105, + 12.8623359321855 + ], + [ + 77.571617328664701, + 12.862303632280399 + ], + [ + 77.571666481189695, + 12.8629658127618 + ], + [ + 77.571692273791996, + 12.863282835118801 + ], + [ + 77.571695375821093, + 12.863323655315 + ], + [ + 77.571709642876797, + 12.863511400590101 + ], + [ + 77.571673097850294, + 12.863615058384701 + ], + [ + 77.571215606642994, + 12.8637376026849 + ], + [ + 77.5704575571432, + 12.8638852311986 + ], + [ + 77.569333263948195, + 12.864006298705499 + ], + [ + 77.569264049865893, + 12.8636879139268 + ], + [ + 77.569162535878505, + 12.863406443325401 + ], + [ + 77.568178600551406, + 12.863690730788299 + ], + [ + 77.566973063741003, + 12.863717906695801 + ], + [ + 77.566936149563801, + 12.8635933213477 + ], + [ + 77.566840980200595, + 12.863539103649799 + ], + [ + 77.5667683054142, + 12.863532759025601 + ], + [ + 77.566462609883899, + 12.862824468249899 + ], + [ + 77.566197289235006, + 12.862228073573901 + ], + [ + 77.566084239567203, + 12.861966213629101 + ], + [ + 77.565970036331393, + 12.862044656255801 + ], + [ + 77.565300966869003, + 12.8623122840407 + ], + [ + 77.565054103308697, + 12.862371116010699 + ], + [ + 77.564778400547397, + 12.862364194602501 + ], + [ + 77.564597290365398, + 12.862425333708501 + ], + [ + 77.564419640887394, + 12.862553379760801 + ], + [ + 77.564677146018099, + 12.862808689887901 + ], + [ + 77.564955202690697, + 12.863199191986901 + ], + [ + 77.565215305241495, + 12.8636209438121 + ], + [ + 77.565509998462304, + 12.864149925205901 + ], + [ + 77.565672386024005, + 12.8645457411665 + ], + [ + 77.565702829704406, + 12.864844244140899 + ], + [ + 77.565710037859205, + 12.865253530816901 + ], + [ + 77.565521042984599, + 12.865835053713401 + ], + [ + 77.565431875990001, + 12.866051063634 + ], + [ + 77.565183502929699, + 12.866483768110699 + ], + [ + 77.565221928748898, + 12.8666686480985 + ], + [ + 77.565801766482394, + 12.867771878083699 + ], + [ + 77.566119920694206, + 12.8686736738589 + ], + [ + 77.566248008573695, + 12.869062242965301 + ], + [ + 77.5662682484855, + 12.869341925837301 + ], + [ + 77.566217303683203, + 12.869463592844999 + ], + [ + 77.566474128313502, + 12.8694036220603 + ], + [ + 77.566555351235095, + 12.869408515094101 + ], + [ + 77.566847070654802, + 12.869359010566599 + ], + [ + 77.567327095061898, + 12.8691256243666 + ], + [ + 77.567434279939306, + 12.869060861402501 + ], + [ + 77.567565675242307, + 12.8689822084414 + ], + [ + 77.567789089014695, + 12.8688298391589 + ], + [ + 77.568024092098298, + 12.8686751114146 + ], + [ + 77.5680240742915, + 12.868675080871499 + ], + [ + 77.568247846553206, + 12.868557977300499 + ], + [ + 77.568441668654401, + 12.8684605084959 + ], + [ + 77.568808395124293, + 12.868261224692899 + ], + [ + 77.569081178081802, + 12.868174358668099 + ], + [ + 77.569760850221002, + 12.867960628091801 + ], + [ + 77.569880577714002, + 12.8683303523534 + ], + [ + 77.571111626177498, + 12.8680185846294 + ], + [ + 77.572208150376298, + 12.8678990718312 + ], + [ + 77.573202275304794, + 12.867533014509499 + ], + [ + 77.573496764590402, + 12.867461078195401 + ], + [ + 77.573744045669997, + 12.867422862028601 + ], + [ + 77.573950908983804, + 12.868058897764101 + ], + [ + 77.5739383571578, + 12.8680619799949 + ], + [ + 77.573985220856898, + 12.868294615100099 + ], + [ + 77.574080573262407, + 12.868888706925 + ], + [ + 77.574218890719294, + 12.869431747880199 + ], + [ + 77.574322397511096, + 12.869745310929501 + ], + [ + 77.574366141543905, + 12.869884252003599 + ], + [ + 77.5746750648659, + 12.869816366330699 + ], + [ + 77.575087257440401, + 12.8696979745181 + ], + [ + 77.575240908390001, + 12.870657834691199 + ], + [ + 77.5753346511259, + 12.8708156289341 + ], + [ + 77.575604247406204, + 12.870871002393301 + ], + [ + 77.575861098412801, + 12.870813866567 + ], + [ + 77.576031289031903, + 12.8707871633473 + ], + [ + 77.576053975813096, + 12.870842067053299 + ], + [ + 77.579185965728698, + 12.871065584581199 + ], + [ + 77.579126463789706, + 12.8718238902278 + ], + [ + 77.579235566438896, + 12.8717496473287 + ], + [ + 77.579351222956902, + 12.8717425331889 + ], + [ + 77.579421384569798, + 12.871753794108701 + ], + [ + 77.579500680914705, + 12.8717649650632 + ], + [ + 77.579537895894106, + 12.8718303345231 + ], + [ + 77.579646066290593, + 12.8719846437338 + ], + [ + 77.579680012007003, + 12.8722041258905 + ], + [ + 77.579845139973997, + 12.8725893234498 + ], + [ + 77.580053794251796, + 12.8729217571252 + ], + [ + 77.580264237297001, + 12.8733156095964 + ], + [ + 77.580339048880305, + 12.8736004394546 + ], + [ + 77.580386919435, + 12.8737455955605 + ], + [ + 77.580438776078196, + 12.873827000265001 + ], + [ + 77.580596439122502, + 12.8739358054353 + ], + [ + 77.580715379813796, + 12.874102322823401 + ], + [ + 77.5809964632072, + 12.874070868709101 + ], + [ + 77.581151341405203, + 12.874107821388399 + ], + [ + 77.581269003218694, + 12.8745003114374 + ], + [ + 77.581436228978006, + 12.874523693054799 + ], + [ + 77.581448982604201, + 12.874749972719901 + ], + [ + 77.581510772163995, + 12.8750446602296 + ], + [ + 77.581517252274395, + 12.8752599504035 + ], + [ + 77.581370418742097, + 12.875344634509601 + ], + [ + 77.581137362174502, + 12.8753475003486 + ], + [ + 77.579807116645895, + 12.874993124648601 + ], + [ + 77.579585626153403, + 12.8749930308275 + ], + [ + 77.5793820024643, + 12.875046567518501 + ], + [ + 77.579247580389705, + 12.875139200276699 + ], + [ + 77.579217755513795, + 12.875156810409701 + ], + [ + 77.579104610582206, + 12.875223615356999 + ], + [ + 77.579012062535995, + 12.875274331183901 + ], + [ + 77.578848029466101, + 12.875367257173 + ], + [ + 77.578726167703806, + 12.8754473128947 + ], + [ + 77.578528739163701, + 12.875628045288099 + ], + [ + 77.578408389477403, + 12.875717235869001 + ], + [ + 77.578337328741199, + 12.875800945374399 + ], + [ + 77.578227214168706, + 12.8758528688307 + ], + [ + 77.578168962917502, + 12.875939908855599 + ], + [ + 77.578159543441998, + 12.876152754846901 + ], + [ + 77.577408612007005, + 12.876089607867801 + ], + [ + 77.577348611292294, + 12.876232413199199 + ], + [ + 77.577259727133907, + 12.8763857422498 + ], + [ + 77.577215183922704, + 12.876565940168099 + ], + [ + 77.577147154936895, + 12.876944332278001 + ], + [ + 77.577151241939504, + 12.877117225302401 + ], + [ + 77.577027897294897, + 12.8773027496133 + ], + [ + 77.576557265753394, + 12.878001389425201 + ], + [ + 77.576439286242106, + 12.8784849432444 + ], + [ + 77.576459845952698, + 12.878907972472399 + ], + [ + 77.576350070074, + 12.8799671315165 + ], + [ + 77.576171282036398, + 12.880401224141 + ], + [ + 77.576065122687993, + 12.8806798722576 + ], + [ + 77.575808131078006, + 12.881404852794599 + ], + [ + 77.576375225022701, + 12.881335276832401 + ], + [ + 77.576380601963095, + 12.8814788597416 + ], + [ + 77.576439683841997, + 12.8819265395502 + ], + [ + 77.576507065647704, + 12.881938391266299 + ], + [ + 77.577110794939102, + 12.8818937659772 + ], + [ + 77.577696967595998, + 12.8818333841577 + ], + [ + 77.5784919390873, + 12.8817533110914 + ], + [ + 77.578585622823795, + 12.881765295895899 + ], + [ + 77.578821154958902, + 12.881781621153999 + ], + [ + 77.579017719518802, + 12.881847092879701 + ], + [ + 77.579157638234307, + 12.8815201446569 + ], + [ + 77.579323236747399, + 12.881131271248201 + ], + [ + 77.579391698304093, + 12.8809642265402 + ], + [ + 77.579450402749103, + 12.880986595748301 + ], + [ + 77.579485484487094, + 12.8809862500887 + ], + [ + 77.579512476362694, + 12.8809572996238 + ], + [ + 77.579544239518498, + 12.8808231253033 + ], + [ + 77.579618437630202, + 12.880835780613101 + ], + [ + 77.579672694278699, + 12.8799405340233 + ], + [ + 77.579769593994001, + 12.8797432738887 + ], + [ + 77.579811122443303, + 12.879593310043701 + ], + [ + 77.579799586763002, + 12.879154954189 + ], + [ + 77.579573487427396, + 12.879143418508599 + ], + [ + 77.579580834366098, + 12.878876038597801 + ], + [ + 77.579534266113995, + 12.878347456561899 + ], + [ + 77.581465339010805, + 12.8783059281125 + ], + [ + 77.581384589248103, + 12.879180332685801 + ], + [ + 77.581672981257796, + 12.879197636206399 + ], + [ + 77.581694899050504, + 12.8790511330655 + ], + [ + 77.582397421986002, + 12.879075357994299 + ], + [ + 77.582843852817007, + 12.879154954189 + ], + [ + 77.584142770428599, + 12.879180332685801 + ], + [ + 77.584203362071506, + 12.879504311470001 + ], + [ + 77.584214182834401, + 12.879561573504001 + ], + [ + 77.584203629778401, + 12.8798155352116 + ], + [ + 77.584168528240497, + 12.8799564353188 + ], + [ + 77.584068421511105, + 12.880315979524299 + ], + [ + 77.584025106488596, + 12.8806142177579 + ], + [ + 77.585182135231406, + 12.8806834318402 + ], + [ + 77.585317102692002, + 12.880684585408201 + ], + [ + 77.585287109923001, + 12.880254304529799 + ], + [ + 77.585944776382902, + 12.8803825891495 + ], + [ + 77.585944423231197, + 12.8803812880631 + ], + [ + 77.585938721048095, + 12.880255371618301 + ], + [ + 77.585837061835093, + 12.879608585653401 + ], + [ + 77.585721850264093, + 12.8788280716839 + ], + [ + 77.590613472043202, + 12.8813575832087 + ], + [ + 77.590612649855402, + 12.8813271267258 + ], + [ + 77.590611877008797, + 12.8813079362314 + ], + [ + 77.590572264812707, + 12.8810937607466 + ], + [ + 77.590552194229602, + 12.8809889342186 + ], + [ + 77.590380765973507, + 12.880157205110701 + ], + [ + 77.590230625316494, + 12.8793806008893 + ], + [ + 77.590192327498201, + 12.8791822224473 + ], + [ + 77.589855919633493, + 12.8784255291457 + ], + [ + 77.589658976427103, + 12.8779667212149 + ], + [ + 77.589615381559994, + 12.8778772137236 + ], + [ + 77.589602304886895, + 12.8778503644373 + ], + [ + 77.589595479170299, + 12.8778363499772 + ], + [ + 77.589610418343, + 12.877833943627699 + ], + [ + 77.589607519925906, + 12.8777703518473 + ], + [ + 77.589605668711101, + 12.8777297224546 + ], + [ + 77.589601952398098, + 12.877648187352399 + ], + [ + 77.589598282276597, + 12.8775676519037 + ], + [ + 77.589591148896503, + 12.8774111178551 + ], + [ + 77.589591738071107, + 12.877260703245099 + ], + [ + 77.589591830117499, + 12.8772372164337 + ], + [ + 77.589592002331301, + 12.877193388716501 + ], + [ + 77.589593045767202, + 12.8769272846536 + ], + [ + 77.589240349369803, + 12.8765180146292 + ], + [ + 77.589174246026403, + 12.8764413078675 + ], + [ + 77.588771451015504, + 12.876168610417199 + ], + [ + 77.588694971704598, + 12.876116810078001 + ], + [ + 77.588597510809095, + 12.8760507985941 + ], + [ + 77.586243995469005, + 12.874456709404001 + ], + [ + 77.586083150458407, + 12.874035975618201 + ], + [ + 77.586083135716294, + 12.874035937056 + ], + [ + 77.586784582351399, + 12.873631494689 + ], + [ + 77.5870737722462, + 12.8733779326353 + ], + [ + 77.587295176284101, + 12.873192798263601 + ], + [ + 77.587558511827197, + 12.8730558096885 + ], + [ + 77.587967358707402, + 12.872909478175 + ], + [ + 77.588662620062095, + 12.872688040308599 + ], + [ + 77.588834251732095, + 12.872645692697599 + ], + [ + 77.588834266626506, + 12.872645689022599 + ], + [ + 77.5888330809168, + 12.8726423128274 + ], + [ + 77.588822455905202, + 12.8726164438292 + ], + [ + 77.588810622000395, + 12.872584940254701 + ], + [ + 77.588804083211599, + 12.8725646773942 + ], + [ + 77.588798648979505, + 12.8725398863991 + ], + [ + 77.588794917955298, + 12.872512819962299 + ], + [ + 77.588793431587405, + 12.8724801016544 + ], + [ + 77.588793430822903, + 12.8724800848267 + ], + [ + 77.588795673726594, + 12.8723061497563 + ], + [ + 77.588805532606798, + 12.872089225845899 + ], + [ + 77.588805980548102, + 12.8720767990686 + ], + [ + 77.588807667978301, + 12.872016929249501 + ], + [ + 77.588847690780895, + 12.871150357106499 + ], + [ + 77.588872880238796, + 12.870464620280201 + ], + [ + 77.588878788868598, + 12.870367441694601 + ], + [ + 77.588889426929796, + 12.8698429209201 + ], + [ + 77.588889426929796, + 12.8698429209201 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "337", + "group": "hulimavu", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "53", + "ward_name": "53 - Hulimavu", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಹುಳಿಮಾವು", + "dig_ward_n": "hulimavu", + "Assembly": "175 - Bommanahalli", + "Slno": "53" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.596367281886202, + 12.8719476431882 + ], + [ + 77.596347646769303, + 12.8720258758035 + ], + [ + 77.596297901551097, + 12.8721133248215 + ], + [ + 77.596284979886605, + 12.872143943949499 + ], + [ + 77.596237774853293, + 12.8723104186867 + ], + [ + 77.596172079501102, + 12.872525636520599 + ], + [ + 77.596153153272994, + 12.8725879355197 + ], + [ + 77.596126112450506, + 12.8726446684483 + ], + [ + 77.596106930431901, + 12.8726821254123 + ], + [ + 77.596092189334101, + 12.872703728182 + ], + [ + 77.596058678901201, + 12.872746973642601 + ], + [ + 77.596022140013503, + 12.8727755682314 + ], + [ + 77.595985554614401, + 12.8727996460825 + ], + [ + 77.595848280830396, + 12.8728823160007 + ], + [ + 77.595772197770003, + 12.8729271126246 + ], + [ + 77.595699210307899, + 12.8729538921248 + ], + [ + 77.595680460957297, + 12.8729607713604 + ], + [ + 77.595601797007504, + 12.872978490342501 + ], + [ + 77.595526516072795, + 12.8729893999867 + ], + [ + 77.594799311447403, + 12.8730700091667 + ], + [ + 77.594675714767604, + 12.873083655790801 + ], + [ + 77.594600422089698, + 12.873093435997299 + ], + [ + 77.594414192852696, + 12.8731167372898 + ], + [ + 77.594300187275806, + 12.873137789106799 + ], + [ + 77.594282060087394, + 12.8731411361023 + ], + [ + 77.594276896902201, + 12.873142089604301 + ], + [ + 77.594494036263399, + 12.8737052674393 + ], + [ + 77.594733750773798, + 12.8744826544375 + ], + [ + 77.594746087420006, + 12.874522663012799 + ], + [ + 77.594826651848095, + 12.874775242642301 + ], + [ + 77.5949462187682, + 12.875503116567801 + ], + [ + 77.5951097357447, + 12.876476760963699 + ], + [ + 77.595118375993195, + 12.8765349833175 + ], + [ + 77.595230165644793, + 12.877288287924699 + ], + [ + 77.595255600382899, + 12.8774869135357 + ], + [ + 77.595408918733099, + 12.8781795522971 + ], + [ + 77.595498984152897, + 12.8785974496077 + ], + [ + 77.595677506694997, + 12.879466151383401 + ], + [ + 77.595692036192403, + 12.879566303501701 + ], + [ + 77.595790806449898, + 12.880247151283299 + ], + [ + 77.595882981589995, + 12.8808696416339 + ], + [ + 77.5959121202131, + 12.8812384227215 + ], + [ + 77.595955194678695, + 12.881257118672799 + ], + [ + 77.596023812979098, + 12.881619601546401 + ], + [ + 77.596068556069199, + 12.8816202454656 + ], + [ + 77.596280564062496, + 12.881621578849201 + ], + [ + 77.596732581104803, + 12.8816095783968 + ], + [ + 77.596960589701297, + 12.881545575983701 + ], + [ + 77.597377938769895, + 12.881370902731399 + ], + [ + 77.597868623936705, + 12.8811708951906 + ], + [ + 77.598276639320005, + 12.8810268897612 + ], + [ + 77.598283869226094, + 12.8810243218081 + ], + [ + 77.598795325542497, + 12.8809388864432 + ], + [ + 77.599415348919095, + 12.880892218016999 + ], + [ + 77.599432420201197, + 12.8808902018884 + ], + [ + 77.599634023830404, + 12.880872217263001 + ], + [ + 77.599995907243894, + 12.8808246474599 + ], + [ + 77.600103374859501, + 12.8808135483843 + ], + [ + 77.600735692562395, + 12.8807508734116 + ], + [ + 77.600752732675403, + 12.8807502126631 + ], + [ + 77.601079083941698, + 12.8807176791946 + ], + [ + 77.601113803886903, + 12.881146700952399 + ], + [ + 77.601169206983798, + 12.881787300322999 + ], + [ + 77.601224116917706, + 12.8822915951278 + ], + [ + 77.601270752206105, + 12.882671618438501 + ], + [ + 77.601874774979393, + 12.882610282792699 + ], + [ + 77.602058781916895, + 12.8825916154222 + ], + [ + 77.602304791192196, + 12.8825716146681 + ], + [ + 77.602318125028205, + 12.882500945337 + ], + [ + 77.602300662705701, + 12.8821477153621 + ], + [ + 77.602478797752696, + 12.8820895964947 + ], + [ + 77.603110154889904, + 12.8818862554949 + ], + [ + 77.603347326180497, + 12.8818154638256 + ], + [ + 77.603358164240504, + 12.881811586013001 + ], + [ + 77.603766179623804, + 12.881654246747599 + ], + [ + 77.604272865393895, + 12.881478240111599 + ], + [ + 77.604702214914894, + 12.8814062373969 + ], + [ + 77.605178091182793, + 12.881349583520301 + ], + [ + 77.605234234973395, + 12.8815809106493 + ], + [ + 77.605459848004003, + 12.881543087867801 + ], + [ + 77.605741556123505, + 12.881454232018701 + ], + [ + 77.605891542421006, + 12.881468276265799 + ], + [ + 77.606118844199898, + 12.881419401849 + ], + [ + 77.606537494539296, + 12.881292292967901 + ], + [ + 77.606570603086297, + 12.881282240581299 + ], + [ + 77.607064318134405, + 12.881187927900299 + ], + [ + 77.607096971870305, + 12.8811648949644 + ], + [ + 77.607314313398007, + 12.8811595614299 + ], + [ + 77.6073943164144, + 12.881152894511899 + ], + [ + 77.607891668499207, + 12.881110226236499 + ], + [ + 77.608377020131599, + 12.8810568908923 + ], + [ + 77.609102873098195, + 12.880984278408601 + ], + [ + 77.609561463036499, + 12.8809424184882 + ], + [ + 77.609561076897705, + 12.880905133275601 + ], + [ + 77.609995102488796, + 12.8808925889448 + ], + [ + 77.610033879237704, + 12.8804210151199 + ], + [ + 77.609992682299094, + 12.879972044648699 + ], + [ + 77.609959067255602, + 12.8797551582584 + ], + [ + 77.609907448525703, + 12.879476004459599 + ], + [ + 77.609760041695495, + 12.8789646789979 + ], + [ + 77.609758343440603, + 12.8789587893017 + ], + [ + 77.609699762845693, + 12.878713169613199 + ], + [ + 77.609554728539393, + 12.8783536750244 + ], + [ + 77.609470190428695, + 12.8780931715156 + ], + [ + 77.609426376725395, + 12.877958159599601 + ], + [ + 77.609141827412301, + 12.8773012633989 + ], + [ + 77.608924564023795, + 12.876789507214101 + ], + [ + 77.608911715574195, + 12.876725095959401 + ], + [ + 77.608774139810293, + 12.876702076613499 + ], + [ + 77.608426051198407, + 12.876685465288899 + ], + [ + 77.608289683505504, + 12.876633390781199 + ], + [ + 77.607742996227302, + 12.8765600546829 + ], + [ + 77.607406983558704, + 12.8765133862567 + ], + [ + 77.607170974660505, + 12.8765187197911 + ], + [ + 77.607168096759196, + 12.876421829212701 + ], + [ + 77.607092305027706, + 12.8759320310047 + ], + [ + 77.607094971794893, + 12.875829360467099 + ], + [ + 77.607177196217407, + 12.8756272801851 + ], + [ + 77.606859186306707, + 12.8755255019007 + ], + [ + 77.606254741849398, + 12.875371112107301 + ], + [ + 77.606244954831098, + 12.8753355637925 + ], + [ + 77.606240581526905, + 12.875256035276299 + ], + [ + 77.605745046666797, + 12.875300250356201 + ], + [ + 77.605054807087399, + 12.8753768149724 + ], + [ + 77.604381683700197, + 12.8754848885453 + ], + [ + 77.604355535177405, + 12.8753433421429 + ], + [ + 77.6043262007381, + 12.8751933364873 + ], + [ + 77.604327169265204, + 12.8748340709872 + ], + [ + 77.604184016761593, + 12.874355211643101 + ], + [ + 77.604234848288698, + 12.874149413856101 + ], + [ + 77.604114851549795, + 12.874036555616501 + ], + [ + 77.6037661784774, + 12.8742934694785 + ], + [ + 77.603554047414306, + 12.8744692598847 + ], + [ + 77.603191411574301, + 12.874545026863601 + ], + [ + 77.602905604376303, + 12.874385660931599 + ], + [ + 77.602627518054604, + 12.873366357495399 + ], + [ + 77.602556169539696, + 12.873110343697199 + ], + [ + 77.602398720091401, + 12.872443568609601 + ], + [ + 77.602264173902597, + 12.8718712231375 + ], + [ + 77.602179625667702, + 12.8717695059542 + ], + [ + 77.601523591522295, + 12.8718004035837 + ], + [ + 77.600846015151504, + 12.8718688018824 + ], + [ + 77.600744902862402, + 12.871875133287601 + ], + [ + 77.600328866955905, + 12.871901186068801 + ], + [ + 77.599769203463794, + 12.8719453211837 + ], + [ + 77.599357849266497, + 12.8719380361541 + ], + [ + 77.598731123839997, + 12.871926936136701 + ], + [ + 77.597569134848001, + 12.8719420464185 + ], + [ + 77.596583498960399, + 12.8719557053565 + ], + [ + 77.596367281886202, + 12.8719476431882 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "324", + "group": "uttarahalli", + "Corporatio": "South", + "ac_no": "176", + "ac": "Bangalore South", + "corporat_1": "4", + "ward_id": "67", + "ward_name": "67 - Uttarahalli", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೆಂಗಳೂರು ದಕ್ಷಿಣ", + "ward_name_": "ಉತ್ತರಹಳ್ಳಿ", + "dig_ward_n": "uttarahalli", + "Assembly": "176 - Bangalore South", + "Slno": "67" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.549115065308001, + 12.9074246697283 + ], + [ + 77.549116254559195, + 12.907424054254999 + ], + [ + 77.549071363191302, + 12.9073245224986 + ], + [ + 77.549066450034204, + 12.9073136904513 + ], + [ + 77.5489341781403, + 12.907022069869001 + ], + [ + 77.548888977444093, + 12.9069184503148 + ], + [ + 77.548846370687698, + 12.906820775556399 + ], + [ + 77.548804441425801, + 12.9067161564501 + ], + [ + 77.548802499312401, + 12.9067111396195 + ], + [ + 77.548796166112297, + 12.9066947798153 + ], + [ + 77.548786689614801, + 12.906670340922 + ], + [ + 77.548777843027494, + 12.906647526495099 + ], + [ + 77.548777656845701, + 12.9066469672577 + ], + [ + 77.548716096305995, + 12.906461788582201 + ], + [ + 77.548691213205004, + 12.9063920125439 + ], + [ + 77.548687668287599, + 12.9063830124433 + ], + [ + 77.548649745223003, + 12.9062760955428 + ], + [ + 77.548591577975301, + 12.906102745332401 + ], + [ + 77.548582704261605, + 12.906079115850201 + ], + [ + 77.548580931808004, + 12.9060746157983 + ], + [ + 77.548525341561401, + 12.905928344451301 + ], + [ + 77.548450082815293, + 12.905715634142901 + ], + [ + 77.5484465379201, + 12.9057066340352 + ], + [ + 77.548428192118394, + 12.9056571222154 + ], + [ + 77.5484014681129, + 12.905576070723001 + ], + [ + 77.548371568832593, + 12.9054656874856 + ], + [ + 77.548353386702104, + 12.905375518008301 + ], + [ + 77.548350360162999, + 12.9053608661693 + ], + [ + 77.548323262091102, + 12.905186083520601 + ], + [ + 77.548306783804193, + 12.905093638748101 + ], + [ + 77.548305586922496, + 12.9050891330797 + ], + [ + 77.548297707681499, + 12.904993216451899 + ], + [ + 77.548296723690697, + 12.9048961032543 + ], + [ + 77.548295555609798, + 12.9048801245173 + ], + [ + 77.548290041352502, + 12.9048046922923 + ], + [ + 77.548289431471403, + 12.9048013102345 + ], + [ + 77.548252011387106, + 12.904573549460199 + ], + [ + 77.548247433320199, + 12.904519386024299 + ], + [ + 77.548252149833402, + 12.9043370581623 + ], + [ + 77.548252810386998, + 12.9043115359814 + ], + [ + 77.548273761779299, + 12.904106922092399 + ], + [ + 77.548301942957593, + 12.9038350641313 + ], + [ + 77.548304699115306, + 12.903808476048701 + ], + [ + 77.548310522416699, + 12.903644665716101 + ], + [ + 77.548325972367095, + 12.903610341454501 + ], + [ + 77.548397720174293, + 12.903450943395599 + ], + [ + 77.548397846467196, + 12.903450662817701 + ], + [ + 77.548398340949305, + 12.903449563896899 + ], + [ + 77.548404364406693, + 12.9034533608878 + ], + [ + 77.548502035250095, + 12.903514929359799 + ], + [ + 77.548514782269805, + 12.9035229646544 + ], + [ + 77.548538726647905, + 12.9035521386166 + ], + [ + 77.548597540604305, + 12.903623797821 + ], + [ + 77.548685318798107, + 12.903708771314699 + ], + [ + 77.548706451008798, + 12.9037201063942 + ], + [ + 77.548883832247199, + 12.903815251573 + ], + [ + 77.549090346377795, + 12.9039160069476 + ], + [ + 77.549089344046607, + 12.9039306980684 + ], + [ + 77.549088814270206, + 12.903935220572301 + ], + [ + 77.549083893784299, + 12.9040169567636 + ], + [ + 77.549072556205303, + 12.90420529002 + ], + [ + 77.549074856868401, + 12.9042048750822 + ], + [ + 77.5497130081813, + 12.904089780036299 + ], + [ + 77.550317054290005, + 12.903980834618901 + ], + [ + 77.550329108862698, + 12.904147858312101 + ], + [ + 77.550160347810007, + 12.9043076116875 + ], + [ + 77.550171784053603, + 12.9044136574335 + ], + [ + 77.550250102226698, + 12.9044738772276 + ], + [ + 77.550382101102699, + 12.904455996729601 + ], + [ + 77.550492677110697, + 12.9044410181099 + ], + [ + 77.550887917246598, + 12.9043521700555 + ], + [ + 77.550891817023597, + 12.904351293401501 + ], + [ + 77.550964654772699, + 12.9042116745537 + ], + [ + 77.550979465665506, + 12.904145415167401 + ], + [ + 77.551030179289398, + 12.9039185378348 + ], + [ + 77.551462571085494, + 12.903645536034301 + ], + [ + 77.551828510446597, + 12.903574203581799 + ], + [ + 77.552181544944006, + 12.903762742975299 + ], + [ + 77.552318386243897, + 12.903804321320701 + ], + [ + 77.552420407957896, + 12.903818006337501 + ], + [ + 77.552532021815594, + 12.903755932423399 + ], + [ + 77.552609343159403, + 12.903717909346399 + ], + [ + 77.552798690778502, + 12.9036584641432 + ], + [ + 77.552961333686994, + 12.903576693037699 + ], + [ + 77.553034350950995, + 12.903511607949 + ], + [ + 77.553166301192206, + 12.903525000348701 + ], + [ + 77.553235484385596, + 12.903479151294301 + ], + [ + 77.553228901148003, + 12.903454370321899 + ], + [ + 77.553334301740804, + 12.903399466184799 + ], + [ + 77.553405762328097, + 12.9033622409712 + ], + [ + 77.553432167119794, + 12.903348486193099 + ], + [ + 77.553522466862105, + 12.903340250763 + ], + [ + 77.553757454511697, + 12.903318819499701 + ], + [ + 77.553775902918602, + 12.9033171367878 + ], + [ + 77.553791376575504, + 12.9033157252682 + ], + [ + 77.553792739271799, + 12.9033156008277 + ], + [ + 77.554226486378596, + 12.903289905217299 + ], + [ + 77.554452774498003, + 12.9033168250662 + ], + [ + 77.554621254300599, + 12.903336866988299 + ], + [ + 77.554662682262503, + 12.9033456258299 + ], + [ + 77.554910639944296, + 12.9033980497362 + ], + [ + 77.554963324002301, + 12.9034091894278 + ], + [ + 77.555019603588093, + 12.903391955919799 + ], + [ + 77.555126079305495, + 12.9033593525585 + ], + [ + 77.555454139402599, + 12.9032589015399 + ], + [ + 77.555523374330605, + 12.9032377019529 + ], + [ + 77.555715461018295, + 12.903179585036099 + ], + [ + 77.555965666312702, + 12.903103883846001 + ], + [ + 77.556022713543101, + 12.903086623665899 + ], + [ + 77.556105824197999, + 12.9030614779457 + ], + [ + 77.556233286193304, + 12.9030297395531 + ], + [ + 77.556346902296696, + 12.9029382821079 + ], + [ + 77.556227476093596, + 12.9025712889516 + ], + [ + 77.556239528169002, + 12.9025677831031 + ], + [ + 77.556259042967298, + 12.9025629765095 + ], + [ + 77.556511683573007, + 12.902500749707601 + ], + [ + 77.556471457861605, + 12.902337390503799 + ], + [ + 77.556438617936607, + 12.902189137156901 + ], + [ + 77.555862515025396, + 12.8995883218684 + ], + [ + 77.555753564964306, + 12.899096460014499 + ], + [ + 77.555750538157, + 12.899081808321499 + ], + [ + 77.555760874935601, + 12.8990794486194 + ], + [ + 77.555699033716806, + 12.8987868075797 + ], + [ + 77.555652036354303, + 12.8985644089944 + ], + [ + 77.555814424747695, + 12.8984013276132 + ], + [ + 77.555820629636997, + 12.898285390773999 + ], + [ + 77.555825551755007, + 12.898193422264001 + ], + [ + 77.555638089817606, + 12.898001916687701 + ], + [ + 77.555610930492094, + 12.897974171483 + ], + [ + 77.555825832060606, + 12.8976219509189 + ], + [ + 77.5558674053473, + 12.8975538127923 + ], + [ + 77.555704582944401, + 12.897334055684199 + ], + [ + 77.555713768583303, + 12.8973317072474 + ], + [ + 77.555600887589407, + 12.897211972236899 + ], + [ + 77.555380064956296, + 12.896948737817301 + ], + [ + 77.555385787730202, + 12.896939876325 + ], + [ + 77.555501901554607, + 12.8967600784599 + ], + [ + 77.555915441235697, + 12.8962760718425 + ], + [ + 77.556137671584594, + 12.896137965528499 + ], + [ + 77.556207151112403, + 12.8960947865727 + ], + [ + 77.556207151112403, + 12.8960947865727 + ], + [ + 77.556090292541896, + 12.8959588719219 + ], + [ + 77.556090292541896, + 12.8959588719219 + ], + [ + 77.555683033882005, + 12.8954463450457 + ], + [ + 77.555454179981993, + 12.8951957692967 + ], + [ + 77.555251321316604, + 12.895018224169 + ], + [ + 77.554483376310699, + 12.895113331789799 + ], + [ + 77.554042347518205, + 12.895081231602701 + ], + [ + 77.553365919294706, + 12.8949376553315 + ], + [ + 77.553006457027195, + 12.8949434400167 + ], + [ + 77.552645241626195, + 12.8952238783849 + ], + [ + 77.552708670420301, + 12.8959040521951 + ], + [ + 77.552610273265401, + 12.896172680586 + ], + [ + 77.552537224162094, + 12.896277227239 + ], + [ + 77.552120945352797, + 12.896481967036401 + ], + [ + 77.551801917299301, + 12.896587849435701 + ], + [ + 77.551548048541207, + 12.896477546935699 + ], + [ + 77.551101664731902, + 12.8962868426408 + ], + [ + 77.550830874613197, + 12.896255077322699 + ], + [ + 77.550701897874305, + 12.8963178452638 + ], + [ + 77.550700430404703, + 12.8963194415474 + ], + [ + 77.550143964491298, + 12.8968657029022 + ], + [ + 77.549861863615504, + 12.897066989339301 + ], + [ + 77.549422325556606, + 12.897347359815001 + ], + [ + 77.549420193171102, + 12.897348413268199 + ], + [ + 77.548989647499994, + 12.897609568739201 + ], + [ + 77.548932748512996, + 12.8967660134683 + ], + [ + 77.548813695548304, + 12.8967956264996 + ], + [ + 77.548502668716296, + 12.896267199925299 + ], + [ + 77.548185947595599, + 12.8955958835485 + ], + [ + 77.548122077404599, + 12.8952570167014 + ], + [ + 77.548068852245294, + 12.8949696008416 + ], + [ + 77.547669663551105, + 12.8940133221474 + ], + [ + 77.547394666895102, + 12.894114449949999 + ], + [ + 77.547160476194506, + 12.894183642657 + ], + [ + 77.547100557531607, + 12.8940379266568 + ], + [ + 77.546821830251304, + 12.8932544611614 + ], + [ + 77.546709461404006, + 12.8932669326758 + ], + [ + 77.546661101569597, + 12.8929556202444 + ], + [ + 77.546537444854295, + 12.8926064315012 + ], + [ + 77.546589959257304, + 12.892462199926999 + ], + [ + 77.546729541933004, + 12.8920788315066 + ], + [ + 77.547152478530904, + 12.8903923787785 + ], + [ + 77.547426732520904, + 12.889054487852 + ], + [ + 77.5474290103718, + 12.889040326380499 + ], + [ + 77.547577802920003, + 12.888845461571799 + ], + [ + 77.547640807410204, + 12.888653707509899 + ], + [ + 77.547521026060593, + 12.8882771434851 + ], + [ + 77.547509479105798, + 12.88816746382 + ], + [ + 77.547297423001694, + 12.887496553884199 + ], + [ + 77.547326905263105, + 12.8874302778468 + ], + [ + 77.547270508030607, + 12.887358011356801 + ], + [ + 77.5473725395087, + 12.8870117134216 + ], + [ + 77.547657855255693, + 12.887128967602001 + ], + [ + 77.5478231630821, + 12.8869618167463 + ], + [ + 77.5476089684622, + 12.886881984698199 + ], + [ + 77.547443730200698, + 12.8868267062032 + ], + [ + 77.546860786379696, + 12.886600209769 + ], + [ + 77.546841915230303, + 12.886798360617099 + ], + [ + 77.546802516400703, + 12.8870308435247 + ], + [ + 77.545727032074396, + 12.8873325706393 + ], + [ + 77.545256292689899, + 12.887457750628601 + ], + [ + 77.545320255168903, + 12.887897676305 + ], + [ + 77.545536024059402, + 12.8883993566384 + ], + [ + 77.545499886175705, + 12.8887251028187 + ], + [ + 77.545336854562194, + 12.888888248416899 + ], + [ + 77.545363745836198, + 12.8890245160338 + ], + [ + 77.545594882966597, + 12.8890328526617 + ], + [ + 77.545539019437598, + 12.889291563743701 + ], + [ + 77.5454041282905, + 12.889445863446699 + ], + [ + 77.545386134927, + 12.889594245610899 + ], + [ + 77.545289694755198, + 12.889695582900799 + ], + [ + 77.545198078326706, + 12.8897920911722 + ], + [ + 77.5452135663744, + 12.8898779960801 + ], + [ + 77.545249512243302, + 12.890059319870799 + ], + [ + 77.544948228129797, + 12.890626394143601 + ], + [ + 77.544672611923701, + 12.891322302021001 + ], + [ + 77.544637208449103, + 12.8914080451746 + ], + [ + 77.544244493966005, + 12.892359135353599 + ], + [ + 77.543530946650193, + 12.8931214535162 + ], + [ + 77.543423099014205, + 12.8936174068524 + ], + [ + 77.543433731773604, + 12.893694101226099 + ], + [ + 77.543476742997996, + 12.893818834887099 + ], + [ + 77.543367593282696, + 12.893835393139399 + ], + [ + 77.543080079804298, + 12.8938733215613 + ], + [ + 77.543007183734304, + 12.893889958746399 + ], + [ + 77.542822836833395, + 12.8939526203947 + ], + [ + 77.542733985087096, + 12.893738734781399 + ], + [ + 77.542458130905999, + 12.8938699815996 + ], + [ + 77.542505392916894, + 12.8940137314151 + ], + [ + 77.542366948594704, + 12.894028161248301 + ], + [ + 77.542151807802099, + 12.894084864192701 + ], + [ + 77.542050890105202, + 12.8942121348289 + ], + [ + 77.542016653177996, + 12.8943819917073 + ], + [ + 77.541965287510294, + 12.8943773710811 + ], + [ + 77.541940858979004, + 12.8945997533775 + ], + [ + 77.541892368908805, + 12.894750691543599 + ], + [ + 77.541692218387794, + 12.895285912839901 + ], + [ + 77.541672264551906, + 12.8953495784359 + ], + [ + 77.541651425777005, + 12.8954106503703 + ], + [ + 77.541573503491094, + 12.8955948363056 + ], + [ + 77.541507310218904, + 12.8957249311075 + ], + [ + 77.541465552135804, + 12.895839111531901 + ], + [ + 77.541445896213204, + 12.8959599036412 + ], + [ + 77.541431464128905, + 12.896023757678201 + ], + [ + 77.541393976048795, + 12.8961414427548 + ], + [ + 77.541162406666899, + 12.8967710272538 + ], + [ + 77.540656639261599, + 12.8969898380105 + ], + [ + 77.540725524789593, + 12.897322528481499 + ], + [ + 77.540894835003101, + 12.897550708136301 + ], + [ + 77.541040448489497, + 12.8980163380155 + ], + [ + 77.540548353275099, + 12.898179361340301 + ], + [ + 77.540144283283695, + 12.8982215337823 + ], + [ + 77.539852726673601, + 12.8983056415713 + ], + [ + 77.539703739581896, + 12.898512666931801 + ], + [ + 77.539798400811193, + 12.898717325639099 + ], + [ + 77.539871543438196, + 12.8987213963266 + ], + [ + 77.539901553242501, + 12.8987975992021 + ], + [ + 77.5399706429546, + 12.8988829838933 + ], + [ + 77.540045475532395, + 12.899054368608301 + ], + [ + 77.540094542366305, + 12.8990873583866 + ], + [ + 77.540051795610395, + 12.899197733610499 + ], + [ + 77.539810180835801, + 12.899189930870699 + ], + [ + 77.539650801923997, + 12.8991414181708 + ], + [ + 77.539217478689494, + 12.8991843103245 + ], + [ + 77.539077532455295, + 12.8993375587595 + ], + [ + 77.539265282701606, + 12.900013832944399 + ], + [ + 77.539595433479207, + 12.9000005054314 + ], + [ + 77.539823839950799, + 12.9003950257006 + ], + [ + 77.540409697296496, + 12.9002607070046 + ], + [ + 77.540679523002098, + 12.900437368301301 + ], + [ + 77.540915944839696, + 12.9007322106406 + ], + [ + 77.541130581160203, + 12.901066451526701 + ], + [ + 77.541352560627004, + 12.901474327879299 + ], + [ + 77.541412911668999, + 12.9017081167882 + ], + [ + 77.540717562915901, + 12.901874729444501 + ], + [ + 77.540877358289606, + 12.902079108318899 + ], + [ + 77.540820993873396, + 12.9021251660386 + ], + [ + 77.541183157587596, + 12.9027810086644 + ], + [ + 77.541107022830801, + 12.902842705210199 + ], + [ + 77.541479485132598, + 12.9034760951567 + ], + [ + 77.541009277714807, + 12.9037719297861 + ], + [ + 77.541365685767502, + 12.904380571708501 + ], + [ + 77.541535968147997, + 12.904704311072001 + ], + [ + 77.541721705801905, + 12.905085063942201 + ], + [ + 77.541871370010398, + 12.9055293276712 + ], + [ + 77.541958340309506, + 12.905872080744601 + ], + [ + 77.542379936922202, + 12.9058011370025 + ], + [ + 77.542379936922202, + 12.9058011370025 + ], + [ + 77.542755829717905, + 12.905820972134601 + ], + [ + 77.543377441405895, + 12.9061710993559 + ], + [ + 77.543377441405895, + 12.9061710993559 + ], + [ + 77.543427550551101, + 12.9061993239618 + ], + [ + 77.543868668226693, + 12.906446026135701 + ], + [ + 77.544103520644995, + 12.906536967118599 + ], + [ + 77.544477328464794, + 12.906633725708801 + ], + [ + 77.545078352696805, + 12.9067259859541 + ], + [ + 77.545092356004403, + 12.9067281353467 + ], + [ + 77.545751676198094, + 12.9068651387716 + ], + [ + 77.546213781255503, + 12.9070184047238 + ], + [ + 77.5462273793094, + 12.9070247347369 + ], + [ + 77.5470360788417, + 12.907401159095199 + ], + [ + 77.547043767610006, + 12.9074047377754 + ], + [ + 77.547572881861598, + 12.9077692012002 + ], + [ + 77.548064472621604, + 12.908210401849299 + ], + [ + 77.548199615153095, + 12.9081556101145 + ], + [ + 77.548060755699794, + 12.9077291740732 + ], + [ + 77.548633703589502, + 12.9075005892373 + ], + [ + 77.548599479563606, + 12.9073279866276 + ], + [ + 77.548917114614298, + 12.9071985992968 + ], + [ + 77.549115065308001, + 12.9074246697283 + ], + [ + 77.549115065308001, + 12.9074246697283 + ], + [ + 77.549115065308001, + 12.9074246697283 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "340", + "group": "KP Agrahara", + "Corporatio": "Central", + "ac_no": "164", + "ac": "Gandhinagara", + "corporat_1": "1", + "ward_id": "48", + "ward_name": "48 - Subhas Chandra Bose Ward", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಗಾಂಧಿನಗರ", + "ward_name_": "ಸುಬಾಸ್ ಚಂದ್ರ ಬೋಸ್ ವಾರ್ಡ್", + "dig_ward_n": "KP Agrahara", + "Assembly": "164 - Gandhinagara", + "Slno": "48" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.557113272027905, + 12.9693812095668 + ], + [ + 77.557113308065396, + 12.9693836927171 + ], + [ + 77.557113308065396, + 12.9693836927171 + ], + [ + 77.557113308065396, + 12.9693836927171 + ], + [ + 77.557133505804103, + 12.969670365604699 + ], + [ + 77.557141485181603, + 12.969783618996701 + ], + [ + 77.557143861040799, + 12.9698173334962 + ], + [ + 77.557154112702406, + 12.969962844948 + ], + [ + 77.557154469280803, + 12.969967899003899 + ], + [ + 77.557157755761693, + 12.9700145465946 + ], + [ + 77.557160827129593, + 12.9700619407367 + ], + [ + 77.557175528630395, + 12.9702887983217 + ], + [ + 77.557185868192207, + 12.970286438028699 + ], + [ + 77.557355929848001, + 12.9702508864299 + ], + [ + 77.557359011090398, + 12.970250143308 + ], + [ + 77.557375457557498, + 12.970246177150599 + ], + [ + 77.557375815826504, + 12.970247758333899 + ], + [ + 77.557434163133706, + 12.970505267796501 + ], + [ + 77.557459542420304, + 12.9706172762581 + ], + [ + 77.557460723263006, + 12.9706224875407 + ], + [ + 77.557526564149896, + 12.9709130663487 + ], + [ + 77.557533394546098, + 12.9709432108336 + ], + [ + 77.557533495863396, + 12.9709436597596 + ], + [ + 77.557543075449601, + 12.970985364968101 + ], + [ + 77.557544087082803, + 12.970991145285099 + ], + [ + 77.557544166348606, + 12.9709915998487 + ], + [ + 77.557589563694194, + 12.971250901326901 + ], + [ + 77.557593504488096, + 12.9712734101841 + ], + [ + 77.557596001266802, + 12.971287673825101 + ], + [ + 77.557606475516295, + 12.9713475026354 + ], + [ + 77.557608375470494, + 12.9713583543622 + ], + [ + 77.557662534112694, + 12.971667702658699 + ], + [ + 77.557672404892699, + 12.9717240833535 + ], + [ + 77.557688019509797, + 12.9718132745869 + ], + [ + 77.557699000602597, + 12.971875996693299 + ], + [ + 77.557709387976402, + 12.9719346193229 + ], + [ + 77.557717797427699, + 12.9719673773269 + ], + [ + 77.557718235878099, + 12.971969084164799 + ], + [ + 77.557722396938502, + 12.9719852919389 + ], + [ + 77.557722460245401, + 12.9719855370569 + ], + [ + 77.557729392666701, + 12.972012540952401 + ], + [ + 77.557790940018506, + 12.9722522862953 + ], + [ + 77.557910884945301, + 12.972720904807399 + ], + [ + 77.557917339839804, + 12.972757796422201 + ], + [ + 77.557923115047799, + 12.9727908034143 + ], + [ + 77.557925161894403, + 12.9728066471007 + ], + [ + 77.557927676875806, + 12.9728261090491 + ], + [ + 77.557942497810998, + 12.9729408117531 + ], + [ + 77.557951031182498, + 12.972987030040301 + ], + [ + 77.557979000072294, + 12.973019505293999 + ], + [ + 77.557975817534597, + 12.9730959239625 + ], + [ + 77.557975805724993, + 12.9730962104748 + ], + [ + 77.557967340408794, + 12.9732995076201 + ], + [ + 77.557963060459301, + 12.973402296369899 + ], + [ + 77.557961615312095, + 12.973437002463999 + ], + [ + 77.557960518495193, + 12.973463342340199 + ], + [ + 77.557957563847495, + 12.9735342977492 + ], + [ + 77.557957497950795, + 12.973535871317599 + ], + [ + 77.557953408966895, + 12.973634068679299 + ], + [ + 77.557952049696198, + 12.9736667117227 + ], + [ + 77.557950932647103, + 12.973693537798599 + ], + [ + 77.557949878684198, + 12.9737188422759 + ], + [ + 77.557939114728498, + 12.9737228646422 + ], + [ + 77.557916751984806, + 12.9737312204656 + ], + [ + 77.557897109676105, + 12.973738559798599 + ], + [ + 77.557906573155194, + 12.9737547443165 + ], + [ + 77.557907517350401, + 12.9737563594466 + ], + [ + 77.558155166881804, + 12.9741798838749 + ], + [ + 77.558155451924904, + 12.9741803716484 + ], + [ + 77.558173821999603, + 12.974211787561799 + ], + [ + 77.558175772273799, + 12.9742151229146 + ], + [ + 77.55825399615, + 12.9743489026188 + ], + [ + 77.558352584477404, + 12.974517506088 + ], + [ + 77.558360651032402, + 12.974531301309099 + ], + [ + 77.558391625831106, + 12.974595449831 + ], + [ + 77.558636714048404, + 12.9744669608667 + ], + [ + 77.558880812438503, + 12.974350074789299 + ], + [ + 77.5589826910944, + 12.9742947737902 + ], + [ + 77.558880576905196, + 12.9741141592784 + ], + [ + 77.559633526060097, + 12.9738046444907 + ], + [ + 77.559964910042794, + 12.9737584207924 + ], + [ + 77.559963031692703, + 12.973940596910699 + ], + [ + 77.560447334342896, + 12.9739600911675 + ], + [ + 77.560441845655106, + 12.9737847962034 + ], + [ + 77.5606877055708, + 12.9737792506233 + ], + [ + 77.560926578379295, + 12.973790348441799 + ], + [ + 77.561017991806906, + 12.973770609069399 + ], + [ + 77.561068892091797, + 12.973762861971499 + ], + [ + 77.561166998844797, + 12.973747404126501 + ], + [ + 77.561228226920207, + 12.973738106119701 + ], + [ + 77.561273217102595, + 12.9737304171917 + ], + [ + 77.561360637762206, + 12.973717600562701 + ], + [ + 77.561465452819107, + 12.973701125524601 + ], + [ + 77.561611323185303, + 12.9736872802305 + ], + [ + 77.562675703941693, + 12.973650718094699 + ], + [ + 77.562675292439096, + 12.973599584426999 + ], + [ + 77.562665825096502, + 12.9732096264155 + ], + [ + 77.5626590844455, + 12.972840156237 + ], + [ + 77.562653699652103, + 12.9722424294817 + ], + [ + 77.562623374692905, + 12.9717681725964 + ], + [ + 77.562426469429198, + 12.971776452686999 + ], + [ + 77.562230234235003, + 12.971778023647101 + ], + [ + 77.562102104742607, + 12.9718196813026 + ], + [ + 77.561929716197199, + 12.9718772628078 + ], + [ + 77.561679935584607, + 12.9719348819009 + ], + [ + 77.561542151981499, + 12.971971743466399 + ], + [ + 77.561460041401801, + 12.9716101704529 + ], + [ + 77.561447405315207, + 12.971530590847699 + ], + [ + 77.561405152763797, + 12.971345604461501 + ], + [ + 77.561148274725198, + 12.9713774796178 + ], + [ + 77.560894911776899, + 12.9714008966496 + ], + [ + 77.560857838519297, + 12.9710374071726 + ], + [ + 77.560851679248103, + 12.970641959760901 + ], + [ + 77.5608967134132, + 12.970638618055601 + ], + [ + 77.560887342660095, + 12.970553209568999 + ], + [ + 77.560846910683907, + 12.9702212053556 + ], + [ + 77.560827637273306, + 12.9700705913385 + ], + [ + 77.560808375953599, + 12.9699211546423 + ], + [ + 77.560791724974806, + 12.969773203746 + ], + [ + 77.560791715125603, + 12.969773141504399 + ], + [ + 77.560752998016, + 12.9695996228005 + ], + [ + 77.560710300811607, + 12.969470342805099 + ], + [ + 77.560658422197704, + 12.969274129266401 + ], + [ + 77.560514241845794, + 12.968902388302499 + ], + [ + 77.560396904111002, + 12.968626752520301 + ], + [ + 77.560336498861304, + 12.968505580083599 + ], + [ + 77.560289705763495, + 12.9683927371936 + ], + [ + 77.560053101324897, + 12.968565740336199 + ], + [ + 77.559850862076999, + 12.968714594562799 + ], + [ + 77.559786034642002, + 12.968762308883401 + ], + [ + 77.559668154920999, + 12.9688186871479 + ], + [ + 77.559531836048194, + 12.968859470619 + ], + [ + 77.559434148314295, + 12.9688858694693 + ], + [ + 77.559272971218306, + 12.9689294261594 + ], + [ + 77.559098765290997, + 12.968981171573599 + ], + [ + 77.558848896478693, + 12.9690370545215 + ], + [ + 77.558556240707304, + 12.9690919242818 + ], + [ + 77.558276749361596, + 12.9691470229467 + ], + [ + 77.557975748470199, + 12.9692080697957 + ], + [ + 77.557841714570202, + 12.9692345336728 + ], + [ + 77.557815205843298, + 12.9692397678569 + ], + [ + 77.557534965428403, + 12.9692982349136 + ], + [ + 77.557526625970794, + 12.9692999747481 + ], + [ + 77.557299326023895, + 12.969346311646801 + ], + [ + 77.557126379190095, + 12.969380641060001 + ], + [ + 77.557113272027905, + 12.9693812095668 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "325", + "group": "Byadarahalli", + "Corporatio": "West", + "ac_no": "153", + "ac": "Yeshwanthapura", + "corporat_1": "5", + "ward_id": "46", + "ward_name": "46 - Byadarahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಯಶವಂತಪುರ", + "ward_name_": "ಬ್ಯಾಡರಹಳ್ಳಿ", + "dig_ward_n": "Byadarahalli", + "Assembly": "153 - Yeshwanthapura", + "Slno": "46" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.484225185759598, + 12.9696491429753 + ], + [ + 77.483532235363796, + 12.969720214810801 + ], + [ + 77.483169769002899, + 12.969755750728501 + ], + [ + 77.483379430917495, + 12.970484237041999 + ], + [ + 77.483446949161205, + 12.9712340449062 + ], + [ + 77.482800195458495, + 12.971550314573999 + ], + [ + 77.482498140157801, + 12.9710634725011 + ], + [ + 77.481647054928004, + 12.9713406526594 + ], + [ + 77.481567099113093, + 12.9711683034584 + ], + [ + 77.481131423273794, + 12.971244712965399 + ], + [ + 77.480619584434805, + 12.971335797064301 + ], + [ + 77.479739637023798, + 12.9714449982327 + ], + [ + 77.479378736231794, + 12.971485184951201 + ], + [ + 77.4791126139515, + 12.971439044143001 + ], + [ + 77.478872519630997, + 12.9714701320702 + ], + [ + 77.479097268078803, + 12.9711541590808 + ], + [ + 77.478825393685696, + 12.9711748094799 + ], + [ + 77.477983802846595, + 12.9712718103839 + ], + [ + 77.476610866974596, + 12.971376272895901 + ], + [ + 77.475203372076194, + 12.9715184361641 + ], + [ + 77.475085072487801, + 12.9715016443441 + ], + [ + 77.475083006794705, + 12.971620443939999 + ], + [ + 77.475082872424593, + 12.9716281864922 + ], + [ + 77.475081189119905, + 12.9717250154109 + ], + [ + 77.475079657992296, + 12.971762079310601 + ], + [ + 77.475076106670201, + 12.971848045937399 + ], + [ + 77.475080084373204, + 12.9722066906974 + ], + [ + 77.475080926299398, + 12.972331358022601 + ], + [ + 77.475082782271301, + 12.972606278432901 + ], + [ + 77.475085032984495, + 12.972939616031599 + ], + [ + 77.475084149666202, + 12.9729667297348 + ], + [ + 77.475079800703, + 12.972992747031601 + ], + [ + 77.475042369175, + 12.973227573107399 + ], + [ + 77.474966410461406, + 12.973704098756899 + ], + [ + 77.474961875465297, + 12.973732544652901 + ], + [ + 77.474957276340803, + 12.973761399545801 + ], + [ + 77.474930617405207, + 12.973928642665999 + ], + [ + 77.474923120141497, + 12.973975675750999 + ], + [ + 77.474864637967997, + 12.9743500595473 + ], + [ + 77.474859850217697, + 12.974577349610099 + ], + [ + 77.474857044509605, + 12.9747105437391 + ], + [ + 77.474851835058203, + 12.9749578713381 + ], + [ + 77.474836822835101, + 12.975670578151499 + ], + [ + 77.474738737260196, + 12.976380228470401 + ], + [ + 77.474543437413004, + 12.9777932306585 + ], + [ + 77.474490845773005, + 12.9781861563138 + ], + [ + 77.474432995357404, + 12.9786183732752 + ], + [ + 77.474431085740704, + 12.978632640706699 + ], + [ + 77.474412071031793, + 12.978774702571 + ], + [ + 77.4743447256227, + 12.979277859559099 + ], + [ + 77.4743032347195, + 12.979587854824 + ], + [ + 77.474282319132101, + 12.9797056014562 + ], + [ + 77.474268871991995, + 12.9797813071565 + ], + [ + 77.474084250225005, + 12.9804736957192 + ], + [ + 77.474043922405201, + 12.9806249386333 + ], + [ + 77.473995975864497, + 12.9809716399329 + ], + [ + 77.473976705288507, + 12.9810595659255 + ], + [ + 77.4739633981156, + 12.981120285584099 + ], + [ + 77.473940672043597, + 12.981223979998701 + ], + [ + 77.473892439109704, + 12.981457597091 + ], + [ + 77.473836486995296, + 12.981728599915099 + ], + [ + 77.473793238264605, + 12.982224182107901 + ], + [ + 77.473725509300394, + 12.9824789389833 + ], + [ + 77.473454040730601, + 12.983318671044 + ], + [ + 77.473335610720397, + 12.9835479715729 + ], + [ + 77.473277595435903, + 12.983660262961999 + ], + [ + 77.473183633266004, + 12.9838097421878 + ], + [ + 77.473062619380798, + 12.9840022582488 + ], + [ + 77.473013180939702, + 12.9840541773208 + ], + [ + 77.4722587009677, + 12.984846506181899 + ], + [ + 77.471716274988296, + 12.985108955022801 + ], + [ + 77.471686476962901, + 12.9851233345961 + ], + [ + 77.470981209654397, + 12.985633075281299 + ], + [ + 77.470887878070599, + 12.98570052631 + ], + [ + 77.470857160929697, + 12.985722690242 + ], + [ + 77.470737955191396, + 12.985787957731199 + ], + [ + 77.469803495882104, + 12.9862996238439 + ], + [ + 77.468469746235698, + 12.986690494292301 + ], + [ + 77.4684695964919, + 12.98669053818 + ], + [ + 77.468446131713407, + 12.986697414575801 + ], + [ + 77.4684538238361, + 12.9867111146533 + ], + [ + 77.468453625614202, + 12.9867111942386 + ], + [ + 77.4685026469337, + 12.986804258389901 + ], + [ + 77.468511269942397, + 12.9868206032387 + ], + [ + 77.4685540489142, + 12.9869016945947 + ], + [ + 77.468592872267394, + 12.986975289125599 + ], + [ + 77.468685217970702, + 12.987141494777701 + ], + [ + 77.468690764775403, + 12.987153467832901 + ], + [ + 77.468969198900794, + 12.987754491578199 + ], + [ + 77.469112056998696, + 12.9880195545558 + ], + [ + 77.469176791764795, + 12.9881460301263 + ], + [ + 77.469310522097103, + 12.9884073081141 + ], + [ + 77.469795033076096, + 12.989365336956 + ], + [ + 77.469929555953001, + 12.989631329506 + ], + [ + 77.470004730414303, + 12.9897796942266 + ], + [ + 77.470060300160299, + 12.989871920385401 + ], + [ + 77.470064309302302, + 12.9898785736737 + ], + [ + 77.470144583554998, + 12.989838254598901 + ], + [ + 77.470215014257306, + 12.989924477413 + ], + [ + 77.470412539927096, + 12.989818684293599 + ], + [ + 77.470560129590893, + 12.9897396373857 + ], + [ + 77.472080632949002, + 12.9889252623361 + ], + [ + 77.4741499875513, + 12.9879819840347 + ], + [ + 77.475829963296405, + 12.9872161806483 + ], + [ + 77.477815953080594, + 12.986234601744799 + ], + [ + 77.477816037431495, + 12.9862345602826 + ], + [ + 77.478025503887693, + 12.9861413012284 + ], + [ + 77.478026138643401, + 12.9861410187016 + ], + [ + 77.478027871068903, + 12.9861402161282 + ], + [ + 77.478127805399296, + 12.986093947639 + ], + [ + 77.478432795475797, + 12.985957771399599 + ], + [ + 77.478567616181294, + 12.9859033881008 + ], + [ + 77.478650738106197, + 12.9858698593391 + ], + [ + 77.478686922209903, + 12.9858604791033 + ], + [ + 77.478964857045597, + 12.9857832883597 + ], + [ + 77.479072246501204, + 12.98575402923 + ], + [ + 77.479358230639093, + 12.985675631926 + ], + [ + 77.4793956293816, + 12.985665549731699 + ], + [ + 77.479497209021105, + 12.985638165541101 + ], + [ + 77.479515756727807, + 12.985634414282901 + ], + [ + 77.479675681454694, + 12.9856020677794 + ], + [ + 77.479854529873606, + 12.9855658931313 + ], + [ + 77.479895037432698, + 12.985557700249201 + ], + [ + 77.480270421072603, + 12.9854817746146 + ], + [ + 77.480391212629797, + 12.985457342791699 + ], + [ + 77.480500301065504, + 12.9854352777846 + ], + [ + 77.480505550348695, + 12.9854342157488 + ], + [ + 77.480691885720503, + 12.985396527098199 + ], + [ + 77.480740803630496, + 12.9853866320097 + ], + [ + 77.480950556081098, + 12.985344206615499 + ], + [ + 77.481039045434599, + 12.9853252916286 + ], + [ + 77.481152405776101, + 12.9853008969993 + ], + [ + 77.481165763099, + 12.985298021898499 + ], + [ + 77.481201298983706, + 12.9852903750332 + ], + [ + 77.481487356595096, + 12.985228815314599 + ], + [ + 77.481557022603198, + 12.9852138231411 + ], + [ + 77.481561209347902, + 12.9852129221178 + ], + [ + 77.481713698225704, + 12.985180106969 + ], + [ + 77.481725602031503, + 12.985177544783401 + ], + [ + 77.481731045533394, + 12.985176373352401 + ], + [ + 77.481761329089807, + 12.985169856267101 + ], + [ + 77.481781374712995, + 12.9851655430283 + ], + [ + 77.481890963654905, + 12.985141959326899 + ], + [ + 77.481932498261401, + 12.985133020886799 + ], + [ + 77.481945185353695, + 12.9851302903866 + ], + [ + 77.4820043887335, + 12.9851195604806 + ], + [ + 77.482021628188093, + 12.9851160076737 + ], + [ + 77.482089343296494, + 12.9851030180986 + ], + [ + 77.482275658633498, + 12.985067276539001 + ], + [ + 77.482279303893506, + 12.9850669580171 + ], + [ + 77.482605263134403, + 12.9850385107113 + ], + [ + 77.482726138544507, + 12.9850279612274 + ], + [ + 77.482744089124395, + 12.9850263450192 + ], + [ + 77.482946477497407, + 12.985008123788599 + ], + [ + 77.4831190749196, + 12.9849925849808 + ], + [ + 77.4834483363652, + 12.984981532782101 + ], + [ + 77.483745354640604, + 12.984970788355801 + ], + [ + 77.484229188084498, + 12.985042961172599 + ], + [ + 77.484266184148396, + 12.985052932725001 + ], + [ + 77.484706674744601, + 12.9851716626795 + ], + [ + 77.484721331257603, + 12.9851760364364 + ], + [ + 77.484739658144505, + 12.985181506282 + ], + [ + 77.485040703132697, + 12.985271349489 + ], + [ + 77.485074997793802, + 12.985281584370099 + ], + [ + 77.485079544938301, + 12.9852593933138 + ], + [ + 77.485092160062607, + 12.9851978272356 + ], + [ + 77.485104040605293, + 12.9852671414986 + ], + [ + 77.485136216585303, + 12.9852773189321 + ], + [ + 77.485205624972906, + 12.985299271608699 + ], + [ + 77.485927896927095, + 12.985484606466899 + ], + [ + 77.486283383969905, + 12.985575823694299 + ], + [ + 77.486956823479304, + 12.985775972971901 + ], + [ + 77.487056912186802, + 12.9858057196037 + ], + [ + 77.487128698110993, + 12.9858270544497 + ], + [ + 77.487149477893695, + 12.9857995056497 + ], + [ + 77.487161297755506, + 12.985836743272801 + ], + [ + 77.487198996320899, + 12.9858479472458 + ], + [ + 77.487460526251994, + 12.9859183554123 + ], + [ + 77.488298568418998, + 12.9861422113317 + ], + [ + 77.488666252903499, + 12.9862301648885 + ], + [ + 77.489116477173795, + 12.986337862844501 + ], + [ + 77.489172979059902, + 12.986351378224199 + ], + [ + 77.489647182155807, + 12.9864921141446 + ], + [ + 77.490273180764305, + 12.9866778983129 + ], + [ + 77.490426429170398, + 12.9867221474526 + ], + [ + 77.491571318106807, + 12.987052716277599 + ], + [ + 77.492407280500004, + 12.987281358862999 + ], + [ + 77.492578100477004, + 12.987369988628901 + ], + [ + 77.492577763279101, + 12.9873576139377 + ], + [ + 77.493262200616002, + 12.9875470686759 + ], + [ + 77.493839380135697, + 12.9877058653496 + ], + [ + 77.494034624757305, + 12.987759581528801 + ], + [ + 77.494865977797701, + 12.988014555899399 + ], + [ + 77.496239780197598, + 12.988398183112199 + ], + [ + 77.496839425356896, + 12.9885414079799 + ], + [ + 77.496994411731606, + 12.988578426235099 + ], + [ + 77.496994929640195, + 12.988570142528401 + ], + [ + 77.497274091762407, + 12.9886403251614 + ], + [ + 77.497411258221703, + 12.9886749702014 + ], + [ + 77.497442081517804, + 12.988682755649601 + ], + [ + 77.497547673538904, + 12.988710231339301 + ], + [ + 77.496786225024707, + 12.987646651813799 + ], + [ + 77.496542303677998, + 12.987323737349 + ], + [ + 77.496272710738594, + 12.9869671880884 + ], + [ + 77.495898070488096, + 12.9864704762318 + ], + [ + 77.495880571879297, + 12.986448056915901 + ], + [ + 77.495627302371204, + 12.9853041785504 + ], + [ + 77.495422944411501, + 12.984906343895499 + ], + [ + 77.495150457009402, + 12.9843747679749 + ], + [ + 77.494990660717406, + 12.9839414943305 + ], + [ + 77.494747027599004, + 12.983321166547301 + ], + [ + 77.494648949733602, + 12.983071446266599 + ], + [ + 77.494608000035697, + 12.9829671809219 + ], + [ + 77.494566443477694, + 12.982861370084301 + ], + [ + 77.494319171227303, + 12.9822595294554 + ], + [ + 77.493938155808394, + 12.981642031096101 + ], + [ + 77.493891749855507, + 12.9815092285106 + ], + [ + 77.493361943751907, + 12.979993040946701 + ], + [ + 77.493344239752503, + 12.9799423763356 + ], + [ + 77.493216923440698, + 12.979346041772599 + ], + [ + 77.4931962543764, + 12.979249231387801 + ], + [ + 77.493301477268105, + 12.9788572902557 + ], + [ + 77.493318695065895, + 12.9787931574454 + ], + [ + 77.493336443174599, + 12.978727049922901 + ], + [ + 77.493341327900097, + 12.9787088554082 + ], + [ + 77.493368916485295, + 12.9786060916434 + ], + [ + 77.493337662150196, + 12.9785644627515 + ], + [ + 77.493266210635795, + 12.9784692931614 + ], + [ + 77.4932756267754, + 12.978431933551301 + ], + [ + 77.493285042913101, + 12.9783945739412 + ], + [ + 77.493322125500399, + 12.978248400000901 + ], + [ + 77.493373863652906, + 12.978044460386901 + ], + [ + 77.493378673484798, + 12.978025500425201 + ], + [ + 77.4935420322753, + 12.978089154511199 + ], + [ + 77.493614304270395, + 12.9781173154473 + ], + [ + 77.493623052715606, + 12.978120724460799 + ], + [ + 77.493644576531807, + 12.978129111185501 + ], + [ + 77.4936438626805, + 12.9777688481536 + ], + [ + 77.493643818334704, + 12.977752114889901 + ], + [ + 77.493643744267104, + 12.977724548968499 + ], + [ + 77.493642349314499, + 12.977201559790799 + ], + [ + 77.493641759605893, + 12.976980566178201 + ], + [ + 77.493718000252201, + 12.9767731597614 + ], + [ + 77.4937197075228, + 12.976772711515 + ], + [ + 77.493769956084193, + 12.976759504713 + ], + [ + 77.493881131420906, + 12.976730286299899 + ], + [ + 77.493927618101694, + 12.9767180687427 + ], + [ + 77.493949690729295, + 12.9765547123922 + ], + [ + 77.493975696157605, + 12.9763622437551 + ], + [ + 77.493984457549203, + 12.976297396981799 + ], + [ + 77.493988759428504, + 12.976266862662101 + ], + [ + 77.493993061307293, + 12.9762363283424 + ], + [ + 77.494156264035894, + 12.976185983967699 + ], + [ + 77.494193801217804, + 12.9761744051678 + ], + [ + 77.494427604375403, + 12.976102283120101 + ], + [ + 77.494878954868099, + 12.9760369658598 + ], + [ + 77.495196133148397, + 12.976028272812901 + ], + [ + 77.495322774174397, + 12.976024801491199 + ], + [ + 77.495324002955996, + 12.9759927426537 + ], + [ + 77.495327108037102, + 12.975911714332099 + ], + [ + 77.495333351794201, + 12.9757487764565 + ], + [ + 77.495336022780606, + 12.9756790866728 + ], + [ + 77.495154852379699, + 12.975566844486501 + ], + [ + 77.495147981802006, + 12.9755709373014 + ], + [ + 77.495146977135704, + 12.975571536022001 + ], + [ + 77.495145499959094, + 12.9755673435128 + ], + [ + 77.495142662256001, + 12.9755592925725 + ], + [ + 77.495117017569797, + 12.975543404894299 + ], + [ + 77.494894169906004, + 12.975080241910099 + ], + [ + 77.494850101854993, + 12.9748762483876 + ], + [ + 77.494745641082801, + 12.974393721215399 + ], + [ + 77.494722740766093, + 12.974287938039399 + ], + [ + 77.494679256759099, + 12.9741800547192 + ], + [ + 77.494546800453307, + 12.973851429361501 + ], + [ + 77.494452480364203, + 12.9732908236964 + ], + [ + 77.494449480723603, + 12.973272994831101 + ], + [ + 77.494474897831793, + 12.9731582823827 + ], + [ + 77.494500847407707, + 12.973041166944499 + ], + [ + 77.494512959561106, + 12.9729865029921 + ], + [ + 77.494546434356707, + 12.9728354251731 + ], + [ + 77.494566842258806, + 12.9727433229209 + ], + [ + 77.494641658324397, + 12.9716425967089 + ], + [ + 77.494654034536197, + 12.971497918351799 + ], + [ + 77.495121500723599, + 12.9713813384767 + ], + [ + 77.495195655545004, + 12.971362845393299 + ], + [ + 77.495269422103306, + 12.971138522119601 + ], + [ + 77.495351617914196, + 12.9710665831774 + ], + [ + 77.495525695448094, + 12.970912447968001 + ], + [ + 77.495488280454097, + 12.9705803262051 + ], + [ + 77.495467708739298, + 12.9703977198301 + ], + [ + 77.495461260150407, + 12.9703404746584 + ], + [ + 77.495570383405806, + 12.970322415843 + ], + [ + 77.496026324035896, + 12.970246962311199 + ], + [ + 77.496681845396907, + 12.9701017589431 + ], + [ + 77.497168504528403, + 12.9701716261161 + ], + [ + 77.497704529899593, + 12.9702263365199 + ], + [ + 77.498070582897299, + 12.970222821512399 + ], + [ + 77.498159355661301, + 12.970221968998301 + ], + [ + 77.498390528572401, + 12.970135046113 + ], + [ + 77.498182116402603, + 12.9699361536019 + ], + [ + 77.498098102779096, + 12.9698559773641 + ], + [ + 77.498014945845597, + 12.9697766186581 + ], + [ + 77.498047692556796, + 12.969764517194401 + ], + [ + 77.497766223791004, + 12.9698075872166 + ], + [ + 77.497328281563696, + 12.969888288159099 + ], + [ + 77.4958683115441, + 12.970141350780899 + ], + [ + 77.495462300588599, + 12.970180070392599 + ], + [ + 77.495352981194699, + 12.9702169770892 + ], + [ + 77.495192408298607, + 12.9702472034152 + ], + [ + 77.494929755617093, + 12.9703070947805 + ], + [ + 77.494718357176296, + 12.9703736663261 + ], + [ + 77.494623446592399, + 12.9703889195653 + ], + [ + 77.494360151015798, + 12.97038427247 + ], + [ + 77.494269506070594, + 12.970374694498201 + ], + [ + 77.494235707303503, + 12.9703711226958 + ], + [ + 77.494096640030705, + 12.9703581130701 + ], + [ + 77.493928111199594, + 12.9703238717224 + ], + [ + 77.493842608131004, + 12.970299353740399 + ], + [ + 77.493686107219304, + 12.970254476574601 + ], + [ + 77.493673945511503, + 12.970251499581201 + ], + [ + 77.493453047415201, + 12.9701974275866 + ], + [ + 77.493319589145003, + 12.9701647596399 + ], + [ + 77.493242730759107, + 12.970144446587801 + ], + [ + 77.493136293982005, + 12.970116315320301 + ], + [ + 77.492727547537797, + 12.970021009253401 + ], + [ + 77.492428152829305, + 12.969989232462799 + ], + [ + 77.492194175852205, + 12.9699914741567 + ], + [ + 77.491869855334002, + 12.9700241509831 + ], + [ + 77.491560394960203, + 12.9700916981713 + ], + [ + 77.491172391344193, + 12.9701985169806 + ], + [ + 77.490921052969398, + 12.9702802019524 + ], + [ + 77.490550328866703, + 12.9703948750858 + ], + [ + 77.489991100982905, + 12.970611654434 + ], + [ + 77.489177392994804, + 12.9709383943212 + ], + [ + 77.488756401217103, + 12.9710986225351 + ], + [ + 77.488588318679007, + 12.971164598858399 + ], + [ + 77.488454142393095, + 12.971210363225801 + ], + [ + 77.488426519600296, + 12.9712227208576 + ], + [ + 77.4882351337953, + 12.9712841267947 + ], + [ + 77.488078171870399, + 12.9713446522256 + ], + [ + 77.488027135312393, + 12.9713628680216 + ], + [ + 77.488055795497601, + 12.9712290043169 + ], + [ + 77.488057366362398, + 12.971082913886599 + ], + [ + 77.488025949065502, + 12.9708048708096 + ], + [ + 77.487950547553098, + 12.9705331111919 + ], + [ + 77.487893719871593, + 12.970288424606601 + ], + [ + 77.487868862581394, + 12.9699833084972 + ], + [ + 77.487837445284498, + 12.9697225449335 + ], + [ + 77.487793461068904, + 12.9693706712089 + ], + [ + 77.487755478287497, + 12.9691327343883 + ], + [ + 77.487766756366597, + 12.9689496794312 + ], + [ + 77.487777752420499, + 12.968776884298601 + ], + [ + 77.487813882311897, + 12.9686465025167 + ], + [ + 77.487883000364903, + 12.968501982951199 + ], + [ + 77.487947405823405, + 12.968335471277999 + ], + [ + 77.488054224632705, + 12.9681391131727 + ], + [ + 77.488137480469305, + 12.9679788849588 + ], + [ + 77.488161043442005, + 12.967795093772301 + ], + [ + 77.488156330847502, + 12.967576743559301 + ], + [ + 77.488120200956104, + 12.967386668913401 + ], + [ + 77.488040086849196, + 12.9671007715122 + ], + [ + 77.487937980634399, + 12.9667897402734 + ], + [ + 77.487839016149394, + 12.966510126331601 + ], + [ + 77.487785606744794, + 12.966321622550501 + ], + [ + 77.487706135871207, + 12.9661307114677 + ], + [ + 77.487706633524695, + 12.966129710146699 + ], + [ + 77.485859726448396, + 12.9666530750322 + ], + [ + 77.485872149251705, + 12.9666863049715 + ], + [ + 77.485421455157507, + 12.967834365393401 + ], + [ + 77.485368045752793, + 12.968189380847701 + ], + [ + 77.485248660024794, + 12.9684312940333 + ], + [ + 77.485036593271204, + 12.968712478840001 + ], + [ + 77.484780542301905, + 12.9690172266194 + ], + [ + 77.484225185759598, + 12.9696491429753 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "326", + "group": "Nada prabhu Kempegowda nagara", + "Corporatio": "West", + "ac_no": "153", + "ac": "Yeshwanthapura", + "corporat_1": "5", + "ward_id": "21", + "ward_name": "21 - Nada prabhu Kempegowda Nagara", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಯಶವಂತಪುರ", + "ward_name_": "ನಾಡ ಪ್ರಭು ಕೆಂಪೇಗೌಡ ನಗರ", + "dig_ward_n": "Nada prabhu Kempegowda nagara", + "Assembly": "153 - Yeshwanthapura", + "Slno": "21" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.481731045533394, + 12.985176373352401 + ], + [ + 77.481725602031503, + 12.985177544783401 + ], + [ + 77.481713698225704, + 12.985180106969 + ], + [ + 77.481561209347902, + 12.9852129221178 + ], + [ + 77.481557022603198, + 12.9852138231411 + ], + [ + 77.481487356595096, + 12.985228815314599 + ], + [ + 77.481201298983706, + 12.9852903750332 + ], + [ + 77.481165763099, + 12.985298021898499 + ], + [ + 77.481152405776101, + 12.9853008969993 + ], + [ + 77.481039045434599, + 12.9853252916286 + ], + [ + 77.480950556081098, + 12.985344206615499 + ], + [ + 77.480740803630496, + 12.9853866320097 + ], + [ + 77.480691885720503, + 12.985396527098199 + ], + [ + 77.480505550348695, + 12.9854342157488 + ], + [ + 77.480500301065504, + 12.9854352777846 + ], + [ + 77.480391212629797, + 12.985457342791699 + ], + [ + 77.480270421072603, + 12.9854817746146 + ], + [ + 77.479895037432698, + 12.985557700249201 + ], + [ + 77.479854529873606, + 12.9855658931313 + ], + [ + 77.479675681454694, + 12.9856020677794 + ], + [ + 77.479515756727807, + 12.985634414282901 + ], + [ + 77.479497209021105, + 12.985638165541101 + ], + [ + 77.4793956293816, + 12.985665549731699 + ], + [ + 77.479358230639093, + 12.985675631926 + ], + [ + 77.479072246501204, + 12.98575402923 + ], + [ + 77.478964857045597, + 12.9857832883597 + ], + [ + 77.478686922209903, + 12.9858604791033 + ], + [ + 77.478650738106197, + 12.9858698593391 + ], + [ + 77.478567616181294, + 12.9859033881008 + ], + [ + 77.478432795475797, + 12.985957771399599 + ], + [ + 77.478127805399296, + 12.986093947639 + ], + [ + 77.478027871068903, + 12.9861402161282 + ], + [ + 77.478026138643401, + 12.9861410187016 + ], + [ + 77.478025503887693, + 12.9861413012284 + ], + [ + 77.477816037431495, + 12.9862345602826 + ], + [ + 77.477815953080594, + 12.986234601744799 + ], + [ + 77.475829963296405, + 12.9872161806483 + ], + [ + 77.4741499875513, + 12.9879819840347 + ], + [ + 77.472080632949002, + 12.9889252623361 + ], + [ + 77.470560129590893, + 12.9897396373857 + ], + [ + 77.470412539927096, + 12.989818684293599 + ], + [ + 77.470215014257306, + 12.989924477413 + ], + [ + 77.470144583554998, + 12.989838254598901 + ], + [ + 77.470064309302302, + 12.9898785736737 + ], + [ + 77.470087278536695, + 12.989916694893401 + ], + [ + 77.470363485725102, + 12.9906538186459 + ], + [ + 77.470550581549404, + 12.991405341175 + ], + [ + 77.470610151162305, + 12.9915927257588 + ], + [ + 77.470650936953504, + 12.9917210222444 + ], + [ + 77.470708080897793, + 12.9919007753006 + ], + [ + 77.470729882951105, + 12.991966170069499 + ], + [ + 77.470821430728407, + 12.992240772597 + ], + [ + 77.471096255502403, + 12.9933031718466 + ], + [ + 77.471109419126506, + 12.9933342927217 + ], + [ + 77.471330344720101, + 12.9938566036673 + ], + [ + 77.471262474567197, + 12.994112816675299 + ], + [ + 77.471242715216505, + 12.9941874061359 + ], + [ + 77.471237673029506, + 12.9942064414036 + ], + [ + 77.471236069888505, + 12.994212495727499 + ], + [ + 77.4712298686119, + 12.9942359050804 + ], + [ + 77.471231572192394, + 12.994262903849901 + ], + [ + 77.471233118372396, + 12.994287404102099 + ], + [ + 77.471253088926105, + 12.994603864864301 + ], + [ + 77.471303557402507, + 12.994699382618601 + ], + [ + 77.471517257957601, + 12.9951286080719 + ], + [ + 77.471559470044497, + 12.995213392008001 + ], + [ + 77.471580524406207, + 12.9952556810115 + ], + [ + 77.471657251558199, + 12.9954097898471 + ], + [ + 77.471754772022706, + 12.995461220913301 + ], + [ + 77.471794338345802, + 12.995482087618701 + ], + [ + 77.471806601229304, + 12.9954885547673 + ], + [ + 77.471905744327998, + 12.995691694141399 + ], + [ + 77.472291093352993, + 12.996481247838499 + ], + [ + 77.472306883474204, + 12.996513600366301 + ], + [ + 77.472306892874897, + 12.9965136192505 + ], + [ + 77.472401083550594, + 12.9967066084242 + ], + [ + 77.472449630527095, + 12.9968060761692 + ], + [ + 77.472785671263495, + 12.996744127021699 + ], + [ + 77.472832200175802, + 12.996735549580199 + ], + [ + 77.472882459330904, + 12.996726283365399 + ], + [ + 77.472978140823699, + 12.9970605199953 + ], + [ + 77.473035660201006, + 12.9972614466782 + ], + [ + 77.473040095273106, + 12.9972769393805 + ], + [ + 77.473049477939398, + 12.997309716079901 + ], + [ + 77.473166970504295, + 12.9974859106796 + ], + [ + 77.473281379463202, + 12.997881687408 + ], + [ + 77.473488969657893, + 12.998599806736401 + ], + [ + 77.473567096869502, + 12.998871244539201 + ], + [ + 77.4742022578193, + 12.999218689597701 + ], + [ + 77.474205187458907, + 12.9992308328444 + ], + [ + 77.474215816477894, + 12.999274895959299 + ], + [ + 77.474269941108105, + 12.999287836042001 + ], + [ + 77.474281460081201, + 12.999290616575101 + ], + [ + 77.474392413101398, + 12.9993675135155 + ], + [ + 77.474403014790596, + 12.999364664890701 + ], + [ + 77.474530649207495, + 12.999387934758399 + ], + [ + 77.474638781866304, + 12.9993740075173 + ], + [ + 77.474709727799507, + 12.9993549465967 + ], + [ + 77.474734101922905, + 12.999360710821099 + ], + [ + 77.474738385009303, + 12.9993601134282 + ], + [ + 77.474844822175896, + 12.999332954489001 + ], + [ + 77.474899114462502, + 12.9993462605619 + ], + [ + 77.475334932006604, + 12.999277974219501 + ], + [ + 77.4756382248422, + 12.999221992381299 + ], + [ + 77.475587489233803, + 12.9988915604703 + ], + [ + 77.476388982315598, + 12.9987517344974 + ], + [ + 77.476338714640605, + 12.9985066795821 + ], + [ + 77.477554564028395, + 12.998252199477699 + ], + [ + 77.477620540351793, + 12.998547522068 + ], + [ + 77.477735213485204, + 12.998864836766 + ], + [ + 77.478547350608594, + 12.998717175470899 + ], + [ + 77.478587396562006, + 12.9987129432897 + ], + [ + 77.478635319039697, + 12.9987768683349 + ], + [ + 77.478768039390005, + 12.9986985235972 + ], + [ + 77.478866236171498, + 12.998830277739501 + ], + [ + 77.479089298979005, + 12.999226921112101 + ], + [ + 77.479343779083493, + 12.999767298617799 + ], + [ + 77.479676802430006, + 13.0003760087441 + ], + [ + 77.479870804238004, + 13.001023205059001 + ], + [ + 77.480056166289302, + 13.002089822286701 + ], + [ + 77.480191260665805, + 13.002883109031901 + ], + [ + 77.480728496441699, + 13.0027747193578 + ], + [ + 77.4815738234674, + 13.0026184106652 + ], + [ + 77.483093994628007, + 13.0022691967336 + ], + [ + 77.485690858477696, + 13.001968865693801 + ], + [ + 77.485979897608701, + 13.0032554039994 + ], + [ + 77.485842446934996, + 13.003293104755601 + ], + [ + 77.486051371958993, + 13.004482249441001 + ], + [ + 77.485098442688596, + 13.004658461462499 + ], + [ + 77.485331915861295, + 13.0058756065559 + ], + [ + 77.485036593271005, + 13.0059368702847 + ], + [ + 77.485130845161507, + 13.0064269801154 + ], + [ + 77.486154542995607, + 13.006268733132099 + ], + [ + 77.486114049799596, + 13.006345318812 + ], + [ + 77.485993109277899, + 13.0065757410697 + ], + [ + 77.485938719750806, + 13.0066654829544 + ], + [ + 77.485934745289399, + 13.006671167918499 + ], + [ + 77.485906731799702, + 13.006717467007199 + ], + [ + 77.485799341503593, + 13.0068949524565 + ], + [ + 77.485721941601597, + 13.006987173535 + ], + [ + 77.485555771516999, + 13.0071864064809 + ], + [ + 77.4854617289282, + 13.0072844338381 + ], + [ + 77.485254481070797, + 13.0074991604074 + ], + [ + 77.485225182585197, + 13.0075295159271 + ], + [ + 77.485168885140297, + 13.0076012059696 + ], + [ + 77.485092299421197, + 13.007699449104599 + ], + [ + 77.485058006370906, + 13.007743440218 + ], + [ + 77.484896498102998, + 13.007948275139199 + ], + [ + 77.484876591837804, + 13.0079733121079 + ], + [ + 77.484839478416802, + 13.0080052901525 + ], + [ + 77.484831037359299, + 13.008012773392799 + ], + [ + 77.484864425674999, + 13.008021783155201 + ], + [ + 77.485303297853093, + 13.0080271409314 + ], + [ + 77.485966814537804, + 13.008068594227099 + ], + [ + 77.486433092115604, + 13.0081030929019 + ], + [ + 77.487372469291202, + 13.008260179385999 + ], + [ + 77.4877117760971, + 13.0082696045751 + ], + [ + 77.488003956957698, + 13.0082680337103 + ], + [ + 77.488563184841396, + 13.008222478629801 + ], + [ + 77.489193101643096, + 13.008205199116601 + ], + [ + 77.489663811113004, + 13.0081861336161 + ], + [ + 77.489898969570604, + 13.0082986219748 + ], + [ + 77.490081083438298, + 13.008503583707601 + ], + [ + 77.490125462070694, + 13.0085533588201 + ], + [ + 77.490200026006804, + 13.008654466461399 + ], + [ + 77.490251500375393, + 13.008724265428899 + ], + [ + 77.490454506111206, + 13.009052680698799 + ], + [ + 77.4905903859201, + 13.009173637291701 + ], + [ + 77.490788314890196, + 13.0092349010205 + ], + [ + 77.491164692192299, + 13.0093215612967 + ], + [ + 77.491663047305295, + 13.0094243471359 + ], + [ + 77.491782672335205, + 13.009503518908501 + ], + [ + 77.491834510874995, + 13.009637042420101 + ], + [ + 77.491895774603805, + 13.009853821768299 + ], + [ + 77.492148804992993, + 13.0108280884289 + ], + [ + 77.492424611426301, + 13.0108662040511 + ], + [ + 77.492429033848893, + 13.010866815686301 + ], + [ + 77.492485056786094, + 13.0108584657007 + ], + [ + 77.492696130240802, + 13.010852891807801 + ], + [ + 77.4933857399065, + 13.010746072998501 + ], + [ + 77.493784739576299, + 13.0106879509993 + ], + [ + 77.4949536894716, + 13.010469065534201 + ], + [ + 77.494955033883699, + 13.0104774551105 + ], + [ + 77.495278632041106, + 13.010431900030101 + ], + [ + 77.495680773440696, + 13.0103800614903 + ], + [ + 77.496382950025094, + 13.0101758490609 + ], + [ + 77.497058421907198, + 13.0099088020377 + ], + [ + 77.497110260446902, + 13.0097579990129 + ], + [ + 77.497098417663096, + 13.009722563487101 + ], + [ + 77.497108254268497, + 13.009683884171 + ], + [ + 77.497114973041505, + 13.009657463663 + ], + [ + 77.497116026215494, + 13.0096533236525 + ], + [ + 77.4971177078979, + 13.0096467101491 + ], + [ + 77.497107798736494, + 13.0095749130251 + ], + [ + 77.497115570664704, + 13.0095443507002 + ], + [ + 77.497143046839895, + 13.009436310184499 + ], + [ + 77.497147667281297, + 13.009418142515599 + ], + [ + 77.497206050876997, + 13.0094056281508 + ], + [ + 77.497911290468906, + 13.009231502828801 + ], + [ + 77.4982577344703, + 13.009085326937999 + ], + [ + 77.498393125580705, + 13.0090282015626 + ], + [ + 77.497970298545695, + 13.007691406602801 + ], + [ + 77.497965823826704, + 13.0075951191819 + ], + [ + 77.497960066486002, + 13.007471222497299 + ], + [ + 77.497828098481506, + 13.0063160046461 + ], + [ + 77.497699304533199, + 13.0050436639522 + ], + [ + 77.497683567170895, + 13.004888193997299 + ], + [ + 77.497568914564297, + 13.0038586853405 + ], + [ + 77.496303426766502, + 13.0041304819852 + ], + [ + 77.495819599582404, + 13.004301458441301 + ], + [ + 77.495737903785596, + 13.004330327519 + ], + [ + 77.495718350705999, + 13.0043065178325 + ], + [ + 77.495410850453496, + 13.0038826167637 + ], + [ + 77.495303945882299, + 13.0037352428735 + ], + [ + 77.495265155443406, + 13.003681768423499 + ], + [ + 77.494657561561297, + 13.002818191939999 + ], + [ + 77.494601451312803, + 13.0027384421055 + ], + [ + 77.493101681098906, + 13.0007590127294 + ], + [ + 77.4930599736349, + 13.000703965703 + ], + [ + 77.493097095618197, + 13.000703779007999 + ], + [ + 77.493281791499598, + 13.000702843391499 + ], + [ + 77.493587634878693, + 13.000669934582101 + ], + [ + 77.494172706368403, + 13.000608525945999 + ], + [ + 77.494282943117597, + 13.0005969553753 + ], + [ + 77.495034124510397, + 13.0004140447209 + ], + [ + 77.495122770049704, + 13.0003924591994 + ], + [ + 77.495116196064302, + 13.000376142914 + ], + [ + 77.495115178496505, + 13.0003736165823 + ], + [ + 77.495112905800298, + 13.0002903966102 + ], + [ + 77.495084427720101, + 13.000189558354 + ], + [ + 77.495071277882005, + 13.000157658531 + ], + [ + 77.495004516126201, + 12.9999762236418 + ], + [ + 77.494993033268102, + 12.999943514518501 + ], + [ + 77.494971527964594, + 12.999860765075899 + ], + [ + 77.494940110667699, + 12.9997036785917 + ], + [ + 77.494864709155294, + 12.9995340251887 + ], + [ + 77.494817583209993, + 12.999413068595899 + ], + [ + 77.494786165913197, + 12.9992591238414 + ], + [ + 77.494724902184302, + 12.999059624006399 + ], + [ + 77.494615979906698, + 12.9987690555312 + ], + [ + 77.493502769337198, + 12.9989983602776 + ], + [ + 77.493380241879606, + 12.998599360607701 + ], + [ + 77.493248289232795, + 12.9981909357488 + ], + [ + 77.493432865851801, + 12.9981681582086 + ], + [ + 77.4935907377684, + 12.9981249594255 + ], + [ + 77.493936328033698, + 12.998077833480201 + ], + [ + 77.494695920172504, + 12.9979865922503 + ], + [ + 77.494863966768804, + 12.997970634390001 + ], + [ + 77.494935398073196, + 12.997971014670901 + ], + [ + 77.494924212357603, + 12.9979007301651 + ], + [ + 77.494887486695504, + 12.997802146700399 + ], + [ + 77.4943337827997, + 12.9971544450329 + ], + [ + 77.493960676438704, + 12.996654629933399 + ], + [ + 77.493815371440803, + 12.9964731950441 + ], + [ + 77.493477635499701, + 12.996712751932501 + ], + [ + 77.493059785451706, + 12.9961009000766 + ], + [ + 77.493700698307293, + 12.9957615932707 + ], + [ + 77.493855413576696, + 12.995684368058299 + ], + [ + 77.493854643061795, + 12.9956830500286 + ], + [ + 77.493931615439095, + 12.995593510732601 + ], + [ + 77.494368315865202, + 12.995320180250101 + ], + [ + 77.494193949867693, + 12.995043708037899 + ], + [ + 77.493871315436706, + 12.994516254575901 + ], + [ + 77.494779882453798, + 12.9939331065946 + ], + [ + 77.494715476995296, + 12.993790157894001 + ], + [ + 77.494616512510206, + 12.9935105439521 + ], + [ + 77.494478276404095, + 12.9935419612489 + ], + [ + 77.494313335595706, + 12.993600083248101 + ], + [ + 77.493747824252495, + 12.993804295677499 + ], + [ + 77.493124190910294, + 12.9940305002148 + ], + [ + 77.492813159671599, + 12.9941545985373 + ], + [ + 77.492612088971796, + 12.994228429184901 + ], + [ + 77.492235081409703, + 12.9943808030746 + ], + [ + 77.491958609197496, + 12.994457775451799 + ], + [ + 77.491787384929694, + 12.994482909289299 + ], + [ + 77.491606735472899, + 12.994512755721299 + ], + [ + 77.491416660826999, + 12.994526893504901 + ], + [ + 77.491130192775103, + 12.9945517004919 + ], + [ + 77.491002818437593, + 12.9945601332058 + ], + [ + 77.490751399566406, + 12.994594440693101 + ], + [ + 77.490143859990297, + 12.994647219874301 + ], + [ + 77.490100276089393, + 12.994212720536501 + ], + [ + 77.488972113836894, + 12.994335252628099 + ], + [ + 77.488961457915096, + 12.9943059901042 + ], + [ + 77.488944080819607, + 12.9942566746649 + ], + [ + 77.488951511149907, + 12.9942450847256 + ], + [ + 77.488940760306306, + 12.994247248651 + ], + [ + 77.488928484929204, + 12.9942497199219 + ], + [ + 77.488652269519903, + 12.9943053249155 + ], + [ + 77.488367176337107, + 12.9943176186739 + ], + [ + 77.488049005317507, + 12.9944241841949 + ], + [ + 77.487873102524702, + 12.993873377470001 + ], + [ + 77.487608359937596, + 12.9929974170979 + ], + [ + 77.4875355720729, + 12.992570945455499 + ], + [ + 77.487519804396698, + 12.9924563518356 + ], + [ + 77.487140031358905, + 12.9925077995258 + ], + [ + 77.487107371439706, + 12.991907433083201 + ], + [ + 77.487101887822206, + 12.991854066976201 + ], + [ + 77.487098973058295, + 12.991825697837999 + ], + [ + 77.487092660798496, + 12.991759925677499 + ], + [ + 77.487090891768403, + 12.9917503898966 + ], + [ + 77.486754968907405, + 12.991775866572601 + ], + [ + 77.486706693051005, + 12.991785363796 + ], + [ + 77.486652083571698, + 12.991794921648999 + ], + [ + 77.486142452064698, + 12.9918795452515 + ], + [ + 77.486016420216401, + 12.991917687002299 + ], + [ + 77.486006511894502, + 12.9919193322505 + ], + [ + 77.485618509940807, + 12.991995905589301 + ], + [ + 77.485600141033302, + 12.992001728271401 + ], + [ + 77.485292860845504, + 12.9920597826113 + ], + [ + 77.4852161153905, + 12.992082341980099 + ], + [ + 77.4851975502702, + 12.992087799691699 + ], + [ + 77.485197420555807, + 12.992086800755599 + ], + [ + 77.485182264878901, + 12.991970357799801 + ], + [ + 77.485175205806698, + 12.991916122127501 + ], + [ + 77.485172199024802, + 12.991893021230901 + ], + [ + 77.485163994717396, + 12.9918299873649 + ], + [ + 77.4851553334708, + 12.9917634387271 + ], + [ + 77.485136257307403, + 12.9916168761601 + ], + [ + 77.485118087008999, + 12.9914772736354 + ], + [ + 77.485115598990205, + 12.9914581576401 + ], + [ + 77.485114250240699, + 12.991447795623699 + ], + [ + 77.4851028306731, + 12.991360053705099 + ], + [ + 77.4850940478495, + 12.991292577420101 + ], + [ + 77.485094255343199, + 12.991276946645501 + ], + [ + 77.485094377384101, + 12.991267728846999 + ], + [ + 77.485097281520297, + 12.991152350873501 + ], + [ + 77.485098569363799, + 12.9911012138523 + ], + [ + 77.485103393424097, + 12.9909096052499 + ], + [ + 77.485103940924304, + 12.9908878653508 + ], + [ + 77.485108955241998, + 12.9906887070654 + ], + [ + 77.485109390334898, + 12.990671411667901 + ], + [ + 77.485109436105105, + 12.9906696222947 + ], + [ + 77.485110143230997, + 12.9906415156916 + ], + [ + 77.4851290477433, + 12.989890684890799 + ], + [ + 77.4851336278562, + 12.989714458039 + ], + [ + 77.485127255150502, + 12.989633159485299 + ], + [ + 77.485119119253298, + 12.9895293787722 + ], + [ + 77.485116850252695, + 12.9895012482359 + ], + [ + 77.485085620562799, + 12.9891140879489 + ], + [ + 77.485060374078202, + 12.9887944370517 + ], + [ + 77.485055980603804, + 12.9887388061368 + ], + [ + 77.485041858288099, + 12.988560859005499 + ], + [ + 77.485028982031295, + 12.9883986037326 + ], + [ + 77.485011665524695, + 12.9881773036435 + ], + [ + 77.485006552634204, + 12.988111956104801 + ], + [ + 77.484998875240393, + 12.9880661081004 + ], + [ + 77.4849863502115, + 12.9879913058256 + ], + [ + 77.484979589869596, + 12.9879484540983 + ], + [ + 77.484952120090696, + 12.987780193663101 + ], + [ + 77.484898036291497, + 12.987448920252101 + ], + [ + 77.484892396668599, + 12.987416941394599 + ], + [ + 77.484891941665893, + 12.987414360824101 + ], + [ + 77.484862642291702, + 12.987248228435201 + ], + [ + 77.484856173467094, + 12.987193828042001 + ], + [ + 77.484850703063898, + 12.9871478279057 + ], + [ + 77.484844526328402, + 12.9870926883624 + ], + [ + 77.484843119950099, + 12.9870801376989 + ], + [ + 77.484835410066907, + 12.9870139665886 + ], + [ + 77.484819196647507, + 12.9868748195411 + ], + [ + 77.484820761583904, + 12.9867426672457 + ], + [ + 77.484821511405002, + 12.986737557992701 + ], + [ + 77.484838018374205, + 12.9866250468072 + ], + [ + 77.484841034688998, + 12.986604654807801 + ], + [ + 77.484890985242501, + 12.986266970779299 + ], + [ + 77.484901091724097, + 12.986198647898 + ], + [ + 77.484919490883797, + 12.9860742601421 + ], + [ + 77.484964502808793, + 12.9858251196725 + ], + [ + 77.4849651691177, + 12.985821433332299 + ], + [ + 77.484974099444798, + 12.985776959725699 + ], + [ + 77.485015840735699, + 12.985608525230001 + ], + [ + 77.485022773684094, + 12.985580547910899 + ], + [ + 77.485086118104405, + 12.9853249428413 + ], + [ + 77.485088524734607, + 12.9853152297555 + ], + [ + 77.485095356694998, + 12.9852876599788 + ], + [ + 77.485074997793802, + 12.985281584370099 + ], + [ + 77.485040703132697, + 12.985271349489 + ], + [ + 77.484739658144505, + 12.985181506282 + ], + [ + 77.484721331257603, + 12.9851760364364 + ], + [ + 77.484706674744601, + 12.9851716626795 + ], + [ + 77.484266184148396, + 12.985052932725001 + ], + [ + 77.484229188084498, + 12.985042961172599 + ], + [ + 77.483745354640604, + 12.984970788355801 + ], + [ + 77.4834483363652, + 12.984981532782101 + ], + [ + 77.4831190749196, + 12.9849925849808 + ], + [ + 77.482946477497407, + 12.985008123788599 + ], + [ + 77.482744089124395, + 12.9850263450192 + ], + [ + 77.482726138544507, + 12.9850279612274 + ], + [ + 77.482605263134403, + 12.9850385107113 + ], + [ + 77.482279303893506, + 12.9850669580171 + ], + [ + 77.482275658633498, + 12.985067276539001 + ], + [ + 77.482089343296494, + 12.9851030180986 + ], + [ + 77.482021628188093, + 12.9851160076737 + ], + [ + 77.4820043887335, + 12.9851195604806 + ], + [ + 77.481945185353695, + 12.9851302903866 + ], + [ + 77.481932498261401, + 12.985133020886799 + ], + [ + 77.481890963654905, + 12.985141959326899 + ], + [ + 77.481781374712995, + 12.9851655430283 + ], + [ + 77.481761329089807, + 12.985169856267101 + ], + [ + 77.481731045533394, + 12.985176373352401 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "327", + "group": "Doddabidarakallu", + "Corporatio": "West", + "ac_no": "153", + "ac": "Yeshwanthapura", + "corporat_1": "5", + "ward_id": "1", + "ward_name": "1 - Dodda Bidarakallu", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಯಶವಂತಪುರ", + "ward_name_": "ದೊಡ್ಡ ಬಿಡರಕಲ್ಲು", + "dig_ward_n": "Doddabidarakallu", + "Assembly": "153 - Yeshwanthapura", + "Slno": "1" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.493289026597395, + 13.018866380949 + ], + [ + 77.492064249857805, + 13.0191784754703 + ], + [ + 77.492095855081601, + 13.019767432222899 + ], + [ + 77.491917773867399, + 13.019790459966099 + ], + [ + 77.491521355930999, + 13.019832317760599 + ], + [ + 77.491587099662297, + 13.0202278131848 + ], + [ + 77.491626763999307, + 13.020653517556999 + ], + [ + 77.491583055088498, + 13.0208619865733 + ], + [ + 77.491525835933402, + 13.0210022495519 + ], + [ + 77.4905986329602, + 13.0205427715856 + ], + [ + 77.490284459991798, + 13.0216832194609 + ], + [ + 77.490231050587198, + 13.021790038270099 + ], + [ + 77.490048713587996, + 13.021777837948401 + ], + [ + 77.489806280297898, + 13.0216180560093 + ], + [ + 77.489157414643401, + 13.0212429155682 + ], + [ + 77.488544200872198, + 13.021110921995 + ], + [ + 77.488644026378594, + 13.020506528396 + ], + [ + 77.488629765727694, + 13.020235592170099 + ], + [ + 77.488458636857899, + 13.020166121641299 + ], + [ + 77.487339164760002, + 13.020124439237399 + ], + [ + 77.486519169947798, + 13.020186962995 + ], + [ + 77.485905956197797, + 13.0202147510606 + ], + [ + 77.485834652325295, + 13.020096650769201 + ], + [ + 77.4858061303661, + 13.0193949946537 + ], + [ + 77.485734827278606, + 13.0190823750868 + ], + [ + 77.485535175901902, + 13.0188809087441 + ], + [ + 77.485271350970393, + 13.0186377600334 + ], + [ + 77.485064569972806, + 13.018505764893501 + ], + [ + 77.484921962037504, + 13.018498817898299 + ], + [ + 77.483873794626206, + 13.018554394173201 + ], + [ + 77.483305739905006, + 13.018567130394599 + ], + [ + 77.483669390285002, + 13.019213212125299 + ], + [ + 77.4839332148144, + 13.0196091962846 + ], + [ + 77.484168517038398, + 13.0205053698563 + ], + [ + 77.484439471893893, + 13.0214571161113 + ], + [ + 77.484539297931704, + 13.021915620319801 + ], + [ + 77.484567819058299, + 13.022318546992601 + ], + [ + 77.484553558319007, + 13.022693685518901 + ], + [ + 77.484631993231901, + 13.022978513107301 + ], + [ + 77.484845904981597, + 13.0234439615746 + ], + [ + 77.485123989598407, + 13.0240622421684 + ], + [ + 77.485331388003402, + 13.024341563671401 + ], + [ + 77.485312744438701, + 13.0244276108933 + ], + [ + 77.485332621999305, + 13.024580952075199 + ], + [ + 77.485559794120704, + 13.0251886374999 + ], + [ + 77.4857727679845, + 13.026066089818601 + ], + [ + 77.486556985281794, + 13.0289203798351 + ], + [ + 77.486710082805203, + 13.028876443462901 + ], + [ + 77.486845836852495, + 13.0288432214107 + ], + [ + 77.4870760933714, + 13.028786872234299 + ], + [ + 77.487401923006601, + 13.0287301191421 + ], + [ + 77.4880381232676, + 13.028614660576199 + ], + [ + 77.488111953915194, + 13.028576959820001 + ], + [ + 77.488199136913906, + 13.028570676360699 + ], + [ + 77.488355437965694, + 13.028540437212399 + ], + [ + 77.488614237948397, + 13.0291232280688 + ], + [ + 77.489051723806895, + 13.030094807973599 + ], + [ + 77.488944904997595, + 13.0301332941622 + ], + [ + 77.4885294112472, + 13.030193379742499 + ], + [ + 77.487520972790705, + 13.030367129381901 + ], + [ + 77.487418024371493, + 13.0307094088431 + ], + [ + 77.487206743050194, + 13.0313785972658 + ], + [ + 77.487148621051105, + 13.031560817587501 + ], + [ + 77.487189463537007, + 13.0316487860186 + ], + [ + 77.487513847126806, + 13.0332722748328 + ], + [ + 77.486688652407395, + 13.033565364656701 + ], + [ + 77.486754456074195, + 13.033828921902501 + ], + [ + 77.486697412692294, + 13.0341253133065 + ], + [ + 77.486719008379694, + 13.0344756019268 + ], + [ + 77.486855821662999, + 13.0347687732481 + ], + [ + 77.486839830500003, + 13.035067274956999 + ], + [ + 77.486859375254696, + 13.03533379434 + ], + [ + 77.486743883522095, + 13.035443955685 + ], + [ + 77.486500462485594, + 13.0355470098464 + ], + [ + 77.486445381813098, + 13.035726466231001 + ], + [ + 77.486562650341696, + 13.035927244166199 + ], + [ + 77.486582195096403, + 13.0360800486124 + ], + [ + 77.486553766362206, + 13.0363323536283 + ], + [ + 77.486918009519002, + 13.0365011492375 + ], + [ + 77.487093912311707, + 13.0366841592139 + ], + [ + 77.487473258233507, + 13.0368049813342 + ], + [ + 77.488437228419599, + 13.036806718882801 + ], + [ + 77.489300692802999, + 13.0368627272005 + ], + [ + 77.489418849729404, + 13.0382459627982 + ], + [ + 77.489607809961001, + 13.0384313876901 + ], + [ + 77.489504132881393, + 13.038802111792799 + ], + [ + 77.489098849752196, + 13.039257662597 + ], + [ + 77.488750117757306, + 13.039625244970001 + ], + [ + 77.488547476192593, + 13.040156197286599 + ], + [ + 77.488407669221701, + 13.040236311393601 + ], + [ + 77.488091146780306, + 13.040189694723701 + ], + [ + 77.487841582949002, + 13.0401781164698 + ], + [ + 77.487651439371007, + 13.040085496809899 + ], + [ + 77.487235499998206, + 13.0400391863359 + ], + [ + 77.486974051764506, + 13.040016031040301 + ], + [ + 77.486379853095201, + 13.0398307904546 + ], + [ + 77.485631161441503, + 13.0395992395426 + ], + [ + 77.485120149974705, + 13.039587662719599 + ], + [ + 77.484858701976407, + 13.0395876618713 + ], + [ + 77.484776897555903, + 13.0396374719855 + ], + [ + 77.484763630933102, + 13.039645550139699 + ], + [ + 77.484385283742498, + 13.039829246709999 + ], + [ + 77.483696012451205, + 13.040269193136 + ], + [ + 77.482959205713996, + 13.040477588584499 + ], + [ + 77.482729377848699, + 13.040609395986801 + ], + [ + 77.4825285445297, + 13.040724573553399 + ], + [ + 77.482556741393395, + 13.0407518210442 + ], + [ + 77.482463411757493, + 13.040885060214199 + ], + [ + 77.482142509293894, + 13.0411709899732 + ], + [ + 77.482006123909898, + 13.0413315943209 + ], + [ + 77.481678540956295, + 13.0417639315743 + ], + [ + 77.481524536938593, + 13.042457463714101 + ], + [ + 77.481518949568098, + 13.042475281043499 + ], + [ + 77.481474912430599, + 13.0426157135935 + ], + [ + 77.481261725545494, + 13.0428759343487 + ], + [ + 77.481160221908894, + 13.0429406659017 + ], + [ + 77.481011690090796, + 13.043035389209299 + ], + [ + 77.480698929979496, + 13.0431844956305 + ], + [ + 77.480305521201998, + 13.0433720499032 + ], + [ + 77.480257122409697, + 13.043470878132 + ], + [ + 77.479868783015405, + 13.0442638513201 + ], + [ + 77.479861651715197, + 13.044278412754601 + ], + [ + 77.479624486908904, + 13.0447626899805 + ], + [ + 77.479784775595206, + 13.045468298508499 + ], + [ + 77.479795707606399, + 13.0455164236222 + ], + [ + 77.479800054312506, + 13.045590801688601 + ], + [ + 77.479801750568996, + 13.0456125824383 + ], + [ + 77.479805775196795, + 13.045664270308601 + ], + [ + 77.4798201931671, + 13.0458494279102 + ], + [ + 77.479835973898901, + 13.0459710688424 + ], + [ + 77.479894726948302, + 13.046476283859599 + ], + [ + 77.479970446902797, + 13.047127389182799 + ], + [ + 77.479982103429506, + 13.0473258564912 + ], + [ + 77.480020697650005, + 13.0479829680965 + ], + [ + 77.480031380894303, + 13.048164863629401 + ], + [ + 77.480055368441398, + 13.0485732833582 + ], + [ + 77.480059156061003, + 13.0486377751979 + ], + [ + 77.480135402390204, + 13.0487841633025 + ], + [ + 77.480176862151097, + 13.0488386553738 + ], + [ + 77.480206618211398, + 13.048877724831 + ], + [ + 77.480224156611598, + 13.0489007531915 + ], + [ + 77.480257690797202, + 13.0489447836864 + ], + [ + 77.480265322638303, + 13.0489548035347 + ], + [ + 77.480248245906196, + 13.048975469550101 + ], + [ + 77.480243806887401, + 13.0489808400668 + ], + [ + 77.4802405812068, + 13.048984789485701 + ], + [ + 77.480315873315604, + 13.048976100464101 + ], + [ + 77.480437780635796, + 13.048875322188699 + ], + [ + 77.480856190232302, + 13.0485281144484 + ], + [ + 77.481156248465396, + 13.0482791172543 + ], + [ + 77.482138709338301, + 13.0484132124847 + ], + [ + 77.482532320940095, + 13.048241739244499 + ], + [ + 77.483120868547502, + 13.047985342811399 + ], + [ + 77.483239107150695, + 13.047933833156801 + ], + [ + 77.483695690829407, + 13.047734924467299 + ], + [ + 77.483917598442602, + 13.0476382507001 + ], + [ + 77.484653111189004, + 13.0473277010332 + ], + [ + 77.484816385145805, + 13.047258763396499 + ], + [ + 77.4859302408655, + 13.0467563874218 + ], + [ + 77.486182095248097, + 13.0466427944432 + ], + [ + 77.486190108917995, + 13.0466394675483 + ], + [ + 77.486202047947202, + 13.046635914099999 + ], + [ + 77.486236901188406, + 13.0466255394853 + ], + [ + 77.487528649889896, + 13.0462410404482 + ], + [ + 77.487551461105596, + 13.046234249983399 + ], + [ + 77.487559565162002, + 13.0461242488767 + ], + [ + 77.4883120782943, + 13.0459692816908 + ], + [ + 77.488945767405298, + 13.045838782961701 + ], + [ + 77.489076002892304, + 13.0458119629166 + ], + [ + 77.489260195972605, + 13.045773505252299 + ], + [ + 77.489504390689703, + 13.0457426241982 + ], + [ + 77.489537600248397, + 13.045607761322399 + ], + [ + 77.489540518772102, + 13.0455958865894 + ], + [ + 77.489571576719101, + 13.0455852318666 + ], + [ + 77.490850766929995, + 13.045146407684401 + ], + [ + 77.490972916493405, + 13.045103061976 + ], + [ + 77.491508945590496, + 13.0467396627302 + ], + [ + 77.491599242395594, + 13.047015353999599 + ], + [ + 77.491642733661195, + 13.047129027638899 + ], + [ + 77.491674346661597, + 13.047211654109899 + ], + [ + 77.491675767105605, + 13.0472153673478 + ], + [ + 77.491751970196702, + 13.0474145380759 + ], + [ + 77.491902775538506, + 13.0479253781696 + ], + [ + 77.491989623301194, + 13.048219565282601 + ], + [ + 77.492002837336003, + 13.0483471885931 + ], + [ + 77.4920639256393, + 13.048937183239399 + ], + [ + 77.492079622291101, + 13.04908878486 + ], + [ + 77.492081404827999, + 13.0491060036624 + ], + [ + 77.492129704894495, + 13.049572472695401 + ], + [ + 77.492147303582897, + 13.0497424411863 + ], + [ + 77.492177967678899, + 13.050038589671001 + ], + [ + 77.492196743955006, + 13.0502199290253 + ], + [ + 77.492213155122997, + 13.050378425510999 + ], + [ + 77.492242438856707, + 13.0504662548766 + ], + [ + 77.492261732075306, + 13.0505241212279 + ], + [ + 77.492292441027502, + 13.050616223931 + ], + [ + 77.492583340330796, + 13.051511793388199 + ], + [ + 77.492578424342994, + 13.0515660846676 + ], + [ + 77.493052717156104, + 13.051502436386199 + ], + [ + 77.493272679674902, + 13.051473431553999 + ], + [ + 77.494073297838398, + 13.0513233186376 + ], + [ + 77.494502086054794, + 13.0512429220935 + ], + [ + 77.494789318078901, + 13.0511671032171 + ], + [ + 77.494893458742297, + 13.051144441906199 + ], + [ + 77.496139343254598, + 13.050873332216501 + ], + [ + 77.496467762662604, + 13.0508006097308 + ], + [ + 77.496470087180796, + 13.050800094890301 + ], + [ + 77.496811973447606, + 13.0507243905907 + ], + [ + 77.4968501026989, + 13.0507159470883 + ], + [ + 77.497005209218301, + 13.050683823100799 + ], + [ + 77.497220917177202, + 13.0506391480682 + ], + [ + 77.497217218995601, + 13.0506298832301 + ], + [ + 77.497145486328904, + 13.0504501647496 + ], + [ + 77.497001958816298, + 13.0500843161871 + ], + [ + 77.496989422711593, + 13.0500523614374 + ], + [ + 77.49666568056, + 13.049227143264799 + ], + [ + 77.496657967927703, + 13.0492074845336 + ], + [ + 77.496612944279505, + 13.0490927175103 + ], + [ + 77.496580073523702, + 13.0490024027466 + ], + [ + 77.496573425360793, + 13.048985503843801 + ], + [ + 77.496502686430105, + 13.048805703134899 + ], + [ + 77.496253967471503, + 13.0473321317962 + ], + [ + 77.496156661240306, + 13.0467556196219 + ], + [ + 77.496156548735399, + 13.0467549692892 + ], + [ + 77.496140389244204, + 13.0466613869303 + ], + [ + 77.496131422076999, + 13.046609455758301 + ], + [ + 77.496130928939095, + 13.0466065982513 + ], + [ + 77.496009059900601, + 13.0461826725445 + ], + [ + 77.495923349538003, + 13.0458845272986 + ], + [ + 77.495700719224502, + 13.0451100946153 + ], + [ + 77.495706393573002, + 13.044746837472999 + ], + [ + 77.495688528901198, + 13.0445601439177 + ], + [ + 77.4956835536005, + 13.044467849487599 + ], + [ + 77.495745251195501, + 13.044464653249401 + ], + [ + 77.495797675998404, + 13.044459861422601 + ], + [ + 77.496183134898402, + 13.0443637366761 + ], + [ + 77.496432407504898, + 13.0443151308531 + ], + [ + 77.496742287127304, + 13.0442012535703 + ], + [ + 77.496839336343498, + 13.044169144835699 + ], + [ + 77.496972435800899, + 13.0441251090368 + ], + [ + 77.497499436943301, + 13.0440461011525 + ], + [ + 77.497786220128901, + 13.043978649342201 + ], + [ + 77.497984765585599, + 13.0439197874674 + ], + [ + 77.498011747747597, + 13.043911788586099 + ], + [ + 77.498013376902193, + 13.0438744324503 + ], + [ + 77.497983405938896, + 13.043869831176201 + ], + [ + 77.497939898073099, + 13.043863152441199 + ], + [ + 77.497946781276795, + 13.043820056297401 + ], + [ + 77.497981404129106, + 13.043789424377801 + ], + [ + 77.498016856138605, + 13.0437946494574 + ], + [ + 77.498020323501606, + 13.043715152082401 + ], + [ + 77.498021515256596, + 13.0436878298304 + ], + [ + 77.498027068724198, + 13.043560502246301 + ], + [ + 77.498024953328098, + 13.043041447696201 + ], + [ + 77.498023848505198, + 13.042770474983801 + ], + [ + 77.498074520242497, + 13.042654479852599 + ], + [ + 77.498068554510795, + 13.042529791431701 + ], + [ + 77.498038984131597, + 13.0424007094982 + ], + [ + 77.4980300477703, + 13.042263662872401 + ], + [ + 77.498027844194397, + 13.042229870059 + ], + [ + 77.497433022959001, + 13.0421247244202 + ], + [ + 77.496658682006, + 13.0419751073279 + ], + [ + 77.496642690863595, + 13.041790453073601 + ], + [ + 77.496473279779096, + 13.0417987478565 + ], + [ + 77.496287784041897, + 13.041807829217101 + ], + [ + 77.496236196932799, + 13.041316539327701 + ], + [ + 77.496235892264593, + 13.0413136357294 + ], + [ + 77.496231837397502, + 13.041286799537099 + ], + [ + 77.496166920719702, + 13.0408572075742 + ], + [ + 77.496155659467107, + 13.0407826876577 + ], + [ + 77.496137903389396, + 13.0406651834504 + ], + [ + 77.496161427275297, + 13.0406298549733 + ], + [ + 77.4961624516732, + 13.040602726750199 + ], + [ + 77.496129302101593, + 13.040258020516699 + ], + [ + 77.496110645098, + 13.0397491408043 + ], + [ + 77.496148540681602, + 13.039474325775901 + ], + [ + 77.496150200280496, + 13.0394689936183 + ], + [ + 77.496227305875905, + 13.039221251305699 + ], + [ + 77.496377802348505, + 13.0389143642031 + ], + [ + 77.496674409852304, + 13.0383139117416 + ], + [ + 77.496856613161995, + 13.037985960085701 + ], + [ + 77.496877591253593, + 13.037983756512601 + ], + [ + 77.496889980109898, + 13.0378952347729 + ], + [ + 77.497165968659303, + 13.037873692386301 + ], + [ + 77.497291984411305, + 13.0378638556548 + ], + [ + 77.497394578388096, + 13.037551932633599 + ], + [ + 77.497402902936102, + 13.037316276610801 + ], + [ + 77.497427647594805, + 13.037188592163901 + ], + [ + 77.497470931771701, + 13.037165387626001 + ], + [ + 77.4977140604705, + 13.0370350470314 + ], + [ + 77.497919576799106, + 13.036502838960301 + ], + [ + 77.498136173644795, + 13.036484769038299 + ], + [ + 77.498117033059003, + 13.036223475894699 + ], + [ + 77.498187424525597, + 13.035845052998599 + ], + [ + 77.498090260910303, + 13.0356285587886 + ], + [ + 77.498103751743301, + 13.0353478066835 + ], + [ + 77.498112691177894, + 13.035296483396399 + ], + [ + 77.498142815192793, + 13.035123539930099 + ], + [ + 77.498545641956198, + 13.035090038445601 + ], + [ + 77.499202604724303, + 13.034936515785301 + ], + [ + 77.499193480245793, + 13.034898443085901 + ], + [ + 77.499188468352997, + 13.0348775286514 + ], + [ + 77.499083897669905, + 13.0344355379645 + ], + [ + 77.499077150472004, + 13.034416075920101 + ], + [ + 77.498944480636794, + 13.034422322807 + ], + [ + 77.498882597507404, + 13.0339849831302 + ], + [ + 77.4988072753642, + 13.0336947603426 + ], + [ + 77.498457441847904, + 13.033513394364 + ], + [ + 77.498406195726204, + 13.033464150652 + ], + [ + 77.498350314386101, + 13.033226570834801 + ], + [ + 77.498320281057502, + 13.0330057191413 + ], + [ + 77.498314139439401, + 13.0329605513825 + ], + [ + 77.498299321331999, + 13.032925598184301 + ], + [ + 77.4982532068571, + 13.032816823500699 + ], + [ + 77.498213521782404, + 13.0327232151399 + ], + [ + 77.498199381371407, + 13.0326898599952 + ], + [ + 77.498185122049506, + 13.032656225010101 + ], + [ + 77.497870117880296, + 13.0323652815472 + ], + [ + 77.497435110923206, + 13.0319634987606 + ], + [ + 77.497277331309903, + 13.0317937712764 + ], + [ + 77.497106480132899, + 13.031184626684199 + ], + [ + 77.496786341227406, + 13.030077205168899 + ], + [ + 77.496785601452999, + 13.030074649089601 + ], + [ + 77.496655838045498, + 13.0296257695775 + ], + [ + 77.496558889148901, + 13.0293566950007 + ], + [ + 77.496417161049294, + 13.028711341173199 + ], + [ + 77.496315534735103, + 13.0282485834516 + ], + [ + 77.496296103076403, + 13.0281988797809 + ], + [ + 77.496277706049298, + 13.028151823312299 + ], + [ + 77.496169927893007, + 13.027741483078399 + ], + [ + 77.496136054026394, + 13.0276125149867 + ], + [ + 77.496016145046397, + 13.027155982894699 + ], + [ + 77.495669963187098, + 13.025837956838 + ], + [ + 77.495544800636495, + 13.025359181064101 + ], + [ + 77.4955278919021, + 13.0252951696213 + ], + [ + 77.495519179884397, + 13.0252621874443 + ], + [ + 77.495442437556406, + 13.0249716643656 + ], + [ + 77.495433245865101, + 13.024936512089701 + ], + [ + 77.495333446392493, + 13.0245548478212 + ], + [ + 77.495313669121401, + 13.024554476301599 + ], + [ + 77.495293701072598, + 13.024554101196699 + ], + [ + 77.495267378210301, + 13.0244077789597 + ], + [ + 77.495266579044198, + 13.0244033369449 + ], + [ + 77.495202665069399, + 13.0240480496351 + ], + [ + 77.495148877024604, + 13.0237490482564 + ], + [ + 77.495124369366295, + 13.0236128149816 + ], + [ + 77.495119279724904, + 13.023584524070699 + ], + [ + 77.495118061570395, + 13.0235822246604 + ], + [ + 77.495034163807105, + 13.023423843915999 + ], + [ + 77.495031007894397, + 13.0234178696754 + ], + [ + 77.494996864950593, + 13.023353243455601 + ], + [ + 77.494932317340002, + 13.023231064602699 + ], + [ + 77.494928497381196, + 13.0232238336674 + ], + [ + 77.494832766781002, + 13.0229808116864 + ], + [ + 77.494799720840902, + 13.022933704466601 + ], + [ + 77.495219794677197, + 13.0227339388282 + ], + [ + 77.495426246430597, + 13.0226357604264 + ], + [ + 77.495575649750904, + 13.0225652342684 + ], + [ + 77.495615988981697, + 13.0225461922715 + ], + [ + 77.495795558494393, + 13.022085711974499 + ], + [ + 77.496468317494802, + 13.020418995417099 + ], + [ + 77.496532515928294, + 13.0202599476095 + ], + [ + 77.496759929290306, + 13.0196965402048 + ], + [ + 77.496918698724002, + 13.019305871586701 + ], + [ + 77.497080943634302, + 13.0189073163011 + ], + [ + 77.497524622440494, + 13.017821305594 + ], + [ + 77.497543414855201, + 13.0177734715949 + ], + [ + 77.4975612369185, + 13.017770412334 + ], + [ + 77.497814464504401, + 13.0171526132781 + ], + [ + 77.498206780128797, + 13.016183948658499 + ], + [ + 77.498435451583305, + 13.015626788202299 + ], + [ + 77.498911961120101, + 13.014465760697799 + ], + [ + 77.498962400841805, + 13.014334620522501 + ], + [ + 77.499065404854406, + 13.0140668156139 + ], + [ + 77.499115450227706, + 13.0139367010838 + ], + [ + 77.499043664582501, + 13.0139504890199 + ], + [ + 77.499005084034707, + 13.013950860818399 + ], + [ + 77.498875545120796, + 13.0139543678675 + ], + [ + 77.498416077356396, + 13.013905714840099 + ], + [ + 77.498338272513493, + 13.0138996882451 + ], + [ + 77.498198602460505, + 13.013888009065701 + ], + [ + 77.498133839014002, + 13.0138825940206 + ], + [ + 77.497345190801298, + 13.0138166458343 + ], + [ + 77.497291017583706, + 13.013812650067299 + ], + [ + 77.497245481808704, + 13.0138085711105 + ], + [ + 77.497223047077796, + 13.013811045890099 + ], + [ + 77.496883014493903, + 13.0138425543345 + ], + [ + 77.496699318602097, + 13.013891133846601 + ], + [ + 77.496663349399398, + 13.013895657006699 + ], + [ + 77.496613308728399, + 13.013901785622 + ], + [ + 77.496550777015301, + 13.0139231102475 + ], + [ + 77.496491048985007, + 13.0139394964155 + ], + [ + 77.496409877271205, + 13.013962463159899 + ], + [ + 77.496371168538701, + 13.0139734148164 + ], + [ + 77.4963041287604, + 13.013992534834999 + ], + [ + 77.496187165518705, + 13.013997200681001 + ], + [ + 77.496026390515496, + 13.014041693160699 + ], + [ + 77.496003922259405, + 13.0140479113412 + ], + [ + 77.495941941581904, + 13.0140650644591 + ], + [ + 77.495758748956007, + 13.0141165198583 + ], + [ + 77.495632992393595, + 13.014152740590999 + ], + [ + 77.495451221920305, + 13.0141736891519 + ], + [ + 77.495382122178896, + 13.0141743541102 + ], + [ + 77.4953412268612, + 13.014173618275199 + ], + [ + 77.495296312025999, + 13.014174050481101 + ], + [ + 77.495068836066693, + 13.0141739805765 + ], + [ + 77.495033134523695, + 13.0141743240879 + ], + [ + 77.495010677100893, + 13.0141745401652 + ], + [ + 77.494745772048702, + 13.014174830101499 + ], + [ + 77.494703736350303, + 13.014175234505799 + ], + [ + 77.494435952079897, + 13.014175551824 + ], + [ + 77.494410615488604, + 13.0141757955451 + ], + [ + 77.494282680529594, + 13.0141760223723 + ], + [ + 77.4942620914684, + 13.014175751499099 + ], + [ + 77.494146165320004, + 13.0141742247114 + ], + [ + 77.494113309630194, + 13.0141737926294 + ], + [ + 77.494025880829099, + 13.0141715905424 + ], + [ + 77.494005726716395, + 13.014171784379799 + ], + [ + 77.4934493599322, + 13.0141882305834 + ], + [ + 77.493438363878298, + 13.014389301283201 + ], + [ + 77.493300127772201, + 13.0152407100275 + ], + [ + 77.493194879827797, + 13.0157213946692 + ], + [ + 77.493143041287993, + 13.0159381740174 + ], + [ + 77.493122620045, + 13.0161989375812 + ], + [ + 77.493105340531798, + 13.017416357833699 + ], + [ + 77.493106911396595, + 13.0177949362606 + ], + [ + 77.493289026597395, + 13.018866380949 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "328", + "group": "Andrahalli", + "Corporatio": "West", + "ac_no": "153", + "ac": "Yeshwanthapura", + "corporat_1": "5", + "ward_id": "20", + "ward_name": "20 - Andrahalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಯಶವಂತಪುರ", + "ward_name_": "ಅಂದ್ರಾಹಳ್ಳಿ", + "dig_ward_n": "Andrahalli", + "Assembly": "153 - Yeshwanthapura", + "Slno": "20" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.493289026597395, + 13.018866380949 + ], + [ + 77.493106911396595, + 13.0177949362606 + ], + [ + 77.493105340531798, + 13.017416357833699 + ], + [ + 77.493122620045, + 13.0161989375812 + ], + [ + 77.493143041287993, + 13.0159381740174 + ], + [ + 77.493194879827797, + 13.0157213946692 + ], + [ + 77.493300127772201, + 13.0152407100275 + ], + [ + 77.493438363878298, + 13.014389301283201 + ], + [ + 77.4934493599322, + 13.0141882305834 + ], + [ + 77.494005726716395, + 13.014171784379799 + ], + [ + 77.494025880829099, + 13.0141715905424 + ], + [ + 77.494113309630194, + 13.0141737926294 + ], + [ + 77.494146165320004, + 13.0141742247114 + ], + [ + 77.4942620914684, + 13.014175751499099 + ], + [ + 77.494282680529594, + 13.0141760223723 + ], + [ + 77.494410615488604, + 13.0141757955451 + ], + [ + 77.494435952079897, + 13.014175551824 + ], + [ + 77.494703736350303, + 13.014175234505799 + ], + [ + 77.494745772048702, + 13.014174830101499 + ], + [ + 77.495010677100893, + 13.0141745401652 + ], + [ + 77.495033134523695, + 13.0141743240879 + ], + [ + 77.495068836066693, + 13.0141739805765 + ], + [ + 77.495296312025999, + 13.014174050481101 + ], + [ + 77.4953412268612, + 13.014173618275199 + ], + [ + 77.495382122178896, + 13.0141743541102 + ], + [ + 77.495451221920305, + 13.0141736891519 + ], + [ + 77.495632992393595, + 13.014152740590999 + ], + [ + 77.495758748956007, + 13.0141165198583 + ], + [ + 77.495941941581904, + 13.0140650644591 + ], + [ + 77.496003922259405, + 13.0140479113412 + ], + [ + 77.496026390515496, + 13.014041693160699 + ], + [ + 77.496187165518705, + 13.013997200681001 + ], + [ + 77.4963041287604, + 13.013992534834999 + ], + [ + 77.496371168538701, + 13.0139734148164 + ], + [ + 77.496409877271205, + 13.013962463159899 + ], + [ + 77.496491048985007, + 13.0139394964155 + ], + [ + 77.496550777015301, + 13.0139231102475 + ], + [ + 77.496613308728399, + 13.013901785622 + ], + [ + 77.496663349399398, + 13.013895657006699 + ], + [ + 77.496699318602097, + 13.013891133846601 + ], + [ + 77.496883014493903, + 13.0138425543345 + ], + [ + 77.497223047077796, + 13.013811045890099 + ], + [ + 77.497245481808704, + 13.0138085711105 + ], + [ + 77.497291017583706, + 13.013812650067299 + ], + [ + 77.497345190801298, + 13.0138166458343 + ], + [ + 77.498133839014002, + 13.0138825940206 + ], + [ + 77.498198602460505, + 13.013888009065701 + ], + [ + 77.498338272513493, + 13.0138996882451 + ], + [ + 77.498416077356396, + 13.013905714840099 + ], + [ + 77.498875545120796, + 13.0139543678675 + ], + [ + 77.499005084034707, + 13.013950860818399 + ], + [ + 77.499043664582501, + 13.0139504890199 + ], + [ + 77.499115450227706, + 13.0139367010838 + ], + [ + 77.499188635574896, + 13.013914096910501 + ], + [ + 77.499277467908598, + 13.0138595498176 + ], + [ + 77.499435948751596, + 13.013762235884601 + ], + [ + 77.499762733203895, + 13.013530936119301 + ], + [ + 77.499684426107606, + 13.012925912855 + ], + [ + 77.499817077142794, + 13.012528234192599 + ], + [ + 77.499904876994194, + 13.0122982477705 + ], + [ + 77.499926076455097, + 13.0122264371421 + ], + [ + 77.499925454348798, + 13.012164384059901 + ], + [ + 77.499904751875107, + 13.0120428533842 + ], + [ + 77.499964480440696, + 13.0119277076024 + ], + [ + 77.499990764386098, + 13.0118773303012 + ], + [ + 77.499846462973693, + 13.011681848423599 + ], + [ + 77.499763763199894, + 13.0115698164786 + ], + [ + 77.499766781728894, + 13.0108990761518 + ], + [ + 77.499765893035004, + 13.010597061637499 + ], + [ + 77.499765672562205, + 13.010522117253499 + ], + [ + 77.499728444593202, + 13.010279098639099 + ], + [ + 77.499744660057502, + 13.0102100329936 + ], + [ + 77.499934735378901, + 13.0094005005959 + ], + [ + 77.499947705960196, + 13.009345258941 + ], + [ + 77.499872003910596, + 13.0092112253626 + ], + [ + 77.499855431197503, + 13.009174499087401 + ], + [ + 77.499803150869397, + 13.0090586384815 + ], + [ + 77.499223293918803, + 13.008569553357599 + ], + [ + 77.4992120982578, + 13.008576471746199 + ], + [ + 77.499145609721097, + 13.008619262040799 + ], + [ + 77.498926499306904, + 13.0087602758326 + ], + [ + 77.498882520828204, + 13.008788579464399 + ], + [ + 77.498670735442403, + 13.008917108530101 + ], + [ + 77.498525201726693, + 13.0089907897543 + ], + [ + 77.498401977769007, + 13.009049574274799 + ], + [ + 77.498393125580705, + 13.0090282015626 + ], + [ + 77.4982577344703, + 13.009085326937999 + ], + [ + 77.497911290468906, + 13.009231502828801 + ], + [ + 77.497206050876997, + 13.0094056281508 + ], + [ + 77.497147667281297, + 13.009418142515599 + ], + [ + 77.497143046839895, + 13.009436310184499 + ], + [ + 77.497115570664704, + 13.0095443507002 + ], + [ + 77.497107798736494, + 13.0095749130251 + ], + [ + 77.4971177078979, + 13.0096467101491 + ], + [ + 77.497116026215494, + 13.0096533236525 + ], + [ + 77.497114973041505, + 13.009657463663 + ], + [ + 77.497108254268497, + 13.009683884171 + ], + [ + 77.497098417663096, + 13.009722563487101 + ], + [ + 77.497110260446902, + 13.0097579990129 + ], + [ + 77.497058421907198, + 13.0099088020377 + ], + [ + 77.496382950025094, + 13.0101758490609 + ], + [ + 77.495680773440696, + 13.0103800614903 + ], + [ + 77.495278632041106, + 13.010431900030101 + ], + [ + 77.494955033883699, + 13.0104774551105 + ], + [ + 77.4949536894716, + 13.010469065534201 + ], + [ + 77.493784739576299, + 13.0106879509993 + ], + [ + 77.4933857399065, + 13.010746072998501 + ], + [ + 77.492696130240802, + 13.010852891807801 + ], + [ + 77.492485056786094, + 13.0108584657007 + ], + [ + 77.492429033848893, + 13.010866815686301 + ], + [ + 77.492424611426301, + 13.0108662040511 + ], + [ + 77.492148804992993, + 13.0108280884289 + ], + [ + 77.491895774603805, + 13.009853821768299 + ], + [ + 77.491834510874995, + 13.009637042420101 + ], + [ + 77.491782672335205, + 13.009503518908501 + ], + [ + 77.491663047305295, + 13.0094243471359 + ], + [ + 77.491164692192299, + 13.0093215612967 + ], + [ + 77.490788314890196, + 13.0092349010205 + ], + [ + 77.4905903859201, + 13.009173637291701 + ], + [ + 77.490454506111206, + 13.009052680698799 + ], + [ + 77.490251500375393, + 13.008724265428899 + ], + [ + 77.490200026006804, + 13.008654466461399 + ], + [ + 77.490125462070694, + 13.0085533588201 + ], + [ + 77.490081083438298, + 13.008503583707601 + ], + [ + 77.489898969570604, + 13.0082986219748 + ], + [ + 77.489663811113004, + 13.0081861336161 + ], + [ + 77.489193101643096, + 13.008205199116601 + ], + [ + 77.488563184841396, + 13.008222478629801 + ], + [ + 77.488003956957698, + 13.0082680337103 + ], + [ + 77.4877117760971, + 13.0082696045751 + ], + [ + 77.487372469291202, + 13.008260179385999 + ], + [ + 77.486433092115604, + 13.0081030929019 + ], + [ + 77.485966814537804, + 13.008068594227099 + ], + [ + 77.485303297853093, + 13.0080271409314 + ], + [ + 77.484864425674999, + 13.008021783155201 + ], + [ + 77.484831037359299, + 13.008012773392799 + ], + [ + 77.484839478416802, + 13.0080052901525 + ], + [ + 77.484876591837804, + 13.0079733121079 + ], + [ + 77.484896498102998, + 13.007948275139199 + ], + [ + 77.485058006370906, + 13.007743440218 + ], + [ + 77.485092299421197, + 13.007699449104599 + ], + [ + 77.485168885140297, + 13.0076012059696 + ], + [ + 77.485225182585197, + 13.0075295159271 + ], + [ + 77.485254481070797, + 13.0074991604074 + ], + [ + 77.4854617289282, + 13.0072844338381 + ], + [ + 77.485555771516999, + 13.0071864064809 + ], + [ + 77.485721941601597, + 13.006987173535 + ], + [ + 77.485799341503593, + 13.0068949524565 + ], + [ + 77.485906731799702, + 13.006717467007199 + ], + [ + 77.485934745289399, + 13.006671167918499 + ], + [ + 77.485938719750806, + 13.0066654829544 + ], + [ + 77.485993109277899, + 13.0065757410697 + ], + [ + 77.486114049799596, + 13.006345318812 + ], + [ + 77.486154542995607, + 13.006268733132099 + ], + [ + 77.485130845161507, + 13.0064269801154 + ], + [ + 77.485036593271005, + 13.0059368702847 + ], + [ + 77.485331915861295, + 13.0058756065559 + ], + [ + 77.485098442688596, + 13.004658461462499 + ], + [ + 77.486051371958993, + 13.004482249441001 + ], + [ + 77.485842446934996, + 13.003293104755601 + ], + [ + 77.485979897608701, + 13.0032554039994 + ], + [ + 77.485690858477696, + 13.001968865693801 + ], + [ + 77.483093994628007, + 13.0022691967336 + ], + [ + 77.4815738234674, + 13.0026184106652 + ], + [ + 77.480728496441699, + 13.0027747193578 + ], + [ + 77.480191260665805, + 13.002883109031901 + ], + [ + 77.480056166289302, + 13.002089822286701 + ], + [ + 77.479870804238004, + 13.001023205059001 + ], + [ + 77.479676802430006, + 13.0003760087441 + ], + [ + 77.479343779083493, + 12.999767298617799 + ], + [ + 77.479089298979005, + 12.999226921112101 + ], + [ + 77.478866236171498, + 12.998830277739501 + ], + [ + 77.478768039390005, + 12.9986985235972 + ], + [ + 77.478635319039697, + 12.9987768683349 + ], + [ + 77.478587396562006, + 12.9987129432897 + ], + [ + 77.478547350608594, + 12.998717175470899 + ], + [ + 77.477735213485204, + 12.998864836766 + ], + [ + 77.477620540351793, + 12.998547522068 + ], + [ + 77.477554564028395, + 12.998252199477699 + ], + [ + 77.476338714640605, + 12.9985066795821 + ], + [ + 77.476388982315598, + 12.9987517344974 + ], + [ + 77.475587489233803, + 12.9988915604703 + ], + [ + 77.4756382248422, + 12.999221992381299 + ], + [ + 77.475334932006604, + 12.999277974219501 + ], + [ + 77.474899114462502, + 12.9993462605619 + ], + [ + 77.474844822175896, + 12.999332954489001 + ], + [ + 77.474738385009303, + 12.9993601134282 + ], + [ + 77.474734101922905, + 12.999360710821099 + ], + [ + 77.474709727799507, + 12.9993549465967 + ], + [ + 77.474638781866304, + 12.9993740075173 + ], + [ + 77.474530649207495, + 12.999387934758399 + ], + [ + 77.474403014790596, + 12.999364664890701 + ], + [ + 77.474392413101398, + 12.9993675135155 + ], + [ + 77.474281460081201, + 12.999290616575101 + ], + [ + 77.474269941108105, + 12.999287836042001 + ], + [ + 77.474215816477894, + 12.999274895959299 + ], + [ + 77.474354195205606, + 12.999848568240401 + ], + [ + 77.474379011800593, + 12.9999512910329 + ], + [ + 77.474408900519606, + 13.0000750090925 + ], + [ + 77.474522590139202, + 13.0005456101795 + ], + [ + 77.474534947120304, + 13.000596758363899 + ], + [ + 77.474747292394596, + 13.000725556546 + ], + [ + 77.474780590530699, + 13.000745753234099 + ], + [ + 77.474800900266203, + 13.0008537014302 + ], + [ + 77.474848675622596, + 13.001107636853 + ], + [ + 77.474916016208994, + 13.001341451581199 + ], + [ + 77.474920714659902, + 13.0013624820172 + ], + [ + 77.474936043800994, + 13.001410990679201 + ], + [ + 77.475050062356104, + 13.0018068751779 + ], + [ + 77.475193998978995, + 13.002306636074699 + ], + [ + 77.475202171158401, + 13.002335009608901 + ], + [ + 77.475266157456204, + 13.0025571746494 + ], + [ + 77.475344241215595, + 13.0029823996357 + ], + [ + 77.4753544565813, + 13.003038030577001 + ], + [ + 77.475377295061605, + 13.0031624028822 + ], + [ + 77.475419563121704, + 13.003392585794099 + ], + [ + 77.475395624249998, + 13.003396094773899 + ], + [ + 77.475374472216799, + 13.003399194985599 + ], + [ + 77.475271204454799, + 13.0034143298177 + ], + [ + 77.475194157231002, + 13.003426358537601 + ], + [ + 77.4751927334448, + 13.0034854127586 + ], + [ + 77.475191530900602, + 13.0035352816129 + ], + [ + 77.475171309871101, + 13.0043741305727 + ], + [ + 77.474998808399107, + 13.004864799685301 + ], + [ + 77.475007161110497, + 13.004894084031999 + ], + [ + 77.475232842137302, + 13.005700571028401 + ], + [ + 77.475283930568693, + 13.005931309416001 + ], + [ + 77.475361828058197, + 13.006283124983099 + ], + [ + 77.475398034483703, + 13.0064466478692 + ], + [ + 77.475306485659601, + 13.006472361426001 + ], + [ + 77.475051876258902, + 13.006543875277201 + ], + [ + 77.474894393919499, + 13.0065881080191 + ], + [ + 77.474583450830707, + 13.006707400538 + ], + [ + 77.474219472846698, + 13.006879150235701 + ], + [ + 77.4740374407084, + 13.0069317084546 + ], + [ + 77.473733115338504, + 13.0070189690375 + ], + [ + 77.473459957032901, + 13.0070972928137 + ], + [ + 77.473308148323397, + 13.007140821886299 + ], + [ + 77.473064923102299, + 13.0072070302882 + ], + [ + 77.472857605727697, + 13.0072634635975 + ], + [ + 77.472857382428998, + 13.007263524454 + ], + [ + 77.472839495499201, + 13.0072683931886 + ], + [ + 77.4728559931863, + 13.007400186254401 + ], + [ + 77.472857397054199, + 13.007411397169999 + ], + [ + 77.472858197380006, + 13.007416099535799 + ], + [ + 77.472936460066506, + 13.0078758234514 + ], + [ + 77.473029685745104, + 13.0084234407695 + ], + [ + 77.473099670270003, + 13.008834537950699 + ], + [ + 77.473121022204694, + 13.0088287796203 + ], + [ + 77.473239229242793, + 13.008804423457001 + ], + [ + 77.473442859085296, + 13.0087624655861 + ], + [ + 77.473740206985099, + 13.0092463956227 + ], + [ + 77.473957642971399, + 13.0096006748407 + ], + [ + 77.473968115487907, + 13.009617738009901 + ], + [ + 77.473988978131501, + 13.009651732316399 + ], + [ + 77.474032372040895, + 13.009743492577901 + ], + [ + 77.474724849927497, + 13.011207780961 + ], + [ + 77.474730864963206, + 13.0112213376279 + ], + [ + 77.474786032915105, + 13.011385562304801 + ], + [ + 77.474792564308601, + 13.011405004009999 + ], + [ + 77.474798818461394, + 13.011423620746999 + ], + [ + 77.474803141403797, + 13.0114364897233 + ], + [ + 77.474803831374004, + 13.011437586323 + ], + [ + 77.474805770205293, + 13.0114448446758 + ], + [ + 77.474840537208706, + 13.011575008386099 + ], + [ + 77.4749100459277, + 13.011836022678199 + ], + [ + 77.475086638613206, + 13.012499142976299 + ], + [ + 77.475139927051899, + 13.0126992447281 + ], + [ + 77.475143846366095, + 13.0127139606986 + ], + [ + 77.475174124282205, + 13.012827657343101 + ], + [ + 77.475207218019705, + 13.0129519261507 + ], + [ + 77.475233897260196, + 13.013052105413999 + ], + [ + 77.475236298646905, + 13.013061123893999 + ], + [ + 77.475258845017507, + 13.0131460507315 + ], + [ + 77.476116940072799, + 13.014077811746199 + ], + [ + 77.476353662662106, + 13.0143348550121 + ], + [ + 77.476370805565296, + 13.0143534688837 + ], + [ + 77.476502532309198, + 13.0144545664551 + ], + [ + 77.4765934065409, + 13.0145243103141 + ], + [ + 77.476938832304597, + 13.0147894147618 + ], + [ + 77.477005426154406, + 13.014840523345301 + ], + [ + 77.476972191034406, + 13.014942080518701 + ], + [ + 77.476926325938194, + 13.015082232351 + ], + [ + 77.476925207910497, + 13.0152914264429 + ], + [ + 77.476937643588002, + 13.015432763317801 + ], + [ + 77.4770374132748, + 13.0157670219075 + ], + [ + 77.477270900330595, + 13.0166385891626 + ], + [ + 77.477280058244801, + 13.016672775260201 + ], + [ + 77.477338119596993, + 13.0168895064611 + ], + [ + 77.477358616300293, + 13.0169660146568 + ], + [ + 77.477408127565198, + 13.0171508316578 + ], + [ + 77.477450912613705, + 13.017238697152701 + ], + [ + 77.477500944418907, + 13.0173414464067 + ], + [ + 77.477518587114403, + 13.0173776791589 + ], + [ + 77.477567341581207, + 13.0174778041662 + ], + [ + 77.477578738459002, + 13.017503067503 + ], + [ + 77.4778071582259, + 13.018009419060901 + ], + [ + 77.478028701871196, + 13.018500525167401 + ], + [ + 77.478103151230698, + 13.018641229268701 + ], + [ + 77.478278161789305, + 13.0189719865554 + ], + [ + 77.478284151187296, + 13.019002287074199 + ], + [ + 77.478289248931006, + 13.019028077686899 + ], + [ + 77.478319554985404, + 13.019181399209801 + ], + [ + 77.4783982150405, + 13.019594996472099 + ], + [ + 77.478493849027998, + 13.020146405624301 + ], + [ + 77.478744230695995, + 13.021590051159301 + ], + [ + 77.478802624195197, + 13.0219267340043 + ], + [ + 77.478834875371504, + 13.022125888687 + ], + [ + 77.478339875760298, + 13.022284739865301 + ], + [ + 77.478457084339396, + 13.0240279157935 + ], + [ + 77.478476321640102, + 13.024314009140101 + ], + [ + 77.478487990885299, + 13.02448755659 + ], + [ + 77.478489471502499, + 13.024509581623001 + ], + [ + 77.4785842239435, + 13.0259187138054 + ], + [ + 77.478592020660201, + 13.026034668203399 + ], + [ + 77.478603925978504, + 13.0262117135208 + ], + [ + 77.478614975250593, + 13.0263470847361 + ], + [ + 77.478659580647403, + 13.026483441390599 + ], + [ + 77.4787870210736, + 13.0268730231238 + ], + [ + 77.478890646068706, + 13.0271897987088 + ], + [ + 77.479009390313493, + 13.027552792854999 + ], + [ + 77.479242691666698, + 13.0282659757352 + ], + [ + 77.479354994373097, + 13.0286092724409 + ], + [ + 77.479411636780299, + 13.028782423549499 + ], + [ + 77.479513457050203, + 13.029093676467401 + ], + [ + 77.479535352631004, + 13.029160608071299 + ], + [ + 77.4793918691811, + 13.0292926742337 + ], + [ + 77.478835364013705, + 13.029810224939499 + ], + [ + 77.478656910227798, + 13.0299688551143 + ], + [ + 77.478519069013302, + 13.030091383767401 + ], + [ + 77.4784333549173, + 13.030167576998201 + ], + [ + 77.478433322034604, + 13.030167606225 + ], + [ + 77.477889725192696, + 13.030661397233001 + ], + [ + 77.477532910388007, + 13.0309219426815 + ], + [ + 77.477293753764201, + 13.0311399719308 + ], + [ + 77.477181985982099, + 13.0312418658088 + ], + [ + 77.477173057195301, + 13.0312497873088 + ], + [ + 77.477050178827199, + 13.031361588638701 + ], + [ + 77.476873059517899, + 13.03152194624 + ], + [ + 77.476952258266095, + 13.0316750548914 + ], + [ + 77.477017561443603, + 13.031805240750099 + ], + [ + 77.477087415268301, + 13.0319498048071 + ], + [ + 77.477490287366294, + 13.032780115880399 + ], + [ + 77.477560839488902, + 13.0329255223216 + ], + [ + 77.477793631920505, + 13.0333481266749 + ], + [ + 77.4778260894185, + 13.033407048080599 + ], + [ + 77.478141005849494, + 13.033963185633301 + ], + [ + 77.478168647761393, + 13.0340246069696 + ], + [ + 77.478205795585495, + 13.0340988610547 + ], + [ + 77.478208207233493, + 13.0341036816623 + ], + [ + 77.478212223855607, + 13.034111713324201 + ], + [ + 77.478404185886703, + 13.034495436670801 + ], + [ + 77.478422081996598, + 13.034531210398001 + ], + [ + 77.478676672852799, + 13.035044370789601 + ], + [ + 77.4786906397526, + 13.035038133013 + ], + [ + 77.478706247917501, + 13.035031161238299 + ], + [ + 77.478734273651, + 13.0350453146829 + ], + [ + 77.479347836867504, + 13.0353551660895 + ], + [ + 77.479788321905801, + 13.035577610632499 + ], + [ + 77.4799130668478, + 13.035641839448999 + ], + [ + 77.479959495597697, + 13.0366310715164 + ], + [ + 77.480096765337095, + 13.0379278114826 + ], + [ + 77.480152099126002, + 13.0379624339612 + ], + [ + 77.480446188576195, + 13.0381464489355 + ], + [ + 77.480529563107197, + 13.0381986170009 + ], + [ + 77.480854978263906, + 13.0384022317894 + ], + [ + 77.481092167207905, + 13.0390415582819 + ], + [ + 77.481121705126498, + 13.0391211745953 + ], + [ + 77.481339711870902, + 13.0397087918148 + ], + [ + 77.481754771258295, + 13.0398876868425 + ], + [ + 77.482107161189404, + 13.040016982611499 + ], + [ + 77.482228870494794, + 13.040258630636901 + ], + [ + 77.482401927208798, + 13.0406022232987 + ], + [ + 77.482445469779506, + 13.040644298259901 + ], + [ + 77.482484901442206, + 13.0406824019972 + ], + [ + 77.4825285445297, + 13.040724573553399 + ], + [ + 77.482729377848699, + 13.040609395986801 + ], + [ + 77.482959205713996, + 13.040477588584499 + ], + [ + 77.483696012451205, + 13.040269193136 + ], + [ + 77.484385283742498, + 13.039829246709999 + ], + [ + 77.484763630933102, + 13.039645550139699 + ], + [ + 77.484776897555903, + 13.0396374719855 + ], + [ + 77.484858701976407, + 13.0395876618713 + ], + [ + 77.485120149974705, + 13.039587662719599 + ], + [ + 77.485631161441503, + 13.0395992395426 + ], + [ + 77.486379853095201, + 13.0398307904546 + ], + [ + 77.486974051764506, + 13.040016031040301 + ], + [ + 77.487235499998206, + 13.0400391863359 + ], + [ + 77.487651439371007, + 13.040085496809899 + ], + [ + 77.487841582949002, + 13.0401781164698 + ], + [ + 77.488091146780306, + 13.040189694723701 + ], + [ + 77.488407669221701, + 13.040236311393601 + ], + [ + 77.488547476192593, + 13.040156197286599 + ], + [ + 77.488750117757306, + 13.039625244970001 + ], + [ + 77.489098849752196, + 13.039257662597 + ], + [ + 77.489504132881393, + 13.038802111792799 + ], + [ + 77.489607809961001, + 13.0384313876901 + ], + [ + 77.489418849729404, + 13.0382459627982 + ], + [ + 77.489300692802999, + 13.0368627272005 + ], + [ + 77.488437228419599, + 13.036806718882801 + ], + [ + 77.487473258233507, + 13.0368049813342 + ], + [ + 77.487093912311707, + 13.0366841592139 + ], + [ + 77.486918009519002, + 13.0365011492375 + ], + [ + 77.486553766362206, + 13.0363323536283 + ], + [ + 77.486582195096403, + 13.0360800486124 + ], + [ + 77.486562650341696, + 13.035927244166199 + ], + [ + 77.486445381813098, + 13.035726466231001 + ], + [ + 77.486500462485594, + 13.0355470098464 + ], + [ + 77.486743883522095, + 13.035443955685 + ], + [ + 77.486859375254696, + 13.03533379434 + ], + [ + 77.486839830500003, + 13.035067274956999 + ], + [ + 77.486855821662999, + 13.0347687732481 + ], + [ + 77.486719008379694, + 13.0344756019268 + ], + [ + 77.486697412692294, + 13.0341253133065 + ], + [ + 77.486754456074195, + 13.033828921902501 + ], + [ + 77.486688652407395, + 13.033565364656701 + ], + [ + 77.487513847126806, + 13.0332722748328 + ], + [ + 77.487189463537007, + 13.0316487860186 + ], + [ + 77.487148621051105, + 13.031560817587501 + ], + [ + 77.487206743050194, + 13.0313785972658 + ], + [ + 77.487418024371493, + 13.0307094088431 + ], + [ + 77.487520972790705, + 13.030367129381901 + ], + [ + 77.4885294112472, + 13.030193379742499 + ], + [ + 77.488944904997595, + 13.0301332941622 + ], + [ + 77.489051723806895, + 13.030094807973599 + ], + [ + 77.488614237948397, + 13.0291232280688 + ], + [ + 77.488358282055103, + 13.0285468418991 + ], + [ + 77.488355437965694, + 13.028540437212399 + ], + [ + 77.488352297049502, + 13.0285410302629 + ], + [ + 77.488324068314697, + 13.028546356493701 + ], + [ + 77.4883237206529, + 13.0285464221746 + ], + [ + 77.488199136913906, + 13.028570676360699 + ], + [ + 77.488111953915194, + 13.028576959820001 + ], + [ + 77.4880381232676, + 13.028614660576199 + ], + [ + 77.487401923006601, + 13.0287301191421 + ], + [ + 77.4870760933714, + 13.028786872234299 + ], + [ + 77.486845836852495, + 13.0288432214107 + ], + [ + 77.486710082805203, + 13.028876443462901 + ], + [ + 77.486556985281794, + 13.0289203798351 + ], + [ + 77.4857727679845, + 13.026066089818601 + ], + [ + 77.485559794120704, + 13.0251886374999 + ], + [ + 77.485332621999305, + 13.024580952075199 + ], + [ + 77.485312744438701, + 13.0244276108933 + ], + [ + 77.485331388016405, + 13.0243415636113 + ], + [ + 77.485123989598407, + 13.0240622421684 + ], + [ + 77.484845904981597, + 13.0234439615746 + ], + [ + 77.484631993231901, + 13.022978513107301 + ], + [ + 77.484553558319007, + 13.022693685518901 + ], + [ + 77.484567819058299, + 13.022318546992601 + ], + [ + 77.484539297931704, + 13.021915620319801 + ], + [ + 77.484439471893893, + 13.0214571161113 + ], + [ + 77.484168517038398, + 13.0205053698563 + ], + [ + 77.4839332148144, + 13.0196091962846 + ], + [ + 77.483669390285002, + 13.019213212125299 + ], + [ + 77.483305739905006, + 13.018567130394599 + ], + [ + 77.483873794626206, + 13.018554394173201 + ], + [ + 77.484921962037504, + 13.018498817898299 + ], + [ + 77.485064569972806, + 13.018505764893501 + ], + [ + 77.485271350970393, + 13.0186377600334 + ], + [ + 77.485535175901902, + 13.0188809087441 + ], + [ + 77.485734827278606, + 13.0190823750868 + ], + [ + 77.4858061303661, + 13.0193949946537 + ], + [ + 77.485834652325295, + 13.020096650769201 + ], + [ + 77.485905956197797, + 13.0202147510606 + ], + [ + 77.486519169947798, + 13.020186962995 + ], + [ + 77.487339164760002, + 13.020124439237399 + ], + [ + 77.488458636857899, + 13.020166121641299 + ], + [ + 77.488629765727694, + 13.020235592170099 + ], + [ + 77.488644026378594, + 13.020506528396 + ], + [ + 77.488544200872198, + 13.021110921995 + ], + [ + 77.489157414643401, + 13.0212429155682 + ], + [ + 77.489806280297898, + 13.0216180560093 + ], + [ + 77.490048713587996, + 13.021777837948401 + ], + [ + 77.490231050587198, + 13.021790038270099 + ], + [ + 77.490284459991798, + 13.0216832194609 + ], + [ + 77.4905986329602, + 13.0205427715856 + ], + [ + 77.491525835933402, + 13.0210022495519 + ], + [ + 77.491583055088498, + 13.0208619865733 + ], + [ + 77.491626763999307, + 13.020653517556999 + ], + [ + 77.491587099662297, + 13.0202278131848 + ], + [ + 77.491521355930999, + 13.019832317760599 + ], + [ + 77.491917773867399, + 13.019790459966099 + ], + [ + 77.492095855081601, + 13.019767432222899 + ], + [ + 77.492064249857805, + 13.0191784754703 + ], + [ + 77.493289026597395, + 13.018866380949 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "329", + "group": "Herohalli", + "Corporatio": "West", + "ac_no": "153", + "ac": "Yeshwanthapura", + "corporat_1": "5", + "ward_id": "22", + "ward_name": "22 - Herohalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಯಶವಂತಪುರ", + "ward_name_": "ಹೆರೋಹಳ್ಳಿ", + "dig_ward_n": "Herohalli", + "Assembly": "153 - Yeshwanthapura", + "Slno": "22" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.485927896927095, + 12.985484606466899 + ], + [ + 77.485205624972906, + 12.985299271608699 + ], + [ + 77.485136216585303, + 12.9852773189321 + ], + [ + 77.485104040605293, + 12.9852671414986 + ], + [ + 77.485092160062607, + 12.9851978272356 + ], + [ + 77.485079544938301, + 12.9852593933138 + ], + [ + 77.485074997793802, + 12.985281584370099 + ], + [ + 77.485095356694998, + 12.9852876599788 + ], + [ + 77.485088524734607, + 12.9853152297555 + ], + [ + 77.485086118104405, + 12.9853249428413 + ], + [ + 77.485022773684094, + 12.985580547910899 + ], + [ + 77.485015840735699, + 12.985608525230001 + ], + [ + 77.484974099444798, + 12.985776959725699 + ], + [ + 77.4849651691177, + 12.985821433332299 + ], + [ + 77.484964502808793, + 12.9858251196725 + ], + [ + 77.484919490883797, + 12.9860742601421 + ], + [ + 77.484901091724097, + 12.986198647898 + ], + [ + 77.484890985242501, + 12.986266970779299 + ], + [ + 77.484841034688998, + 12.986604654807801 + ], + [ + 77.484838018374205, + 12.9866250468072 + ], + [ + 77.484821511405002, + 12.986737557992701 + ], + [ + 77.484820761583904, + 12.9867426672457 + ], + [ + 77.484819196647507, + 12.9868748195411 + ], + [ + 77.484835410066907, + 12.9870139665886 + ], + [ + 77.484843119950099, + 12.9870801376989 + ], + [ + 77.484844526328402, + 12.9870926883624 + ], + [ + 77.484850703063898, + 12.9871478279057 + ], + [ + 77.484856173467094, + 12.987193828042001 + ], + [ + 77.484862642291702, + 12.987248228435201 + ], + [ + 77.484891941665893, + 12.987414360824101 + ], + [ + 77.484892396668599, + 12.987416941394599 + ], + [ + 77.484898036291497, + 12.987448920252101 + ], + [ + 77.484952120090696, + 12.987780193663101 + ], + [ + 77.484979589869596, + 12.9879484540983 + ], + [ + 77.4849863502115, + 12.9879913058256 + ], + [ + 77.484998875240393, + 12.9880661081004 + ], + [ + 77.485006552634204, + 12.988111956104801 + ], + [ + 77.485011665524695, + 12.9881773036435 + ], + [ + 77.485028982031295, + 12.9883986037326 + ], + [ + 77.485041858288099, + 12.988560859005499 + ], + [ + 77.485055980603804, + 12.9887388061368 + ], + [ + 77.485060374078202, + 12.9887944370517 + ], + [ + 77.485085620562799, + 12.9891140879489 + ], + [ + 77.485116850252695, + 12.9895012482359 + ], + [ + 77.485119119253298, + 12.9895293787722 + ], + [ + 77.485127255150502, + 12.989633159485299 + ], + [ + 77.4851336278562, + 12.989714458039 + ], + [ + 77.4851290477433, + 12.989890684890799 + ], + [ + 77.485110143230997, + 12.9906415156916 + ], + [ + 77.485109436105105, + 12.9906696222947 + ], + [ + 77.485109390334898, + 12.990671411667901 + ], + [ + 77.485108955241998, + 12.9906887070654 + ], + [ + 77.485103940924304, + 12.9908878653508 + ], + [ + 77.485103393424097, + 12.9909096052499 + ], + [ + 77.485098569363799, + 12.9911012138523 + ], + [ + 77.485097281520297, + 12.991152350873501 + ], + [ + 77.485094377384101, + 12.991267728846999 + ], + [ + 77.485094255343199, + 12.991276946645501 + ], + [ + 77.4850940478495, + 12.991292577420101 + ], + [ + 77.4851028306731, + 12.991360053705099 + ], + [ + 77.485114250240699, + 12.991447795623699 + ], + [ + 77.485115598990205, + 12.9914581576401 + ], + [ + 77.485118087008999, + 12.9914772736354 + ], + [ + 77.485136257307403, + 12.9916168761601 + ], + [ + 77.4851553334708, + 12.9917634387271 + ], + [ + 77.485163994717396, + 12.9918299873649 + ], + [ + 77.485172199024802, + 12.991893021230901 + ], + [ + 77.485175205806698, + 12.991916122127501 + ], + [ + 77.485182264878901, + 12.991970357799801 + ], + [ + 77.485197420555807, + 12.992086800755599 + ], + [ + 77.4851975502702, + 12.992087799691699 + ], + [ + 77.4852161153905, + 12.992082341980099 + ], + [ + 77.485292860845504, + 12.9920597826113 + ], + [ + 77.485600141033302, + 12.992001728271401 + ], + [ + 77.485618509940807, + 12.991995905589301 + ], + [ + 77.486006511894502, + 12.9919193322505 + ], + [ + 77.486016420216401, + 12.991917687002299 + ], + [ + 77.486142452064698, + 12.9918795452515 + ], + [ + 77.486652083571698, + 12.991794921648999 + ], + [ + 77.486706693051005, + 12.991785363796 + ], + [ + 77.486754968907405, + 12.991775866572601 + ], + [ + 77.487090891768403, + 12.9917503898966 + ], + [ + 77.487092660798496, + 12.991759925677499 + ], + [ + 77.487098973058295, + 12.991825697837999 + ], + [ + 77.487101887822206, + 12.991854066976201 + ], + [ + 77.487107371439706, + 12.991907433083201 + ], + [ + 77.487140031358905, + 12.9925077995258 + ], + [ + 77.487519804396698, + 12.9924563518356 + ], + [ + 77.4875355720729, + 12.992570945455499 + ], + [ + 77.487608359937596, + 12.9929974170979 + ], + [ + 77.487873102524702, + 12.993873377470001 + ], + [ + 77.488049005317507, + 12.9944241841949 + ], + [ + 77.488367176337107, + 12.9943176186739 + ], + [ + 77.488652269519903, + 12.9943053249155 + ], + [ + 77.488928484929204, + 12.9942497199219 + ], + [ + 77.488940760306306, + 12.994247248651 + ], + [ + 77.488951511149907, + 12.9942450847256 + ], + [ + 77.488944080819607, + 12.9942566746649 + ], + [ + 77.488961457915096, + 12.9943059901042 + ], + [ + 77.488972113836894, + 12.994335252628099 + ], + [ + 77.490100276089393, + 12.994212720536501 + ], + [ + 77.490143859990297, + 12.994647219874301 + ], + [ + 77.490751399566406, + 12.994594440693101 + ], + [ + 77.491002818437593, + 12.9945601332058 + ], + [ + 77.491130192775103, + 12.9945517004919 + ], + [ + 77.491416660826999, + 12.994526893504901 + ], + [ + 77.491606735472899, + 12.994512755721299 + ], + [ + 77.491787384929694, + 12.994482909289299 + ], + [ + 77.491958609197496, + 12.994457775451799 + ], + [ + 77.492235081409703, + 12.9943808030746 + ], + [ + 77.492612088971796, + 12.994228429184901 + ], + [ + 77.492813159671599, + 12.9941545985373 + ], + [ + 77.493124190910294, + 12.9940305002148 + ], + [ + 77.493747824252495, + 12.993804295677499 + ], + [ + 77.494313335595706, + 12.993600083248101 + ], + [ + 77.494478276404095, + 12.9935419612489 + ], + [ + 77.494616512510206, + 12.9935105439521 + ], + [ + 77.494715476995296, + 12.993790157894001 + ], + [ + 77.494779882453798, + 12.9939331065946 + ], + [ + 77.493871315436706, + 12.994516254575901 + ], + [ + 77.494193949867693, + 12.995043708037899 + ], + [ + 77.494368315865202, + 12.995320180250101 + ], + [ + 77.493931615439095, + 12.995593510732601 + ], + [ + 77.493854643061795, + 12.9956830500286 + ], + [ + 77.493855413576696, + 12.995684368058299 + ], + [ + 77.493700698307293, + 12.9957615932707 + ], + [ + 77.493059785451706, + 12.9961009000766 + ], + [ + 77.493477635499701, + 12.996712751932501 + ], + [ + 77.493815371440803, + 12.9964731950441 + ], + [ + 77.493960676438704, + 12.996654629933399 + ], + [ + 77.4943337827997, + 12.9971544450329 + ], + [ + 77.494887486695504, + 12.997802146700399 + ], + [ + 77.494924212357603, + 12.9979007301651 + ], + [ + 77.494935398073196, + 12.997971014670901 + ], + [ + 77.494863966768804, + 12.997970634390001 + ], + [ + 77.494695920172504, + 12.9979865922503 + ], + [ + 77.493936328033698, + 12.998077833480201 + ], + [ + 77.4935907377684, + 12.9981249594255 + ], + [ + 77.493432865851801, + 12.9981681582086 + ], + [ + 77.493248289232795, + 12.9981909357488 + ], + [ + 77.493380241879606, + 12.998599360607701 + ], + [ + 77.493502769337198, + 12.9989983602776 + ], + [ + 77.494615979906698, + 12.9987690555312 + ], + [ + 77.494724902184302, + 12.999059624006399 + ], + [ + 77.494786165913197, + 12.9992591238414 + ], + [ + 77.494817583209993, + 12.999413068595899 + ], + [ + 77.494864709155294, + 12.9995340251887 + ], + [ + 77.494940110667699, + 12.9997036785917 + ], + [ + 77.494971527964594, + 12.999860765075899 + ], + [ + 77.494993033268102, + 12.999943514518501 + ], + [ + 77.495004516126201, + 12.9999762236418 + ], + [ + 77.495071277882005, + 13.000157658531 + ], + [ + 77.495084427720101, + 13.000189558354 + ], + [ + 77.495112905800298, + 13.0002903966102 + ], + [ + 77.495115178496505, + 13.0003736165823 + ], + [ + 77.495116196064302, + 13.000376142914 + ], + [ + 77.495122770049704, + 13.0003924591994 + ], + [ + 77.495253495266795, + 13.0003610041169 + ], + [ + 77.496224433798403, + 13.0001432033594 + ], + [ + 77.496365189288696, + 13.0001116287162 + ], + [ + 77.496390459170499, + 13.0000539179764 + ], + [ + 77.496430147014195, + 12.9999788407282 + ], + [ + 77.496895991634801, + 12.999682956836001 + ], + [ + 77.497044785423597, + 12.9996267710643 + ], + [ + 77.497306661259998, + 12.9995000863711 + ], + [ + 77.497823276519995, + 12.999250167674701 + ], + [ + 77.497900412665501, + 12.999212851996001 + ], + [ + 77.497909687177696, + 12.999210190504 + ], + [ + 77.497964249799395, + 12.9992068348222 + ], + [ + 77.498136429032201, + 12.999176065547401 + ], + [ + 77.498298221849595, + 12.999147152516199 + ], + [ + 77.498658861088799, + 12.999105283004599 + ], + [ + 77.498844955165396, + 12.9990571876719 + ], + [ + 77.498836261720996, + 12.9990516245192 + ], + [ + 77.498683995639595, + 12.9987576097569 + ], + [ + 77.498861052169104, + 12.9986534935811 + ], + [ + 77.498987388286196, + 12.9985964614363 + ], + [ + 77.499045441478003, + 12.998570254219899 + ], + [ + 77.499111530329699, + 12.998767458707601 + ], + [ + 77.499112036835299, + 12.998769183118201 + ], + [ + 77.499345857556605, + 12.998703391176299 + ], + [ + 77.499654154141993, + 12.998610073488299 + ], + [ + 77.499669126969707, + 12.998606192469399 + ], + [ + 77.499922130272594, + 12.9985406137918 + ], + [ + 77.499952820278494, + 12.998532659341 + ], + [ + 77.499785086590094, + 12.997998954845601 + ], + [ + 77.499927407093097, + 12.997892553345199 + ], + [ + 77.499944590374497, + 12.997883352949501 + ], + [ + 77.500167119884907, + 12.997759071327099 + ], + [ + 77.500187391473702, + 12.9977477495912 + ], + [ + 77.5002194661365, + 12.9977305002091 + ], + [ + 77.500442441190998, + 12.9975702415394 + ], + [ + 77.500471027134495, + 12.9975496376353 + ], + [ + 77.500613968088004, + 12.997447747336601 + ], + [ + 77.500643694271005, + 12.997426003069799 + ], + [ + 77.500822166241605, + 12.9972886209767 + ], + [ + 77.500825280356196, + 12.9972862238297 + ], + [ + 77.500859126921497, + 12.997260169949501 + ], + [ + 77.500883163034104, + 12.997245256666099 + ], + [ + 77.501203831576703, + 12.997055272070201 + ], + [ + 77.501408057020399, + 12.9969346742038 + ], + [ + 77.5014781670113, + 12.9968932729114 + ], + [ + 77.501342968147895, + 12.996660163495999 + ], + [ + 77.501469297539799, + 12.9965579386919 + ], + [ + 77.501205263211006, + 12.9963259502019 + ], + [ + 77.501156427538405, + 12.9962830412604 + ], + [ + 77.500957178220006, + 12.996107974493 + ], + [ + 77.500695954798005, + 12.9958804793163 + ], + [ + 77.500619368700299, + 12.9958137820073 + ], + [ + 77.500577939849293, + 12.9957779482167 + ], + [ + 77.500501386208299, + 12.995748525953999 + ], + [ + 77.500491357868398, + 12.995705705713 + ], + [ + 77.500455802624401, + 12.9955530262274 + ], + [ + 77.500317821547796, + 12.9949344141603 + ], + [ + 77.500290039664705, + 12.9948098595847 + ], + [ + 77.500231244824803, + 12.9945189696634 + ], + [ + 77.500183325425894, + 12.9942818855256 + ], + [ + 77.500131202532103, + 12.9941151543792 + ], + [ + 77.500130831331802, + 12.9941139680524 + ], + [ + 77.500102861025098, + 12.9940244951634 + ], + [ + 77.500036902587496, + 12.9938135058407 + ], + [ + 77.499947442003105, + 12.9935273389772 + ], + [ + 77.4999460637639, + 12.9935229296449 + ], + [ + 77.499945982853006, + 12.9935226702177 + ], + [ + 77.499883134376901, + 12.9933216317575 + ], + [ + 77.4998806786774, + 12.9933137751269 + ], + [ + 77.499856289340599, + 12.9932357574313 + ], + [ + 77.499768547306203, + 12.9929550860959 + ], + [ + 77.499719662902095, + 12.9928081661108 + ], + [ + 77.499629882065904, + 12.9925383300136 + ], + [ + 77.499617979712497, + 12.9925025587058 + ], + [ + 77.499410322652693, + 12.9918189735096 + ], + [ + 77.4993411754009, + 12.9915913459084 + ], + [ + 77.499241449297998, + 12.9913296481119 + ], + [ + 77.499235866847698, + 12.991314997464199 + ], + [ + 77.499049068014003, + 12.991245772046399 + ], + [ + 77.498882580692197, + 12.9911840741332 + ], + [ + 77.498719503016204, + 12.991123638908199 + ], + [ + 77.498535382096705, + 12.991032429685101 + ], + [ + 77.4984337847132, + 12.9909821002213 + ], + [ + 77.498374131472104, + 12.9909525487945 + ], + [ + 77.498359591392202, + 12.9908931718548 + ], + [ + 77.498350515995099, + 12.990856112874599 + ], + [ + 77.498311613182295, + 12.990697248860201 + ], + [ + 77.498152580565403, + 12.990397015732 + ], + [ + 77.498105980724304, + 12.990309039776999 + ], + [ + 77.497951010131203, + 12.9902114347971 + ], + [ + 77.497887490797396, + 12.9901714281082 + ], + [ + 77.4977508894046, + 12.990074428763901 + ], + [ + 77.497636349302098, + 12.9899930943255 + ], + [ + 77.497385331562896, + 12.9898148484919 + ], + [ + 77.497346760021102, + 12.9897874594273 + ], + [ + 77.497275912846504, + 12.9897371508755 + ], + [ + 77.497193711959198, + 12.9897078330273 + ], + [ + 77.497128561317098, + 12.9896812035821 + ], + [ + 77.497077176850595, + 12.9896408107541 + ], + [ + 77.497016161532699, + 12.989564170097999 + ], + [ + 77.496936746226595, + 12.989501333704601 + ], + [ + 77.496937911369798, + 12.989482680683899 + ], + [ + 77.496994411731606, + 12.988578426235099 + ], + [ + 77.496839425356896, + 12.9885414079799 + ], + [ + 77.496239780197598, + 12.988398183112199 + ], + [ + 77.494865977797701, + 12.988014555899399 + ], + [ + 77.494034624757305, + 12.987759581528801 + ], + [ + 77.493839380135697, + 12.9877058653496 + ], + [ + 77.493262200616002, + 12.9875470686759 + ], + [ + 77.492577763279101, + 12.9873576139377 + ], + [ + 77.492578100477004, + 12.987369988628901 + ], + [ + 77.492407280500004, + 12.987281358862999 + ], + [ + 77.491571318106807, + 12.987052716277599 + ], + [ + 77.490426429170398, + 12.9867221474526 + ], + [ + 77.490273180764305, + 12.9866778983129 + ], + [ + 77.489647182155807, + 12.9864921141446 + ], + [ + 77.489172979059902, + 12.986351378224199 + ], + [ + 77.489116477173795, + 12.986337862844501 + ], + [ + 77.488666252903499, + 12.9862301648885 + ], + [ + 77.488298568418998, + 12.9861422113317 + ], + [ + 77.487460526251994, + 12.9859183554123 + ], + [ + 77.487198996320899, + 12.9858479472458 + ], + [ + 77.487161297755506, + 12.985836743272801 + ], + [ + 77.487149477893695, + 12.9857995056497 + ], + [ + 77.487128698110993, + 12.9858270544497 + ], + [ + 77.487056912186802, + 12.9858057196037 + ], + [ + 77.486956823479304, + 12.985775972971901 + ], + [ + 77.486283383969905, + 12.985575823694299 + ], + [ + 77.485927896927095, + 12.985484606466899 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "344", + "group": "Chickpete Ward", + "Corporatio": "Central", + "ac_no": "164", + "ac": "Gandhinagara", + "corporat_1": "1", + "ward_id": "24", + "ward_name": "24 - Chikpete", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಗಾಂಧಿನಗರ", + "ward_name_": "ಚಿಕ್ಕಪೇಟೆ", + "dig_ward_n": "Chickpete Ward", + "Assembly": "164 - Gandhinagara", + "Slno": "24" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.574171113318997, + 12.9700098485563 + ], + [ + 77.574161751650195, + 12.9700037921745 + ], + [ + 77.573673992500702, + 12.970095247015101 + ], + [ + 77.573505251879496, + 12.970141618483501 + ], + [ + 77.573461027238295, + 12.970047587450299 + ], + [ + 77.573313325523998, + 12.970100828765901 + ], + [ + 77.573394268029702, + 12.9705149365744 + ], + [ + 77.5735277977751, + 12.9706938748817 + ], + [ + 77.573359199195906, + 12.9707513353164 + ], + [ + 77.573288480943106, + 12.970771598511799 + ], + [ + 77.573020345423302, + 12.970848882452801 + ], + [ + 77.572876235601896, + 12.9708809213314 + ], + [ + 77.572916016316597, + 12.970977439923599 + ], + [ + 77.572949878318099, + 12.971037244801201 + ], + [ + 77.572988030189507, + 12.9711549733429 + ], + [ + 77.573031943040206, + 12.9712581533547 + ], + [ + 77.573059111690498, + 12.9713136769619 + ], + [ + 77.573086287806504, + 12.9713699250664 + ], + [ + 77.573087756849006, + 12.9714409190097 + ], + [ + 77.573120708825499, + 12.971484067593501 + ], + [ + 77.573162503418502, + 12.9715249549603 + ], + [ + 77.573225983472, + 12.971519254895799 + ], + [ + 77.573271114094496, + 12.9715253295788 + ], + [ + 77.573296805339893, + 12.971580867762601 + ], + [ + 77.573236512684105, + 12.971645045840599 + ], + [ + 77.573000737549805, + 12.9718517089222 + ], + [ + 77.572871895289197, + 12.971967466574601 + ], + [ + 77.572713964942906, + 12.972128435661499 + ], + [ + 77.572563406986504, + 12.972287882610001 + ], + [ + 77.572409945995602, + 12.9724524302536 + ], + [ + 77.572319623921501, + 12.972527390078 + ], + [ + 77.572467690062197, + 12.9727330853762 + ], + [ + 77.572577682358897, + 12.9729706217145 + ], + [ + 77.572602212983597, + 12.973025932766999 + ], + [ + 77.5730545989787, + 12.972904075955601 + ], + [ + 77.573539489402606, + 12.9727818967839 + ], + [ + 77.573480162440006, + 12.9727245177697 + ], + [ + 77.573789969278593, + 12.9726220944838 + ], + [ + 77.574002162550798, + 12.9725649266828 + ], + [ + 77.574053778083098, + 12.972554996343399 + ], + [ + 77.574532906684695, + 12.972375631079901 + ], + [ + 77.574617958698397, + 12.9725276745471 + ], + [ + 77.574830770736199, + 12.9730535048416 + ], + [ + 77.574856384817593, + 12.9730810633939 + ], + [ + 77.574915170843596, + 12.973193515097201 + ], + [ + 77.575044801780294, + 12.973441485434799 + ], + [ + 77.575103087939397, + 12.973577128417601 + ], + [ + 77.575149378823696, + 12.973617956096099 + ], + [ + 77.575262710262706, + 12.973652352719499 + ], + [ + 77.575362814536604, + 12.973759323061699 + ], + [ + 77.575467895846501, + 12.9739908709497 + ], + [ + 77.575540099633102, + 12.973971316895399 + ], + [ + 77.575787619119296, + 12.973900755282999 + ], + [ + 77.576056432578497, + 12.973799459813799 + ], + [ + 77.576234250499496, + 12.973726857896001 + ], + [ + 77.576582106139398, + 12.973624416611299 + ], + [ + 77.576856449204996, + 12.973524588852101 + ], + [ + 77.576667957773097, + 12.973029959855401 + ], + [ + 77.576566752841302, + 12.973076840307099 + ], + [ + 77.576391017058796, + 12.972707935769099 + ], + [ + 77.577062544620304, + 12.9724889593904 + ], + [ + 77.577259307987404, + 12.972787635908601 + ], + [ + 77.577538496733595, + 12.9732832989678 + ], + [ + 77.5778981858181, + 12.9737498710848 + ], + [ + 77.578221738042799, + 12.9743214144632 + ], + [ + 77.578914698911802, + 12.9740290612117 + ], + [ + 77.579422030931795, + 12.9737907169434 + ], + [ + 77.580210338132602, + 12.973430754324999 + ], + [ + 77.581086529457494, + 12.9730667465855 + ], + [ + 77.581086529457494, + 12.9730667465855 + ], + [ + 77.581093130363399, + 12.9730631278308 + ], + [ + 77.581485001018805, + 12.972848224739799 + ], + [ + 77.581505966521902, + 12.972836679326599 + ], + [ + 77.581668774263903, + 12.9727470217997 + ], + [ + 77.581841015550495, + 12.9726243903684 + ], + [ + 77.582119381113301, + 12.9724262006947 + ], + [ + 77.582207543140797, + 12.9723634314387 + ], + [ + 77.582308846285002, + 12.9722913057292 + ], + [ + 77.582674138278904, + 12.972031225600499 + ], + [ + 77.582722431474195, + 12.971984995725901 + ], + [ + 77.582870824441997, + 12.971842816877899 + ], + [ + 77.582870820361805, + 12.9718427893505 + ], + [ + 77.582870819992706, + 12.9718427428399 + ], + [ + 77.582841746191505, + 12.9713124540392 + ], + [ + 77.582841745822407, + 12.9713124075297 + ], + [ + 77.582838581538198, + 12.970832836319699 + ], + [ + 77.582838370440101, + 12.9708008791517 + ], + [ + 77.582837487400298, + 12.970667075496999 + ], + [ + 77.582835629422604, + 12.9703854037526 + ], + [ + 77.582835629116403, + 12.9703853573334 + ], + [ + 77.582791235068996, + 12.970323639974 + ], + [ + 77.582978609252194, + 12.970125327265899 + ], + [ + 77.582600132569297, + 12.9691567563903 + ], + [ + 77.5826132908837, + 12.9691487197319 + ], + [ + 77.582444677812603, + 12.968711005322801 + ], + [ + 77.582433445034397, + 12.9686818443904 + ], + [ + 77.582416789700702, + 12.9686300617829 + ], + [ + 77.5824056180128, + 12.9685961083826 + ], + [ + 77.582374331235101, + 12.9685010217504 + ], + [ + 77.582371263229803, + 12.9684916970578 + ], + [ + 77.582366215228504, + 12.9684763579268 + ], + [ + 77.582357951801498, + 12.9684512447482 + ], + [ + 77.582348427293397, + 12.968422296325199 + ], + [ + 77.582343085409306, + 12.968406062088601 + ], + [ + 77.582340442847993, + 12.9684010073587 + ], + [ + 77.582337800277401, + 12.9683959517254 + ], + [ + 77.582237277766495, + 12.968197419706 + ], + [ + 77.582200348961905, + 12.9681244845286 + ], + [ + 77.582200098822696, + 12.968123990117901 + ], + [ + 77.582088605434805, + 12.9679037903057 + ], + [ + 77.582040022570297, + 12.9678303031104 + ], + [ + 77.581961902234696, + 12.9677121347574 + ], + [ + 77.581955838269494, + 12.967702961752799 + ], + [ + 77.581903798365801, + 12.9676255562634 + ], + [ + 77.581846297720801, + 12.9675211016615 + ], + [ + 77.581823121493997, + 12.9674788698394 + ], + [ + 77.581820311538294, + 12.967473749003201 + ], + [ + 77.581800362118003, + 12.9674373972863 + ], + [ + 77.581346905362395, + 12.9666062397947 + ], + [ + 77.581295223358595, + 12.9665079375226 + ], + [ + 77.581269445744198, + 12.966520615606401 + ], + [ + 77.581059532675297, + 12.966654826654 + ], + [ + 77.580910868154504, + 12.9667545508772 + ], + [ + 77.578676963766597, + 12.967981624554801 + ], + [ + 77.578665582309, + 12.967958293859301 + ], + [ + 77.578543444850297, + 12.967707444185599 + ], + [ + 77.578473627097694, + 12.9675641739904 + ], + [ + 77.578459514497098, + 12.9675352147952 + ], + [ + 77.578376401140105, + 12.9673646612803 + ], + [ + 77.578212248626002, + 12.9670438710071 + ], + [ + 77.578054997018398, + 12.9667365629478 + ], + [ + 77.578040609971694, + 12.966743010649401 + ], + [ + 77.578017058326196, + 12.9667535657867 + ], + [ + 77.577983491834701, + 12.9667686092713 + ], + [ + 77.577670507773206, + 12.9669088813149 + ], + [ + 77.577379887010594, + 12.967039130022 + ], + [ + 77.5772594166028, + 12.9670927323047 + ], + [ + 77.577070976068399, + 12.967176577593101 + ], + [ + 77.576857995123007, + 12.967292747199 + ], + [ + 77.576687946317705, + 12.9673847760091 + ], + [ + 77.576506833114195, + 12.967482371119001 + ], + [ + 77.576160609798293, + 12.9676689372758 + ], + [ + 77.576156220585503, + 12.967671201409599 + ], + [ + 77.575867955960106, + 12.96781977529 + ], + [ + 77.575799312748899, + 12.967855200346801 + ], + [ + 77.575642619944205, + 12.967936065515101 + ], + [ + 77.575613940696897, + 12.9679508660297 + ], + [ + 77.575611384137105, + 12.9679521850759 + ], + [ + 77.575439560757005, + 12.9680397135586 + ], + [ + 77.5748842679142, + 12.9683489942768 + ], + [ + 77.574877393571995, + 12.968352450243801 + ], + [ + 77.574877393571995, + 12.968352450243801 + ], + [ + 77.574877393571995, + 12.968352450243801 + ], + [ + 77.574889654246107, + 12.968372443100799 + ], + [ + 77.574843709318301, + 12.9683948589604 + ], + [ + 77.575368050735605, + 12.969378352993999 + ], + [ + 77.5745929869842, + 12.969704856227899 + ], + [ + 77.5746601184902, + 12.9699718565361 + ], + [ + 77.574194775096004, + 12.970206816807201 + ], + [ + 77.574171113318997, + 12.9700098485563 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "330", + "group": "Bande Matha", + "Corporatio": "West", + "ac_no": "153", + "ac": "Yeshwanthapura", + "corporat_1": "5", + "ward_id": "108", + "ward_name": "108 - Subhash Nagar", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಯಶವಂತಪುರ", + "ward_name_": "ಸುಭಾಷ್ ನಗರ", + "dig_ward_n": "Bande Matha", + "Assembly": "153 - Yeshwanthapura", + "Slno": "108" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.486922809229696, + 12.9395430895886 + ], + [ + 77.487369720277201, + 12.9394421615225 + ], + [ + 77.487406322215605, + 12.939451217675501 + ], + [ + 77.488096637983602, + 12.9392909657817 + ], + [ + 77.489105133212206, + 12.939047481731199 + ], + [ + 77.489676928014703, + 12.938896678706399 + ], + [ + 77.489500991152497, + 12.9382887540125 + ], + [ + 77.489152259157507, + 12.937383935863499 + ], + [ + 77.489020306510795, + 12.937055625111601 + ], + [ + 77.488817664946197, + 12.9366063577668 + ], + [ + 77.488724983920505, + 12.936347165067801 + ], + [ + 77.488663720191695, + 12.936191649448499 + ], + [ + 77.488648011543205, + 12.936139810908699 + ], + [ + 77.488858507432099, + 12.936106822747 + ], + [ + 77.489235514994107, + 12.9360502716127 + ], + [ + 77.489817059333404, + 12.9359186716473 + ], + [ + 77.4903791045991, + 12.9358334922645 + ], + [ + 77.490760039323305, + 12.9357557344548 + ], + [ + 77.490668929162496, + 12.9355036106477 + ], + [ + 77.490761610188201, + 12.935465124459 + ], + [ + 77.490935976185597, + 12.9354101441896 + ], + [ + 77.491096204399497, + 12.9353253174881 + ], + [ + 77.491440223799898, + 12.9351226759235 + ], + [ + 77.491978245008397, + 12.9348187135766 + ], + [ + 77.492057106588106, + 12.9347211395268 + ], + [ + 77.491676302551696, + 12.9342009674825 + ], + [ + 77.4913576156993, + 12.9334537230965 + ], + [ + 77.491289054128302, + 12.9333324052095 + ], + [ + 77.491223075493807, + 12.9332392970634 + ], + [ + 77.491072529541896, + 12.933036317562401 + ], + [ + 77.4910509503718, + 12.9330082892116 + ], + [ + 77.490976834408102, + 12.9329073530416 + ], + [ + 77.490937728060501, + 12.932853516372701 + ], + [ + 77.490859593881595, + 12.9327537479043 + ], + [ + 77.490686329384403, + 12.932523879947601 + ], + [ + 77.490559722011199, + 12.9323545527558 + ], + [ + 77.490510467172697, + 12.932322271077799 + ], + [ + 77.490455567963096, + 12.932301337063 + ], + [ + 77.490404855166801, + 12.9322961743622 + ], + [ + 77.490363419929295, + 12.9322976993447 + ], + [ + 77.490327752347099, + 12.932300298633599 + ], + [ + 77.490294409755705, + 12.932305134477501 + ], + [ + 77.490228434680503, + 12.932328351916 + ], + [ + 77.489903265084294, + 12.932454558377 + ], + [ + 77.489507921400801, + 12.932571299667201 + ], + [ + 77.489385500099402, + 12.9326074490087 + ], + [ + 77.4892816665878, + 12.932644580100799 + ], + [ + 77.488944602164494, + 12.932732500130699 + ], + [ + 77.488917071925101, + 12.932742927246601 + ], + [ + 77.488793001019104, + 12.932771216237199 + ], + [ + 77.488418429490594, + 12.9328504584872 + ], + [ + 77.488400595625706, + 12.9328517580081 + ], + [ + 77.488380481567305, + 12.932855338041101 + ], + [ + 77.488351676810694, + 12.932853354083401 + ], + [ + 77.488311945954194, + 12.9328526037371 + ], + [ + 77.488286030630704, + 12.9328517215869 + ], + [ + 77.488257225873298, + 12.932849737618501 + ], + [ + 77.488219730421093, + 12.9328421896526 + ], + [ + 77.488171761350102, + 12.932823447792501 + ], + [ + 77.488141670938603, + 12.932807923513799 + ], + [ + 77.488108104253996, + 12.9327901736314 + ], + [ + 77.488103973536298, + 12.9327876244955 + ], + [ + 77.488075666475098, + 12.932770154214801 + ], + [ + 77.488031491833894, + 12.9327276591456 + ], + [ + 77.487987250031907, + 12.9326783884253 + ], + [ + 77.487969181057807, + 12.9326559731724 + ], + [ + 77.487950368503903, + 12.9326166243064 + ], + [ + 77.487936893516903, + 12.9325930358502 + ], + [ + 77.487926386331395, + 12.9325784541275 + ], + [ + 77.487913498191503, + 12.9325559894521 + ], + [ + 77.487899989625703, + 12.9325290131722 + ], + [ + 77.487880254394, + 12.9324546623078 + ], + [ + 77.487736803610204, + 12.9320183142652 + ], + [ + 77.4877229504485, + 12.9319761759323 + ], + [ + 77.487708351473103, + 12.9319256104971 + ], + [ + 77.487705065411404, + 12.9319142305756 + ], + [ + 77.487697933787601, + 12.931891710979601 + ], + [ + 77.4875790661699, + 12.9315156314617 + ], + [ + 77.487548170065494, + 12.931418799356001 + ], + [ + 77.487543318668898, + 12.9313939992445 + ], + [ + 77.487532018160493, + 12.931365072887701 + ], + [ + 77.487524416766504, + 12.9313456161234 + ], + [ + 77.487377816750794, + 12.9308433102038 + ], + [ + 77.487319422882507, + 12.930643966566601 + ], + [ + 77.487302169694601, + 12.9305876620236 + ], + [ + 77.487280053988101, + 12.930505428078 + ], + [ + 77.487236080014398, + 12.930366933480199 + ], + [ + 77.487150498426701, + 12.9300960627963 + ], + [ + 77.487086307377993, + 12.929892891943 + ], + [ + 77.487076839766601, + 12.9298670064337 + ], + [ + 77.487069674721198, + 12.929841098973 + ], + [ + 77.487057149882801, + 12.929797172508801 + ], + [ + 77.487027543926899, + 12.929701090519 + ], + [ + 77.487019676102406, + 12.9296755565775 + ], + [ + 77.487008380888895, + 12.9296395240541 + ], + [ + 77.486938972280996, + 12.929432379547899 + ], + [ + 77.486932472416299, + 12.9294155007876 + ], + [ + 77.486779231117197, + 12.928997960983301 + ], + [ + 77.486685165117805, + 12.928742487948499 + ], + [ + 77.486628946937003, + 12.928588298477999 + ], + [ + 77.486472174755605, + 12.928162886275601 + ], + [ + 77.486369228913802, + 12.9278826512259 + ], + [ + 77.486269295738495, + 12.9276159399677 + ], + [ + 77.486253328585207, + 12.9275731755974 + ], + [ + 77.486220220660101, + 12.927485399269299 + ], + [ + 77.486153272698203, + 12.927294042214101 + ], + [ + 77.486072129422098, + 12.927064421375301 + ], + [ + 77.486051534909706, + 12.9270194423015 + ], + [ + 77.486036741481897, + 12.926978925485299 + ], + [ + 77.485943320057203, + 12.926730222042099 + ], + [ + 77.485925134289801, + 12.926674824263801 + ], + [ + 77.485923731515896, + 12.926670551395899 + ], + [ + 77.485857505085605, + 12.926493869274999 + ], + [ + 77.485805234200598, + 12.926354106054101 + ], + [ + 77.485739236698393, + 12.9261776394351 + ], + [ + 77.485724454573003, + 12.9261382518565 + ], + [ + 77.485701423536199, + 12.926079743348 + ], + [ + 77.485688401862504, + 12.9260437271437 + ], + [ + 77.485671825780798, + 12.9259975803519 + ], + [ + 77.485577242799394, + 12.925747758318201 + ], + [ + 77.485564830337097, + 12.9257151244464 + ], + [ + 77.485561137488801, + 12.9257053376044 + ], + [ + 77.485424716766602, + 12.9253437626272 + ], + [ + 77.485410543925695, + 12.9253077573574 + ], + [ + 77.485406989538404, + 12.925297626763401 + ], + [ + 77.485335337415194, + 12.925096149619099 + ], + [ + 77.485311144165806, + 12.9250365227252 + ], + [ + 77.485289873790705, + 12.9249813855239 + ], + [ + 77.485271448048394, + 12.9249228330814 + ], + [ + 77.485249723770707, + 12.9247134670298 + ], + [ + 77.485236093106394, + 12.924674068426899 + ], + [ + 77.485104140459697, + 12.924276639621899 + ], + [ + 77.485033451541796, + 12.9240535768143 + ], + [ + 77.484899928030202, + 12.924088135840799 + ], + [ + 77.484892467206393, + 12.924090465640599 + ], + [ + 77.484676865222596, + 12.9241651082181 + ], + [ + 77.4845924849037, + 12.924186604549501 + ], + [ + 77.484551196035298, + 12.9242028089743 + ], + [ + 77.484473684283302, + 12.924233871993501 + ], + [ + 77.484329704092502, + 12.9242860648109 + ], + [ + 77.484145912906001, + 12.924348899404601 + ], + [ + 77.484117220795696, + 12.924358207568901 + ], + [ + 77.483765763614201, + 12.9244792811865 + ], + [ + 77.483727906064601, + 12.9244931940745 + ], + [ + 77.483686007929506, + 12.924506016025701 + ], + [ + 77.4836716730223, + 12.9245117993639 + ], + [ + 77.483432921075305, + 12.924592207972101 + ], + [ + 77.483322779728795, + 12.924631655076199 + ], + [ + 77.482878224978407, + 12.9247887415604 + ], + [ + 77.482835811627695, + 12.9247070565886 + ], + [ + 77.482780831358198, + 12.924565678752799 + ], + [ + 77.482667729089599, + 12.924209092433699 + ], + [ + 77.482582902388202, + 12.924034726436201 + ], + [ + 77.482574089322696, + 12.9240167401049 + ], + [ + 77.482482367038301, + 12.923759825088901 + ], + [ + 77.482419532444595, + 12.923607451199199 + ], + [ + 77.482124946117395, + 12.923698916286 + ], + [ + 77.482080225638697, + 12.9237174117381 + ], + [ + 77.482049253282895, + 12.9237290001311 + ], + [ + 77.481924710019399, + 12.9237912423857 + ], + [ + 77.4818308872633, + 12.9238389527526 + ], + [ + 77.481825175610496, + 12.923843524606699 + ], + [ + 77.481797469967205, + 12.923857218709101 + ], + [ + 77.481790229617403, + 12.923860797686499 + ], + [ + 77.481741490829805, + 12.9238804606843 + ], + [ + 77.481619962240003, + 12.9239294784918 + ], + [ + 77.481506859971404, + 12.923989171355799 + ], + [ + 77.481308931001294, + 12.9240378681659 + ], + [ + 77.481304218406805, + 12.923880781681699 + ], + [ + 77.481108736562604, + 12.9233349103915 + ], + [ + 77.4809945313703, + 12.9231161857793 + ], + [ + 77.480085879302607, + 12.9234355868635 + ], + [ + 77.479537952032999, + 12.9236559283112 + ], + [ + 77.478826179118499, + 12.920703707538699 + ], + [ + 77.479709005159705, + 12.920376967651601 + ], + [ + 77.480006277970801, + 12.9210661725176 + ], + [ + 77.480698054609405, + 12.920784688020801 + ], + [ + 77.480717040319703, + 12.920838630529699 + ], + [ + 77.481169143874695, + 12.922123159810299 + ], + [ + 77.482717010388996, + 12.9215334625741 + ], + [ + 77.483948525753206, + 12.9211127663133 + ], + [ + 77.483702143588204, + 12.9204256644617 + ], + [ + 77.484716101576296, + 12.920020036843001 + ], + [ + 77.485401819347203, + 12.9205042077038 + ], + [ + 77.485756834801506, + 12.920171184357301 + ], + [ + 77.485335843023904, + 12.919875861767 + ], + [ + 77.485093525030393, + 12.9194861704669 + ], + [ + 77.484688133367598, + 12.918898395308799 + ], + [ + 77.484307280120603, + 12.918346196209001 + ], + [ + 77.484222154374095, + 12.9181667573284 + ], + [ + 77.483650219053899, + 12.916961155434199 + ], + [ + 77.482834211685599, + 12.9150718108178 + ], + [ + 77.482411245191898, + 12.914092480704101 + ], + [ + 77.482243582566596, + 12.913704274297 + ], + [ + 77.482238290794101, + 12.9136994872014 + ], + [ + 77.482256625352406, + 12.9136825158257 + ], + [ + 77.482250686221604, + 12.913669070233199 + ], + [ + 77.482208930582402, + 12.9135745480329 + ], + [ + 77.482092827863298, + 12.913184883762799 + ], + [ + 77.482032114988698, + 12.912749517605301 + ], + [ + 77.482011824905399, + 12.912443646725199 + ], + [ + 77.481917190244104, + 12.9118503575639 + ], + [ + 77.481682119044294, + 12.9114088739652 + ], + [ + 77.4814748975014, + 12.9111770584865 + ], + [ + 77.481135536715598, + 12.910855018339699 + ], + [ + 77.480805884494103, + 12.910700034729199 + ], + [ + 77.480583665688002, + 12.9106400285077 + ], + [ + 77.480186122072396, + 12.910582717492501 + ], + [ + 77.480171783271402, + 12.910576746792 + ], + [ + 77.480155127163698, + 12.910578249339 + ], + [ + 77.479924855932396, + 12.910599017794 + ], + [ + 77.479460829256595, + 12.9106408681728 + ], + [ + 77.479022880872293, + 12.910711959986701 + ], + [ + 77.478948774751004, + 12.910723583918401 + ], + [ + 77.478942781139807, + 12.9116916480074 + ], + [ + 77.4779560251297, + 12.9117129625392 + ], + [ + 77.477854705643495, + 12.912250302318 + ], + [ + 77.477737817141801, + 12.9127534256346 + ], + [ + 77.477630637796594, + 12.913005449573401 + ], + [ + 77.477162070528493, + 12.9136792469856 + ], + [ + 77.477075347013397, + 12.914041162547599 + ], + [ + 77.477009924534102, + 12.914314184648999 + ], + [ + 77.476975258485496, + 12.914505757096 + ], + [ + 77.476239357569099, + 12.9147101500352 + ], + [ + 77.475237568250606, + 12.9149883890354 + ], + [ + 77.475073646919995, + 12.914428163360901 + ], + [ + 77.474668960918706, + 12.914520184604401 + ], + [ + 77.472715046095203, + 12.914964472954701 + ], + [ + 77.471581965884695, + 12.9149335625752 + ], + [ + 77.470900492863194, + 12.915023680894 + ], + [ + 77.470239139558402, + 12.9152619193855 + ], + [ + 77.4701021992432, + 12.9152955279664 + ], + [ + 77.470132551249606, + 12.9154385222978 + ], + [ + 77.470180518509594, + 12.9156645087266 + ], + [ + 77.470416588031995, + 12.916590717898099 + ], + [ + 77.470460307514102, + 12.916764571740201 + ], + [ + 77.470628486810696, + 12.9174333378486 + ], + [ + 77.470697570345394, + 12.917698792169301 + ], + [ + 77.470872603700101, + 12.9183713492138 + ], + [ + 77.470906563918504, + 12.918502182157701 + ], + [ + 77.471116276964096, + 12.9191545459193 + ], + [ + 77.471549457982704, + 12.920502041873799 + ], + [ + 77.471763390231402, + 12.921167516077 + ], + [ + 77.4718332694151, + 12.921399803126 + ], + [ + 77.4720654857814, + 12.9221717156596 + ], + [ + 77.472126448799798, + 12.922374361330199 + ], + [ + 77.472153749753105, + 12.9224519089259 + ], + [ + 77.472328176446396, + 12.9229473533729 + ], + [ + 77.4724558249534, + 12.9233099271516 + ], + [ + 77.472485203703002, + 12.9233978137823 + ], + [ + 77.472591541721897, + 12.923672584284899 + ], + [ + 77.472675620505996, + 12.9240013093131 + ], + [ + 77.472744535668397, + 12.924270745683399 + ], + [ + 77.472905666075206, + 12.9249795851991 + ], + [ + 77.472914751416198, + 12.9250152710352 + ], + [ + 77.472999058792695, + 12.925300495747599 + ], + [ + 77.473203782957498, + 12.925993111090399 + ], + [ + 77.473384778358906, + 12.926605440675701 + ], + [ + 77.473388366424004, + 12.9266394167238 + ], + [ + 77.473388672595405, + 12.926639453576399 + ], + [ + 77.473633182269893, + 12.926668281807601 + ], + [ + 77.474822206859102, + 12.926680076357799 + ], + [ + 77.475887395612105, + 12.926695947947399 + ], + [ + 77.477396937867098, + 12.926470425243499 + ], + [ + 77.477675698045402, + 12.926408761297299 + ], + [ + 77.478234466900403, + 12.926285157800301 + ], + [ + 77.479595264355197, + 12.9259171210054 + ], + [ + 77.479608319936602, + 12.9259376276958 + ], + [ + 77.479608320358295, + 12.9259376288264 + ], + [ + 77.479651974837594, + 12.9260546962603 + ], + [ + 77.4796179175178, + 12.9261270277918 + ], + [ + 77.479622678435305, + 12.9262179379744 + ], + [ + 77.479704743743596, + 12.926311905617199 + ], + [ + 77.479732645607001, + 12.926398804766301 + ], + [ + 77.479706203337102, + 12.926459693279501 + ], + [ + 77.479552158660795, + 12.926510426341499 + ], + [ + 77.479475417419707, + 12.9265642132344 + ], + [ + 77.479380406497, + 12.9267242882198 + ], + [ + 77.479258540519496, + 12.926903569464701 + ], + [ + 77.479108956879202, + 12.927014894496301 + ], + [ + 77.479086263078898, + 12.9270643785018 + ], + [ + 77.479094925011793, + 12.9271590436881 + ], + [ + 77.479118778821899, + 12.927227033870301 + ], + [ + 77.479200919186994, + 12.9273285777629 + ], + [ + 77.479360023859201, + 12.9273990730509 + ], + [ + 77.479523182190505, + 12.9274884790151 + ], + [ + 77.479658844737301, + 12.927532667996999 + ], + [ + 77.479821251840903, + 12.9275462836583 + ], + [ + 77.479952643580006, + 12.9275488233283 + ], + [ + 77.480064902244195, + 12.9275704977019 + ], + [ + 77.480177051333797, + 12.927580799690199 + ], + [ + 77.480262642271498, + 12.927640626050801 + ], + [ + 77.480871058356499, + 12.927433977567601 + ], + [ + 77.480986694741006, + 12.9274063510889 + ], + [ + 77.481179402074901, + 12.927749393421999 + ], + [ + 77.481231235875697, + 12.9279118618608 + ], + [ + 77.4812437239882, + 12.9280026984159 + ], + [ + 77.481344883315003, + 12.9280737442463 + ], + [ + 77.481461343950997, + 12.9281294854403 + ], + [ + 77.481645389597404, + 12.9283778631809 + ], + [ + 77.481831198330198, + 12.928804346081799 + ], + [ + 77.481917277983598, + 12.928913430887301 + ], + [ + 77.482037378017495, + 12.928946398523101 + ], + [ + 77.482222853846594, + 12.9289484223983 + ], + [ + 77.482315648428795, + 12.9289551190704 + ], + [ + 77.482519687783096, + 12.929271525054199 + ], + [ + 77.482601687938896, + 12.9295149665342 + ], + [ + 77.482674930136895, + 12.9297324052273 + ], + [ + 77.482872143826498, + 12.930139830884601 + ], + [ + 77.482970526936896, + 12.930320805814899 + ], + [ + 77.483122432634005, + 12.930444425266201 + ], + [ + 77.483201275252696, + 12.930602846578999 + ], + [ + 77.483229179963004, + 12.9306897477232 + ], + [ + 77.483203974679299, + 12.9308756900134 + ], + [ + 77.483082258406597, + 12.9310701277905 + ], + [ + 77.483021382406804, + 12.9311654544428 + ], + [ + 77.482894831112603, + 12.931261402584701 + ], + [ + 77.483030871001901, + 12.9313434842718 + ], + [ + 77.483224152810607, + 12.931353015056599 + ], + [ + 77.483318915894799, + 12.931343898264799 + ], + [ + 77.483345047595094, + 12.931381452864199 + ], + [ + 77.483134396857395, + 12.9323903720605 + ], + [ + 77.4834592229723, + 12.932812294700801 + ], + [ + 77.483508629887496, + 12.933171146277701 + ], + [ + 77.483563545293194, + 12.933570007758499 + ], + [ + 77.483574245133994, + 12.933647720400799 + ], + [ + 77.483584079603105, + 12.9337191528739 + ], + [ + 77.483603861633895, + 12.933862831701299 + ], + [ + 77.483611557303902, + 12.933918726149001 + ], + [ + 77.483894843382103, + 12.9338891418121 + ], + [ + 77.4838389121294, + 12.9340133419562 + ], + [ + 77.4837665227505, + 12.934174088471099 + ], + [ + 77.483805246215397, + 12.934238395407901 + ], + [ + 77.483820284550504, + 12.9343304207112 + ], + [ + 77.484097544134201, + 12.9360270461671 + ], + [ + 77.484120187926706, + 12.9361656072365 + ], + [ + 77.484243573910604, + 12.9369206232089 + ], + [ + 77.484100659842099, + 12.9369682442554 + ], + [ + 77.484088200157302, + 12.936972396206 + ], + [ + 77.484061217612606, + 12.936974950872299 + ], + [ + 77.483157797484495, + 12.937060547146499 + ], + [ + 77.483157721099502, + 12.937060554198499 + ], + [ + 77.483157409121304, + 12.9370605833711 + ], + [ + 77.483010800004607, + 12.9370745192701 + ], + [ + 77.482384749231699, + 12.9371611398063 + ], + [ + 77.482207015877194, + 12.9371857311925 + ], + [ + 77.482101655205696, + 12.9372003084487 + ], + [ + 77.481734265634401, + 12.937238569675401 + ], + [ + 77.481611783997295, + 12.9372513255902 + ], + [ + 77.481596630223095, + 12.937252903678999 + ], + [ + 77.481054826458305, + 12.9373093282362 + ], + [ + 77.481030218576706, + 12.9373118907234 + ], + [ + 77.480396453402193, + 12.937366416993299 + ], + [ + 77.479347682413604, + 12.9374566447935 + ], + [ + 77.479220645113699, + 12.937469383307601 + ], + [ + 77.479077864426799, + 12.937483699893701 + ], + [ + 77.478845341571102, + 12.937507014718699 + ], + [ + 77.478839664644894, + 12.9375075836886 + ], + [ + 77.478850676557997, + 12.9375406368982 + ], + [ + 77.479132767908297, + 12.9383712327274 + ], + [ + 77.479390005361395, + 12.9392338966839 + ], + [ + 77.479402886933201, + 12.9393139606142 + ], + [ + 77.479439162078407, + 12.939547398607701 + ], + [ + 77.479448974966502, + 12.939608975198301 + ], + [ + 77.479451581414494, + 12.939625332836201 + ], + [ + 77.479486424526897, + 12.939843977716601 + ], + [ + 77.479489337752199, + 12.9398624809797 + ], + [ + 77.479517139316698, + 12.9400390694165 + ], + [ + 77.479536061704707, + 12.9402060386077 + ], + [ + 77.479523318116193, + 12.940293401741 + ], + [ + 77.479536439106496, + 12.940293686232399 + ], + [ + 77.4796076843772, + 12.9403882148739 + ], + [ + 77.479898294372902, + 12.940326951145 + ], + [ + 77.480038101343894, + 12.940306529902101 + ], + [ + 77.4800556287978, + 12.9403027744212 + ], + [ + 77.480760699171199, + 12.940138447363999 + ], + [ + 77.481448737972002, + 12.9399452309884 + ], + [ + 77.481838312452894, + 12.9397535854777 + ], + [ + 77.4821210681244, + 12.939638912344201 + ], + [ + 77.482476083578703, + 12.9395902155341 + ], + [ + 77.483129563353003, + 12.939675042235599 + ], + [ + 77.483366763944204, + 12.939732378802301 + ], + [ + 77.483583543292397, + 12.9398195618011 + ], + [ + 77.483607891697503, + 12.9401455162558 + ], + [ + 77.483948769368197, + 12.9401470871206 + ], + [ + 77.484672938060399, + 12.9401298076074 + ], + [ + 77.485244732862895, + 12.939979004582501 + ], + [ + 77.485381398104096, + 12.939949158150499 + ], + [ + 77.486439375575301, + 12.939674256803199 + ], + [ + 77.486922809229696, + 12.9395430895886 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "334", + "group": "Nehru Nagar Ward", + "Corporatio": "Central", + "ac_no": "164", + "ac": "Gandhinagara", + "corporat_1": "1", + "ward_id": "23", + "ward_name": "23 - Nehru Nagar", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಗಾಂಧಿನಗರ", + "ward_name_": "ನೆಹರು ನಗರ", + "dig_ward_n": "Nehru Nagar Ward", + "Assembly": "164 - Gandhinagara", + "Slno": "23" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.581086529457494, + 12.9730667465855 + ], + [ + 77.580210338132602, + 12.973430754324999 + ], + [ + 77.579422030931795, + 12.9737907169434 + ], + [ + 77.578914698911802, + 12.9740290612117 + ], + [ + 77.578221738042799, + 12.9743214144632 + ], + [ + 77.5778981858181, + 12.9737498710848 + ], + [ + 77.577538496733595, + 12.9732832989678 + ], + [ + 77.577259307987404, + 12.972787635908601 + ], + [ + 77.577062544620304, + 12.9724889593904 + ], + [ + 77.576391017058796, + 12.972707935769099 + ], + [ + 77.576566752841302, + 12.973076840307099 + ], + [ + 77.576667957773097, + 12.973029959855401 + ], + [ + 77.576856449204996, + 12.973524588852101 + ], + [ + 77.576582106139398, + 12.973624416611299 + ], + [ + 77.576234250499496, + 12.973726857896001 + ], + [ + 77.576056432578497, + 12.973799459813799 + ], + [ + 77.575787619119296, + 12.973900755282999 + ], + [ + 77.575540099633102, + 12.973971316895399 + ], + [ + 77.575467895846501, + 12.9739908709497 + ], + [ + 77.575362814536604, + 12.973759323061699 + ], + [ + 77.575262710262706, + 12.973652352719499 + ], + [ + 77.575149378823696, + 12.973617956096099 + ], + [ + 77.575103087939397, + 12.973577128417601 + ], + [ + 77.575044801780294, + 12.973441485434799 + ], + [ + 77.574915170843596, + 12.973193515097201 + ], + [ + 77.574856384817593, + 12.9730810633939 + ], + [ + 77.574830770736199, + 12.9730535048416 + ], + [ + 77.574617958698397, + 12.9725276745471 + ], + [ + 77.574532906684695, + 12.972375631079901 + ], + [ + 77.574053778083098, + 12.972554996343399 + ], + [ + 77.574002162550798, + 12.9725649266828 + ], + [ + 77.573789969278593, + 12.9726220944838 + ], + [ + 77.573480162440006, + 12.9727245177697 + ], + [ + 77.573539489402606, + 12.9727818967839 + ], + [ + 77.5730545989787, + 12.972904075955601 + ], + [ + 77.572602212983597, + 12.973025932766999 + ], + [ + 77.5727020506353, + 12.9732328079971 + ], + [ + 77.572773721548899, + 12.973448747303101 + ], + [ + 77.572828394789298, + 12.973592397098599 + ], + [ + 77.572871792103797, + 12.9737890525004 + ], + [ + 77.573006856418502, + 12.9738471314267 + ], + [ + 77.573163308215896, + 12.9738296427258 + ], + [ + 77.573558594226995, + 12.9737590701332 + ], + [ + 77.573683884048904, + 12.9737288471563 + ], + [ + 77.573798592716699, + 12.9736755424221 + ], + [ + 77.574148885179, + 12.973561832215101 + ], + [ + 77.574152988473301, + 12.9736733762476 + ], + [ + 77.574172238570895, + 12.973964465099201 + ], + [ + 77.574187683680506, + 12.974172989984 + ], + [ + 77.574199532531495, + 12.9743192369605 + ], + [ + 77.5740370811139, + 12.974328090807701 + ], + [ + 77.573641636490905, + 12.9743709677885 + ], + [ + 77.573233370113698, + 12.9743982882925 + ], + [ + 77.572875550226598, + 12.9744448555576 + ], + [ + 77.572580255990204, + 12.974456382406601 + ], + [ + 77.572146072081694, + 12.9744721512112 + ], + [ + 77.572042131847297, + 12.9744617054952 + ], + [ + 77.572038624967703, + 12.9744613679604 + ], + [ + 77.571636633227797, + 12.974422689162401 + ], + [ + 77.571374030042193, + 12.9744386867012 + ], + [ + 77.571141815015395, + 12.974515069433201 + ], + [ + 77.570826264990401, + 12.974629396318999 + ], + [ + 77.570894513506104, + 12.9757635001181 + ], + [ + 77.5709165936413, + 12.9761864348858 + ], + [ + 77.570877486631304, + 12.9765936996055 + ], + [ + 77.570924301727203, + 12.977236134008299 + ], + [ + 77.570932614509601, + 12.9780446010441 + ], + [ + 77.571130715718994, + 12.9794747994857 + ], + [ + 77.571030064622704, + 12.979989161028801 + ], + [ + 77.571016536014, + 12.9800582993837 + ], + [ + 77.570976689181293, + 12.9803082803774 + ], + [ + 77.570928491010406, + 12.980433550538599 + ], + [ + 77.570899244246604, + 12.9804726068186 + ], + [ + 77.570782041746696, + 12.9806291213487 + ], + [ + 77.570650014382494, + 12.9808522835703 + ], + [ + 77.570618381485403, + 12.9811100496901 + ], + [ + 77.570538141861405, + 12.981354301193299 + ], + [ + 77.5710138277787, + 12.98194627104 + ], + [ + 77.571444071913703, + 12.9823707109918 + ], + [ + 77.571461059428401, + 12.982385449818 + ], + [ + 77.572646399394401, + 12.983413855074 + ], + [ + 77.572692399449593, + 12.983453764838501 + ], + [ + 77.572539759512097, + 12.9839673113734 + ], + [ + 77.5725232440046, + 12.984022876107 + ], + [ + 77.572455676242697, + 12.9842502029326 + ], + [ + 77.572293760079106, + 12.9847949560552 + ], + [ + 77.5722410425075, + 12.9849723179442 + ], + [ + 77.572262793362299, + 12.985270514246499 + ], + [ + 77.572277596344307, + 12.9858600775633 + ], + [ + 77.572295881730895, + 12.986154288297801 + ], + [ + 77.572289910090703, + 12.9863238713078 + ], + [ + 77.572270580999898, + 12.986872788986 + ], + [ + 77.572228907490597, + 12.988056301953501 + ], + [ + 77.572145247301407, + 12.9885028662276 + ], + [ + 77.572099562457794, + 12.988746721006301 + ], + [ + 77.571910056220503, + 12.9895451516172 + ], + [ + 77.5718632535973, + 12.9897515304873 + ], + [ + 77.571823670305903, + 12.9900692867442 + ], + [ + 77.571608913236005, + 12.990955395979899 + ], + [ + 77.571608553907197, + 12.990961388495601 + ], + [ + 77.571547453077102, + 12.992090690802 + ], + [ + 77.571501223893307, + 12.9929549095677 + ], + [ + 77.571483062109806, + 12.9934152001891 + ], + [ + 77.5719653827352, + 12.993456525755199 + ], + [ + 77.572914635332793, + 12.9935491249013 + ], + [ + 77.573443742369406, + 12.9936921761166 + ], + [ + 77.573950735287994, + 12.9938891892019 + ], + [ + 77.573998667187794, + 12.9937006869222 + ], + [ + 77.574100939132606, + 12.9930135008335 + ], + [ + 77.574128983019605, + 12.9928668587491 + ], + [ + 77.574155512172396, + 12.9927655684681 + ], + [ + 77.574306325808806, + 12.992659442721701 + ], + [ + 77.574618237023103, + 12.9924399545664 + ], + [ + 77.574618384338706, + 12.992439856437301 + ], + [ + 77.574798258991294, + 12.992320362281699 + ], + [ + 77.574801259343303, + 12.9923183693473 + ], + [ + 77.575092171273496, + 12.9921251091013 + ], + [ + 77.575318404076498, + 12.992003161108 + ], + [ + 77.575369475447303, + 12.991967328146201 + ], + [ + 77.575430028243403, + 12.9919248430436 + ], + [ + 77.576200319101304, + 12.992724756035701 + ], + [ + 77.576430668525703, + 12.992622156959101 + ], + [ + 77.576377486478805, + 12.992086657578501 + ], + [ + 77.576633112024794, + 12.992012388810799 + ], + [ + 77.576980751585097, + 12.9919046010285 + ], + [ + 77.577430121440102, + 12.991774066079101 + ], + [ + 77.577571480641694, + 12.991736576465501 + ], + [ + 77.577571175059006, + 12.9917362922534 + ], + [ + 77.577795462942802, + 12.991653886427899 + ], + [ + 77.577922042343801, + 12.991612719038301 + ], + [ + 77.578404343681896, + 12.991455859632801 + ], + [ + 77.578746951918305, + 12.9913451696917 + ], + [ + 77.578949233288, + 12.991279813547701 + ], + [ + 77.579121854275598, + 12.991224037389699 + ], + [ + 77.579154412372404, + 12.9912135169147 + ], + [ + 77.579161285582401, + 12.991211153012101 + ], + [ + 77.579249083086793, + 12.991180956273899 + ], + [ + 77.579429429819101, + 12.9911927168995 + ], + [ + 77.5794552914967, + 12.991187942841099 + ], + [ + 77.579674902076306, + 12.9910988053085 + ], + [ + 77.579896006419602, + 12.9909870667076 + ], + [ + 77.579882414501697, + 12.9909533226076 + ], + [ + 77.579777343680604, + 12.9907036608256 + ], + [ + 77.5796003100874, + 12.9903993777771 + ], + [ + 77.579391292173099, + 12.9901202568344 + ], + [ + 77.579053186650597, + 12.989610560344101 + ], + [ + 77.578796592036298, + 12.9892237381214 + ], + [ + 77.578793639465204, + 12.9892192863524 + ], + [ + 77.578410417345097, + 12.988641571645999 + ], + [ + 77.578364465901103, + 12.9885712031497 + ], + [ + 77.578346784559599, + 12.988544125351201 + ], + [ + 77.577980436815196, + 12.9879831067345 + ], + [ + 77.577958362639293, + 12.9879493020744 + ], + [ + 77.577954490155506, + 12.987943371446001 + ], + [ + 77.577954248661499, + 12.9879430025268 + ], + [ + 77.577951520969094, + 12.9879388240615 + ], + [ + 77.577948821378101, + 12.987934690489499 + ], + [ + 77.5779266252311, + 12.9879021888986 + ], + [ + 77.577926526085903, + 12.9879020444279 + ], + [ + 77.577926287569895, + 12.987901696258399 + ], + [ + 77.577926217148899, + 12.9879015677647 + ], + [ + 77.577926182534199, + 12.987901516611799 + ], + [ + 77.577925512785498, + 12.987900535793299 + ], + [ + 77.577925437042495, + 12.9879004272281 + ], + [ + 77.577924754183002, + 12.9878994257604 + ], + [ + 77.577923227598504, + 12.9878971895258 + ], + [ + 77.577923118152697, + 12.987897028895301 + ], + [ + 77.577923037710605, + 12.9878969113423 + ], + [ + 77.577922774862003, + 12.987896526373 + ], + [ + 77.577922739316705, + 12.987896474326 + ], + [ + 77.577922677587097, + 12.9878963845941 + ], + [ + 77.577921688861693, + 12.987894936246301 + ], + [ + 77.577921623382196, + 12.987894840227501 + ], + [ + 77.577921133230106, + 12.987894122336 + ], + [ + 77.577921078041896, + 12.9878940415736 + ], + [ + 77.5779207712269, + 12.9878935919926 + ], + [ + 77.577920660850594, + 12.987893430467899 + ], + [ + 77.577918836802795, + 12.987890758111099 + ], + [ + 77.577918712385099, + 12.9878905750431 + ], + [ + 77.577918221293203, + 12.987889855353901 + ], + [ + 77.5779160034283, + 12.9878866050868 + ], + [ + 77.577915865927807, + 12.9878864040798 + ], + [ + 77.577914048421505, + 12.9878837406924 + ], + [ + 77.577913179433494, + 12.987882468231501 + ], + [ + 77.577912997036194, + 12.9878822017185 + ], + [ + 77.577910298370995, + 12.9878782470186 + ], + [ + 77.577910203897005, + 12.987878108825599 + ], + [ + 77.577908654859797, + 12.9878758393862 + ], + [ + 77.577908444398503, + 12.9878755315933 + ], + [ + 77.577903663517802, + 12.9878685267481 + ], + [ + 77.577903481111207, + 12.9878682593317 + ], + [ + 77.577901961068605, + 12.9878660320664 + ], + [ + 77.577901919912406, + 12.9878659719441 + ], + [ + 77.577899912518603, + 12.9878630303731 + ], + [ + 77.577899757245504, + 12.9878628033425 + ], + [ + 77.577897122199303, + 12.9878589428727 + ], + [ + 77.577896789190703, + 12.987858454703501 + ], + [ + 77.577894900603795, + 12.987855688125199 + ], + [ + 77.577894822962605, + 12.9878555741582 + ], + [ + 77.577894562914807, + 12.9878551927748 + ], + [ + 77.577894344032501, + 12.9878548724172 + ], + [ + 77.5778921102753, + 12.987851599721401 + ], + [ + 77.5778918343252, + 12.987851195006201 + ], + [ + 77.577889065510107, + 12.987847138009499 + ], + [ + 77.577888986929096, + 12.9878470222449 + ], + [ + 77.577887458475004, + 12.9878447833182 + ], + [ + 77.577887192825699, + 12.987844394762799 + ], + [ + 77.577886006722395, + 12.9878426565609 + ], + [ + 77.577885945914005, + 12.987842566819801 + ], + [ + 77.577885480085399, + 12.987841884824601 + ], + [ + 77.577885402453504, + 12.9878417717609 + ], + [ + 77.577870462089294, + 12.987819881392401 + ], + [ + 77.577848372449097, + 12.9877874320374 + ], + [ + 77.577480517503105, + 12.987247072763401 + ], + [ + 77.577130920656003, + 12.9867208836849 + ], + [ + 77.576969925264706, + 12.9864785630973 + ], + [ + 77.576823756640493, + 12.9862911449232 + ], + [ + 77.576753252444007, + 12.986200744365901 + ], + [ + 77.576708600813305, + 12.9861434922807 + ], + [ + 77.5765661399561, + 12.9859608280877 + ], + [ + 77.576097571106104, + 12.985302571055399 + ], + [ + 77.575795735464396, + 12.9849554781155 + ], + [ + 77.575594613291699, + 12.9847711360113 + ], + [ + 77.5754100074397, + 12.9846250264604 + ], + [ + 77.575172940820707, + 12.9844726607918 + ], + [ + 77.574928151702693, + 12.984353121310001 + ], + [ + 77.574841313816094, + 12.984315548267199 + ], + [ + 77.574798023033296, + 12.9842968174516 + ], + [ + 77.574798019810302, + 12.9842968160571 + ], + [ + 77.574798387737403, + 12.9842911270225 + ], + [ + 77.574800501500903, + 12.984258416336401 + ], + [ + 77.574800502881203, + 12.984258394976299 + ], + [ + 77.574792736636297, + 12.9841501071315 + ], + [ + 77.574791765192401, + 12.984136561486199 + ], + [ + 77.574791761952198, + 12.984136516305 + ], + [ + 77.574910540557894, + 12.984117482745599 + ], + [ + 77.575332876537004, + 12.9840498069312 + ], + [ + 77.5767749427106, + 12.9838187224374 + ], + [ + 77.576957237856703, + 12.9837965863377 + ], + [ + 77.577004506636101, + 12.983790417204 + ], + [ + 77.577022788956995, + 12.9837880311429 + ], + [ + 77.577080244973999, + 12.9837761682926 + ], + [ + 77.577126209781895, + 12.983766678003899 + ], + [ + 77.577291058415895, + 12.983727776011699 + ], + [ + 77.577445177841199, + 12.9837093078492 + ], + [ + 77.577587985788696, + 12.9836548140064 + ], + [ + 77.577509581556797, + 12.9836216646147 + ], + [ + 77.577384422585297, + 12.9835687471712 + ], + [ + 77.577243601746403, + 12.983480928608 + ], + [ + 77.577185474672604, + 12.9834299418517 + ], + [ + 77.577130299293202, + 12.983381543989999 + ], + [ + 77.576950072090497, + 12.983157469930701 + ], + [ + 77.576769536171298, + 12.982847571440001 + ], + [ + 77.576728056476199, + 12.9827378003252 + ], + [ + 77.576692585158, + 12.982643929891699 + ], + [ + 77.576639978223795, + 12.9823871095548 + ], + [ + 77.576632568490595, + 12.982350904261899 + ], + [ + 77.576632502322695, + 12.982350562512099 + ], + [ + 77.576582983606897, + 12.982065682123601 + ], + [ + 77.576595409436905, + 12.9817629046936 + ], + [ + 77.576602233616597, + 12.9817135689712 + ], + [ + 77.576620593319504, + 12.9815808366206 + ], + [ + 77.576677320912594, + 12.981442498800799 + ], + [ + 77.576707338864196, + 12.9813383049795 + ], + [ + 77.576800598085896, + 12.9811691136984 + ], + [ + 77.576817097989903, + 12.9811514603168 + ], + [ + 77.576957204849407, + 12.981001639692 + ], + [ + 77.576999922703706, + 12.980955957163699 + ], + [ + 77.577145408937497, + 12.9807704377093 + ], + [ + 77.5772491883247, + 12.9806722883486 + ], + [ + 77.577326009543896, + 12.9806359010683 + ], + [ + 77.577434260156096, + 12.980584625930801 + ], + [ + 77.577522555527693, + 12.980541105958499 + ], + [ + 77.577548833041007, + 12.9805281537833 + ], + [ + 77.577919564819794, + 12.9804657532422 + ], + [ + 77.578234330321493, + 12.980447950263599 + ], + [ + 77.578958022098305, + 12.980386564237699 + ], + [ + 77.5790234708291, + 12.9803822062193 + ], + [ + 77.579521301929702, + 12.980349055008601 + ], + [ + 77.580193233013802, + 12.980304308748799 + ], + [ + 77.580432718444598, + 12.9802883598518 + ], + [ + 77.580567638178096, + 12.980258977534501 + ], + [ + 77.580590213033105, + 12.9802540609282 + ], + [ + 77.580706227191797, + 12.980228795313 + ], + [ + 77.5807224680361, + 12.9802252588029 + ], + [ + 77.580753279576697, + 12.980218548380799 + ], + [ + 77.580835356741602, + 12.980189764668401 + ], + [ + 77.581094628901795, + 12.980098840771999 + ], + [ + 77.581311285768905, + 12.9799781594475 + ], + [ + 77.581583118129501, + 12.9798267436988 + ], + [ + 77.581670543815306, + 12.979778045852701 + ], + [ + 77.581834582837999, + 12.979668429038499 + ], + [ + 77.581839524333006, + 12.979665127565299 + ], + [ + 77.581950166614902, + 12.979591192182101 + ], + [ + 77.582524068439596, + 12.9792071233302 + ], + [ + 77.583231009993497, + 12.978734018944801 + ], + [ + 77.583488354321204, + 12.9785617963335 + ], + [ + 77.583735065714095, + 12.9783995552003 + ], + [ + 77.584379447055397, + 12.977975798408201 + ], + [ + 77.584450830167398, + 12.9779288554169 + ], + [ + 77.584239183326304, + 12.9775616779357 + ], + [ + 77.583969776376307, + 12.977161603557301 + ], + [ + 77.583956837275394, + 12.9771423885811 + ], + [ + 77.583291908907398, + 12.976154947788499 + ], + [ + 77.582523345237803, + 12.9751101161407 + ], + [ + 77.582519050105603, + 12.9751042773914 + ], + [ + 77.582335575993397, + 12.974854852283601 + ], + [ + 77.582197566801895, + 12.974667234423499 + ], + [ + 77.582174200644701, + 12.9746347157673 + ], + [ + 77.5820858627212, + 12.974498669945101 + ], + [ + 77.581630678968807, + 12.973797652145601 + ], + [ + 77.581337708506695, + 12.9733601320145 + ], + [ + 77.581129116334907, + 12.9731164903008 + ], + [ + 77.581086529457494, + 12.9730667465855 + ], + [ + 77.581086529457494, + 12.9730667465855 + ], + [ + 77.581086529457494, + 12.9730667465855 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "356", + "group": "mangammana palya", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "34", + "ward_name": "34 - Mangammana Palya", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಮಂಗಮ್ಮನ ಪಾಳ್ಯ", + "dig_ward_n": "mangammana palya", + "Assembly": "175 - Bommanahalli", + "Slno": "34" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.642390495799305, + 12.896516328847801 + ], + [ + 77.642393205697502, + 12.8964370385313 + ], + [ + 77.642360056710203, + 12.896433552084501 + ], + [ + 77.642255649910894, + 12.8963521422359 + ], + [ + 77.642276298226307, + 12.8963021323453 + ], + [ + 77.641635377375806, + 12.896251548047999 + ], + [ + 77.640951476300501, + 12.8963192816093 + ], + [ + 77.640778908437298, + 12.8963634679912 + ], + [ + 77.640682904817695, + 12.8963568010732 + ], + [ + 77.640425068139393, + 12.896377819996401 + ], + [ + 77.640209819796695, + 12.896360985341699 + ], + [ + 77.640152497116304, + 12.8963761369273 + ], + [ + 77.640006595607801, + 12.896320585866899 + ], + [ + 77.639884914042895, + 12.896235598009699 + ], + [ + 77.639665604356097, + 12.896047545788599 + ], + [ + 77.639654781325206, + 12.896037904543 + ], + [ + 77.639518860929996, + 12.895956785991499 + ], + [ + 77.639442518762607, + 12.8959260049756 + ], + [ + 77.639137217490003, + 12.8957545730766 + ], + [ + 77.639003068647696, + 12.895694735320999 + ], + [ + 77.638951561849893, + 12.895615897780701 + ], + [ + 77.638825501455202, + 12.8954594339067 + ], + [ + 77.638694829861805, + 12.8954167656313 + ], + [ + 77.638538592953196, + 12.895404359072099 + ], + [ + 77.638565901894097, + 12.895607508298999 + ], + [ + 77.638578638312296, + 12.895706815411 + ], + [ + 77.638610744856393, + 12.8957944537707 + ], + [ + 77.638622454142407, + 12.895981733546799 + ], + [ + 77.638643665841599, + 12.896110840829101 + ], + [ + 77.638688744912002, + 12.8965062158706 + ], + [ + 77.638727019468305, + 12.896624387723801 + ], + [ + 77.638945505979706, + 12.896840819322 + ], + [ + 77.639014841927207, + 12.896942156475999 + ], + [ + 77.639101904139494, + 12.8970565908095 + ], + [ + 77.639157419374499, + 12.8971459043827 + ], + [ + 77.639151347526294, + 12.8973104169017 + ], + [ + 77.639148068054396, + 12.8978533864226 + ], + [ + 77.639147073121194, + 12.8980179813987 + ], + [ + 77.639174822245295, + 12.898991021908 + ], + [ + 77.639174482692098, + 12.899085337656601 + ], + [ + 77.639173486526602, + 12.899362260739 + ], + [ + 77.638958987022093, + 12.8995867216083 + ], + [ + 77.638617955404996, + 12.8995949446313 + ], + [ + 77.637800019203098, + 12.8996663018075 + ], + [ + 77.636914206573294, + 12.899770848566201 + ], + [ + 77.6367976840002, + 12.8998121813478 + ], + [ + 77.6364921048756, + 12.8998554198521 + ], + [ + 77.636470411005803, + 12.8998583967442 + ], + [ + 77.635830310397793, + 12.899946230521399 + ], + [ + 77.635637610442203, + 12.89997159246 + ], + [ + 77.635662630391593, + 12.900069944881899 + ], + [ + 77.635661245544398, + 12.900170350456399 + ], + [ + 77.635686861183004, + 12.900289606324399 + ], + [ + 77.635763718989097, + 12.900648568985 + ], + [ + 77.635832055260806, + 12.901038310912 + ], + [ + 77.635882723837796, + 12.9013329886888 + ], + [ + 77.6359531174175, + 12.901714895312701 + ], + [ + 77.635957862004503, + 12.901767014953601 + ], + [ + 77.635927027968805, + 12.9017744800018 + ], + [ + 77.635922158302193, + 12.9020565099796 + ], + [ + 77.6359315176595, + 12.9022055688033 + ], + [ + 77.635952182691, + 12.902431921502201 + ], + [ + 77.635966749455605, + 12.902591483257099 + ], + [ + 77.635988749330494, + 12.9029066187636 + ], + [ + 77.635996061444303, + 12.9030850547464 + ], + [ + 77.636001394978706, + 12.903203725887201 + ], + [ + 77.636024062499999, + 12.9034584021559 + ], + [ + 77.6355567115463, + 12.903485069827999 + ], + [ + 77.635034025172899, + 12.9035144042673 + ], + [ + 77.634866771369701, + 12.9035198126649 + ], + [ + 77.634885375886995, + 12.9039955262531 + ], + [ + 77.634905787454301, + 12.9045174265759 + ], + [ + 77.634918723841494, + 12.904848206868101 + ], + [ + 77.634941896206001, + 12.9053144101622 + ], + [ + 77.634944856745804, + 12.9053739792898 + ], + [ + 77.634835153710199, + 12.9054020612709 + ], + [ + 77.634867837585603, + 12.905734058487401 + ], + [ + 77.635163696728597, + 12.905722487517901 + ], + [ + 77.635238366210501, + 12.9060304991308 + ], + [ + 77.635363160841607, + 12.906446791922001 + ], + [ + 77.635452374279197, + 12.9064405145895 + ], + [ + 77.6357297180692, + 12.907101872857799 + ], + [ + 77.635929369482099, + 12.907007620136801 + ], + [ + 77.636420465079894, + 12.906793548566901 + ], + [ + 77.636980500256698, + 12.9065494242002 + ], + [ + 77.637170738123004, + 12.9064646598052 + ], + [ + 77.637609976678704, + 12.9062689475433 + ], + [ + 77.637725131116497, + 12.9062244178856 + ], + [ + 77.638107674846694, + 12.9061048219976 + ], + [ + 77.638496879524595, + 12.905956431278 + ], + [ + 77.639017678416295, + 12.905730678976401 + ], + [ + 77.639146328386005, + 12.905499681568999 + ], + [ + 77.639550515758103, + 12.9052398397925 + ], + [ + 77.640156581384005, + 12.904829761205001 + ], + [ + 77.640674334184396, + 12.9044791364267 + ], + [ + 77.6406854715745, + 12.9044718372808 + ], + [ + 77.641187362117194, + 12.904142899320201 + ], + [ + 77.641322398633307, + 12.9040559656491 + ], + [ + 77.641350397791996, + 12.9038401250983 + ], + [ + 77.641390749417795, + 12.903622202931601 + ], + [ + 77.641367895148605, + 12.9033021370452 + ], + [ + 77.641335698591007, + 12.9029044824254 + ], + [ + 77.641283685142596, + 12.902475954412999 + ], + [ + 77.641231508897206, + 12.902031891184 + ], + [ + 77.641187169360293, + 12.9016379447677 + ], + [ + 77.641135910873302, + 12.901165188959499 + ], + [ + 77.6410528455026, + 12.9007370711162 + ], + [ + 77.641068594526004, + 12.9007359905281 + ], + [ + 77.641457688303305, + 12.9006639368598 + ], + [ + 77.642033121686794, + 12.9005864129323 + ], + [ + 77.642103549607896, + 12.9005774656758 + ], + [ + 77.642441917828506, + 12.900534476389099 + ], + [ + 77.642641468905296, + 12.900510946397601 + ], + [ + 77.642671486729299, + 12.9005045530836 + ], + [ + 77.642635866014103, + 12.900301316856 + ], + [ + 77.642552306845005, + 12.899653203572999 + ], + [ + 77.642510427204002, + 12.899377550188699 + ], + [ + 77.642529527804797, + 12.8993403084026 + ], + [ + 77.643012659322395, + 12.899329579821501 + ], + [ + 77.643471343282698, + 12.899270910942899 + ], + [ + 77.643484519897598, + 12.899269459641999 + ], + [ + 77.644050031767506, + 12.8992015749954 + ], + [ + 77.644554050770395, + 12.8991415727332 + ], + [ + 77.645099887319901, + 12.8990867193873 + ], + [ + 77.645099404665004, + 12.8990855706217 + ], + [ + 77.645072878656705, + 12.8987370246507 + ], + [ + 77.645141934663201, + 12.8984686171707 + ], + [ + 77.6451723232001, + 12.8983509682072 + ], + [ + 77.645220987114897, + 12.8981625657427 + ], + [ + 77.645260167769607, + 12.898010879663699 + ], + [ + 77.645293971209199, + 12.8978773169985 + ], + [ + 77.645350233278407, + 12.897655014172001 + ], + [ + 77.645400828274006, + 12.897368866308399 + ], + [ + 77.645405627017098, + 12.8973181457545 + ], + [ + 77.645017967663904, + 12.8973196526601 + ], + [ + 77.644450713540905, + 12.897371505996899 + ], + [ + 77.644070032521498, + 12.8973755061477 + ], + [ + 77.643566013518594, + 12.897411507505099 + ], + [ + 77.643339338305694, + 12.897416841039499 + ], + [ + 77.643003325637096, + 12.897427508108301 + ], + [ + 77.642813490286002, + 12.897443494312199 + ], + [ + 77.642740649066894, + 12.896514140338599 + ], + [ + 77.642390495799305, + 12.896516328847801 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "335", + "group": "Dattareya Ward", + "Corporatio": "Central", + "ac_no": "164", + "ac": "Gandhinagara", + "corporat_1": "1", + "ward_id": "18", + "ward_name": "18 - Dattareya Ward", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಗಾಂಧಿನಗರ", + "ward_name_": "ದತ್ತಾತ್ರೇಯ ವಾರ್ಡ್", + "dig_ward_n": "Dattareya Ward", + "Assembly": "164 - Gandhinagara", + "Slno": "18" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.578294809935102, + 12.9975828954985 + ], + [ + 77.578154565240396, + 12.997593645477201 + ], + [ + 77.577699141931205, + 12.9976039644599 + ], + [ + 77.576493520340094, + 12.997611132258299 + ], + [ + 77.576492085610994, + 12.9974721189806 + ], + [ + 77.576481846334403, + 12.997178043802601 + ], + [ + 77.576429784947294, + 12.997145230089099 + ], + [ + 77.576273539342196, + 12.9971482297719 + ], + [ + 77.575963279479794, + 12.997155655863899 + ], + [ + 77.575954781145398, + 12.9970481409956 + ], + [ + 77.575939056599495, + 12.997028008952601 + ], + [ + 77.575750480072102, + 12.996935561855 + ], + [ + 77.575536138666095, + 12.9968276765662 + ], + [ + 77.575478234154303, + 12.996801441756499 + ], + [ + 77.575392572161803, + 12.996931627971801 + ], + [ + 77.574745644623803, + 12.9968225284781 + ], + [ + 77.574663032491898, + 12.9968247824162 + ], + [ + 77.574478206250504, + 12.996843108557201 + ], + [ + 77.574240805850806, + 12.9968691274184 + ], + [ + 77.574029619043102, + 12.9968897672514 + ], + [ + 77.574056580209501, + 12.996397704633701 + ], + [ + 77.573814572465594, + 12.9963857312438 + ], + [ + 77.573584679981593, + 12.9963764169556 + ], + [ + 77.573439065233003, + 12.996371339144501 + ], + [ + 77.573218837002301, + 12.9963497921018 + ], + [ + 77.571965240522204, + 12.996309884384001 + ], + [ + 77.571747113963696, + 12.9963112990852 + ], + [ + 77.571022994732104, + 12.9963112249725 + ], + [ + 77.571026671794698, + 12.996017595647601 + ], + [ + 77.571040379745398, + 12.995390540950201 + ], + [ + 77.571056273109605, + 12.9948735252324 + ], + [ + 77.571056317722807, + 12.994872310556101 + ], + [ + 77.571063804892802, + 12.9941790268288 + ], + [ + 77.5710770128033, + 12.9938914374354 + ], + [ + 77.571062486285797, + 12.9935906556519 + ], + [ + 77.571060352939099, + 12.9933834479372 + ], + [ + 77.571483062109806, + 12.9934152001891 + ], + [ + 77.571501223893307, + 12.9929549095677 + ], + [ + 77.571547453077102, + 12.992090690802 + ], + [ + 77.571608553907197, + 12.990961388495601 + ], + [ + 77.571608913236005, + 12.990955395979899 + ], + [ + 77.571823670305903, + 12.9900692867442 + ], + [ + 77.5718632535973, + 12.9897515304873 + ], + [ + 77.571910056220503, + 12.9895451516172 + ], + [ + 77.571809459972599, + 12.989534554402001 + ], + [ + 77.571619998790695, + 12.9895045487945 + ], + [ + 77.571495238855405, + 12.989443470331 + ], + [ + 77.571285464193295, + 12.9894498943729 + ], + [ + 77.571027675465203, + 12.9893857849795 + ], + [ + 77.570948123587598, + 12.989409758796899 + ], + [ + 77.570880362681095, + 12.9894307175893 + ], + [ + 77.570780124335997, + 12.989454896096399 + ], + [ + 77.570674512369607, + 12.989531297271901 + ], + [ + 77.570571974830102, + 12.9896192612189 + ], + [ + 77.570466124155104, + 12.9896724782361 + ], + [ + 77.570150223759697, + 12.989657624105901 + ], + [ + 77.570087629058904, + 12.9897084661773 + ], + [ + 77.570047412832494, + 12.9897088640805 + ], + [ + 77.570037198875795, + 12.9898824273966 + ], + [ + 77.569987283194806, + 12.9900541962754 + ], + [ + 77.569982581588505, + 12.990070373880201 + ], + [ + 77.569804368389299, + 12.990754829493399 + ], + [ + 77.569791045925399, + 12.9907940725298 + ], + [ + 77.569709066991607, + 12.991035554392999 + ], + [ + 77.569704055075505, + 12.9910503175562 + ], + [ + 77.569583198355602, + 12.991433974122501 + ], + [ + 77.569446467385106, + 12.991791015816601 + ], + [ + 77.568777162755794, + 12.9932308775919 + ], + [ + 77.568633747943196, + 12.9933965153541 + ], + [ + 77.568384924401599, + 12.9933807221836 + ], + [ + 77.568318294534293, + 12.9933835831909 + ], + [ + 77.568309512871195, + 12.993394608904699 + ], + [ + 77.568237988556504, + 12.9934844100158 + ], + [ + 77.568125592690606, + 12.993625525301001 + ], + [ + 77.567780502594402, + 12.9940587917885 + ], + [ + 77.567780207905102, + 12.9940591624069 + ], + [ + 77.567761152728394, + 12.994083086283799 + ], + [ + 77.567759671055597, + 12.994084945781101 + ], + [ + 77.567732162477895, + 12.9941194838662 + ], + [ + 77.567503899671607, + 12.994405834569299 + ], + [ + 77.567499865741794, + 12.9944108949305 + ], + [ + 77.567496244772499, + 12.994415438952 + ], + [ + 77.5672937581393, + 12.994652973179299 + ], + [ + 77.567211316397504, + 12.9947496842784 + ], + [ + 77.567205074327106, + 12.994757007026299 + ], + [ + 77.567186640319605, + 12.9947786317795 + ], + [ + 77.567178770587105, + 12.9947878633486 + ], + [ + 77.567153113697898, + 12.9948407791405 + ], + [ + 77.567019762818305, + 12.9951158069975 + ], + [ + 77.567003480055405, + 12.995142074221601 + ], + [ + 77.566869465710298, + 12.995358264895399 + ], + [ + 77.5668693243326, + 12.9953584930592 + ], + [ + 77.566869225546, + 12.995358652139799 + ], + [ + 77.566789225384696, + 12.9954873716649 + ], + [ + 77.566780617708005, + 12.9955012687166 + ], + [ + 77.566577386427298, + 12.9958293883384 + ], + [ + 77.566426155753902, + 12.9960736866443 + ], + [ + 77.566374116541695, + 12.996157922050701 + ], + [ + 77.566331690592804, + 12.996226598959 + ], + [ + 77.566261901970194, + 12.9963395696993 + ], + [ + 77.566194624708004, + 12.996451443855401 + ], + [ + 77.566148394863504, + 12.9965283185809 + ], + [ + 77.566099985716903, + 12.996608816643199 + ], + [ + 77.566109830731804, + 12.9966143659083 + ], + [ + 77.566135844348807, + 12.996624272620901 + ], + [ + 77.566305779126793, + 12.9966869638442 + ], + [ + 77.566334717981604, + 12.9967013588754 + ], + [ + 77.566407635086506, + 12.9967367761455 + ], + [ + 77.566596180017896, + 12.9968173522096 + ], + [ + 77.566787185898704, + 12.996857248491001 + ], + [ + 77.566916190814595, + 12.9968593609781 + ], + [ + 77.567112466659594, + 12.9968517737355 + ], + [ + 77.567130074045494, + 12.996849931815801 + ], + [ + 77.567171106042494, + 12.9968456394281 + ], + [ + 77.567637047925103, + 12.996796896445 + ], + [ + 77.567775206804697, + 12.9967932714122 + ], + [ + 77.567964032428307, + 12.9967891451612 + ], + [ + 77.568142447902105, + 12.9967806044982 + ], + [ + 77.568492957017199, + 12.9967647146649 + ], + [ + 77.568532661107994, + 12.9967620632397 + ], + [ + 77.568541672895194, + 12.9967616623933 + ], + [ + 77.568728349213998, + 12.9967533512963 + ], + [ + 77.568981649310999, + 12.996777373765701 + ], + [ + 77.569027378463701, + 12.9967817105987 + ], + [ + 77.569429226405504, + 12.996819821106399 + ], + [ + 77.569439075633099, + 12.9968206713488 + ], + [ + 77.569458739035895, + 12.9968223676623 + ], + [ + 77.569523167940702, + 12.996827925863 + ], + [ + 77.570425461821301, + 12.996826899338201 + ], + [ + 77.571010090127501, + 12.996843432894501 + ], + [ + 77.571016997335903, + 12.996843629203401 + ], + [ + 77.571396586704196, + 12.996854500512301 + ], + [ + 77.571419107399393, + 12.9968551454796 + ], + [ + 77.5714420749525, + 12.996855803376 + ], + [ + 77.571456474596104, + 12.996856215470499 + ], + [ + 77.571433118305706, + 12.9976074379216 + ], + [ + 77.571411989729995, + 12.9982953969403 + ], + [ + 77.571410493326695, + 12.9983434065299 + ], + [ + 77.571382783141601, + 12.999231875103501 + ], + [ + 77.571381690160507, + 12.999266903570399 + ], + [ + 77.571365461623202, + 13.0001569577684 + ], + [ + 77.571357038908204, + 13.000618931624301 + ], + [ + 77.571351148252703, + 13.000997308754799 + ], + [ + 77.571344069250301, + 13.001435961234 + ], + [ + 77.571342158493593, + 13.001554358927599 + ], + [ + 77.571339902118893, + 13.0016942042813 + ], + [ + 77.571334691571906, + 13.0018591351235 + ], + [ + 77.571334245510499, + 13.001872534059601 + ], + [ + 77.571334240681495, + 13.0018726913073 + ], + [ + 77.571334025362404, + 13.001879159717401 + ], + [ + 77.571301712912103, + 13.0028498664716 + ], + [ + 77.5712950496102, + 13.0033208546196 + ], + [ + 77.571295050608498, + 13.0033208546403 + ], + [ + 77.571353078101296, + 13.003322054907899 + ], + [ + 77.571435674481506, + 13.003323764309901 + ], + [ + 77.571774819050006, + 13.003330781363299 + ], + [ + 77.571809740140694, + 13.003334530604601 + ], + [ + 77.572088815537398, + 13.003364490225 + ], + [ + 77.572097084401506, + 13.0033653776654 + ], + [ + 77.572102253251103, + 13.0033659326463 + ], + [ + 77.572166233773899, + 13.003372074334701 + ], + [ + 77.572168904968905, + 13.0033407280555 + ], + [ + 77.572169117802503, + 13.0033382261076 + ], + [ + 77.572169315925606, + 13.003335905898499 + ], + [ + 77.572170887435007, + 13.0033171989036 + ], + [ + 77.572171001555901, + 13.0033158462155 + ], + [ + 77.572172828299699, + 13.0032941029153 + ], + [ + 77.572172906309504, + 13.003293179722601 + ], + [ + 77.572174065894998, + 13.0032793798184 + ], + [ + 77.572174190669699, + 13.003277898735201 + ], + [ + 77.572174445085395, + 13.003274872375799 + ], + [ + 77.572174533227496, + 13.003273770200099 + ], + [ + 77.572175184936995, + 13.0032655794127 + ], + [ + 77.572175661274301, + 13.0032595920642 + ], + [ + 77.572175664549505, + 13.003259552280101 + ], + [ + 77.572178154124302, + 13.0032298032889 + ], + [ + 77.572178295200601, + 13.0032281160582 + ], + [ + 77.572181017753294, + 13.0031955848509 + ], + [ + 77.572182179432204, + 13.0031817198778 + ], + [ + 77.572182713562697, + 13.003175350701801 + ], + [ + 77.572191589954102, + 13.0030694672518 + ], + [ + 77.572193179868094, + 13.003050489944 + ], + [ + 77.572207071658497, + 13.0028847893057 + ], + [ + 77.572208110420306, + 13.0028723990042 + ], + [ + 77.572213408088203, + 13.0028092108977 + ], + [ + 77.572213362450697, + 13.0028046941143 + ], + [ + 77.572277352770897, + 13.001862216209901 + ], + [ + 77.572261000158903, + 13.001863999973301 + ], + [ + 77.572244796783295, + 13.0018248434508 + ], + [ + 77.572243433333497, + 13.001821546733799 + ], + [ + 77.572242751138603, + 13.0018198974764 + ], + [ + 77.572236999940301, + 13.0018060001807 + ], + [ + 77.572236999796701, + 13.0018059998336 + ], + [ + 77.572235000282006, + 13.001388000050101 + ], + [ + 77.572234000167995, + 13.0011550087769 + ], + [ + 77.572234000130706, + 13.0011550000822 + ], + [ + 77.572233000624806, + 13.0010410456632 + ], + [ + 77.572233000227499, + 13.0010410003717 + ], + [ + 77.572249189366502, + 13.001007002214999 + ], + [ + 77.572579444473504, + 13.0010032058759 + ], + [ + 77.572611407130495, + 13.001003405835201 + ], + [ + 77.573069300487404, + 13.0010062741448 + ], + [ + 77.573105866349806, + 13.0010065033937 + ], + [ + 77.573136304115096, + 13.001006694012601 + ], + [ + 77.573185141828702, + 13.0010070003446 + ], + [ + 77.573207710091296, + 13.001007141589 + ], + [ + 77.573213930308, + 13.0010070004165 + ], + [ + 77.573295790641893, + 13.0010051390072 + ], + [ + 77.573727545155904, + 13.000994082103 + ], + [ + 77.573771241475598, + 13.000995688774401 + ], + [ + 77.573775932765997, + 13.000995860887301 + ], + [ + 77.5737885552156, + 13.0009762429603 + ], + [ + 77.5737986024034, + 13.000960628444499 + ], + [ + 77.573803899475607, + 13.0009443193042 + ], + [ + 77.573815500791696, + 13.0009086003031 + ], + [ + 77.573832088612903, + 13.0008575284633 + ], + [ + 77.573853638946304, + 13.000602091200101 + ], + [ + 77.573854846055895, + 13.0003841228275 + ], + [ + 77.573863608808196, + 13.0002608447148 + ], + [ + 77.573867208577596, + 13.000210206994799 + ], + [ + 77.573879989439604, + 13.0000304001587 + ], + [ + 77.573886135815599, + 12.9999017761 + ], + [ + 77.573890408827296, + 12.999812340432999 + ], + [ + 77.573940082331504, + 12.999380452289399 + ], + [ + 77.573941129056394, + 12.999370278139899 + ], + [ + 77.573970740225505, + 12.998963244892 + ], + [ + 77.573973758986, + 12.9989217521969 + ], + [ + 77.573973800298504, + 12.998921184144599 + ], + [ + 77.573974919310601, + 12.998905797575601 + ], + [ + 77.573979513752903, + 12.998904622710301 + ], + [ + 77.574403930905405, + 12.9989083190776 + ], + [ + 77.574623894732198, + 12.998908396119701 + ], + [ + 77.575136943834707, + 12.9989078242684 + ], + [ + 77.575147883279897, + 12.998907715745901 + ], + [ + 77.575790536440394, + 12.9989115033859 + ], + [ + 77.575954651331401, + 12.9989121334677 + ], + [ + 77.576082209656903, + 12.998913756837 + ], + [ + 77.576217236177797, + 12.998915475873 + ], + [ + 77.576303643370494, + 12.9989165751765 + ], + [ + 77.576395212479596, + 12.998917924968801 + ], + [ + 77.576427058802395, + 12.9989186704353 + ], + [ + 77.5764509617551, + 12.998919229779 + ], + [ + 77.576513603242304, + 12.9989206956175 + ], + [ + 77.576598525581304, + 12.9989226828136 + ], + [ + 77.576611192293399, + 12.9989225570845 + ], + [ + 77.576734364316394, + 12.998921334453399 + ], + [ + 77.576852435557996, + 12.9989201623989 + ], + [ + 77.576905939158195, + 12.998920735277499 + ], + [ + 77.576907144368803, + 12.9989207486097 + ], + [ + 77.576941498180602, + 12.9989250341117 + ], + [ + 77.576941662380705, + 12.9989250541643 + ], + [ + 77.576948652145902, + 12.9989259261641 + ], + [ + 77.576948773914197, + 12.998925941217299 + ], + [ + 77.576948896603696, + 12.998925956261299 + ], + [ + 77.576952082910793, + 12.998926353766 + ], + [ + 77.576952415935807, + 12.9989263956322 + ], + [ + 77.576954241557303, + 12.9989266232456 + ], + [ + 77.576954673282899, + 12.998926676780099 + ], + [ + 77.5769631104491, + 12.998927729554699 + ], + [ + 77.5769633355427, + 12.998927758037199 + ], + [ + 77.576969038422106, + 12.9989284693504 + ], + [ + 77.576969331778898, + 12.998928506189699 + ], + [ + 77.576976788341199, + 12.9989294376992 + ], + [ + 77.576977299384495, + 12.998929499480701 + ], + [ + 77.576983284547495, + 12.998930245936 + ], + [ + 77.576985310352498, + 12.9989304986651 + ], + [ + 77.576999394120307, + 12.9989322551789 + ], + [ + 77.577031711001496, + 12.998940386073 + ], + [ + 77.577215311084899, + 12.9989865768386 + ], + [ + 77.577523030398694, + 12.9990648314682 + ], + [ + 77.577676843691407, + 12.9991113745604 + ], + [ + 77.577833791901199, + 12.999158865751401 + ], + [ + 77.577947484774, + 12.999183710664701 + ], + [ + 77.578081741726706, + 12.999192541022801 + ], + [ + 77.578118689716703, + 12.9991907357767 + ], + [ + 77.578129448867003, + 12.999190209719 + ], + [ + 77.578226774817495, + 12.9991854540157 + ], + [ + 77.578335348416005, + 12.999160660207901 + ], + [ + 77.578391470429395, + 12.999141259634801 + ], + [ + 77.578412419150894, + 12.9991340183053 + ], + [ + 77.578432889251999, + 12.9991269424183 + ], + [ + 77.5784119338159, + 12.9988820906492 + ], + [ + 77.578401661788305, + 12.9987907235528 + ], + [ + 77.578400520410199, + 12.9987805675378 + ], + [ + 77.5783884220386, + 12.9987242215911 + ], + [ + 77.5783750640188, + 12.998545925097901 + ], + [ + 77.578373631236104, + 12.998497834579799 + ], + [ + 77.578373619956807, + 12.998497456149099 + ], + [ + 77.578370657300098, + 12.9983980291008 + ], + [ + 77.578368725267893, + 12.9983223858051 + ], + [ + 77.578366780385906, + 12.9982828713402 + ], + [ + 77.578357062946097, + 12.998085346825899 + ], + [ + 77.5783530135988, + 12.998027793426299 + ], + [ + 77.578341028825704, + 12.9978709382499 + ], + [ + 77.578333762485698, + 12.9977806660682 + ], + [ + 77.578324477325395, + 12.9976621813255 + ], + [ + 77.578322366986498, + 12.997620737841 + ], + [ + 77.578322058428697, + 12.997614679702901 + ], + [ + 77.578319870102007, + 12.997581333324399 + ], + [ + 77.578294809935102, + 12.9975828954985 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "336", + "group": "arakere", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "52", + "ward_name": "52 - Arakere", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಅರಕೆರೆ", + "dig_ward_n": "arakere", + "Assembly": "175 - Bommanahalli", + "Slno": "52" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.608801316992597, + 12.8882936941366 + ], + [ + 77.608812933721097, + 12.886800253879599 + ], + [ + 77.609565099228206, + 12.886838374386301 + ], + [ + 77.610478881301404, + 12.886845291241601 + ], + [ + 77.610505433939906, + 12.8868474376075 + ], + [ + 77.6102034443538, + 12.8855965863525 + ], + [ + 77.6101491637842, + 12.8850094534302 + ], + [ + 77.610105599053298, + 12.8845382238081 + ], + [ + 77.610084069111196, + 12.884443919048 + ], + [ + 77.610093158295598, + 12.884380485371601 + ], + [ + 77.610064779124301, + 12.8841106611181 + ], + [ + 77.610069963315695, + 12.8837879153429 + ], + [ + 77.610083797690905, + 12.883477034770801 + ], + [ + 77.610096891973996, + 12.883329899094299 + ], + [ + 77.610062039433302, + 12.8828350101961 + ], + [ + 77.609981330661398, + 12.882130262371099 + ], + [ + 77.609983661664401, + 12.8818565172293 + ], + [ + 77.609977140953006, + 12.881476412928301 + ], + [ + 77.609990601935195, + 12.8809473193012 + ], + [ + 77.609995102488796, + 12.8808925889448 + ], + [ + 77.609561076897705, + 12.880905133275601 + ], + [ + 77.609561463036499, + 12.8809424184882 + ], + [ + 77.609102873098195, + 12.880984278408601 + ], + [ + 77.608377020131599, + 12.8810568908923 + ], + [ + 77.607891668499207, + 12.881110226236499 + ], + [ + 77.6073943164144, + 12.881152894511899 + ], + [ + 77.607314313398007, + 12.8811595614299 + ], + [ + 77.607096971870305, + 12.8811648949644 + ], + [ + 77.607064318134405, + 12.881187927900299 + ], + [ + 77.606570603086297, + 12.881282240581299 + ], + [ + 77.606537494539296, + 12.881292292967901 + ], + [ + 77.606118844199898, + 12.881419401849 + ], + [ + 77.605891542421006, + 12.881468276265799 + ], + [ + 77.605741556123505, + 12.881454232018701 + ], + [ + 77.605459848004003, + 12.881543087867801 + ], + [ + 77.605234234973395, + 12.8815809106493 + ], + [ + 77.605178091182793, + 12.881349583520301 + ], + [ + 77.604702214914894, + 12.8814062373969 + ], + [ + 77.604272865393895, + 12.881478240111599 + ], + [ + 77.603766179623804, + 12.881654246747599 + ], + [ + 77.603358164240504, + 12.881811586013001 + ], + [ + 77.603347326180497, + 12.8818154638256 + ], + [ + 77.603110154889904, + 12.8818862554949 + ], + [ + 77.602478797752696, + 12.8820895964947 + ], + [ + 77.602300662705701, + 12.8821477153621 + ], + [ + 77.602318125028205, + 12.882500945337 + ], + [ + 77.602304791192196, + 12.8825716146681 + ], + [ + 77.602058781916895, + 12.8825916154222 + ], + [ + 77.601874774979393, + 12.882610282792699 + ], + [ + 77.601270752206105, + 12.882671618438501 + ], + [ + 77.601224116917706, + 12.8822915951278 + ], + [ + 77.601169206983798, + 12.881787300322999 + ], + [ + 77.601113803886903, + 12.881146700952399 + ], + [ + 77.601079083941698, + 12.8807176791946 + ], + [ + 77.600752732675403, + 12.8807502126631 + ], + [ + 77.600735692562395, + 12.8807508734116 + ], + [ + 77.600103374859501, + 12.8808135483843 + ], + [ + 77.599995907243894, + 12.8808246474599 + ], + [ + 77.599634023830404, + 12.880872217263001 + ], + [ + 77.599432420201197, + 12.8808902018884 + ], + [ + 77.599415348919095, + 12.880892218016999 + ], + [ + 77.598795325542497, + 12.8809388864432 + ], + [ + 77.598283869226094, + 12.8810243218081 + ], + [ + 77.598276639320005, + 12.8810268897612 + ], + [ + 77.597868623936705, + 12.8811708951906 + ], + [ + 77.597377938769895, + 12.881370902731399 + ], + [ + 77.596960589701297, + 12.881545575983701 + ], + [ + 77.596732581104803, + 12.8816095783968 + ], + [ + 77.596280564062496, + 12.881621578849201 + ], + [ + 77.596068556069199, + 12.8816202454656 + ], + [ + 77.596023812979098, + 12.881619601546401 + ], + [ + 77.596103420068005, + 12.8820224737762 + ], + [ + 77.596154351218601, + 12.882236144091999 + ], + [ + 77.5961571907973, + 12.8822516577799 + ], + [ + 77.596294801858093, + 12.8830034885183 + ], + [ + 77.596403676584401, + 12.883732899756801 + ], + [ + 77.596485244404505, + 12.884271354591201 + ], + [ + 77.5964778432391, + 12.884309673256199 + ], + [ + 77.596530887244697, + 12.884632172189599 + ], + [ + 77.596571420926907, + 12.8848786046642 + ], + [ + 77.5966362550638, + 12.885306312045101 + ], + [ + 77.596704947824705, + 12.885730156820401 + ], + [ + 77.596769427849694, + 12.886123446601299 + ], + [ + 77.596829525302994, + 12.8864259508952 + ], + [ + 77.596954458790506, + 12.887054803726899 + ], + [ + 77.5969455155075, + 12.8871089578004 + ], + [ + 77.596945285833499, + 12.8871103504702 + ], + [ + 77.597012560555797, + 12.8873965251311 + ], + [ + 77.597020068345202, + 12.8874219582734 + ], + [ + 77.597081232701797, + 12.887629141844499 + ], + [ + 77.597110372053095, + 12.8878086068686 + ], + [ + 77.597128926264006, + 12.8879300678491 + ], + [ + 77.597135455995399, + 12.8879728133232 + ], + [ + 77.597230895321402, + 12.8882417977354 + ], + [ + 77.597396440345904, + 12.8887083626053 + ], + [ + 77.597533254128194, + 12.889121969328601 + ], + [ + 77.597699007937294, + 12.889506603522401 + ], + [ + 77.597814565867395, + 12.889761416072499 + ], + [ + 77.597871865288198, + 12.889887764631 + ], + [ + 77.597988225555497, + 12.8901443452244 + ], + [ + 77.598157171404793, + 12.8905741777105 + ], + [ + 77.598995121079895, + 12.8904372069186 + ], + [ + 77.599533126398299, + 12.8903492622589 + ], + [ + 77.599600883470799, + 12.890296499594699 + ], + [ + 77.599718669210404, + 12.890204780529899 + ], + [ + 77.599884572339207, + 12.890075591188699 + ], + [ + 77.600403985295699, + 12.8898785944365 + ], + [ + 77.6009883501481, + 12.8896596336331 + ], + [ + 77.601562182384001, + 12.889472751688899 + ], + [ + 77.601824825526606, + 12.8893771937209 + ], + [ + 77.601922557991301, + 12.8896798759788 + ], + [ + 77.602054115074296, + 12.890152567156999 + ], + [ + 77.601928011688699, + 12.8901930579281 + ], + [ + 77.601998253155301, + 12.890494361149001 + ], + [ + 77.602517228504695, + 12.890387669219001 + ], + [ + 77.603086153984904, + 12.890287238901101 + ], + [ + 77.603294161827293, + 12.8902579044618 + ], + [ + 77.603172628666499, + 12.8894796043633 + ], + [ + 77.603432717265903, + 12.8893984477298 + ], + [ + 77.603727996462098, + 12.889722456226099 + ], + [ + 77.603813791665601, + 12.8897748262787 + ], + [ + 77.604019522508807, + 12.8897298845541 + ], + [ + 77.604225793918999, + 12.889599520565501 + ], + [ + 77.604464161993207, + 12.8894877601579 + ], + [ + 77.604700739318801, + 12.8894137176329 + ], + [ + 77.604851147645206, + 12.889362862973901 + ], + [ + 77.605044686716397, + 12.889297424726401 + ], + [ + 77.605409873108599, + 12.8891701907658 + ], + [ + 77.605649581239604, + 12.889086675443799 + ], + [ + 77.606267481131297, + 12.8888713920661 + ], + [ + 77.606991830817506, + 12.8886301979244 + ], + [ + 77.607239849051695, + 12.8885476121763 + ], + [ + 77.607490461476701, + 12.8884641628888 + ], + [ + 77.608455689764298, + 12.888347165755199 + ], + [ + 77.608465044260399, + 12.888345672182099 + ], + [ + 77.608801316992597, + 12.8882936941366 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "338", + "group": "kodi chikkanahalli", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "36", + "ward_name": "36 - Kodi Chikkanahalli", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಕೋಡಿ ಚಿಕ್ಕನಹಳ್ಳಿ", + "dig_ward_n": "kodi chikkanahalli", + "Assembly": "175 - Bommanahalli", + "Slno": "36" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.624612804393905, + 12.9089570312864 + ], + [ + 77.624309012689096, + 12.9090329870477 + ], + [ + 77.624264322666406, + 12.909058557307199 + ], + [ + 77.624256212059507, + 12.9090458689536 + ], + [ + 77.624168282171397, + 12.9090426126957 + ], + [ + 77.624005609371594, + 12.9088359382368 + ], + [ + 77.623937606807701, + 12.908791936577799 + ], + [ + 77.623648262565297, + 12.9087906031942 + ], + [ + 77.623476256080195, + 12.908801270263099 + ], + [ + 77.623230246804994, + 12.908231915463499 + ], + [ + 77.623152243863998, + 12.908073242814501 + ], + [ + 77.623106242129694, + 12.907971905660499 + ], + [ + 77.622952903015005, + 12.9076892283361 + ], + [ + 77.622908242202598, + 12.907416891072 + ], + [ + 77.622900328782407, + 12.907350876333499 + ], + [ + 77.622899448153106, + 12.9073435286279 + ], + [ + 77.622883963390393, + 12.9068657378519 + ], + [ + 77.622883339947094, + 12.906846494045 + ], + [ + 77.622423378769, + 12.906897571379099 + ], + [ + 77.622342722826403, + 12.9069053505401 + ], + [ + 77.622333676051497, + 12.906849818472701 + ], + [ + 77.622305983523503, + 12.906820248291099 + ], + [ + 77.622274470643006, + 12.906759646606201 + ], + [ + 77.622135454328301, + 12.9067623456079 + ], + [ + 77.622051521928995, + 12.906711141803701 + ], + [ + 77.622034338624999, + 12.906709777510899 + ], + [ + 77.621949206631697, + 12.9067030197051 + ], + [ + 77.621935531323999, + 12.906487849707601 + ], + [ + 77.621809498312999, + 12.906464965498399 + ], + [ + 77.621799711866799, + 12.905808319601 + ], + [ + 77.621714189645502, + 12.905165133171 + ], + [ + 77.621708856110999, + 12.9049411247252 + ], + [ + 77.6216517774685, + 12.9046287560846 + ], + [ + 77.621200321604306, + 12.904692843793301 + ], + [ + 77.621109853428706, + 12.904688682285601 + ], + [ + 77.620849163139098, + 12.9047566200875 + ], + [ + 77.620519930234494, + 12.904841895313201 + ], + [ + 77.620488295686201, + 12.904749047198999 + ], + [ + 77.620281159247099, + 12.9041292778741 + ], + [ + 77.620187923129393, + 12.904107402677701 + ], + [ + 77.620087023754493, + 12.9037219121033 + ], + [ + 77.620028608450099, + 12.903632525072799 + ], + [ + 77.619874202442205, + 12.9035048164159 + ], + [ + 77.619791824161297, + 12.903285145806899 + ], + [ + 77.619706766816705, + 12.9030575053297 + ], + [ + 77.619592746617599, + 12.902796634961399 + ], + [ + 77.619532377943997, + 12.9024361739272 + ], + [ + 77.620090795105796, + 12.9022830245077 + ], + [ + 77.619993458102499, + 12.9019276777769 + ], + [ + 77.619979918394506, + 12.901811467012299 + ], + [ + 77.620256343586902, + 12.901694200785901 + ], + [ + 77.620273751807702, + 12.901681118198001 + ], + [ + 77.620279243971893, + 12.9013662595637 + ], + [ + 77.620286373455102, + 12.9010601404763 + ], + [ + 77.620294249281798, + 12.900746361924099 + ], + [ + 77.620299176562796, + 12.9003772494377 + ], + [ + 77.620311974004693, + 12.9001068074713 + ], + [ + 77.620252635654893, + 12.9000242187587 + ], + [ + 77.620194574600305, + 12.899502757520899 + ], + [ + 77.620151647164207, + 12.8990306240569 + ], + [ + 77.620137737147701, + 12.8988848795659 + ], + [ + 77.619810784548505, + 12.8989188976712 + ], + [ + 77.619786783643605, + 12.898625553278 + ], + [ + 77.620357471826793, + 12.898588218537 + ], + [ + 77.620193465643297, + 12.898152202098 + ], + [ + 77.6197671959697, + 12.8982700008329 + ], + [ + 77.619713479700707, + 12.898285786099599 + ], + [ + 77.619710611834705, + 12.8982554318436 + ], + [ + 77.619709613381502, + 12.8982555023768 + ], + [ + 77.619657118689901, + 12.8982560283363 + ], + [ + 77.619483898256405, + 12.898228960897301 + ], + [ + 77.619344883672298, + 12.898214677393399 + ], + [ + 77.619256045097401, + 12.898197937070799 + ], + [ + 77.6192055333252, + 12.898179638334099 + ], + [ + 77.619168937322499, + 12.898163452421301 + ], + [ + 77.619156194039405, + 12.898157816237999 + ], + [ + 77.619153140563498, + 12.8981552756848 + ], + [ + 77.619134556170593, + 12.898152138155901 + ], + [ + 77.619034240373693, + 12.898068513995799 + ], + [ + 77.618962995102393, + 12.8980151604909 + ], + [ + 77.618916133045502, + 12.897969795627301 + ], + [ + 77.6183386957957, + 12.898006604039301 + ], + [ + 77.618080052628599, + 12.8979961962162 + ], + [ + 77.618077793963707, + 12.8979825970166 + ], + [ + 77.618028703442803, + 12.8976699712676 + ], + [ + 77.617755883694997, + 12.896027262278601 + ], + [ + 77.617179552527602, + 12.895965597521 + ], + [ + 77.617179976494398, + 12.895929146446299 + ], + [ + 77.617188962255, + 12.895157236143501 + ], + [ + 77.617195362144699, + 12.8946074069862 + ], + [ + 77.6171977047144, + 12.8944059922664 + ], + [ + 77.6170430328131, + 12.8944165552897 + ], + [ + 77.616987345541403, + 12.894421813932301 + ], + [ + 77.616468658541393, + 12.8944890639879 + ], + [ + 77.616524382380504, + 12.8951638860808 + ], + [ + 77.616555617840504, + 12.8954576535609 + ], + [ + 77.616260736889998, + 12.8954788439057 + ], + [ + 77.615478076042507, + 12.8954543336078 + ], + [ + 77.615484231495699, + 12.894886746735001 + ], + [ + 77.6150711400837, + 12.8948234414566 + ], + [ + 77.614932846268999, + 12.894849293518799 + ], + [ + 77.614646923190307, + 12.8948857456105 + ], + [ + 77.614623588977196, + 12.894921746967899 + ], + [ + 77.614643256385406, + 12.8951097540562 + ], + [ + 77.614598142430907, + 12.8951070337137 + ], + [ + 77.614481358298207, + 12.8950962236233 + ], + [ + 77.614285252585702, + 12.8950450228197 + ], + [ + 77.614040321270494, + 12.8950930912868 + ], + [ + 77.613608345837704, + 12.895041650770001 + ], + [ + 77.613492827955199, + 12.8952043550527 + ], + [ + 77.613362373031194, + 12.895212259736301 + ], + [ + 77.613097001445198, + 12.895187187189 + ], + [ + 77.612753831541298, + 12.895186655294699 + ], + [ + 77.612377000660601, + 12.895189228984 + ], + [ + 77.611999052968997, + 12.895197201872399 + ], + [ + 77.611838161852901, + 12.895197122033601 + ], + [ + 77.611683093840199, + 12.8952323358961 + ], + [ + 77.611627857570994, + 12.8954210166922 + ], + [ + 77.611577954120506, + 12.8956697135519 + ], + [ + 77.611365430355306, + 12.895679757063499 + ], + [ + 77.611100912443206, + 12.895739749315201 + ], + [ + 77.611040318836999, + 12.895798521288199 + ], + [ + 77.610422004851699, + 12.895792050585801 + ], + [ + 77.609916360230997, + 12.895838455561901 + ], + [ + 77.609731596874695, + 12.8959300735265 + ], + [ + 77.609366177665194, + 12.895931201455101 + ], + [ + 77.609332483387206, + 12.896922782736 + ], + [ + 77.609367416563401, + 12.897070035954799 + ], + [ + 77.6094028519624, + 12.8972379689327 + ], + [ + 77.609444450039604, + 12.897445959318301 + ], + [ + 77.609479885438603, + 12.897692466441899 + ], + [ + 77.609541330928806, + 12.8979953967404 + ], + [ + 77.609587355179002, + 12.8981124942362 + ], + [ + 77.609556360795807, + 12.8982382231973 + ], + [ + 77.609517480320207, + 12.898511893998901 + ], + [ + 77.609482032563406, + 12.898584429505 + ], + [ + 77.609504326841702, + 12.898585938144601 + ], + [ + 77.609443353428404, + 12.8987608326622 + ], + [ + 77.609409024270406, + 12.898824545201 + ], + [ + 77.609680029672703, + 12.899103125121799 + ], + [ + 77.609839474831105, + 12.898975704486 + ], + [ + 77.610008270324599, + 12.8986890700989 + ], + [ + 77.610170747449203, + 12.898426425074099 + ], + [ + 77.610282850063101, + 12.8982402946575 + ], + [ + 77.610372619007407, + 12.8981562143947 + ], + [ + 77.610624886436099, + 12.8980934596787 + ], + [ + 77.610979727218805, + 12.898027562063101 + ], + [ + 77.611426521380395, + 12.897924337205 + ], + [ + 77.611958052365793, + 12.897802624312799 + ], + [ + 77.612006093928002, + 12.897838804476899 + ], + [ + 77.612005892843399, + 12.8979133853045 + ], + [ + 77.612038961545295, + 12.897932775869901 + ], + [ + 77.612781819537005, + 12.897947251402799 + ], + [ + 77.613046956049502, + 12.8980948070366 + ], + [ + 77.613030927508305, + 12.898215056094701 + ], + [ + 77.613095736281494, + 12.898637016845299 + ], + [ + 77.613129006740493, + 12.898837471752801 + ], + [ + 77.613152253286898, + 12.8990112546939 + ], + [ + 77.613242802301599, + 12.899283802350901 + ], + [ + 77.613929615728594, + 12.8991001976968 + ], + [ + 77.614434460401995, + 12.899553270974 + ], + [ + 77.614636140150907, + 12.8998782790348 + ], + [ + 77.615000731969403, + 12.9002606687182 + ], + [ + 77.6159836428033, + 12.9013270946521 + ], + [ + 77.616767850446905, + 12.901957926103901 + ], + [ + 77.617164845081206, + 12.902122492171801 + ], + [ + 77.617288446090797, + 12.902226515799001 + ], + [ + 77.617384543635794, + 12.902504260812499 + ], + [ + 77.6174374618314, + 12.9026241170513 + ], + [ + 77.617503349245595, + 12.902748912282201 + ], + [ + 77.617591291286899, + 12.902762498105901 + ], + [ + 77.618195025851605, + 12.902592714923101 + ], + [ + 77.618251024794404, + 12.9025885692093 + ], + [ + 77.618403920845395, + 12.9027639205647 + ], + [ + 77.618444646761304, + 12.9031650848867 + ], + [ + 77.618355633826795, + 12.903391860308 + ], + [ + 77.618345442577294, + 12.903583187187699 + ], + [ + 77.618347059224703, + 12.9035966735486 + ], + [ + 77.618386801412299, + 12.9039281730375 + ], + [ + 77.618434487171896, + 12.9041786778589 + ], + [ + 77.618552172771402, + 12.904716514097499 + ], + [ + 77.618616529281795, + 12.9050469266314 + ], + [ + 77.618685129090295, + 12.905348070582001 + ], + [ + 77.618963872799398, + 12.9059596765614 + ], + [ + 77.619129485374003, + 12.905806906645999 + ], + [ + 77.619311490474502, + 12.905708708039599 + ], + [ + 77.619574657680005, + 12.9056466173163 + ], + [ + 77.619617312574405, + 12.9056914894143 + ], + [ + 77.619807832079005, + 12.905880666985601 + ], + [ + 77.620517244941496, + 12.9066273854652 + ], + [ + 77.620815453123498, + 12.906939233048901 + ], + [ + 77.620415555471396, + 12.907038457533201 + ], + [ + 77.620173035031897, + 12.9072119103042 + ], + [ + 77.620285636902906, + 12.9074414286523 + ], + [ + 77.620295558052504, + 12.907484414626801 + ], + [ + 77.6203719094581, + 12.9076213534563 + ], + [ + 77.620694381529503, + 12.907823408762299 + ], + [ + 77.620753669557104, + 12.907975725199099 + ], + [ + 77.620706252165306, + 12.9082186620914 + ], + [ + 77.620633295891295, + 12.908541742278601 + ], + [ + 77.620556013637994, + 12.9088518650582 + ], + [ + 77.620546967320905, + 12.909098916772001 + ], + [ + 77.620553756200096, + 12.9094196859966 + ], + [ + 77.620563873718197, + 12.9096224431743 + ], + [ + 77.620560347991201, + 12.909919044175901 + ], + [ + 77.620610354668401, + 12.910117581902499 + ], + [ + 77.620612817001501, + 12.910131688511701 + ], + [ + 77.620673557138602, + 12.9103438438424 + ], + [ + 77.620751121899701, + 12.910518679878599 + ], + [ + 77.620818182441297, + 12.9106767390318 + ], + [ + 77.620884859302606, + 12.910785534856 + ], + [ + 77.620934015829604, + 12.9107757816044 + ], + [ + 77.621042067172198, + 12.910774230619801 + ], + [ + 77.621075566280695, + 12.9107886408369 + ], + [ + 77.621085006613399, + 12.9108429229994 + ], + [ + 77.621092280104705, + 12.9108799977688 + ], + [ + 77.621135383826399, + 12.9110518032971 + ], + [ + 77.621169921807905, + 12.911392558500999 + ], + [ + 77.621164094790203, + 12.911493933772199 + ], + [ + 77.621162417334105, + 12.911525424870799 + ], + [ + 77.621158335436903, + 12.911602062336 + ], + [ + 77.621145974348096, + 12.9117372739353 + ], + [ + 77.6211612230383, + 12.911878965159801 + ], + [ + 77.621172219607104, + 12.9119430220555 + ], + [ + 77.621186658371798, + 12.912007044407099 + ], + [ + 77.6212356283704, + 12.912080852993 + ], + [ + 77.621282779383094, + 12.9122198235286 + ], + [ + 77.621226801923598, + 12.9123851236848 + ], + [ + 77.621200719937406, + 12.9125915039586 + ], + [ + 77.621178330086494, + 12.9126094853785 + ], + [ + 77.6211366150945, + 12.9126741648509 + ], + [ + 77.621135082199103, + 12.912674125125299 + ], + [ + 77.620999283525805, + 12.9126896462947 + ], + [ + 77.621038217745905, + 12.912702739241601 + ], + [ + 77.621040095994005, + 12.9127045443993 + ], + [ + 77.621040543461802, + 12.912704974454201 + ], + [ + 77.621352975752302, + 12.912969477250501 + ], + [ + 77.621455053108505, + 12.913208988365399 + ], + [ + 77.6214345707116, + 12.913287113939401 + ], + [ + 77.620905738331203, + 12.913632333266399 + ], + [ + 77.622145732015198, + 12.9144736183418 + ], + [ + 77.622172145467005, + 12.915791217409501 + ], + [ + 77.622181583973301, + 12.9163647931505 + ], + [ + 77.622633904989897, + 12.9172919015929 + ], + [ + 77.622643724717804, + 12.9172951907806 + ], + [ + 77.622653379427405, + 12.9172826717896 + ], + [ + 77.622671178004296, + 12.917286731205101 + ], + [ + 77.622692828244595, + 12.9172916690879 + ], + [ + 77.622728749242796, + 12.917299861771999 + ], + [ + 77.622728185198696, + 12.917294617451301 + ], + [ + 77.622728749242796, + 12.917299861771999 + ], + [ + 77.622742617699103, + 12.9173030248195 + ], + [ + 77.622749288900096, + 12.917290069057699 + ], + [ + 77.622755292611203, + 12.917278409753401 + ], + [ + 77.622770456729995, + 12.9172489640673 + ], + [ + 77.622772179933406, + 12.9172456167551 + ], + [ + 77.623260407190003, + 12.916388261484901 + ], + [ + 77.624023261316907, + 12.915024055233101 + ], + [ + 77.624244866545197, + 12.914640684396099 + ], + [ + 77.624458199881403, + 12.914265593323501 + ], + [ + 77.624592944148702, + 12.914051009062501 + ], + [ + 77.625144495642701, + 12.913172643033 + ], + [ + 77.625253789095595, + 12.912994654408401 + ], + [ + 77.625491659345201, + 12.912607271994901 + ], + [ + 77.626101658043396, + 12.911613858184101 + ], + [ + 77.626560293748099, + 12.910862083998 + ], + [ + 77.626415879621703, + 12.9107935419634 + ], + [ + 77.626075274577403, + 12.910657850815699 + ], + [ + 77.626040352753705, + 12.9102079899668 + ], + [ + 77.626104355166802, + 12.910090652209499 + ], + [ + 77.626196766435399, + 12.909902013160901 + ], + [ + 77.626217692773295, + 12.9098453096261 + ], + [ + 77.626215026005895, + 12.909773306911401 + ], + [ + 77.626201589713105, + 12.909670094925399 + ], + [ + 77.626095634910499, + 12.909576106363 + ], + [ + 77.625943348448203, + 12.909427135471001 + ], + [ + 77.625855461033396, + 12.909259034525601 + ], + [ + 77.625529175693003, + 12.909249565050001 + ], + [ + 77.625524932278395, + 12.9091818248534 + ], + [ + 77.625173236579499, + 12.909268531067999 + ], + [ + 77.625147374317706, + 12.909111688240801 + ], + [ + 77.624678729637793, + 12.909211450622699 + ], + [ + 77.624612804393905, + 12.9089570312864 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "339", + "group": "agara", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "30", + "ward_name": "30 - Agara", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಅಗರ", + "dig_ward_n": "agara", + "Assembly": "175 - Bommanahalli", + "Slno": "30" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.651434236289901, + 12.906577158582801 + ], + [ + 77.649294229487893, + 12.9066505225073 + ], + [ + 77.649052887055305, + 12.906670523261401 + ], + [ + 77.649040886602904, + 12.9064838495567 + ], + [ + 77.648483532255796, + 12.906515850763199 + ], + [ + 77.647952178889, + 12.9065678527238 + ], + [ + 77.647504161997503, + 12.906609187615601 + ], + [ + 77.646870138093107, + 12.906677190179501 + ], + [ + 77.646832136660393, + 12.906560519114 + ], + [ + 77.646825738614098, + 12.9064885564138 + ], + [ + 77.646612795057194, + 12.906566519340201 + ], + [ + 77.645987008246706, + 12.906645305367 + ], + [ + 77.645635884185793, + 12.9066933696096 + ], + [ + 77.645609876073806, + 12.9066969294601 + ], + [ + 77.6454894535959, + 12.9063568304214 + ], + [ + 77.6449354557531, + 12.906607941142701 + ], + [ + 77.644437258447297, + 12.9066484650606 + ], + [ + 77.644403923509699, + 12.9059198628866 + ], + [ + 77.644360767787603, + 12.905059803991399 + ], + [ + 77.644342380447299, + 12.9047538502787 + ], + [ + 77.644256677759103, + 12.9047734450447 + ], + [ + 77.643787004528406, + 12.9048647621164 + ], + [ + 77.643156025921499, + 12.9050009921081 + ], + [ + 77.643043963013398, + 12.9050345595992 + ], + [ + 77.642423784947496, + 12.905220329974 + ], + [ + 77.642408311548905, + 12.9052249664269 + ], + [ + 77.642380641803001, + 12.905230685618401 + ], + [ + 77.641753474604997, + 12.9053812209903 + ], + [ + 77.641240529612404, + 12.9055043393957 + ], + [ + 77.641193998765601, + 12.9056041800097 + ], + [ + 77.641214296360403, + 12.906005539549501 + ], + [ + 77.641242582780706, + 12.9063783663986 + ], + [ + 77.641261809384304, + 12.9066317883727 + ], + [ + 77.641303972791604, + 12.9073054189091 + ], + [ + 77.641334562793205, + 12.907851525740201 + ], + [ + 77.641334684560306, + 12.907854262737199 + ], + [ + 77.641369026882103, + 12.908627058832799 + ], + [ + 77.641405115598801, + 12.909278158165501 + ], + [ + 77.641656578220307, + 12.909274400544801 + ], + [ + 77.641678254113799, + 12.9097139906695 + ], + [ + 77.641627139728797, + 12.909719288357699 + ], + [ + 77.641644871948898, + 12.9102473582959 + ], + [ + 77.641720274871105, + 12.911393925423599 + ], + [ + 77.641689084667604, + 12.912187314923001 + ], + [ + 77.644586537390893, + 12.9120591531056 + ], + [ + 77.646392969746103, + 12.9120647612563 + ], + [ + 77.647296886973905, + 12.911998832542601 + ], + [ + 77.647817479426394, + 12.9119756286458 + ], + [ + 77.6485848200427, + 12.911955897825001 + ], + [ + 77.648746388439704, + 12.911960473977 + ], + [ + 77.649028181441295, + 12.911946212624899 + ], + [ + 77.648959689866004, + 12.912568336805201 + ], + [ + 77.648972012412102, + 12.913043872020999 + ], + [ + 77.648978929172998, + 12.9141624422007 + ], + [ + 77.648987607565999, + 12.914483103452399 + ], + [ + 77.649006868258297, + 12.915194749102399 + ], + [ + 77.649004885245503, + 12.9153128491003 + ], + [ + 77.648644871672005, + 12.9153221827855 + ], + [ + 77.648542201134404, + 12.915323516169099 + ], + [ + 77.648096851010195, + 12.9153075155658 + ], + [ + 77.647420825522204, + 12.9152795145101 + ], + [ + 77.646641462804794, + 12.9152768477429 + ], + [ + 77.646576793699893, + 12.915260180447801 + ], + [ + 77.645860068100603, + 12.915252697273999 + ], + [ + 77.645826208146204, + 12.915184200949099 + ], + [ + 77.645442145084999, + 12.9151804427832 + ], + [ + 77.644758400330602, + 12.915212128946401 + ], + [ + 77.644797474761603, + 12.9158717796786 + ], + [ + 77.644838181376301, + 12.9167758425834 + ], + [ + 77.644855613486996, + 12.9171723410401 + ], + [ + 77.644889442716106, + 12.9179417713245 + ], + [ + 77.644924840056404, + 12.918600631521301 + ], + [ + 77.644950589707094, + 12.9190095830608 + ], + [ + 77.644953524732998, + 12.9191032517236 + ], + [ + 77.644980663823404, + 12.9196441322675 + ], + [ + 77.6450070705705, + 12.9197452122343 + ], + [ + 77.645034353635694, + 12.920392337930499 + ], + [ + 77.645085788170505, + 12.921828702889 + ], + [ + 77.645103113293203, + 12.921992977596799 + ], + [ + 77.645530783868793, + 12.9224341875875 + ], + [ + 77.645749260468705, + 12.9226327545093 + ], + [ + 77.646297763672607, + 12.923070826275501 + ], + [ + 77.646765625922995, + 12.9234408741394 + ], + [ + 77.647097662727603, + 12.9236860941435 + ], + [ + 77.647442699844007, + 12.9238699897511 + ], + [ + 77.647877361154599, + 12.9240491522852 + ], + [ + 77.648200575027502, + 12.924196936894701 + ], + [ + 77.648245426778999, + 12.9241983942612 + ], + [ + 77.648485584160994, + 12.924234200829799 + ], + [ + 77.649125975856904, + 12.924327135655499 + ], + [ + 77.649242050669798, + 12.924358225932901 + ], + [ + 77.649358853015897, + 12.9243426986837 + ], + [ + 77.649538012732407, + 12.9243480500843 + ], + [ + 77.650053033927705, + 12.924314137741201 + ], + [ + 77.650096453103302, + 12.9243380696796 + ], + [ + 77.6501276663749, + 12.9243552741691 + ], + [ + 77.650191577870004, + 12.9244158053842 + ], + [ + 77.650264723580307, + 12.9243857830942 + ], + [ + 77.650454430056897, + 12.924362400670701 + ], + [ + 77.650687601019399, + 12.924366807901199 + ], + [ + 77.650890723931397, + 12.9243602276493 + ], + [ + 77.651072336720404, + 12.924333539254601 + ], + [ + 77.651637128294894, + 12.924235202616901 + ], + [ + 77.651737707043495, + 12.924220629641299 + ], + [ + 77.6517206064633, + 12.924148852349401 + ], + [ + 77.6516859081365, + 12.924003210792501 + ], + [ + 77.651622831318207, + 12.923698954273901 + ], + [ + 77.651559635497406, + 12.9233834064174 + ], + [ + 77.651517907558798, + 12.923192987142 + ], + [ + 77.651492846836007, + 12.9230001400188 + ], + [ + 77.651478724941896, + 12.9227529777593 + ], + [ + 77.651479363409393, + 12.922704413526899 + ], + [ + 77.651482293499896, + 12.9224367515291 + ], + [ + 77.651484550818296, + 12.922378743871899 + ], + [ + 77.651486821090103, + 12.9223203927911 + ], + [ + 77.651479890161397, + 12.9219365182178 + ], + [ + 77.651488284579202, + 12.9215321614533 + ], + [ + 77.651500871437193, + 12.9211977755969 + ], + [ + 77.651501303939796, + 12.9211842202035 + ], + [ + 77.651585945030206, + 12.921186748150999 + ], + [ + 77.651592851587495, + 12.9211866779915 + ], + [ + 77.651658012467095, + 12.9211820797351 + ], + [ + 77.651608122301994, + 12.9211199712895 + ], + [ + 77.651647547207403, + 12.9206549054274 + ], + [ + 77.651646546043395, + 12.920617561817 + ], + [ + 77.651685639379195, + 12.9197708271248 + ], + [ + 77.6516955691189, + 12.919693955334701 + ], + [ + 77.651715044454207, + 12.9190145633569 + ], + [ + 77.651725975130205, + 12.9186332753593 + ], + [ + 77.651743880400204, + 12.9180505342049 + ], + [ + 77.6517622484171, + 12.917452720535501 + ], + [ + 77.651763797736507, + 12.917366015436899 + ], + [ + 77.651789057321693, + 12.915952565676299 + ], + [ + 77.651791803213598, + 12.9158759990252 + ], + [ + 77.651816507934697, + 12.915187059148799 + ], + [ + 77.651843183147193, + 12.9144431707224 + ], + [ + 77.651854983914703, + 12.914057579087901 + ], + [ + 77.651855009159306, + 12.914056742283 + ], + [ + 77.651875414215695, + 12.913390017294599 + ], + [ + 77.651887922695806, + 12.9129813158138 + ], + [ + 77.651890746838404, + 12.9128890246848 + ], + [ + 77.651895520334406, + 12.911987245490399 + ], + [ + 77.651896851794902, + 12.9117356657208 + ], + [ + 77.651899790723306, + 12.9113613065667 + ], + [ + 77.651909845617297, + 12.9100802849531 + ], + [ + 77.651917635834394, + 12.909375082028999 + ], + [ + 77.651897302856497, + 12.9088912618554 + ], + [ + 77.651872297827197, + 12.908541942160801 + ], + [ + 77.6518676740301, + 12.908520131319101 + ], + [ + 77.651737677819398, + 12.907906903502701 + ], + [ + 77.651625170131297, + 12.907342859817501 + ], + [ + 77.651434236289901, + 12.906577158582801 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "341", + "group": "Binnypete", + "Corporatio": "Central", + "ac_no": "164", + "ac": "Gandhinagara", + "corporat_1": "1", + "ward_id": "47", + "ward_name": "47 - Binnypete", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಗಾಂಧಿನಗರ", + "ward_name_": "ಬಿನ್ನಿಪೇಟೆ", + "dig_ward_n": "Binnypete", + "Assembly": "164 - Gandhinagara", + "Slno": "47" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.564256546162099, + 12.9682427839511 + ], + [ + 77.564256546162099, + 12.9682427839511 + ], + [ + 77.564256546162099, + 12.9682427839511 + ], + [ + 77.5642242652345, + 12.968201873902199 + ], + [ + 77.564135775747303, + 12.96808972757 + ], + [ + 77.5641044608371, + 12.968050040289301 + ], + [ + 77.564078134683797, + 12.9680166761261 + ], + [ + 77.563893133113496, + 12.967782216025499 + ], + [ + 77.563868942946002, + 12.9677485604197 + ], + [ + 77.563829888237507, + 12.967694223056 + ], + [ + 77.563791661534097, + 12.9676410375593 + ], + [ + 77.563725789782197, + 12.96754938886 + ], + [ + 77.563668263377906, + 12.967469352217501 + ], + [ + 77.563664493216294, + 12.967463898171101 + ], + [ + 77.563435017816403, + 12.967131942457399 + ], + [ + 77.563430992390906, + 12.967126118697299 + ], + [ + 77.563286354149199, + 12.9669030297789 + ], + [ + 77.563201090440799, + 12.9667715190549 + ], + [ + 77.563191318793201, + 12.9667554624498 + ], + [ + 77.563185788795806, + 12.966746374868 + ], + [ + 77.563136054507495, + 12.966664651320301 + ], + [ + 77.563135533554998, + 12.9666637954597 + ], + [ + 77.563000227576694, + 12.9664414202307 + ], + [ + 77.5629321240217, + 12.966329493467301 + ], + [ + 77.562760646001095, + 12.966047675539301 + ], + [ + 77.562752881370301, + 12.96603491482 + ], + [ + 77.562745134537394, + 12.9660221828356 + ], + [ + 77.562696299001701, + 12.965941924736001 + ], + [ + 77.562414990931103, + 12.9655159531638 + ], + [ + 77.562408271216796, + 12.965505777778001 + ], + [ + 77.562114972735102, + 12.9650616468469 + ], + [ + 77.562072196366003, + 12.9649968719495 + ], + [ + 77.561999785568901, + 12.9648872232498 + ], + [ + 77.561923756969506, + 12.9648005805007 + ], + [ + 77.561868132259306, + 12.9647371905598 + ], + [ + 77.561832023560697, + 12.964696891433899 + ], + [ + 77.561809833481206, + 12.964703424143099 + ], + [ + 77.561809534922006, + 12.964703512050001 + ], + [ + 77.561740755040802, + 12.964723763393 + ], + [ + 77.561674991815707, + 12.9647444485388 + ], + [ + 77.561651800812697, + 12.9647517427646 + ], + [ + 77.561646426646107, + 12.964752445713399 + ], + [ + 77.561455733942097, + 12.9647773885238 + ], + [ + 77.561363140628202, + 12.9647873345025 + ], + [ + 77.561241695631395, + 12.9648472545214 + ], + [ + 77.561187386563006, + 12.9648850566322 + ], + [ + 77.561105629306098, + 12.9649411980125 + ], + [ + 77.561069305192206, + 12.9649923749392 + ], + [ + 77.561033350802703, + 12.9650796864802 + ], + [ + 77.561009335656493, + 12.965152199348299 + ], + [ + 77.560970065747597, + 12.965253095365201 + ], + [ + 77.560947774629497, + 12.965315706851699 + ], + [ + 77.560865968444205, + 12.965545484571599 + ], + [ + 77.560741271187695, + 12.965794033001 + ], + [ + 77.560689969372405, + 12.965900694022899 + ], + [ + 77.560626980397501, + 12.965990530245 + ], + [ + 77.560564336009307, + 12.9660577766524 + ], + [ + 77.560474842039795, + 12.966145615042601 + ], + [ + 77.560331970405102, + 12.966249789153499 + ], + [ + 77.560198862306805, + 12.966351608494 + ], + [ + 77.560031235652801, + 12.966456026061101 + ], + [ + 77.559918332467007, + 12.9665068270393 + ], + [ + 77.559743830101397, + 12.966558234000701 + ], + [ + 77.559603646448906, + 12.966231734055199 + ], + [ + 77.559365769045499, + 12.9656776941882 + ], + [ + 77.559240858984296, + 12.965398850944601 + ], + [ + 77.559215055205797, + 12.9653528025329 + ], + [ + 77.559105663917506, + 12.9652106963244 + ], + [ + 77.559033003740197, + 12.9651163060212 + ], + [ + 77.558987476499198, + 12.965055770352 + ], + [ + 77.558959013264797, + 12.9649974628345 + ], + [ + 77.558881037027902, + 12.964837728556599 + ], + [ + 77.558874192548501, + 12.964824032586099 + ], + [ + 77.558855758201105, + 12.964787148599999 + ], + [ + 77.558838744678098, + 12.9647557039115 + ], + [ + 77.558731978179907, + 12.964787244558201 + ], + [ + 77.558673982500693, + 12.964830802301099 + ], + [ + 77.558658844055401, + 12.964842172049201 + ], + [ + 77.558658195861497, + 12.964846598979699 + ], + [ + 77.558650233273497, + 12.9649009805778 + ], + [ + 77.5585249335751, + 12.9650908103416 + ], + [ + 77.558418445350597, + 12.965205918928399 + ], + [ + 77.5583134878827, + 12.9653018139532 + ], + [ + 77.558153412997896, + 12.9653879532048 + ], + [ + 77.558102313313498, + 12.965415450899499 + ], + [ + 77.558072136859096, + 12.965431689081999 + ], + [ + 77.5580569634337, + 12.965439854634299 + ], + [ + 77.557981462349105, + 12.965488827981 + ], + [ + 77.557979177268095, + 12.9654903104332 + ], + [ + 77.557901210411998, + 12.9655291287362 + ], + [ + 77.557627456849303, + 12.965665424011 + ], + [ + 77.557593217370496, + 12.965682517908 + ], + [ + 77.557512555416494, + 12.9657227890011 + ], + [ + 77.557463628271094, + 12.9657472162329 + ], + [ + 77.557462165357407, + 12.9657483834247 + ], + [ + 77.5574352791932, + 12.965769835412599 + ], + [ + 77.5574047571954, + 12.965794188359901 + ], + [ + 77.557402375050401, + 12.965796089159999 + ], + [ + 77.5573701882074, + 12.965821771013299 + ], + [ + 77.557314061083403, + 12.9658665532766 + ], + [ + 77.557232906302005, + 12.9659313049115 + ], + [ + 77.557221108285603, + 12.9659372355224 + ], + [ + 77.557197657134694, + 12.9659490249146 + ], + [ + 77.557113762209298, + 12.9659912006531 + ], + [ + 77.556958069281194, + 12.966018805414899 + ], + [ + 77.556924342565594, + 12.9660247852695 + ], + [ + 77.556914940317498, + 12.9660264523927 + ], + [ + 77.556911464470801, + 12.9660270683768 + ], + [ + 77.556911474390901, + 12.9660271104435 + ], + [ + 77.556911544393003, + 12.966027407292 + ], + [ + 77.556912356972305, + 12.966030841485599 + ], + [ + 77.556912565879102, + 12.9660317230156 + ], + [ + 77.556912863367302, + 12.966032979514001 + ], + [ + 77.5569145886314, + 12.9660402688329 + ], + [ + 77.556922143308299, + 12.9660721788484 + ], + [ + 77.556937338340504, + 12.9661363594194 + ], + [ + 77.556944061871405, + 12.9661650911011 + ], + [ + 77.556944112923702, + 12.9661653092365 + ], + [ + 77.55695538018, + 12.9662134612889 + ], + [ + 77.556973459573399, + 12.966290720890999 + ], + [ + 77.556977511987498, + 12.9663059630745 + ], + [ + 77.556978250636703, + 12.966308742986399 + ], + [ + 77.556978244227693, + 12.9663087613429 + ], + [ + 77.556971317880993, + 12.9663285995768 + ], + [ + 77.556962028548597, + 12.9663552046741 + ], + [ + 77.556946278315607, + 12.966391497811699 + ], + [ + 77.556880193292898, + 12.966468969252601 + ], + [ + 77.556843300648396, + 12.9665122180882 + ], + [ + 77.556811591549007, + 12.9665644785804 + ], + [ + 77.556793597112403, + 12.9666064403867 + ], + [ + 77.556771019268197, + 12.966650705879999 + ], + [ + 77.556716685930994, + 12.9666862488299 + ], + [ + 77.556561606026193, + 12.9667227817203 + ], + [ + 77.556491885813003, + 12.9667393017069 + ], + [ + 77.556387574271795, + 12.9667640180304 + ], + [ + 77.5563286122146, + 12.966797347743199 + ], + [ + 77.556266483765299, + 12.966854647516699 + ], + [ + 77.556200494038507, + 12.966915507804 + ], + [ + 77.556139246191194, + 12.9669719948264 + ], + [ + 77.556135371779106, + 12.966975619624399 + ], + [ + 77.556100795914105, + 12.967007970686501 + ], + [ + 77.556051420445897, + 12.967054169006399 + ], + [ + 77.556050606120806, + 12.9670548925464 + ], + [ + 77.556041149282393, + 12.967063305410401 + ], + [ + 77.556032925851099, + 12.967069094255599 + ], + [ + 77.556019404885802, + 12.9670786122243 + ], + [ + 77.555914244431804, + 12.9671526394207 + ], + [ + 77.555869098903301, + 12.967185832421199 + ], + [ + 77.555858160679705, + 12.967185939873699 + ], + [ + 77.5558012653444, + 12.967186499685599 + ], + [ + 77.555796561217207, + 12.9671865458958 + ], + [ + 77.555761105910705, + 12.9671794270884 + ], + [ + 77.555552294478701, + 12.967137499582201 + ], + [ + 77.5553655977657, + 12.967100012933701 + ], + [ + 77.555340781183801, + 12.9670950301555 + ], + [ + 77.5552718936747, + 12.9671149052493 + ], + [ + 77.555187934553899, + 12.9671387752773 + ], + [ + 77.555152089452093, + 12.9671489659874 + ], + [ + 77.5550824641183, + 12.9671687606465 + ], + [ + 77.555082179375404, + 12.9671688420439 + ], + [ + 77.554844774652807, + 12.967236548668 + ], + [ + 77.554849770257903, + 12.9672519919223 + ], + [ + 77.554853750442902, + 12.9672642961375 + ], + [ + 77.554873906070796, + 12.9673266086245 + ], + [ + 77.554873893660996, + 12.967326612756301 + ], + [ + 77.554806692037005, + 12.967348986929499 + ], + [ + 77.554797016326305, + 12.9673522088171 + ], + [ + 77.554797033717804, + 12.967352246686101 + ], + [ + 77.554813767777404, + 12.967388684153899 + ], + [ + 77.554973081151303, + 12.967735579749201 + ], + [ + 77.555255697468098, + 12.9684032093505 + ], + [ + 77.555261585085702, + 12.9684171172046 + ], + [ + 77.555371010178405, + 12.968677807225999 + ], + [ + 77.555407674723796, + 12.9687651540491 + ], + [ + 77.5555802474274, + 12.9691762811582 + ], + [ + 77.555599304334194, + 12.9691813087135 + ], + [ + 77.5556252991679, + 12.9691881662773 + ], + [ + 77.555635894957604, + 12.9691909613852 + ], + [ + 77.555662803328204, + 12.9691980593251 + ], + [ + 77.555945171820596, + 12.969260462489 + ], + [ + 77.555947384040707, + 12.9692609512077 + ], + [ + 77.555947996183704, + 12.969261086132899 + ], + [ + 77.555951631210604, + 12.9692618897312 + ], + [ + 77.555951870343904, + 12.969261942492601 + ], + [ + 77.5561129110813, + 12.969297532988801 + ], + [ + 77.556401576881498, + 12.9693697395115 + ], + [ + 77.556402880965805, + 12.9693700654931 + ], + [ + 77.556409710794, + 12.969371773672099 + ], + [ + 77.556529799451695, + 12.969401812533199 + ], + [ + 77.556534291720297, + 12.969402936557 + ], + [ + 77.556689967073595, + 12.969398735951501 + ], + [ + 77.556690396242104, + 12.969398724505901 + ], + [ + 77.5567714572706, + 12.9693965373762 + ], + [ + 77.556863534812393, + 12.9693940531177 + ], + [ + 77.556882340782096, + 12.969393272893999 + ], + [ + 77.557041000986203, + 12.969386692097 + ], + [ + 77.5570905922864, + 12.969384635163999 + ], + [ + 77.557113308065396, + 12.9693836927171 + ], + [ + 77.557113308065396, + 12.9693836927171 + ], + [ + 77.557113272027905, + 12.9693812095668 + ], + [ + 77.557126379190095, + 12.969380641060001 + ], + [ + 77.557299326023895, + 12.969346311646801 + ], + [ + 77.557526625970794, + 12.9692999747481 + ], + [ + 77.557534965428403, + 12.9692982349136 + ], + [ + 77.557815205843298, + 12.9692397678569 + ], + [ + 77.557841714570202, + 12.9692345336728 + ], + [ + 77.557975748470199, + 12.9692080697957 + ], + [ + 77.558276749361596, + 12.9691470229467 + ], + [ + 77.558556240707304, + 12.9690919242818 + ], + [ + 77.558848896478693, + 12.9690370545215 + ], + [ + 77.559098765290997, + 12.968981171573599 + ], + [ + 77.559272971218306, + 12.9689294261594 + ], + [ + 77.559434148314295, + 12.9688858694693 + ], + [ + 77.559531836048194, + 12.968859470619 + ], + [ + 77.559668154920999, + 12.9688186871479 + ], + [ + 77.559786034642002, + 12.968762308883401 + ], + [ + 77.559850862076999, + 12.968714594562799 + ], + [ + 77.560053101324897, + 12.968565740336199 + ], + [ + 77.560289705763495, + 12.9683927371936 + ], + [ + 77.560336498861304, + 12.968505580083599 + ], + [ + 77.560396904111002, + 12.968626752520301 + ], + [ + 77.560514241845794, + 12.968902388302499 + ], + [ + 77.560658422197704, + 12.969274129266401 + ], + [ + 77.560710300811607, + 12.969470342805099 + ], + [ + 77.560752998016, + 12.9695996228005 + ], + [ + 77.560791715125603, + 12.969773141504399 + ], + [ + 77.560791724974806, + 12.969773203746 + ], + [ + 77.560808375953599, + 12.9699211546423 + ], + [ + 77.560827637273306, + 12.9700705913385 + ], + [ + 77.560846910683907, + 12.9702212053556 + ], + [ + 77.560887342660095, + 12.970553209568999 + ], + [ + 77.5608967134132, + 12.970638618055601 + ], + [ + 77.560851679248103, + 12.970641959760901 + ], + [ + 77.560857838519297, + 12.9710374071726 + ], + [ + 77.560894911776899, + 12.9714008966496 + ], + [ + 77.561148274725198, + 12.9713774796178 + ], + [ + 77.561405152763797, + 12.971345604461501 + ], + [ + 77.561447405315207, + 12.971530590847699 + ], + [ + 77.561460041401801, + 12.9716101704529 + ], + [ + 77.561542151981499, + 12.971971743466399 + ], + [ + 77.561679935584607, + 12.9719348819009 + ], + [ + 77.561929716197199, + 12.9718772628078 + ], + [ + 77.562102104742607, + 12.9718196813026 + ], + [ + 77.562230234235003, + 12.971778023647101 + ], + [ + 77.562426469429198, + 12.971776452686999 + ], + [ + 77.562623374692905, + 12.9717681725964 + ], + [ + 77.562613826117996, + 12.971647442686301 + ], + [ + 77.5626557754819, + 12.9716314508628 + ], + [ + 77.562825841088099, + 12.971572533232001 + ], + [ + 77.563014349431199, + 12.9715108977316 + ], + [ + 77.563346845727096, + 12.971405092796299 + ], + [ + 77.563414558505301, + 12.971379789690801 + ], + [ + 77.564697706641496, + 12.971288885620901 + ], + [ + 77.564776597335097, + 12.9713449872828 + ], + [ + 77.564808187385594, + 12.971363514871101 + ], + [ + 77.564886095917501, + 12.9713598482846 + ], + [ + 77.565097571446302, + 12.9713045061252 + ], + [ + 77.565280038702696, + 12.971230248532899 + ], + [ + 77.565594663536899, + 12.971074983466901 + ], + [ + 77.565803725406099, + 12.971000463237401 + ], + [ + 77.565811550105707, + 12.9708989448437 + ], + [ + 77.566127892455597, + 12.9707962532956 + ], + [ + 77.566197142916096, + 12.9707752523442 + ], + [ + 77.566430182664902, + 12.970759958760601 + ], + [ + 77.566291543653804, + 12.970556795774099 + ], + [ + 77.5660710753058, + 12.9703065451829 + ], + [ + 77.566035627711997, + 12.9702724733141 + ], + [ + 77.565619904538195, + 12.969806145033401 + ], + [ + 77.565272609254805, + 12.9694211203912 + ], + [ + 77.565167258182797, + 12.9693043236301 + ], + [ + 77.564558477111902, + 12.968621893180201 + ], + [ + 77.564371098290493, + 12.968379640546599 + ], + [ + 77.564256546162099, + 12.9682427839511 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "342", + "group": "Muneshwara Ward", + "Corporatio": "Central", + "ac_no": "164", + "ac": "Gandhinagara", + "corporat_1": "1", + "ward_id": "17", + "ward_name": "17 - Seshadripuram", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಗಾಂಧಿನಗರ", + "ward_name_": "ಶೇಷಾದ್ರಿಪುರಂ", + "dig_ward_n": "Muneshwara Ward", + "Assembly": "164 - Gandhinagara", + "Slno": "17" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.578294809935102, + 12.9975828954985 + ], + [ + 77.578319870102007, + 12.997581333324399 + ], + [ + 77.578319410361104, + 12.997574936675599 + ], + [ + 77.578317961814307, + 12.997534527128 + ], + [ + 77.578316428736798, + 12.997504371753401 + ], + [ + 77.578316426400804, + 12.997504325804799 + ], + [ + 77.579427999286807, + 12.997463086218101 + ], + [ + 77.579428182921006, + 12.9974630794096 + ], + [ + 77.579442945380293, + 12.9974625320705 + ], + [ + 77.579445539695101, + 12.9974624358252 + ], + [ + 77.579441046053702, + 12.997346245333 + ], + [ + 77.579440665628994, + 12.9973364088087 + ], + [ + 77.579445447965597, + 12.9973312234132 + ], + [ + 77.579551578620894, + 12.997323856547 + ], + [ + 77.580030231133307, + 12.997290633561899 + ], + [ + 77.580827924320701, + 12.9972359048733 + ], + [ + 77.580838628440105, + 12.997235170461 + ], + [ + 77.580838675393693, + 12.9972351672839 + ], + [ + 77.580740851482901, + 12.997129985307 + ], + [ + 77.580617827723202, + 12.996986961939101 + ], + [ + 77.580535700065795, + 12.9968914830924 + ], + [ + 77.580314217907201, + 12.996632815496399 + ], + [ + 77.5802912900552, + 12.996606212033599 + ], + [ + 77.580290504915595, + 12.9966053019394 + ], + [ + 77.580260657151001, + 12.9965706714997 + ], + [ + 77.580256681064697, + 12.996566059190901 + ], + [ + 77.580251442375399, + 12.9965599795917 + ], + [ + 77.580224466669804, + 12.9965286823113 + ], + [ + 77.580199020725303, + 12.9964994739413 + ], + [ + 77.579997204320506, + 12.996267813161101 + ], + [ + 77.579884764200798, + 12.996137877991501 + ], + [ + 77.579882719397304, + 12.996135516835199 + ], + [ + 77.579875741133307, + 12.996127457902301 + ], + [ + 77.5798284170248, + 12.9960728190403 + ], + [ + 77.5798262733895, + 12.996070344128199 + ], + [ + 77.579807058057298, + 12.996048158590099 + ], + [ + 77.579806908872698, + 12.9960479866114 + ], + [ + 77.579790415278097, + 12.9960289433045 + ], + [ + 77.5797898064056, + 12.9960282401518 + ], + [ + 77.579777903122604, + 12.996014496903699 + ], + [ + 77.579777594489698, + 12.996014140400201 + ], + [ + 77.579769299683093, + 12.996004564112599 + ], + [ + 77.579769176609602, + 12.996004422591501 + ], + [ + 77.579764660902597, + 12.9959992094235 + ], + [ + 77.579764375589093, + 12.9959988806949 + ], + [ + 77.579763900984702, + 12.995998332503699 + ], + [ + 77.579763762054696, + 12.9959981721678 + ], + [ + 77.579686008459703, + 12.9959083989788 + ], + [ + 77.579499336779605, + 12.9957226121548 + ], + [ + 77.579457944825094, + 12.995681416214801 + ], + [ + 77.579231621443896, + 12.995455545189801 + ], + [ + 77.578994418461207, + 12.9952354284734 + ], + [ + 77.578754270396701, + 12.995011820896 + ], + [ + 77.578495730081698, + 12.9947710856789 + ], + [ + 77.578263598732605, + 12.994554939822301 + ], + [ + 77.578162993221795, + 12.994474866403699 + ], + [ + 77.578148451818393, + 12.9944632931157 + ], + [ + 77.578141677159394, + 12.9944579008685 + ], + [ + 77.577939050487998, + 12.9942961633945 + ], + [ + 77.5776790323483, + 12.994090055288501 + ], + [ + 77.577653416028994, + 12.994069750011001 + ], + [ + 77.577379108214402, + 12.993851439719499 + ], + [ + 77.5771320590773, + 12.993654823072299 + ], + [ + 77.577122457828196, + 12.993672987247299 + ], + [ + 77.577107900998698, + 12.993657321433 + ], + [ + 77.577128749099998, + 12.993618541389599 + ], + [ + 77.577498614317904, + 12.9929305445648 + ], + [ + 77.577520237300206, + 12.9928903236325 + ], + [ + 77.577767729141001, + 12.992429955539601 + ], + [ + 77.577918437585794, + 12.9921496169984 + ], + [ + 77.577950818086094, + 12.992089384591401 + ], + [ + 77.577571480641694, + 12.991736576465501 + ], + [ + 77.577430121440102, + 12.991774066079101 + ], + [ + 77.576980751585097, + 12.9919046010285 + ], + [ + 77.576633112024794, + 12.992012388810799 + ], + [ + 77.576377486478805, + 12.992086657578501 + ], + [ + 77.576430668525703, + 12.992622156959101 + ], + [ + 77.576200319101304, + 12.992724756035701 + ], + [ + 77.575430028243403, + 12.9919248430436 + ], + [ + 77.575369475447303, + 12.991967328146201 + ], + [ + 77.575318404076498, + 12.992003161108 + ], + [ + 77.575092171273496, + 12.9921251091013 + ], + [ + 77.574801259343303, + 12.9923183693473 + ], + [ + 77.574798258991294, + 12.992320362281699 + ], + [ + 77.574618384338706, + 12.992439856437301 + ], + [ + 77.574618237023103, + 12.9924399545664 + ], + [ + 77.574306325808806, + 12.992659442721701 + ], + [ + 77.574155512172396, + 12.9927655684681 + ], + [ + 77.574128983019605, + 12.9928668587491 + ], + [ + 77.574100939132606, + 12.9930135008335 + ], + [ + 77.573998667187794, + 12.9937006869222 + ], + [ + 77.573950735287994, + 12.9938891892019 + ], + [ + 77.573443742369406, + 12.9936921761166 + ], + [ + 77.572914635332793, + 12.9935491249013 + ], + [ + 77.5719653827352, + 12.993456525755199 + ], + [ + 77.571483062109806, + 12.9934152001891 + ], + [ + 77.571060352939099, + 12.9933834479372 + ], + [ + 77.571062486285797, + 12.9935906556519 + ], + [ + 77.5710770128033, + 12.9938914374354 + ], + [ + 77.571063804892802, + 12.9941790268288 + ], + [ + 77.571056317722807, + 12.994872310556101 + ], + [ + 77.571056273109605, + 12.9948735252324 + ], + [ + 77.571040379745398, + 12.995390540950201 + ], + [ + 77.571026671794698, + 12.996017595647601 + ], + [ + 77.571022994732104, + 12.9963112249725 + ], + [ + 77.571747113963696, + 12.9963112990852 + ], + [ + 77.571965240522204, + 12.996309884384001 + ], + [ + 77.573218837002301, + 12.9963497921018 + ], + [ + 77.573439065233003, + 12.996371339144501 + ], + [ + 77.573584679981593, + 12.9963764169556 + ], + [ + 77.573814572465594, + 12.9963857312438 + ], + [ + 77.574056580209501, + 12.996397704633701 + ], + [ + 77.574029619043102, + 12.9968897672514 + ], + [ + 77.574240805850806, + 12.9968691274184 + ], + [ + 77.574478206250504, + 12.996843108557201 + ], + [ + 77.574663032491898, + 12.9968247824162 + ], + [ + 77.574745644623803, + 12.9968225284781 + ], + [ + 77.575392572161803, + 12.996931627971801 + ], + [ + 77.575478234154303, + 12.996801441756499 + ], + [ + 77.575536138666095, + 12.9968276765662 + ], + [ + 77.575750480072102, + 12.996935561855 + ], + [ + 77.575939056599495, + 12.997028008952601 + ], + [ + 77.575954781145398, + 12.9970481409956 + ], + [ + 77.575963279479794, + 12.997155655863899 + ], + [ + 77.576273539342196, + 12.9971482297719 + ], + [ + 77.576429784947294, + 12.997145230089099 + ], + [ + 77.576481846334403, + 12.997178043802601 + ], + [ + 77.576492085610994, + 12.9974721189806 + ], + [ + 77.576493520340094, + 12.997611132258299 + ], + [ + 77.577699141931205, + 12.9976039644599 + ], + [ + 77.578154565240396, + 12.997593645477201 + ], + [ + 77.578294809935102, + 12.9975828954985 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "343", + "group": "Gopalpura", + "Corporatio": "Central", + "ac_no": "164", + "ac": "Gandhinagara", + "corporat_1": "1", + "ward_id": "21", + "ward_name": "21 - Gopalpura", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಗಾಂಧಿನಗರ", + "ward_name_": "ಗೋಪಾಲಪುರ", + "dig_ward_n": "Gopalpura", + "Assembly": "164 - Gandhinagara", + "Slno": "21" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.570063097075106, + 12.985705489547399 + ], + [ + 77.570484996529302, + 12.9856707117945 + ], + [ + 77.570797005460804, + 12.9856110181542 + ], + [ + 77.571072397207203, + 12.9855492266543 + ], + [ + 77.571259297422799, + 12.985445859392099 + ], + [ + 77.571478809818998, + 12.985251139881701 + ], + [ + 77.571986722500597, + 12.984811137619401 + ], + [ + 77.571998414663398, + 12.9848362734111 + ], + [ + 77.572192964740694, + 12.984792516208101 + ], + [ + 77.572293760079106, + 12.9847949560552 + ], + [ + 77.572455676242697, + 12.9842502029326 + ], + [ + 77.5725232440046, + 12.984022876107 + ], + [ + 77.572539759512097, + 12.9839673113734 + ], + [ + 77.572692399449593, + 12.983453764838501 + ], + [ + 77.572646399394401, + 12.983413855074 + ], + [ + 77.571461059428401, + 12.982385449818 + ], + [ + 77.571444071913703, + 12.9823707109918 + ], + [ + 77.5710138277787, + 12.98194627104 + ], + [ + 77.570538141861405, + 12.981354301193299 + ], + [ + 77.570375218574796, + 12.9816051670389 + ], + [ + 77.570373855424705, + 12.981903706336601 + ], + [ + 77.570201500141906, + 12.982099597565099 + ], + [ + 77.570007755939798, + 12.982371056282799 + ], + [ + 77.569896712762599, + 12.9824938833499 + ], + [ + 77.569579287348901, + 12.9826651239988 + ], + [ + 77.569075009214998, + 12.9824846175442 + ], + [ + 77.569004417274598, + 12.982481230912001 + ], + [ + 77.568082756614402, + 12.980581685921999 + ], + [ + 77.567350412912205, + 12.9771335676574 + ], + [ + 77.567179532715002, + 12.975824503289701 + ], + [ + 77.564646844078098, + 12.976208983733301 + ], + [ + 77.564457655288294, + 12.975769577512001 + ], + [ + 77.565333416298898, + 12.975244731192101 + ], + [ + 77.565778925384393, + 12.9749212793902 + ], + [ + 77.566212228741605, + 12.9743903302061 + ], + [ + 77.566373954642501, + 12.973780043787601 + ], + [ + 77.566875964681003, + 12.9718367803875 + ], + [ + 77.566843464725494, + 12.971710916565801 + ], + [ + 77.5668498306472, + 12.9716953884456 + ], + [ + 77.566899959880999, + 12.971495310267301 + ], + [ + 77.566866554473606, + 12.971290939331499 + ], + [ + 77.566754357778905, + 12.971098779105599 + ], + [ + 77.566686875410198, + 12.970873786090801 + ], + [ + 77.566624551377899, + 12.9707836859422 + ], + [ + 77.566594753332097, + 12.970746827669 + ], + [ + 77.566518659885105, + 12.970754152015401 + ], + [ + 77.566430182664902, + 12.970759958760601 + ], + [ + 77.566197142916096, + 12.9707752523442 + ], + [ + 77.566127892455597, + 12.9707962532956 + ], + [ + 77.565811550105707, + 12.9708989448437 + ], + [ + 77.565803725406099, + 12.971000463237401 + ], + [ + 77.565594663536899, + 12.971074983466901 + ], + [ + 77.565280038702696, + 12.971230248532899 + ], + [ + 77.565097571446302, + 12.9713045061252 + ], + [ + 77.564886095917501, + 12.9713598482846 + ], + [ + 77.564808187385594, + 12.971363514871101 + ], + [ + 77.564776597335097, + 12.9713449872828 + ], + [ + 77.564697706641496, + 12.971288885620901 + ], + [ + 77.563414558505301, + 12.971379789690801 + ], + [ + 77.563346845727096, + 12.971405092796299 + ], + [ + 77.563014349431199, + 12.9715108977316 + ], + [ + 77.562825841088099, + 12.971572533232001 + ], + [ + 77.5626557754819, + 12.9716314508628 + ], + [ + 77.562613826117996, + 12.971647442686301 + ], + [ + 77.562623374692905, + 12.9717681725964 + ], + [ + 77.562653699652103, + 12.9722424294817 + ], + [ + 77.5626590844455, + 12.972840156237 + ], + [ + 77.562665825096502, + 12.9732096264155 + ], + [ + 77.562675292439096, + 12.973599584426999 + ], + [ + 77.562675703941693, + 12.973650718094699 + ], + [ + 77.561611323185303, + 12.9736872802305 + ], + [ + 77.561465452819107, + 12.973701125524601 + ], + [ + 77.561360637762206, + 12.973717600562701 + ], + [ + 77.561273217102595, + 12.9737304171917 + ], + [ + 77.561228226920207, + 12.973738106119701 + ], + [ + 77.561166998844797, + 12.973747404126501 + ], + [ + 77.561068892091797, + 12.973762861971499 + ], + [ + 77.561017991806906, + 12.973770609069399 + ], + [ + 77.560926578379295, + 12.973790348441799 + ], + [ + 77.5606877055708, + 12.9737792506233 + ], + [ + 77.560441845655106, + 12.9737847962034 + ], + [ + 77.560447334342896, + 12.9739600911675 + ], + [ + 77.559963031692703, + 12.973940596910699 + ], + [ + 77.559964910042794, + 12.9737584207924 + ], + [ + 77.559633526060097, + 12.9738046444907 + ], + [ + 77.558880576905196, + 12.9741141592784 + ], + [ + 77.5589826910944, + 12.9742947737902 + ], + [ + 77.558880812438503, + 12.974350074789299 + ], + [ + 77.558636714048404, + 12.9744669608667 + ], + [ + 77.558391625831106, + 12.974595449831 + ], + [ + 77.558401391074597, + 12.9746152752939 + ], + [ + 77.558401634824605, + 12.9746157788319 + ], + [ + 77.558412998299005, + 12.974639201196499 + ], + [ + 77.558424101260201, + 12.9746623722517 + ], + [ + 77.558430504154202, + 12.974675732827301 + ], + [ + 77.558451239735504, + 12.9747190068035 + ], + [ + 77.558458296049494, + 12.974751754567601 + ], + [ + 77.558464514828898, + 12.974780616669801 + ], + [ + 77.558472475423102, + 12.9748175602268 + ], + [ + 77.558479649770604, + 12.9748508588403 + ], + [ + 77.558509912202197, + 12.974925595033699 + ], + [ + 77.558530512773899, + 12.974976469305799 + ], + [ + 77.558531312344201, + 12.974978444527601 + ], + [ + 77.558607619738495, + 12.975166893037301 + ], + [ + 77.558610668668393, + 12.9751744222644 + ], + [ + 77.558657473506599, + 12.975290009903199 + ], + [ + 77.558660006409696, + 12.9752962649113 + ], + [ + 77.558667389646402, + 12.9753144990156 + ], + [ + 77.558668672168906, + 12.975317666565299 + ], + [ + 77.5586831001646, + 12.9754131636804 + ], + [ + 77.558683415368506, + 12.9754152484686 + ], + [ + 77.558703257461502, + 12.975546579434599 + ], + [ + 77.558712107023396, + 12.9757362174782 + ], + [ + 77.558701389467601, + 12.9757358473344 + ], + [ + 77.558652557570298, + 12.975734160859499 + ], + [ + 77.558328313519496, + 12.9757229601551 + ], + [ + 77.558275589138304, + 12.9757211389544 + ], + [ + 77.5582751615338, + 12.975721124189 + ], + [ + 77.558253861474398, + 12.9757203878367 + ], + [ + 77.558253513125095, + 12.975720375905301 + ], + [ + 77.558126915429298, + 12.975716001936799 + ], + [ + 77.558042384861693, + 12.9757132305713 + ], + [ + 77.558015816710494, + 12.975712359010799 + ], + [ + 77.557951314080498, + 12.975710244349701 + ], + [ + 77.557755992573405, + 12.9757038404117 + ], + [ + 77.557659313204198, + 12.9756991339623 + ], + [ + 77.557656919562206, + 12.9756990174713 + ], + [ + 77.557563013564604, + 12.9756944454241 + ], + [ + 77.556846943349498, + 12.9756552993792 + ], + [ + 77.556833816683195, + 12.9756545819171 + ], + [ + 77.556833223078499, + 12.975654549809001 + ], + [ + 77.556828146985595, + 12.9756542717681 + ], + [ + 77.556828117490497, + 12.975654270251299 + ], + [ + 77.556827864930796, + 12.975654256472501 + ], + [ + 77.556796129012596, + 12.9756525213011 + ], + [ + 77.556757633893, + 12.9756504171219 + ], + [ + 77.556733067600106, + 12.975649728118499 + ], + [ + 77.556713376043305, + 12.9756491754859 + ], + [ + 77.556690757805896, + 12.9756485414071 + ], + [ + 77.556471906848103, + 12.9756424030797 + ], + [ + 77.556466822007096, + 12.9756422606365 + ], + [ + 77.556361341461098, + 12.9756393016869 + ], + [ + 77.556246733456007, + 12.9756360882085 + ], + [ + 77.556205300727299, + 12.975634926257699 + ], + [ + 77.556144807137002, + 12.975633229747 + ], + [ + 77.556102942418093, + 12.975632055729101 + ], + [ + 77.556098862002202, + 12.9756319404464 + ], + [ + 77.556098373610993, + 12.9756319271784 + ], + [ + 77.556098047396603, + 12.9756319177368 + ], + [ + 77.555913709359899, + 12.975626746959 + ], + [ + 77.555913079978097, + 12.9756267296557 + ], + [ + 77.555596309272104, + 12.975617844386701 + ], + [ + 77.555475594422106, + 12.9756144583957 + ], + [ + 77.554632491408995, + 12.975580085303701 + ], + [ + 77.554630473057898, + 12.9755800030425 + ], + [ + 77.554509814351803, + 12.9755750837765 + ], + [ + 77.554499037482799, + 12.9755746444868 + ], + [ + 77.554493490590104, + 12.975574418382701 + ], + [ + 77.554519760795003, + 12.975629630932 + ], + [ + 77.554532545697299, + 12.9756565025186 + ], + [ + 77.554549037140205, + 12.9756911631923 + ], + [ + 77.5547009949358, + 12.976010537877301 + ], + [ + 77.554719424817094, + 12.9760492715216 + ], + [ + 77.554749953341997, + 12.9761134343237 + ], + [ + 77.554819242878295, + 12.9762590611218 + ], + [ + 77.554822411458801, + 12.9762657205666 + ], + [ + 77.555066399562904, + 12.9768155635937 + ], + [ + 77.555077125335998, + 12.9768397919674 + ], + [ + 77.555150879985803, + 12.9770063995859 + ], + [ + 77.5551624695741, + 12.9770325790671 + ], + [ + 77.555192296682193, + 12.9770797320067 + ], + [ + 77.555205776659605, + 12.977101042232 + ], + [ + 77.555238202750502, + 12.977152758179599 + ], + [ + 77.555322323987795, + 12.977286921897701 + ], + [ + 77.555339253062797, + 12.9773139217841 + ], + [ + 77.555427702698907, + 12.977454988431401 + ], + [ + 77.5554457567264, + 12.9774837831071 + ], + [ + 77.555582927557396, + 12.977562413511601 + ], + [ + 77.5555991350829, + 12.9775717043771 + ], + [ + 77.555918360481101, + 12.9777546923314 + ], + [ + 77.556042949647505, + 12.9778366994879 + ], + [ + 77.556048688932904, + 12.9778404773399 + ], + [ + 77.556182836855697, + 12.9779287760797 + ], + [ + 77.556184853212002, + 12.977930103311101 + ], + [ + 77.556239287417299, + 12.977965933204899 + ], + [ + 77.556239359756802, + 12.977965980376901 + ], + [ + 77.556251782223299, + 12.9779741284924 + ], + [ + 77.556356595088303, + 12.978042878316799 + ], + [ + 77.556360019382794, + 12.978044862971901 + ], + [ + 77.556551723435703, + 12.9781559806178 + ], + [ + 77.556616118890005, + 12.978193306171899 + ], + [ + 77.556655468218807, + 12.978216113687401 + ], + [ + 77.556671203116395, + 12.978222421381901 + ], + [ + 77.5568680781426, + 12.9783013473766 + ], + [ + 77.556891931192794, + 12.9783109098758 + ], + [ + 77.556932330932895, + 12.9783275126674 + ], + [ + 77.557034170647398, + 12.978369364964401 + ], + [ + 77.557047487420803, + 12.978375685575701 + ], + [ + 77.557236915145495, + 12.9784655865278 + ], + [ + 77.557353551060103, + 12.978520941438701 + ], + [ + 77.5574874621296, + 12.978565657971 + ], + [ + 77.557506317205906, + 12.978571953883799 + ], + [ + 77.557581274402693, + 12.9785969839707 + ], + [ + 77.557636072196402, + 12.9786152828501 + ], + [ + 77.557647924118299, + 12.978621054079699 + ], + [ + 77.557758610462699, + 12.978674939566901 + ], + [ + 77.557861172450501, + 12.9787248709988 + ], + [ + 77.557882307206896, + 12.9787330164139 + ], + [ + 77.557961609454196, + 12.9787635761486 + ], + [ + 77.5580126229097, + 12.9787832348359 + ], + [ + 77.558118994740994, + 12.978825102343199 + ], + [ + 77.558283260297699, + 12.978841554989099 + ], + [ + 77.558415707451303, + 12.978830514065301 + ], + [ + 77.558436862428195, + 12.9788287501119 + ], + [ + 77.558559054071196, + 12.9788410993685 + ], + [ + 77.558568277172199, + 12.9788421379145 + ], + [ + 77.5586995647961, + 12.978843104363801 + ], + [ + 77.558811214820494, + 12.9788578149951 + ], + [ + 77.558814387265599, + 12.978858232786401 + ], + [ + 77.558843127473097, + 12.9788620190605 + ], + [ + 77.558908875664201, + 12.978883052131399 + ], + [ + 77.558918693799299, + 12.978886193134 + ], + [ + 77.558939020849905, + 12.978892696130901 + ], + [ + 77.558955806590902, + 12.978912717397799 + ], + [ + 77.558955924821802, + 12.9789128584181 + ], + [ + 77.559019475965101, + 12.978990155083499 + ], + [ + 77.559111621171297, + 12.9791609047851 + ], + [ + 77.559154914078505, + 12.979342449886399 + ], + [ + 77.559181316794906, + 12.979453167228399 + ], + [ + 77.559194642597205, + 12.979509047644701 + ], + [ + 77.559189810529801, + 12.9795949814309 + ], + [ + 77.5591890023627, + 12.979609357963801 + ], + [ + 77.559182185298795, + 12.9797305965034 + ], + [ + 77.559181490873499, + 12.979742946563 + ], + [ + 77.559211065361495, + 12.9798759152633 + ], + [ + 77.559253141702598, + 12.979936484328601 + ], + [ + 77.559249250356004, + 12.979950074491899 + ], + [ + 77.559604661600602, + 12.9800775761959 + ], + [ + 77.559784459408704, + 12.9801200206103 + ], + [ + 77.559815908429997, + 12.9801274446863 + ], + [ + 77.560078959448802, + 12.980183809525499 + ], + [ + 77.560098085000703, + 12.980187907610899 + ], + [ + 77.560236496498007, + 12.980209131657 + ], + [ + 77.560297560612497, + 12.980218495359299 + ], + [ + 77.560354134332101, + 12.980227170480999 + ], + [ + 77.560415394801794, + 12.980249087507399 + ], + [ + 77.560504942536696, + 12.9802811247727 + ], + [ + 77.560529237941694, + 12.980289816870799 + ], + [ + 77.560586495640706, + 12.9803300285033 + ], + [ + 77.560630729910301, + 12.9803610944432 + ], + [ + 77.560759581703095, + 12.980461462927799 + ], + [ + 77.560783539372295, + 12.980496676695401 + ], + [ + 77.560842008140199, + 12.980582617380399 + ], + [ + 77.560981696759995, + 12.980953917423401 + ], + [ + 77.560988321664695, + 12.9810385502015 + ], + [ + 77.561065690849404, + 12.981321024771701 + ], + [ + 77.561135468906599, + 12.9815757856049 + ], + [ + 77.561168424827201, + 12.981704342379199 + ], + [ + 77.561182249976895, + 12.9817582743327 + ], + [ + 77.561263522873602, + 12.981822973940099 + ], + [ + 77.561393297764496, + 12.9818536899432 + ], + [ + 77.5614788129798, + 12.981873930224101 + ], + [ + 77.561601374956993, + 12.9818942868413 + ], + [ + 77.561648024453902, + 12.981902034953199 + ], + [ + 77.561690497589893, + 12.9819090897047 + ], + [ + 77.561729129928395, + 12.981915507424899 + ], + [ + 77.561663946689606, + 12.9822602632781 + ], + [ + 77.5616521185989, + 12.982322820350401 + ], + [ + 77.561586118674001, + 12.9826515425147 + ], + [ + 77.561584188590203, + 12.9826611562314 + ], + [ + 77.561582833113604, + 12.982667958153099 + ], + [ + 77.561576521866797, + 12.982699628639001 + ], + [ + 77.5615746010359, + 12.982704841062599 + ], + [ + 77.562015774250796, + 12.982656995927099 + ], + [ + 77.562136520451105, + 12.982648592391 + ], + [ + 77.562295887737406, + 12.982637501512301 + ], + [ + 77.562673465863, + 12.982608141316 + ], + [ + 77.562683141498894, + 12.982607389097099 + ], + [ + 77.563038707969795, + 12.9825607057727 + ], + [ + 77.563135907099806, + 12.982547944457201 + ], + [ + 77.563788282048407, + 12.982462627362899 + ], + [ + 77.5644063137904, + 12.9823561327376 + ], + [ + 77.564503164318893, + 12.9823393187735 + ], + [ + 77.564709706873501, + 12.982303462589501 + ], + [ + 77.564742089376196, + 12.9822978406642 + ], + [ + 77.566023963155899, + 12.9820591807116 + ], + [ + 77.5664170289987, + 12.9819219385005 + ], + [ + 77.566433008394597, + 12.9819314738478 + ], + [ + 77.566621060251506, + 12.9819715830894 + ], + [ + 77.566647345985999, + 12.9819798882312 + ], + [ + 77.567210786201898, + 12.9821579110674 + ], + [ + 77.567320352348005, + 12.982209408188501 + ], + [ + 77.5676585169156, + 12.9823306949942 + ], + [ + 77.568159987985197, + 12.982525723749101 + ], + [ + 77.568063688889794, + 12.9849015295962 + ], + [ + 77.568063608360603, + 12.9849025684571 + ], + [ + 77.568326554515906, + 12.985037639452701 + ], + [ + 77.568572470039996, + 12.9851638002829 + ], + [ + 77.568630261614402, + 12.985731293641299 + ], + [ + 77.568626612853507, + 12.9857320470516 + ], + [ + 77.5686186069521, + 12.9857357119903 + ], + [ + 77.568617446328105, + 12.9857651244502 + ], + [ + 77.568664486759303, + 12.9860730196738 + ], + [ + 77.568689269646796, + 12.986278586072 + ], + [ + 77.568695782723907, + 12.9862934340323 + ], + [ + 77.568737193162093, + 12.986387830895699 + ], + [ + 77.568741043706893, + 12.986394606648901 + ], + [ + 77.568764748421998, + 12.9864363221942 + ], + [ + 77.568856587228794, + 12.98654943593 + ], + [ + 77.5689746381276, + 12.9866515330604 + ], + [ + 77.569364127021203, + 12.9868384342097 + ], + [ + 77.569473759379207, + 12.986904041753499 + ], + [ + 77.569620847104403, + 12.9870089890209 + ], + [ + 77.569729667048193, + 12.9870667155436 + ], + [ + 77.569752592944894, + 12.987020593544599 + ], + [ + 77.569762313743297, + 12.9869702999297 + ], + [ + 77.569780389389507, + 12.9866481362243 + ], + [ + 77.5697718118967, + 12.9865098749198 + ], + [ + 77.569768117893901, + 12.9864503343741 + ], + [ + 77.569758444012095, + 12.9863629417992 + ], + [ + 77.569723909504305, + 12.9862757951036 + ], + [ + 77.569710172583399, + 12.986219996589901 + ], + [ + 77.569723764365506, + 12.986137274434199 + ], + [ + 77.569812958077506, + 12.9858331717738 + ], + [ + 77.570066391989997, + 12.9857317039504 + ], + [ + 77.570063097075106, + 12.985705489547399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "345", + "group": "Swatantrapalya Ward", + "Corporatio": "Central", + "ac_no": "164", + "ac": "Gandhinagara", + "corporat_1": "1", + "ward_id": "19", + "ward_name": "19 - Swatantra Palya Ward", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಗಾಂಧಿನಗರ", + "ward_name_": "ಸ್ವತಂತ್ರ ಪಾಳ್ಯ ವಾರ್ಡ್", + "dig_ward_n": "Swatantrapalya Ward", + "Assembly": "164 - Gandhinagara", + "Slno": "19" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.570063097075106, + 12.985705489547399 + ], + [ + 77.570066391989997, + 12.9857317039504 + ], + [ + 77.569812958077506, + 12.9858331717738 + ], + [ + 77.569723764365506, + 12.986137274434199 + ], + [ + 77.569710172583399, + 12.986219996589901 + ], + [ + 77.569723909504305, + 12.9862757951036 + ], + [ + 77.569758444012095, + 12.9863629417992 + ], + [ + 77.569768117893901, + 12.9864503343741 + ], + [ + 77.5697718118967, + 12.9865098749198 + ], + [ + 77.569780389389507, + 12.9866481362243 + ], + [ + 77.569762313743297, + 12.9869702999297 + ], + [ + 77.569752592944894, + 12.987020593544599 + ], + [ + 77.569729667048193, + 12.9870667155436 + ], + [ + 77.569620847104403, + 12.9870089890209 + ], + [ + 77.569473759379207, + 12.986904041753499 + ], + [ + 77.569364127021203, + 12.9868384342097 + ], + [ + 77.5689746381276, + 12.9866515330604 + ], + [ + 77.568856587228794, + 12.98654943593 + ], + [ + 77.568764748421998, + 12.9864363221942 + ], + [ + 77.568741043706893, + 12.986394606648901 + ], + [ + 77.568737193162093, + 12.986387830895699 + ], + [ + 77.568695782723907, + 12.9862934340323 + ], + [ + 77.568689269646796, + 12.986278586072 + ], + [ + 77.568664486759303, + 12.9860730196738 + ], + [ + 77.568617446328105, + 12.9857651244502 + ], + [ + 77.5686186069521, + 12.9857357119903 + ], + [ + 77.568626612853507, + 12.9857320470516 + ], + [ + 77.568630261614402, + 12.985731293641299 + ], + [ + 77.568572470039996, + 12.9851638002829 + ], + [ + 77.568326554515906, + 12.985037639452701 + ], + [ + 77.568063608360603, + 12.9849025684571 + ], + [ + 77.5680291225312, + 12.985285486613 + ], + [ + 77.568028259309401, + 12.985317587957001 + ], + [ + 77.567421394617796, + 12.985345868967499 + ], + [ + 77.566774455104706, + 12.9852991999372 + ], + [ + 77.566786660833003, + 12.9858026862325 + ], + [ + 77.566868286641494, + 12.985962886417299 + ], + [ + 77.566965932468406, + 12.986329058268501 + ], + [ + 77.567013229665903, + 12.986667767230699 + ], + [ + 77.566593657753202, + 12.9867959273786 + ], + [ + 77.566586592383501, + 12.9868645623984 + ], + [ + 77.566558193344093, + 12.9868671484593 + ], + [ + 77.566546887078104, + 12.9872927238535 + ], + [ + 77.566549374127504, + 12.987355013073101 + ], + [ + 77.566546173783607, + 12.987487681614001 + ], + [ + 77.566555815216304, + 12.987730281326201 + ], + [ + 77.566236736092407, + 12.9877414037676 + ], + [ + 77.565068302873598, + 12.987777603493299 + ], + [ + 77.565077471304505, + 12.987930763817699 + ], + [ + 77.5650794713316, + 12.988125560961301 + ], + [ + 77.565081707707407, + 12.988187336839699 + ], + [ + 77.565084575400306, + 12.9882665431177 + ], + [ + 77.565080673673194, + 12.9883025580988 + ], + [ + 77.565086092879199, + 12.988302257524101 + ], + [ + 77.565104288815206, + 12.9883012484873 + ], + [ + 77.565110429152398, + 12.9885067232998 + ], + [ + 77.565110528511497, + 12.988516400101799 + ], + [ + 77.565110705623894, + 12.9885336494648 + ], + [ + 77.565110730615302, + 12.9885360834324 + ], + [ + 77.565367356348204, + 12.988526201478599 + ], + [ + 77.565781271445502, + 12.9885102622099 + ], + [ + 77.566086491694506, + 12.988499253058301 + ], + [ + 77.566255553983098, + 12.9884931549068 + ], + [ + 77.566563458880395, + 12.9884788081511 + ], + [ + 77.566604314435807, + 12.988476891220801 + ], + [ + 77.566808631458997, + 12.9884673630043 + ], + [ + 77.566823174326601, + 12.9884662935418 + ], + [ + 77.567234400490705, + 12.9884360521994 + ], + [ + 77.567314417451897, + 12.9884341149496 + ], + [ + 77.567332217626301, + 12.988433684262199 + ], + [ + 77.567361689320094, + 12.988432971087301 + ], + [ + 77.567392129958805, + 12.9884322347813 + ], + [ + 77.567427814212095, + 12.9884307527982 + ], + [ + 77.567433096330504, + 12.988430436786601 + ], + [ + 77.567721290511599, + 12.9884131710945 + ], + [ + 77.567771741843302, + 12.988409174255001 + ], + [ + 77.567907000391699, + 12.988398457640599 + ], + [ + 77.567933011723895, + 12.988396397231099 + ], + [ + 77.567932115599504, + 12.988421250983301 + ], + [ + 77.567935874064602, + 12.9886188436673 + ], + [ + 77.567937943439802, + 12.988708038964999 + ], + [ + 77.567937611453601, + 12.988731757826899 + ], + [ + 77.5679345118171, + 12.9888659707677 + ], + [ + 77.567934490676095, + 12.988866871717001 + ], + [ + 77.567934486941198, + 12.988867046119999 + ], + [ + 77.567934410552795, + 12.9888703697666 + ], + [ + 77.567934402897194, + 12.988870700505201 + ], + [ + 77.567934294070199, + 12.988875439276301 + ], + [ + 77.567934295464994, + 12.9888754853385 + ], + [ + 77.567934136497996, + 12.988882247431301 + ], + [ + 77.567934123645898, + 12.9888827896287 + ], + [ + 77.567934093592001, + 12.9888840782465 + ], + [ + 77.567933753776202, + 12.9888987897825 + ], + [ + 77.567933742909503, + 12.9888991666288 + ], + [ + 77.567933289049904, + 12.988918916029601 + ], + [ + 77.567933264816602, + 12.988919964271901 + ], + [ + 77.567932796253501, + 12.988940254985 + ], + [ + 77.567932761961401, + 12.9889417586659 + ], + [ + 77.567932401051607, + 12.988957375668001 + ], + [ + 77.567932292718794, + 12.988962072875401 + ], + [ + 77.567931500248505, + 12.9889963820206 + ], + [ + 77.567931493235506, + 12.988996685649299 + ], + [ + 77.567930767494403, + 12.989029509765301 + ], + [ + 77.567930123732097, + 12.989058657833599 + ], + [ + 77.567925310519598, + 12.989276485808301 + ], + [ + 77.567920813680104, + 12.989480008126799 + ], + [ + 77.567920487937997, + 12.9894947439166 + ], + [ + 77.567919737906905, + 12.9895286993923 + ], + [ + 77.567916927786996, + 12.9896558490011 + ], + [ + 77.567915731278504, + 12.989710001915499 + ], + [ + 77.567914734164404, + 12.989755141842201 + ], + [ + 77.567913998511699, + 12.9898016081598 + ], + [ + 77.567909765208, + 12.990069205104399 + ], + [ + 77.567909116201207, + 12.990110208302401 + ], + [ + 77.567908996098794, + 12.9901177930542 + ], + [ + 77.567908800512299, + 12.9901301334128 + ], + [ + 77.567904729079402, + 12.9903607767206 + ], + [ + 77.567904115401205, + 12.9903955381117 + ], + [ + 77.567903715996096, + 12.9904181621735 + ], + [ + 77.567903676516906, + 12.9904204157696 + ], + [ + 77.567902281018902, + 12.9904994796862 + ], + [ + 77.5679015227918, + 12.990542403795899 + ], + [ + 77.567894457597504, + 12.990980712227399 + ], + [ + 77.567894413149801, + 12.990983468191001 + ], + [ + 77.567891381771702, + 12.9911715270042 + ], + [ + 77.567890954251695, + 12.991190430513299 + ], + [ + 77.5678901224763, + 12.9912257510057 + ], + [ + 77.567889792986406, + 12.991233489607 + ], + [ + 77.567870373237099, + 12.9916889764208 + ], + [ + 77.567854864038793, + 12.9920527568627 + ], + [ + 77.567854347072895, + 12.992065020894501 + ], + [ + 77.567852855599298, + 12.992100403683301 + ], + [ + 77.567843291598294, + 12.9923272943839 + ], + [ + 77.567841393239902, + 12.9923894307985 + ], + [ + 77.567841346993902, + 12.9923909364043 + ], + [ + 77.567820887864201, + 12.9930604401374 + ], + [ + 77.567810931497405, + 12.9933801341998 + ], + [ + 77.567850399633102, + 12.9933793138895 + ], + [ + 77.568329624846598, + 12.9933693582262 + ], + [ + 77.568320718527104, + 12.993380539775 + ], + [ + 77.568318294534293, + 12.9933835831909 + ], + [ + 77.568384924401599, + 12.9933807221836 + ], + [ + 77.568633747943196, + 12.9933965153541 + ], + [ + 77.568777162755794, + 12.9932308775919 + ], + [ + 77.569446467385106, + 12.991791015816601 + ], + [ + 77.569583198355602, + 12.991433974122501 + ], + [ + 77.569704055075505, + 12.9910503175562 + ], + [ + 77.569709066991607, + 12.991035554392999 + ], + [ + 77.569791045925399, + 12.9907940725298 + ], + [ + 77.569804368389299, + 12.990754829493399 + ], + [ + 77.569982581588505, + 12.990070373880201 + ], + [ + 77.569987283194806, + 12.9900541962754 + ], + [ + 77.570037198875795, + 12.9898824273966 + ], + [ + 77.570047412832494, + 12.9897088640805 + ], + [ + 77.570087629058904, + 12.9897084661773 + ], + [ + 77.570150223759697, + 12.989657624105901 + ], + [ + 77.570466124155104, + 12.9896724782361 + ], + [ + 77.570571974830102, + 12.9896192612189 + ], + [ + 77.570674512369607, + 12.989531297271901 + ], + [ + 77.570780124335997, + 12.989454896096399 + ], + [ + 77.570880362681095, + 12.9894307175893 + ], + [ + 77.570948123587598, + 12.989409758796899 + ], + [ + 77.571027675465203, + 12.9893857849795 + ], + [ + 77.571285464193295, + 12.9894498943729 + ], + [ + 77.571495238855405, + 12.989443470331 + ], + [ + 77.571619998790695, + 12.9895045487945 + ], + [ + 77.571809459972599, + 12.989534554402001 + ], + [ + 77.571910056220503, + 12.9895451516172 + ], + [ + 77.572099562457794, + 12.988746721006301 + ], + [ + 77.572145247301407, + 12.9885028662276 + ], + [ + 77.572228907490597, + 12.988056301953501 + ], + [ + 77.572270580999898, + 12.986872788986 + ], + [ + 77.572289910090703, + 12.9863238713078 + ], + [ + 77.572295881730895, + 12.986154288297801 + ], + [ + 77.572277596344307, + 12.9858600775633 + ], + [ + 77.572262793362299, + 12.985270514246499 + ], + [ + 77.5722410425075, + 12.9849723179442 + ], + [ + 77.572293760079106, + 12.9847949560552 + ], + [ + 77.572192964740694, + 12.984792516208101 + ], + [ + 77.571998414663398, + 12.9848362734111 + ], + [ + 77.571986722500597, + 12.984811137619401 + ], + [ + 77.571478809818998, + 12.985251139881701 + ], + [ + 77.571259297422799, + 12.985445859392099 + ], + [ + 77.571072397207203, + 12.9855492266543 + ], + [ + 77.570797005460804, + 12.9856110181542 + ], + [ + 77.570484996529302, + 12.9856707117945 + ], + [ + 77.570063097075106, + 12.985705489547399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "347", + "group": "Hosapalya", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "33", + "ward_name": "33 - Hosapalya", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಹೊಸಪಾಳ್ಯ", + "dig_ward_n": "Hosapalya", + "Assembly": "175 - Bommanahalli", + "Slno": "33" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.642390495799305, + 12.896516328847801 + ], + [ + 77.642740649066894, + 12.896514140338599 + ], + [ + 77.642813490286002, + 12.897443494312199 + ], + [ + 77.643003325637096, + 12.897427508108301 + ], + [ + 77.643339338305694, + 12.897416841039499 + ], + [ + 77.643566013518594, + 12.897411507505099 + ], + [ + 77.644070032521498, + 12.8973755061477 + ], + [ + 77.644450713540905, + 12.897371505996899 + ], + [ + 77.645017967663904, + 12.8973196526601 + ], + [ + 77.645405627017098, + 12.8973181457545 + ], + [ + 77.645400828274006, + 12.897368866308399 + ], + [ + 77.645350233278407, + 12.897655014172001 + ], + [ + 77.645293971209199, + 12.8978773169985 + ], + [ + 77.645260167769607, + 12.898010879663699 + ], + [ + 77.645220987114897, + 12.8981625657427 + ], + [ + 77.6451723232001, + 12.8983509682072 + ], + [ + 77.645141934663201, + 12.8984686171707 + ], + [ + 77.645072878656705, + 12.8987370246507 + ], + [ + 77.645099404665004, + 12.8990855706217 + ], + [ + 77.645099887319901, + 12.8990867193873 + ], + [ + 77.644554050770395, + 12.8991415727332 + ], + [ + 77.644050031767506, + 12.8992015749954 + ], + [ + 77.643484519897598, + 12.899269459641999 + ], + [ + 77.643471343282698, + 12.899270910942899 + ], + [ + 77.643012659322395, + 12.899329579821501 + ], + [ + 77.642529527804797, + 12.8993403084026 + ], + [ + 77.642510427204002, + 12.899377550188699 + ], + [ + 77.642552306845005, + 12.899653203572999 + ], + [ + 77.642635866014103, + 12.900301316856 + ], + [ + 77.642671486729299, + 12.9005045530836 + ], + [ + 77.642641468905296, + 12.900510946397601 + ], + [ + 77.642441917828506, + 12.900534476389099 + ], + [ + 77.642103549607896, + 12.9005774656758 + ], + [ + 77.642033121686794, + 12.9005864129323 + ], + [ + 77.641457688303305, + 12.9006639368598 + ], + [ + 77.641068594526004, + 12.9007359905281 + ], + [ + 77.6410528455026, + 12.9007370711162 + ], + [ + 77.641135910873302, + 12.901165188959499 + ], + [ + 77.641187169360293, + 12.9016379447677 + ], + [ + 77.641231508897206, + 12.902031891184 + ], + [ + 77.641283685142596, + 12.902475954412999 + ], + [ + 77.641335698591007, + 12.9029044824254 + ], + [ + 77.641367895148605, + 12.9033021370452 + ], + [ + 77.641390749417795, + 12.903622202931601 + ], + [ + 77.641350397791996, + 12.9038401250983 + ], + [ + 77.641322398633307, + 12.9040559656491 + ], + [ + 77.641603886306598, + 12.9038747509987 + ], + [ + 77.641757326886406, + 12.9037759690522 + ], + [ + 77.642426787806798, + 12.9033475578702 + ], + [ + 77.642726860789793, + 12.9031405979183 + ], + [ + 77.643091544881997, + 12.902889075174899 + ], + [ + 77.643843448054, + 12.902376646396601 + ], + [ + 77.644129587791994, + 12.9022008572628 + ], + [ + 77.644165551840004, + 12.9021787629305 + ], + [ + 77.644303911555397, + 12.9020937611836 + ], + [ + 77.644909481743298, + 12.901707582490699 + ], + [ + 77.645258099609293, + 12.9015134064888 + ], + [ + 77.645271385049796, + 12.901506006860499 + ], + [ + 77.645547631322799, + 12.901361229355 + ], + [ + 77.645652638415299, + 12.901262639517199 + ], + [ + 77.645663442595307, + 12.901252495146499 + ], + [ + 77.646115427495005, + 12.900960331294399 + ], + [ + 77.646236201314693, + 12.9008822624304 + ], + [ + 77.646449127458297, + 12.9007405155689 + ], + [ + 77.646707823421593, + 12.9005026942946 + ], + [ + 77.646814054883194, + 12.9004098328711 + ], + [ + 77.647005923475305, + 12.9003046310866 + ], + [ + 77.647190294178003, + 12.9000427039937 + ], + [ + 77.647309801335695, + 12.899544319042899 + ], + [ + 77.647406367866495, + 12.8994592044751 + ], + [ + 77.647610005148394, + 12.8994045560654 + ], + [ + 77.647818256730503, + 12.8993976670923 + ], + [ + 77.648047632034604, + 12.8994300020768 + ], + [ + 77.648366872999105, + 12.899435134777701 + ], + [ + 77.648654505064002, + 12.8994465624281 + ], + [ + 77.648839197233499, + 12.899545861512401 + ], + [ + 77.648852515662796, + 12.899504005617301 + ], + [ + 77.649137738862507, + 12.8997419709019 + ], + [ + 77.649212128259293, + 12.8997412170899 + ], + [ + 77.649975205314703, + 12.899434241325199 + ], + [ + 77.650582549843506, + 12.8991569862443 + ], + [ + 77.650760055546201, + 12.899075953735 + ], + [ + 77.6511601508344, + 12.898918626715799 + ], + [ + 77.651203060284601, + 12.898857148763501 + ], + [ + 77.651307031736906, + 12.899118019379801 + ], + [ + 77.651325672432307, + 12.899268416499799 + ], + [ + 77.651456455823407, + 12.899864896935799 + ], + [ + 77.651471567474204, + 12.899933817724101 + ], + [ + 77.651789873679206, + 12.901184588012301 + ], + [ + 77.652384293953602, + 12.9009606004593 + ], + [ + 77.652507102070501, + 12.9013369770765 + ], + [ + 77.652480606641504, + 12.901474700576401 + ], + [ + 77.6524513351861, + 12.9016340774971 + ], + [ + 77.652435714532501, + 12.9018117982107 + ], + [ + 77.652555561592195, + 12.9021001011889 + ], + [ + 77.652741099895195, + 12.9021215782006 + ], + [ + 77.653238225740395, + 12.902045903681101 + ], + [ + 77.653768262472298, + 12.9019646134811 + ], + [ + 77.654366882326698, + 12.901811491512801 + ], + [ + 77.654651980592305, + 12.9017430728083 + ], + [ + 77.654699982181199, + 12.901802992887101 + ], + [ + 77.654796112719595, + 12.901775898638199 + ], + [ + 77.654803361030801, + 12.901719347234 + ], + [ + 77.654865937109093, + 12.9012371675724 + ], + [ + 77.654907919705806, + 12.900783837531099 + ], + [ + 77.654912090292001, + 12.9006833860056 + ], + [ + 77.654921822451001, + 12.9004490141612 + ], + [ + 77.654931121181804, + 12.9002250538732 + ], + [ + 77.654931591997993, + 12.9002118124915 + ], + [ + 77.654959096069604, + 12.900210478896501 + ], + [ + 77.655505384408102, + 12.900184964238401 + ], + [ + 77.656207450264105, + 12.900156973136699 + ], + [ + 77.656275994958506, + 12.900084047287599 + ], + [ + 77.656794239566096, + 12.899892515705201 + ], + [ + 77.656838514789499, + 12.899876152046099 + ], + [ + 77.656838516333494, + 12.8998761514754 + ], + [ + 77.656826339235806, + 12.899542841100599 + ], + [ + 77.656700819112999, + 12.899225126943101 + ], + [ + 77.656625704023398, + 12.8990349959659 + ], + [ + 77.6566049307404, + 12.898982415193901 + ], + [ + 77.656662295922999, + 12.898955494620701 + ], + [ + 77.6567118886136, + 12.8989322213079 + ], + [ + 77.656762545210199, + 12.8989084487024 + ], + [ + 77.656955647827303, + 12.8988178278042 + ], + [ + 77.656980262459101, + 12.8986750070619 + ], + [ + 77.656959208474007, + 12.898590700950599 + ], + [ + 77.656817604559706, + 12.898017953011101 + ], + [ + 77.656802179169105, + 12.8979562360438 + ], + [ + 77.656801222481803, + 12.897952409034801 + ], + [ + 77.656682486074601, + 12.8974773604519 + ], + [ + 77.656575548289894, + 12.897548160387201 + ], + [ + 77.656543459718705, + 12.897449902207599 + ], + [ + 77.656219216624294, + 12.897583084191799 + ], + [ + 77.655858737739194, + 12.8977246000718 + ], + [ + 77.655812227817606, + 12.897742858603699 + ], + [ + 77.655767984005806, + 12.897760227751901 + ], + [ + 77.655751616835403, + 12.8977666563549 + ], + [ + 77.655671482094704, + 12.8977981253083 + ], + [ + 77.655650327093994, + 12.8977774906426 + ], + [ + 77.655575263930899, + 12.8977042764358 + ], + [ + 77.655559095150196, + 12.8976884920546 + ], + [ + 77.655065170916302, + 12.8972063095586 + ], + [ + 77.654857649156995, + 12.8970031120166 + ], + [ + 77.654799127605898, + 12.896945810051999 + ], + [ + 77.654497292559299, + 12.896650263873401 + ], + [ + 77.654471823808706, + 12.896584886022801 + ], + [ + 77.654369726912705, + 12.8963228045523 + ], + [ + 77.654365017093397, + 12.896310714285899 + ], + [ + 77.654332055192, + 12.8962296101219 + ], + [ + 77.654266536097296, + 12.896068396820199 + ], + [ + 77.654211420399406, + 12.8959327796093 + ], + [ + 77.654060585768207, + 12.895560064564901 + ], + [ + 77.654004075985597, + 12.895162801615401 + ], + [ + 77.653991452494196, + 12.895073190510599 + ], + [ + 77.653915002737506, + 12.894532024921901 + ], + [ + 77.653910282779606, + 12.894498617212401 + ], + [ + 77.653903088679797, + 12.8944471539648 + ], + [ + 77.653901672880096, + 12.8944372453879 + ], + [ + 77.653186909733094, + 12.8946248424964 + ], + [ + 77.653160964968293, + 12.894631651745501 + ], + [ + 77.652847725799504, + 12.894713864262 + ], + [ + 77.652614502772806, + 12.894731303175201 + ], + [ + 77.652288839886893, + 12.8945324991116 + ], + [ + 77.652047213658093, + 12.894384995729 + ], + [ + 77.651863655724497, + 12.894270368712601 + ], + [ + 77.651697245918498, + 12.8941664500204 + ], + [ + 77.651681420923197, + 12.8941565677023 + ], + [ + 77.651530104633494, + 12.8940541871943 + ], + [ + 77.651515006116497, + 12.8940439710254 + ], + [ + 77.651293005970103, + 12.8938937652907 + ], + [ + 77.650390210534198, + 12.8932829279268 + ], + [ + 77.649633514272594, + 12.891965471782299 + ], + [ + 77.649076114982805, + 12.8909949911104 + ], + [ + 77.649031604549094, + 12.8909224784844 + ], + [ + 77.6489979826857, + 12.8909295475001 + ], + [ + 77.648977019698094, + 12.890933093335599 + ], + [ + 77.646524611350102, + 12.891347906415699 + ], + [ + 77.646443119553794, + 12.891361690213101 + ], + [ + 77.645759481210305, + 12.8914773198173 + ], + [ + 77.644793499616597, + 12.8916407014261 + ], + [ + 77.644793887775904, + 12.891646093545701 + ], + [ + 77.644797618219698, + 12.891697898686299 + ], + [ + 77.644675124523204, + 12.891719670685401 + ], + [ + 77.644157528575306, + 12.8914893400207 + ], + [ + 77.643901814566604, + 12.891375546960299 + ], + [ + 77.643900215267905, + 12.8913392678596 + ], + [ + 77.643896899615498, + 12.891264515019 + ], + [ + 77.6438086148313, + 12.891335441053 + ], + [ + 77.643522011859702, + 12.8916219558901 + ], + [ + 77.643295336646801, + 12.891507284900101 + ], + [ + 77.642972657814298, + 12.8913872803756 + ], + [ + 77.642523307539193, + 12.8912686092347 + ], + [ + 77.642436637604803, + 12.891480617228 + ], + [ + 77.642305966011506, + 12.8917606277851 + ], + [ + 77.642029879160603, + 12.892297425247 + ], + [ + 77.641992128103993, + 12.8922913617904 + ], + [ + 77.641836614982395, + 12.892800666997401 + ], + [ + 77.641269647660494, + 12.892623219391901 + ], + [ + 77.641253926346707, + 12.8926579949516 + ], + [ + 77.641219258372999, + 12.892727330899101 + ], + [ + 77.641209257995996, + 12.892849335498999 + ], + [ + 77.641185257091095, + 12.8929553394956 + ], + [ + 77.641129656793893, + 12.893143911970199 + ], + [ + 77.641154789359902, + 12.8932751230739 + ], + [ + 77.641203512332893, + 12.8933905591343 + ], + [ + 77.641312612799695, + 12.8935711183374 + ], + [ + 77.641375264254805, + 12.8937127013835 + ], + [ + 77.641377931022006, + 12.893851373278499 + ], + [ + 77.641354596808995, + 12.893932376332501 + ], + [ + 77.641290927741807, + 12.8940173795374 + ], + [ + 77.641246592736906, + 12.8941297171061 + ], + [ + 77.641200120936404, + 12.8943941103591 + ], + [ + 77.640773241557, + 12.8944830637616 + ], + [ + 77.640797166206696, + 12.894684304053801 + ], + [ + 77.640803909379898, + 12.8949190802006 + ], + [ + 77.640839577391304, + 12.8951234212381 + ], + [ + 77.640998250040397, + 12.8950980869496 + ], + [ + 77.641306261653298, + 12.895062085592301 + ], + [ + 77.641552937620304, + 12.8950434182218 + ], + [ + 77.641768945764397, + 12.895119421087299 + ], + [ + 77.641830281410193, + 12.895266093283899 + ], + [ + 77.641860949233106, + 12.8955567709099 + ], + [ + 77.641999778806095, + 12.8955607816207 + ], + [ + 77.641999621128093, + 12.8956427741524 + ], + [ + 77.642036289177298, + 12.895687442503201 + ], + [ + 77.642257630855795, + 12.895662108214699 + ], + [ + 77.642286965295099, + 12.896027455322599 + ], + [ + 77.642276298226307, + 12.8963021323453 + ], + [ + 77.642255649910894, + 12.8963521422359 + ], + [ + 77.642360056710203, + 12.896433552084501 + ], + [ + 77.642393205697502, + 12.8964370385313 + ], + [ + 77.642390495799305, + 12.896516328847801 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "346", + "group": "Cotton pete", + "Corporatio": "Central", + "ac_no": "164", + "ac": "Gandhinagara", + "corporat_1": "1", + "ward_id": "22", + "ward_name": "22 - Cottonpete", + "corporat_2": "ಕೇಂದ್ರ", + "ac_kn": "ಗಾಂಧಿನಗರ", + "ward_name_": "ಕಾಟನ್‌ಪೇಟೆ", + "dig_ward_n": "Cotton pete", + "Assembly": "164 - Gandhinagara", + "Slno": "22" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.574171113318997, + 12.9700098485563 + ], + [ + 77.574194775096004, + 12.970206816807201 + ], + [ + 77.5746601184902, + 12.9699718565361 + ], + [ + 77.5745929869842, + 12.969704856227899 + ], + [ + 77.575368050735605, + 12.969378352993999 + ], + [ + 77.574843709318301, + 12.9683948589604 + ], + [ + 77.574889654246107, + 12.968372443100799 + ], + [ + 77.574877393571995, + 12.968352450243801 + ], + [ + 77.574877393571995, + 12.968352450243801 + ], + [ + 77.574874543687002, + 12.968347197801 + ], + [ + 77.574850968023497, + 12.968303744040901 + ], + [ + 77.5748457030098, + 12.968294039822901 + ], + [ + 77.574801534165601, + 12.968210854788699 + ], + [ + 77.574788737626804, + 12.9681867545924 + ], + [ + 77.574733562787799, + 12.9680828404507 + ], + [ + 77.574666994458994, + 12.9679584061104 + ], + [ + 77.574660244925397, + 12.9679457894075 + ], + [ + 77.574659344169504, + 12.9679441052611 + ], + [ + 77.574656715170093, + 12.967939190324399 + ], + [ + 77.574581518894803, + 12.967798628965999 + ], + [ + 77.574498156234696, + 12.9676424798889 + ], + [ + 77.574454148198598, + 12.9675604839041 + ], + [ + 77.574421639744202, + 12.9674999150189 + ], + [ + 77.574391510291804, + 12.967443778390299 + ], + [ + 77.574382642396799, + 12.9674272562524 + ], + [ + 77.5743202966502, + 12.9673110944036 + ], + [ + 77.574247618551993, + 12.967176365915099 + ], + [ + 77.574211612436102, + 12.967109617676901 + ], + [ + 77.574189446826495, + 12.967068527735799 + ], + [ + 77.574162809217796, + 12.967019146826701 + ], + [ + 77.574160028550494, + 12.9670139930647 + ], + [ + 77.574150511701703, + 12.966996350734 + ], + [ + 77.574129704991506, + 12.9669577797037 + ], + [ + 77.5741001505653, + 12.9669029915955 + ], + [ + 77.574058522171001, + 12.9668258225625 + ], + [ + 77.574053460693705, + 12.966814315731099 + ], + [ + 77.573966391324205, + 12.966616373384401 + ], + [ + 77.573958129413697, + 12.966597590219701 + ], + [ + 77.573947980059003, + 12.9665745153759 + ], + [ + 77.573871698763696, + 12.966401096044599 + ], + [ + 77.573868356835803, + 12.966393497677901 + ], + [ + 77.573868103105198, + 12.966392921077601 + ], + [ + 77.573866048027099, + 12.9663889897251 + ], + [ + 77.573863992009393, + 12.9663850565749 + ], + [ + 77.573743115437495, + 12.9664438471148 + ], + [ + 77.573691543906705, + 12.9664800934983 + ], + [ + 77.5736665183573, + 12.9664976823752 + ], + [ + 77.573606478792698, + 12.9665196237055 + ], + [ + 77.573565183022595, + 12.966534715146601 + ], + [ + 77.573543043386707, + 12.966542805879399 + ], + [ + 77.573453716690196, + 12.966575451040001 + ], + [ + 77.573407952434195, + 12.966605675160899 + ], + [ + 77.573405463126605, + 12.966607319175701 + ], + [ + 77.5734051084589, + 12.966607553409199 + ], + [ + 77.573392571068197, + 12.966620098924199 + ], + [ + 77.573391033447606, + 12.966621759254201 + ], + [ + 77.573358527289102, + 12.96665685955 + ], + [ + 77.573349294938694, + 12.966666828681101 + ], + [ + 77.573301213716107, + 12.9667121620366 + ], + [ + 77.573280298655405, + 12.9667318817836 + ], + [ + 77.573256296453295, + 12.966741491017499 + ], + [ + 77.573188282702006, + 12.9667687201727 + ], + [ + 77.573176496652593, + 12.9667734389028 + ], + [ + 77.573083626555501, + 12.9668106199835 + ], + [ + 77.572891743469896, + 12.9668668563836 + ], + [ + 77.572780403538601, + 12.966899486847099 + ], + [ + 77.572748513007397, + 12.9669088330684 + ], + [ + 77.572706845814807, + 12.966921044127201 + ], + [ + 77.572704776602805, + 12.966921650926301 + ], + [ + 77.572663641487694, + 12.966933199007 + ], + [ + 77.572639199968705, + 12.9669400602548 + ], + [ + 77.572467102564801, + 12.966988371728 + ], + [ + 77.572220922551793, + 12.9670675988535 + ], + [ + 77.572102911060895, + 12.967125231116601 + ], + [ + 77.571992416401997, + 12.967172639677599 + ], + [ + 77.571956378791796, + 12.9671881025057 + ], + [ + 77.571833497937803, + 12.9672408255764 + ], + [ + 77.571792713549399, + 12.9672641926068 + ], + [ + 77.571753155406498, + 12.9672868563721 + ], + [ + 77.571594817450801, + 12.9673775729584 + ], + [ + 77.571543870277395, + 12.9674063093267 + ], + [ + 77.571487167117297, + 12.967435102578699 + ], + [ + 77.571439108282306, + 12.967456348792201 + ], + [ + 77.571411769758896, + 12.9674684352147 + ], + [ + 77.571287207571103, + 12.967523502877899 + ], + [ + 77.571281149660393, + 12.9675261809465 + ], + [ + 77.571220654924304, + 12.9675529255575 + ], + [ + 77.571152455351793, + 12.967583173989899 + ], + [ + 77.571118629287398, + 12.9675981766917 + ], + [ + 77.571088015533604, + 12.967611754524601 + ], + [ + 77.570966182213596, + 12.967665789550701 + ], + [ + 77.570744720122406, + 12.9677640119834 + ], + [ + 77.5706820766313, + 12.967791795006001 + ], + [ + 77.570551011015098, + 12.9678499247734 + ], + [ + 77.570522331631693, + 12.9678626445425 + ], + [ + 77.570449785178297, + 12.967894820365901 + ], + [ + 77.570358441799598, + 12.967935621917 + ], + [ + 77.570333441847893, + 12.9679467889164 + ], + [ + 77.570303909543895, + 12.9679491622377 + ], + [ + 77.570266904179803, + 12.967952135194601 + ], + [ + 77.570258716871507, + 12.9679527933862 + ], + [ + 77.570254442229299, + 12.967953136782601 + ], + [ + 77.570251394771702, + 12.9679533815951 + ], + [ + 77.570223959222105, + 12.9679555860269 + ], + [ + 77.570221263251099, + 12.967955802385999 + ], + [ + 77.570190192066505, + 12.9679583684871 + ], + [ + 77.570174667053294, + 12.9679596506626 + ], + [ + 77.570107389120395, + 12.967967187854001 + ], + [ + 77.570055560300602, + 12.967972993990999 + ], + [ + 77.569935404645506, + 12.9679864544197 + ], + [ + 77.569917441650603, + 12.9679884667711 + ], + [ + 77.569876164117403, + 12.967993090921 + ], + [ + 77.569860075447707, + 12.967994893222301 + ], + [ + 77.569721968674997, + 12.9680103647897 + ], + [ + 77.569661632238507, + 12.968017124096701 + ], + [ + 77.569619765801207, + 12.968021814555399 + ], + [ + 77.569602633684497, + 12.968023733754899 + ], + [ + 77.569485189550804, + 12.9680368897502 + ], + [ + 77.569451539047407, + 12.968040659731299 + ], + [ + 77.569305570489902, + 12.9680570119005 + ], + [ + 77.5692894845685, + 12.9680588141408 + ], + [ + 77.569251041946501, + 12.9680631201902 + ], + [ + 77.569036686524697, + 12.9680871339619 + ], + [ + 77.5690307755265, + 12.9680877958378 + ], + [ + 77.568991709957004, + 12.968092172146999 + ], + [ + 77.568629394788303, + 12.9681318877208 + ], + [ + 77.568573911029901, + 12.968138098360599 + ], + [ + 77.568154172505402, + 12.968185082947899 + ], + [ + 77.568135632507406, + 12.968187157794301 + ], + [ + 77.568076158038295, + 12.968193815183101 + ], + [ + 77.568075097744796, + 12.968202881849599 + ], + [ + 77.568045681787595, + 12.968204304246701 + ], + [ + 77.567906763458495, + 12.9682110203193 + ], + [ + 77.567870233819093, + 12.9682127866594 + ], + [ + 77.567871538729904, + 12.9681936242139 + ], + [ + 77.567883859085796, + 12.968012763449901 + ], + [ + 77.567888707498597, + 12.9679415904436 + ], + [ + 77.567902239890202, + 12.967742928750299 + ], + [ + 77.567903481713699, + 12.9677247101313 + ], + [ + 77.567908763289793, + 12.9676471824869 + ], + [ + 77.567926232248197, + 12.9673907351042 + ], + [ + 77.567927951945094, + 12.967365491947699 + ], + [ + 77.567934586450306, + 12.967268093981801 + ], + [ + 77.567936638329996, + 12.9672379670998 + ], + [ + 77.567940285815595, + 12.9671844187418 + ], + [ + 77.567872724617104, + 12.967185085565999 + ], + [ + 77.567769521259194, + 12.967186104142 + ], + [ + 77.567755414052002, + 12.9671862433713 + ], + [ + 77.567738218428005, + 12.9671864130804 + ], + [ + 77.567747529867006, + 12.9670327090484 + ], + [ + 77.567749252724795, + 12.9670042703489 + ], + [ + 77.567750729826002, + 12.9669798914778 + ], + [ + 77.567751019712404, + 12.9669751048385 + ], + [ + 77.567718968669894, + 12.9669742037378 + ], + [ + 77.567513166987297, + 12.966968417620301 + ], + [ + 77.567361059422595, + 12.9669647038869 + ], + [ + 77.567229011342903, + 12.966961479661199 + ], + [ + 77.567039805238807, + 12.966956864248701 + ], + [ + 77.567019050929403, + 12.9669563525811 + ], + [ + 77.567020237068704, + 12.9669597297284 + ], + [ + 77.5669726438732, + 12.9669743265822 + ], + [ + 77.566952600858798, + 12.9669804735643 + ], + [ + 77.566651190554893, + 12.9670729142513 + ], + [ + 77.566595945813106, + 12.9670927190411 + ], + [ + 77.566460115158094, + 12.9671414125262 + ], + [ + 77.566451807922803, + 12.967144390037699 + ], + [ + 77.566445572004994, + 12.967146625528599 + ], + [ + 77.566433408293406, + 12.9671509860516 + ], + [ + 77.566430913649498, + 12.9671518806844 + ], + [ + 77.566424672226304, + 12.967136491400799 + ], + [ + 77.566348029749705, + 12.9669475277201 + ], + [ + 77.566290414970794, + 12.966805477835599 + ], + [ + 77.566271846731993, + 12.966759696909399 + ], + [ + 77.566271588730302, + 12.966759061616401 + ], + [ + 77.566265145049698, + 12.9667431757972 + ], + [ + 77.566262568788005, + 12.966736824453401 + ], + [ + 77.566222731163094, + 12.9667512452947 + ], + [ + 77.566203452968296, + 12.966758223983399 + ], + [ + 77.566192013617496, + 12.966762364403801 + ], + [ + 77.566134514055705, + 12.9667697074152 + ], + [ + 77.566057464170797, + 12.966779501863501 + ], + [ + 77.566028290641498, + 12.9667782329368 + ], + [ + 77.565888119469193, + 12.966772137443 + ], + [ + 77.565780947492499, + 12.9667641598042 + ], + [ + 77.5656811214904, + 12.9667425578811 + ], + [ + 77.565655526167902, + 12.966751034773999 + ], + [ + 77.565653005268103, + 12.966751869668499 + ], + [ + 77.565601471867296, + 12.9667465035778 + ], + [ + 77.565533856600297, + 12.9667394623138 + ], + [ + 77.565504158554305, + 12.9667363696368 + ], + [ + 77.565494505148095, + 12.9667353644165 + ], + [ + 77.565465865729095, + 12.9668621293906 + ], + [ + 77.565465397330996, + 12.9669287637018 + ], + [ + 77.565448037099003, + 12.9669763661863 + ], + [ + 77.565433206814404, + 12.966990393979801 + ], + [ + 77.565364784905796, + 12.967055109932099 + ], + [ + 77.565327154283395, + 12.967203420582299 + ], + [ + 77.565292277869801, + 12.9673957492444 + ], + [ + 77.565281927787197, + 12.967621714681901 + ], + [ + 77.565199714071198, + 12.9677456208585 + ], + [ + 77.565143346448494, + 12.9678071597511 + ], + [ + 77.565048217229801, + 12.967909485964199 + ], + [ + 77.565014075294201, + 12.9679462109866 + ], + [ + 77.564840613276402, + 12.9680427837979 + ], + [ + 77.564667149276403, + 12.968139357439201 + ], + [ + 77.564342774003507, + 12.9682210642312 + ], + [ + 77.564256546162099, + 12.9682427839511 + ], + [ + 77.564371098290493, + 12.968379640546599 + ], + [ + 77.564558477111902, + 12.968621893180201 + ], + [ + 77.565167258182797, + 12.9693043236301 + ], + [ + 77.565272609254805, + 12.9694211203912 + ], + [ + 77.565619904538195, + 12.969806145033401 + ], + [ + 77.566035627711997, + 12.9702724733141 + ], + [ + 77.5660710753058, + 12.9703065451829 + ], + [ + 77.566291543653804, + 12.970556795774099 + ], + [ + 77.566430182664902, + 12.970759958760601 + ], + [ + 77.566518659885105, + 12.970754152015401 + ], + [ + 77.566594753332097, + 12.970746827669 + ], + [ + 77.566624551377899, + 12.9707836859422 + ], + [ + 77.566686875410198, + 12.970873786090801 + ], + [ + 77.566754357778905, + 12.971098779105599 + ], + [ + 77.566866554473606, + 12.971290939331499 + ], + [ + 77.566899959880999, + 12.971495310267301 + ], + [ + 77.5668498306472, + 12.9716953884456 + ], + [ + 77.566843464725494, + 12.971710916565801 + ], + [ + 77.566875964681003, + 12.9718367803875 + ], + [ + 77.566373954642501, + 12.973780043787601 + ], + [ + 77.566212228741605, + 12.9743903302061 + ], + [ + 77.565778925384393, + 12.9749212793902 + ], + [ + 77.565333416298898, + 12.975244731192101 + ], + [ + 77.564457655288294, + 12.975769577512001 + ], + [ + 77.564646844078098, + 12.976208983733301 + ], + [ + 77.567179532715002, + 12.975824503289701 + ], + [ + 77.567350412912205, + 12.9771335676574 + ], + [ + 77.568082756614402, + 12.980581685921999 + ], + [ + 77.569004417274598, + 12.982481230912001 + ], + [ + 77.569075009214998, + 12.9824846175442 + ], + [ + 77.569579287348901, + 12.9826651239988 + ], + [ + 77.569896712762599, + 12.9824938833499 + ], + [ + 77.570007755939798, + 12.982371056282799 + ], + [ + 77.570201500141906, + 12.982099597565099 + ], + [ + 77.570373855424705, + 12.981903706336601 + ], + [ + 77.570375218574796, + 12.9816051670389 + ], + [ + 77.570538141861405, + 12.981354301193299 + ], + [ + 77.570618381485403, + 12.9811100496901 + ], + [ + 77.570650014382494, + 12.9808522835703 + ], + [ + 77.570782041746696, + 12.9806291213487 + ], + [ + 77.570899244246604, + 12.9804726068186 + ], + [ + 77.570928491010406, + 12.980433550538599 + ], + [ + 77.570976689181293, + 12.9803082803774 + ], + [ + 77.571016536014, + 12.9800582993837 + ], + [ + 77.571030064622704, + 12.979989161028801 + ], + [ + 77.571130715718994, + 12.9794747994857 + ], + [ + 77.570932614509601, + 12.9780446010441 + ], + [ + 77.570924301727203, + 12.977236134008299 + ], + [ + 77.570877486631304, + 12.9765936996055 + ], + [ + 77.5709165936413, + 12.9761864348858 + ], + [ + 77.570894513506104, + 12.9757635001181 + ], + [ + 77.570826264990401, + 12.974629396318999 + ], + [ + 77.571141815015395, + 12.974515069433201 + ], + [ + 77.571374030042193, + 12.9744386867012 + ], + [ + 77.571636633227797, + 12.974422689162401 + ], + [ + 77.572038624967703, + 12.9744613679604 + ], + [ + 77.572042131847297, + 12.9744617054952 + ], + [ + 77.572146072081694, + 12.9744721512112 + ], + [ + 77.572580255990204, + 12.974456382406601 + ], + [ + 77.572875550226598, + 12.9744448555576 + ], + [ + 77.573233370113698, + 12.9743982882925 + ], + [ + 77.573641636490905, + 12.9743709677885 + ], + [ + 77.5740370811139, + 12.974328090807701 + ], + [ + 77.574199532531495, + 12.9743192369605 + ], + [ + 77.574187683680506, + 12.974172989984 + ], + [ + 77.574172238570895, + 12.973964465099201 + ], + [ + 77.574152988473301, + 12.9736733762476 + ], + [ + 77.574148885179, + 12.973561832215101 + ], + [ + 77.573798592716699, + 12.9736755424221 + ], + [ + 77.573683884048904, + 12.9737288471563 + ], + [ + 77.573558594226995, + 12.9737590701332 + ], + [ + 77.573163308215896, + 12.9738296427258 + ], + [ + 77.573006856418502, + 12.9738471314267 + ], + [ + 77.572871792103797, + 12.9737890525004 + ], + [ + 77.572828394789298, + 12.973592397098599 + ], + [ + 77.572773721548899, + 12.973448747303101 + ], + [ + 77.5727020506353, + 12.9732328079971 + ], + [ + 77.572602212983597, + 12.973025932766999 + ], + [ + 77.572577682358897, + 12.9729706217145 + ], + [ + 77.572467690062197, + 12.9727330853762 + ], + [ + 77.572319623921501, + 12.972527390078 + ], + [ + 77.572409945995602, + 12.9724524302536 + ], + [ + 77.572563406986504, + 12.972287882610001 + ], + [ + 77.572713964942906, + 12.972128435661499 + ], + [ + 77.572871895289197, + 12.971967466574601 + ], + [ + 77.573000737549805, + 12.9718517089222 + ], + [ + 77.573236512684105, + 12.971645045840599 + ], + [ + 77.573296805339893, + 12.971580867762601 + ], + [ + 77.573271114094496, + 12.9715253295788 + ], + [ + 77.573225983472, + 12.971519254895799 + ], + [ + 77.573162503418502, + 12.9715249549603 + ], + [ + 77.573120708825499, + 12.971484067593501 + ], + [ + 77.573087756849006, + 12.9714409190097 + ], + [ + 77.573086287806504, + 12.9713699250664 + ], + [ + 77.573059111690498, + 12.9713136769619 + ], + [ + 77.573031943040206, + 12.9712581533547 + ], + [ + 77.572988030189507, + 12.9711549733429 + ], + [ + 77.572949878318099, + 12.971037244801201 + ], + [ + 77.572916016316597, + 12.970977439923599 + ], + [ + 77.572876235601896, + 12.9708809213314 + ], + [ + 77.573020345423302, + 12.970848882452801 + ], + [ + 77.573288480943106, + 12.970771598511799 + ], + [ + 77.573359199195906, + 12.9707513353164 + ], + [ + 77.5735277977751, + 12.9706938748817 + ], + [ + 77.573394268029702, + 12.9705149365744 + ], + [ + 77.573313325523998, + 12.970100828765901 + ], + [ + 77.573461027238295, + 12.970047587450299 + ], + [ + 77.573505251879496, + 12.970141618483501 + ], + [ + 77.573673992500702, + 12.970095247015101 + ], + [ + 77.574161751650195, + 12.9700037921745 + ], + [ + 77.574171113318997, + 12.9700098485563 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "348", + "group": "bilekahalli", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "49", + "ward_name": "49 - Bilekahalli", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಬಿಳೇಕಹಳ್ಳಿ", + "dig_ward_n": "bilekahalli", + "Assembly": "175 - Bommanahalli", + "Slno": "49" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.618685129090295, + 12.905348070582001 + ], + [ + 77.618616529281795, + 12.9050469266314 + ], + [ + 77.618552172771402, + 12.904716514097499 + ], + [ + 77.618434487171896, + 12.9041786778589 + ], + [ + 77.618386801412299, + 12.9039281730375 + ], + [ + 77.618347059224703, + 12.9035966735486 + ], + [ + 77.618345442577294, + 12.903583187187699 + ], + [ + 77.618355633826795, + 12.903391860308 + ], + [ + 77.618444646761304, + 12.9031650848867 + ], + [ + 77.618403920845395, + 12.9027639205647 + ], + [ + 77.618251024794404, + 12.9025885692093 + ], + [ + 77.618195025851605, + 12.902592714923101 + ], + [ + 77.617591291286899, + 12.902762498105901 + ], + [ + 77.617503349245595, + 12.902748912282201 + ], + [ + 77.6174374618314, + 12.9026241170513 + ], + [ + 77.617384543635794, + 12.902504260812499 + ], + [ + 77.617288446090797, + 12.902226515799001 + ], + [ + 77.617164845081206, + 12.902122492171801 + ], + [ + 77.616767850446905, + 12.901957926103901 + ], + [ + 77.6159836428033, + 12.9013270946521 + ], + [ + 77.615000731969403, + 12.9002606687182 + ], + [ + 77.614636140150907, + 12.8998782790348 + ], + [ + 77.614434460401995, + 12.899553270974 + ], + [ + 77.613929615728594, + 12.8991001976968 + ], + [ + 77.613242802301599, + 12.899283802350901 + ], + [ + 77.613152253286898, + 12.8990112546939 + ], + [ + 77.613129006740493, + 12.898837471752801 + ], + [ + 77.613095736281494, + 12.898637016845299 + ], + [ + 77.613030927508305, + 12.898215056094701 + ], + [ + 77.613046956049502, + 12.8980948070366 + ], + [ + 77.612781819537005, + 12.897947251402799 + ], + [ + 77.612038961545295, + 12.897932775869901 + ], + [ + 77.612005892843399, + 12.8979133853045 + ], + [ + 77.612006093928002, + 12.897838804476899 + ], + [ + 77.611958052365793, + 12.897802624312799 + ], + [ + 77.611426521380395, + 12.897924337205 + ], + [ + 77.610979727218805, + 12.898027562063101 + ], + [ + 77.610624886436099, + 12.8980934596787 + ], + [ + 77.610372619007407, + 12.8981562143947 + ], + [ + 77.610282850063101, + 12.8982402946575 + ], + [ + 77.610170747449203, + 12.898426425074099 + ], + [ + 77.610008270324599, + 12.8986890700989 + ], + [ + 77.609839474831105, + 12.898975704486 + ], + [ + 77.609680029672703, + 12.899103125121799 + ], + [ + 77.609409024270406, + 12.898824545201 + ], + [ + 77.609443353428404, + 12.8987608326622 + ], + [ + 77.609504326841702, + 12.898585938144601 + ], + [ + 77.609482032563406, + 12.898584429505 + ], + [ + 77.609517480320207, + 12.898511893998901 + ], + [ + 77.609556360795807, + 12.8982382231973 + ], + [ + 77.609587355179002, + 12.8981124942362 + ], + [ + 77.609541330928806, + 12.8979953967404 + ], + [ + 77.609479885438603, + 12.897692466441899 + ], + [ + 77.609444450039604, + 12.897445959318301 + ], + [ + 77.6094028519624, + 12.8972379689327 + ], + [ + 77.609367416563401, + 12.897070035954799 + ], + [ + 77.609332483387206, + 12.896922782736 + ], + [ + 77.609366177665194, + 12.895931201455101 + ], + [ + 77.609310745434996, + 12.8956117877963 + ], + [ + 77.609248593672106, + 12.895215638295401 + ], + [ + 77.609207168788899, + 12.894906601665699 + ], + [ + 77.6091640481864, + 12.894940252923501 + ], + [ + 77.609107043414099, + 12.8950165160648 + ], + [ + 77.608997655877999, + 12.8951135782448 + ], + [ + 77.608749608084807, + 12.8952768892142 + ], + [ + 77.608268407449103, + 12.8953921809163 + ], + [ + 77.607848847912607, + 12.8955311279133 + ], + [ + 77.607751987317499, + 12.895212985110099 + ], + [ + 77.607562773240801, + 12.894682497487601 + ], + [ + 77.607433045058499, + 12.894272653276399 + ], + [ + 77.607316232047694, + 12.8939201428611 + ], + [ + 77.607234804898297, + 12.893933031639 + ], + [ + 77.606938070642201, + 12.8939837963099 + ], + [ + 77.606556465019395, + 12.8940528272785 + ], + [ + 77.605763552917907, + 12.894289894400901 + ], + [ + 77.605327696732502, + 12.894362667231 + ], + [ + 77.605595251357997, + 12.895944026164599 + ], + [ + 77.604490373637802, + 12.896402264829 + ], + [ + 77.604548243074504, + 12.8966276713459 + ], + [ + 77.604715594504498, + 12.8972813287549 + ], + [ + 77.605039148774395, + 12.898196521390901 + ], + [ + 77.604729938208195, + 12.898337195507199 + ], + [ + 77.604583033700095, + 12.898386464948199 + ], + [ + 77.603982006247094, + 12.898660969820501 + ], + [ + 77.603471697903004, + 12.8988497398022 + ], + [ + 77.603159288721898, + 12.8989906730984 + ], + [ + 77.602873155344497, + 12.899071047247 + ], + [ + 77.602572755620699, + 12.899180407935599 + ], + [ + 77.602324594885403, + 12.899275503530101 + ], + [ + 77.602111859941203, + 12.899325185028699 + ], + [ + 77.600902564156797, + 12.899806096245801 + ], + [ + 77.600730638721004, + 12.899329850488501 + ], + [ + 77.600519389052195, + 12.8987343587198 + ], + [ + 77.600279911429297, + 12.898073081825499 + ], + [ + 77.600189615259396, + 12.8977555641665 + ], + [ + 77.600079788975705, + 12.897369371780901 + ], + [ + 77.599837170648399, + 12.8964407684393 + ], + [ + 77.5997378607141, + 12.896497514296099 + ], + [ + 77.599613637546298, + 12.8964767837801 + ], + [ + 77.599557323937901, + 12.896360757575399 + ], + [ + 77.599545333062906, + 12.8962003597796 + ], + [ + 77.599267557507801, + 12.8962297933139 + ], + [ + 77.598590578954997, + 12.8964842413559 + ], + [ + 77.597427568173799, + 12.896937817263799 + ], + [ + 77.597103814521503, + 12.897046560611599 + ], + [ + 77.596777484853504, + 12.897114929120001 + ], + [ + 77.596948815698994, + 12.897861745041 + ], + [ + 77.596983794557005, + 12.8984139149788 + ], + [ + 77.597429317852104, + 12.898358799755799 + ], + [ + 77.597444455664501, + 12.8984904424566 + ], + [ + 77.597401645135506, + 12.898514522919401 + ], + [ + 77.597435347750704, + 12.8987760846182 + ], + [ + 77.597699902086802, + 12.898709249377401 + ], + [ + 77.597722089042705, + 12.8988146323466 + ], + [ + 77.597313027593103, + 12.898898110122801 + ], + [ + 77.597088499703005, + 12.8989214612198 + ], + [ + 77.596765061410494, + 12.898949228760401 + ], + [ + 77.596745481499198, + 12.898964481716501 + ], + [ + 77.596623768606904, + 12.8989860510898 + ], + [ + 77.596562141825999, + 12.8990600032269 + ], + [ + 77.596445050942293, + 12.899066165904999 + ], + [ + 77.5963618547881, + 12.8990738692526 + ], + [ + 77.596392668178495, + 12.899396639517599 + ], + [ + 77.5964341782215, + 12.899600139007999 + ], + [ + 77.596489248273699, + 12.8999072296159 + ], + [ + 77.596507131592404, + 12.9000227651395 + ], + [ + 77.596541313681001, + 12.900265643570799 + ], + [ + 77.596533471235404, + 12.900332053623201 + ], + [ + 77.596524373515507, + 12.900394890401399 + ], + [ + 77.596492308423294, + 12.900475285928801 + ], + [ + 77.596621327166503, + 12.900758456147299 + ], + [ + 77.5967335413104, + 12.901037067391799 + ], + [ + 77.596831373825097, + 12.9012658568159 + ], + [ + 77.596695024572398, + 12.9013174692449 + ], + [ + 77.596441584435894, + 12.901383718034401 + ], + [ + 77.595977151264904, + 12.9015070131997 + ], + [ + 77.595773204069701, + 12.901577880426 + ], + [ + 77.595430307461896, + 12.901642956570299 + ], + [ + 77.595010712792998, + 12.901705608186401 + ], + [ + 77.595003410703796, + 12.9018129205778 + ], + [ + 77.594955859397103, + 12.902222740412 + ], + [ + 77.594914185829793, + 12.9025992915212 + ], + [ + 77.594910821232105, + 12.9026416042603 + ], + [ + 77.595384968868601, + 12.9025919666964 + ], + [ + 77.595903945247798, + 12.902572132174599 + ], + [ + 77.5962142116894, + 12.902543872711901 + ], + [ + 77.596391010810294, + 12.9025277690944 + ], + [ + 77.596642463175002, + 12.9024642892396 + ], + [ + 77.596751608929296, + 12.9024218236866 + ], + [ + 77.596777209309593, + 12.902411863288201 + ], + [ + 77.596825850025397, + 12.9023929385254 + ], + [ + 77.597190523611999, + 12.902251053722599 + ], + [ + 77.597427674067006, + 12.902137018835599 + ], + [ + 77.598075411092694, + 12.901825550007301 + ], + [ + 77.598916874066205, + 12.901375631074901 + ], + [ + 77.598950704453102, + 12.901359301208799 + ], + [ + 77.599112747132807, + 12.9012810814825 + ], + [ + 77.599430988953102, + 12.901108522977999 + ], + [ + 77.599436136272999, + 12.9011080258035 + ], + [ + 77.599470089626607, + 12.9011047462806 + ], + [ + 77.599482245651004, + 12.901111401164201 + ], + [ + 77.599489089809097, + 12.9011610220391 + ], + [ + 77.599454920293297, + 12.9013635054445 + ], + [ + 77.599402783169495, + 12.9015034601137 + ], + [ + 77.599389481350201, + 12.901539166930201 + ], + [ + 77.599348510727097, + 12.901649145675099 + ], + [ + 77.599182732400394, + 12.9020381420096 + ], + [ + 77.599072375509706, + 12.902498862076101 + ], + [ + 77.599043766448801, + 12.902626756795399 + ], + [ + 77.598928291816804, + 12.903204974371 + ], + [ + 77.598926977595596, + 12.903356312870001 + ], + [ + 77.598943469829706, + 12.903504086423199 + ], + [ + 77.598986794152694, + 12.9035748011483 + ], + [ + 77.599146099782402, + 12.903729059552401 + ], + [ + 77.599273790133594, + 12.9038316847255 + ], + [ + 77.599367940103903, + 12.903863497887 + ], + [ + 77.5994198312534, + 12.903872016142699 + ], + [ + 77.599552557161402, + 12.9038492394599 + ], + [ + 77.599763049865004, + 12.903777595720401 + ], + [ + 77.599884081764799, + 12.9037364003362 + ], + [ + 77.599989465774499, + 12.9036856630985 + ], + [ + 77.600008459134997, + 12.9036683761963 + ], + [ + 77.600026913556803, + 12.903651579808599 + ], + [ + 77.600058462935294, + 12.9036228655818 + ], + [ + 77.600150866472703, + 12.9035971018751 + ], + [ + 77.600311135819098, + 12.9035661457768 + ], + [ + 77.600585865469498, + 12.9035272749688 + ], + [ + 77.6009004349512, + 12.903500429653599 + ], + [ + 77.600984605738006, + 12.9034578082117 + ], + [ + 77.600991093028895, + 12.903457743653201 + ], + [ + 77.601084172307196, + 12.9034568173537 + ], + [ + 77.601120500715496, + 12.9034632315692 + ], + [ + 77.601248603562397, + 12.903550041456599 + ], + [ + 77.601303407316905, + 12.903561918226499 + ], + [ + 77.601428384445995, + 12.9035236687 + ], + [ + 77.601433079876998, + 12.9035222316516 + ], + [ + 77.601458873583198, + 12.9035118112884 + ], + [ + 77.601461818491501, + 12.903522116258699 + ], + [ + 77.601520982730904, + 12.903729146467199 + ], + [ + 77.601727655393006, + 12.904567282409699 + ], + [ + 77.601750460093299, + 12.904657398734599 + ], + [ + 77.601853195238405, + 12.9051295492085 + ], + [ + 77.601860679551905, + 12.905296609873201 + ], + [ + 77.601858958450094, + 12.905408426891301 + ], + [ + 77.601851823902095, + 12.9054977119723 + ], + [ + 77.601822652425795, + 12.9056267416713 + ], + [ + 77.601732354379394, + 12.9058004223378 + ], + [ + 77.601075706080394, + 12.906589558727299 + ], + [ + 77.600564500621203, + 12.907244784240699 + ], + [ + 77.600559020819503, + 12.907251807870001 + ], + [ + 77.600555357929593, + 12.9072565033351 + ], + [ + 77.600500506626105, + 12.907240109851999 + ], + [ + 77.600495067887493, + 12.9072584061232 + ], + [ + 77.600361444966495, + 12.9077078917412 + ], + [ + 77.600279610007505, + 12.9081434839115 + ], + [ + 77.600228305271401, + 12.9085256954877 + ], + [ + 77.601227250616006, + 12.9085605141202 + ], + [ + 77.601501572250996, + 12.908570075032999 + ], + [ + 77.601639610407204, + 12.908574886334801 + ], + [ + 77.602046453218406, + 12.908589259411499 + ], + [ + 77.602287972964803, + 12.9085977908972 + ], + [ + 77.602297400979893, + 12.908598161356601 + ], + [ + 77.602563221548294, + 12.908608600710499 + ], + [ + 77.602695090424007, + 12.908614062840799 + ], + [ + 77.603372242389995, + 12.908641998184599 + ], + [ + 77.603378619067399, + 12.9086422607839 + ], + [ + 77.603433330452006, + 12.9086451034816 + ], + [ + 77.603473949612507, + 12.9086485970333 + ], + [ + 77.603739246240906, + 12.908671417407501 + ], + [ + 77.604016438475298, + 12.9086957089807 + ], + [ + 77.604016507605607, + 12.9086957146157 + ], + [ + 77.604016937167899, + 12.9086957527956 + ], + [ + 77.604016292377196, + 12.9086889834836 + ], + [ + 77.604009605390701, + 12.9084880356487 + ], + [ + 77.6040007015783, + 12.9082396806349 + ], + [ + 77.603995961927595, + 12.9081155059931 + ], + [ + 77.603990211551107, + 12.9080048929006 + ], + [ + 77.603983772794095, + 12.907877430435001 + ], + [ + 77.603977923514904, + 12.9077616217841 + ], + [ + 77.603977611878094, + 12.9077554517399 + ], + [ + 77.603976729062495, + 12.907737970096701 + ], + [ + 77.603976722021699, + 12.9077378238109 + ], + [ + 77.603971203023093, + 12.907628560844 + ], + [ + 77.603971025851806, + 12.9076250591008 + ], + [ + 77.603968489901106, + 12.907574849946601 + ], + [ + 77.603966935180395, + 12.9075309053477 + ], + [ + 77.603966679392101, + 12.907523636173501 + ], + [ + 77.6039658641063, + 12.907500580585401 + ], + [ + 77.603965199609803, + 12.9074817696244 + ], + [ + 77.603965160823293, + 12.9074806922167 + ], + [ + 77.603964775182902, + 12.907469777181801 + ], + [ + 77.603964754153196, + 12.907469169381701 + ], + [ + 77.603964417369795, + 12.9074595927461 + ], + [ + 77.603964397144594, + 12.9074590626331 + ], + [ + 77.603964082489696, + 12.9074501109518 + ], + [ + 77.603964065513594, + 12.907449627784899 + ], + [ + 77.603963825612894, + 12.9074428255266 + ], + [ + 77.603963819062699, + 12.907442637678001 + ], + [ + 77.603963738422607, + 12.907440364543501 + ], + [ + 77.603963731825701, + 12.907440172178299 + ], + [ + 77.603963700370002, + 12.9074392690598 + ], + [ + 77.603963650830195, + 12.907437864716901 + ], + [ + 77.603963610262298, + 12.9074367042112 + ], + [ + 77.603963602594803, + 12.907436497401701 + ], + [ + 77.603963383948397, + 12.907430324623499 + ], + [ + 77.603963382634603, + 12.907430286692501 + ], + [ + 77.603963077737703, + 12.9074216547288 + ], + [ + 77.603963070107696, + 12.9074214515327 + ], + [ + 77.6039627574592, + 12.9074126046294 + ], + [ + 77.6039627470238, + 12.9074123084077 + ], + [ + 77.603962490212794, + 12.907405029305799 + ], + [ + 77.603962427684905, + 12.9074032601058 + ], + [ + 77.603961880391395, + 12.907387762668399 + ], + [ + 77.603961847678093, + 12.9073868270389 + ], + [ + 77.603960956599195, + 12.907361610293201 + ], + [ + 77.603960904600399, + 12.9073601463482 + ], + [ + 77.603959391859505, + 12.9073173197787 + ], + [ + 77.603959277146004, + 12.907314068567 + ], + [ + 77.603957359137695, + 12.907259765222999 + ], + [ + 77.603957268109497, + 12.9072572003835 + ], + [ + 77.603955548351905, + 12.907208611980799 + ], + [ + 77.603955179788301, + 12.9071981006095 + ], + [ + 77.603955169334299, + 12.9071978025811 + ], + [ + 77.603946413651101, + 12.906943796892 + ], + [ + 77.603933768690297, + 12.906834381777999 + ], + [ + 77.603879926445103, + 12.906359487227 + ], + [ + 77.603876790617093, + 12.906334674093801 + ], + [ + 77.603853947336106, + 12.905865178988799 + ], + [ + 77.603851198392604, + 12.905808679935401 + ], + [ + 77.604365176905802, + 12.9057871652789 + ], + [ + 77.6046348038128, + 12.905775879136099 + ], + [ + 77.604793684974297, + 12.9057692281445 + ], + [ + 77.604853005119395, + 12.9057667450623 + ], + [ + 77.605040834724093, + 12.905758882055601 + ], + [ + 77.605090487253193, + 12.905756803363699 + ], + [ + 77.605191664025696, + 12.905744501832199 + ], + [ + 77.605556153872897, + 12.9057024720583 + ], + [ + 77.605823483875596, + 12.905671574254599 + ], + [ + 77.605846251491599, + 12.9056690832253 + ], + [ + 77.6059143243465, + 12.9056616341016 + ], + [ + 77.6061368797196, + 12.905642475362001 + ], + [ + 77.606249602060302, + 12.9056334461593 + ], + [ + 77.606448312686197, + 12.9056461450349 + ], + [ + 77.606765676476698, + 12.9056666944886 + ], + [ + 77.606901031771898, + 12.9056755078376 + ], + [ + 77.607066960475905, + 12.905690791827899 + ], + [ + 77.607344205884701, + 12.9057157718968 + ], + [ + 77.607394201922105, + 12.905720276249999 + ], + [ + 77.607535923175405, + 12.905732413603401 + ], + [ + 77.607698527496296, + 12.905760153409201 + ], + [ + 77.607701193802896, + 12.9057606137509 + ], + [ + 77.607994912752403, + 12.9058114014042 + ], + [ + 77.608122503369202, + 12.905848522850601 + ], + [ + 77.608296852617698, + 12.905898729861599 + ], + [ + 77.608394117445101, + 12.905897759014501 + ], + [ + 77.608420509906793, + 12.9058895905677 + ], + [ + 77.608500850054497, + 12.905866202892801 + ], + [ + 77.608797076055794, + 12.905735636454599 + ], + [ + 77.608879589365102, + 12.9056998048369 + ], + [ + 77.609063984784598, + 12.9056087502978 + ], + [ + 77.609304512553905, + 12.905491162515601 + ], + [ + 77.609314814437198, + 12.905485413224101 + ], + [ + 77.609314841987697, + 12.905485405721601 + ], + [ + 77.609395211976803, + 12.905467670262899 + ], + [ + 77.609394366125898, + 12.9054653216639 + ], + [ + 77.609387508405803, + 12.9054462916611 + ], + [ + 77.609462526980906, + 12.9054094054408 + ], + [ + 77.609442499605507, + 12.905394608120201 + ], + [ + 77.609424824616696, + 12.905381548868499 + ], + [ + 77.609322008947004, + 12.9050563573769 + ], + [ + 77.609314133381005, + 12.905031447177199 + ], + [ + 77.609466570884805, + 12.905012046692301 + ], + [ + 77.610276807639707, + 12.9049089276094 + ], + [ + 77.610579283356401, + 12.904870432261401 + ], + [ + 77.611022559575105, + 12.904814015228901 + ], + [ + 77.611437120746302, + 12.904761252391401 + ], + [ + 77.612237743654703, + 12.9046593523776 + ], + [ + 77.612636063491806, + 12.904608655389501 + ], + [ + 77.612657870937198, + 12.904661810005001 + ], + [ + 77.612685987250003, + 12.9047303420058 + ], + [ + 77.612996884708807, + 12.905488146184201 + ], + [ + 77.613121034978903, + 12.905701034817801 + ], + [ + 77.613129185021606, + 12.905715009725901 + ], + [ + 77.613142665614902, + 12.905738126399701 + ], + [ + 77.613218964096106, + 12.9058689611552 + ], + [ + 77.613429533603295, + 12.906230039568801 + ], + [ + 77.613482705148996, + 12.906321215438201 + ], + [ + 77.613968131840394, + 12.9068392174823 + ], + [ + 77.614041665738696, + 12.9071982701123 + ], + [ + 77.614047126021106, + 12.9072249333878 + ], + [ + 77.614070608652497, + 12.9073395933844 + ], + [ + 77.614362096242303, + 12.9077499940456 + ], + [ + 77.614367561086198, + 12.907757604927101 + ], + [ + 77.614367584455096, + 12.90775763812 + ], + [ + 77.614391882840195, + 12.907791479414 + ], + [ + 77.614513512230204, + 12.9080430641687 + ], + [ + 77.614686647958806, + 12.9084011883184 + ], + [ + 77.614690712037998, + 12.908409593765899 + ], + [ + 77.614866848929793, + 12.9084654243256 + ], + [ + 77.614893417462497, + 12.9084741926651 + ], + [ + 77.614948973910899, + 12.908669002217099 + ], + [ + 77.615305935270499, + 12.909618542000601 + ], + [ + 77.615346603107298, + 12.9097833169913 + ], + [ + 77.615648465949803, + 12.9110063859417 + ], + [ + 77.6156760922659, + 12.911116778764301 + ], + [ + 77.61596702944, + 12.9123583317174 + ], + [ + 77.616006272891696, + 12.9126447757319 + ], + [ + 77.616083458800702, + 12.9130313193715 + ], + [ + 77.616191487210301, + 12.9135723176824 + ], + [ + 77.616198167033403, + 12.913634161486399 + ], + [ + 77.616227796239599, + 12.9139084792531 + ], + [ + 77.616265116429602, + 12.914341748693699 + ], + [ + 77.616328489394604, + 12.9147894377175 + ], + [ + 77.616354154450207, + 12.914821929690801 + ], + [ + 77.616387715897204, + 12.9150276110277 + ], + [ + 77.616400882332798, + 12.915108298467899 + ], + [ + 77.616442099566697, + 12.915197098566299 + ], + [ + 77.616539133352802, + 12.9152842101164 + ], + [ + 77.6165573398698, + 12.915319035344799 + ], + [ + 77.616598988468397, + 12.9150069370076 + ], + [ + 77.616624829238802, + 12.9149704173908 + ], + [ + 77.616628635789596, + 12.914965038211699 + ], + [ + 77.616710617222907, + 12.914849182080401 + ], + [ + 77.616727755752393, + 12.9148249621297 + ], + [ + 77.617127934848099, + 12.9145058841604 + ], + [ + 77.617129070239102, + 12.914504983814 + ], + [ + 77.617138329769602, + 12.914497651892701 + ], + [ + 77.6171836381872, + 12.914461778236699 + ], + [ + 77.617223274131206, + 12.914430395422199 + ], + [ + 77.617237040514894, + 12.9144186945502 + ], + [ + 77.617351887566102, + 12.9143210833005 + ], + [ + 77.617377894876498, + 12.914298978792001 + ], + [ + 77.6176665808797, + 12.9140521612672 + ], + [ + 77.617756247623603, + 12.9139846350994 + ], + [ + 77.617780786458596, + 12.9139661192216 + ], + [ + 77.617848769440499, + 12.913914821734499 + ], + [ + 77.617937612600301, + 12.913823588937101 + ], + [ + 77.618052649373695, + 12.9137049908765 + ], + [ + 77.6183646707061, + 12.9133224255646 + ], + [ + 77.618687487162205, + 12.913036869675301 + ], + [ + 77.6189387258285, + 12.912842373422899 + ], + [ + 77.618948451229798, + 12.912836630421999 + ], + [ + 77.619312472154604, + 12.912638744434901 + ], + [ + 77.619569878309804, + 12.9125390442304 + ], + [ + 77.619940010311893, + 12.9125409781872 + ], + [ + 77.620170426960897, + 12.9125578654425 + ], + [ + 77.620487245400895, + 12.9125806594968 + ], + [ + 77.620850483904803, + 12.912639125096799 + ], + [ + 77.620937133001505, + 12.9126687460653 + ], + [ + 77.620999283525805, + 12.9126896462947 + ], + [ + 77.621135082199103, + 12.912674125125299 + ], + [ + 77.6211366150945, + 12.9126741648509 + ], + [ + 77.621178330086494, + 12.9126094853785 + ], + [ + 77.621200719937406, + 12.9125915039586 + ], + [ + 77.621226801923598, + 12.9123851236848 + ], + [ + 77.621282779383094, + 12.9122198235286 + ], + [ + 77.6212356283704, + 12.912080852993 + ], + [ + 77.621186658371798, + 12.912007044407099 + ], + [ + 77.621172219607104, + 12.9119430220555 + ], + [ + 77.6211612230383, + 12.911878965159801 + ], + [ + 77.621145974348096, + 12.9117372739353 + ], + [ + 77.621158335436903, + 12.911602062336 + ], + [ + 77.621162417334105, + 12.911525424870799 + ], + [ + 77.621164094790203, + 12.911493933772199 + ], + [ + 77.621169921807905, + 12.911392558500999 + ], + [ + 77.621135383826399, + 12.9110518032971 + ], + [ + 77.621092280104705, + 12.9108799977688 + ], + [ + 77.621085006613399, + 12.9108429229994 + ], + [ + 77.621075566280695, + 12.9107886408369 + ], + [ + 77.621042067172198, + 12.910774230619801 + ], + [ + 77.620934015829604, + 12.9107757816044 + ], + [ + 77.620884859302606, + 12.910785534856 + ], + [ + 77.620818182441297, + 12.9106767390318 + ], + [ + 77.620751121899701, + 12.910518679878599 + ], + [ + 77.620673557138602, + 12.9103438438424 + ], + [ + 77.620612817001501, + 12.910131688511701 + ], + [ + 77.620610354668401, + 12.910117581902499 + ], + [ + 77.620560347991201, + 12.909919044175901 + ], + [ + 77.620563873718197, + 12.9096224431743 + ], + [ + 77.620553756200096, + 12.9094196859966 + ], + [ + 77.620546967320905, + 12.909098916772001 + ], + [ + 77.620556013637994, + 12.9088518650582 + ], + [ + 77.620633295891295, + 12.908541742278601 + ], + [ + 77.620706252165306, + 12.9082186620914 + ], + [ + 77.620753669557104, + 12.907975725199099 + ], + [ + 77.620694381529503, + 12.907823408762299 + ], + [ + 77.6203719094581, + 12.9076213534563 + ], + [ + 77.620295558052504, + 12.907484414626801 + ], + [ + 77.620285636902906, + 12.9074414286523 + ], + [ + 77.620173035031897, + 12.9072119103042 + ], + [ + 77.620415555471396, + 12.907038457533201 + ], + [ + 77.620815453123498, + 12.906939233048901 + ], + [ + 77.620517244941496, + 12.9066273854652 + ], + [ + 77.619807832079005, + 12.905880666985601 + ], + [ + 77.619617312574405, + 12.9056914894143 + ], + [ + 77.619574657680005, + 12.9056466173163 + ], + [ + 77.619311490474502, + 12.905708708039599 + ], + [ + 77.619129485374003, + 12.905806906645999 + ], + [ + 77.618963872799398, + 12.9059596765614 + ], + [ + 77.618685129090295, + 12.905348070582001 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "350", + "group": "hsr layout", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "29", + "ward_name": "29 - HSR Layout", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಎಚ್‌ಎಸ್‌ಆರ್ ಲೇಔಟ್", + "dig_ward_n": "hsr layout", + "Assembly": "175 - Bommanahalli", + "Slno": "29" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.650096453103302, + 12.9243380696796 + ], + [ + 77.650053033927705, + 12.924314137741201 + ], + [ + 77.649538012732407, + 12.9243480500843 + ], + [ + 77.649358853015897, + 12.9243426986837 + ], + [ + 77.649242050669798, + 12.924358225932901 + ], + [ + 77.649125975856904, + 12.924327135655499 + ], + [ + 77.648485584160994, + 12.924234200829799 + ], + [ + 77.648245426778999, + 12.9241983942612 + ], + [ + 77.648200575027502, + 12.924196936894701 + ], + [ + 77.647877361154599, + 12.9240491522852 + ], + [ + 77.647442699844007, + 12.9238699897511 + ], + [ + 77.647097662727603, + 12.9236860941435 + ], + [ + 77.646765625922995, + 12.9234408741394 + ], + [ + 77.646297763672607, + 12.923070826275501 + ], + [ + 77.645749260468705, + 12.9226327545093 + ], + [ + 77.645530783868793, + 12.9224341875875 + ], + [ + 77.645103113293203, + 12.921992977596799 + ], + [ + 77.645085788170505, + 12.921828702889 + ], + [ + 77.645034353635694, + 12.920392337930499 + ], + [ + 77.6450070705705, + 12.9197452122343 + ], + [ + 77.644980663823404, + 12.9196441322675 + ], + [ + 77.644953524732998, + 12.9191032517236 + ], + [ + 77.644950589707094, + 12.9190095830608 + ], + [ + 77.644924840056404, + 12.918600631521301 + ], + [ + 77.644889442716106, + 12.9179417713245 + ], + [ + 77.644855613486996, + 12.9171723410401 + ], + [ + 77.644838181376301, + 12.9167758425834 + ], + [ + 77.644797474761603, + 12.9158717796786 + ], + [ + 77.644758400330602, + 12.915212128946401 + ], + [ + 77.645442145084999, + 12.9151804427832 + ], + [ + 77.645826208146204, + 12.915184200949099 + ], + [ + 77.645860068100603, + 12.915252697273999 + ], + [ + 77.646576793699893, + 12.915260180447801 + ], + [ + 77.646641462804794, + 12.9152768477429 + ], + [ + 77.647420825522204, + 12.9152795145101 + ], + [ + 77.648096851010195, + 12.9153075155658 + ], + [ + 77.648542201134404, + 12.915323516169099 + ], + [ + 77.648644871672005, + 12.9153221827855 + ], + [ + 77.649004885245503, + 12.9153128491003 + ], + [ + 77.649006868258297, + 12.915194749102399 + ], + [ + 77.648987607565999, + 12.914483103452399 + ], + [ + 77.648978929172998, + 12.9141624422007 + ], + [ + 77.648972012412102, + 12.913043872020999 + ], + [ + 77.648959689866004, + 12.912568336805201 + ], + [ + 77.649028181441295, + 12.911946212624899 + ], + [ + 77.648746388439704, + 12.911960473977 + ], + [ + 77.6485848200427, + 12.911955897825001 + ], + [ + 77.647817479426394, + 12.9119756286458 + ], + [ + 77.647296886973905, + 12.911998832542601 + ], + [ + 77.646392969746103, + 12.9120647612563 + ], + [ + 77.644586537390893, + 12.9120591531056 + ], + [ + 77.641689084667604, + 12.912187314923001 + ], + [ + 77.641720274871105, + 12.911393925423599 + ], + [ + 77.641644871948898, + 12.9102473582959 + ], + [ + 77.641627139728797, + 12.909719288357699 + ], + [ + 77.641678254113799, + 12.9097139906695 + ], + [ + 77.641656578220307, + 12.909274400544801 + ], + [ + 77.641405115598801, + 12.909278158165501 + ], + [ + 77.641162016479598, + 12.9092817912434 + ], + [ + 77.640170630574701, + 12.9093133238208 + ], + [ + 77.639922671512707, + 12.9093193356581 + ], + [ + 77.639325327595699, + 12.909333816119601 + ], + [ + 77.638880426401499, + 12.909338310393499 + ], + [ + 77.638874032117798, + 12.909147025732301 + ], + [ + 77.638886015000907, + 12.909035040079299 + ], + [ + 77.638867631433101, + 12.908815798559999 + ], + [ + 77.638867347717806, + 12.9086494377528 + ], + [ + 77.639038337140605, + 12.908643408613701 + ], + [ + 77.639022664056995, + 12.907962947671299 + ], + [ + 77.639021880856504, + 12.9078359489306 + ], + [ + 77.638760340494201, + 12.907432722143099 + ], + [ + 77.638692451115503, + 12.907232624153 + ], + [ + 77.638686758509095, + 12.9069687958076 + ], + [ + 77.638670818634793, + 12.9067036354172 + ], + [ + 77.639263851361605, + 12.906653187647301 + ], + [ + 77.639216566615204, + 12.9061875613497 + ], + [ + 77.639214172125904, + 12.9060986675105 + ], + [ + 77.639191401623506, + 12.906018584431999 + ], + [ + 77.639017678416295, + 12.905730678976401 + ], + [ + 77.638496879524595, + 12.905956431278 + ], + [ + 77.638107674846694, + 12.9061048219976 + ], + [ + 77.637725131116497, + 12.9062244178856 + ], + [ + 77.637609976678704, + 12.9062689475433 + ], + [ + 77.637170738123004, + 12.9064646598052 + ], + [ + 77.636980500256698, + 12.9065494242002 + ], + [ + 77.636420465079894, + 12.906793548566901 + ], + [ + 77.635929369482099, + 12.907007620136801 + ], + [ + 77.6357297180692, + 12.907101872857799 + ], + [ + 77.6350889694655, + 12.907307095446299 + ], + [ + 77.634976229194706, + 12.9072767241053 + ], + [ + 77.634669137299895, + 12.907193993028599 + ], + [ + 77.634531462011097, + 12.9071544015281 + ], + [ + 77.633855314065599, + 12.9069051987761 + ], + [ + 77.633810915537495, + 12.9050917628152 + ], + [ + 77.633557969521505, + 12.9051104644431 + ], + [ + 77.633543464403303, + 12.905111205062299 + ], + [ + 77.633197955948106, + 12.9051117978267 + ], + [ + 77.6328032744008, + 12.905134465348 + ], + [ + 77.632504596473197, + 12.9051531327185 + ], + [ + 77.632467872417706, + 12.9050128916454 + ], + [ + 77.632502126036798, + 12.904770752519701 + ], + [ + 77.632535523812294, + 12.904534656820699 + ], + [ + 77.632543676580099, + 12.9044812362666 + ], + [ + 77.632547479730903, + 12.9044563125317 + ], + [ + 77.632554098416904, + 12.9044097715657 + ], + [ + 77.6325538551948, + 12.9043865355129 + ], + [ + 77.632553587672902, + 12.904360977932299 + ], + [ + 77.632509263315796, + 12.9043551026306 + ], + [ + 77.632354590817599, + 12.904356436014201 + ], + [ + 77.632368946120806, + 12.904263556951401 + ], + [ + 77.632362591119204, + 12.9040644250046 + ], + [ + 77.632317046096304, + 12.903940439195001 + ], + [ + 77.632302530270096, + 12.9036849744557 + ], + [ + 77.632303154797498, + 12.9036384396549 + ], + [ + 77.632306522761894, + 12.903387495252 + ], + [ + 77.632317222577896, + 12.9032781711082 + ], + [ + 77.632323111835504, + 12.9031619264808 + ], + [ + 77.632343723699506, + 12.9030943305614 + ], + [ + 77.632373882830393, + 12.903033608324099 + ], + [ + 77.632389684102407, + 12.902959090114701 + ], + [ + 77.632385685618303, + 12.902803439700101 + ], + [ + 77.632357784821195, + 12.902627117786301 + ], + [ + 77.632359924352002, + 12.902543034310799 + ], + [ + 77.632338590214303, + 12.902401695648599 + ], + [ + 77.632239919827498, + 12.902228355779901 + ], + [ + 77.632039321453107, + 12.9022794045729 + ], + [ + 77.631891498056405, + 12.9021994276907 + ], + [ + 77.631498688601596, + 12.902837821438 + ], + [ + 77.631138050716402, + 12.9034239266703 + ], + [ + 77.631003809154095, + 12.9036412275172 + ], + [ + 77.630682008845696, + 12.9041621459228 + ], + [ + 77.630311122460597, + 12.904768876696201 + ], + [ + 77.629888530266896, + 12.905460191272899 + ], + [ + 77.629761935187702, + 12.9056672858057 + ], + [ + 77.629595693817294, + 12.9059377897715 + ], + [ + 77.629595118778695, + 12.9059387224621 + ], + [ + 77.629372336028098, + 12.9063012272787 + ], + [ + 77.629200384534499, + 12.9065810196921 + ], + [ + 77.629014300078794, + 12.9068838070538 + ], + [ + 77.628484202980502, + 12.9077302427745 + ], + [ + 77.628291082221196, + 12.908038608824199 + ], + [ + 77.628054832773898, + 12.9084277123892 + ], + [ + 77.6280092463046, + 12.908502793102 + ], + [ + 77.627936751710394, + 12.908622191425501 + ], + [ + 77.627560017473002, + 12.9092426688206 + ], + [ + 77.626949693695394, + 12.9102269881451 + ], + [ + 77.626828689515605, + 12.9104221395955 + ], + [ + 77.626560293748099, + 12.910862083998 + ], + [ + 77.626101658043396, + 12.911613858184101 + ], + [ + 77.625491659345201, + 12.912607271994901 + ], + [ + 77.625253789095595, + 12.912994654408401 + ], + [ + 77.625144495642701, + 12.913172643033 + ], + [ + 77.624592944148702, + 12.914051009062501 + ], + [ + 77.624458199881403, + 12.914265593323501 + ], + [ + 77.624244866545197, + 12.914640684396099 + ], + [ + 77.624023261316907, + 12.915024055233101 + ], + [ + 77.623260407190003, + 12.916388261484901 + ], + [ + 77.622772179933406, + 12.9172456167551 + ], + [ + 77.622770456729995, + 12.9172489640673 + ], + [ + 77.622755292611203, + 12.917278409753401 + ], + [ + 77.622749288900096, + 12.917290069057699 + ], + [ + 77.622742617699103, + 12.9173030248195 + ], + [ + 77.622949950231103, + 12.9173503120762 + ], + [ + 77.623003647451299, + 12.9173625590099 + ], + [ + 77.623777346938397, + 12.9175390182395 + ], + [ + 77.624063616244797, + 12.917574006317601 + ], + [ + 77.624964046725694, + 12.917684059158301 + ], + [ + 77.625298903159404, + 12.9176650416059 + ], + [ + 77.625620040001493, + 12.9176468028302 + ], + [ + 77.625640563869197, + 12.917645637175999 + ], + [ + 77.625655541157201, + 12.917641078985699 + ], + [ + 77.626409384622306, + 12.9174116528915 + ], + [ + 77.627091091339196, + 12.917204182059701 + ], + [ + 77.628288834499699, + 12.916864640079501 + ], + [ + 77.628324720067695, + 12.9168545906301 + ], + [ + 77.628506353584697, + 12.916803727568601 + ], + [ + 77.6285701911535, + 12.9167985687568 + ], + [ + 77.628654630240305, + 12.916792994581501 + ], + [ + 77.628877012960103, + 12.916778314042901 + ], + [ + 77.629205772932394, + 12.916756610775799 + ], + [ + 77.629902377464703, + 12.916710622687599 + ], + [ + 77.630193426550093, + 12.9166907520789 + ], + [ + 77.630207227836394, + 12.916689483789799 + ], + [ + 77.631725326651704, + 12.916574986325401 + ], + [ + 77.632217400354506, + 12.916537871156001 + ], + [ + 77.632281489669495, + 12.9165330368611 + ], + [ + 77.632353200343502, + 12.9165276285873 + ], + [ + 77.632419261819194, + 12.9165226463472 + ], + [ + 77.633638445429398, + 12.916417752623 + ], + [ + 77.633752789418395, + 12.9164077693697 + ], + [ + 77.634179595023397, + 12.916370511207401 + ], + [ + 77.634806339807596, + 12.9162958470422 + ], + [ + 77.635349488603296, + 12.9162311404499 + ], + [ + 77.636292297835197, + 12.916118819887901 + ], + [ + 77.637095272183103, + 12.916044180273101 + ], + [ + 77.637476889060494, + 12.916008706621501 + ], + [ + 77.637478033622003, + 12.9160086002029 + ], + [ + 77.638081500177293, + 12.9159523568641 + ], + [ + 77.638143929184395, + 12.915946538776501 + ], + [ + 77.638170427767903, + 12.9159485295829 + ], + [ + 77.6381704339544, + 12.9159488556511 + ], + [ + 77.638170458908803, + 12.915950179796701 + ], + [ + 77.638195045039595, + 12.9172514483918 + ], + [ + 77.638208641612295, + 12.9175248524064 + ], + [ + 77.638229340381301, + 12.917941080449999 + ], + [ + 77.638231295400701, + 12.9179806137447 + ], + [ + 77.6382622243122, + 12.918605882959501 + ], + [ + 77.6383245833687, + 12.919683133321399 + ], + [ + 77.638327621218494, + 12.919735613254399 + ], + [ + 77.638399615951897, + 12.920123350475199 + ], + [ + 77.638403674808501, + 12.9201452803518 + ], + [ + 77.638448435396796, + 12.920387104988601 + ], + [ + 77.638465441276495, + 12.920448477816601 + ], + [ + 77.638513649431104, + 12.920622460431201 + ], + [ + 77.638581553777996, + 12.920869647681201 + ], + [ + 77.6386052199191, + 12.920955795993301 + ], + [ + 77.638628010188199, + 12.9210375571678 + ], + [ + 77.638636922270805, + 12.9210695308536 + ], + [ + 77.638720916503004, + 12.9212843714414 + ], + [ + 77.638794841764096, + 12.921472209708 + ], + [ + 77.638864632440203, + 12.9216499272914 + ], + [ + 77.638872277066696, + 12.921665661457 + ], + [ + 77.638977006327195, + 12.9218814187969 + ], + [ + 77.639118799837107, + 12.922173592794 + ], + [ + 77.639243522905304, + 12.9224298029437 + ], + [ + 77.639645962446295, + 12.9232591268257 + ], + [ + 77.639924770016506, + 12.9238265827861 + ], + [ + 77.639947910741895, + 12.9238185152574 + ], + [ + 77.639963035093402, + 12.9238132425386 + ], + [ + 77.640127461001896, + 12.923755919579801 + ], + [ + 77.640325084686594, + 12.923687022889499 + ], + [ + 77.640503582255604, + 12.9236163927044 + ], + [ + 77.640861057658299, + 12.9234749446729 + ], + [ + 77.641087031301794, + 12.9233969976554 + ], + [ + 77.641242722045504, + 12.923368319864499 + ], + [ + 77.641374643191995, + 12.923378277333599 + ], + [ + 77.641548372589497, + 12.923422818576 + ], + [ + 77.6418353862137, + 12.923511383293899 + ], + [ + 77.642341634175096, + 12.923647415399699 + ], + [ + 77.642852979323806, + 12.9237754900018 + ], + [ + 77.6430913853291, + 12.923839701761301 + ], + [ + 77.643533616642102, + 12.9239639578192 + ], + [ + 77.643865163043401, + 12.9240723955609 + ], + [ + 77.644014707785601, + 12.924116050740199 + ], + [ + 77.644368336093095, + 12.9242346297036 + ], + [ + 77.644436398084906, + 12.9242574520341 + ], + [ + 77.644543280418304, + 12.9242947636415 + ], + [ + 77.644727044839797, + 12.924362915210301 + ], + [ + 77.6448933880108, + 12.9244165628788 + ], + [ + 77.645166114115995, + 12.9244600980967 + ], + [ + 77.6453659988981, + 12.924473881528501 + ], + [ + 77.645511737384098, + 12.9244746974215 + ], + [ + 77.645581292839907, + 12.924475086787499 + ], + [ + 77.645699763215404, + 12.924476120307901 + ], + [ + 77.645760902233505, + 12.9244766536558 + ], + [ + 77.645809673454906, + 12.9244750060067 + ], + [ + 77.645856420845007, + 12.9244734267205 + ], + [ + 77.646095276828106, + 12.924471004899299 + ], + [ + 77.646366418155793, + 12.924481703524201 + ], + [ + 77.646391267552303, + 12.924482683773199 + ], + [ + 77.646442891155601, + 12.9244872783548 + ], + [ + 77.646687412960503, + 12.924509041035099 + ], + [ + 77.646924815915099, + 12.9245326060156 + ], + [ + 77.647469946828295, + 12.924589185137499 + ], + [ + 77.647906011887301, + 12.924619767696701 + ], + [ + 77.648136988456599, + 12.924634362717001 + ], + [ + 77.648343767846001, + 12.924646944588 + ], + [ + 77.648862232582402, + 12.924685723276401 + ], + [ + 77.649052568029603, + 12.924690944925599 + ], + [ + 77.649053444782098, + 12.924690968978 + ], + [ + 77.649080770234505, + 12.924691718610999 + ], + [ + 77.649192732568693, + 12.924694790100199 + ], + [ + 77.649230924056496, + 12.9246901943255 + ], + [ + 77.6494208459888, + 12.9246673399764 + ], + [ + 77.649489949248505, + 12.9246590243672 + ], + [ + 77.649630781577798, + 12.924640655706501 + ], + [ + 77.649756927098807, + 12.9245942048216 + ], + [ + 77.650077202596606, + 12.9244627500901 + ], + [ + 77.650191577870004, + 12.9244158053842 + ], + [ + 77.6501276663749, + 12.9243552741691 + ], + [ + 77.650096453103302, + 12.9243380696796 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "351", + "group": "Karesandra Ward", + "Corporatio": "West", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "5", + "ward_id": "81", + "ward_name": "81 - Karesandra", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ಕರೆಸಂದ್ರ", + "dig_ward_n": "Karesandra Ward", + "Assembly": "171 - Padmanabanagar", + "Slno": "81" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.573575969927006, + 12.9223470007217 + ], + [ + 77.5735680087557, + 12.921620949652601 + ], + [ + 77.573567178999198, + 12.921545274859101 + ], + [ + 77.573561281096204, + 12.921025848804099 + ], + [ + 77.574402092707999, + 12.920837997205799 + ], + [ + 77.574292481765099, + 12.9202529647467 + ], + [ + 77.574285749822195, + 12.9201964173168 + ], + [ + 77.574270734059894, + 12.9200702937403 + ], + [ + 77.574256666653298, + 12.9199521373714 + ], + [ + 77.574247762041793, + 12.919877344496699 + ], + [ + 77.574232582658695, + 12.919744235236401 + ], + [ + 77.574148259817605, + 12.9194701205074 + ], + [ + 77.574096814837503, + 12.919302883186701 + ], + [ + 77.573913607362996, + 12.918838283088 + ], + [ + 77.573849173234294, + 12.918685836721201 + ], + [ + 77.573649317026707, + 12.918212990155901 + ], + [ + 77.5735613585679, + 12.9179651307964 + ], + [ + 77.573536695726105, + 12.917895633798601 + ], + [ + 77.573512955584704, + 12.9178258503417 + ], + [ + 77.573516092894494, + 12.917700814322901 + ], + [ + 77.573528246734696, + 12.917216368891999 + ], + [ + 77.573534210559103, + 12.9169786555094 + ], + [ + 77.573326550607703, + 12.9168801931699 + ], + [ + 77.573103602116205, + 12.916750260494601 + ], + [ + 77.572893443613694, + 12.9166326240213 + ], + [ + 77.572814439892994, + 12.9166187213655 + ], + [ + 77.572748743713007, + 12.9166114634564 + ], + [ + 77.572556765959703, + 12.916582863386701 + ], + [ + 77.572028388063401, + 12.9165316026391 + ], + [ + 77.571975739805694, + 12.916530821144301 + ], + [ + 77.571934117805398, + 12.9165306637356 + ], + [ + 77.571643249127106, + 12.9165274907128 + ], + [ + 77.5714102461978, + 12.916539949150501 + ], + [ + 77.571237655246094, + 12.9165495538921 + ], + [ + 77.571181801567306, + 12.916547845237 + ], + [ + 77.571102867196501, + 12.916540717251801 + ], + [ + 77.57106419982, + 12.916530934137899 + ], + [ + 77.571024404126007, + 12.9165213229417 + ], + [ + 77.571001300612096, + 12.9165157430241 + ], + [ + 77.570707294209299, + 12.9164169991699 + ], + [ + 77.570648999618498, + 12.9164017626307 + ], + [ + 77.570403676516904, + 12.916335289295899 + ], + [ + 77.570366585731804, + 12.916310809435499 + ], + [ + 77.570292115409302, + 12.916233619625601 + ], + [ + 77.570235164462702, + 12.9161246364859 + ], + [ + 77.570163319522607, + 12.9159772531796 + ], + [ + 77.570127238091104, + 12.9159032342204 + ], + [ + 77.570090524524403, + 12.915827920500799 + ], + [ + 77.569975312145104, + 12.9156506223419 + ], + [ + 77.569934675686397, + 12.9156171427533 + ], + [ + 77.569897608150995, + 12.9155949212028 + ], + [ + 77.569774561091805, + 12.915552088723301 + ], + [ + 77.569723208225795, + 12.9155401715708 + ], + [ + 77.569566824267199, + 12.915502184293899 + ], + [ + 77.569351355135097, + 12.915934574225901 + ], + [ + 77.569283764363206, + 12.9160797918663 + ], + [ + 77.569249404925998, + 12.9161535355517 + ], + [ + 77.569224403102496, + 12.9162073897831 + ], + [ + 77.569111414526802, + 12.9164507743525 + ], + [ + 77.568858810448106, + 12.9169670990011 + ], + [ + 77.5687928420259, + 12.917102136785999 + ], + [ + 77.568669210485993, + 12.917565243958199 + ], + [ + 77.568659785242801, + 12.917656811412099 + ], + [ + 77.568655852716105, + 12.9176938564841 + ], + [ + 77.568651384158599, + 12.9177359462967 + ], + [ + 77.568656923915299, + 12.9178273665283 + ], + [ + 77.568665239342707, + 12.917965061475201 + ], + [ + 77.568714431559997, + 12.918150223768301 + ], + [ + 77.568411852467605, + 12.9182266061158 + ], + [ + 77.568215501149993, + 12.9182770982612 + ], + [ + 77.568081726168799, + 12.9183111643259 + ], + [ + 77.568026609160299, + 12.918325258267799 + ], + [ + 77.567341972000705, + 12.918481015335299 + ], + [ + 77.567118038303605, + 12.918536909785001 + ], + [ + 77.567073375578104, + 12.9185281867566 + ], + [ + 77.566904226908505, + 12.918570755559401 + ], + [ + 77.566733459846802, + 12.918614307773399 + ], + [ + 77.566704366952294, + 12.918621727468301 + ], + [ + 77.566480510509393, + 12.9186788184291 + ], + [ + 77.566065458473801, + 12.918796360043499 + ], + [ + 77.565967215828707, + 12.9185275586155 + ], + [ + 77.565953596888093, + 12.9184904249099 + ], + [ + 77.565864227825799, + 12.9182507580801 + ], + [ + 77.565812746837594, + 12.9181206558951 + ], + [ + 77.5657306872871, + 12.9179132744126 + ], + [ + 77.565659036796205, + 12.917773942802899 + ], + [ + 77.565532266408297, + 12.917479306572501 + ], + [ + 77.565480819983506, + 12.9174018889648 + ], + [ + 77.565374521678905, + 12.917307400060601 + ], + [ + 77.565202190881394, + 12.917117108656401 + ], + [ + 77.565199647925198, + 12.9171145795674 + ], + [ + 77.565168461560802, + 12.9170835603993 + ], + [ + 77.564971277542796, + 12.9168833490506 + ], + [ + 77.564850876766499, + 12.916761435761099 + ], + [ + 77.564716149101301, + 12.917097642480099 + ], + [ + 77.564686405466404, + 12.917171865392699 + ], + [ + 77.564614610368807, + 12.9173566498777 + ], + [ + 77.564497910020194, + 12.917653678188501 + ], + [ + 77.564473625906601, + 12.917704665476601 + ], + [ + 77.5644736259067, + 12.9177046654763 + ], + [ + 77.564473625906899, + 12.917704665475799 + ], + [ + 77.564474278761907, + 12.9177050516429 + ], + [ + 77.5644840126037, + 12.9177154795055 + ], + [ + 77.564802280500103, + 12.9183374423536 + ], + [ + 77.565030176140993, + 12.9189387801989 + ], + [ + 77.565212182309494, + 12.919425764102501 + ], + [ + 77.565825540121907, + 12.919296088657401 + ], + [ + 77.565935978997501, + 12.9195700853078 + ], + [ + 77.566012413559207, + 12.919910385965901 + ], + [ + 77.566175838632404, + 12.920312394167 + ], + [ + 77.566176804260394, + 12.9203154076373 + ], + [ + 77.566345367064898, + 12.920824769699699 + ], + [ + 77.566839895511393, + 12.9207087632784 + ], + [ + 77.566900265182994, + 12.9209943703839 + ], + [ + 77.567061725501603, + 12.9214847256249 + ], + [ + 77.567105457483905, + 12.921614811358801 + ], + [ + 77.567107802783497, + 12.921727015912101 + ], + [ + 77.566599411021997, + 12.9218632516342 + ], + [ + 77.566033471934801, + 12.9220113656822 + ], + [ + 77.565547796854801, + 12.9221134357678 + ], + [ + 77.565681721519297, + 12.922578234995999 + ], + [ + 77.566232548218096, + 12.922419731759801 + ], + [ + 77.5666141084061, + 12.9223662593434 + ], + [ + 77.567052244958703, + 12.922267853185399 + ], + [ + 77.567815535139005, + 12.922129829575701 + ], + [ + 77.568631264102805, + 12.921972643273101 + ], + [ + 77.569222228421907, + 12.9218713891498 + ], + [ + 77.569139619218106, + 12.921462655061401 + ], + [ + 77.569057428363706, + 12.9211810495582 + ], + [ + 77.569576826447303, + 12.921027009384 + ], + [ + 77.569735026627697, + 12.9216115194944 + ], + [ + 77.569972003457806, + 12.922581063421999 + ], + [ + 77.570030965423499, + 12.922822291152301 + ], + [ + 77.570183246237704, + 12.9234453106803 + ], + [ + 77.570217908361499, + 12.9235871222192 + ], + [ + 77.570458967179306, + 12.9245667741069 + ], + [ + 77.570660627675394, + 12.9245439090004 + ], + [ + 77.571433284351301, + 12.924356674664001 + ], + [ + 77.571485627425204, + 12.924756195555799 + ], + [ + 77.571499995901107, + 12.924850473735599 + ], + [ + 77.571528119316397, + 12.925170307683899 + ], + [ + 77.571467453003294, + 12.925553299657601 + ], + [ + 77.571949873516203, + 12.9254711268447 + ], + [ + 77.572617334609703, + 12.925327101086401 + ], + [ + 77.572912074332095, + 12.925314633175001 + ], + [ + 77.573113624033994, + 12.925307378824 + ], + [ + 77.573114756882703, + 12.9252959615868 + ], + [ + 77.573576674962794, + 12.925283996498401 + ], + [ + 77.573579055702496, + 12.925195290312701 + ], + [ + 77.573580776501998, + 12.924982708589299 + ], + [ + 77.573578533393402, + 12.9245261665349 + ], + [ + 77.573570594137394, + 12.924062462969101 + ], + [ + 77.573603659707103, + 12.9236031830872 + ], + [ + 77.573600987947003, + 12.923558377659999 + ], + [ + 77.573588962149103, + 12.9235586258441 + ], + [ + 77.573583581065506, + 12.923033548207 + ], + [ + 77.5735802521138, + 12.9227551691503 + ], + [ + 77.573579557081999, + 12.9226970525028 + ], + [ + 77.573575969927006, + 12.9223470007217 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "352", + "group": "sarakki lake", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "60", + "ward_name": "60 - Kengal Hanumanthiah Ward", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಕೆಂಗಲ್ ಹನುಮಂತಯ್ಯ ವಾರ್ಡ್", + "dig_ward_n": "sarakki lake", + "Assembly": "175 - Bommanahalli", + "Slno": "60" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.588772407998206, + 12.904607505277101 + ], + [ + 77.588787086709402, + 12.904329122355801 + ], + [ + 77.588818796877803, + 12.904052406655801 + ], + [ + 77.588849980363804, + 12.9039025624402 + ], + [ + 77.588878006609406, + 12.903696990563001 + ], + [ + 77.588905493716197, + 12.9035226367549 + ], + [ + 77.588935617611, + 12.903324415939601 + ], + [ + 77.589000887620401, + 12.9030849595948 + ], + [ + 77.589079927618798, + 12.9030664351867 + ], + [ + 77.589133959148796, + 12.902654424157801 + ], + [ + 77.589167241579105, + 12.9022142043318 + ], + [ + 77.589243817046494, + 12.901952296220999 + ], + [ + 77.589597491478898, + 12.901980535643 + ], + [ + 77.589611406232393, + 12.901769664360501 + ], + [ + 77.589697879486096, + 12.900826927026699 + ], + [ + 77.589766327185501, + 12.900442119820401 + ], + [ + 77.589788147278497, + 12.900319448981399 + ], + [ + 77.589815368882, + 12.900166411200701 + ], + [ + 77.589205596099205, + 12.900167399772799 + ], + [ + 77.589016866953301, + 12.9001475564966 + ], + [ + 77.588777031574395, + 12.900132940709801 + ], + [ + 77.588562533746696, + 12.9001161213738 + ], + [ + 77.588505144762493, + 12.900203381112901 + ], + [ + 77.587372079384394, + 12.8999562216255 + ], + [ + 77.587425201222104, + 12.8998380413358 + ], + [ + 77.587543832775395, + 12.899833419327299 + ], + [ + 77.587556928466398, + 12.899646998314999 + ], + [ + 77.587584660517706, + 12.8994320749166 + ], + [ + 77.587344316072205, + 12.899412046212801 + ], + [ + 77.586991117584105, + 12.899410505543299 + ], + [ + 77.587007294614097, + 12.8993076658527 + ], + [ + 77.587037083142107, + 12.8990817290917 + ], + [ + 77.587033094031796, + 12.8988612669598 + ], + [ + 77.586674110841599, + 12.898871267184401 + ], + [ + 77.586656021962895, + 12.898889374077299 + ], + [ + 77.586597476521106, + 12.898831598970199 + ], + [ + 77.586326318685096, + 12.898800015245 + ], + [ + 77.586276381902707, + 12.8988041235549 + ], + [ + 77.586226175166104, + 12.898790771227899 + ], + [ + 77.586098299595704, + 12.8987707425241 + ], + [ + 77.586071276512797, + 12.8987714488827 + ], + [ + 77.585884146532095, + 12.8987892305583 + ], + [ + 77.5858868427038, + 12.8983293407058 + ], + [ + 77.585812505399304, + 12.898312393341101 + ], + [ + 77.585388821280603, + 12.898323948362499 + ], + [ + 77.585284440920404, + 12.898342436396799 + ], + [ + 77.585045637144404, + 12.898337814388199 + ], + [ + 77.5849115988959, + 12.8983640057701 + ], + [ + 77.584658929094203, + 12.8984533646024 + ], + [ + 77.584215986606395, + 12.8985689148166 + ], + [ + 77.584054986641306, + 12.898608972224199 + ], + [ + 77.583743771397707, + 12.898682924361299 + ], + [ + 77.583464139879396, + 12.898732225786 + ], + [ + 77.583070733750503, + 12.898723893220801 + ], + [ + 77.582851723744099, + 12.898671369339899 + ], + [ + 77.582740025203705, + 12.8986397856146 + ], + [ + 77.582687642440007, + 12.898609742559 + ], + [ + 77.582694575452805, + 12.898430254559599 + ], + [ + 77.582648802518705, + 12.8981953479363 + ], + [ + 77.582691005640498, + 12.898118782734 + ], + [ + 77.582716915161001, + 12.8980454723463 + ], + [ + 77.582694252286302, + 12.8979619365037 + ], + [ + 77.582652654215394, + 12.8978787403454 + ], + [ + 77.5825719904349, + 12.897837101901599 + ], + [ + 77.582411233926095, + 12.8978371424306 + ], + [ + 77.582237045942094, + 12.8978390379648 + ], + [ + 77.582122339108494, + 12.897794615346299 + ], + [ + 77.5810691691063, + 12.897844800141 + ], + [ + 77.580845772025498, + 12.8977508193001 + ], + [ + 77.580215638190793, + 12.897370273928001 + ], + [ + 77.579899800938605, + 12.897174608898601 + ], + [ + 77.579851771084094, + 12.897120648835401 + ], + [ + 77.579447025668699, + 12.8968852279476 + ], + [ + 77.5792256644133, + 12.8972454028937 + ], + [ + 77.5779151193735, + 12.8966314338301 + ], + [ + 77.577728871528606, + 12.896544178887799 + ], + [ + 77.577464429477502, + 12.896385992594499 + ], + [ + 77.577199546739905, + 12.896227542174399 + ], + [ + 77.577259580906201, + 12.896132088287301 + ], + [ + 77.576441513427397, + 12.895722303621801 + ], + [ + 77.5755438359962, + 12.8952730249936 + ], + [ + 77.5754811302467, + 12.895241641389401 + ], + [ + 77.575480286753901, + 12.8951592097931 + ], + [ + 77.575150298244793, + 12.8949727345271 + ], + [ + 77.574770309326496, + 12.8948051615429 + ], + [ + 77.574709928030202, + 12.8947785340886 + ], + [ + 77.574665706384707, + 12.8947590320646 + ], + [ + 77.574622445927005, + 12.894739954226401 + ], + [ + 77.574298627768002, + 12.894597152120699 + ], + [ + 77.573599459555098, + 12.8945826944499 + ], + [ + 77.573494010226995, + 12.8945805134274 + ], + [ + 77.573480244467405, + 12.8946338522601 + ], + [ + 77.573524343605499, + 12.894657322774799 + ], + [ + 77.574007597778007, + 12.894974074060601 + ], + [ + 77.574109135134705, + 12.8950149063363 + ], + [ + 77.574534385911704, + 12.89513980113 + ], + [ + 77.574585843698102, + 12.8951679791533 + ], + [ + 77.574607966238204, + 12.8951868847287 + ], + [ + 77.575411586166695, + 12.896113258070899 + ], + [ + 77.575846113598402, + 12.8964976050234 + ], + [ + 77.576047774199395, + 12.896679793759301 + ], + [ + 77.576470584299798, + 12.8972653267056 + ], + [ + 77.576998299251201, + 12.898042558578201 + ], + [ + 77.577009544811105, + 12.898058204814401 + ], + [ + 77.577382850833501, + 12.8987626853735 + ], + [ + 77.577895765332599, + 12.9001566824225 + ], + [ + 77.577941698893895, + 12.9003530770017 + ], + [ + 77.577949313322904, + 12.900571785196 + ], + [ + 77.577949313322904, + 12.900722770809301 + ], + [ + 77.577957511160704, + 12.900815506141701 + ], + [ + 77.577931727032393, + 12.9009149609243 + ], + [ + 77.577931617355603, + 12.9009180084363 + ], + [ + 77.577921445308903, + 12.9012011819348 + ], + [ + 77.577918455928796, + 12.9012844055241 + ], + [ + 77.577890811739806, + 12.901732356265301 + ], + [ + 77.577879457735506, + 12.9019690231843 + ], + [ + 77.577910923182102, + 12.9019927296762 + ], + [ + 77.577903446974602, + 12.902194668256101 + ], + [ + 77.577903423867099, + 12.9021952891535 + ], + [ + 77.577900317749894, + 12.9028280187873 + ], + [ + 77.577814106829507, + 12.9030713378566 + ], + [ + 77.577787104966504, + 12.903125673862201 + ], + [ + 77.577743114374101, + 12.9032029880712 + ], + [ + 77.577663705887701, + 12.9034131618074 + ], + [ + 77.577617787867794, + 12.9035689889318 + ], + [ + 77.577563360515697, + 12.903623210444801 + ], + [ + 77.577360900975904, + 12.903824902707701 + ], + [ + 77.577264905303807, + 12.903849752782699 + ], + [ + 77.577247479200594, + 12.903874980453301 + ], + [ + 77.577235231080806, + 12.9038692447737 + ], + [ + 77.576971752247104, + 12.9043890676222 + ], + [ + 77.576940878492493, + 12.904577967133299 + ], + [ + 77.576921879912007, + 12.9046899563438 + ], + [ + 77.576926354593795, + 12.905070490337099 + ], + [ + 77.5769149537918, + 12.905193697752001 + ], + [ + 77.5769093084361, + 12.905316848415399 + ], + [ + 77.577208811444905, + 12.9053353518847 + ], + [ + 77.577480665153502, + 12.9053518690804 + ], + [ + 77.578046559003099, + 12.9053594341464 + ], + [ + 77.578695928231397, + 12.905368113098399 + ], + [ + 77.578664631886596, + 12.9049540103242 + ], + [ + 77.5786646284608, + 12.9049539649947 + ], + [ + 77.579689033815697, + 12.9047134759288 + ], + [ + 77.579660246016005, + 12.904544363626901 + ], + [ + 77.579667681727699, + 12.904539772992999 + ], + [ + 77.580302458019901, + 12.9043607222749 + ], + [ + 77.580296629913207, + 12.904129271419899 + ], + [ + 77.580544602923794, + 12.9040624525136 + ], + [ + 77.580635400383699, + 12.9040384241345 + ], + [ + 77.580635585916198, + 12.904038375323299 + ], + [ + 77.580782056911602, + 12.9039996139563 + ], + [ + 77.580783977422797, + 12.903999106227401 + ], + [ + 77.580956431079599, + 12.903952334821801 + ], + [ + 77.581013003636798, + 12.9039369912444 + ], + [ + 77.581232280298494, + 12.903878360293801 + ], + [ + 77.581451545234799, + 12.9038185999842 + ], + [ + 77.581713871130901, + 12.903748250386901 + ], + [ + 77.581754630068502, + 12.9037376839982 + ], + [ + 77.581755692420103, + 12.9037851044446 + ], + [ + 77.581757744746497, + 12.9038641908486 + ], + [ + 77.581763310382698, + 12.904078649296 + ], + [ + 77.5817750504592, + 12.9045494547806 + ], + [ + 77.581747953684399, + 12.904545205227899 + ], + [ + 77.581707044426295, + 12.904709359022901 + ], + [ + 77.581699323003505, + 12.904742185233699 + ], + [ + 77.581712508770494, + 12.905465941435001 + ], + [ + 77.581729678865699, + 12.9055685388375 + ], + [ + 77.582001265551, + 12.9055590797759 + ], + [ + 77.5820063410941, + 12.905548865858 + ], + [ + 77.5820201193401, + 12.905545341801099 + ], + [ + 77.582060360958394, + 12.9055404269657 + ], + [ + 77.582145483310796, + 12.905533939362 + ], + [ + 77.582217368172607, + 12.9055275825325 + ], + [ + 77.582286386908706, + 12.905522383312601 + ], + [ + 77.582358329731704, + 12.905521672410099 + ], + [ + 77.582425081072202, + 12.9055198834821 + ], + [ + 77.582505633832398, + 12.9055168288419 + ], + [ + 77.582571798024503, + 12.905513916371699 + ], + [ + 77.582642014201596, + 12.905513222454999 + ], + [ + 77.583007356003193, + 12.9054971892557 + ], + [ + 77.583005572796694, + 12.905475359183299 + ], + [ + 77.582998138620198, + 12.905384349662199 + ], + [ + 77.583060812757296, + 12.9053797034175 + ], + [ + 77.583876986325905, + 12.905319196354601 + ], + [ + 77.583988032354796, + 12.9052805123645 + ], + [ + 77.584223982091103, + 12.905198317446199 + ], + [ + 77.584289338484197, + 12.905172826427 + ], + [ + 77.584420078496294, + 12.905171533535 + ], + [ + 77.584937577091495, + 12.9051664153342 + ], + [ + 77.584952936945101, + 12.9051662634055 + ], + [ + 77.584969654295193, + 12.904664686435201 + ], + [ + 77.584978047372402, + 12.904664718567901 + ], + [ + 77.585298909225997, + 12.90466594678 + ], + [ + 77.585717959787303, + 12.9046674476 + ], + [ + 77.585746558276099, + 12.904666197059599 + ], + [ + 77.585751329443994, + 12.9046659881372 + ], + [ + 77.586374055103605, + 12.9046464750477 + ], + [ + 77.586436069768595, + 12.904644531450099 + ], + [ + 77.586446813236606, + 12.905577230419899 + ], + [ + 77.586451993104006, + 12.9055771791529 + ], + [ + 77.586479654370095, + 12.905576334361101 + ], + [ + 77.587217875061697, + 12.905553787574799 + ], + [ + 77.588048379604601, + 12.9055455640333 + ], + [ + 77.588061624434005, + 12.905266495045501 + ], + [ + 77.588152844670205, + 12.905237359077001 + ], + [ + 77.588118435283704, + 12.905081856055499 + ], + [ + 77.588441458106502, + 12.9050368726386 + ], + [ + 77.588548192065502, + 12.905021806314 + ], + [ + 77.588685169663506, + 12.9050024708009 + ], + [ + 77.588758550505204, + 12.904992112462301 + ], + [ + 77.588755683773201, + 12.904947880961601 + ], + [ + 77.588772407998206, + 12.904607505277101 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "353", + "group": "jaraganahalli", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "62", + "ward_name": "62 - Jaraganahalli", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಜರಗನಹಳ್ಳಿ", + "dig_ward_n": "jaraganahalli", + "Assembly": "175 - Bommanahalli", + "Slno": "62" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.573518683592098, + 12.8943656580345 + ], + [ + 77.573527075706707, + 12.8943450028253 + ], + [ + 77.5734877555563, + 12.8943273206804 + ], + [ + 77.573321405195898, + 12.8942702330553 + ], + [ + 77.573284352518499, + 12.8942491406185 + ], + [ + 77.573250225296505, + 12.894289002434901 + ], + [ + 77.573239440466395, + 12.894303789646701 + ], + [ + 77.572983757201499, + 12.8946292894354 + ], + [ + 77.572965894559502, + 12.894683672325201 + ], + [ + 77.572908840303796, + 12.894789259988301 + ], + [ + 77.572904316924493, + 12.894797209699201 + ], + [ + 77.572457081646107, + 12.8945758868208 + ], + [ + 77.572396388526997, + 12.8945458513086 + ], + [ + 77.571881858830395, + 12.894493316393699 + ], + [ + 77.571881362701404, + 12.894444760655199 + ], + [ + 77.571876051990799, + 12.894262992891299 + ], + [ + 77.571028180338104, + 12.894202440679001 + ], + [ + 77.570287965775407, + 12.894144215633199 + ], + [ + 77.569116959460004, + 12.894026892665799 + ], + [ + 77.569063009737704, + 12.8940214868939 + ], + [ + 77.5690622013243, + 12.894021405889299 + ], + [ + 77.569039796108996, + 12.8940191608416 + ], + [ + 77.568903431153203, + 12.8940054983676 + ], + [ + 77.568891907771402, + 12.8940043440012 + ], + [ + 77.568869255292199, + 12.894009808337399 + ], + [ + 77.568413626702295, + 12.8941197144849 + ], + [ + 77.568453177054195, + 12.8941599815932 + ], + [ + 77.568580495602404, + 12.894284085703999 + ], + [ + 77.568617122298605, + 12.894319864213299 + ], + [ + 77.568695420551293, + 12.894397942127 + ], + [ + 77.568705407813795, + 12.894407901278401 + ], + [ + 77.568805527840794, + 12.894507739425499 + ], + [ + 77.568809015554507, + 12.8945110931269 + ], + [ + 77.569044571099596, + 12.8947590518534 + ], + [ + 77.569054548828603, + 12.8947695540814 + ], + [ + 77.569074439362097, + 12.894800979624801 + ], + [ + 77.569096528266101, + 12.8948222197007 + ], + [ + 77.569118041649702, + 12.894843465427501 + ], + [ + 77.569150041258894, + 12.894877030648299 + ], + [ + 77.569410919299798, + 12.8951726079073 + ], + [ + 77.569429543588996, + 12.8951927526637 + ], + [ + 77.569493577575003, + 12.8952632706053 + ], + [ + 77.569841258952707, + 12.895660762362301 + ], + [ + 77.569964412911204, + 12.895827820540999 + ], + [ + 77.570020366790104, + 12.8958961590643 + ], + [ + 77.570064464241497, + 12.8959307345509 + ], + [ + 77.570083019454898, + 12.8959441040111 + ], + [ + 77.570241453828999, + 12.8961277550356 + ], + [ + 77.5704188256706, + 12.8963268278525 + ], + [ + 77.570484838042702, + 12.896400916325 + ], + [ + 77.570722490592203, + 12.896676392269899 + ], + [ + 77.571050894431593, + 12.8970481131686 + ], + [ + 77.571145836876198, + 12.897155577828199 + ], + [ + 77.571197187163605, + 12.897223961249299 + ], + [ + 77.571290552447394, + 12.8973483973569 + ], + [ + 77.571476213022706, + 12.897605185159501 + ], + [ + 77.571517486350103, + 12.8976533588544 + ], + [ + 77.571550428040496, + 12.8976918083958 + ], + [ + 77.571639323011397, + 12.897795564864801 + ], + [ + 77.571822682193201, + 12.8980523749259 + ], + [ + 77.572186281699402, + 12.898542309491299 + ], + [ + 77.572445477095698, + 12.8988977526285 + ], + [ + 77.572493409577504, + 12.898969557235599 + ], + [ + 77.572644263684694, + 12.8991995826407 + ], + [ + 77.572736308028695, + 12.8993635570025 + ], + [ + 77.572745678202594, + 12.899379275215299 + ], + [ + 77.572768534212102, + 12.8994335835978 + ], + [ + 77.572786382973007, + 12.899475995802201 + ], + [ + 77.572801129246699, + 12.899510859472301 + ], + [ + 77.572842432695296, + 12.899609832781699 + ], + [ + 77.572910295231793, + 12.899829381461 + ], + [ + 77.572962984308305, + 12.899972285983001 + ], + [ + 77.572970087031806, + 12.899991414442299 + ], + [ + 77.572983705400603, + 12.9000285478224 + ], + [ + 77.572990246168004, + 12.900046037528 + ], + [ + 77.573002642160702, + 12.900079180642599 + ], + [ + 77.573127063323497, + 12.900482250941 + ], + [ + 77.573169661053996, + 12.9006268754889 + ], + [ + 77.573239167744106, + 12.9008628560346 + ], + [ + 77.573246938461295, + 12.900891012422999 + ], + [ + 77.573252337736093, + 12.9009124162632 + ], + [ + 77.573306249699897, + 12.901118550237999 + ], + [ + 77.573355455534795, + 12.9013710324271 + ], + [ + 77.573400091868507, + 12.901626947515 + ], + [ + 77.573423040669596, + 12.9018446793777 + ], + [ + 77.573427375926897, + 12.9020433961248 + ], + [ + 77.573424488734901, + 12.902098760980101 + ], + [ + 77.573413582768595, + 12.902270524216499 + ], + [ + 77.573406287650101, + 12.9023451308218 + ], + [ + 77.573390017002097, + 12.9024988778364 + ], + [ + 77.573355433037904, + 12.902662968983501 + ], + [ + 77.573345546949795, + 12.9027093682254 + ], + [ + 77.573322034785903, + 12.9028304364038 + ], + [ + 77.573284655996204, + 12.903058926023 + ], + [ + 77.573243296663094, + 12.903348437843499 + ], + [ + 77.5732377641081, + 12.9033910738112 + ], + [ + 77.573237427791994, + 12.9033936682226 + ], + [ + 77.573212789665305, + 12.903573471871599 + ], + [ + 77.573202847857999, + 12.9036706908397 + ], + [ + 77.5731978664396, + 12.9037464039871 + ], + [ + 77.573197893701504, + 12.9038615938468 + ], + [ + 77.573216409764001, + 12.9040398433122 + ], + [ + 77.573223893923398, + 12.904096235373601 + ], + [ + 77.573279852001704, + 12.904502237783401 + ], + [ + 77.573305020613006, + 12.904655576787601 + ], + [ + 77.573312585713694, + 12.9047198732443 + ], + [ + 77.573315634773607, + 12.9047311896739 + ], + [ + 77.573338743740706, + 12.9048169502683 + ], + [ + 77.573354468310697, + 12.904875306288901 + ], + [ + 77.5733645342128, + 12.905015242204501 + ], + [ + 77.573371528163904, + 12.9051924757526 + ], + [ + 77.573369705507005, + 12.9053250454372 + ], + [ + 77.573368888072693, + 12.905384485255601 + ], + [ + 77.5733542099358, + 12.9056375962936 + ], + [ + 77.573342980703202, + 12.905777741896999 + ], + [ + 77.573325122221505, + 12.9059450563349 + ], + [ + 77.573297056292404, + 12.906183618119 + ], + [ + 77.573293891880098, + 12.9062118821486 + ], + [ + 77.573282281330407, + 12.906314764123699 + ], + [ + 77.573280739566997, + 12.906332848342 + ], + [ + 77.573273957415495, + 12.9064083105304 + ], + [ + 77.573268853902206, + 12.9064650952102 + ], + [ + 77.573264399728899, + 12.906479820164201 + ], + [ + 77.574310032900897, + 12.906455969471599 + ], + [ + 77.575092929852403, + 12.9064557596872 + ], + [ + 77.575486667011603, + 12.9064556527902 + ], + [ + 77.575488295482799, + 12.906455652346899 + ], + [ + 77.575476304291996, + 12.905904672117 + ], + [ + 77.575475247979895, + 12.905856115743999 + ], + [ + 77.575468730138894, + 12.9055569120281 + ], + [ + 77.5754634355105, + 12.9053209377806 + ], + [ + 77.575457851842003, + 12.905056733549101 + ], + [ + 77.575457794023393, + 12.905051087553501 + ], + [ + 77.575466910227405, + 12.9050419632099 + ], + [ + 77.575472043873702, + 12.905037395366101 + ], + [ + 77.575616187974006, + 12.904892552054999 + ], + [ + 77.5757444248475, + 12.9047681931022 + ], + [ + 77.575763232757396, + 12.9047499387298 + ], + [ + 77.575899998549005, + 12.9046153318517 + ], + [ + 77.575972271406002, + 12.9045344383015 + ], + [ + 77.575977393467099, + 12.9045287412526 + ], + [ + 77.5759819399847, + 12.904523049876399 + ], + [ + 77.576124565060098, + 12.904398548983499 + ], + [ + 77.576214508888199, + 12.9043570071461 + ], + [ + 77.576253506991506, + 12.9043430709789 + ], + [ + 77.576373367414703, + 12.904300104880701 + ], + [ + 77.576570691787893, + 12.9041773232066 + ], + [ + 77.5767755645129, + 12.904004777263999 + ], + [ + 77.5768982531647, + 12.9039008002364 + ], + [ + 77.576905677356507, + 12.903895080477101 + ], + [ + 77.577004598106896, + 12.9038308636739 + ], + [ + 77.577235231080806, + 12.9038692447737 + ], + [ + 77.577247479200594, + 12.903874980453301 + ], + [ + 77.577264905303807, + 12.903849752782699 + ], + [ + 77.577360900975904, + 12.903824902707701 + ], + [ + 77.577563360515697, + 12.903623210444801 + ], + [ + 77.577617787867794, + 12.9035689889318 + ], + [ + 77.577663705887701, + 12.9034131618074 + ], + [ + 77.577743114374101, + 12.9032029880712 + ], + [ + 77.577787104966504, + 12.903125673862201 + ], + [ + 77.577814106829507, + 12.9030713378566 + ], + [ + 77.577900317749894, + 12.9028280187873 + ], + [ + 77.577903423867099, + 12.9021952891535 + ], + [ + 77.577903446974602, + 12.902194668256101 + ], + [ + 77.577910923182102, + 12.9019927296762 + ], + [ + 77.577879457735506, + 12.9019690231843 + ], + [ + 77.577890811739806, + 12.901732356265301 + ], + [ + 77.577918455928796, + 12.9012844055241 + ], + [ + 77.577921445308903, + 12.9012011819348 + ], + [ + 77.577931617355603, + 12.9009180084363 + ], + [ + 77.577931727032393, + 12.9009149609243 + ], + [ + 77.577957511160704, + 12.900815506141701 + ], + [ + 77.577949313322904, + 12.900722770809301 + ], + [ + 77.577949313322904, + 12.900571785196 + ], + [ + 77.577941698893895, + 12.9003530770017 + ], + [ + 77.577895765332599, + 12.9001566824225 + ], + [ + 77.577382850833501, + 12.8987626853735 + ], + [ + 77.577009544811105, + 12.898058204814401 + ], + [ + 77.576998299251201, + 12.898042558578201 + ], + [ + 77.576470584299798, + 12.8972653267056 + ], + [ + 77.576047774199395, + 12.896679793759301 + ], + [ + 77.575846113598402, + 12.8964976050234 + ], + [ + 77.575411586166695, + 12.896113258070899 + ], + [ + 77.574607966238204, + 12.8951868847287 + ], + [ + 77.574585843698102, + 12.8951679791533 + ], + [ + 77.574534385911704, + 12.89513980113 + ], + [ + 77.574109135134705, + 12.8950149063363 + ], + [ + 77.574007597778007, + 12.894974074060601 + ], + [ + 77.573524343605499, + 12.894657322774799 + ], + [ + 77.573480244467405, + 12.8946338522601 + ], + [ + 77.573494010226995, + 12.8945805134274 + ], + [ + 77.573484586437104, + 12.8945803185118 + ], + [ + 77.573462118004699, + 12.894578280966201 + ], + [ + 77.573397014793699, + 12.8945721456658 + ], + [ + 77.573412542332306, + 12.8945708635665 + ], + [ + 77.573447510609796, + 12.894556967706199 + ], + [ + 77.573465627128002, + 12.8945274272441 + ], + [ + 77.573471220711994, + 12.894511561789001 + ], + [ + 77.573499549285103, + 12.894420091336499 + ], + [ + 77.573509109291706, + 12.8943892229114 + ], + [ + 77.573518683592098, + 12.8943656580345 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "354", + "group": "devarachikkanahalli", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "45", + "ward_name": "45 - Devarachikkanahalli", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ದೇವರಚಿಕ್ಕನಹಳ್ಳಿ", + "dig_ward_n": "devarachikkanahalli", + "Assembly": "175 - Bommanahalli", + "Slno": "45" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.624584750719507, + 12.8958548825458 + ], + [ + 77.6251709866428, + 12.8957914464245 + ], + [ + 77.625144318970698, + 12.895247425913499 + ], + [ + 77.6248536413447, + 12.8952714268184 + ], + [ + 77.624823034472001, + 12.895118392549501 + ], + [ + 77.624854339694295, + 12.895115576396501 + ], + [ + 77.624835191842493, + 12.8949149837125 + ], + [ + 77.624813894761402, + 12.894683138030601 + ], + [ + 77.625285846915006, + 12.894603390977 + ], + [ + 77.625303773652504, + 12.8946003616435 + ], + [ + 77.625806010585194, + 12.8945340656845 + ], + [ + 77.625790005018303, + 12.894287513126301 + ], + [ + 77.625784762741006, + 12.894065267916799 + ], + [ + 77.625783416391002, + 12.893936205528799 + ], + [ + 77.625800074902799, + 12.893851421407 + ], + [ + 77.625812795996595, + 12.8937068145054 + ], + [ + 77.626025626621399, + 12.893737949290101 + ], + [ + 77.626239562507195, + 12.893778252402999 + ], + [ + 77.6263685799005, + 12.8937617746782 + ], + [ + 77.626708681231406, + 12.8937266746719 + ], + [ + 77.627316210624798, + 12.893720572531199 + ], + [ + 77.627591471210593, + 12.893726388529901 + ], + [ + 77.628317610955406, + 12.8937382351652 + ], + [ + 77.628732666773402, + 12.8937287831037 + ], + [ + 77.629106792608198, + 12.893730303332401 + ], + [ + 77.629560022364302, + 12.893685393775201 + ], + [ + 77.629560022364302, + 12.893685393775201 + ], + [ + 77.629453940087103, + 12.893468056678101 + ], + [ + 77.629416679952001, + 12.893250600256501 + ], + [ + 77.629639796549, + 12.8931941689696 + ], + [ + 77.630302638764206, + 12.8931414297128 + ], + [ + 77.630276004773293, + 12.8927579951394 + ], + [ + 77.630215448377299, + 12.8927647145533 + ], + [ + 77.630179406221103, + 12.892565196281399 + ], + [ + 77.629955994383295, + 12.8922252739802 + ], + [ + 77.629936661119501, + 12.892192719541301 + ], + [ + 77.629900836671894, + 12.892124194272499 + ], + [ + 77.629870885101695, + 12.8920669026474 + ], + [ + 77.629856344510998, + 12.892052368329701 + ], + [ + 77.629821086285304, + 12.892038042300999 + ], + [ + 77.629708054360407, + 12.892016593269499 + ], + [ + 77.629675543852997, + 12.8919898176255 + ], + [ + 77.629473891105306, + 12.8918043859479 + ], + [ + 77.629434238908203, + 12.8917550966503 + ], + [ + 77.629428295321006, + 12.891737088072601 + ], + [ + 77.629399806192794, + 12.8915442692388 + ], + [ + 77.629346651331204, + 12.891304268966801 + ], + [ + 77.629277578781895, + 12.8909729577521 + ], + [ + 77.629249375270405, + 12.8908625727234 + ], + [ + 77.629211973891003, + 12.890836208410001 + ], + [ + 77.629203569805796, + 12.8908302842532 + ], + [ + 77.629083359142399, + 12.890727599512401 + ], + [ + 77.628928428488507, + 12.8905518610177 + ], + [ + 77.628912854971603, + 12.890548629707 + ], + [ + 77.628609228267095, + 12.890132721205999 + ], + [ + 77.628548329077105, + 12.889426409431501 + ], + [ + 77.628549412785603, + 12.889199415060499 + ], + [ + 77.628537773449295, + 12.889187110016399 + ], + [ + 77.628634515037604, + 12.8889162422902 + ], + [ + 77.628634262180398, + 12.8881201087446 + ], + [ + 77.628576372232402, + 12.8880879414574 + ], + [ + 77.628338293822495, + 12.888070689032499 + ], + [ + 77.628288959464797, + 12.8880671139753 + ], + [ + 77.627984825717505, + 12.888082126445401 + ], + [ + 77.627886862749705, + 12.888086962521101 + ], + [ + 77.627550794928396, + 12.8881468011834 + ], + [ + 77.627051878824503, + 12.8882647381627 + ], + [ + 77.626798434200495, + 12.8883553659809 + ], + [ + 77.626642349592004, + 12.8883930161722 + ], + [ + 77.626519996252398, + 12.888422529753299 + ], + [ + 77.6257943418765, + 12.8884006288778 + ], + [ + 77.625574996948401, + 12.8883940084587 + ], + [ + 77.625537233998202, + 12.8883928687534 + ], + [ + 77.625556276205401, + 12.8885631979794 + ], + [ + 77.625503355225703, + 12.8885659875766 + ], + [ + 77.624811976360206, + 12.8886068026502 + ], + [ + 77.624473110145004, + 12.888619236151699 + ], + [ + 77.624308896981105, + 12.888601685616701 + ], + [ + 77.624173986469998, + 12.888579323983 + ], + [ + 77.6240927019373, + 12.888566587924201 + ], + [ + 77.623927443708595, + 12.888559211093099 + ], + [ + 77.623666749110299, + 12.8885618253749 + ], + [ + 77.623658116837802, + 12.888561911936099 + ], + [ + 77.623412561239107, + 12.8885813132861 + ], + [ + 77.623335575640894, + 12.888594507214099 + ], + [ + 77.623327583682197, + 12.8885958611672 + ], + [ + 77.623080483676503, + 12.8886377186644 + ], + [ + 77.623032788968104, + 12.8886449724748 + ], + [ + 77.622772012551394, + 12.8886950162854 + ], + [ + 77.622766890425396, + 12.888695067631099 + ], + [ + 77.622765106724799, + 12.888695085511401 + ], + [ + 77.622686580724803, + 12.888703078712201 + ], + [ + 77.622588796337197, + 12.888713032200799 + ], + [ + 77.622186720745802, + 12.888753958766101 + ], + [ + 77.622022307874602, + 12.8887773870599 + ], + [ + 77.621470652440607, + 12.888855993565 + ], + [ + 77.6214478670815, + 12.8887681382617 + ], + [ + 77.621388736619593, + 12.888631179345801 + ], + [ + 77.621380878691895, + 12.8886129789785 + ], + [ + 77.621376505348593, + 12.8886028495309 + ], + [ + 77.621331970062897, + 12.8886371740324 + ], + [ + 77.621272988840602, + 12.888665996871101 + ], + [ + 77.621107648416896, + 12.8887060487156 + ], + [ + 77.621041056539198, + 12.8887225257028 + ], + [ + 77.620772140176896, + 12.8887647442016 + ], + [ + 77.620608373246, + 12.8887900993857 + ], + [ + 77.620456045498102, + 12.8888085642373 + ], + [ + 77.619903625117004, + 12.888873948181001 + ], + [ + 77.619879113965496, + 12.888841444553799 + ], + [ + 77.619788903174694, + 12.8887452299192 + ], + [ + 77.619704564790496, + 12.888660249226 + ], + [ + 77.619558003349695, + 12.8885137811588 + ], + [ + 77.619500372412602, + 12.888451118549099 + ], + [ + 77.619352655393499, + 12.888263381786 + ], + [ + 77.619316331881507, + 12.8882172170243 + ], + [ + 77.619308658233294, + 12.8882180078561 + ], + [ + 77.619008075244693, + 12.888248762630299 + ], + [ + 77.618712440209407, + 12.888286978612401 + ], + [ + 77.6184475023137, + 12.888314383877599 + ], + [ + 77.618437413009502, + 12.8883154271156 + ], + [ + 77.618292414087406, + 12.8883126952765 + ], + [ + 77.617960714796197, + 12.8883504992142 + ], + [ + 77.617743373268496, + 12.888361166283101 + ], + [ + 77.617652703183296, + 12.8883531659814 + ], + [ + 77.617494030534303, + 12.8883651664339 + ], + [ + 77.617404237680404, + 12.8883995293235 + ], + [ + 77.617200019449299, + 12.8884251686961 + ], + [ + 77.617081499664295, + 12.888430594856199 + ], + [ + 77.617071347931301, + 12.888431835614099 + ], + [ + 77.617043417363604, + 12.888440480689599 + ], + [ + 77.616723334810303, + 12.8884725038141 + ], + [ + 77.616357987702401, + 12.888544506528801 + ], + [ + 77.616007144552498, + 12.888603211996699 + ], + [ + 77.616009308298004, + 12.888770568975501 + ], + [ + 77.615756721084693, + 12.888906952122101 + ], + [ + 77.615694800855096, + 12.8889488504703 + ], + [ + 77.6155883952555, + 12.8890208484647 + ], + [ + 77.615483318294395, + 12.889091947787801 + ], + [ + 77.615222276084396, + 12.8892941482911 + ], + [ + 77.615128923361397, + 12.889366205392999 + ], + [ + 77.615066975952402, + 12.889414021340301 + ], + [ + 77.614981737131203, + 12.889476423702 + ], + [ + 77.614697331331698, + 12.889540458817899 + ], + [ + 77.614386901711796, + 12.8896324807511 + ], + [ + 77.614112498201607, + 12.889721274014001 + ], + [ + 77.614019119154904, + 12.889785790166799 + ], + [ + 77.614001630670899, + 12.8897986526217 + ], + [ + 77.613913692004502, + 12.8898633330185 + ], + [ + 77.613815643486802, + 12.889947496510599 + ], + [ + 77.613623610266302, + 12.8900378568579 + ], + [ + 77.613335334072104, + 12.890178943751 + ], + [ + 77.613388474977796, + 12.890313479724201 + ], + [ + 77.6133932292461, + 12.890321350766699 + ], + [ + 77.613428916576893, + 12.890415864005901 + ], + [ + 77.613433760048906, + 12.8904286912581 + ], + [ + 77.613467809145405, + 12.8905143311333 + ], + [ + 77.613496760864805, + 12.890565165012999 + ], + [ + 77.613532771025902, + 12.8906112811454 + ], + [ + 77.613578229240005, + 12.8906549774605 + ], + [ + 77.614168389340904, + 12.8910506429389 + ], + [ + 77.614355694195396, + 12.891186778501901 + ], + [ + 77.6143591533056, + 12.891192478880701 + ], + [ + 77.614449927885701, + 12.891342073413799 + ], + [ + 77.614731229614193, + 12.891847202156899 + ], + [ + 77.614943041514806, + 12.8922285068205 + ], + [ + 77.615013579731396, + 12.892388240997899 + ], + [ + 77.615023119277595, + 12.8924124459692 + ], + [ + 77.614246350628804, + 12.8925946040934 + ], + [ + 77.614225774571594, + 12.892599428954901 + ], + [ + 77.614232013391103, + 12.8926233498531 + ], + [ + 77.614359734730201, + 12.8933385650797 + ], + [ + 77.614416808000897, + 12.8934513338989 + ], + [ + 77.614491319071206, + 12.893598558506 + ], + [ + 77.614564429565803, + 12.8940192947663 + ], + [ + 77.614581025342503, + 12.894207626835 + ], + [ + 77.614616332406499, + 12.894608319894999 + ], + [ + 77.614646923190307, + 12.8948857456105 + ], + [ + 77.614932846268999, + 12.894849293518799 + ], + [ + 77.6150711400837, + 12.8948234414566 + ], + [ + 77.615484231495699, + 12.894886746735001 + ], + [ + 77.615478076042507, + 12.8954543336078 + ], + [ + 77.616260736889998, + 12.8954788439057 + ], + [ + 77.616555617840504, + 12.8954576535609 + ], + [ + 77.616524382380504, + 12.8951638860808 + ], + [ + 77.616468658541393, + 12.8944890639879 + ], + [ + 77.616987345541403, + 12.894421813932301 + ], + [ + 77.6170430328131, + 12.8944165552897 + ], + [ + 77.6171977047144, + 12.8944059922664 + ], + [ + 77.617195362144699, + 12.8946074069862 + ], + [ + 77.617188962255, + 12.895157236143501 + ], + [ + 77.617179976494398, + 12.895929146446299 + ], + [ + 77.617179552527602, + 12.895965597521 + ], + [ + 77.617755883694997, + 12.896027262278601 + ], + [ + 77.618028703442803, + 12.8976699712676 + ], + [ + 77.618077793963707, + 12.8979825970166 + ], + [ + 77.618080052628599, + 12.8979961962162 + ], + [ + 77.6183386957957, + 12.898006604039301 + ], + [ + 77.618916133045502, + 12.897969795627301 + ], + [ + 77.618962995102393, + 12.8980151604909 + ], + [ + 77.619034240373693, + 12.898068513995799 + ], + [ + 77.619134556170593, + 12.898152138155901 + ], + [ + 77.619153140563498, + 12.8981552756848 + ], + [ + 77.619156194039405, + 12.898157816237999 + ], + [ + 77.619168937322499, + 12.898163452421301 + ], + [ + 77.6192055333252, + 12.898179638334099 + ], + [ + 77.619256045097401, + 12.898197937070799 + ], + [ + 77.619344883672298, + 12.898214677393399 + ], + [ + 77.619483898256405, + 12.898228960897301 + ], + [ + 77.619657118689901, + 12.8982560283363 + ], + [ + 77.619709613381502, + 12.8982555023768 + ], + [ + 77.619710611834705, + 12.8982554318436 + ], + [ + 77.619713479700707, + 12.898285786099599 + ], + [ + 77.6197671959697, + 12.8982700008329 + ], + [ + 77.620193465643297, + 12.898152202098 + ], + [ + 77.620605643901698, + 12.8979764317332 + ], + [ + 77.621124146979795, + 12.8977807300223 + ], + [ + 77.621441294030106, + 12.8976775156919 + ], + [ + 77.621364261153204, + 12.897408423448899 + ], + [ + 77.621356165566894, + 12.8973801435087 + ], + [ + 77.621255375389893, + 12.8969628726121 + ], + [ + 77.6211793912437, + 12.896691852654101 + ], + [ + 77.621051262886297, + 12.896523307698899 + ], + [ + 77.621424180623194, + 12.8964853546081 + ], + [ + 77.621775352064304, + 12.896467894541599 + ], + [ + 77.622154951865596, + 12.896451416163799 + ], + [ + 77.622351315353896, + 12.8964532486981 + ], + [ + 77.622519157890594, + 12.896445229373599 + ], + [ + 77.622628878216105, + 12.896437792878601 + ], + [ + 77.622629038181998, + 12.896437766881901 + ], + [ + 77.6227641136757, + 12.8963996871889 + ], + [ + 77.622915165265795, + 12.896391836028499 + ], + [ + 77.623118604660604, + 12.8963289689053 + ], + [ + 77.623192384514397, + 12.896343435410699 + ], + [ + 77.623290678412502, + 12.8963551215382 + ], + [ + 77.623579623875102, + 12.896440294335999 + ], + [ + 77.623667928434102, + 12.8964850281859 + ], + [ + 77.623758419914907, + 12.896491723538199 + ], + [ + 77.623971798638493, + 12.896514926807299 + ], + [ + 77.624044722938905, + 12.8965712197993 + ], + [ + 77.624117650374401, + 12.896611060124 + ], + [ + 77.624262285902304, + 12.896578534646 + ], + [ + 77.624388226146394, + 12.8965055618308 + ], + [ + 77.624484041938203, + 12.8962309102803 + ], + [ + 77.6244938155791, + 12.8962266844678 + ], + [ + 77.624486960853204, + 12.896100791421 + ], + [ + 77.624534962663006, + 12.896044789309499 + ], + [ + 77.624574964171202, + 12.895996787499699 + ], + [ + 77.624584750719507, + 12.8958548825458 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "355", + "group": "hongasandra", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "38", + "ward_name": "38 - Hongasandra", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಹೊಂಗಸಂದ್ರ", + "dig_ward_n": "hongasandra", + "Assembly": "175 - Bommanahalli", + "Slno": "38" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.624584750719507, + 12.8958548825458 + ], + [ + 77.624574964171202, + 12.895996787499699 + ], + [ + 77.624534962663006, + 12.896044789309499 + ], + [ + 77.624486960853204, + 12.896100791421 + ], + [ + 77.6244938155791, + 12.8962266844678 + ], + [ + 77.624484041938203, + 12.8962309102803 + ], + [ + 77.624388226146394, + 12.8965055618308 + ], + [ + 77.624262285902304, + 12.896578534646 + ], + [ + 77.624117650374401, + 12.896611060124 + ], + [ + 77.624245225590599, + 12.8971343872979 + ], + [ + 77.624375979896399, + 12.897639819081601 + ], + [ + 77.624399364393597, + 12.8977794164883 + ], + [ + 77.624453584185801, + 12.8981888095185 + ], + [ + 77.624512638894601, + 12.898594567388701 + ], + [ + 77.624589820903395, + 12.8985864234337 + ], + [ + 77.624638079711005, + 12.899001754704001 + ], + [ + 77.624413772690602, + 12.899014014458301 + ], + [ + 77.624380924143097, + 12.8990158095342 + ], + [ + 77.624272002258195, + 12.8990202789282 + ], + [ + 77.624362666792607, + 12.8994242984596 + ], + [ + 77.624470942850095, + 12.8999003152389 + ], + [ + 77.624475593220694, + 12.899920508752601 + ], + [ + 77.624559630259697, + 12.900238280748701 + ], + [ + 77.624855641420098, + 12.900142277129101 + ], + [ + 77.625042315124801, + 12.9000489402768 + ], + [ + 77.625292991242702, + 12.899984937863699 + ], + [ + 77.625618336842393, + 12.8997902638573 + ], + [ + 77.625741008134099, + 12.8996062569197 + ], + [ + 77.626010943169902, + 12.8995381012371 + ], + [ + 77.626779485042803, + 12.899375216219999 + ], + [ + 77.626800527495305, + 12.8994552277283 + ], + [ + 77.6269172028573, + 12.8998950649221 + ], + [ + 77.626935473073004, + 12.8999669713317 + ], + [ + 77.627008678850302, + 12.9002550808145 + ], + [ + 77.627095708001605, + 12.9005769005612 + ], + [ + 77.627101186255103, + 12.900597158843601 + ], + [ + 77.627265812488801, + 12.9011954681842 + ], + [ + 77.627292036064404, + 12.9013732816701 + ], + [ + 77.627345013328096, + 12.901663169758001 + ], + [ + 77.627348121699498, + 12.901681624233399 + ], + [ + 77.627398266307694, + 12.901979348985799 + ], + [ + 77.627430423229598, + 12.9022586901987 + ], + [ + 77.627462680152405, + 12.902547592148499 + ], + [ + 77.627460235915606, + 12.902647381943501 + ], + [ + 77.627457556066602, + 12.9027567945925 + ], + [ + 77.627420800894001, + 12.9030870241417 + ], + [ + 77.627380494042299, + 12.903193797621601 + ], + [ + 77.627312206614704, + 12.9033044380294 + ], + [ + 77.627264515266603, + 12.903415663693901 + ], + [ + 77.627266952107803, + 12.903648951134199 + ], + [ + 77.627304491279801, + 12.9039208789836 + ], + [ + 77.627464435763301, + 12.9043166777856 + ], + [ + 77.627482582086401, + 12.9043615821699 + ], + [ + 77.628373107371402, + 12.904113093506201 + ], + [ + 77.628987863155004, + 12.9039720273179 + ], + [ + 77.629061917267606, + 12.903965222279099 + ], + [ + 77.629342948192601, + 12.9039022036226 + ], + [ + 77.629296194806798, + 12.9035945059256 + ], + [ + 77.629989361539998, + 12.9035194567237 + ], + [ + 77.630752451154706, + 12.9034947593381 + ], + [ + 77.631138050716402, + 12.9034239266703 + ], + [ + 77.631498688601596, + 12.902837821438 + ], + [ + 77.631891498056405, + 12.9021994276907 + ], + [ + 77.632039321453107, + 12.9022794045729 + ], + [ + 77.632126451290901, + 12.902113866485299 + ], + [ + 77.632277897353006, + 12.9018472590563 + ], + [ + 77.632475189721603, + 12.9015144566161 + ], + [ + 77.632639959052199, + 12.9012187361336 + ], + [ + 77.632644194893601, + 12.9009722169705 + ], + [ + 77.632350966157404, + 12.9010534904968 + ], + [ + 77.632105532279496, + 12.9010534274716 + ], + [ + 77.631406930696301, + 12.900705641991401 + ], + [ + 77.631810465027002, + 12.9001940374068 + ], + [ + 77.631855913362102, + 12.8999268233681 + ], + [ + 77.631907891912206, + 12.899584966761999 + ], + [ + 77.631897762370201, + 12.8993154447988 + ], + [ + 77.631897229539305, + 12.8991247051139 + ], + [ + 77.631839499535801, + 12.8990564460993 + ], + [ + 77.631809528253996, + 12.8990510346101 + ], + [ + 77.6314595493089, + 12.8991358276286 + ], + [ + 77.631407305018897, + 12.8989164461266 + ], + [ + 77.631764667153305, + 12.8988387502128 + ], + [ + 77.631670094288793, + 12.8985325503401 + ], + [ + 77.631628713642101, + 12.898396701252601 + ], + [ + 77.631626158462694, + 12.8983853737628 + ], + [ + 77.631597175921399, + 12.8981885856315 + ], + [ + 77.631554011878293, + 12.897882107610799 + ], + [ + 77.631512021247801, + 12.897594739419 + ], + [ + 77.631483279929398, + 12.8973626921514 + ], + [ + 77.631448981252404, + 12.8972690993812 + ], + [ + 77.631384116120401, + 12.8970775723863 + ], + [ + 77.6313569720174, + 12.896998249297299 + ], + [ + 77.631190552608103, + 12.896763499405701 + ], + [ + 77.631088201065197, + 12.896584756057599 + ], + [ + 77.631072866335899, + 12.8965571899718 + ], + [ + 77.631036310394805, + 12.896491475699101 + ], + [ + 77.630794633984493, + 12.8963777388855 + ], + [ + 77.630743962894201, + 12.8963553019145 + ], + [ + 77.630727910464302, + 12.8962880568996 + ], + [ + 77.630722718987599, + 12.896115350874 + ], + [ + 77.630722672548899, + 12.8961138155356 + ], + [ + 77.630721186232705, + 12.8960643938094 + ], + [ + 77.630740391799904, + 12.895943730204801 + ], + [ + 77.630855073831995, + 12.8957962901095 + ], + [ + 77.630860576115396, + 12.8957632492671 + ], + [ + 77.6308568580898, + 12.895687275141499 + ], + [ + 77.630832880919002, + 12.8955613092796 + ], + [ + 77.630813383779696, + 12.895514177314499 + ], + [ + 77.630811555025602, + 12.8953392268055 + ], + [ + 77.630799737628195, + 12.8952575974651 + ], + [ + 77.630789965142299, + 12.8952035053244 + ], + [ + 77.630789651362804, + 12.8952017666966 + ], + [ + 77.630779663295698, + 12.8950154239842 + ], + [ + 77.630767554748004, + 12.8948261131964 + ], + [ + 77.630765683401606, + 12.894796853240999 + ], + [ + 77.630766729171896, + 12.8946871283782 + ], + [ + 77.630759847923201, + 12.894588239313499 + ], + [ + 77.630728412857806, + 12.8945878382068 + ], + [ + 77.630691606127002, + 12.894423279162099 + ], + [ + 77.630682573455402, + 12.894378903020399 + ], + [ + 77.630662326939699, + 12.894279439197399 + ], + [ + 77.630593977491202, + 12.8939867913619 + ], + [ + 77.629732040586902, + 12.8942610037553 + ], + [ + 77.629560022364302, + 12.893685393775201 + ], + [ + 77.629106792608198, + 12.893730303332401 + ], + [ + 77.628732666773402, + 12.8937287831037 + ], + [ + 77.628317610955406, + 12.8937382351652 + ], + [ + 77.627591471210593, + 12.893726388529901 + ], + [ + 77.627316210624798, + 12.893720572531199 + ], + [ + 77.626708681231406, + 12.8937266746719 + ], + [ + 77.6263685799005, + 12.8937617746782 + ], + [ + 77.626239562507195, + 12.893778252402999 + ], + [ + 77.626025626621399, + 12.893737949290101 + ], + [ + 77.625812795996595, + 12.8937068145054 + ], + [ + 77.625800074902799, + 12.893851421407 + ], + [ + 77.625783416391002, + 12.893936205528799 + ], + [ + 77.625784762741006, + 12.894065267916799 + ], + [ + 77.625790005018303, + 12.894287513126301 + ], + [ + 77.625806010585194, + 12.8945340656845 + ], + [ + 77.625303773652504, + 12.8946003616435 + ], + [ + 77.625285846915006, + 12.894603390977 + ], + [ + 77.624813894761402, + 12.894683138030601 + ], + [ + 77.624835191842493, + 12.8949149837125 + ], + [ + 77.624854339694295, + 12.895115576396501 + ], + [ + 77.624823034472001, + 12.895118392549501 + ], + [ + 77.6248536413447, + 12.8952714268184 + ], + [ + 77.625144318970698, + 12.895247425913499 + ], + [ + 77.6251709866428, + 12.8957914464245 + ], + [ + 77.624584750719507, + 12.8958548825458 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "357", + "group": "singasandra", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "40", + "ward_name": "40 - Singasandra", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಸಿಂಗಸಂದ್ರ", + "dig_ward_n": "singasandra", + "Assembly": "175 - Bommanahalli", + "Slno": "40" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.653323283115498, + 12.880814610329001 + ], + [ + 77.653569283402206, + 12.8810391911931 + ], + [ + 77.653903539336, + 12.8803904341581 + ], + [ + 77.654905827799695, + 12.880095053833401 + ], + [ + 77.654911610971894, + 12.8801555735739 + ], + [ + 77.654922202613207, + 12.8802322560623 + ], + [ + 77.654935754790003, + 12.8803168123712 + ], + [ + 77.654935752000398, + 12.880316847063 + ], + [ + 77.654930665570404, + 12.880380101977901 + ], + [ + 77.654985121451901, + 12.8805734518579 + ], + [ + 77.655012786604402, + 12.8805696055667 + ], + [ + 77.655049958294697, + 12.880443497000201 + ], + [ + 77.6549982398884, + 12.880277839296699 + ], + [ + 77.654939868835797, + 12.880090874591501 + ], + [ + 77.654911492593598, + 12.8800933847211 + ], + [ + 77.654910206174506, + 12.8800647702977 + ], + [ + 77.654891653438597, + 12.879652090721899 + ], + [ + 77.654870455607195, + 12.8791805754816 + ], + [ + 77.654861188225098, + 12.878974443097601 + ], + [ + 77.654847852355005, + 12.878677805978599 + ], + [ + 77.6548385677863, + 12.8784056081057 + ], + [ + 77.654834859282602, + 12.8783680714909 + ], + [ + 77.654814865711899, + 12.8781440349451 + ], + [ + 77.654814606215794, + 12.878138282014 + ], + [ + 77.654806953105293, + 12.8779681490862 + ], + [ + 77.654793361178307, + 12.8777808313619 + ], + [ + 77.654771775945505, + 12.877425336386199 + ], + [ + 77.654744830991604, + 12.877099841638699 + ], + [ + 77.654740651918701, + 12.877049355928101 + ], + [ + 77.654738804593293, + 12.877027045312801 + ], + [ + 77.654730266301002, + 12.8769266285969 + ], + [ + 77.654725737099, + 12.8769088179044 + ], + [ + 77.654655320591203, + 12.8756820130787 + ], + [ + 77.654619669328397, + 12.8754951104043 + ], + [ + 77.654616640748003, + 12.875486360955 + ], + [ + 77.654408599199797, + 12.8748853450206 + ], + [ + 77.654215107424207, + 12.874093741679999 + ], + [ + 77.654225771243006, + 12.8739637787899 + ], + [ + 77.654146205410697, + 12.873664763526801 + ], + [ + 77.654149246464499, + 12.8736630695497 + ], + [ + 77.654263837608596, + 12.8736054351986 + ], + [ + 77.654444867256998, + 12.873514385031999 + ], + [ + 77.654452569990696, + 12.8735081141579 + ], + [ + 77.654501273940198, + 12.8734860148375 + ], + [ + 77.654744529714193, + 12.873363667280699 + ], + [ + 77.655152232739795, + 12.873158608573 + ], + [ + 77.655266881331102, + 12.873088033142899 + ], + [ + 77.655277943183194, + 12.873081223678801 + ], + [ + 77.655577662162599, + 12.872897013665799 + ], + [ + 77.655577688941193, + 12.8728969972074 + ], + [ + 77.655545659866704, + 12.872851701682 + ], + [ + 77.655545634744698, + 12.872851666154601 + ], + [ + 77.6557231599338, + 12.872711881934199 + ], + [ + 77.655799613458797, + 12.8726289353457 + ], + [ + 77.656057015449207, + 12.8723496710462 + ], + [ + 77.656126785752093, + 12.872269273289699 + ], + [ + 77.656433126412594, + 12.8719162699285 + ], + [ + 77.656499632425806, + 12.871822157801001 + ], + [ + 77.656591854669102, + 12.8717222379983 + ], + [ + 77.656624896580993, + 12.8716902839331 + ], + [ + 77.656677384171999, + 12.8716468401652 + ], + [ + 77.656751801993593, + 12.871554616271 + ], + [ + 77.656842815887501, + 12.8714702444246 + ], + [ + 77.656875650860201, + 12.8714398047281 + ], + [ + 77.656897132935995, + 12.8714198909444 + ], + [ + 77.656975145970506, + 12.8713411824386 + ], + [ + 77.656998338629194, + 12.871319587238901 + ], + [ + 77.657026786861707, + 12.871297529492701 + ], + [ + 77.657044247926805, + 12.8712785851791 + ], + [ + 77.657052987026802, + 12.8712687027919 + ], + [ + 77.657056071778996, + 12.871265830314201 + ], + [ + 77.657073311608599, + 12.8712614564557 + ], + [ + 77.6570738075349, + 12.8712610710947 + ], + [ + 77.657151435759303, + 12.871200992737499 + ], + [ + 77.657314530970993, + 12.8710752166911 + ], + [ + 77.657436187755593, + 12.8709813970704 + ], + [ + 77.657660015741001, + 12.8708087844815 + ], + [ + 77.657660019562798, + 12.870808781534199 + ], + [ + 77.657656838639596, + 12.870769851123701 + ], + [ + 77.657656175872503, + 12.870761744424 + ], + [ + 77.657647993767497, + 12.8707309881089 + ], + [ + 77.657635802133697, + 12.8706851622219 + ], + [ + 77.657598300723606, + 12.870566971575499 + ], + [ + 77.657579689247498, + 12.870438480449099 + ], + [ + 77.657579681380895, + 12.8704384261389 + ], + [ + 77.657628854587699, + 12.870432459041901 + ], + [ + 77.657701524201499, + 12.870423639700601 + ], + [ + 77.657701529244207, + 12.8704236390886 + ], + [ + 77.657697672092695, + 12.8703852837757 + ], + [ + 77.657697636393905, + 12.8703818963929 + ], + [ + 77.657697098231296, + 12.8703605373779 + ], + [ + 77.657695609513794, + 12.870301491890499 + ], + [ + 77.657689724943694, + 12.870068045619 + ], + [ + 77.657687054361304, + 12.870033066011899 + ], + [ + 77.657685808314497, + 12.870024044665501 + ], + [ + 77.657684959207202, + 12.869998080567299 + ], + [ + 77.657684217192696, + 12.869982278617799 + ], + [ + 77.657683142928207, + 12.8697711200747 + ], + [ + 77.657680270077506, + 12.869716945296 + ], + [ + 77.657679563764205, + 12.8697045307288 + ], + [ + 77.657677623307606, + 12.869684223942301 + ], + [ + 77.657672997066896, + 12.869518271359899 + ], + [ + 77.657672819095495, + 12.8695013826423 + ], + [ + 77.657672818587599, + 12.869501334444699 + ], + [ + 77.657673072692205, + 12.869470849184401 + ], + [ + 77.657673072750796, + 12.8694708421603 + ], + [ + 77.657672632503903, + 12.8694290644359 + ], + [ + 77.657671914296102, + 12.869415520740599 + ], + [ + 77.657670208515896, + 12.8693082594465 + ], + [ + 77.657671125204104, + 12.8690803597108 + ], + [ + 77.657671162420002, + 12.8690711076061 + ], + [ + 77.657669635143606, + 12.868980783224901 + ], + [ + 77.657138962965007, + 12.868973743781099 + ], + [ + 77.657151470704605, + 12.869068473837901 + ], + [ + 77.657122969001506, + 12.8695859588584 + ], + [ + 77.656644659547894, + 12.8695783875984 + ], + [ + 77.656644659115202, + 12.869578387591501 + ], + [ + 77.656644502141603, + 12.8690171523081 + ], + [ + 77.656360004378598, + 12.868997451836799 + ], + [ + 77.655956103553905, + 12.8690060634439 + ], + [ + 77.655901506327496, + 12.869011585418701 + ], + [ + 77.655447339591504, + 12.8690575194945 + ], + [ + 77.655482799440904, + 12.8697471319804 + ], + [ + 77.6546886206838, + 12.869706140264199 + ], + [ + 77.653943991097293, + 12.8696677038147 + ], + [ + 77.653740087558205, + 12.869657178302599 + ], + [ + 77.653727180387804, + 12.8696565122377 + ], + [ + 77.653612566202199, + 12.8695760218977 + ], + [ + 77.653611162685806, + 12.869575036047699 + ], + [ + 77.653609351938101, + 12.869573764330401 + ], + [ + 77.653578178705104, + 12.8695518717445 + ], + [ + 77.6535660834612, + 12.8695513609629 + ], + [ + 77.653461341202302, + 12.8695469354303 + ], + [ + 77.653345321707704, + 12.8695420332387 + ], + [ + 77.653190126677302, + 12.869535475188201 + ], + [ + 77.651867388133894, + 12.8698677782277 + ], + [ + 77.651728791062297, + 12.8699025966552 + ], + [ + 77.650714957635302, + 12.870385000848501 + ], + [ + 77.650628855800207, + 12.8704042788438 + ], + [ + 77.650234584201797, + 12.8703788157499 + ], + [ + 77.650084968637302, + 12.870424508372301 + ], + [ + 77.649822533521004, + 12.870431036073899 + ], + [ + 77.649586029238705, + 12.8704369185582 + ], + [ + 77.649582793495497, + 12.8703800106467 + ], + [ + 77.649581426535306, + 12.870355969517499 + ], + [ + 77.649370833612394, + 12.8703944910965 + ], + [ + 77.649146773359604, + 12.870415590132099 + ], + [ + 77.648928654411804, + 12.870369934172601 + ], + [ + 77.648838722283301, + 12.8703818893903 + ], + [ + 77.648679084828302, + 12.870416600609399 + ], + [ + 77.648539191496994, + 12.8704470186252 + ], + [ + 77.6485148743064, + 12.870451219566901 + ], + [ + 77.648369344311504, + 12.8704763617755 + ], + [ + 77.648336603972197, + 12.870482339024599 + ], + [ + 77.648303863630602, + 12.87048831627 + ], + [ + 77.647554590501599, + 12.870599781009799 + ], + [ + 77.646665152799699, + 12.870790578549499 + ], + [ + 77.646365979879505, + 12.8708534514828 + ], + [ + 77.645635087111003, + 12.871016671275999 + ], + [ + 77.645555949591795, + 12.871043443407601 + ], + [ + 77.645062177134704, + 12.8711534504256 + ], + [ + 77.644405134268396, + 12.871279785124401 + ], + [ + 77.643709417807699, + 12.871395215982201 + ], + [ + 77.642859873771897, + 12.871549462658599 + ], + [ + 77.642462298366695, + 12.871613324195099 + ], + [ + 77.642384370178206, + 12.8716457295666 + ], + [ + 77.6419592410044, + 12.8718261822257 + ], + [ + 77.641301367753002, + 12.8719228347698 + ], + [ + 77.641299008610005, + 12.8719231810742 + ], + [ + 77.641047065123303, + 12.871990089229699 + ], + [ + 77.640860264343999, + 12.8720676330649 + ], + [ + 77.640593717808002, + 12.872223899773401 + ], + [ + 77.640242659954893, + 12.872498461406201 + ], + [ + 77.640224908670604, + 12.8725692445354 + ], + [ + 77.640100131500503, + 12.8730667878333 + ], + [ + 77.640040671459502, + 12.8735439359978 + ], + [ + 77.640138236763903, + 12.874342470486599 + ], + [ + 77.640156645900603, + 12.874437990367101 + ], + [ + 77.640156638841702, + 12.8744380045813 + ], + [ + 77.640120433532502, + 12.874510910069301 + ], + [ + 77.639972611199298, + 12.874958458882199 + ], + [ + 77.639824181511202, + 12.8754579599037 + ], + [ + 77.639819309919105, + 12.8754873698401 + ], + [ + 77.6397796079996, + 12.875707976267901 + ], + [ + 77.639743134073896, + 12.875907094168801 + ], + [ + 77.639697129730607, + 12.876020484166499 + ], + [ + 77.639650841572006, + 12.876106774715799 + ], + [ + 77.639609678211698, + 12.8761827355073 + ], + [ + 77.639548084442595, + 12.876296397366801 + ], + [ + 77.639499900327806, + 12.876373903283101 + ], + [ + 77.639448472462405, + 12.8764566274657 + ], + [ + 77.639370726461806, + 12.876581012977899 + ], + [ + 77.639339795044094, + 12.876630500075001 + ], + [ + 77.639245539228995, + 12.876807615103401 + ], + [ + 77.639140562537094, + 12.877005164907599 + ], + [ + 77.639100261162298, + 12.8770586464512 + ], + [ + 77.639061110674504, + 12.877112116392601 + ], + [ + 77.638851641723804, + 12.877388638392 + ], + [ + 77.638672233959298, + 12.8776230746236 + ], + [ + 77.638628515143296, + 12.8776799783575 + ], + [ + 77.638620331851897, + 12.8776896586572 + ], + [ + 77.638402262577799, + 12.877947635181901 + ], + [ + 77.638249498516501, + 12.878143407818101 + ], + [ + 77.638212026784004, + 12.878192343722301 + ], + [ + 77.638064914310107, + 12.8784332299163 + ], + [ + 77.637955671605198, + 12.878608237220201 + ], + [ + 77.637789612266204, + 12.8787984973484 + ], + [ + 77.637699186577393, + 12.8788468374328 + ], + [ + 77.637641948227397, + 12.8788767749332 + ], + [ + 77.637575348931605, + 12.8788921262879 + ], + [ + 77.637358576906493, + 12.879240994130599 + ], + [ + 77.637022367746695, + 12.8797807813998 + ], + [ + 77.636985120061894, + 12.8798511709855 + ], + [ + 77.636967847999799, + 12.8799055496635 + ], + [ + 77.636959184185997, + 12.8799575831077 + ], + [ + 77.636988696498804, + 12.8801779776097 + ], + [ + 77.636998856239401, + 12.8802538467862 + ], + [ + 77.637061571159805, + 12.8807221932702 + ], + [ + 77.637136128868093, + 12.8813572181758 + ], + [ + 77.637141264376396, + 12.8814079833452 + ], + [ + 77.637193865162402, + 12.8819246565696 + ], + [ + 77.637310041693695, + 12.8828517413948 + ], + [ + 77.637389147429403, + 12.883151328621 + ], + [ + 77.637547964396404, + 12.8836750621613 + ], + [ + 77.637555611324004, + 12.8837002794928 + ], + [ + 77.637687581471496, + 12.883711468130199 + ], + [ + 77.637713878151899, + 12.883710982610401 + ], + [ + 77.638230360427897, + 12.883701446180501 + ], + [ + 77.638254237997899, + 12.8836978484229 + ], + [ + 77.638439823255894, + 12.884128320189699 + ], + [ + 77.638482253064197, + 12.8842206329715 + ], + [ + 77.638770414258701, + 12.8848475665914 + ], + [ + 77.638798341017605, + 12.8849083248013 + ], + [ + 77.638928462576104, + 12.885218174361 + ], + [ + 77.6390578435485, + 12.885331052039501 + ], + [ + 77.639089844755006, + 12.8854403894952 + ], + [ + 77.639140513331995, + 12.885595061993399 + ], + [ + 77.639231183417195, + 12.885787069232601 + ], + [ + 77.639287185528602, + 12.8860217447472 + ], + [ + 77.6394734996436, + 12.886456706687801 + ], + [ + 77.639515194125195, + 12.8865497646549 + ], + [ + 77.639577863154599, + 12.8866457682745 + ], + [ + 77.6396279485203, + 12.8867019409309 + ], + [ + 77.639691200761106, + 12.8867137708384 + ], + [ + 77.640262345434195, + 12.886863695188501 + ], + [ + 77.640324094038405, + 12.8868803634029 + ], + [ + 77.640410405055306, + 12.8869036623153 + ], + [ + 77.640610210325605, + 12.886957596956901 + ], + [ + 77.641070124765903, + 12.887095293833999 + ], + [ + 77.641157799297602, + 12.8871215427944 + ], + [ + 77.641247320669606, + 12.8870644257184 + ], + [ + 77.641217133524805, + 12.8870569799605 + ], + [ + 77.641296652556704, + 12.8869252309408 + ], + [ + 77.641664917863693, + 12.886315073470101 + ], + [ + 77.641782183669903, + 12.8861207834215 + ], + [ + 77.6417964194099, + 12.886097196262901 + ], + [ + 77.642292463561603, + 12.885275700604399 + ], + [ + 77.642331156369195, + 12.8852099257841 + ], + [ + 77.642399987837095, + 12.8850929143236 + ], + [ + 77.642403718872799, + 12.8850865717678 + ], + [ + 77.642524246426902, + 12.884881680582801 + ], + [ + 77.642524394785696, + 12.884881427033999 + ], + [ + 77.642557092868998, + 12.8848258426426 + ], + [ + 77.642567211753203, + 12.8848074699491 + ], + [ + 77.642603419449102, + 12.8847417310465 + ], + [ + 77.642631433737506, + 12.8846969977998 + ], + [ + 77.642657631748804, + 12.884708698814901 + ], + [ + 77.642811131432396, + 12.8844603253487 + ], + [ + 77.643270871467806, + 12.883693186821899 + ], + [ + 77.643932108233201, + 12.882625228003 + ], + [ + 77.644545007199, + 12.881594806413601 + ], + [ + 77.645395368785302, + 12.8802088234537 + ], + [ + 77.645708718209207, + 12.879724735108899 + ], + [ + 77.645743782858204, + 12.8797229470578 + ], + [ + 77.6457848463522, + 12.879596325359699 + ], + [ + 77.645815284663598, + 12.8795716375417 + ], + [ + 77.645835839813103, + 12.8794409210753 + ], + [ + 77.646057907779294, + 12.8791504108565 + ], + [ + 77.646433586266696, + 12.878593028556301 + ], + [ + 77.646879207381204, + 12.877921640204701 + ], + [ + 77.647358951650702, + 12.8772054472463 + ], + [ + 77.647372192258302, + 12.877167069536201 + ], + [ + 77.647603583849403, + 12.8769295276969 + ], + [ + 77.647989881149996, + 12.8764890504634 + ], + [ + 77.648189387101993, + 12.8762892389091 + ], + [ + 77.648833710898003, + 12.875643924432699 + ], + [ + 77.648851479185495, + 12.875595940179 + ], + [ + 77.649460638847998, + 12.8749417982173 + ], + [ + 77.649816369264599, + 12.8745739234766 + ], + [ + 77.6500881681511, + 12.8742726753896 + ], + [ + 77.650228450706294, + 12.874278042312501 + ], + [ + 77.650445182449602, + 12.874326642115999 + ], + [ + 77.650649200266599, + 12.874324577458699 + ], + [ + 77.651303161284204, + 12.874249239181699 + ], + [ + 77.651704748715005, + 12.874211111792601 + ], + [ + 77.651844384992103, + 12.874145161681 + ], + [ + 77.652171308192294, + 12.8743741838743 + ], + [ + 77.653040046442996, + 12.8749720321428 + ], + [ + 77.653004471383198, + 12.875064178107801 + ], + [ + 77.653026307387904, + 12.875194464998 + ], + [ + 77.653021172600006, + 12.8753949619263 + ], + [ + 77.653021127704505, + 12.8753967330479 + ], + [ + 77.653020473272804, + 12.8753967577455 + ], + [ + 77.652992771160498, + 12.8754679156397 + ], + [ + 77.653052222016001, + 12.8755610105696 + ], + [ + 77.653051166616194, + 12.875829412793101 + ], + [ + 77.653097393377095, + 12.8762649612217 + ], + [ + 77.653097033570006, + 12.876264982935 + ], + [ + 77.653110346035007, + 12.8764064770054 + ], + [ + 77.653247498058803, + 12.876395677612299 + ], + [ + 77.653388586326798, + 12.8768378785899 + ], + [ + 77.653402617512697, + 12.877245035717801 + ], + [ + 77.653435903848504, + 12.878000018511001 + ], + [ + 77.653350178437293, + 12.8781882833194 + ], + [ + 77.653399728771205, + 12.8784516655481 + ], + [ + 77.653400876210299, + 12.8785606492567 + ], + [ + 77.653805138686806, + 12.8788223480142 + ], + [ + 77.653357782825495, + 12.879651041130201 + ], + [ + 77.653009631940407, + 12.880276035247601 + ], + [ + 77.652991068982402, + 12.8803641848264 + ], + [ + 77.652955180705106, + 12.8804372851304 + ], + [ + 77.653323283115498, + 12.880814610329001 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "358", + "group": "doresanipalya", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "51", + "ward_name": "51 - Doresanipalya", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ದೊರೆಸಾನಿಪಾಳ್ಯ", + "dig_ward_n": "doresanipalya", + "Assembly": "175 - Bommanahalli", + "Slno": "51" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.589788147278497, + 12.900319448981399 + ], + [ + 77.589815368882, + 12.900166411200701 + ], + [ + 77.589697879486096, + 12.900826927026699 + ], + [ + 77.589611406232393, + 12.901769664360501 + ], + [ + 77.589597491478898, + 12.901980535643 + ], + [ + 77.589243817046494, + 12.901952296220999 + ], + [ + 77.589167241579105, + 12.9022142043318 + ], + [ + 77.589133959148796, + 12.902654424157801 + ], + [ + 77.589079927618798, + 12.9030664351867 + ], + [ + 77.589000887620401, + 12.9030849595948 + ], + [ + 77.588935617611, + 12.903324415939601 + ], + [ + 77.588905493716197, + 12.9035226367549 + ], + [ + 77.588878006609406, + 12.903696990563001 + ], + [ + 77.588849980363804, + 12.9039025624402 + ], + [ + 77.588818796877803, + 12.904052406655801 + ], + [ + 77.588787086709402, + 12.904329122355801 + ], + [ + 77.588772407998206, + 12.904607505277101 + ], + [ + 77.588755683773201, + 12.904947880961601 + ], + [ + 77.588758550505204, + 12.904992112462301 + ], + [ + 77.589009322973993, + 12.9049567136082 + ], + [ + 77.5896616866481, + 12.9048655523917 + ], + [ + 77.589757131254103, + 12.904851884461801 + ], + [ + 77.589889557546897, + 12.904832920594 + ], + [ + 77.589889227463402, + 12.904827159910401 + ], + [ + 77.590051215056405, + 12.9047950634284 + ], + [ + 77.590055488669194, + 12.904816498296601 + ], + [ + 77.590233907142405, + 12.9057113746239 + ], + [ + 77.591470315517796, + 12.9056019966783 + ], + [ + 77.591470390705695, + 12.9055534360267 + ], + [ + 77.591461123028694, + 12.905436080714001 + ], + [ + 77.591903036839199, + 12.9053661987359 + ], + [ + 77.591918563165095, + 12.905365389749999 + ], + [ + 77.592572096154896, + 12.905331329605801 + ], + [ + 77.592936038759305, + 12.9052915812447 + ], + [ + 77.593408403336497, + 12.905272213136 + ], + [ + 77.593414604688107, + 12.905538666060099 + ], + [ + 77.593415471344798, + 12.9055668899236 + ], + [ + 77.593426967198297, + 12.905567438877 + ], + [ + 77.5934350512685, + 12.9055678249096 + ], + [ + 77.593562280010403, + 12.905569950142301 + ], + [ + 77.593582042766101, + 12.9054062650173 + ], + [ + 77.593589855579594, + 12.9053415581804 + ], + [ + 77.593623095758304, + 12.905256246652501 + ], + [ + 77.593635238302497, + 12.9052250825788 + ], + [ + 77.593680752312693, + 12.905108269939699 + ], + [ + 77.5937625674119, + 12.9048982883953 + ], + [ + 77.593841157762995, + 12.904043808557899 + ], + [ + 77.593858315883494, + 12.903857254358201 + ], + [ + 77.593899583056199, + 12.903548406328399 + ], + [ + 77.593910080247596, + 12.903469844826899 + ], + [ + 77.593924040820497, + 12.903365357305599 + ], + [ + 77.593935645225997, + 12.9032333274485 + ], + [ + 77.593944687935902, + 12.9031304462634 + ], + [ + 77.593974010033605, + 12.902796824347501 + ], + [ + 77.593992192366599, + 12.9026622574047 + ], + [ + 77.594029277882598, + 12.902665435551 + ], + [ + 77.594039432463603, + 12.902666305775099 + ], + [ + 77.594406963594693, + 12.9026400720512 + ], + [ + 77.594860598006207, + 12.9026468619785 + ], + [ + 77.594910821232105, + 12.9026416042603 + ], + [ + 77.594914185829793, + 12.9025992915212 + ], + [ + 77.594955859397103, + 12.902222740412 + ], + [ + 77.595003410703796, + 12.9018129205778 + ], + [ + 77.595010712792998, + 12.901705608186401 + ], + [ + 77.595430307461896, + 12.901642956570299 + ], + [ + 77.595773204069701, + 12.901577880426 + ], + [ + 77.595977151264904, + 12.9015070131997 + ], + [ + 77.596441584435894, + 12.901383718034401 + ], + [ + 77.596695024572398, + 12.9013174692449 + ], + [ + 77.596831373825097, + 12.9012658568159 + ], + [ + 77.5967335413104, + 12.901037067391799 + ], + [ + 77.596621327166503, + 12.900758456147299 + ], + [ + 77.596492308423294, + 12.900475285928801 + ], + [ + 77.596524373515507, + 12.900394890401399 + ], + [ + 77.596533471235404, + 12.900332053623201 + ], + [ + 77.596541313681001, + 12.900265643570799 + ], + [ + 77.596507131592404, + 12.9000227651395 + ], + [ + 77.596489248273699, + 12.8999072296159 + ], + [ + 77.5964341782215, + 12.899600139007999 + ], + [ + 77.596392668178495, + 12.899396639517599 + ], + [ + 77.5963618547881, + 12.8990738692526 + ], + [ + 77.596445050942293, + 12.899066165904999 + ], + [ + 77.596562141825999, + 12.8990600032269 + ], + [ + 77.596623768606904, + 12.8989860510898 + ], + [ + 77.596745481499198, + 12.898964481716501 + ], + [ + 77.596765061410494, + 12.898949228760401 + ], + [ + 77.597088499703005, + 12.8989214612198 + ], + [ + 77.597313027593103, + 12.898898110122801 + ], + [ + 77.597722089042705, + 12.8988146323466 + ], + [ + 77.597699902086802, + 12.898709249377401 + ], + [ + 77.597435347750704, + 12.8987760846182 + ], + [ + 77.597401645135506, + 12.898514522919401 + ], + [ + 77.597444455664501, + 12.8984904424566 + ], + [ + 77.597429317852104, + 12.898358799755799 + ], + [ + 77.596983794557005, + 12.8984139149788 + ], + [ + 77.596948815698994, + 12.897861745041 + ], + [ + 77.596777484853504, + 12.897114929120001 + ], + [ + 77.597103814521503, + 12.897046560611599 + ], + [ + 77.597427568173799, + 12.896937817263799 + ], + [ + 77.598590578954997, + 12.8964842413559 + ], + [ + 77.599267557507801, + 12.8962297933139 + ], + [ + 77.599545333062906, + 12.8962003597796 + ], + [ + 77.599557323937901, + 12.896360757575399 + ], + [ + 77.599613637546298, + 12.8964767837801 + ], + [ + 77.5997378607141, + 12.896497514296099 + ], + [ + 77.599837170648399, + 12.8964407684393 + ], + [ + 77.599466851698594, + 12.8952253319611 + ], + [ + 77.599246790955902, + 12.894368665377201 + ], + [ + 77.599115462255995, + 12.8937401185743 + ], + [ + 77.599089002877804, + 12.8936134822002 + ], + [ + 77.598967051928497, + 12.8930681523135 + ], + [ + 77.598901701881402, + 12.892780134866401 + ], + [ + 77.598819529759496, + 12.8924179714655 + ], + [ + 77.598580045098203, + 12.8917435513561 + ], + [ + 77.598555160095302, + 12.891673470559899 + ], + [ + 77.598438055665397, + 12.891343687900299 + ], + [ + 77.598123882820502, + 12.8905796190496 + ], + [ + 77.598157171404793, + 12.8905741777105 + ], + [ + 77.597988225555497, + 12.8901443452244 + ], + [ + 77.597871865288198, + 12.889887764631 + ], + [ + 77.597814565867395, + 12.889761416072499 + ], + [ + 77.597699007937294, + 12.889506603522401 + ], + [ + 77.597533254128194, + 12.889121969328601 + ], + [ + 77.597396440345904, + 12.8887083626053 + ], + [ + 77.597230895321402, + 12.8882417977354 + ], + [ + 77.597135455995399, + 12.8879728133232 + ], + [ + 77.597128926264006, + 12.8879300678491 + ], + [ + 77.597110372053095, + 12.8878086068686 + ], + [ + 77.597081232701797, + 12.887629141844499 + ], + [ + 77.597020068345202, + 12.8874219582734 + ], + [ + 77.597012560555797, + 12.8873965251311 + ], + [ + 77.596945285833499, + 12.8871103504702 + ], + [ + 77.5969455155075, + 12.8871089578004 + ], + [ + 77.596954458790506, + 12.887054803726899 + ], + [ + 77.596829525302994, + 12.8864259508952 + ], + [ + 77.596769427849694, + 12.886123446601299 + ], + [ + 77.596704947824705, + 12.885730156820401 + ], + [ + 77.5966362550638, + 12.885306312045101 + ], + [ + 77.596571420926907, + 12.8848786046642 + ], + [ + 77.596530887244697, + 12.884632172189599 + ], + [ + 77.5964778432391, + 12.884309673256199 + ], + [ + 77.596485244404505, + 12.884271354591201 + ], + [ + 77.596403676584401, + 12.883732899756801 + ], + [ + 77.596294801858093, + 12.8830034885183 + ], + [ + 77.5961571907973, + 12.8822516577799 + ], + [ + 77.596154351218601, + 12.882236144091999 + ], + [ + 77.596103420068005, + 12.8820224737762 + ], + [ + 77.596023812979098, + 12.881619601546401 + ], + [ + 77.595955194678695, + 12.881257118672799 + ], + [ + 77.5959121202131, + 12.8812384227215 + ], + [ + 77.595882981589995, + 12.8808696416339 + ], + [ + 77.595790806449898, + 12.880247151283299 + ], + [ + 77.595692036192403, + 12.879566303501701 + ], + [ + 77.595677506694997, + 12.879466151383401 + ], + [ + 77.595498984152897, + 12.8785974496077 + ], + [ + 77.595408918733099, + 12.8781795522971 + ], + [ + 77.595255600382899, + 12.8774869135357 + ], + [ + 77.595230165644793, + 12.877288287924699 + ], + [ + 77.595118375993195, + 12.8765349833175 + ], + [ + 77.5951097357447, + 12.876476760963699 + ], + [ + 77.5949462187682, + 12.875503116567801 + ], + [ + 77.594826651848095, + 12.874775242642301 + ], + [ + 77.594746087420006, + 12.874522663012799 + ], + [ + 77.594733750773798, + 12.8744826544375 + ], + [ + 77.594494036263399, + 12.8737052674393 + ], + [ + 77.594276914114005, + 12.873142134245199 + ], + [ + 77.594276896902201, + 12.873142089604301 + ], + [ + 77.594273210184198, + 12.8731427704422 + ], + [ + 77.594259096667898, + 12.8731453775183 + ], + [ + 77.594256220272698, + 12.8731454060063 + ], + [ + 77.594237471686696, + 12.873084062904301 + ], + [ + 77.594202851363306, + 12.8729707864383 + ], + [ + 77.594202711311596, + 12.8729703306846 + ], + [ + 77.594191235027097, + 12.8729646993663 + ], + [ + 77.593957939850696, + 12.8728502238183 + ], + [ + 77.593669214875504, + 12.8728124279894 + ], + [ + 77.592954031980398, + 12.872719000628701 + ], + [ + 77.592658165176204, + 12.872098554773199 + ], + [ + 77.591848500033507, + 12.871547562359099 + ], + [ + 77.590358411599397, + 12.870532375887301 + ], + [ + 77.589527708493193, + 12.8701735641126 + ], + [ + 77.588987872795698, + 12.869893185143599 + ], + [ + 77.588889426929796, + 12.8698429209201 + ], + [ + 77.588878788868598, + 12.870367441694601 + ], + [ + 77.588872880238796, + 12.870464620280201 + ], + [ + 77.588847690780895, + 12.871150357106499 + ], + [ + 77.588807667978301, + 12.872016929249501 + ], + [ + 77.588805980548102, + 12.8720767990686 + ], + [ + 77.588805532606798, + 12.872089225845899 + ], + [ + 77.588795673726594, + 12.8723061497563 + ], + [ + 77.588793430822903, + 12.8724800848267 + ], + [ + 77.588793431587405, + 12.8724801016544 + ], + [ + 77.588794917955298, + 12.872512819962299 + ], + [ + 77.588798648979505, + 12.8725398863991 + ], + [ + 77.588804083211599, + 12.8725646773942 + ], + [ + 77.588810622000395, + 12.872584940254701 + ], + [ + 77.588822455905202, + 12.8726164438292 + ], + [ + 77.5888330809168, + 12.8726423128274 + ], + [ + 77.588834266626506, + 12.872645689022599 + ], + [ + 77.588834251732095, + 12.872645692697599 + ], + [ + 77.588662620062095, + 12.872688040308599 + ], + [ + 77.587967358707402, + 12.872909478175 + ], + [ + 77.587558511827197, + 12.8730558096885 + ], + [ + 77.587295176284101, + 12.873192798263601 + ], + [ + 77.5870737722462, + 12.8733779326353 + ], + [ + 77.586784582351399, + 12.873631494689 + ], + [ + 77.586083135716294, + 12.874035937056 + ], + [ + 77.586083150458407, + 12.874035975618201 + ], + [ + 77.586243995469005, + 12.874456709404001 + ], + [ + 77.588635667848393, + 12.876076642843501 + ], + [ + 77.588694969986605, + 12.8761168089144 + ], + [ + 77.588771451015504, + 12.876168610417199 + ], + [ + 77.589174246026403, + 12.8764413078675 + ], + [ + 77.589593045767202, + 12.8769272846536 + ], + [ + 77.589592002331301, + 12.877193388716501 + ], + [ + 77.589591830117499, + 12.8772372164337 + ], + [ + 77.589591738071107, + 12.877260703245099 + ], + [ + 77.589591148896503, + 12.8774111178551 + ], + [ + 77.589598282276597, + 12.8775676519037 + ], + [ + 77.589601952398098, + 12.877648187352399 + ], + [ + 77.589605668711101, + 12.8777297224546 + ], + [ + 77.589607519925906, + 12.8777703518473 + ], + [ + 77.589610418343, + 12.877833943627699 + ], + [ + 77.589595479170299, + 12.8778363499772 + ], + [ + 77.589602304886895, + 12.8778503644373 + ], + [ + 77.589615381559994, + 12.8778772137236 + ], + [ + 77.589658976427103, + 12.8779667212149 + ], + [ + 77.589855919633493, + 12.8784255291457 + ], + [ + 77.590192327498201, + 12.8791822224473 + ], + [ + 77.590230625316494, + 12.8793806008893 + ], + [ + 77.590380765973507, + 12.880157205110701 + ], + [ + 77.590552194229602, + 12.8809889342186 + ], + [ + 77.590572264812707, + 12.8810937607466 + ], + [ + 77.590611877008797, + 12.8813079362314 + ], + [ + 77.590612649855402, + 12.8813271267258 + ], + [ + 77.590616368170998, + 12.8814648648329 + ], + [ + 77.590616646805302, + 12.881491965335099 + ], + [ + 77.590615704813601, + 12.8815123021018 + ], + [ + 77.590607187055795, + 12.8816354803648 + ], + [ + 77.590588106527505, + 12.881972944860401 + ], + [ + 77.590559462292802, + 12.8824795416106 + ], + [ + 77.590559891879906, + 12.882521321550101 + ], + [ + 77.590560383329503, + 12.882569117800699 + ], + [ + 77.590560704616493, + 12.8826003646784 + ], + [ + 77.5905691612341, + 12.882695142390901 + ], + [ + 77.590677169107096, + 12.882956071582401 + ], + [ + 77.590683941228903, + 12.882971127200801 + ], + [ + 77.590727235075903, + 12.8830673769827 + ], + [ + 77.590978083123403, + 12.8836182520688 + ], + [ + 77.591010466649095, + 12.883689077529301 + ], + [ + 77.591042344390004, + 12.883766683801101 + ], + [ + 77.591081348690395, + 12.883865676252301 + ], + [ + 77.591196577271404, + 12.8841570246902 + ], + [ + 77.591303754602905, + 12.8845049178243 + ], + [ + 77.591381618425402, + 12.8848554527584 + ], + [ + 77.591412384384299, + 12.884993959172499 + ], + [ + 77.591529548829897, + 12.8854174163856 + ], + [ + 77.591622893777796, + 12.8858345639202 + ], + [ + 77.591627885176706, + 12.88585687014 + ], + [ + 77.591681833775496, + 12.886233522513701 + ], + [ + 77.591682763296703, + 12.8863238574114 + ], + [ + 77.591717103101104, + 12.8869762534359 + ], + [ + 77.591743800993001, + 12.8872775124286 + ], + [ + 77.591745698940898, + 12.8872978255686 + ], + [ + 77.591749078858101, + 12.887334002908 + ], + [ + 77.591758030665403, + 12.887429827146001 + ], + [ + 77.591765586818099, + 12.8876047939809 + ], + [ + 77.591779141496104, + 12.8879152175291 + ], + [ + 77.591796340787297, + 12.888300138833401 + ], + [ + 77.591760130841095, + 12.888305014712 + ], + [ + 77.591681967572796, + 12.888315952644501 + ], + [ + 77.591607821165795, + 12.8883257214674 + ], + [ + 77.591438066049506, + 12.888384997166799 + ], + [ + 77.591377859398904, + 12.8884070501829 + ], + [ + 77.5909671494761, + 12.888542116510701 + ], + [ + 77.590708778597502, + 12.888603398594199 + ], + [ + 77.589592159603498, + 12.8887964286245 + ], + [ + 77.589593492808802, + 12.8888041931027 + ], + [ + 77.589747080803605, + 12.889305908228099 + ], + [ + 77.589793571418596, + 12.8893964568203 + ], + [ + 77.590229604920694, + 12.889452773251399 + ], + [ + 77.590262754400399, + 12.889550077665699 + ], + [ + 77.590337978653395, + 12.889747023635 + ], + [ + 77.590531028824799, + 12.8901383815216 + ], + [ + 77.590762079403405, + 12.890058574450499 + ], + [ + 77.590787327287799, + 12.8900482420219 + ], + [ + 77.591428245809297, + 12.889898026743399 + ], + [ + 77.591590016109095, + 12.889868754022499 + ], + [ + 77.591748705070003, + 12.8903794859692 + ], + [ + 77.592064395658596, + 12.891440544792699 + ], + [ + 77.592099822532802, + 12.8914667250948 + ], + [ + 77.592291156127402, + 12.8914272668089 + ], + [ + 77.592346897835796, + 12.8919513440153 + ], + [ + 77.592356689630506, + 12.892271870684 + ], + [ + 77.592367385913505, + 12.892474312873899 + ], + [ + 77.592373385622594, + 12.8927851511579 + ], + [ + 77.592354427116604, + 12.893055684917099 + ], + [ + 77.592353975681604, + 12.893513587688799 + ], + [ + 77.592356409171302, + 12.8938214659052 + ], + [ + 77.592357984529698, + 12.8939744325269 + ], + [ + 77.5923558198226, + 12.8943320518622 + ], + [ + 77.592355689556697, + 12.8943346044684 + ], + [ + 77.592329873648396, + 12.8948409765615 + ], + [ + 77.592317353864004, + 12.895328733377401 + ], + [ + 77.5923244339549, + 12.895375592393799 + ], + [ + 77.592325720690695, + 12.895384107210401 + ], + [ + 77.592305364327302, + 12.8954894847807 + ], + [ + 77.592303320986005, + 12.8955292003875 + ], + [ + 77.592292370729496, + 12.8957420347504 + ], + [ + 77.592247226886798, + 12.8963600357818 + ], + [ + 77.592239105999894, + 12.897076532718099 + ], + [ + 77.592208159602905, + 12.897249184964 + ], + [ + 77.592082788057695, + 12.8972842210298 + ], + [ + 77.592185260699296, + 12.8977915058697 + ], + [ + 77.592085900956107, + 12.8978136144489 + ], + [ + 77.5919838091163, + 12.8978317894071 + ], + [ + 77.591828761628605, + 12.897869632491201 + ], + [ + 77.591701294322405, + 12.8979008858096 + ], + [ + 77.591705387576098, + 12.8980170510606 + ], + [ + 77.591680959689299, + 12.8981119142592 + ], + [ + 77.591554575786105, + 12.8981294332426 + ], + [ + 77.591339741804902, + 12.8993060857022 + ], + [ + 77.591331183629407, + 12.8994902351911 + ], + [ + 77.591320398942699, + 12.899564187328201 + ], + [ + 77.591304992247501, + 12.8996889815595 + ], + [ + 77.591306532917002, + 12.8997675557052 + ], + [ + 77.591330506786704, + 12.899820588811901 + ], + [ + 77.591381850705602, + 12.8998841026724 + ], + [ + 77.591307052062106, + 12.9000696753945 + ], + [ + 77.591107677963194, + 12.9000505279369 + ], + [ + 77.5910417817731, + 12.900055141713599 + ], + [ + 77.590656734761794, + 12.900040474489 + ], + [ + 77.590623691570897, + 12.9002295940058 + ], + [ + 77.590572448057401, + 12.9004809444251 + ], + [ + 77.589766327185501, + 12.900442119820401 + ], + [ + 77.589788147278497, + 12.900319448981399 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "359", + "group": "iblur", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "31", + "ward_name": "31 - Iblur", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಇಬ್ಲೂರ್", + "dig_ward_n": "iblur", + "Assembly": "175 - Bommanahalli", + "Slno": "31" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.649294229487893, + 12.9066505225073 + ], + [ + 77.651434236289901, + 12.906577158582801 + ], + [ + 77.651625170131297, + 12.907342859817501 + ], + [ + 77.651737677819398, + 12.907906903502701 + ], + [ + 77.6518676740301, + 12.908520131319101 + ], + [ + 77.651872297827197, + 12.908541942160801 + ], + [ + 77.651897302856497, + 12.9088912618554 + ], + [ + 77.651917635834394, + 12.909375082028999 + ], + [ + 77.651909845617297, + 12.9100802849531 + ], + [ + 77.651899790723306, + 12.9113613065667 + ], + [ + 77.651896851794902, + 12.9117356657208 + ], + [ + 77.651895520334406, + 12.911987245490399 + ], + [ + 77.651890746838404, + 12.9128890246848 + ], + [ + 77.651887922695806, + 12.9129813158138 + ], + [ + 77.651875414215695, + 12.913390017294599 + ], + [ + 77.651855009159306, + 12.914056742283 + ], + [ + 77.651854983914703, + 12.914057579087901 + ], + [ + 77.651843183147193, + 12.9144431707224 + ], + [ + 77.651816507934697, + 12.915187059148799 + ], + [ + 77.651791803213598, + 12.9158759990252 + ], + [ + 77.651789057321693, + 12.915952565676299 + ], + [ + 77.651763797736507, + 12.917366015436899 + ], + [ + 77.6517622484171, + 12.917452720535501 + ], + [ + 77.651743880400204, + 12.9180505342049 + ], + [ + 77.651725975130205, + 12.9186332753593 + ], + [ + 77.651715044454207, + 12.9190145633569 + ], + [ + 77.6516955691189, + 12.919693955334701 + ], + [ + 77.651685639379195, + 12.9197708271248 + ], + [ + 77.651646546043395, + 12.920617561817 + ], + [ + 77.651647547207403, + 12.9206549054274 + ], + [ + 77.651608122301994, + 12.9211199712895 + ], + [ + 77.651658012467095, + 12.9211820797351 + ], + [ + 77.651817171614795, + 12.921170848164699 + ], + [ + 77.652325310533399, + 12.9211047058948 + ], + [ + 77.653599923204297, + 12.920961887696199 + ], + [ + 77.653599921852006, + 12.9209609367288 + ], + [ + 77.653599565125106, + 12.9207100689688 + ], + [ + 77.653599269834302, + 12.920627636844999 + ], + [ + 77.653611797487002, + 12.9204513467584 + ], + [ + 77.653956020354698, + 12.920452364287399 + ], + [ + 77.6540181432742, + 12.920448344936499 + ], + [ + 77.654088994792104, + 12.9204532708071 + ], + [ + 77.654138586991195, + 12.9204618005594 + ], + [ + 77.654185313405605, + 12.9204714886882 + ], + [ + 77.654381129465804, + 12.920481919315201 + ], + [ + 77.654419031808004, + 12.9204736291658 + ], + [ + 77.654663986561303, + 12.9204496824721 + ], + [ + 77.660354103781103, + 12.916344547603201 + ], + [ + 77.660532610300706, + 12.916553006385501 + ], + [ + 77.661995280461099, + 12.9182610829394 + ], + [ + 77.662216166411994, + 12.918790703308201 + ], + [ + 77.662789656041895, + 12.9211980420017 + ], + [ + 77.662694979033603, + 12.9212261095972 + ], + [ + 77.662407458685493, + 12.9213069600682 + ], + [ + 77.662037275469501, + 12.9214089796585 + ], + [ + 77.661593422418207, + 12.9215117499994 + ], + [ + 77.661556671458897, + 12.9215200294383 + ], + [ + 77.661160480246195, + 12.9216121499247 + ], + [ + 77.661327754799004, + 12.922351227059 + ], + [ + 77.661601016122304, + 12.923042924116899 + ], + [ + 77.661828576584398, + 12.9238525847187 + ], + [ + 77.662471959896294, + 12.9261417109795 + ], + [ + 77.662655482850397, + 12.9265187878788 + ], + [ + 77.662680822449104, + 12.926570851968 + ], + [ + 77.662757573815895, + 12.926728549913999 + ], + [ + 77.661947358668698, + 12.926522989504001 + ], + [ + 77.662066199204801, + 12.927171626267 + ], + [ + 77.662208806629394, + 12.9279360890974 + ], + [ + 77.662631202132303, + 12.9285371543798 + ], + [ + 77.663024189563203, + 12.928332447440701 + ], + [ + 77.663285577501696, + 12.928229276851001 + ], + [ + 77.663427165022597, + 12.928173627922099 + ], + [ + 77.663763039411705, + 12.9280380777773 + ], + [ + 77.663883302502896, + 12.9280368498475 + ], + [ + 77.663892045490797, + 12.9280367605762 + ], + [ + 77.664099739868405, + 12.9280346398037 + ], + [ + 77.6645943822991, + 12.9280521731056 + ], + [ + 77.664932593109498, + 12.9281367992212 + ], + [ + 77.665114504303901, + 12.9283551424463 + ], + [ + 77.665855224565107, + 12.930350841932301 + ], + [ + 77.666059866749293, + 12.9306076245059 + ], + [ + 77.666151591752893, + 12.9307227196879 + ], + [ + 77.666181304158897, + 12.930756377666199 + ], + [ + 77.666401542711, + 12.931005861708501 + ], + [ + 77.666920509094396, + 12.931199301718699 + ], + [ + 77.667528663186999, + 12.931281163300399 + ], + [ + 77.668034809582807, + 12.931243238630699 + ], + [ + 77.668044615728803, + 12.931239365774299 + ], + [ + 77.6680148656597, + 12.930740981558101 + ], + [ + 77.667974564055399, + 12.930364147748501 + ], + [ + 77.667865126488394, + 12.9294957906938 + ], + [ + 77.667857974103399, + 12.9294430273461 + ], + [ + 77.6678084188637, + 12.9291665876718 + ], + [ + 77.667781725806194, + 12.9288158279907 + ], + [ + 77.667781721560004, + 12.928815772194 + ], + [ + 77.668205052851505, + 12.9287362429433 + ], + [ + 77.668345232092094, + 12.928709908196501 + ], + [ + 77.668463672383794, + 12.9286876568223 + ], + [ + 77.668496022911199, + 12.928681579464801 + ], + [ + 77.668561102921103, + 12.9284418907803 + ], + [ + 77.668563519812906, + 12.9284329884616 + ], + [ + 77.668625321348699, + 12.9282053718676 + ], + [ + 77.668802558592802, + 12.927435235363999 + ], + [ + 77.668925966783902, + 12.927195366509 + ], + [ + 77.668932897391699, + 12.927157530377 + ], + [ + 77.6689877886907, + 12.926857871531499 + ], + [ + 77.669012758113197, + 12.926122803081199 + ], + [ + 77.669012759468401, + 12.9261227631852 + ], + [ + 77.669009165417407, + 12.926089638584701 + ], + [ + 77.668979716247307, + 12.925818219425 + ], + [ + 77.668939232141298, + 12.9254660682078 + ], + [ + 77.668936485070901, + 12.925442175489 + ], + [ + 77.668934579272204, + 12.9254255997405 + ], + [ + 77.668922825586506, + 12.9253286346335 + ], + [ + 77.668916923370105, + 12.925251209586699 + ], + [ + 77.668873930635201, + 12.9247499228237 + ], + [ + 77.668870426006904, + 12.9245355331337 + ], + [ + 77.668871162922898, + 12.923518720490501 + ], + [ + 77.668871214512905, + 12.923447926838501 + ], + [ + 77.668872649591293, + 12.923346347492901 + ], + [ + 77.668872650390796, + 12.9233462909026 + ], + [ + 77.6688661231899, + 12.923346003523401 + ], + [ + 77.668866246513701, + 12.9233278848087 + ], + [ + 77.668866508203493, + 12.923289509808701 + ], + [ + 77.668866935266706, + 12.9232268337772 + ], + [ + 77.668477071813797, + 12.9232748686267 + ], + [ + 77.668259981451499, + 12.923301615230001 + ], + [ + 77.668104935886603, + 12.923298203711701 + ], + [ + 77.668077298406203, + 12.9232975873849 + ], + [ + 77.668038284930603, + 12.9231124960888 + ], + [ + 77.667974731299907, + 12.9228109748212 + ], + [ + 77.6677815707082, + 12.921660646666201 + ], + [ + 77.667108401767393, + 12.921233237863801 + ], + [ + 77.666761924259404, + 12.921013251269001 + ], + [ + 77.666688188986399, + 12.921017562122801 + ], + [ + 77.666673116612202, + 12.921018443394299 + ], + [ + 77.666568911845999, + 12.921024536152 + ], + [ + 77.665548430463105, + 12.9210842011542 + ], + [ + 77.665382362265703, + 12.921093998577399 + ], + [ + 77.665363164232502, + 12.9210674060936 + ], + [ + 77.665357614126606, + 12.9210597182682 + ], + [ + 77.665186406607603, + 12.920822568313699 + ], + [ + 77.665153185457299, + 12.920776550905201 + ], + [ + 77.665092101126902, + 12.920716521808099 + ], + [ + 77.664888583939103, + 12.920517121701 + ], + [ + 77.663631829184695, + 12.91924378053 + ], + [ + 77.663450332747004, + 12.9190634144879 + ], + [ + 77.663361079891303, + 12.9189747166795 + ], + [ + 77.663308595058794, + 12.9189225590553 + ], + [ + 77.662047433782703, + 12.9177611319323 + ], + [ + 77.662005255119894, + 12.917722288768999 + ], + [ + 77.661995204656805, + 12.917698203791099 + ], + [ + 77.661626056520205, + 12.916771382531101 + ], + [ + 77.661205759545297, + 12.915716129228301 + ], + [ + 77.6607331345093, + 12.915449665210501 + ], + [ + 77.660513014808004, + 12.915325561952599 + ], + [ + 77.660043836878003, + 12.9151513647325 + ], + [ + 77.660245611027193, + 12.9146858453172 + ], + [ + 77.660573735530605, + 12.9139221037867 + ], + [ + 77.660541849178102, + 12.913817048574099 + ], + [ + 77.660501801686806, + 12.9136861752686 + ], + [ + 77.660287539272602, + 12.912985967683399 + ], + [ + 77.660200510670606, + 12.9127095435705 + ], + [ + 77.660140856461496, + 12.912520068770901 + ], + [ + 77.660129798903895, + 12.9124621301467 + ], + [ + 77.659864649065895, + 12.9110777741283 + ], + [ + 77.659824565138194, + 12.9101637070934 + ], + [ + 77.6598581683009, + 12.9100920256463 + ], + [ + 77.659948157836297, + 12.909900054866799 + ], + [ + 77.659287282567703, + 12.9095928062818 + ], + [ + 77.6590144914192, + 12.9094532204874 + ], + [ + 77.657917840467505, + 12.9095093783697 + ], + [ + 77.657055849643399, + 12.909639177734499 + ], + [ + 77.656954915281005, + 12.9095506632096 + ], + [ + 77.656864426235501, + 12.9094713076435 + ], + [ + 77.656727406995302, + 12.909351147955 + ], + [ + 77.656546493634195, + 12.909192494780701 + ], + [ + 77.656351383874096, + 12.9083853372207 + ], + [ + 77.656197672747993, + 12.907725733108601 + ], + [ + 77.656097992512102, + 12.907320293382501 + ], + [ + 77.656049096869793, + 12.907163508881 + ], + [ + 77.655947725100603, + 12.906837366579801 + ], + [ + 77.655812113073296, + 12.9063874959119 + ], + [ + 77.655591475384696, + 12.9056460004717 + ], + [ + 77.655570406433995, + 12.9055510912731 + ], + [ + 77.655530291387606, + 12.9053703865633 + ], + [ + 77.655447367768701, + 12.9049968438134 + ], + [ + 77.655082445759604, + 12.903799517627199 + ], + [ + 77.655083389895196, + 12.9036397146404 + ], + [ + 77.655083470168293, + 12.9036261278696 + ], + [ + 77.655081322025097, + 12.9036098460583 + ], + [ + 77.655070712783797, + 12.903529462829001 + ], + [ + 77.655034770740301, + 12.9032527393364 + ], + [ + 77.6549693312394, + 12.902748905613899 + ], + [ + 77.654855426563401, + 12.9023129115562 + ], + [ + 77.654796112719595, + 12.901775898638199 + ], + [ + 77.654699982181199, + 12.901802992887101 + ], + [ + 77.654651980592305, + 12.9017430728083 + ], + [ + 77.654366882326698, + 12.901811491512801 + ], + [ + 77.653768262472298, + 12.9019646134811 + ], + [ + 77.653238225740395, + 12.902045903681101 + ], + [ + 77.652741099895195, + 12.9021215782006 + ], + [ + 77.652555561592195, + 12.9021001011889 + ], + [ + 77.652435714532501, + 12.9018117982107 + ], + [ + 77.6524513351861, + 12.9016340774971 + ], + [ + 77.652480606641504, + 12.901474700576401 + ], + [ + 77.652507102070501, + 12.9013369770765 + ], + [ + 77.652384293953602, + 12.9009606004593 + ], + [ + 77.651789873679206, + 12.901184588012301 + ], + [ + 77.651471567474204, + 12.899933817724101 + ], + [ + 77.651456455823407, + 12.899864896935799 + ], + [ + 77.651325672432307, + 12.899268416499799 + ], + [ + 77.651307031736906, + 12.899118019379801 + ], + [ + 77.651203060284601, + 12.898857148763501 + ], + [ + 77.6511601508344, + 12.898918626715799 + ], + [ + 77.650760055546201, + 12.899075953735 + ], + [ + 77.650582549843506, + 12.8991569862443 + ], + [ + 77.649975205314703, + 12.899434241325199 + ], + [ + 77.649212128259293, + 12.8997412170899 + ], + [ + 77.649137738862507, + 12.8997419709019 + ], + [ + 77.648852515662796, + 12.899504005617301 + ], + [ + 77.648839197233499, + 12.899545861512401 + ], + [ + 77.648654505064002, + 12.8994465624281 + ], + [ + 77.648366872999105, + 12.899435134777701 + ], + [ + 77.648047632034604, + 12.8994300020768 + ], + [ + 77.647818256730503, + 12.8993976670923 + ], + [ + 77.647610005148394, + 12.8994045560654 + ], + [ + 77.647406367866495, + 12.8994592044751 + ], + [ + 77.647309801335695, + 12.899544319042899 + ], + [ + 77.647190294178003, + 12.9000427039937 + ], + [ + 77.647005923475305, + 12.9003046310866 + ], + [ + 77.646814054883194, + 12.9004098328711 + ], + [ + 77.646707823421593, + 12.9005026942946 + ], + [ + 77.646449127458297, + 12.9007405155689 + ], + [ + 77.646236201314693, + 12.9008822624304 + ], + [ + 77.646115427495005, + 12.900960331294399 + ], + [ + 77.645663442595307, + 12.901252495146499 + ], + [ + 77.645652638415299, + 12.901262639517199 + ], + [ + 77.645547631322799, + 12.901361229355 + ], + [ + 77.645271385049796, + 12.901506006860499 + ], + [ + 77.645258099609293, + 12.9015134064888 + ], + [ + 77.644909481743298, + 12.901707582490699 + ], + [ + 77.644303911555397, + 12.9020937611836 + ], + [ + 77.644165551840004, + 12.9021787629305 + ], + [ + 77.644129587791994, + 12.9022008572628 + ], + [ + 77.643843448054, + 12.902376646396601 + ], + [ + 77.643091544881997, + 12.902889075174899 + ], + [ + 77.642726860789793, + 12.9031405979183 + ], + [ + 77.642426787806798, + 12.9033475578702 + ], + [ + 77.641757326886406, + 12.9037759690522 + ], + [ + 77.641603886306598, + 12.9038747509987 + ], + [ + 77.641322398633307, + 12.9040559656491 + ], + [ + 77.641187362117194, + 12.904142899320201 + ], + [ + 77.6406854715745, + 12.9044718372808 + ], + [ + 77.640674334184396, + 12.9044791364267 + ], + [ + 77.640156581384005, + 12.904829761205001 + ], + [ + 77.639550515758103, + 12.9052398397925 + ], + [ + 77.639146328386005, + 12.905499681568999 + ], + [ + 77.639017678416295, + 12.905730678976401 + ], + [ + 77.639191401623506, + 12.906018584431999 + ], + [ + 77.639214172125904, + 12.9060986675105 + ], + [ + 77.639216566615204, + 12.9061875613497 + ], + [ + 77.639263851361605, + 12.906653187647301 + ], + [ + 77.638670818634793, + 12.9067036354172 + ], + [ + 77.638686758509095, + 12.9069687958076 + ], + [ + 77.638692451115503, + 12.907232624153 + ], + [ + 77.638760340494201, + 12.907432722143099 + ], + [ + 77.639021880856504, + 12.9078359489306 + ], + [ + 77.639022664056995, + 12.907962947671299 + ], + [ + 77.639038337140605, + 12.908643408613701 + ], + [ + 77.638867347717806, + 12.9086494377528 + ], + [ + 77.638867631433101, + 12.908815798559999 + ], + [ + 77.638886015000907, + 12.909035040079299 + ], + [ + 77.638874032117798, + 12.909147025732301 + ], + [ + 77.638880426401499, + 12.909338310393499 + ], + [ + 77.639325327595699, + 12.909333816119601 + ], + [ + 77.639922671512707, + 12.9093193356581 + ], + [ + 77.640170630574701, + 12.9093133238208 + ], + [ + 77.641162016479598, + 12.9092817912434 + ], + [ + 77.641405115598801, + 12.909278158165501 + ], + [ + 77.641369026882103, + 12.908627058832799 + ], + [ + 77.641334684560306, + 12.907854262737199 + ], + [ + 77.641334562793205, + 12.907851525740201 + ], + [ + 77.641303972791604, + 12.9073054189091 + ], + [ + 77.641261809384304, + 12.9066317883727 + ], + [ + 77.641242582780706, + 12.9063783663986 + ], + [ + 77.641214296360403, + 12.906005539549501 + ], + [ + 77.641193998765601, + 12.9056041800097 + ], + [ + 77.641240529612404, + 12.9055043393957 + ], + [ + 77.641753474604997, + 12.9053812209903 + ], + [ + 77.642380641803001, + 12.905230685618401 + ], + [ + 77.642408311548905, + 12.9052249664269 + ], + [ + 77.642423784947496, + 12.905220329974 + ], + [ + 77.643043963013398, + 12.9050345595992 + ], + [ + 77.643156025921499, + 12.9050009921081 + ], + [ + 77.643787004528406, + 12.9048647621164 + ], + [ + 77.644256677759103, + 12.9047734450447 + ], + [ + 77.644342380447299, + 12.9047538502787 + ], + [ + 77.644360767787603, + 12.905059803991399 + ], + [ + 77.644403923509699, + 12.9059198628866 + ], + [ + 77.644437258447297, + 12.9066484650606 + ], + [ + 77.6449354557531, + 12.906607941142701 + ], + [ + 77.6454894535959, + 12.9063568304214 + ], + [ + 77.645609876073806, + 12.9066969294601 + ], + [ + 77.645635884185793, + 12.9066933696096 + ], + [ + 77.645987008246706, + 12.906645305367 + ], + [ + 77.646612795057194, + 12.906566519340201 + ], + [ + 77.646825738614098, + 12.9064885564138 + ], + [ + 77.646832136660393, + 12.906560519114 + ], + [ + 77.646870138093107, + 12.906677190179501 + ], + [ + 77.647504161997503, + 12.906609187615601 + ], + [ + 77.647952178889, + 12.9065678527238 + ], + [ + 77.648483532255796, + 12.906515850763199 + ], + [ + 77.649040886602904, + 12.9064838495567 + ], + [ + 77.649052887055305, + 12.906670523261401 + ], + [ + 77.649294229487893, + 12.9066505225073 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "360", + "group": "Hosakerehalli Ward", + "Corporatio": "West", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "5", + "ward_id": "91", + "ward_name": "91 - Hosakerehalli", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ಹೊಸಕೆರೆಹಳ್ಳಿ", + "dig_ward_n": "Hosakerehalli Ward", + "Assembly": "171 - Padmanabanagar", + "Slno": "91" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.538510703932303, + 12.9244442543008 + ], + [ + 77.538417232347598, + 12.9243661095803 + ], + [ + 77.538380695237095, + 12.924339360762801 + ], + [ + 77.538354672289699, + 12.9242707240467 + ], + [ + 77.538314538056099, + 12.9241728616954 + ], + [ + 77.538252080822303, + 12.924087639193599 + ], + [ + 77.538145249918898, + 12.9239407344296 + ], + [ + 77.538097199071601, + 12.9238860401656 + ], + [ + 77.538036022304496, + 12.923816405406001 + ], + [ + 77.537971124054295, + 12.9237425342893 + ], + [ + 77.537808745179305, + 12.9236244030288 + ], + [ + 77.537643323617999, + 12.9235469575335 + ], + [ + 77.537490656711, + 12.9234784226473 + ], + [ + 77.537293012907895, + 12.9234024195066 + ], + [ + 77.537196436953195, + 12.9234157811145 + ], + [ + 77.537048700673196, + 12.9234364160545 + ], + [ + 77.536901466284903, + 12.9235067371086 + ], + [ + 77.536742595129397, + 12.923678812036799 + ], + [ + 77.536682819997793, + 12.9239730221184 + ], + [ + 77.536719102566295, + 12.9242595224989 + ], + [ + 77.536805076193303, + 12.9246212057932 + ], + [ + 77.536739686153098, + 12.924758491859199 + ], + [ + 77.536708101937805, + 12.9249416502747 + ], + [ + 77.536696457540998, + 12.925009177083799 + ], + [ + 77.536642344946003, + 12.925322980005699 + ], + [ + 77.536650788179301, + 12.925645889920199 + ], + [ + 77.536690006415995, + 12.925938008414899 + ], + [ + 77.536730739328803, + 12.9260760897177 + ], + [ + 77.536753787246994, + 12.9261542221554 + ], + [ + 77.536852845336199, + 12.926329436573999 + ], + [ + 77.536906943766994, + 12.9265559084425 + ], + [ + 77.536891210741402, + 12.926764989733501 + ], + [ + 77.536650730514694, + 12.926779750406901 + ], + [ + 77.536086825538902, + 12.9269184941954 + ], + [ + 77.5356080990381, + 12.927055279813199 + ], + [ + 77.535540857684197, + 12.9270640870857 + ], + [ + 77.535468396141994, + 12.9270735774987 + ], + [ + 77.535248272973107, + 12.9271660638392 + ], + [ + 77.535069633935194, + 12.927319131541401 + ], + [ + 77.534938999120797, + 12.9276083833894 + ], + [ + 77.5349003653604, + 12.92783011012 + ], + [ + 77.534889691357904, + 12.927970252456999 + ], + [ + 77.534882083361694, + 12.9280719673165 + ], + [ + 77.534890673352393, + 12.9284095576587 + ], + [ + 77.534924755701994, + 12.928706243929099 + ], + [ + 77.534937379625205, + 12.9287592004292 + ], + [ + 77.534956151240095, + 12.9288373710037 + ], + [ + 77.535051559479598, + 12.9292346740231 + ], + [ + 77.534877991022697, + 12.929319931958499 + ], + [ + 77.5348701490351, + 12.929341465685001 + ], + [ + 77.5347794417995, + 12.92959419068 + ], + [ + 77.534665002629495, + 12.9297771269293 + ], + [ + 77.5345730547904, + 12.929893160041599 + ], + [ + 77.534503567707105, + 12.929980847931899 + ], + [ + 77.534240744152299, + 12.930405775952201 + ], + [ + 77.5341658514957, + 12.930685451520199 + ], + [ + 77.534167208320198, + 12.9308198302995 + ], + [ + 77.534173057262194, + 12.931285063280701 + ], + [ + 77.534173064430107, + 12.9312852258366 + ], + [ + 77.534174625930802, + 12.9313217390776 + ], + [ + 77.534182855081795, + 12.9315142249565 + ], + [ + 77.534176911335607, + 12.9316667441598 + ], + [ + 77.534176498366094, + 12.931803172039199 + ], + [ + 77.53417611447, + 12.931929889986201 + ], + [ + 77.534168477523707, + 12.9319968231614 + ], + [ + 77.534167224341999, + 12.9320078107546 + ], + [ + 77.534160248285005, + 12.9320689525569 + ], + [ + 77.534160162552794, + 12.932322063798701 + ], + [ + 77.534160135672394, + 12.932399851474401 + ], + [ + 77.534164273632101, + 12.9324675719164 + ], + [ + 77.5341523168713, + 12.932537707419501 + ], + [ + 77.534144389491999, + 12.9326078037742 + ], + [ + 77.534158987267404, + 12.932711813669201 + ], + [ + 77.534167341196707, + 12.932771335668599 + ], + [ + 77.534168310517799, + 12.9328673204958 + ], + [ + 77.534163409536205, + 12.9329520689185 + ], + [ + 77.5341519371743, + 12.933013164964599 + ], + [ + 77.534132639537802, + 12.9330404567202 + ], + [ + 77.534098799413599, + 12.9330726492775 + ], + [ + 77.534097856975293, + 12.933073545647 + ], + [ + 77.533980537534802, + 12.9331424461443 + ], + [ + 77.533939785528702, + 12.9331606875157 + ], + [ + 77.533892854197106, + 12.9331816957278 + ], + [ + 77.533852189872107, + 12.9332024189863 + ], + [ + 77.5338157943889, + 12.933246816998301 + ], + [ + 77.533785913242298, + 12.933309221230401 + ], + [ + 77.533757019093301, + 12.9334122695589 + ], + [ + 77.533735002913801, + 12.9334554021426 + ], + [ + 77.533694931458399, + 12.9335348464381 + ], + [ + 77.533660706548602, + 12.9336232668826 + ], + [ + 77.533595622370001, + 12.933905105913601 + ], + [ + 77.533574774638893, + 12.9340069494412 + ], + [ + 77.533547411603095, + 12.934090785848101 + ], + [ + 77.533513523716294, + 12.934155487687899 + ], + [ + 77.533461928271905, + 12.934179866169099 + ], + [ + 77.533447634090606, + 12.9341866200658 + ], + [ + 77.533429800953201, + 12.9341879226454 + ], + [ + 77.533431982174804, + 12.934191212694801 + ], + [ + 77.533454353686096, + 12.934224952503801 + ], + [ + 77.533428931829704, + 12.934286212071401 + ], + [ + 77.533383786461997, + 12.934395000842899 + ], + [ + 77.533189936617504, + 12.9348621268968 + ], + [ + 77.533159320745696, + 12.9349359030705 + ], + [ + 77.533157822641996, + 12.934939513456101 + ], + [ + 77.533095788719805, + 12.9350889961894 + ], + [ + 77.533649849014196, + 12.9350565085509 + ], + [ + 77.533667894373394, + 12.935120726633 + ], + [ + 77.533750096625099, + 12.9354132620242 + ], + [ + 77.5338059527528, + 12.935612037707299 + ], + [ + 77.5338226768379, + 12.9356715533632 + ], + [ + 77.533903310715601, + 12.9359585050364 + ], + [ + 77.533908415662594, + 12.9359766712981 + ], + [ + 77.534295618026505, + 12.936466427149 + ], + [ + 77.5345083608767, + 12.936268986573101 + ], + [ + 77.534927191193603, + 12.9360572146221 + ], + [ + 77.534944154175093, + 12.936048637468501 + ], + [ + 77.535077688821303, + 12.9359811182371 + ], + [ + 77.535282074380902, + 12.935878383837601 + ], + [ + 77.535719202588496, + 12.9356586648655 + ], + [ + 77.5359669457888, + 12.935532430972099 + ], + [ + 77.5362140491101, + 12.9354065265522 + ], + [ + 77.536240391189395, + 12.935392718248099 + ], + [ + 77.536422426119302, + 12.9352904435261 + ], + [ + 77.536453789233505, + 12.9352728224963 + ], + [ + 77.536547217285602, + 12.935220332631101 + ], + [ + 77.536673555938606, + 12.935149868736101 + ], + [ + 77.536779988519598, + 12.935090508778 + ], + [ + 77.536780058132706, + 12.935090470155 + ], + [ + 77.536825432642104, + 12.9350651651731 + ], + [ + 77.537049258698502, + 12.9349398894958 + ], + [ + 77.537104776038106, + 12.9349077278188 + ], + [ + 77.5373463216131, + 12.934769856789501 + ], + [ + 77.537613046117698, + 12.934617059141599 + ], + [ + 77.537806651931604, + 12.9345068081281 + ], + [ + 77.537835590990994, + 12.934490328149799 + ], + [ + 77.537908979464305, + 12.9344485366793 + ], + [ + 77.537948708726006, + 12.9344259128732 + ], + [ + 77.537964335389802, + 12.9344170142789 + ], + [ + 77.538016579339796, + 12.934387264050001 + ], + [ + 77.538211209049507, + 12.9342738289323 + ], + [ + 77.538222727599702, + 12.934267115152201 + ], + [ + 77.538276554106602, + 12.934235744008401 + ], + [ + 77.538505413200994, + 12.9341023602726 + ], + [ + 77.538642770283303, + 12.9340223055168 + ], + [ + 77.538763445155197, + 12.933951974544 + ], + [ + 77.538887601251204, + 12.933876229460299 + ], + [ + 77.538890488381199, + 12.933874450425201 + ], + [ + 77.539012322386597, + 12.933799349489201 + ], + [ + 77.539019333245903, + 12.9337952942135 + ], + [ + 77.539181160994403, + 12.9337017109259 + ], + [ + 77.539233188713695, + 12.9336694663148 + ], + [ + 77.539235801155797, + 12.9336678498656 + ], + [ + 77.539235891759105, + 12.9336677920647 + ], + [ + 77.539241536777794, + 12.933664297586301 + ], + [ + 77.539241644797798, + 12.933664231484601 + ], + [ + 77.539246788178701, + 12.933661045456599 + ], + [ + 77.539246926399898, + 12.933660960088 + ], + [ + 77.539248876113305, + 12.933659753039599 + ], + [ + 77.539248919135304, + 12.9336597264201 + ], + [ + 77.539250495383499, + 12.933658750682699 + ], + [ + 77.539250579594693, + 12.9336586983649 + ], + [ + 77.5392515288233, + 12.933658110901 + ], + [ + 77.539251739337402, + 12.9336579787514 + ], + [ + 77.539427149037607, + 12.933547984348801 + ], + [ + 77.5395927616525, + 12.9334323292329 + ], + [ + 77.539664952273597, + 12.933381914554399 + ], + [ + 77.540433219768801, + 12.932843643001901 + ], + [ + 77.541078628224994, + 12.932395784443701 + ], + [ + 77.541085646231494, + 12.932390714457201 + ], + [ + 77.541418416597594, + 12.9321502973929 + ], + [ + 77.541415916254095, + 12.932147194857301 + ], + [ + 77.540598791248996, + 12.9303763668381 + ], + [ + 77.540471269710807, + 12.930438839510799 + ], + [ + 77.540419992005198, + 12.9302914901708 + ], + [ + 77.540276353448704, + 12.929824363028599 + ], + [ + 77.540156793679003, + 12.929328315128499 + ], + [ + 77.540146804086604, + 12.9293045083389 + ], + [ + 77.540161255416393, + 12.929287634435299 + ], + [ + 77.540157705839803, + 12.9291777092673 + ], + [ + 77.540121003565901, + 12.9289222892602 + ], + [ + 77.5400554946185, + 12.928710177526501 + ], + [ + 77.540039425826293, + 12.9286434584769 + ], + [ + 77.539481642668804, + 12.9287653976236 + ], + [ + 77.5392568184959, + 12.928023030906401 + ], + [ + 77.539134813198203, + 12.9275258104814 + ], + [ + 77.539057757969303, + 12.927135723554599 + ], + [ + 77.538742800258703, + 12.926177942036199 + ], + [ + 77.539042126815602, + 12.9259408070726 + ], + [ + 77.539168265875205, + 12.9254738806381 + ], + [ + 77.538950027926802, + 12.9248749073467 + ], + [ + 77.5388173540032, + 12.9248124346739 + ], + [ + 77.538716914982501, + 12.9247366208388 + ], + [ + 77.5385835645165, + 12.9246398297637 + ], + [ + 77.5385549721546, + 12.9245310245464 + ], + [ + 77.538567150507902, + 12.9245022775007 + ], + [ + 77.538510703932303, + 12.9244442543008 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "362", + "group": "kamakya Layout Ward", + "Corporatio": "West", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "5", + "ward_id": "88", + "ward_name": "88 - Kamakya Layout", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ಕಾಮಕ್ಯ ಲೇಔಟ್", + "dig_ward_n": "kamakya Layout Ward", + "Assembly": "171 - Padmanabanagar", + "Slno": "88" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.541547645070295, + 12.9320569333051 + ], + [ + 77.541587261233104, + 12.932028311121201 + ], + [ + 77.542382688735799, + 12.931454538860599 + ], + [ + 77.542483947645906, + 12.931381496555099 + ], + [ + 77.542868482905305, + 12.931038947028 + ], + [ + 77.543085859942195, + 12.930845969923499 + ], + [ + 77.543441288796004, + 12.930528548986 + ], + [ + 77.543447373804497, + 12.9305231311791 + ], + [ + 77.543601606776804, + 12.9303858187325 + ], + [ + 77.544095232290999, + 12.929910243519799 + ], + [ + 77.544492111646306, + 12.929527873544201 + ], + [ + 77.544608013425702, + 12.9294297692574 + ], + [ + 77.545550322741704, + 12.928632151374 + ], + [ + 77.546053176333899, + 12.928207132034199 + ], + [ + 77.546232509342801, + 12.928066473775701 + ], + [ + 77.547001970212904, + 12.927464303910501 + ], + [ + 77.547828249455804, + 12.9268176636986 + ], + [ + 77.547844261488507, + 12.926805166897401 + ], + [ + 77.548106164248196, + 12.9266007596264 + ], + [ + 77.548152085661201, + 12.926564918784701 + ], + [ + 77.548311774600705, + 12.9264456755601 + ], + [ + 77.548360573712898, + 12.926409235597299 + ], + [ + 77.548385641954994, + 12.926390516693701 + ], + [ + 77.5485383311551, + 12.926276499617799 + ], + [ + 77.548711419936794, + 12.9261472495488 + ], + [ + 77.549271394303702, + 12.925792815799699 + ], + [ + 77.549333249784496, + 12.925755261566101 + ], + [ + 77.549445323022198, + 12.925687218028701 + ], + [ + 77.549950138301497, + 12.925399952632899 + ], + [ + 77.549951003704507, + 12.9253994608226 + ], + [ + 77.549983621555697, + 12.925380918291999 + ], + [ + 77.550398864466501, + 12.9251448559074 + ], + [ + 77.550496212109906, + 12.9250942139203 + ], + [ + 77.551443898832602, + 12.9245993378654 + ], + [ + 77.551675677601693, + 12.9245103987804 + ], + [ + 77.551715700557807, + 12.924495040661499 + ], + [ + 77.552185890466703, + 12.924313138056201 + ], + [ + 77.553277382690098, + 12.923977442576 + ], + [ + 77.553300903634906, + 12.923970208815 + ], + [ + 77.553322707466705, + 12.923963219524101 + ], + [ + 77.553658364272295, + 12.923854907838299 + ], + [ + 77.554295232871596, + 12.923647655060201 + ], + [ + 77.554338900738401, + 12.9236330893928 + ], + [ + 77.554469639948096, + 12.9235894816724 + ], + [ + 77.554469639948096, + 12.9235894816724 + ], + [ + 77.554469639948096, + 12.9235894816724 + ], + [ + 77.554463419881998, + 12.9235660012856 + ], + [ + 77.554467095124394, + 12.923564775331799 + ], + [ + 77.554890201640703, + 12.9234236472732 + ], + [ + 77.555353950703406, + 12.9232689617701 + ], + [ + 77.555491020627201, + 12.923225978263799 + ], + [ + 77.556257215723804, + 12.9229857062486 + ], + [ + 77.556253076356796, + 12.9229734767825 + ], + [ + 77.556102497430203, + 12.9224882114069 + ], + [ + 77.556088810563594, + 12.9224443016741 + ], + [ + 77.556087624898794, + 12.922440925303 + ], + [ + 77.555994211314896, + 12.922142568297 + ], + [ + 77.555991241415398, + 12.922133562759401 + ], + [ + 77.5558990252743, + 12.921839711257901 + ], + [ + 77.555815131975393, + 12.921571752725701 + ], + [ + 77.555693160184006, + 12.9211821995435 + ], + [ + 77.555691974533403, + 12.921178823168299 + ], + [ + 77.555644013712097, + 12.9209989338238 + ], + [ + 77.555630333366295, + 12.920947914450499 + ], + [ + 77.555588971310598, + 12.920956224680699 + ], + [ + 77.555523457445702, + 12.9209670300007 + ], + [ + 77.555411884871901, + 12.9209771568626 + ], + [ + 77.555284241704697, + 12.920991958302899 + ], + [ + 77.555156426201094, + 12.920989821446801 + ], + [ + 77.555079193715997, + 12.9209804134558 + ], + [ + 77.555026619722597, + 12.920961729463199 + ], + [ + 77.554918892443197, + 12.9209537492252 + ], + [ + 77.554830251529907, + 12.920954616771301 + ], + [ + 77.554741668037096, + 12.9209611303682 + ], + [ + 77.554643609590102, + 12.920998228534 + ], + [ + 77.554568368010806, + 12.9210147754647 + ], + [ + 77.554478656260102, + 12.921023558675699 + ], + [ + 77.5543704452068, + 12.921024617577199 + ], + [ + 77.554247672125697, + 12.9210088789872 + ], + [ + 77.5541257287165, + 12.9209615110054 + ], + [ + 77.554053533159404, + 12.9209374082787 + ], + [ + 77.554030423263796, + 12.9209296929433 + ], + [ + 77.553995036664304, + 12.9209029352616 + ], + [ + 77.5537370718136, + 12.9207823621065 + ], + [ + 77.553628782020098, + 12.920719049672901 + ], + [ + 77.553356486769502, + 12.9205477964206 + ], + [ + 77.553338379258307, + 12.9205334855862 + ], + [ + 77.5531377102335, + 12.920374890071599 + ], + [ + 77.553015124550896, + 12.9202642852786 + ], + [ + 77.552847183955194, + 12.9201089507261 + ], + [ + 77.552787347414494, + 12.920055328001901 + ], + [ + 77.552780130498803, + 12.920024906657799 + ], + [ + 77.552748614425397, + 12.919925833777301 + ], + [ + 77.552704815941993, + 12.9198076823723 + ], + [ + 77.552645210852702, + 12.9197201774238 + ], + [ + 77.552640639057302, + 12.9196791431356 + ], + [ + 77.552588732826294, + 12.919669486682301 + ], + [ + 77.552433118883997, + 12.919695147194 + ], + [ + 77.552194224713105, + 12.9197516906123 + ], + [ + 77.552152218202593, + 12.919753230598101 + ], + [ + 77.552145485184298, + 12.9197137698446 + ], + [ + 77.552125938112198, + 12.9197162195946 + ], + [ + 77.552103898162997, + 12.9194856284791 + ], + [ + 77.552102079620894, + 12.9194766116102 + ], + [ + 77.552051449314305, + 12.9191959031706 + ], + [ + 77.551993499174799, + 12.918874610333599 + ], + [ + 77.551991116529393, + 12.918866728306901 + ], + [ + 77.551986351239293, + 12.9188509642534 + ], + [ + 77.551967923027902, + 12.918793548505199 + ], + [ + 77.551926737241402, + 12.9187058632592 + ], + [ + 77.551922813426003, + 12.9186595990424 + ], + [ + 77.551931588981205, + 12.9185601321433 + ], + [ + 77.551940813947297, + 12.918448238211401 + ], + [ + 77.551946480103496, + 12.9183826816337 + ], + [ + 77.552000786326502, + 12.918231949817701 + ], + [ + 77.552001891615006, + 12.918227421690601 + ], + [ + 77.552027093247403, + 12.918158286176499 + ], + [ + 77.5520324590982, + 12.918119836478001 + ], + [ + 77.552031839686606, + 12.918058858663001 + ], + [ + 77.552024716787798, + 12.9179810044501 + ], + [ + 77.552016562036101, + 12.917946188733399 + ], + [ + 77.552009673356807, + 12.917916779623001 + ], + [ + 77.552008464835893, + 12.917911144780501 + ], + [ + 77.551960046367697, + 12.917808946475301 + ], + [ + 77.5518790490855, + 12.9176379822187 + ], + [ + 77.5518625542405, + 12.917600875502799 + ], + [ + 77.551775913390799, + 12.9174018306388 + ], + [ + 77.551689859754902, + 12.917203909312001 + ], + [ + 77.551665295344804, + 12.9171657520995 + ], + [ + 77.551663534191206, + 12.9171623813161 + ], + [ + 77.551609121940402, + 12.917075954526901 + ], + [ + 77.551569672675797, + 12.917045848073201 + ], + [ + 77.551478606665498, + 12.916977848716099 + ], + [ + 77.551420014132304, + 12.9169332479798 + ], + [ + 77.551351418852505, + 12.9168672876624 + ], + [ + 77.551270552921295, + 12.916783377904601 + ], + [ + 77.551232151713094, + 12.9167430971593 + ], + [ + 77.551204299057304, + 12.9167129821325 + ], + [ + 77.551141323411102, + 12.9166607067671 + ], + [ + 77.551054469945896, + 12.916563404100501 + ], + [ + 77.5509428461624, + 12.916454949386599 + ], + [ + 77.550895742548093, + 12.916407977594 + ], + [ + 77.5508273792247, + 12.9163081348609 + ], + [ + 77.550754296677994, + 12.9161970448767 + ], + [ + 77.550752179406899, + 12.9161937941091 + ], + [ + 77.550704592791703, + 12.9161207357986 + ], + [ + 77.550699884977305, + 12.916110617794599 + ], + [ + 77.550680537905507, + 12.916019330869201 + ], + [ + 77.550607343610693, + 12.9157998556918 + ], + [ + 77.550604305239503, + 12.915784074717299 + ], + [ + 77.549481562824695, + 12.916099958265001 + ], + [ + 77.549238192094094, + 12.916168964866401 + ], + [ + 77.549179067538205, + 12.9161853527125 + ], + [ + 77.548998815898898, + 12.9162345442712 + ], + [ + 77.548829454413706, + 12.9162791120875 + ], + [ + 77.548514295735202, + 12.9163646294432 + ], + [ + 77.548254232414905, + 12.916433798128701 + ], + [ + 77.548035507837795, + 12.916492399198299 + ], + [ + 77.548038723249505, + 12.9166391812683 + ], + [ + 77.548074554735607, + 12.916936975840301 + ], + [ + 77.548087097086494, + 12.9170384935197 + ], + [ + 77.548100996761804, + 12.917160325964399 + ], + [ + 77.548455164565695, + 12.917174938902299 + ], + [ + 77.548534417621795, + 12.9177241509187 + ], + [ + 77.548549334179697, + 12.9177759546742 + ], + [ + 77.548558141319404, + 12.917806026285 + ], + [ + 77.548846080457807, + 12.917781448655299 + ], + [ + 77.549069742959006, + 12.9177290659078 + ], + [ + 77.549327053566003, + 12.9176177095197 + ], + [ + 77.549435417157895, + 12.9180683426281 + ], + [ + 77.549532575817295, + 12.918397272974801 + ], + [ + 77.549534433669805, + 12.9184047283065 + ], + [ + 77.549704048580296, + 12.9190852359365 + ], + [ + 77.549809106278701, + 12.9194179607168 + ], + [ + 77.548897593231999, + 12.9196013945086 + ], + [ + 77.548823693571094, + 12.919619327940399 + ], + [ + 77.548763341583694, + 12.919627565896 + ], + [ + 77.548708934594401, + 12.919645308092401 + ], + [ + 77.548637003009603, + 12.919665133998199 + ], + [ + 77.548568834888002, + 12.9196715364789 + ], + [ + 77.548449094426402, + 12.919670676087099 + ], + [ + 77.548447806330103, + 12.919879991743301 + ], + [ + 77.548313844310201, + 12.9203739766917 + ], + [ + 77.548420112258697, + 12.9203875017034 + ], + [ + 77.548298387154006, + 12.9213728954076 + ], + [ + 77.548510613939598, + 12.921346642664799 + ], + [ + 77.548581585389002, + 12.921342523817801 + ], + [ + 77.548629466101701, + 12.921339745275199 + ], + [ + 77.548670615788595, + 12.921360379829 + ], + [ + 77.548692853809996, + 12.921438568253601 + ], + [ + 77.548780023735304, + 12.9219597862149 + ], + [ + 77.548854140606906, + 12.922347268511301 + ], + [ + 77.548889142305399, + 12.922530511108899 + ], + [ + 77.548925463773898, + 12.922843780342401 + ], + [ + 77.548949283332206, + 12.922977576973301 + ], + [ + 77.548950272805897, + 12.922983138987799 + ], + [ + 77.548889940371694, + 12.922993289560701 + ], + [ + 77.548854695760994, + 12.9229783353441 + ], + [ + 77.548744330346906, + 12.9229569052762 + ], + [ + 77.548721378273498, + 12.922957129401899 + ], + [ + 77.548611111227302, + 12.9224127487225 + ], + [ + 77.548534116929005, + 12.921967709757499 + ], + [ + 77.548059550157006, + 12.9220204257527 + ], + [ + 77.547799813800694, + 12.922063646701099 + ], + [ + 77.547800028940898, + 12.922070690741901 + ], + [ + 77.547819537601001, + 12.922335307833899 + ], + [ + 77.547772784262605, + 12.9223727510866 + ], + [ + 77.547756521576403, + 12.9226281193852 + ], + [ + 77.547521409929601, + 12.922614620621101 + ], + [ + 77.547239795410107, + 12.9226137445484 + ], + [ + 77.547234718848699, + 12.922568727322901 + ], + [ + 77.547192742447606, + 12.9222498826984 + ], + [ + 77.546868375443793, + 12.9222366121896 + ], + [ + 77.546708566808903, + 12.9222419958188 + ], + [ + 77.546642337463098, + 12.922260801361301 + ], + [ + 77.5466391284357, + 12.9223161387921 + ], + [ + 77.546684249876407, + 12.9226755706226 + ], + [ + 77.546452695794699, + 12.922709268677901 + ], + [ + 77.546334463909005, + 12.922715961236699 + ], + [ + 77.545394087045096, + 12.922802815096601 + ], + [ + 77.545333849234595, + 12.9226673938528 + ], + [ + 77.545176057610803, + 12.9226794507262 + ], + [ + 77.545228295429496, + 12.923000462740299 + ], + [ + 77.545254845177894, + 12.923201782748 + ], + [ + 77.545255881518102, + 12.923645414633301 + ], + [ + 77.545140879191095, + 12.924276575501199 + ], + [ + 77.545121857401398, + 12.924380973416101 + ], + [ + 77.545164829281006, + 12.9246399641229 + ], + [ + 77.545193147467401, + 12.924741041780701 + ], + [ + 77.545380740106097, + 12.925392031819401 + ], + [ + 77.545347037498601, + 12.9254008305635 + ], + [ + 77.545021164307002, + 12.9254931171991 + ], + [ + 77.545100724037397, + 12.9257447713461 + ], + [ + 77.544800561527893, + 12.925897655845001 + ], + [ + 77.544495282694101, + 12.9260052118898 + ], + [ + 77.544366662220895, + 12.926030017407401 + ], + [ + 77.544367117107697, + 12.926052871454599 + ], + [ + 77.544122585245503, + 12.9261503459525 + ], + [ + 77.543863029510106, + 12.926220763962 + ], + [ + 77.543571201176107, + 12.9262809799298 + ], + [ + 77.543311983858004, + 12.926379787062199 + ], + [ + 77.542898392400502, + 12.9270399623431 + ], + [ + 77.542589909231694, + 12.9274831139849 + ], + [ + 77.542586670286099, + 12.9274926166252 + ], + [ + 77.542440014325507, + 12.9277049067977 + ], + [ + 77.5424810111125, + 12.928079222022401 + ], + [ + 77.542468785118601, + 12.9280809791506 + ], + [ + 77.542119711008993, + 12.928149248256901 + ], + [ + 77.542131303876104, + 12.9283038198183 + ], + [ + 77.541800263115306, + 12.928346326997699 + ], + [ + 77.5418195845605, + 12.928469984246901 + ], + [ + 77.5414949842814, + 12.928538253353199 + ], + [ + 77.541501534220004, + 12.9286112512881 + ], + [ + 77.541551728341801, + 12.9288029531604 + ], + [ + 77.541616339461797, + 12.9290577569153 + ], + [ + 77.541015788443403, + 12.929178527093599 + ], + [ + 77.540809717025695, + 12.9284210365857 + ], + [ + 77.540599964993007, + 12.928477383904999 + ], + [ + 77.5403317977444, + 12.928553126233499 + ], + [ + 77.540039425826293, + 12.9286434584769 + ], + [ + 77.5400554946185, + 12.928710177526501 + ], + [ + 77.540121003565901, + 12.9289222892602 + ], + [ + 77.540157705839803, + 12.9291777092673 + ], + [ + 77.540161255416393, + 12.929287634435299 + ], + [ + 77.540146804086604, + 12.9293045083389 + ], + [ + 77.540156793679003, + 12.929328315128499 + ], + [ + 77.540276353448704, + 12.929824363028599 + ], + [ + 77.540419992005198, + 12.9302914901708 + ], + [ + 77.540471269710807, + 12.930438839510799 + ], + [ + 77.540598791248996, + 12.9303763668381 + ], + [ + 77.541415916254095, + 12.932147194857301 + ], + [ + 77.541418416597594, + 12.9321502973929 + ], + [ + 77.541085646231494, + 12.932390714457201 + ], + [ + 77.541547645070295, + 12.9320569333051 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "367", + "group": "Ganeshmandira Ward", + "Corporatio": "West", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "5", + "ward_id": "82", + "ward_name": "82 - Ganesh Mandira Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ಗಣೇಶ್ ಮಂದಿರಾ ವಾರ್ಡ್", + "dig_ward_n": "Ganeshmandira Ward", + "Assembly": "171 - Padmanabanagar", + "Slno": "82" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.566680421484605, + 12.929959926447999 + ], + [ + 77.566809996696406, + 12.9300521360493 + ], + [ + 77.567823830011605, + 12.929956367254301 + ], + [ + 77.567955470806496, + 12.929953667494599 + ], + [ + 77.5680432939442, + 12.9299518660983 + ], + [ + 77.569256172218999, + 12.929921651389799 + ], + [ + 77.569339952373596, + 12.9299192759324 + ], + [ + 77.569417144591796, + 12.929916850595999 + ], + [ + 77.569417144591796, + 12.929916850595999 + ], + [ + 77.569417144591796, + 12.929916850595999 + ], + [ + 77.569417144591796, + 12.929916850595999 + ], + [ + 77.569417144591796, + 12.929916850595999 + ], + [ + 77.569723635442202, + 12.929907221153 + ], + [ + 77.570052930447304, + 12.9298859624136 + ], + [ + 77.571009167731305, + 12.929824225762401 + ], + [ + 77.571137181085305, + 12.9298111045113 + ], + [ + 77.571047538494497, + 12.929291044046799 + ], + [ + 77.5710325109482, + 12.9292038599585 + ], + [ + 77.570909368625806, + 12.928393969571101 + ], + [ + 77.5708070168928, + 12.927720814865101 + ], + [ + 77.570754650187496, + 12.9271249005626 + ], + [ + 77.570698687340297, + 12.926488059986299 + ], + [ + 77.570695929897596, + 12.9264566831484 + ], + [ + 77.569770823529694, + 12.926479546823099 + ], + [ + 77.569535685439803, + 12.926451076325201 + ], + [ + 77.569699323176096, + 12.9263427255393 + ], + [ + 77.570047262902094, + 12.9260917555241 + ], + [ + 77.570206525096694, + 12.925936519548999 + ], + [ + 77.570281347271901, + 12.9258397302075 + ], + [ + 77.570388098625301, + 12.925572984260601 + ], + [ + 77.570434586991496, + 12.9254857696091 + ], + [ + 77.570478355458107, + 12.925310203307699 + ], + [ + 77.570493348749594, + 12.9248240125038 + ], + [ + 77.570481223430406, + 12.924657221781899 + ], + [ + 77.570458967179306, + 12.9245667741069 + ], + [ + 77.570217908361499, + 12.9235871222192 + ], + [ + 77.570183246237704, + 12.9234453106803 + ], + [ + 77.570030965423499, + 12.922822291152301 + ], + [ + 77.569972003457806, + 12.922581063421999 + ], + [ + 77.569735026627697, + 12.9216115194944 + ], + [ + 77.569576826447303, + 12.921027009384 + ], + [ + 77.569057428363706, + 12.9211810495582 + ], + [ + 77.569139619218106, + 12.921462655061401 + ], + [ + 77.569222228421907, + 12.9218713891498 + ], + [ + 77.568631264102805, + 12.921972643273101 + ], + [ + 77.567815535139005, + 12.922129829575701 + ], + [ + 77.567052244958703, + 12.922267853185399 + ], + [ + 77.5666141084061, + 12.9223662593434 + ], + [ + 77.566232548218096, + 12.922419731759801 + ], + [ + 77.565681721519297, + 12.922578234995999 + ], + [ + 77.565547796854801, + 12.9221134357678 + ], + [ + 77.566033471934801, + 12.9220113656822 + ], + [ + 77.566599411021997, + 12.9218632516342 + ], + [ + 77.567107802783497, + 12.921727015912101 + ], + [ + 77.567105457483905, + 12.921614811358801 + ], + [ + 77.567061725501603, + 12.9214847256249 + ], + [ + 77.566900265182994, + 12.9209943703839 + ], + [ + 77.566839895511393, + 12.9207087632784 + ], + [ + 77.566345367064898, + 12.920824769699699 + ], + [ + 77.566176804260394, + 12.9203154076373 + ], + [ + 77.566175838632404, + 12.920312394167 + ], + [ + 77.566012413559207, + 12.919910385965901 + ], + [ + 77.565935978997501, + 12.9195700853078 + ], + [ + 77.565825540121907, + 12.919296088657401 + ], + [ + 77.565212182309494, + 12.919425764102501 + ], + [ + 77.565030176140993, + 12.9189387801989 + ], + [ + 77.564802280500103, + 12.9183374423536 + ], + [ + 77.5644840126037, + 12.9177154795055 + ], + [ + 77.564474278761907, + 12.9177050516429 + ], + [ + 77.564473625906899, + 12.917704665475799 + ], + [ + 77.5644736259067, + 12.9177046654763 + ], + [ + 77.564473625906601, + 12.917704665476601 + ], + [ + 77.564458460929202, + 12.917736506080701 + ], + [ + 77.564278677770503, + 12.918113206415899 + ], + [ + 77.564229255847707, + 12.9182048867407 + ], + [ + 77.564153825806002, + 12.918344814121699 + ], + [ + 77.564101840534903, + 12.918440187647301 + ], + [ + 77.563888856523405, + 12.918778817020099 + ], + [ + 77.563577022841002, + 12.919246030309299 + ], + [ + 77.563433198037799, + 12.9194236167295 + ], + [ + 77.563358488028996, + 12.919492109599499 + ], + [ + 77.5620882635925, + 12.920480888688401 + ], + [ + 77.561942696919203, + 12.9208182801743 + ], + [ + 77.561845239851607, + 12.921083498177399 + ], + [ + 77.561767950968203, + 12.9212943107475 + ], + [ + 77.561651245557997, + 12.9214784063831 + ], + [ + 77.561626184551102, + 12.9215046267494 + ], + [ + 77.561524236737995, + 12.9216117835649 + ], + [ + 77.5614307266857, + 12.921643192904 + ], + [ + 77.560345476146097, + 12.921853730386101 + ], + [ + 77.560204618390401, + 12.921880381753301 + ], + [ + 77.560200692220903, + 12.921881124960599 + ], + [ + 77.559676709170901, + 12.921979997747099 + ], + [ + 77.559418165207802, + 12.9220288353049 + ], + [ + 77.559322237166199, + 12.9220489744208 + ], + [ + 77.5589840238232, + 12.9221205935622 + ], + [ + 77.5589840238232, + 12.9221205935622 + ], + [ + 77.5589840238232, + 12.9221205935622 + ], + [ + 77.558983901941104, + 12.922120619371499 + ], + [ + 77.558751848777703, + 12.922169757652799 + ], + [ + 77.558697915751097, + 12.922187226228701 + ], + [ + 77.558570729455695, + 12.922229978842401 + ], + [ + 77.558229343807596, + 12.9223447315995 + ], + [ + 77.557946962042095, + 12.922439650270899 + ], + [ + 77.5579067970869, + 12.922452466470901 + ], + [ + 77.557281868463605, + 12.922649406453999 + ], + [ + 77.5572818684617, + 12.9226494064546 + ], + [ + 77.557281868459896, + 12.922649406455101 + ], + [ + 77.557226259935007, + 12.9226669308408 + ], + [ + 77.556456204518597, + 12.9229093742966 + ], + [ + 77.556253076356796, + 12.9229734767825 + ], + [ + 77.556253076356796, + 12.9229734767825 + ], + [ + 77.556253076356796, + 12.9229734767825 + ], + [ + 77.556257215723804, + 12.9229857062486 + ], + [ + 77.555491020627201, + 12.923225978263799 + ], + [ + 77.555353950703406, + 12.9232689617701 + ], + [ + 77.554890201640703, + 12.9234236472732 + ], + [ + 77.554467095124394, + 12.923564775331799 + ], + [ + 77.554463419881998, + 12.9235660012856 + ], + [ + 77.554469639948096, + 12.9235894816724 + ], + [ + 77.554469639948096, + 12.9235894816724 + ], + [ + 77.554479758202504, + 12.923622133168699 + ], + [ + 77.554501790432795, + 12.923694194554001 + ], + [ + 77.554507887260797, + 12.9238974140187 + ], + [ + 77.554579418467597, + 12.9240819237416 + ], + [ + 77.554605191571, + 12.9241821816981 + ], + [ + 77.554639069027203, + 12.924286877630999 + ], + [ + 77.554691364484299, + 12.9244478596801 + ], + [ + 77.554756138220995, + 12.924647116713601 + ], + [ + 77.554806326788807, + 12.9248273179149 + ], + [ + 77.554875935360201, + 12.9250491141118 + ], + [ + 77.554920103872306, + 12.9252033996479 + ], + [ + 77.554958736932406, + 12.9252662637863 + ], + [ + 77.555019195796405, + 12.9253808633128 + ], + [ + 77.555075488675101, + 12.925425485269701 + ], + [ + 77.555140817778906, + 12.925509545211099 + ], + [ + 77.5552058251604, + 12.925561987097799 + ], + [ + 77.555255187917496, + 12.9256044182046 + ], + [ + 77.555294512647507, + 12.9256221023811 + ], + [ + 77.555341710935494, + 12.9256781065944 + ], + [ + 77.555357355593799, + 12.9256881173461 + ], + [ + 77.555399074687998, + 12.9257148126782 + ], + [ + 77.555422248135201, + 12.925729267009601 + ], + [ + 77.555471069837495, + 12.925775091343899 + ], + [ + 77.555673183581902, + 12.925950416403101 + ], + [ + 77.555780071289206, + 12.926045362373699 + ], + [ + 77.555853620998604, + 12.9260886857638 + ], + [ + 77.555933225631506, + 12.926161312329601 + ], + [ + 77.555940949862006, + 12.9261849525433 + ], + [ + 77.556096072588701, + 12.9263245989629 + ], + [ + 77.556211537158305, + 12.926413814045601 + ], + [ + 77.556344799489906, + 12.926498337394699 + ], + [ + 77.556493096559606, + 12.926589489319401 + ], + [ + 77.556531611939107, + 12.926613056403999 + ], + [ + 77.556680200592098, + 12.9267039767648 + ], + [ + 77.556873728414104, + 12.926827435709599 + ], + [ + 77.557040640653298, + 12.926937603387101 + ], + [ + 77.557223312856394, + 12.9270690736726 + ], + [ + 77.557411718268497, + 12.9271982289498 + ], + [ + 77.557462739483896, + 12.9272338672994 + ], + [ + 77.557573050518499, + 12.927311133264 + ], + [ + 77.557672626536899, + 12.927380880998699 + ], + [ + 77.557688282885096, + 12.927392020785 + ], + [ + 77.557700462602199, + 12.927400935998699 + ], + [ + 77.557953727327799, + 12.9275678520585 + ], + [ + 77.558113652664701, + 12.9276701820911 + ], + [ + 77.558250507913996, + 12.9277682209026 + ], + [ + 77.558287622779602, + 12.9277949607966 + ], + [ + 77.558450334331496, + 12.927888228650501 + ], + [ + 77.558597850084197, + 12.927959058897899 + ], + [ + 77.558615785904095, + 12.9279679176109 + ], + [ + 77.558635460048706, + 12.927977888600401 + ], + [ + 77.558975285388996, + 12.9281089454926 + ], + [ + 77.559000139998801, + 12.92811886564 + ], + [ + 77.559138503873797, + 12.928195431913499 + ], + [ + 77.559188443361805, + 12.928237856400401 + ], + [ + 77.559258756235593, + 12.9282955916227 + ], + [ + 77.559303967342302, + 12.928332715788301 + ], + [ + 77.559394233847897, + 12.928434598827099 + ], + [ + 77.559461199877504, + 12.928509606620599 + ], + [ + 77.559582123304395, + 12.9286258700324 + ], + [ + 77.559654097302101, + 12.928740354968101 + ], + [ + 77.559662259418502, + 12.9287504388061 + ], + [ + 77.559879252276403, + 12.929029511438699 + ], + [ + 77.559984842070406, + 12.929166252865301 + ], + [ + 77.560042806076694, + 12.9292616766009 + ], + [ + 77.560111292303503, + 12.929372807590299 + ], + [ + 77.560190392643406, + 12.929452213326099 + ], + [ + 77.560341778012102, + 12.929563659998299 + ], + [ + 77.560476862182796, + 12.9296571973779 + ], + [ + 77.560631609275902, + 12.9297595762544 + ], + [ + 77.560861116855307, + 12.929910911358199 + ], + [ + 77.560924940695102, + 12.929959975036599 + ], + [ + 77.560952800322696, + 12.929982288003201 + ], + [ + 77.561188824330003, + 12.930151627938001 + ], + [ + 77.561347808663001, + 12.930274292485899 + ], + [ + 77.561475940137697, + 12.930363380184099 + ], + [ + 77.561614259785301, + 12.930435427920999 + ], + [ + 77.561618312098602, + 12.9304376467731 + ], + [ + 77.561789625951505, + 12.9305274395591 + ], + [ + 77.561817980637997, + 12.9305418422899 + ], + [ + 77.561896114350702, + 12.9305828598786 + ], + [ + 77.5619134748395, + 12.9305917239591 + ], + [ + 77.561995453414198, + 12.930614634597999 + ], + [ + 77.562305798993194, + 12.930620620978599 + ], + [ + 77.562378360327997, + 12.930623296197499 + ], + [ + 77.562394293749804, + 12.9306615366266 + ], + [ + 77.562505271878806, + 12.930705619343099 + ], + [ + 77.562525498907604, + 12.930713325896599 + ], + [ + 77.5626709046022, + 12.9306441878676 + ], + [ + 77.562671011848906, + 12.930644137123901 + ], + [ + 77.563010734514606, + 12.930539160565999 + ], + [ + 77.563429372809694, + 12.930439054749201 + ], + [ + 77.563618401876198, + 12.930403317520099 + ], + [ + 77.563667811893296, + 12.9303937973761 + ], + [ + 77.563682381696594, + 12.9304737284527 + ], + [ + 77.563686334424403, + 12.9304954123171 + ], + [ + 77.563686716899795, + 12.9304975090949 + ], + [ + 77.564082796566794, + 12.930424963477 + ], + [ + 77.564104918762894, + 12.930420911763401 + ], + [ + 77.564109401488295, + 12.9304200907288 + ], + [ + 77.564120598189305, + 12.9304180400484 + ], + [ + 77.564640946100994, + 12.930322731926299 + ], + [ + 77.564681462497802, + 12.9303153110314 + ], + [ + 77.564806376459302, + 12.9302924315966 + ], + [ + 77.564809762397303, + 12.93029181106 + ], + [ + 77.565165711788694, + 12.930226614164599 + ], + [ + 77.565243687905607, + 12.930212264843499 + ], + [ + 77.565253182788496, + 12.9302105172479 + ], + [ + 77.565255258647795, + 12.930210135452599 + ], + [ + 77.565318172375697, + 12.930198557862299 + ], + [ + 77.565944928086594, + 12.930083217483601 + ], + [ + 77.565963348767696, + 12.9300798281255 + ], + [ + 77.565985671090203, + 12.9300757200868 + ], + [ + 77.5660342320909, + 12.930066783372499 + ], + [ + 77.566586692876001, + 12.929965114334699 + ], + [ + 77.566598485140503, + 12.92996294386 + ], + [ + 77.566676034440704, + 12.929948672420799 + ], + [ + 77.566676290929195, + 12.9299486247246 + ], + [ + 77.566680421484605, + 12.929959926447999 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "363", + "group": "Bandepalya", + "Corporatio": "South", + "ac_no": "175", + "ac": "Bommanahalli", + "corporat_1": "4", + "ward_id": "35", + "ward_name": "35 - Bandepalya", + "corporat_2": "ದಕ್ಷಿಣ", + "ac_kn": "ಬೊಮ್ಮನಹಳ್ಳಿ", + "ward_name_": "ಬಂಡೇಪಾಳ್ಯ", + "dig_ward_n": "Bandepalya", + "Assembly": "175 - Bommanahalli", + "Slno": "35" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.653805138686806, + 12.8788223480142 + ], + [ + 77.653400876210299, + 12.8785606492567 + ], + [ + 77.653399728771205, + 12.8784516655481 + ], + [ + 77.653350178437293, + 12.8781882833194 + ], + [ + 77.653435903848504, + 12.878000018511001 + ], + [ + 77.653402617512697, + 12.877245035717801 + ], + [ + 77.653388586326798, + 12.8768378785899 + ], + [ + 77.653247498058803, + 12.876395677612299 + ], + [ + 77.653110346035007, + 12.8764064770054 + ], + [ + 77.653097033570006, + 12.876264982935 + ], + [ + 77.653097393377095, + 12.8762649612217 + ], + [ + 77.653051166616194, + 12.875829412793101 + ], + [ + 77.653052222016001, + 12.8755610105696 + ], + [ + 77.652992771160498, + 12.8754679156397 + ], + [ + 77.653020473272804, + 12.8753967577455 + ], + [ + 77.653021127704505, + 12.8753967330479 + ], + [ + 77.653021172600006, + 12.8753949619263 + ], + [ + 77.653026307387904, + 12.875194464998 + ], + [ + 77.653004471383198, + 12.875064178107801 + ], + [ + 77.653040046442996, + 12.8749720321428 + ], + [ + 77.652171308192294, + 12.8743741838743 + ], + [ + 77.651844384992103, + 12.874145161681 + ], + [ + 77.651704748715005, + 12.874211111792601 + ], + [ + 77.651303161284204, + 12.874249239181699 + ], + [ + 77.650649200266599, + 12.874324577458699 + ], + [ + 77.650445182449602, + 12.874326642115999 + ], + [ + 77.650228450706294, + 12.874278042312501 + ], + [ + 77.6500881681511, + 12.8742726753896 + ], + [ + 77.649816369264599, + 12.8745739234766 + ], + [ + 77.649460638847998, + 12.8749417982173 + ], + [ + 77.648851479185495, + 12.875595940179 + ], + [ + 77.648833710898003, + 12.875643924432699 + ], + [ + 77.648189387101993, + 12.8762892389091 + ], + [ + 77.647989881149996, + 12.8764890504634 + ], + [ + 77.647603583849403, + 12.8769295276969 + ], + [ + 77.647372192258302, + 12.877167069536201 + ], + [ + 77.647358951650702, + 12.8772054472463 + ], + [ + 77.646879207381204, + 12.877921640204701 + ], + [ + 77.646433586266696, + 12.878593028556301 + ], + [ + 77.646057907779294, + 12.8791504108565 + ], + [ + 77.645835839813103, + 12.8794409210753 + ], + [ + 77.645815284663598, + 12.8795716375417 + ], + [ + 77.6457848463522, + 12.879596325359699 + ], + [ + 77.645743782858204, + 12.8797229470578 + ], + [ + 77.645708718209207, + 12.879724735108899 + ], + [ + 77.645395368785302, + 12.8802088234537 + ], + [ + 77.644545007199, + 12.881594806413601 + ], + [ + 77.643932108233201, + 12.882625228003 + ], + [ + 77.643270871467806, + 12.883693186821899 + ], + [ + 77.642811131432396, + 12.8844603253487 + ], + [ + 77.642657631748804, + 12.884708698814901 + ], + [ + 77.643390276568496, + 12.8850359238634 + ], + [ + 77.643830665162398, + 12.8852107456038 + ], + [ + 77.644758149625204, + 12.8865279722129 + ], + [ + 77.644894714160202, + 12.886695247942299 + ], + [ + 77.645034368197798, + 12.886460488347099 + ], + [ + 77.646163687239707, + 12.885506979816601 + ], + [ + 77.646184938803898, + 12.885509636856099 + ], + [ + 77.646262145354697, + 12.885527087787199 + ], + [ + 77.646954234541099, + 12.8856835171922 + ], + [ + 77.647051915729605, + 12.8856996125468 + ], + [ + 77.647774288426106, + 12.885818636778 + ], + [ + 77.647935645941601, + 12.8858661583541 + ], + [ + 77.648517419575199, + 12.886037496698 + ], + [ + 77.648668784244606, + 12.886082074891799 + ], + [ + 77.648933563045503, + 12.8861164533118 + ], + [ + 77.6493331923743, + 12.886168339240999 + ], + [ + 77.649386067737495, + 12.8861752045984 + ], + [ + 77.649371144354802, + 12.8859326112182 + ], + [ + 77.649348494551205, + 12.8855644190929 + ], + [ + 77.649338522042299, + 12.8854023040409 + ], + [ + 77.649333166973804, + 12.8853152466799 + ], + [ + 77.649330029564595, + 12.885194420234001 + ], + [ + 77.649329916289503, + 12.885190041681099 + ], + [ + 77.649315604043693, + 12.8846388566346 + ], + [ + 77.649313310204406, + 12.8845505125455 + ], + [ + 77.649311129673407, + 12.884466549718599 + ], + [ + 77.649309680975094, + 12.8844107566362 + ], + [ + 77.649308596790505, + 12.884368990693 + ], + [ + 77.649308595804001, + 12.884368952689501 + ], + [ + 77.649316294501304, + 12.8841410906136 + ], + [ + 77.649330891859094, + 12.883709015723101 + ], + [ + 77.649346752907903, + 12.883681487467801 + ], + [ + 77.649488811249398, + 12.883434927221099 + ], + [ + 77.649632481330698, + 12.883304160606601 + ], + [ + 77.649645714128695, + 12.883292116179399 + ], + [ + 77.649782628110003, + 12.883167499614199 + ], + [ + 77.649902617890604, + 12.883058285719301 + ], + [ + 77.650091966751106, + 12.882971068142 + ], + [ + 77.650091986093699, + 12.882971059232499 + ], + [ + 77.650086101665593, + 12.882957563384201 + ], + [ + 77.650086081998197, + 12.882957518277401 + ], + [ + 77.650127630487702, + 12.8829376925137 + ], + [ + 77.650155620106801, + 12.8829298982306 + ], + [ + 77.650220679782294, + 12.882911781237899 + ], + [ + 77.650239430098907, + 12.8829031445705 + ], + [ + 77.650255074007404, + 12.882895938606 + ], + [ + 77.650340615425307, + 12.8828565361279 + ], + [ + 77.650386402056597, + 12.8828354460156 + ], + [ + 77.6505440614458, + 12.8827960566038 + ], + [ + 77.651109322971706, + 12.8826548315753 + ], + [ + 77.651759410879194, + 12.882498855389199 + ], + [ + 77.651876374719095, + 12.882410926692399 + ], + [ + 77.651977998202597, + 12.882334529916699 + ], + [ + 77.652135216020298, + 12.8821705035962 + ], + [ + 77.652241914641806, + 12.8820457938067 + ], + [ + 77.652256549635695, + 12.8820163207033 + ], + [ + 77.652289103951006, + 12.8819507602373 + ], + [ + 77.6523373464385, + 12.8818536065515 + ], + [ + 77.652341030137507, + 12.8818431466826 + ], + [ + 77.652375662937303, + 12.8817102342343 + ], + [ + 77.652388684977595, + 12.8817078437842 + ], + [ + 77.652455629127303, + 12.881517771851099 + ], + [ + 77.652506620965596, + 12.8813780970049 + ], + [ + 77.652615473757706, + 12.8810799312227 + ], + [ + 77.652819937057302, + 12.8806907771593 + ], + [ + 77.652953843152602, + 12.880435914062099 + ], + [ + 77.652955180705106, + 12.8804372851304 + ], + [ + 77.652991068982402, + 12.8803641848264 + ], + [ + 77.653009631940407, + 12.880276035247601 + ], + [ + 77.653357782825495, + 12.879651041130201 + ], + [ + 77.653805138686806, + 12.8788223480142 + ] + ] + ], + [ + [ + [ + 77.641269647660494, + 12.892623219391901 + ], + [ + 77.641836614982395, + 12.892800666997401 + ], + [ + 77.641992128103993, + 12.8922913617904 + ], + [ + 77.642029879160603, + 12.892297425247 + ], + [ + 77.642305966011506, + 12.8917606277851 + ], + [ + 77.642436637604803, + 12.891480617228 + ], + [ + 77.642523307539193, + 12.8912686092347 + ], + [ + 77.642972657814298, + 12.8913872803756 + ], + [ + 77.643295336646801, + 12.891507284900101 + ], + [ + 77.643522011859702, + 12.8916219558901 + ], + [ + 77.6438086148313, + 12.891335441053 + ], + [ + 77.643896899615498, + 12.891264515019 + ], + [ + 77.643896204039905, + 12.891248832942001 + ], + [ + 77.643893193001205, + 12.8911809475961 + ], + [ + 77.643869446603603, + 12.890645569183899 + ], + [ + 77.643867739385001, + 12.8906070778241 + ], + [ + 77.643820691663095, + 12.890174928078601 + ], + [ + 77.643775840001297, + 12.8896395906477 + ], + [ + 77.6437735860451, + 12.8896126955154 + ], + [ + 77.643609503524701, + 12.887654209781999 + ], + [ + 77.643607780065395, + 12.8876353857376 + ], + [ + 77.643455821321396, + 12.8876263366588 + ], + [ + 77.641453787077296, + 12.887115313740299 + ], + [ + 77.641414640118299, + 12.887105695533 + ], + [ + 77.641247320669606, + 12.8870644257184 + ], + [ + 77.641247260654097, + 12.887064464010001 + ], + [ + 77.641157799297602, + 12.8871215427944 + ], + [ + 77.641048476520993, + 12.887296130502801 + ], + [ + 77.641031357442202, + 12.887335522067801 + ], + [ + 77.640795517560804, + 12.8877079169146 + ], + [ + 77.640487958977999, + 12.888211544614 + ], + [ + 77.640376147295598, + 12.8883935191998 + ], + [ + 77.640173181389798, + 12.888723849076699 + ], + [ + 77.639716067528695, + 12.889464189006899 + ], + [ + 77.639580103773099, + 12.889681344687901 + ], + [ + 77.639360930147305, + 12.890031398443501 + ], + [ + 77.639248767534596, + 12.8902208836996 + ], + [ + 77.638996043583901, + 12.8906237900972 + ], + [ + 77.638791163518903, + 12.890950418584101 + ], + [ + 77.638637678186399, + 12.8911951105685 + ], + [ + 77.638179026437996, + 12.8919307707396 + ], + [ + 77.637976325894101, + 12.892255893568199 + ], + [ + 77.637439849664403, + 12.893143316003201 + ], + [ + 77.637346652832605, + 12.8932936022057 + ], + [ + 77.637210354769195, + 12.893513393266099 + ], + [ + 77.636910328727296, + 12.8939972046057 + ], + [ + 77.636822125239306, + 12.894142124713399 + ], + [ + 77.636775737584898, + 12.894218341607001 + ], + [ + 77.636462410185302, + 12.8947331464525 + ], + [ + 77.636163379944804, + 12.8952415021134 + ], + [ + 77.636071276397701, + 12.8953907950941 + ], + [ + 77.635773489784995, + 12.8958749681616 + ], + [ + 77.635229209709806, + 12.8967599116008 + ], + [ + 77.634581567809704, + 12.8978086710864 + ], + [ + 77.634411728067903, + 12.898083700766801 + ], + [ + 77.634031851228002, + 12.8987011530124 + ], + [ + 77.633635365882597, + 12.8993455991769 + ], + [ + 77.632945517082803, + 12.9004918709993 + ], + [ + 77.632644194893601, + 12.9009722169705 + ], + [ + 77.632639959052199, + 12.9012187361336 + ], + [ + 77.632475189721603, + 12.9015144566161 + ], + [ + 77.632277897353006, + 12.9018472590563 + ], + [ + 77.632126451290901, + 12.902113866485299 + ], + [ + 77.632039321453107, + 12.9022794045729 + ], + [ + 77.632239919827498, + 12.902228355779901 + ], + [ + 77.632338590214303, + 12.902401695648599 + ], + [ + 77.632359924352002, + 12.902543034310799 + ], + [ + 77.632357784821195, + 12.902627117786301 + ], + [ + 77.632385685618303, + 12.902803439700101 + ], + [ + 77.632389684102407, + 12.902959090114701 + ], + [ + 77.632373882830393, + 12.903033608324099 + ], + [ + 77.632343723699506, + 12.9030943305614 + ], + [ + 77.632323111835504, + 12.9031619264808 + ], + [ + 77.632317222577896, + 12.9032781711082 + ], + [ + 77.632306522761894, + 12.903387495252 + ], + [ + 77.632303154797498, + 12.9036384396549 + ], + [ + 77.632302530270096, + 12.9036849744557 + ], + [ + 77.632317046096304, + 12.903940439195001 + ], + [ + 77.632362591119204, + 12.9040644250046 + ], + [ + 77.632368946120806, + 12.904263556951401 + ], + [ + 77.632354590817599, + 12.904356436014201 + ], + [ + 77.632509263315796, + 12.9043551026306 + ], + [ + 77.632553587672902, + 12.904360977932299 + ], + [ + 77.6325538551948, + 12.9043865355129 + ], + [ + 77.632554098416904, + 12.9044097715657 + ], + [ + 77.632547479730903, + 12.9044563125317 + ], + [ + 77.632543676580099, + 12.9044812362666 + ], + [ + 77.632535523812294, + 12.904534656820699 + ], + [ + 77.632502126036798, + 12.904770752519701 + ], + [ + 77.632467872417706, + 12.9050128916454 + ], + [ + 77.632504596473197, + 12.9051531327185 + ], + [ + 77.6328032744008, + 12.905134465348 + ], + [ + 77.633197955948106, + 12.9051117978267 + ], + [ + 77.633543464403303, + 12.905111205062299 + ], + [ + 77.633557969521505, + 12.9051104644431 + ], + [ + 77.633810915537495, + 12.9050917628152 + ], + [ + 77.633855314065599, + 12.9069051987761 + ], + [ + 77.634531462011097, + 12.9071544015281 + ], + [ + 77.634669137299895, + 12.907193993028599 + ], + [ + 77.634976229194706, + 12.9072767241053 + ], + [ + 77.6350889694655, + 12.907307095446299 + ], + [ + 77.6357297180692, + 12.907101872857799 + ], + [ + 77.635452374279197, + 12.9064405145895 + ], + [ + 77.635363160841607, + 12.906446791922001 + ], + [ + 77.635238366210501, + 12.9060304991308 + ], + [ + 77.635163696728597, + 12.905722487517901 + ], + [ + 77.634867837585603, + 12.905734058487401 + ], + [ + 77.634835153710199, + 12.9054020612709 + ], + [ + 77.634944856745804, + 12.9053739792898 + ], + [ + 77.634941896206001, + 12.9053144101622 + ], + [ + 77.634918723841494, + 12.904848206868101 + ], + [ + 77.634905787454301, + 12.9045174265759 + ], + [ + 77.634885375886995, + 12.9039955262531 + ], + [ + 77.634866771369701, + 12.9035198126649 + ], + [ + 77.635034025172899, + 12.9035144042673 + ], + [ + 77.6355567115463, + 12.903485069827999 + ], + [ + 77.636024062499999, + 12.9034584021559 + ], + [ + 77.636001394978706, + 12.903203725887201 + ], + [ + 77.635996061444303, + 12.9030850547464 + ], + [ + 77.635988749330494, + 12.9029066187636 + ], + [ + 77.635966749455605, + 12.902591483257099 + ], + [ + 77.635952182691, + 12.902431921502201 + ], + [ + 77.6359315176595, + 12.9022055688033 + ], + [ + 77.635922158302193, + 12.9020565099796 + ], + [ + 77.635927027968805, + 12.9017744800018 + ], + [ + 77.635957862004503, + 12.901767014953601 + ], + [ + 77.6359531174175, + 12.901714895312701 + ], + [ + 77.635882723837796, + 12.9013329886888 + ], + [ + 77.635832055260806, + 12.901038310912 + ], + [ + 77.635763718989097, + 12.900648568985 + ], + [ + 77.635686861183004, + 12.900289606324399 + ], + [ + 77.635661245544398, + 12.900170350456399 + ], + [ + 77.635662630391593, + 12.900069944881899 + ], + [ + 77.635637610442203, + 12.89997159246 + ], + [ + 77.635830310397793, + 12.899946230521399 + ], + [ + 77.636470411005803, + 12.8998583967442 + ], + [ + 77.6364921048756, + 12.8998554198521 + ], + [ + 77.6367976840002, + 12.8998121813478 + ], + [ + 77.636914206573294, + 12.899770848566201 + ], + [ + 77.637800019203098, + 12.8996663018075 + ], + [ + 77.638617955404996, + 12.8995949446313 + ], + [ + 77.638958987022093, + 12.8995867216083 + ], + [ + 77.639173486526602, + 12.899362260739 + ], + [ + 77.639174482692098, + 12.899085337656601 + ], + [ + 77.639174822245295, + 12.898991021908 + ], + [ + 77.639147073121194, + 12.8980179813987 + ], + [ + 77.639148068054396, + 12.8978533864226 + ], + [ + 77.639151347526294, + 12.8973104169017 + ], + [ + 77.639157419374499, + 12.8971459043827 + ], + [ + 77.639101904139494, + 12.8970565908095 + ], + [ + 77.639014841927207, + 12.896942156475999 + ], + [ + 77.638945505979706, + 12.896840819322 + ], + [ + 77.638727019468305, + 12.896624387723801 + ], + [ + 77.638688744912002, + 12.8965062158706 + ], + [ + 77.638643665841599, + 12.896110840829101 + ], + [ + 77.638622454142407, + 12.895981733546799 + ], + [ + 77.638610744856393, + 12.8957944537707 + ], + [ + 77.638578638312296, + 12.895706815411 + ], + [ + 77.638565901894097, + 12.895607508298999 + ], + [ + 77.638538592953196, + 12.895404359072099 + ], + [ + 77.638694829861805, + 12.8954167656313 + ], + [ + 77.638825501455202, + 12.8954594339067 + ], + [ + 77.638951561849893, + 12.895615897780701 + ], + [ + 77.639003068647696, + 12.895694735320999 + ], + [ + 77.639137217490003, + 12.8957545730766 + ], + [ + 77.639442518762607, + 12.8959260049756 + ], + [ + 77.639518860929996, + 12.895956785991499 + ], + [ + 77.639654781325206, + 12.896037904543 + ], + [ + 77.639665604356097, + 12.896047545788599 + ], + [ + 77.639884914042895, + 12.896235598009699 + ], + [ + 77.640006595607801, + 12.896320585866899 + ], + [ + 77.640152497116304, + 12.8963761369273 + ], + [ + 77.640209819796695, + 12.896360985341699 + ], + [ + 77.640425068139393, + 12.896377819996401 + ], + [ + 77.640682904817695, + 12.8963568010732 + ], + [ + 77.640778908437298, + 12.8963634679912 + ], + [ + 77.640951476300501, + 12.8963192816093 + ], + [ + 77.641635377375806, + 12.896251548047999 + ], + [ + 77.642276298226307, + 12.8963021323453 + ], + [ + 77.642286965295099, + 12.896027455322599 + ], + [ + 77.642257630855795, + 12.895662108214699 + ], + [ + 77.642036289177298, + 12.895687442503201 + ], + [ + 77.641999621128093, + 12.8956427741524 + ], + [ + 77.641999778806095, + 12.8955607816207 + ], + [ + 77.641860949233106, + 12.8955567709099 + ], + [ + 77.641830281410193, + 12.895266093283899 + ], + [ + 77.641768945764397, + 12.895119421087299 + ], + [ + 77.641552937620304, + 12.8950434182218 + ], + [ + 77.641306261653298, + 12.895062085592301 + ], + [ + 77.640998250040397, + 12.8950980869496 + ], + [ + 77.640839577391304, + 12.8951234212381 + ], + [ + 77.640803909379898, + 12.8949190802006 + ], + [ + 77.640797166206696, + 12.894684304053801 + ], + [ + 77.640773241557, + 12.8944830637616 + ], + [ + 77.641200120936404, + 12.8943941103591 + ], + [ + 77.641246592736906, + 12.8941297171061 + ], + [ + 77.641290927741807, + 12.8940173795374 + ], + [ + 77.641354596808995, + 12.893932376332501 + ], + [ + 77.641377931022006, + 12.893851373278499 + ], + [ + 77.641375264254805, + 12.8937127013835 + ], + [ + 77.641312612799695, + 12.8935711183374 + ], + [ + 77.641203512332893, + 12.8933905591343 + ], + [ + 77.641154789359902, + 12.8932751230739 + ], + [ + 77.641129656793893, + 12.893143911970199 + ], + [ + 77.641185257091095, + 12.8929553394956 + ], + [ + 77.641209257995996, + 12.892849335498999 + ], + [ + 77.641219258372999, + 12.892727330899101 + ], + [ + 77.641253926346707, + 12.8926579949516 + ], + [ + 77.641269647660494, + 12.892623219391901 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "368", + "group": "Ittamadu Ward", + "Corporatio": "West", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "5", + "ward_id": "90", + "ward_name": "90 - Ittamadu", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ಇಟ್ಟಮಡು", + "dig_ward_n": "Ittamadu Ward", + "Assembly": "171 - Padmanabanagar", + "Slno": "90" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.5417735581687, + 12.9188132346878 + ], + [ + 77.5417435360186, + 12.918804492252701 + ], + [ + 77.541684654330197, + 12.918788125391901 + ], + [ + 77.5415146923105, + 12.918659905920199 + ], + [ + 77.541376029402599, + 12.9185528390986 + ], + [ + 77.541346434382305, + 12.9185294110402 + ], + [ + 77.541313442936499, + 12.918511662733501 + ], + [ + 77.541195337060898, + 12.918445051916599 + ], + [ + 77.541099297855496, + 12.9183974250435 + ], + [ + 77.541090042717698, + 12.9183929977613 + ], + [ + 77.541011579640895, + 12.918375691959 + ], + [ + 77.540965429595602, + 12.9183659770398 + ], + [ + 77.540960779185795, + 12.918361504939 + ], + [ + 77.540935190513693, + 12.918335779153599 + ], + [ + 77.540932865309301, + 12.918333543102801 + ], + [ + 77.540821289808306, + 12.9182296003166 + ], + [ + 77.540655323427501, + 12.9180979532325 + ], + [ + 77.540646632477205, + 12.918092391101199 + ], + [ + 77.540607241119801, + 12.9180679289206 + ], + [ + 77.5405765407166, + 12.9180490288672 + ], + [ + 77.540514376981605, + 12.918049633732499 + ], + [ + 77.540468501047698, + 12.918067020206299 + ], + [ + 77.540448423901296, + 12.918073991595101 + ], + [ + 77.540394791243301, + 12.9180643493654 + ], + [ + 77.540361269991294, + 12.9180511234304 + ], + [ + 77.540351439285104, + 12.9180467017172 + ], + [ + 77.540250544439104, + 12.917974276231201 + ], + [ + 77.540236063346697, + 12.917965382395201 + ], + [ + 77.540106297729395, + 12.917884202997399 + ], + [ + 77.540001545125904, + 12.9178287550271 + ], + [ + 77.539875461493196, + 12.9177701264815 + ], + [ + 77.539853520587101, + 12.9177635638656 + ], + [ + 77.539694087051302, + 12.9177086476447 + ], + [ + 77.539642608442705, + 12.917684302859101 + ], + [ + 77.539628138798406, + 12.917676538211801 + ], + [ + 77.539466738887498, + 12.917597924799299 + ], + [ + 77.539344086167205, + 12.917537003903 + ], + [ + 77.539308217010699, + 12.9175192832794 + ], + [ + 77.539293929989299, + 12.917529586291099 + ], + [ + 77.539273334307197, + 12.917542209335799 + ], + [ + 77.539251011854105, + 12.917554849171999 + ], + [ + 77.539127830694596, + 12.917612514125199 + ], + [ + 77.539090588539096, + 12.917629816400501 + ], + [ + 77.538890597743503, + 12.9177198497262 + ], + [ + 77.538845377165302, + 12.917745134940899 + ], + [ + 77.538832782646693, + 12.9177520334514 + ], + [ + 77.538698272023694, + 12.9178278778602 + ], + [ + 77.538690522229203, + 12.9178337824202 + ], + [ + 77.538488052057303, + 12.9179880295702 + ], + [ + 77.5383636342805, + 12.9180942679472 + ], + [ + 77.538361400370704, + 12.918101065715501 + ], + [ + 77.538335687583697, + 12.918176981589699 + ], + [ + 77.538325863166804, + 12.918230156164499 + ], + [ + 77.538322900211199, + 12.9182787466666 + ], + [ + 77.538355498442698, + 12.918314568686201 + ], + [ + 77.538373615612898, + 12.9183414967525 + ], + [ + 77.538402372382393, + 12.9183389584921 + ], + [ + 77.538412721624496, + 12.918337728533 + ], + [ + 77.538442339228595, + 12.918363415441201 + ], + [ + 77.538467431973302, + 12.9183970517294 + ], + [ + 77.538514351577803, + 12.9184259584329 + ], + [ + 77.538626136864593, + 12.918493761390801 + ], + [ + 77.538752540236601, + 12.9185840089772 + ], + [ + 77.538753725655098, + 12.918587385474799 + ], + [ + 77.538781993125994, + 12.918650353726999 + ], + [ + 77.538786838902595, + 12.918788086256299 + ], + [ + 77.538773864141703, + 12.918928250754 + ], + [ + 77.538731573366803, + 12.919015621275401 + ], + [ + 77.538668065492004, + 12.919111103495201 + ], + [ + 77.538656250674805, + 12.9191338259883 + ], + [ + 77.538576588084894, + 12.919287040917 + ], + [ + 77.538562090503603, + 12.919333484886399 + ], + [ + 77.538551485142506, + 12.919366338911599 + ], + [ + 77.538538115920403, + 12.919410513226399 + ], + [ + 77.538542311215295, + 12.919483879633001 + ], + [ + 77.538550684026106, + 12.9195718868579 + ], + [ + 77.538558264435594, + 12.9196384442976 + ], + [ + 77.538598334228894, + 12.919673064253899 + ], + [ + 77.538672016771699, + 12.919729944176201 + ], + [ + 77.538684782567003, + 12.9197399841115 + ], + [ + 77.538692379421803, + 12.9197512036516 + ], + [ + 77.538735105415398, + 12.9198208073323 + ], + [ + 77.538756927408201, + 12.9198725448248 + ], + [ + 77.538797522256502, + 12.919959109332 + ], + [ + 77.538816973419202, + 12.920004093823 + ], + [ + 77.538883392570995, + 12.920163472832201 + ], + [ + 77.538885408832101, + 12.920168312101 + ], + [ + 77.538890248359905, + 12.9202484482602 + ], + [ + 77.538913586866698, + 12.9203363098949 + ], + [ + 77.538914876623096, + 12.9204639129032 + ], + [ + 77.5389113789969, + 12.920573493012499 + ], + [ + 77.538940166985896, + 12.9207448728793 + ], + [ + 77.539049493011504, + 12.920910952031999 + ], + [ + 77.539163869181607, + 12.9211210262847 + ], + [ + 77.539220103529203, + 12.921274069642701 + ], + [ + 77.539257747567206, + 12.921410353702999 + ], + [ + 77.539272630288906, + 12.9215728340056 + ], + [ + 77.539296277385404, + 12.9216911847526 + ], + [ + 77.539297304890098, + 12.9217928154265 + ], + [ + 77.539307313657602, + 12.9218717719137 + ], + [ + 77.539334538086493, + 12.921888447180599 + ], + [ + 77.539384313654395, + 12.921915067123701 + ], + [ + 77.539545744121099, + 12.9219394714383 + ], + [ + 77.539631554116397, + 12.921943153933199 + ], + [ + 77.5396946027615, + 12.921973032690801 + ], + [ + 77.539739990536503, + 12.922021152715599 + ], + [ + 77.539826332633197, + 12.922134375975499 + ], + [ + 77.539890237830406, + 12.922248946858501 + ], + [ + 77.539971954697194, + 12.9224740197283 + ], + [ + 77.539989300084798, + 12.9225215732398 + ], + [ + 77.540069646972995, + 12.9227418520007 + ], + [ + 77.540134000294998, + 12.9230145260154 + ], + [ + 77.540243899409205, + 12.923237065748699 + ], + [ + 77.540291702200193, + 12.9234669858293 + ], + [ + 77.540272070672202, + 12.923802590843399 + ], + [ + 77.540266141358899, + 12.923956238774799 + ], + [ + 77.540276299143798, + 12.9240498751129 + ], + [ + 77.5402547187485, + 12.9241359149906 + ], + [ + 77.540228469416704, + 12.9241587572805 + ], + [ + 77.5401257858815, + 12.924251233241501 + ], + [ + 77.539948490663207, + 12.924365892791601 + ], + [ + 77.539717858142694, + 12.924500270091601 + ], + [ + 77.539680062349902, + 12.924519836684899 + ], + [ + 77.539571985586207, + 12.924534440486299 + ], + [ + 77.539415130789905, + 12.9245642003063 + ], + [ + 77.539311681654993, + 12.9245810176578 + ], + [ + 77.5391475037557, + 12.9246266593507 + ], + [ + 77.538967887177293, + 12.9246826152179 + ], + [ + 77.538868752611407, + 12.924727623954 + ], + [ + 77.538770972811506, + 12.9246788841777 + ], + [ + 77.5386933392559, + 12.9246299483819 + ], + [ + 77.538578181982501, + 12.924513617093099 + ], + [ + 77.538567150507902, + 12.9245022775007 + ], + [ + 77.5385549721546, + 12.9245310245464 + ], + [ + 77.5385835645165, + 12.9246398297637 + ], + [ + 77.538716914982501, + 12.9247366208388 + ], + [ + 77.5388173540032, + 12.9248124346739 + ], + [ + 77.538950027926802, + 12.9248749073467 + ], + [ + 77.539168265875205, + 12.9254738806381 + ], + [ + 77.539042126815602, + 12.9259408070726 + ], + [ + 77.538742800258703, + 12.926177942036199 + ], + [ + 77.539057757969303, + 12.927135723554599 + ], + [ + 77.539134813198203, + 12.9275258104814 + ], + [ + 77.5392568184959, + 12.928023030906401 + ], + [ + 77.539481642668804, + 12.9287653976236 + ], + [ + 77.540039425826293, + 12.9286434584769 + ], + [ + 77.5403317977444, + 12.928553126233499 + ], + [ + 77.540599964993007, + 12.928477383904999 + ], + [ + 77.540809717025695, + 12.9284210365857 + ], + [ + 77.541015788443403, + 12.929178527093599 + ], + [ + 77.541616339461797, + 12.9290577569153 + ], + [ + 77.541551728341801, + 12.9288029531604 + ], + [ + 77.541501534220004, + 12.9286112512881 + ], + [ + 77.5414949842814, + 12.928538253353199 + ], + [ + 77.5418195845605, + 12.928469984246901 + ], + [ + 77.541800263115306, + 12.928346326997699 + ], + [ + 77.542131303876104, + 12.9283038198183 + ], + [ + 77.542119711008993, + 12.928149248256901 + ], + [ + 77.542468785118601, + 12.9280809791506 + ], + [ + 77.5424810111125, + 12.928079222022401 + ], + [ + 77.542440014325507, + 12.9277049067977 + ], + [ + 77.542586670286099, + 12.9274926166252 + ], + [ + 77.542589909231694, + 12.9274831139849 + ], + [ + 77.542898392400502, + 12.9270399623431 + ], + [ + 77.543311983858004, + 12.926379787062199 + ], + [ + 77.543571201176107, + 12.9262809799298 + ], + [ + 77.543863029510106, + 12.926220763962 + ], + [ + 77.544122585245503, + 12.9261503459525 + ], + [ + 77.544367117107697, + 12.926052871454599 + ], + [ + 77.544366662220895, + 12.926030017407401 + ], + [ + 77.544265237782497, + 12.925774435504 + ], + [ + 77.544101268116904, + 12.9250873451545 + ], + [ + 77.544064349135397, + 12.9249720555573 + ], + [ + 77.543877230893301, + 12.924560615213499 + ], + [ + 77.543838206881503, + 12.924428533401599 + ], + [ + 77.543558811292201, + 12.9236501399724 + ], + [ + 77.543466032420099, + 12.9232386390757 + ], + [ + 77.543528235587502, + 12.9224927448094 + ], + [ + 77.543517767219896, + 12.922017563826101 + ], + [ + 77.543496200650196, + 12.921917587290499 + ], + [ + 77.5434539602564, + 12.9218089672228 + ], + [ + 77.5434388862476, + 12.9217702061667 + ], + [ + 77.543305399539307, + 12.9215230402238 + ], + [ + 77.543074430838502, + 12.920939670094899 + ], + [ + 77.542967476516097, + 12.920692585618699 + ], + [ + 77.542933138247804, + 12.9206132584206 + ], + [ + 77.542873087368605, + 12.920474530944499 + ], + [ + 77.5427332714805, + 12.920197673586699 + ], + [ + 77.542662647952795, + 12.920101139885 + ], + [ + 77.542622230700701, + 12.920045894198401 + ], + [ + 77.542519143590198, + 12.919901064472301 + ], + [ + 77.542391520295396, + 12.919721763183301 + ], + [ + 77.542267385611297, + 12.9195246673964 + ], + [ + 77.542185446940096, + 12.919335424691001 + ], + [ + 77.542148949130194, + 12.9192113883913 + ], + [ + 77.542100503588202, + 12.9190467498779 + ], + [ + 77.542018828032994, + 12.9188634511495 + ], + [ + 77.542010427659406, + 12.918836548064499 + ], + [ + 77.542001212477103, + 12.9188070355564 + ], + [ + 77.541998037480099, + 12.918796866841101 + ], + [ + 77.541986976848705, + 12.9187987341483 + ], + [ + 77.541959394174398, + 12.9188035200541 + ], + [ + 77.541861623640102, + 12.9188123773167 + ], + [ + 77.541820756657401, + 12.918812775185399 + ], + [ + 77.5417735581687, + 12.9188132346878 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "364", + "group": "Devagiri Temple Ward", + "Corporatio": "West", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "5", + "ward_id": "80", + "ward_name": "80 - Devagiri Temple Ward", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ದೇವಗಿರಿ ದೇವಸ್ಥಾನ ವಾರ್ಡ್", + "dig_ward_n": "Devagiri Temple Ward", + "Assembly": "171 - Padmanabanagar", + "Slno": "80" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.569339952373596, + 12.9299192759324 + ], + [ + 77.569256172218999, + 12.929921651389799 + ], + [ + 77.5680432939442, + 12.9299518660983 + ], + [ + 77.567955470806496, + 12.929953667494599 + ], + [ + 77.567823830011605, + 12.929956367254301 + ], + [ + 77.566809996696406, + 12.9300521360493 + ], + [ + 77.566680421484605, + 12.929959926447999 + ], + [ + 77.566691096785206, + 12.929989135417401 + ], + [ + 77.566691485080099, + 12.929990177797601 + ], + [ + 77.566700500296093, + 12.930014392932501 + ], + [ + 77.566701438852206, + 12.930016914274701 + ], + [ + 77.566713615427204, + 12.930049622399199 + ], + [ + 77.566716844959998, + 12.930058297216499 + ], + [ + 77.566754492219204, + 12.930159419090201 + ], + [ + 77.566757626095395, + 12.930167836459599 + ], + [ + 77.566772782198001, + 12.9302085478772 + ], + [ + 77.566817309662497, + 12.9303273034215 + ], + [ + 77.566820210940193, + 12.930335041873199 + ], + [ + 77.566836300496206, + 12.930377953044699 + ], + [ + 77.566839691313206, + 12.930386996688201 + ], + [ + 77.566858002275396, + 12.9304358316334 + ], + [ + 77.566876744821997, + 12.9304860681044 + ], + [ + 77.566878925806506, + 12.930491912774 + ], + [ + 77.566932370166995, + 12.9306351590159 + ], + [ + 77.566933290666796, + 12.9306376254233 + ], + [ + 77.566953296594207, + 12.93069124915 + ], + [ + 77.5669876057664, + 12.9307812569792 + ], + [ + 77.566992759726602, + 12.930794824030301 + ], + [ + 77.566994738966997, + 12.9308000346513 + ], + [ + 77.567034459070101, + 12.930904595368901 + ], + [ + 77.567036394755903, + 12.930909689872101 + ], + [ + 77.567077316057706, + 12.931017410783801 + ], + [ + 77.567079046369003, + 12.931021967041801 + ], + [ + 77.567084627231694, + 12.931036657399 + ], + [ + 77.567119320394994, + 12.9311287158685 + ], + [ + 77.567128041672106, + 12.931151828940401 + ], + [ + 77.567129729700994, + 12.931156303399399 + ], + [ + 77.567131109093197, + 12.931159959655901 + ], + [ + 77.567134797546004, + 12.931169733967099 + ], + [ + 77.567195180379301, + 12.931329791048899 + ], + [ + 77.567195878117403, + 12.931331639877101 + ], + [ + 77.567208131752494, + 12.9313641222345 + ], + [ + 77.567217979327907, + 12.931390188448701 + ], + [ + 77.567218060962006, + 12.931390425253699 + ], + [ + 77.567227229858304, + 12.931414704790001 + ], + [ + 77.567233374364406, + 12.9314327197257 + ], + [ + 77.567234322962804, + 12.9314355011598 + ], + [ + 77.567251460315205, + 12.931485741627601 + ], + [ + 77.567252440248794, + 12.9314886149056 + ], + [ + 77.567277890881897, + 12.931563228249001 + ], + [ + 77.567279359839304, + 12.9315675359162 + ], + [ + 77.567289957714806, + 12.9315986062006 + ], + [ + 77.567290513202394, + 12.931600235082 + ], + [ + 77.567298305172201, + 12.931623079024501 + ], + [ + 77.567301646609494, + 12.9316328739118 + ], + [ + 77.567302848678693, + 12.9316363927797 + ], + [ + 77.567303319732304, + 12.931637781269799 + ], + [ + 77.567316001858003, + 12.9316749609747 + ], + [ + 77.567316315196805, + 12.9316758785105 + ], + [ + 77.567331410135395, + 12.931720132905401 + ], + [ + 77.567331855463607, + 12.931721437627401 + ], + [ + 77.567333647267802, + 12.9317266916467 + ], + [ + 77.567335094361397, + 12.931730932672799 + ], + [ + 77.5673448490693, + 12.931759532172901 + ], + [ + 77.567345973318893, + 12.931762826846199 + ], + [ + 77.567361390175805, + 12.931808025792099 + ], + [ + 77.5673620007354, + 12.9318098158494 + ], + [ + 77.567366368648294, + 12.931822620878901 + ], + [ + 77.567367736955006, + 12.9318266332027 + ], + [ + 77.567373553888999, + 12.9318436873697 + ], + [ + 77.567373837790797, + 12.9318445184635 + ], + [ + 77.567376189820394, + 12.9318514139648 + ], + [ + 77.567431623157702, + 12.9318769600912 + ], + [ + 77.567439853943696, + 12.931880753085901 + ], + [ + 77.567440970019007, + 12.9318812679105 + ], + [ + 77.567442727682902, + 12.9318825542939 + ], + [ + 77.567453150243395, + 12.931890182559799 + ], + [ + 77.567476915317101, + 12.9319065444747 + ], + [ + 77.567477024866903, + 12.9319066198982 + ], + [ + 77.567477240067404, + 12.931906767753301 + ], + [ + 77.567483877060198, + 12.9319113371428 + ], + [ + 77.567484691504106, + 12.931912799045801 + ], + [ + 77.567485550986703, + 12.931914341816301 + ], + [ + 77.567492683982294, + 12.931927149438399 + ], + [ + 77.567497782724203, + 12.931936303639899 + ], + [ + 77.567522606534297, + 12.931980876030799 + ], + [ + 77.567551757815707, + 12.932033217986699 + ], + [ + 77.567585868055801, + 12.9320944634478 + ], + [ + 77.567610112006705, + 12.9321379926223 + ], + [ + 77.5676271619826, + 12.932168606363399 + ], + [ + 77.567627312111696, + 12.9321688759217 + ], + [ + 77.567627740928401, + 12.932169646863899 + ], + [ + 77.567627761568801, + 12.9321696837023 + ], + [ + 77.567629079895795, + 12.9321720513259 + ], + [ + 77.567632793712505, + 12.9321787192989 + ], + [ + 77.567633494622001, + 12.9321799772346 + ], + [ + 77.567633770491199, + 12.9321804732256 + ], + [ + 77.567636969171801, + 12.9321862157119 + ], + [ + 77.567641234718096, + 12.932193874763099 + ], + [ + 77.567648947607694, + 12.9322077237725 + ], + [ + 77.5676493970373, + 12.932208528843001 + ], + [ + 77.567685552846498, + 12.932273447464601 + ], + [ + 77.567687344072596, + 12.9322766632928 + ], + [ + 77.567703406034795, + 12.932305503333501 + ], + [ + 77.567712546090803, + 12.9323219140371 + ], + [ + 77.567714641334206, + 12.9323256761721 + ], + [ + 77.567726440569302, + 12.9323468625542 + ], + [ + 77.567727066415301, + 12.9323479857105 + ], + [ + 77.5677466029436, + 12.9323830642216 + ], + [ + 77.567750311538703, + 12.932393992028199 + ], + [ + 77.567751161519496, + 12.932396496165699 + ], + [ + 77.567770352260098, + 12.9324530495629 + ], + [ + 77.567771354219701, + 12.932456003931 + ], + [ + 77.567771634375205, + 12.932456828736701 + ], + [ + 77.567774933663699, + 12.932466551750901 + ], + [ + 77.567789719665498, + 12.9325101243176 + ], + [ + 77.567790724444095, + 12.932513084078501 + ], + [ + 77.567817565122695, + 12.9325921819292 + ], + [ + 77.5678192062215, + 12.932597018222999 + ], + [ + 77.567828943575904, + 12.9326257118177 + ], + [ + 77.567832216278404, + 12.932635356491501 + ], + [ + 77.5678560236002, + 12.9327055138041 + ], + [ + 77.567855037370506, + 12.932702607504799 + ], + [ + 77.567979677630802, + 12.9327456191051 + ], + [ + 77.568233339067604, + 12.932678226230699 + ], + [ + 77.568411306716598, + 12.932637032621599 + ], + [ + 77.568611094494898, + 12.9325848665975 + ], + [ + 77.568815643260905, + 12.932543422397501 + ], + [ + 77.568935410029695, + 12.9325102289512 + ], + [ + 77.568911104334106, + 12.932389617909401 + ], + [ + 77.569365768542994, + 12.9322711092993 + ], + [ + 77.569773170026494, + 12.932169568080599 + ], + [ + 77.570911175020001, + 12.9318694977388 + ], + [ + 77.570950734311793, + 12.9318565932101 + ], + [ + 77.570982796724294, + 12.931872427290701 + ], + [ + 77.571154484428504, + 12.932083416503801 + ], + [ + 77.571297496165002, + 12.932409366479501 + ], + [ + 77.571414807378005, + 12.9323793676945 + ], + [ + 77.571354954878899, + 12.931990587134599 + ], + [ + 77.571339595441501, + 12.93182341208 + ], + [ + 77.571301426225503, + 12.9316450075854 + ], + [ + 77.571277744175703, + 12.931474328754399 + ], + [ + 77.571212529279705, + 12.930949736093501 + ], + [ + 77.571211907132806, + 12.930943580684801 + ], + [ + 77.571190221041107, + 12.930601997518901 + ], + [ + 77.571188981931002, + 12.930575627132701 + ], + [ + 77.571177756518793, + 12.930336787419201 + ], + [ + 77.571175779092201, + 12.9302980452123 + ], + [ + 77.571221160075794, + 12.930299159086699 + ], + [ + 77.571550109570794, + 12.9302825029687 + ], + [ + 77.572017814512705, + 12.9302635497762 + ], + [ + 77.572218167901994, + 12.9302571663852 + ], + [ + 77.572216648349894, + 12.930251253825199 + ], + [ + 77.572130149547803, + 12.929895939131301 + ], + [ + 77.572086301269096, + 12.9296937580534 + ], + [ + 77.572300170829706, + 12.9296658169796 + ], + [ + 77.572531599912494, + 12.929620318380699 + ], + [ + 77.572996572799298, + 12.9295289049447 + ], + [ + 77.573261091150599, + 12.9294704482491 + ], + [ + 77.573406659649706, + 12.929437594880101 + ], + [ + 77.573613042297595, + 12.9293925845773 + ], + [ + 77.573620443401794, + 12.9293911889143 + ], + [ + 77.573656864282, + 12.929384322971201 + ], + [ + 77.573664390968702, + 12.9295308154572 + ], + [ + 77.5740113471238, + 12.929454302402 + ], + [ + 77.574324455879804, + 12.9293762437431 + ], + [ + 77.574581171509905, + 12.929312243325301 + ], + [ + 77.575047437754407, + 12.929244295245599 + ], + [ + 77.575059484192195, + 12.929303817553899 + ], + [ + 77.575244628173394, + 12.9300031569949 + ], + [ + 77.575261989326194, + 12.930304432281 + ], + [ + 77.575525301480397, + 12.9303067059504 + ], + [ + 77.576355320852102, + 12.9303472364798 + ], + [ + 77.576352504447996, + 12.930368071617499 + ], + [ + 77.576323003281701, + 12.930586318120399 + ], + [ + 77.576182133313097, + 12.930903635376801 + ], + [ + 77.577012941126995, + 12.930887847345099 + ], + [ + 77.577104045012007, + 12.9308940882848 + ], + [ + 77.577112612858897, + 12.932444269272301 + ], + [ + 77.5773707679935, + 12.932701082312899 + ], + [ + 77.577439634605, + 12.9327625517539 + ], + [ + 77.577774054515501, + 12.9329349393079 + ], + [ + 77.578047212411505, + 12.9330744673172 + ], + [ + 77.578229285381298, + 12.9330914483941 + ], + [ + 77.578232601626496, + 12.933091757114999 + ], + [ + 77.578553029794094, + 12.933096647224801 + ], + [ + 77.578565303077497, + 12.933096834862701 + ], + [ + 77.578887014794901, + 12.9330996294239 + ], + [ + 77.579563999782096, + 12.933064361328601 + ], + [ + 77.579616843315193, + 12.9330596306411 + ], + [ + 77.579617315364899, + 12.9330451533696 + ], + [ + 77.579617315364899, + 12.9330451533696 + ], + [ + 77.579617315364899, + 12.9330451533696 + ], + [ + 77.579611741442093, + 12.9326149422157 + ], + [ + 77.579606919327105, + 12.932199610599699 + ], + [ + 77.579606720072704, + 12.932182466966401 + ], + [ + 77.579606638819996, + 12.9321745626149 + ], + [ + 77.579620271183998, + 12.9316526875454 + ], + [ + 77.579630116087699, + 12.931266366876001 + ], + [ + 77.579639169674707, + 12.9309150625743 + ], + [ + 77.579640188485897, + 12.930846164714501 + ], + [ + 77.579647689304807, + 12.9300694699659 + ], + [ + 77.579648554666804, + 12.9299799027673 + ], + [ + 77.579652894626804, + 12.9295620158875 + ], + [ + 77.579653430744798, + 12.929502157260901 + ], + [ + 77.579659660109797, + 12.928819993603099 + ], + [ + 77.579660411572107, + 12.9288061806075 + ], + [ + 77.579663533795198, + 12.928748808892299 + ], + [ + 77.579666463760802, + 12.928691550202 + ], + [ + 77.579689899982796, + 12.9282335837076 + ], + [ + 77.579692385797401, + 12.928083361153201 + ], + [ + 77.579697473837101, + 12.9277595535714 + ], + [ + 77.579698650317795, + 12.927684653452699 + ], + [ + 77.579703139303305, + 12.927393247573599 + ], + [ + 77.579709651909596, + 12.9273547867068 + ], + [ + 77.579708507745394, + 12.9272994619207 + ], + [ + 77.5797033548249, + 12.9270016429363 + ], + [ + 77.579698584188293, + 12.926725871488101 + ], + [ + 77.579697161589294, + 12.926643446055101 + ], + [ + 77.579692698756702, + 12.9264710357804 + ], + [ + 77.579688570094106, + 12.926311514381601 + ], + [ + 77.579668419280395, + 12.9255268443539 + ], + [ + 77.579690476221501, + 12.9243679559809 + ], + [ + 77.579691769316099, + 12.924269693372199 + ], + [ + 77.579696038620199, + 12.923956832754399 + ], + [ + 77.5797022606978, + 12.9234418066274 + ], + [ + 77.579702202698599, + 12.9234361606586 + ], + [ + 77.579650804492005, + 12.9234366686839 + ], + [ + 77.578435915518597, + 12.923448673828799 + ], + [ + 77.577953215148696, + 12.9234501581176 + ], + [ + 77.577937999282497, + 12.9234502045155 + ], + [ + 77.577687607923394, + 12.9234515483123 + ], + [ + 77.576457317804099, + 12.9234941877534 + ], + [ + 77.576208745547802, + 12.9235045466679 + ], + [ + 77.5756597214218, + 12.923515882114399 + ], + [ + 77.574502579411998, + 12.9235397693677 + ], + [ + 77.573600987947003, + 12.923558377659999 + ], + [ + 77.573603659707103, + 12.9236031830872 + ], + [ + 77.573570594137394, + 12.924062462969101 + ], + [ + 77.573578533393402, + 12.9245261665349 + ], + [ + 77.573580776501998, + 12.924982708589299 + ], + [ + 77.573579055702496, + 12.925195290312701 + ], + [ + 77.573576674962794, + 12.925283996498401 + ], + [ + 77.573114756882703, + 12.9252959615868 + ], + [ + 77.573113624033994, + 12.925307378824 + ], + [ + 77.572912074332095, + 12.925314633175001 + ], + [ + 77.572617334609703, + 12.925327101086401 + ], + [ + 77.571949873516203, + 12.9254711268447 + ], + [ + 77.571467453003294, + 12.925553299657601 + ], + [ + 77.571528119316397, + 12.925170307683899 + ], + [ + 77.571499995901107, + 12.924850473735599 + ], + [ + 77.571485627425204, + 12.924756195555799 + ], + [ + 77.571433284351301, + 12.924356674664001 + ], + [ + 77.570660627675394, + 12.9245439090004 + ], + [ + 77.570458967179306, + 12.9245667741069 + ], + [ + 77.570481223430406, + 12.924657221781899 + ], + [ + 77.570493348749594, + 12.9248240125038 + ], + [ + 77.570478355458107, + 12.925310203307699 + ], + [ + 77.570434586991496, + 12.9254857696091 + ], + [ + 77.570388098625301, + 12.925572984260601 + ], + [ + 77.570281347271901, + 12.9258397302075 + ], + [ + 77.570206525096694, + 12.925936519548999 + ], + [ + 77.570047262902094, + 12.9260917555241 + ], + [ + 77.569699323176096, + 12.9263427255393 + ], + [ + 77.569535685439803, + 12.926451076325201 + ], + [ + 77.569770823529694, + 12.926479546823099 + ], + [ + 77.570695929897596, + 12.9264566831484 + ], + [ + 77.570698687340297, + 12.926488059986299 + ], + [ + 77.570754650187496, + 12.9271249005626 + ], + [ + 77.5708070168928, + 12.927720814865101 + ], + [ + 77.570909368625806, + 12.928393969571101 + ], + [ + 77.5710325109482, + 12.9292038599585 + ], + [ + 77.571047538494497, + 12.929291044046799 + ], + [ + 77.571137181085305, + 12.9298111045113 + ], + [ + 77.571009167731305, + 12.929824225762401 + ], + [ + 77.570052930447304, + 12.9298859624136 + ], + [ + 77.569723635442202, + 12.929907221153 + ], + [ + 77.569417144591796, + 12.929916850595999 + ], + [ + 77.569417144591796, + 12.929916850595999 + ], + [ + 77.569417144591796, + 12.929916850595999 + ], + [ + 77.569339952373596, + 12.9299192759324 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "365", + "group": "Chikkalsandra ward", + "Corporatio": "West", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "5", + "ward_id": "89", + "ward_name": "89 - Chikkalasandra", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ಚಿಕ್ಕಲಸಂದ್ರ", + "dig_ward_n": "Chikkalsandra ward", + "Assembly": "171 - Padmanabanagar", + "Slno": "89" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.548569435565796, + 12.9178445900029 + ], + [ + 77.548623871269598, + 12.9180304565316 + ], + [ + 77.548294080188896, + 12.9180924008306 + ], + [ + 77.548110605435298, + 12.9181077434776 + ], + [ + 77.547899731499896, + 12.918145940058301 + ], + [ + 77.547864677948496, + 12.918151928796 + ], + [ + 77.547588095345205, + 12.918181731662701 + ], + [ + 77.547293703756495, + 12.918215095999599 + ], + [ + 77.546984484122603, + 12.9182621566846 + ], + [ + 77.546864438126093, + 12.9182881730807 + ], + [ + 77.546856757664898, + 12.9183255160559 + ], + [ + 77.546843530589797, + 12.9183267744153 + ], + [ + 77.546835864787198, + 12.918308779831101 + ], + [ + 77.546788086000404, + 12.918195183042799 + ], + [ + 77.546729683416103, + 12.9180557151532 + ], + [ + 77.546726058191197, + 12.9180388104863 + ], + [ + 77.546724239855607, + 12.918029793541001 + ], + [ + 77.545909708000906, + 12.918143894679099 + ], + [ + 77.545343992886004, + 12.918214911762099 + ], + [ + 77.545068030744304, + 12.9182492233129 + ], + [ + 77.544763898935898, + 12.918287197152599 + ], + [ + 77.544708237428907, + 12.917793090162499 + ], + [ + 77.544697975537105, + 12.9175187613386 + ], + [ + 77.544343711180701, + 12.9175515764334 + ], + [ + 77.544341317347204, + 12.9175425650634 + ], + [ + 77.543590103931095, + 12.9176072029606 + ], + [ + 77.5431720508533, + 12.9176431739451 + ], + [ + 77.542788685281707, + 12.9178151790424 + ], + [ + 77.541935524067696, + 12.9182178812465 + ], + [ + 77.541928748140094, + 12.9182210795489 + ], + [ + 77.541932714295498, + 12.918442391364101 + ], + [ + 77.541976319129603, + 12.918769475104099 + ], + [ + 77.541984030336096, + 12.9187919868032 + ], + [ + 77.541986976848705, + 12.9187987341483 + ], + [ + 77.541998037480099, + 12.918796866841101 + ], + [ + 77.542001212477103, + 12.9188070355564 + ], + [ + 77.542010427659406, + 12.918836548064499 + ], + [ + 77.542018828032994, + 12.9188634511495 + ], + [ + 77.542100503588202, + 12.9190467498779 + ], + [ + 77.542148949130194, + 12.9192113883913 + ], + [ + 77.542185446940096, + 12.919335424691001 + ], + [ + 77.542267385611297, + 12.9195246673964 + ], + [ + 77.542391520295396, + 12.919721763183301 + ], + [ + 77.542519143590198, + 12.919901064472301 + ], + [ + 77.542622230700701, + 12.920045894198401 + ], + [ + 77.542662647952795, + 12.920101139885 + ], + [ + 77.5427332714805, + 12.920197673586699 + ], + [ + 77.542873087368605, + 12.920474530944499 + ], + [ + 77.542933138247804, + 12.9206132584206 + ], + [ + 77.542967476516097, + 12.920692585618699 + ], + [ + 77.543074430838502, + 12.920939670094899 + ], + [ + 77.543305399539307, + 12.9215230402238 + ], + [ + 77.5434388862476, + 12.9217702061667 + ], + [ + 77.5434539602564, + 12.9218089672228 + ], + [ + 77.543496200650196, + 12.921917587290499 + ], + [ + 77.543517767219896, + 12.922017563826101 + ], + [ + 77.543528235587502, + 12.9224927448094 + ], + [ + 77.543466032420099, + 12.9232386390757 + ], + [ + 77.543558811292201, + 12.9236501399724 + ], + [ + 77.543838206881503, + 12.924428533401599 + ], + [ + 77.543877230893301, + 12.924560615213499 + ], + [ + 77.544064349135397, + 12.9249720555573 + ], + [ + 77.544101268116904, + 12.9250873451545 + ], + [ + 77.544265237782497, + 12.925774435504 + ], + [ + 77.544366662220895, + 12.926030017407401 + ], + [ + 77.544495282694101, + 12.9260052118898 + ], + [ + 77.544800561527893, + 12.925897655845001 + ], + [ + 77.545100724037397, + 12.9257447713461 + ], + [ + 77.545021164307002, + 12.9254931171991 + ], + [ + 77.545347037498601, + 12.9254008305635 + ], + [ + 77.545380740106097, + 12.925392031819401 + ], + [ + 77.545193147467401, + 12.924741041780701 + ], + [ + 77.545164829281006, + 12.9246399641229 + ], + [ + 77.545121857401398, + 12.924380973416101 + ], + [ + 77.545140879191095, + 12.924276575501199 + ], + [ + 77.545255881518102, + 12.923645414633301 + ], + [ + 77.545254845177894, + 12.923201782748 + ], + [ + 77.545228295429496, + 12.923000462740299 + ], + [ + 77.545176057610803, + 12.9226794507262 + ], + [ + 77.545333849234595, + 12.9226673938528 + ], + [ + 77.545394087045096, + 12.922802815096601 + ], + [ + 77.546334463909005, + 12.922715961236699 + ], + [ + 77.546452695794699, + 12.922709268677901 + ], + [ + 77.546684249876407, + 12.9226755706226 + ], + [ + 77.5466391284357, + 12.9223161387921 + ], + [ + 77.546642337463098, + 12.922260801361301 + ], + [ + 77.546708566808903, + 12.9222419958188 + ], + [ + 77.546868375443793, + 12.9222366121896 + ], + [ + 77.547192742447606, + 12.9222498826984 + ], + [ + 77.547234718848699, + 12.922568727322901 + ], + [ + 77.547239795410107, + 12.9226137445484 + ], + [ + 77.547521409929601, + 12.922614620621101 + ], + [ + 77.547756521576403, + 12.9226281193852 + ], + [ + 77.547772784262605, + 12.9223727510866 + ], + [ + 77.547819537601001, + 12.922335307833899 + ], + [ + 77.547800028940898, + 12.922070690741901 + ], + [ + 77.547799813800694, + 12.922063646701099 + ], + [ + 77.548059550157006, + 12.9220204257527 + ], + [ + 77.548534116929005, + 12.921967709757499 + ], + [ + 77.548611111227302, + 12.9224127487225 + ], + [ + 77.548721378273498, + 12.922957129401899 + ], + [ + 77.548744330346906, + 12.9229569052762 + ], + [ + 77.548854695760994, + 12.9229783353441 + ], + [ + 77.548889940371694, + 12.922993289560701 + ], + [ + 77.548950272805897, + 12.922983138987799 + ], + [ + 77.548949283332206, + 12.922977576973301 + ], + [ + 77.548925463773898, + 12.922843780342401 + ], + [ + 77.548889142305399, + 12.922530511108899 + ], + [ + 77.548854140606906, + 12.922347268511301 + ], + [ + 77.548780023735304, + 12.9219597862149 + ], + [ + 77.548692853809996, + 12.921438568253601 + ], + [ + 77.548670615788595, + 12.921360379829 + ], + [ + 77.548629466101701, + 12.921339745275199 + ], + [ + 77.548581585389002, + 12.921342523817801 + ], + [ + 77.548510613939598, + 12.921346642664799 + ], + [ + 77.548298387154006, + 12.9213728954076 + ], + [ + 77.548420112258697, + 12.9203875017034 + ], + [ + 77.548313844310201, + 12.9203739766917 + ], + [ + 77.548447806330103, + 12.919879991743301 + ], + [ + 77.548449094426402, + 12.919670676087099 + ], + [ + 77.548568834888002, + 12.9196715364789 + ], + [ + 77.548637003009603, + 12.919665133998199 + ], + [ + 77.548708934594401, + 12.919645308092401 + ], + [ + 77.548763341583694, + 12.919627565896 + ], + [ + 77.548823693571094, + 12.919619327940399 + ], + [ + 77.548897593231999, + 12.9196013945086 + ], + [ + 77.549809106278701, + 12.9194179607168 + ], + [ + 77.549704048580296, + 12.9190852359365 + ], + [ + 77.549534433669805, + 12.9184047283065 + ], + [ + 77.549532575817295, + 12.918397272974801 + ], + [ + 77.549435417157895, + 12.9180683426281 + ], + [ + 77.549327053566003, + 12.9176177095197 + ], + [ + 77.549069742959006, + 12.9177290659078 + ], + [ + 77.548846080457807, + 12.917781448655299 + ], + [ + 77.548558141319404, + 12.917806026285 + ], + [ + 77.548569435565796, + 12.9178445900029 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": -1, + "extrude": 0, + "visibility": -1, + "drawOrder": null, + "icon": null, + "id": "366", + "group": "Yediyur Ward", + "Corporatio": "West", + "ac_no": "171", + "ac": "Padmanabanagar", + "corporat_1": "5", + "ward_id": "79", + "ward_name": "79 - Yediyuru", + "corporat_2": "ಪಶ್ಚಿಮ", + "ac_kn": "ಪದ್ಮನಾಭನಗರ", + "ward_name_": "ಯಡಿಯೂರು", + "dig_ward_n": "Yediyur Ward", + "Assembly": "171 - Padmanabanagar", + "Slno": "79" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 77.579617315364899, + 12.9330451533696 + ], + [ + 77.579616843315193, + 12.9330596306411 + ], + [ + 77.579563999782096, + 12.933064361328601 + ], + [ + 77.578887014794901, + 12.9330996294239 + ], + [ + 77.578565303077497, + 12.933096834862701 + ], + [ + 77.578553029794094, + 12.933096647224801 + ], + [ + 77.578232601626496, + 12.933091757114999 + ], + [ + 77.578229285381298, + 12.9330914483941 + ], + [ + 77.578047212411505, + 12.9330744673172 + ], + [ + 77.577774054515501, + 12.9329349393079 + ], + [ + 77.577439634605, + 12.9327625517539 + ], + [ + 77.5773707679935, + 12.932701082312899 + ], + [ + 77.577112612858897, + 12.932444269272301 + ], + [ + 77.577104045012007, + 12.9308940882848 + ], + [ + 77.577012941126995, + 12.930887847345099 + ], + [ + 77.576182133313097, + 12.930903635376801 + ], + [ + 77.576323003281701, + 12.930586318120399 + ], + [ + 77.576352504447996, + 12.930368071617499 + ], + [ + 77.576355320852102, + 12.9303472364798 + ], + [ + 77.575525301480397, + 12.9303067059504 + ], + [ + 77.575261989326194, + 12.930304432281 + ], + [ + 77.575244628173394, + 12.9300031569949 + ], + [ + 77.575059484192195, + 12.929303817553899 + ], + [ + 77.575047437754407, + 12.929244295245599 + ], + [ + 77.574581171509905, + 12.929312243325301 + ], + [ + 77.574324455879804, + 12.9293762437431 + ], + [ + 77.5740113471238, + 12.929454302402 + ], + [ + 77.573664390968702, + 12.9295308154572 + ], + [ + 77.573656864282, + 12.929384322971201 + ], + [ + 77.573620443401794, + 12.9293911889143 + ], + [ + 77.573613042297595, + 12.9293925845773 + ], + [ + 77.573406659649706, + 12.929437594880101 + ], + [ + 77.573261091150599, + 12.9294704482491 + ], + [ + 77.572996572799298, + 12.9295289049447 + ], + [ + 77.572531599912494, + 12.929620318380699 + ], + [ + 77.572300170829706, + 12.9296658169796 + ], + [ + 77.572086301269096, + 12.9296937580534 + ], + [ + 77.572130149547803, + 12.929895939131301 + ], + [ + 77.572216648349894, + 12.930251253825199 + ], + [ + 77.572218167901994, + 12.9302571663852 + ], + [ + 77.572017814512705, + 12.9302635497762 + ], + [ + 77.571550109570794, + 12.9302825029687 + ], + [ + 77.571221160075794, + 12.930299159086699 + ], + [ + 77.571175779092201, + 12.9302980452123 + ], + [ + 77.571177756518793, + 12.930336787419201 + ], + [ + 77.571188981931002, + 12.930575627132701 + ], + [ + 77.571190221041107, + 12.930601997518901 + ], + [ + 77.571211907132806, + 12.930943580684801 + ], + [ + 77.571212529279705, + 12.930949736093501 + ], + [ + 77.571277744175703, + 12.931474328754399 + ], + [ + 77.571301426225503, + 12.9316450075854 + ], + [ + 77.571339595441501, + 12.93182341208 + ], + [ + 77.571354954878899, + 12.931990587134599 + ], + [ + 77.571414807378005, + 12.9323793676945 + ], + [ + 77.571297496165002, + 12.932409366479501 + ], + [ + 77.571154484428504, + 12.932083416503801 + ], + [ + 77.570982796724294, + 12.931872427290701 + ], + [ + 77.570950734311793, + 12.9318565932101 + ], + [ + 77.570911175020001, + 12.9318694977388 + ], + [ + 77.569773170026494, + 12.932169568080599 + ], + [ + 77.569365768542994, + 12.9322711092993 + ], + [ + 77.568911104334106, + 12.932389617909401 + ], + [ + 77.568935410029695, + 12.9325102289512 + ], + [ + 77.568815643260905, + 12.932543422397501 + ], + [ + 77.568611094494898, + 12.9325848665975 + ], + [ + 77.568411306716598, + 12.932637032621599 + ], + [ + 77.568233339067604, + 12.932678226230699 + ], + [ + 77.567979677630802, + 12.9327456191051 + ], + [ + 77.567855037370506, + 12.932702607504799 + ], + [ + 77.5678560236002, + 12.9327055138041 + ], + [ + 77.567869182785302, + 12.932744292389099 + ], + [ + 77.567869734577997, + 12.932745919497499 + ], + [ + 77.567870633001604, + 12.932748566806399 + ], + [ + 77.567876003601995, + 12.932764392131199 + ], + [ + 77.567886843600704, + 12.932796336333301 + ], + [ + 77.567888376448096, + 12.932800854772699 + ], + [ + 77.567894352037001, + 12.932818464785701 + ], + [ + 77.567899387403799, + 12.9328333032246 + ], + [ + 77.5679119843672, + 12.9328704240818 + ], + [ + 77.567912295877605, + 12.9328713425377 + ], + [ + 77.567927469430202, + 12.932916057754101 + ], + [ + 77.567927880657194, + 12.932917269754 + ], + [ + 77.567941488134196, + 12.9329573692838 + ], + [ + 77.567942202306, + 12.932959472720199 + ], + [ + 77.567942745533699, + 12.932961072809 + ], + [ + 77.567943995352806, + 12.9329647556293 + ], + [ + 77.567952208477394, + 12.9329889596006 + ], + [ + 77.567953408899001, + 12.932992495644299 + ], + [ + 77.567963040901603, + 12.9330208812839 + ], + [ + 77.5679643875919, + 12.933024849544999 + ], + [ + 77.567966223387501, + 12.933030259419899 + ], + [ + 77.567967729770203, + 12.933034081556 + ], + [ + 77.567967996447706, + 12.933034759231001 + ], + [ + 77.567968139897602, + 12.933035186055699 + ], + [ + 77.567970990833501, + 12.933043667615999 + ], + [ + 77.567983071099107, + 12.933079618159701 + ], + [ + 77.567983726617797, + 12.933081570393099 + ], + [ + 77.567987696693507, + 12.9330933855196 + ], + [ + 77.567991157574596, + 12.9331036860503 + ], + [ + 77.567996478562904, + 12.933119521796099 + ], + [ + 77.567996519403906, + 12.9331196424568 + ], + [ + 77.568022910545807, + 12.933198179124499 + ], + [ + 77.568024063848597, + 12.9332016108307 + ], + [ + 77.568028248634505, + 12.9332140652938 + ], + [ + 77.568074279343506, + 12.9333510517487 + ], + [ + 77.568078237072896, + 12.9333711092012 + ], + [ + 77.568078414857794, + 12.9333720109043 + ], + [ + 77.568078991912401, + 12.9333749360258 + ], + [ + 77.568079943917994, + 12.9333797583218 + ], + [ + 77.568110174933494, + 12.933532976387299 + ], + [ + 77.568110646091895, + 12.933535364093 + ], + [ + 77.568112594857098, + 12.933545241334601 + ], + [ + 77.568114034585705, + 12.933552539711201 + ], + [ + 77.568150782240906, + 12.933738782580599 + ], + [ + 77.568193512944802, + 12.933735923378901 + ], + [ + 77.568249729071894, + 12.9337321616298 + ], + [ + 77.568599896227397, + 12.9336914456554 + ], + [ + 77.568805158960004, + 12.933666837639 + ], + [ + 77.568824216137003, + 12.9336622645703 + ], + [ + 77.568866378786097, + 12.933652146190401 + ], + [ + 77.568886783857593, + 12.933647249052999 + ], + [ + 77.568913119894404, + 12.9336409292799 + ], + [ + 77.568979766563999, + 12.933625327878699 + ], + [ + 77.568992659249005, + 12.933622309832 + ], + [ + 77.569109528642699, + 12.933594951239799 + ], + [ + 77.569187800548804, + 12.933573182137399 + ], + [ + 77.569197930219403, + 12.933570364763 + ], + [ + 77.569197977933399, + 12.933570526914499 + ], + [ + 77.569198263120398, + 12.933571482668601 + ], + [ + 77.569199309472395, + 12.9335749922134 + ], + [ + 77.569212966324102, + 12.9336207892236 + ], + [ + 77.569213793275594, + 12.933623561001699 + ], + [ + 77.569232619844101, + 12.933686692225599 + ], + [ + 77.5692333466707, + 12.9336891307124 + ], + [ + 77.5692386699412, + 12.9337069792865 + ], + [ + 77.569241039241604, + 12.9337149244001 + ], + [ + 77.569255774890607, + 12.933764339044 + ], + [ + 77.569256829829499, + 12.9337678774141 + ], + [ + 77.569271285061006, + 12.933816351613601 + ], + [ + 77.569277724320798, + 12.933837943038199 + ], + [ + 77.569277752940096, + 12.9338380394257 + ], + [ + 77.569280197591198, + 12.9338462367629 + ], + [ + 77.569280705672895, + 12.933846112501699 + ], + [ + 77.569287927261101, + 12.9338443491903 + ], + [ + 77.569521001617403, + 12.933787435596299 + ], + [ + 77.569528809380699, + 12.933785529178699 + ], + [ + 77.569534034464596, + 12.9337842535201 + ], + [ + 77.569539259548307, + 12.9337829778614 + ], + [ + 77.569808249610404, + 12.9337172936043 + ], + [ + 77.569828573844205, + 12.9337123303364 + ], + [ + 77.569857253424104, + 12.933705326954501 + ], + [ + 77.5698668380914, + 12.933702986527001 + ], + [ + 77.569969997281703, + 12.933677796325901 + ], + [ + 77.570146676822901, + 12.933634653638901 + ], + [ + 77.570149480005796, + 12.933633969204299 + ], + [ + 77.570176578348693, + 12.9336273517885 + ], + [ + 77.570220597177098, + 12.933616095529899 + ], + [ + 77.570225659034307, + 12.9336148015913 + ], + [ + 77.570332751645395, + 12.9335874159546 + ], + [ + 77.570429133808304, + 12.933551560270701 + ], + [ + 77.570438956460293, + 12.933547906569499 + ], + [ + 77.570482431193298, + 12.9335317336266 + ], + [ + 77.5705068081202, + 12.9335216466425 + ], + [ + 77.570511457324699, + 12.9335197225427 + ], + [ + 77.570641791946997, + 12.9334657919658 + ], + [ + 77.570710202778301, + 12.9334510527219 + ], + [ + 77.5707191956119, + 12.933449114715 + ], + [ + 77.570729675460996, + 12.9334468566837 + ], + [ + 77.570733445555703, + 12.933446331658301 + ], + [ + 77.570736925921395, + 12.9334458465302 + ], + [ + 77.570782607602595, + 12.933439483153499 + ], + [ + 77.570803253436694, + 12.9334366072344 + ], + [ + 77.570877986615201, + 12.933426196405 + ], + [ + 77.571049318845795, + 12.933411724514301 + ], + [ + 77.571054899392394, + 12.933411253009499 + ], + [ + 77.571100642578898, + 12.933407388824 + ], + [ + 77.571116185108096, + 12.933406076472499 + ], + [ + 77.571165572578906, + 12.933401904410401 + ], + [ + 77.571327102682105, + 12.933388868795401 + ], + [ + 77.571338924065998, + 12.9333879147469 + ], + [ + 77.571432698146396, + 12.9333803471162 + ], + [ + 77.571440396536801, + 12.9333797255289 + ], + [ + 77.571454338315604, + 12.933378600596299 + ], + [ + 77.571462460971205, + 12.9333779450113 + ], + [ + 77.571465852312897, + 12.9333776712558 + ], + [ + 77.571500335407507, + 12.9333748883294 + ], + [ + 77.571508382393205, + 12.9333736796734 + ], + [ + 77.571511303067794, + 12.933399560056399 + ], + [ + 77.571511544201599, + 12.9334016988588 + ], + [ + 77.571516736169897, + 12.933447704717301 + ], + [ + 77.571517285221404, + 12.9334525671 + ], + [ + 77.571518216291494, + 12.933460822693499 + ], + [ + 77.571519956730995, + 12.933476243710899 + ], + [ + 77.571520044827196, + 12.9334770207139 + ], + [ + 77.571529212078204, + 12.933558250891 + ], + [ + 77.571529567679804, + 12.933561403140599 + ], + [ + 77.5715296386104, + 12.9335620330503 + ], + [ + 77.571529864559906, + 12.9335640382915 + ], + [ + 77.571542336500301, + 12.933674554687 + ], + [ + 77.571543486335798, + 12.9336847433157 + ], + [ + 77.571546096027305, + 12.9337078694293 + ], + [ + 77.5715467504358, + 12.9337136649415 + ], + [ + 77.571555855937902, + 12.9337943491342 + ], + [ + 77.571556296642996, + 12.933798255829799 + ], + [ + 77.571566876150698, + 12.9338919984278 + ], + [ + 77.571567341135605, + 12.9338961171949 + ], + [ + 77.571567975302401, + 12.9339017349266 + ], + [ + 77.571568698727702, + 12.9339081531394 + ], + [ + 77.571579802006596, + 12.9340065361169 + ], + [ + 77.571585233026497, + 12.9340539336361 + ], + [ + 77.571587754041801, + 12.9340758653556 + ], + [ + 77.571588449847795, + 12.9340819251704 + ], + [ + 77.571592907530203, + 12.9341207178778 + ], + [ + 77.571595801327803, + 12.9341459498426 + ], + [ + 77.571607568741101, + 12.934248466782201 + ], + [ + 77.571608177604105, + 12.934253772168701 + ], + [ + 77.571612168408194, + 12.934288530147301 + ], + [ + 77.571621752077803, + 12.934402739400699 + ], + [ + 77.571622556884194, + 12.934412334248499 + ], + [ + 77.571629874249595, + 12.9344995372948 + ], + [ + 77.571636998949202, + 12.9345820506168 + ], + [ + 77.5716374724405, + 12.934587538028101 + ], + [ + 77.571644930601394, + 12.934673917542 + ], + [ + 77.571651651905597, + 12.934751759478701 + ], + [ + 77.5716534338126, + 12.934772391188901 + ], + [ + 77.571660939024497, + 12.9348593150167 + ], + [ + 77.571661773072904, + 12.9348689764306 + ], + [ + 77.571669721453205, + 12.9349610338134 + ], + [ + 77.571703609702197, + 12.9349595052577 + ], + [ + 77.571710655444207, + 12.9349591873255 + ], + [ + 77.571957999352406, + 12.9349480269595 + ], + [ + 77.571958125480904, + 12.9349480211983 + ], + [ + 77.571976396762594, + 12.9349472013509 + ], + [ + 77.572035632495997, + 12.9349445427947 + ], + [ + 77.572062228316696, + 12.934943349021999 + ], + [ + 77.572276386899702, + 12.9349337380339 + ], + [ + 77.572297656742805, + 12.9349327837865 + ], + [ + 77.572533218585306, + 12.934922210701 + ], + [ + 77.572546981422803, + 12.934921593393099 + ], + [ + 77.572603031666503, + 12.934919078162199 + ], + [ + 77.572629196945599, + 12.9349184758227 + ], + [ + 77.572644237339802, + 12.934918130493299 + ], + [ + 77.572860872106901, + 12.9349131455663 + ], + [ + 77.572940351212694, + 12.9349086030515 + ], + [ + 77.572956377747602, + 12.934907686931799 + ], + [ + 77.573073157927496, + 12.934899758820601 + ], + [ + 77.573324446448296, + 12.934872434378899 + ], + [ + 77.573363466035701, + 12.9348650774115 + ], + [ + 77.573375281765706, + 12.934862849450599 + ], + [ + 77.573482031496695, + 12.934842721476301 + ], + [ + 77.573501595064101, + 12.934839032965399 + ], + [ + 77.573541505436793, + 12.934831508175099 + ], + [ + 77.573545652387907, + 12.9348307264212 + ], + [ + 77.573821868703604, + 12.934774942582299 + ], + [ + 77.573821978087295, + 12.934774920723401 + ], + [ + 77.573821406363294, + 12.934823879797801 + ], + [ + 77.573818427267398, + 12.935079105782499 + ], + [ + 77.573816702871, + 12.9352267862613 + ], + [ + 77.573815543260295, + 12.935326088652699 + ], + [ + 77.573815278099403, + 12.935352764723399 + ], + [ + 77.573814417638701, + 12.935439477298299 + ], + [ + 77.573814410830195, + 12.935440160373499 + ], + [ + 77.573817059612097, + 12.935584685300901 + ], + [ + 77.573824201311396, + 12.935974294401801 + ], + [ + 77.573830099598496, + 12.9362960242215 + ], + [ + 77.573832048427505, + 12.936385423024101 + ], + [ + 77.573832411859698, + 12.9364020826645 + ], + [ + 77.573832518330207, + 12.9364069837321 + ], + [ + 77.573842062013995, + 12.936844751876301 + ], + [ + 77.573842092406593, + 12.936844751576301 + ], + [ + 77.573843016973299, + 12.9368849495773 + ], + [ + 77.573843380855095, + 12.9369007545491 + ], + [ + 77.573843405380302, + 12.936903144835 + ], + [ + 77.573843550295194, + 12.936909458518199 + ], + [ + 77.573845179188197, + 12.9369802385679 + ], + [ + 77.573848284292694, + 12.9372828635767 + ], + [ + 77.573851540102595, + 12.937600168148499 + ], + [ + 77.573852359042803, + 12.937623875618799 + ], + [ + 77.573858875422104, + 12.937978415292999 + ], + [ + 77.573865113820304, + 12.9383058542107 + ], + [ + 77.573866604848604, + 12.938395055143999 + ], + [ + 77.573859820459703, + 12.938687613945699 + ], + [ + 77.573852978181904, + 12.9389745267562 + ], + [ + 77.573850609936798, + 12.939024239867001 + ], + [ + 77.573850491419805, + 12.9390275006833 + ], + [ + 77.573847746758005, + 12.9391030037695 + ], + [ + 77.573837590286303, + 12.9393823603213 + ], + [ + 77.573833266376496, + 12.9394960488418 + ], + [ + 77.573833254913097, + 12.9394963678727 + ], + [ + 77.573832209758507, + 12.9395238602254 + ], + [ + 77.573830602378393, + 12.939566126819701 + ], + [ + 77.573824443224794, + 12.9397280595997 + ], + [ + 77.573824053016295, + 12.9397461324444 + ], + [ + 77.573862716401507, + 12.939811250803301 + ], + [ + 77.5738452202377, + 12.940595023302601 + ], + [ + 77.573844616531005, + 12.9406279220545 + ], + [ + 77.573894603097202, + 12.9406275233478 + ], + [ + 77.576828144821206, + 12.9406040923693 + ], + [ + 77.576894341744904, + 12.9406034379791 + ], + [ + 77.576908759543798, + 12.940603339718599 + ], + [ + 77.577260451053306, + 12.940600947808701 + ], + [ + 77.577440621738603, + 12.940599166391999 + ], + [ + 77.577756639904095, + 12.9405960414984 + ], + [ + 77.577756129196601, + 12.940546356962001 + ], + [ + 77.577757635538902, + 12.9405248851988 + ], + [ + 77.577737045078607, + 12.9403139080662 + ], + [ + 77.577702962228997, + 12.939966417968099 + ], + [ + 77.577679790918296, + 12.9397283629133 + ], + [ + 77.577675930976099, + 12.9396888752685 + ], + [ + 77.578102837859404, + 12.9391606544834 + ], + [ + 77.578814552863193, + 12.9382817893562 + ], + [ + 77.580034965483193, + 12.936774590870201 + ], + [ + 77.580035029143801, + 12.9367745116405 + ], + [ + 77.580036975183702, + 12.936774492384499 + ], + [ + 77.580089136971097, + 12.936773976239399 + ], + [ + 77.581830598564395, + 12.936722859174401 + ], + [ + 77.582744206349005, + 12.9366957928947 + ], + [ + 77.582744222842393, + 12.9366960529232 + ], + [ + 77.5827468065971, + 12.936695976737401 + ], + [ + 77.584001391434896, + 12.936659831255399 + ], + [ + 77.584001383229094, + 12.9366595711451 + ], + [ + 77.584515300936204, + 12.936644313917499 + ], + [ + 77.584908938616394, + 12.936632506725999 + ], + [ + 77.584904583450196, + 12.936052069921301 + ], + [ + 77.584901228810494, + 12.935604917111799 + ], + [ + 77.584901980020803, + 12.9346721050453 + ], + [ + 77.584878836509802, + 12.933990235139801 + ], + [ + 77.584876388451804, + 12.9339202425859 + ], + [ + 77.584861267982205, + 12.932899502029199 + ], + [ + 77.583935260141004, + 12.9329222294672 + ], + [ + 77.583901311097407, + 12.932923695109601 + ], + [ + 77.583678180743803, + 12.9329291959258 + ], + [ + 77.582676034220199, + 12.932953900032199 + ], + [ + 77.582593170307106, + 12.9329569791811 + ], + [ + 77.581287365153798, + 12.9329936215358 + ], + [ + 77.580706683121605, + 12.9330095317155 + ], + [ + 77.580652587745107, + 12.9330111962838 + ], + [ + 77.580647407288495, + 12.9330112475426 + ], + [ + 77.580198411077006, + 12.933013431200701 + ], + [ + 77.580137984003798, + 12.9330151583016 + ], + [ + 77.580137984003798, + 12.9330151583016 + ], + [ + 77.580136053119901, + 12.933051315239901 + ], + [ + 77.579617315364899, + 12.9330451533696 + ] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "Name": null, + "descriptio": null, + "timestamp": null, + "begin": null, + "end": null, + "altitudeMo": null, + "tessellate": null, + "extrude": null, + "visibility": null, + "drawOrder": null, + "icon": null, + "id": null, + "group": null, + "Corporatio": null, + "ac_no": null, + "ac": null, + "corporat_1": null, + "ward_id": null, + "ward_name": null, + "corporat_2": null, + "ac_kn": null, + "ward_name_": null, + "dig_ward_n": null, + "Assembly": null, + "Slno": null + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [] + } + } + ] +} \ No newline at end of file diff --git a/frontend/web-ui/src/App.tsx b/frontend/web-ui/src/App.tsx new file mode 100644 index 0000000..538b17e --- /dev/null +++ b/frontend/web-ui/src/App.tsx @@ -0,0 +1,103 @@ +// Main application entry point for the Property Tax Web UI +// Sets up routing, authentication, and sidebar providers for different user roles + +import { BrowserRouter, Route, Routes } from 'react-router-dom' +import './app/global.css' +import { useAuth } from './app/features/login-signup/provider/AuthProvider'; +import ProtectedRoute from './app/features/login-signup/components/ProtectedRouteComponent/ProtectedRoute'; +import PublicRoute from './app/features/login-signup/components/PublicRouteComponent/PublicRoute'; + +import { SidebarProvider } from './app/components/Sidebar/provider/SMSideBarProvider'; +import MapViewZones from './app/pages/map-pages/mapviewzones'; +import { ServiceManagerRoutes } from './app/routes/ServiceManagerRoutes'; +import { CommissionerRoutes } from './app/routes/CommissionerRoutes'; +import { AdminRoutes } from './app/routes/AdminRoutes'; +import { CommissionerSidebarProvider } from './app/components/Sidebar/provider/CMSideBarProvider'; +import { AdminSidebarProvider } from './app/components/Sidebar/provider/AdminSidebarProvider'; +import LoginScreen from './app/pages/Login-SignUp/Login-SignUp'; + + + + +// Root App component +function App() { + // Get authentication state updater from context + const { updateAuthState } = useAuth(); + + return ( + // Set up React Router for navigation + + + {/* Public Routes: Accessible without authentication */} + + {/* Login screen for unauthenticated users */} + + + } + /> + + + + } + /> + + {/* Protected Routes: Commissioner role only */} + + {/* Commissioner sidebar and routes */} + + + + + } + /> + + {/* Protected Routes: Service Manager role only */} + + + + + + } + /> + + {/* Protected Routes - Admin */} + + + + + + } + /> + + {/* Common Protected Routes - Both roles */} + {/* Common Protected Route: Accessible by any authenticated user */} + + + + } + /> + + + ); +} + +// Export the App component as default +export default App; \ No newline at end of file diff --git a/frontend/web-ui/src/app/components/JurisdictionDropdown/JurisdictionDropdown.tsx b/frontend/web-ui/src/app/components/JurisdictionDropdown/JurisdictionDropdown.tsx new file mode 100644 index 0000000..c2bb5a5 --- /dev/null +++ b/frontend/web-ui/src/app/components/JurisdictionDropdown/JurisdictionDropdown.tsx @@ -0,0 +1,162 @@ +// This file contains the JurisdictionDropdown component, which allows users to select their jurisdiction (zone and wards) from a dropdown menu. +// The component uses Redux to manage the selected zone and displays the user's available jurisdictions. +import React, { useEffect, useState } from 'react'; +import { Box, Menu, MenuItem, Typography } from '@mui/material'; +import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown'; +import LocationOnOutlinedIcon from '@mui/icons-material/LocationOnOutlined'; +import { + jurisdictionDropdownBox, + jurisdictionInfoRow, + locationIcon, + jurisdictionLabel, + jurisdictionName, + dropdownArrow, + dropdownMenuItem, +} from '../../styles/JurisdictionDropdownStyle/JurisdictionDropdownStyle'; +import { useGetUserJurisdiction } from './customHook/useGetUserJurisdiction'; +import { useDispatch, useSelector } from 'react-redux'; +import { setSelectedZone } from '../../../store/userSlice'; +import type { RootState } from '../../../store'; + +// Represents a jurisdiction option in the dropdown +interface Jurisdiction { + id: string; + name: string; +} + +// Props for customizing the dropdown's background colors +interface JurisdictionDropdownProps { + backgroundColor: string; + hoverBackgroundColor: string; +} + + +export const JurisdictionDropdown: React.FC = ({ + backgroundColor, + hoverBackgroundColor, +}) => { + // Get the user's available zones from the custom hook + const zonesData = useGetUserJurisdiction(); + const dispatch = useDispatch(); + + // Get the currently selected zone from Redux + const selectedZone = useSelector((state: RootState) => state.user.selectedZone); + + // Build the list of jurisdictions for the dropdown menu + const jurisdictions: Jurisdiction[] = zonesData.map((zone) => ({ + id: zone.zoneNumber, + name: `${zone.zoneNumber}: ${zone.wards.join(', ')}` + })); + + // Helper to get zone data by its number + const getZoneDataById = (zoneNumber: string) => zonesData.find(z => z.zoneNumber === zoneNumber); + + // State for the anchor element of the dropdown menu + const [anchorEl, setAnchorEl] = useState(null); + + // State for the currently selected jurisdiction (displayed in the dropdown) + // Initialize from Redux or default to the first jurisdiction + const [selectedJurisdiction, setSelectedJurisdiction] = useState(() => { + if (selectedZone) { + return `${selectedZone.zoneNumber}: ${selectedZone.wards.join(', ')}`; + } + return jurisdictions[0]?.name || ''; + }); + + // Boolean to control if the dropdown menu is open + const open = Boolean(anchorEl); + + // Handle clicking the dropdown to open the menu + const handleClick = (event: React.MouseEvent) => { + setAnchorEl(event.currentTarget); + }; + + // Handle closing the dropdown menu + const handleClose = () => { + setAnchorEl(null); + }; + + // On mount, set the default selected zone if not already set in Redux + useEffect(() => { + if (zonesData.length > 0 && !selectedZone) { + setSelectedJurisdiction(jurisdictions[0].name); + dispatch(setSelectedZone(zonesData[0])); + } + // eslint-disable-next-line react-hooks/exhaustive-deps + }, [zonesData.length, selectedZone]); + + // When the selected zone in Redux changes, update the local selectedJurisdiction state + useEffect(() => { + if (selectedZone) { + const displayName = `${selectedZone.zoneNumber}: ${selectedZone.wards.join(', ')}`; + setSelectedJurisdiction(displayName); + } + }, [selectedZone]); + + // Handle selecting a jurisdiction from the dropdown + const handleSelect = (jurisdiction: string) => { + setSelectedJurisdiction(jurisdiction); + const zoneNumber = jurisdiction.split(':')[0].trim(); + const zoneDataObj = getZoneDataById(zoneNumber); + if (zoneDataObj) { + dispatch(setSelectedZone(zoneDataObj)); + } + handleClose(); + }; + + return ( + <> + {/* Dropdown box that shows the current jurisdiction and opens the menu */} + + + + + Jurisdiction + + {selectedJurisdiction} + + + + + + + {/* Dropdown menu listing all available jurisdictions */} + + {jurisdictions.map((jurisdiction) => ( + handleSelect(jurisdiction.name)} + selected={selectedJurisdiction === jurisdiction.name} + sx={dropdownMenuItem( + selectedJurisdiction === jurisdiction.name, + backgroundColor, + hoverBackgroundColor + )} + > + {jurisdiction.name} + + ))} + + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/components/JurisdictionDropdown/customHook/useGetUserJurisdiction.ts b/frontend/web-ui/src/app/components/JurisdictionDropdown/customHook/useGetUserJurisdiction.ts new file mode 100644 index 0000000..1be29f4 --- /dev/null +++ b/frontend/web-ui/src/app/components/JurisdictionDropdown/customHook/useGetUserJurisdiction.ts @@ -0,0 +1,22 @@ +// This file provides a custom React hook to retrieve the current user's jurisdiction (zone and wards) from the Redux store. +// Use this hook in components that need to access or display the user's assigned zones and wards. +import { useSelector } from "react-redux"; +import type { RootState } from "../../../../store/index"; + +// Type definition for a zone, which includes a zone number and a list of wards in that zone +interface ZoneData { + zoneNumber: string; + wards: string[]; +} + +// Custom hook to get the current user's jurisdiction information from the Redux store +export const useGetUserJurisdiction = () => { + // Access the currentUser object from the Redux store + const currentUser = useSelector((state: RootState) => state.user.currentUser); + + // Get the zone data from the current user, or return an empty array if not available + const zoneData: ZoneData[] = currentUser?.zoneData || []; + + // Return the user's zone data for use in components + return zoneData; +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/components/Pagination/PaginationControls.tsx b/frontend/web-ui/src/app/components/Pagination/PaginationControls.tsx new file mode 100644 index 0000000..7e44e51 --- /dev/null +++ b/frontend/web-ui/src/app/components/Pagination/PaginationControls.tsx @@ -0,0 +1,37 @@ +// This file contains the PaginationControls component, which displays a styled pagination bar for navigating between pages of data. +// It uses Material-UI's Pagination component and is designed to be reusable across the app. +import React from "react"; +import Pagination from "@mui/material/Pagination"; +import { Box } from "@mui/material"; +import { paginationStyleSx } from "../../styles/PaginationStyle/PaginationControlsStyle"; + +// Props for PaginationControls: current page, total pages, and a callback for page changes +interface PaginationControlsProps { + page: number; // The current page number + totalPages: number; // The total number of pages available + onPageChange: (page: number) => void; // Callback when the page is changed +} + + +// PaginationControls component renders a centered pagination bar with first/last buttons +const PaginationControls: React.FC = ({ + page, + totalPages, + onPageChange, +}) => ( + // Center the pagination bar horizontally with some vertical margin + + onPageChange(value)} // Call parent handler when page changes + color="primary" + size="large" + showFirstButton // Show button to go to the first page + showLastButton // Show button to go to the last page + sx={paginationStyleSx} // Custom styles for pagination + /> + +); + +export default PaginationControls; \ No newline at end of file diff --git a/frontend/web-ui/src/app/components/Sidebar/Admin_Sidebar.tsx b/frontend/web-ui/src/app/components/Sidebar/Admin_Sidebar.tsx new file mode 100644 index 0000000..f2ffcbd --- /dev/null +++ b/frontend/web-ui/src/app/components/Sidebar/Admin_Sidebar.tsx @@ -0,0 +1,170 @@ +import React from 'react'; +import { + Box, + List, + ListItem, + ListItemButton, + ListItemIcon, + ListItemText, + IconButton, + Divider, + Tooltip +} from '@mui/material'; +import ErrorOutlineOutlinedIcon from '@mui/icons-material/ErrorOutlineOutlined'; +import AccountCircleOutlinedIcon from '@mui/icons-material/AccountCircleOutlined'; +import SettingsOutlinedIcon from '@mui/icons-material/SettingsOutlined'; +import MenuOutlinedIcon from '@mui/icons-material/MenuOutlined'; +import * as style from '../../styles/SideBar/SidebarStyle'; + +import hindiEnglishIcon from '../Sidebar/assets/hindi_english_icon.svg'; + +export interface NavItem { + key: string; + label: string; + icon: React.ReactNode; + group?: 'primary' | 'secondary'; +} + +/** + * Props: + * - open: whether sidebar is expanded + * - onToggle: callback to toggle expansion (handled by parent HomePage) + * - selectedNav: currently selected nav item key + * - onSelectNav: callback to change selected nav item + * - primaryItems: array of navigation items to display in the primary section + */ +export interface AdminSidebarProps { + open: boolean; + onToggle: () => void; + selectedNav: string; + onSelectNav: (key: string) => void; + primaryItems: NavItem[]; + onProfileClick?: (anchorEl: HTMLElement | null) => void; + primaryColor?: string; + secondaryColor?: string; +} + +const secondaryItems: NavItem[] = [ + { key: 'helpDesk', label: 'Help Desk', icon: , group: 'secondary' }, + { key: 'language', label: 'Language', icon: Language, group: 'secondary' }, + { key: 'profile', label: 'Profile', icon: , group: 'secondary' }, + { key: 'settings', label: 'Settings', icon: , group: 'secondary' } +]; + +export const AdminSidebar: React.FC = ({ + open, + onToggle, + selectedNav, + onSelectNav, + primaryItems, + onProfileClick, + primaryColor = '#FBEEE8', + secondaryColor = '#F4D5C6' +}) => { + + const profileButtonRef = React.useRef(null); + + const handleSecondaryItemClick = (_key: string) => { + // Special logic for secondary items if needed + }; + + return ( + + {/* Toggle button */} + + {open && ()} + + + + + + {/* Primary navigation */} + + {primaryItems.map(item => { + const isSelected = selectedNav === item.key; + return ( + + + onSelectNav(item.key)} + sx={style.navListItemButton(selectedNav === item.key, open, secondaryColor)} + > + + {item.icon} + + + {open && ( + + )} + + + + ); + })} + + + {/* Spacer to push secondary items to bottom */} + + + + + {/* Secondary navigation */} + + {secondaryItems.map(item => { + const isSelected = selectedNav === item.key; + const isProfile = item.key === 'profile'; + return ( + + + { + handleSecondaryItemClick(item.key); + if (isProfile && onProfileClick) { + onProfileClick(profileButtonRef.current); + } + }} + sx={style.navListItemButtonSecondary(isSelected, open, secondaryColor)} + > + + {item.icon} + + {open && ( + + )} + + + + ); + })} + + + ); +}; diff --git a/frontend/web-ui/src/app/components/Sidebar/CM_Sidebar.tsx b/frontend/web-ui/src/app/components/Sidebar/CM_Sidebar.tsx new file mode 100644 index 0000000..4f22a66 --- /dev/null +++ b/frontend/web-ui/src/app/components/Sidebar/CM_Sidebar.tsx @@ -0,0 +1,176 @@ +// This file contains the CommissionerSidebar component, which renders the sidebar navigation for the Commissioner dashboard. +// It supports toggling, primary/secondary navigation, and profile/settings/help actions. +import React from 'react'; +import { + Box, + List, + ListItem, + ListItemButton, + ListItemIcon, + ListItemText, + IconButton, + Divider, + Tooltip +} from '@mui/material'; +import ErrorOutlineOutlinedIcon from '@mui/icons-material/ErrorOutlineOutlined'; +import AccountCircleOutlinedIcon from '@mui/icons-material/AccountCircleOutlined'; +import SettingsOutlinedIcon from '@mui/icons-material/SettingsOutlined'; +import MenuOutlinedIcon from '@mui/icons-material/MenuOutlined'; +import * as style from '../../styles/SideBar/SidebarStyle'; + +import hindiEnglishIcon from '../Sidebar/assets/hindi_english_icon.svg'; + +// Represents a navigation item in the sidebar +export interface NavItem { + key: string; // Unique key for the nav item + label: string; // Display label + icon: React.ReactNode; // Icon to show + group?: 'primary' | 'secondary'; // Group type (optional) +} + +// Props for the CommissionerSidebar component +// - open: whether sidebar is expanded +// - onToggle: callback to toggle expansion (handled by parent) +// - selectedNav: currently selected nav item key +// - onSelectNav: callback to change selected nav item +// - primaryItems: array of navigation items to display in the primary section +// - onProfileClick: callback for profile button (optional) +// - allApplicationsToggle/setAllApplicationsToggle: toggles for extra features (optional) +export interface CommissionerSidebarProps { + open: boolean; + onToggle: () => void; + selectedNav: string; + onSelectNav: (key: string) => void; + primaryItems: NavItem[]; + onProfileClick?: (anchorEl: HTMLElement | null) => void; + allApplicationsToggle?: boolean; + setAllApplicationsToggle?: (toggle: boolean) => void; +} + +// Secondary navigation items (bottom of sidebar) +const secondaryItems: NavItem[] = [ + { key: 'helpDesk', label: 'Help Desk', icon: , group: 'secondary' }, + { key: 'language', label: 'Language', icon: Language, group: 'secondary' }, + { key: 'profile', label: 'Profile', icon: , group: 'secondary' }, + { key: 'settings', label: 'Settings', icon: , group: 'secondary' } +]; + + +export const CommissionerSidebar: React.FC = ({ + open, + onToggle, + selectedNav, + onSelectNav, + primaryItems, onProfileClick, + allApplicationsToggle: _allApplicationsToggle, + setAllApplicationsToggle: _setAllApplicationsToggle +}) => { + // Ref for the profile button (used for anchoring profile modal) + const profileButtonRef = React.useRef(null); + + // Handler for secondary item clicks (extend for custom logic if needed) + const handleSecondaryItemClick = (_key: string) => { + // Special logic for secondary items if needed + }; + + return ( + + {/* Toggle button for expanding/collapsing sidebar */} + + {open && ()} + + + + + + {/* Primary navigation section (top of sidebar) */} + + {primaryItems.map(item => { + const isSelected = selectedNav === item.key; + return ( + + + onSelectNav(item.key)} + sx={style.navListItemButton(selectedNav === item.key, open, undefined)} + > + + {item.icon} + + + {open && ( + + )} + + + + ); + })} + + + {/* Spacer to push secondary items to the bottom of the sidebar */} + + + + + {/* Secondary navigation section (bottom of sidebar) */} + + {secondaryItems.map(item => { + const isSelected = selectedNav === item.key; + const isProfile = item.key === 'profile'; + return ( + + + { + handleSecondaryItemClick(item.key); + // If profile is clicked, call the profile click handler with the button ref + if (isProfile && onProfileClick) { + onProfileClick(profileButtonRef.current); + } + }} + sx={style.navListItemButtonSecondary(isSelected, open, undefined)} + > + + {item.icon} + + {open && ( + + )} + + + + ); + })} + + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/components/Sidebar/SM_Sidebar.tsx b/frontend/web-ui/src/app/components/Sidebar/SM_Sidebar.tsx new file mode 100644 index 0000000..372f1d2 --- /dev/null +++ b/frontend/web-ui/src/app/components/Sidebar/SM_Sidebar.tsx @@ -0,0 +1,176 @@ +// This file contains the Sidebar component for the Service Manager dashboard. +// It renders the sidebar navigation, supports toggling, and includes primary/secondary navigation and profile/settings/help actions. +import React from 'react'; +import { + Box, + List, + ListItem, + ListItemButton, + ListItemIcon, + ListItemText, + IconButton, + Divider, + Tooltip +} from '@mui/material'; +import ErrorOutlineOutlinedIcon from '@mui/icons-material/ErrorOutlineOutlined'; +import AccountCircleOutlinedIcon from '@mui/icons-material/AccountCircleOutlined'; +import SettingsOutlinedIcon from '@mui/icons-material/SettingsOutlined'; +import MenuOutlinedIcon from '@mui/icons-material/MenuOutlined'; +import * as style from '../../styles/SideBar/SidebarStyle'; + +import hindiEnglishIcon from '../Sidebar/assets/hindi_english_icon.svg'; + +// Represents a navigation item in the sidebar +export interface NavItem { + key: string; // Unique key for the nav item + label: string; // Display label + icon: React.ReactNode; // Icon to show + group?: 'primary' | 'secondary'; // Group type (optional) +} + +// Props for the Sidebar component +// - open: whether sidebar is expanded +// - onToggle: callback to toggle expansion (handled by parent) +// - selectedNav: currently selected nav item key +// - onSelectNav: callback to change selected nav item +// - primaryItems: array of navigation items to display in the primary section +// - onProfileClick: callback for profile button (optional) +// - allApplicationsToggle/setAllApplicationsToggle: toggles for extra features (optional) +export interface SidebarProps { + open: boolean; + onToggle: () => void; + selectedNav: string; + onSelectNav: (key: string) => void; + primaryItems: NavItem[]; + onProfileClick?: (anchorEl: HTMLElement | null) => void; + allApplicationsToggle?: boolean; + setAllApplicationsToggle?: (toggle: boolean) => void; +} + +// Secondary navigation items (bottom of sidebar) +const secondaryItems: NavItem[] = [ + { key: 'helpDesk', label: 'Help Desk', icon: , group: 'secondary' }, + { key: 'language', label: 'Language', icon: Language, group: 'secondary' }, + { key: 'profile', label: 'Profile', icon: , group: 'secondary' }, + { key: 'settings', label: 'Settings', icon: , group: 'secondary' } +]; + + +export const Sidebar: React.FC = ({ + open, + onToggle, + selectedNav, + onSelectNav, + primaryItems, onProfileClick, + allApplicationsToggle: _allApplicationsToggle, + setAllApplicationsToggle: _setAllApplicationsToggle +}) => { + // Ref for the profile button (used for anchoring profile modal) + const profileButtonRef = React.useRef(null); + + // Handler for secondary item clicks (extend for custom logic if needed) + const handleSecondaryItemClick = (_key: string) => { + // Special logic for secondary items if needed + }; + + return ( + + {/* Toggle button for expanding/collapsing sidebar */} + + {open && ()} + + + + + + {/* Primary navigation section (top of sidebar) */} + + {primaryItems.map(item => { + const isSelected = selectedNav === item.key; + return ( + + + onSelectNav(item.key)} + sx={style.navListItemButton(selectedNav === item.key, open, undefined)} + > + + {item.icon} + + + {open && ( + + )} + + + + ); + })} + + + {/* Spacer to push secondary items to the bottom of the sidebar */} + + + + + {/* Secondary navigation section (bottom of sidebar) */} + + {secondaryItems.map(item => { + const isSelected = selectedNav === item.key; + const isProfile = item.key === 'profile'; + return ( + + + { + handleSecondaryItemClick(item.key); + // If profile is clicked, call the profile click handler with the button ref + if (isProfile && onProfileClick) { + onProfileClick(profileButtonRef.current); + } + }} + sx={style.navListItemButtonSecondary(isSelected, open, undefined)} + > + + {item.icon} + + {open && ( + + )} + + + + ); + })} + + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/components/Sidebar/assets/hindi_english_icon.svg b/frontend/web-ui/src/app/components/Sidebar/assets/hindi_english_icon.svg new file mode 100644 index 0000000..aa593db --- /dev/null +++ b/frontend/web-ui/src/app/components/Sidebar/assets/hindi_english_icon.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/frontend/web-ui/src/app/components/Sidebar/provider/AdminSidebarProvider.tsx b/frontend/web-ui/src/app/components/Sidebar/provider/AdminSidebarProvider.tsx new file mode 100644 index 0000000..d369e73 --- /dev/null +++ b/frontend/web-ui/src/app/components/Sidebar/provider/AdminSidebarProvider.tsx @@ -0,0 +1,51 @@ +import React, { createContext, useContext, useState, type ReactNode } from 'react'; + +interface AdminSidebarContextType { + sideBarOpen: boolean; + setSideBarOpen: (open: boolean) => void; + toggleSideBar: () => void; + selectedNav: string; + setSelectedNav: (nav: string) => void; + handleNavSelection: (nav: string) => void; + profileModalAnchor: HTMLElement | null; + setProfileModalAnchor: (anchorEl: HTMLElement | null) => void; +} + +const AdminSidebarContext = createContext(undefined); + +export const useAdminSidebar = () => { + const context = useContext(AdminSidebarContext); + if (!context) { + throw new Error('useAdminSidebar must be used within an AdminSidebarProvider'); + } + return context; +}; + +export const AdminSidebarProvider: React.FC<{ children: ReactNode }> = ({ children }) => { + const [sideBarOpen, setSideBarOpen] = useState(true); + const [selectedNav, setSelectedNav] = useState('dashboard'); + const [profileModalAnchor, setProfileModalAnchor] = useState(null); + + const toggleSideBar = () => setSideBarOpen(prev => !prev); + + const handleNavSelection = (nav: string) => { + setSelectedNav(nav); + }; + + return ( + + {children} + + ); +}; diff --git a/frontend/web-ui/src/app/components/Sidebar/provider/CMSideBarProvider.tsx b/frontend/web-ui/src/app/components/Sidebar/provider/CMSideBarProvider.tsx new file mode 100644 index 0000000..6aff876 --- /dev/null +++ b/frontend/web-ui/src/app/components/Sidebar/provider/CMSideBarProvider.tsx @@ -0,0 +1,77 @@ +// This file provides the CommissionerSidebarProvider and related context/hooks for managing sidebar state in the Commissioner dashboard. +// It handles sidebar open/close, navigation selection, toggles, and profile modal anchor for the sidebar UI. +import React, { createContext, useContext, useState, type ReactNode } from 'react'; +import { useNavigate, useLocation } from 'react-router-dom'; + +// Context type for sidebar state and actions +interface CommissionerSidebarContextType { + sideBarOpen: boolean; // Whether the sidebar is open + setSideBarOpen: (open: boolean) => void; // Setter for sidebar open state + toggleSideBar: () => void; // Toggle sidebar open/close + selectedNav: string; // Currently selected navigation item + setSelectedNav: (nav: string) => void; // Setter for selected navigation + handleNavSelection: (nav: string) => void; // Handler for navigation selection + allApplicationsToggle: boolean; // Toggle for "all applications" section + setAllApplicationsToggle: (toggle: boolean) => void; // Setter for applications toggle + profileModalAnchor: HTMLElement | null; // Anchor element for profile modal + setProfileModalAnchor: (anchorEl: HTMLElement | null) => void; // Setter for profile modal anchor +} + +// Create the sidebar context +const CommissionerSidebarContext = createContext(undefined); + +// Custom hook to access the sidebar context +export const useCommissionerSidebar = () => { + const context = useContext(CommissionerSidebarContext); + if (!context) { + throw new Error('useCommissionerSidebar must be used within a CommissionerSidebarProvider'); + } + return context; +}; + + +// Provider component to wrap parts of the app that need sidebar state +export const CommissionerSidebarProvider: React.FC<{ children: ReactNode }> = ({ children }) => { + const navigate = useNavigate(); + const location = useLocation(); + + // State for whether the sidebar is open + const [sideBarOpen, setSideBarOpen] = useState(true); + // State for the currently selected navigation item + const [selectedNav, setSelectedNav] = useState('dashboard'); + // State for toggling the "all applications" section + const [allApplicationsToggle, setAllApplicationsToggle] = useState(false); + // State for the anchor element of the profile modal + const [profileModalAnchor, setProfileModalAnchor] = useState(null); + + // Toggle the sidebar open/close state + const toggleSideBar = () => setSideBarOpen(prev => !prev); + + // Handle navigation selection and redirect if needed + const handleNavSelection = (nav: string) => { + setSelectedNav(nav); + // If on Commissioner property details, navigate back to Commissioner home + if (location.pathname.startsWith('/commissioner/property-details/')) { + navigate('/commissioner/home'); + } + }; + + return ( + + {children} + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/components/Sidebar/provider/SMSideBarProvider.tsx b/frontend/web-ui/src/app/components/Sidebar/provider/SMSideBarProvider.tsx new file mode 100644 index 0000000..9ea12a3 --- /dev/null +++ b/frontend/web-ui/src/app/components/Sidebar/provider/SMSideBarProvider.tsx @@ -0,0 +1,77 @@ +// This file provides the SidebarProvider and related context/hooks for managing sidebar state in the Service Manager dashboard. +// It handles sidebar open/close, navigation selection, toggles, and profile modal anchor for the sidebar UI. +import React, { createContext, useContext, useState, type ReactNode } from 'react'; +import { useNavigate, useLocation } from 'react-router-dom'; + +// Context type for sidebar state and actions +interface SidebarContextType { + sideBarOpen: boolean; // Whether the sidebar is open + setSideBarOpen: (open: boolean) => void; // Setter for sidebar open state + toggleSideBar: () => void; // Toggle sidebar open/close + selectedNav: string; // Currently selected navigation item + setSelectedNav: (nav: string) => void; // Setter for selected navigation + handleNavSelection: (nav: string) => void; // Handler for navigation selection + allApplicationsToggle: boolean; // Toggle for "all applications" section + setAllApplicationsToggle: (toggle: boolean) => void; // Setter for applications toggle + profileModalAnchor: HTMLElement | null; // Anchor element for profile modal + setProfileModalAnchor: (anchorEl: HTMLElement | null) => void; // Setter for profile modal anchor +} + +// Create the sidebar context +const SidebarContext = createContext(undefined); + +// Custom hook to access the sidebar context +export const useSidebar = () => { + const context = useContext(SidebarContext); + if (!context) { + throw new Error('useSidebar must be used within a SidebarProvider'); + } + return context; +}; + + +// Provider component to wrap parts of the app that need sidebar state +export const SidebarProvider: React.FC<{ children: ReactNode }> = ({ children }) => { + const navigate = useNavigate(); + const location = useLocation(); + + // State for whether the sidebar is open + const [sideBarOpen, setSideBarOpen] = useState(true); + // State for the currently selected navigation item + const [selectedNav, setSelectedNav] = useState('dashboard'); + // State for toggling the "all applications" section + const [allApplicationsToggle, setAllApplicationsToggle] = useState(false); + // State for the anchor element of the profile modal + const [profileModalAnchor, setProfileModalAnchor] = useState(null); + + // Toggle the sidebar open/close state + const toggleSideBar = () => setSideBarOpen(prev => !prev); + + // Handle navigation selection and redirect if needed + const handleNavSelection = (nav: string) => { + setSelectedNav(nav); + // If on Service Manager property details, navigate back to Service Manager home + if (location.pathname.startsWith('/service-manager/property-details/')) { + navigate('/service-manager/home'); + } + }; + + return ( + + {children} + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/components/Sidebar/sidebarConfig.tsx b/frontend/web-ui/src/app/components/Sidebar/sidebarConfig.tsx new file mode 100644 index 0000000..e686cf6 --- /dev/null +++ b/frontend/web-ui/src/app/components/Sidebar/sidebarConfig.tsx @@ -0,0 +1,41 @@ +// This file defines the primary navigation items for the Service Manager and Commissioner sidebars. +// Each item includes a key, label, icon, and group for use in sidebar navigation components. +import DashboardOutlinedIcon from '@mui/icons-material/DashboardOutlined'; +import MoveToInboxOutlinedIcon from '@mui/icons-material/MoveToInboxOutlined'; +import SearchOutlinedIcon from '@mui/icons-material/SearchOutlined'; +import FactCheckOutlinedIcon from '@mui/icons-material/FactCheckOutlined'; +import MapOutlinedIcon from '@mui/icons-material/MapOutlined'; +import CheckCircleOutlineIcon from '@mui/icons-material/CheckCircleOutline'; +import PeopleOutlinedIcon from '@mui/icons-material/PeopleOutlined'; +import AssessmentOutlinedIcon from '@mui/icons-material/AssessmentOutlined'; +import LocationCityOutlinedIcon from '@mui/icons-material/LocationCityOutlined'; +import SecurityOutlinedIcon from '@mui/icons-material/SecurityOutlined'; +import NotificationsOutlinedIcon from '@mui/icons-material/NotificationsOutlined'; +import { type NavItem } from './CM_Sidebar'; + +// Primary navigation items for the Service Manager sidebar +export const serviceManagerPrimaryItems: NavItem[] = [ + { key: 'dashboard', label: 'Dashboard', icon: , group: 'primary' }, + { key: 'applicationInbox', label: 'Application Inbox', icon: , group: 'primary' }, + { key: 'searchProperty', label: 'Search Property', icon: , group: 'primary' }, + { key: 'allApplications', label: 'All Applications', icon: , group: 'primary' }, + { key: 'mapView', label: 'Map View', icon: , group: 'primary' } +]; + +// Primary navigation items for the Commissioner sidebar +export const commissionerPrimaryItems: NavItem[] = [ + { key: 'dashboard', label: 'Dashboard', icon: , group: 'primary' }, + { key: 'applicationApproval', label: 'Application Approval', icon: , group: 'primary' }, + { key: 'searchProperty', label: 'Search Property', icon: , group: 'primary' }, + { key: 'allApplications', label: 'All Applications', icon: , group: 'primary' } +]; + +export const adminPrimaryItems: NavItem[] = [ + { key: 'dashboard', label: 'Dashboard', icon: , group: 'primary' }, + { key: 'userManagement', label: 'User Management', icon: , group: 'primary' }, + { key: 'demandGeneration', label: 'Demand Generation', icon: , group: 'primary' }, + { key: 'mapConfiguration', label: 'Map Configuration', icon: , group: 'primary' }, + { key: 'localization', label: 'Localization', icon: , group: 'primary' }, + { key: 'accessControl', label: 'Access Control', icon: , group: 'primary' }, + {key: 'notificationManagement', label: 'Notifications', icon: , group: 'primary' } +]; diff --git a/frontend/web-ui/src/app/components/profile-modal/components/ProfileModal.tsx b/frontend/web-ui/src/app/components/profile-modal/components/ProfileModal.tsx new file mode 100644 index 0000000..d2f512a --- /dev/null +++ b/frontend/web-ui/src/app/components/profile-modal/components/ProfileModal.tsx @@ -0,0 +1,120 @@ +import React from 'react' +import { Box, Popover, Typography, Button } from '@mui/material' +import AccountCircleOutlinedIcon from '@mui/icons-material/AccountCircleOutlined' +import { useAuth } from '../../../features/login-signup/provider/AuthProvider'; +import { useDispatch, useSelector } from 'react-redux'; +import { clearUser } from '../../../../store/userSlice'; +import type { RootState } from '../../../../store'; + +// Props for ProfileModal: anchor element for popover and close handler +export interface ProfileModalProps { + anchorEl: HTMLElement | null; + onClose: () => void; +} + +const ProfileModal: React.FC = ({ anchorEl, onClose }) => { + const open = Boolean(anchorEl); + const { logout } = useAuth(); + const dispatch = useDispatch(); + + // Get user from Redux persisted state instead of AuthProvider + const currentUser = useSelector((state: RootState) => state.user.currentUser); + + // Extract user information with fallbacks + const fullName = currentUser + ? `${currentUser.profile.firstName} ${currentUser.profile.lastName}` + : "Full Name"; + + const roleMapping: Record = { + SERVICE_MANAGER: "Service Manager", + COMMISSIONER: "Commissioner", + ADMIN: "IT Admin", + }; + + const role = currentUser ? roleMapping[currentUser.role] || "N/A" : "N/A"; + + const handleLogOut = async () => { + await logout(); + dispatch(clearUser()); + onClose(); + }; + + return ( + + {/* Profile section with icon, name, and role */} + + + + + {fullName} + + + Role : {role} + + + + + {/* Spacer to push the logout button to the bottom */} + + + {/* Logout button at the bottom right */} + + + + + ); +}; + +export default ProfileModal; \ No newline at end of file diff --git a/frontend/web-ui/src/app/components/under-construction/UnderConstruction.tsx b/frontend/web-ui/src/app/components/under-construction/UnderConstruction.tsx new file mode 100644 index 0000000..c387bde --- /dev/null +++ b/frontend/web-ui/src/app/components/under-construction/UnderConstruction.tsx @@ -0,0 +1,119 @@ +import { type FC } from 'react'; +import { Box, Typography } from '@mui/material'; +import tenorGif from './assets/tenor.gif'; + +/** + * UnderConstruction component + * Renders an under construction message with animation for unfinished routes. + */ +const UnderConstruction: FC = () => { + return ( + + {/* Main content container */} + + {/* Animated Circle with Builder GIF */} + + Under construction + + + {/* Main under construction heading */} + + Under Construction + + + {/* Subtext with additional info */} + + We're building something awesome! + + + + This page is currently under development. Please check back soon. + + + + {/* Float animation */} + + + ); +}; + +export default UnderConstruction; \ No newline at end of file diff --git a/frontend/web-ui/src/app/components/under-construction/assets/tenor.gif b/frontend/web-ui/src/app/components/under-construction/assets/tenor.gif new file mode 100644 index 0000000..2a15c0e Binary files /dev/null and b/frontend/web-ui/src/app/components/under-construction/assets/tenor.gif differ diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/CommissionerDashBoardApi/dashboardApi.ts b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/CommissionerDashBoardApi/dashboardApi.ts new file mode 100644 index 0000000..e69de29 diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/Buttons/ActionButton.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/Buttons/ActionButton.tsx new file mode 100644 index 0000000..d0c10c9 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/Buttons/ActionButton.tsx @@ -0,0 +1,92 @@ +// ActionButton component for consistent button styling and behavior +// Used throughout the app for primary, secondary, and action buttons with custom styles + +import React from 'react' +import { Button } from '@mui/material' +import type { SxProps, Theme } from '@mui/material' + +// Props for the ActionButton component +interface ActionButtonProps { + children: React.ReactNode // Button label or content + onClick?: () => void // Click handler + variant?: 'contained' | 'outlined' | 'text' // MUI button variant + fullWidth?: boolean // If true, button takes full width + disabled?: boolean // If true, button is disabled + size?: 'small' | 'medium' | 'large' // Button size + color?: 'primary' | 'secondary' | 'success' | 'error' | 'info' | 'warning' // Button color + sx?: SxProps // Custom styles + startIcon?: React.ReactNode // Icon at the start + endIcon?: React.ReactNode // Icon at the end + type?: 'button' | 'submit' | 'reset' // Button type +} + +// ActionButton functional component +const ActionButton: React.FC = ({ + children, + onClick, + variant = 'outlined', + fullWidth = false, + disabled = false, + size = 'medium', + color = 'primary', + sx, + startIcon, + endIcon, + type = 'button' +}) => { + // Default and variant-specific styles for the button + const defaultStyles: SxProps = { + borderRadius: '8px', + textTransform: 'none', + fontSize: '14px', + fontWeight: 500, + padding: '8px 16px', + maxHeight: '36px', + py:1, + width: fullWidth ? '100%' : '85%', + // Outlined variant styles + ...(variant === 'outlined' && { + borderColor: '#0B4B66', + color: '#0B4B66', + backgroundColor: 'white', + '&:hover': { + backgroundColor: '#F9FAFB', + borderColor: '#0B4B66', + }, + }), + // Contained variant styles + ...(variant === 'contained' && { + backgroundColor: '#0B4B66', + color: 'white', + '&:hover': { + backgroundColor: '#083A4D', + }, + }), + // Disabled state styles + '&:disabled': { + opacity: 0.6, + cursor: 'not-allowed', + }, + ...sx + } + + // Render the MUI Button with custom styles and props + return ( + + ) +} + +export default ActionButton \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/Cards/CardStatusSummary.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/Cards/CardStatusSummary.tsx new file mode 100644 index 0000000..36303e6 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/Cards/CardStatusSummary.tsx @@ -0,0 +1,81 @@ +// CardStatusSummary component displays a summary of application statuses for a ward +// Shows counts for pending, approved, and rejected applications, plus average processing time + +import React from "react"; +import { Box, Typography } from "@mui/material"; +import { + cardContainerStyles, + cardHeaderRowStyles, + wardZoneTextStyles, + statusRowStyles, + statusItemStyles, + dividerStyles, + pendingStyles, + approvedStyles, + rejectedStyles, +} from "../../Styles/CardsStyles/CardStatusSummaryStyles"; + +// Props for CardStatusSummary: ward label and status counts +interface CardStatusSummaryProps { + wardLabel: string; + pending: number; + approved: number; + rejected: number; +} + +// Merge base and status-specific styles for each status box +const pendingStatusBoxStyles = { ...statusItemStyles, ...pendingStyles }; +const approvedStatusBoxStyles = { ...statusItemStyles, ...approvedStyles }; +const rejectedStatusBoxStyles = { ...statusItemStyles, ...rejectedStyles }; + +// CardStatusSummary functional component +const CardStatusSummary: React.FC = ({ + wardLabel, + pending, + approved, + rejected, +}) => ( + // Main card container + + {/* Header row with ward label and status summary */} + + {wardLabel} + + {/* Pending status box */} + + + {pending} + + Pending + + {/* Approved status box */} + + + {approved} + + Approved + + {/* Rejected status box */} + + + {rejected} + + Rejected + + {/* Average processing time (static for now) */} + + + 6 days + + + Avg. Time + + + + + {/* Divider line at the bottom of the card */} + + +); + +export default CardStatusSummary; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/Cards/MetricCard.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/Cards/MetricCard.tsx new file mode 100644 index 0000000..f6c9d7a --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/Cards/MetricCard.tsx @@ -0,0 +1,92 @@ +// This file contains the MetricCard component, which displays a metric value, title, trend, and target in a styled card. +// Used in the Commissioner dashboard for property tax and registration metrics. +import React from 'react' +import { Box, Typography } from '@mui/material' +import TrendingUpIcon from '@mui/icons-material/TrendingUp' +import TrendingDownIcon from '@mui/icons-material/TrendingDown' +import { + metricCardContainerStyles, + trendIndicatorStyles +} from '../../Styles/CardsStyles/MetricCardStyle' + +// Props for MetricCard: +// - title: metric title +// - value: main value to display +// - target: optional target/goal string +// - trend: optional trend percentage (positive/negative) +// - backgroundColor: card background color (optional) +// - borderColor: card border color (optional) +// - trendColor: color for trend indicator (optional) +interface MetricCardProps { + title: string + value: string + target?: string + trend?: number + backgroundColor?: string + borderColor?: string + trendColor?: string +} + +// MetricCard component displays a metric with title, value, trend, and target +const MetricCard: React.FC = ({ + title, + value, + target, + trend, + backgroundColor = '#ffffff', + borderColor = '#ffffff', + trendColor = '#ffffff' +}) => { + // Determine if the trend is positive (for icon) + const isPositiveTrend = trend !== undefined && trend >= 0 + + return ( + + {/* Top row: title and trend indicator */} + + + {title} + + {/* Show trend icon and value if trend is provided */} + {trend !== undefined && ( + + {isPositiveTrend ? ( + + ) : ( + + )} + + {Math.abs(trend)}% + + + )} + + + {/* Main value and optional target */} + + + {value} + + {target && ( + + {target} + + )} + + + ) +} + +export default MetricCard \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/Coms_DashBoardLayout.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/Coms_DashBoardLayout.tsx new file mode 100644 index 0000000..fca634c --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/Coms_DashBoardLayout.tsx @@ -0,0 +1,203 @@ +// This file contains the CommissionerDashBoard layout and related UI components for the Commissioner dashboard page. +// It includes the dashboard header, tabs, metric cards, map, and right-side actions/quick actions layout. +import React, { useState } from "react"; +import Box from "@mui/material/Box"; +import Stack from "@mui/material/Stack"; +import { dashboardTabs } from "../Utils/SelectorTabs"; +import SelectorTab from "./SelectorTab"; +import { Typography } from "@mui/material"; +import MetricCard from "./Cards/MetricCard"; +import { metricCardListSx } from "../Styles/Coms_DashboardLayoutStyles"; +import ScheduleDemandGeneration from "../Components/ScheduleDemandGeneration"; +import JurisdictionAndCardsSection from "./JurisdictionSection/JurisdictionAndCardsSection"; +import QuickActions from "./QuickAction/QuickActions"; +import { quickActionsList } from "../Utils/quickActionsList"; + + +import MapView from "../../../comissioner-app-features/property-approval/components/mapview"; +import { JurisdictionDropdown } from "../../../../components/JurisdictionDropdown/JurisdictionDropdown"; + +const DashboardHeader = () => { + return( + + + Dashboard + + + Property Tax based Insights and notifications + + + ) +}; + +// Map Component +const MapComponent = () => ( + + + +); + + + +const JurisdictionAndRightSideRow = () => ( + + + {/* LEFT: Jurisdiction and cards - Reduced width section */} + + + + + + {/* RIGHT: TWO STACKED BOXES - Increased width */} + + + + console.log('Search:', value)} + onGenerate={() => console.log('Generate clicked')} + maxWidth="100%" + /> + + + + + + + + +); + +const CommissionerDashBoard: React.FC = () => { + // State for the currently active dashboard tab + const [activeTab, setActiveTab] = useState('demand'); + + return ( + + {/* Jurisdiction Dropdown - Top Right */} + + + + + + + + {/* Map section (placeholder) */} + + + {/* Metric cards row */} + + + + + + + {/* Row with jurisdiction and right-side actions */} + + + + ); +}; + +export default CommissionerDashBoard; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/JurisdictionSection/JurisdictionAndCardsSection.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/JurisdictionSection/JurisdictionAndCardsSection.tsx new file mode 100644 index 0000000..adc860a --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/JurisdictionSection/JurisdictionAndCardsSection.tsx @@ -0,0 +1,48 @@ +// JurisdictionAndCardsSection component displays the jurisdiction title and a list of status summary cards +// Used in the Commissioner's dashboard to show application status for different wards/zones + +import React from "react"; +import { Box, Typography } from "@mui/material"; +import CardStatusSummary from "../Cards/CardStatusSummary"; + +// Functional component for displaying jurisdiction section and status summary cards +const JurisdictionAndCardsSection: React.FC = () => { + + return ( + // Main container for the section + + {/* Section title for jurisdiction */} + + + Jurisdiction + + + + {/* List of CardStatusSummary components for each ward/zone */} + + + + + + + + + ); +}; + +export default JurisdictionAndCardsSection; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/PopUps/GenerateDemandPopUp.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/PopUps/GenerateDemandPopUp.tsx new file mode 100644 index 0000000..036383c --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/PopUps/GenerateDemandPopUp.tsx @@ -0,0 +1,58 @@ +// GenerateDemandPopup component displays a modal dialog for generating a property tax demand +// Used to confirm and trigger the sending of a tax notice for an enumerated property + +import React from "react"; +import { Dialog, DialogTitle, DialogActions, Button, Typography, Box } from "@mui/material"; +import { + dialogStyles, + dialogTitleBoxStyles, + generateButtonStyles, + cancelButtonStyles, + dialogActionsStyles, +} from "../../Styles/PopUpsStyles/GenerateDemandPopUpStyles"; + +// Props for the GenerateDemandPopup component +interface GeneratePopupProps { + open: boolean; + onClose: () => void; + children?: React.ReactNode; +} + +// GenerateDemandPopup functional component +const GenerateDemandPopup: React.FC = ({ open, onClose }) => ( + // Dialog component for the popup + + {/* Dialog title and description */} + + + + Generate Demand for this Property + + + Send Tax notice for enumerated property + + + + {/* Action buttons for generating demand or cancelling */} + + + + + +); + +export default GenerateDemandPopup; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/QuickAction/QuickActions.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/QuickAction/QuickActions.tsx new file mode 100644 index 0000000..a49ff6c --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/QuickAction/QuickActions.tsx @@ -0,0 +1,103 @@ +// QuickActions component displays a card with a list of quick action buttons +// Used for providing easy access to frequent actions in the Commissioner's dashboard + +import React from "react"; +import { Card, CardContent, Typography, Box, Button } from "@mui/material"; + +// Represents a single quick action item +export interface QuickActionItem { + id: string; + label: string; + icon: React.ReactNode; + variant?: "contained" | "outlined"; + onClick?: () => void; +} + +// Props for the QuickActions component +export interface QuickActionsProps { + actions?: QuickActionItem[]; + title?: string; +} + +// QuickActions functional component +const QuickActions: React.FC = ({ + actions = [], + title = "Quick Actions", +}) => ( + // Card container for the quick actions section + + {/* Card content with title and action buttons */} + + + {title} + + {/* Render each quick action as a button */} + + {actions.map((action) => ( + + ))} + + + +); + +export default QuickActions; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/ScheduleDemandGeneration.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/ScheduleDemandGeneration.tsx new file mode 100644 index 0000000..3a67731 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/ScheduleDemandGeneration.tsx @@ -0,0 +1,125 @@ +// ScheduleDemandGeneration component for scheduling property tax demand generation +// Provides a search field and a button to trigger demand generation, with a popup confirmation + +import React, { useState } from 'react' +import { Box, Typography } from '@mui/material' +import SearchField from '../Components/SearchField/SearchField' +import ActionButton from '../Components/Buttons/ActionButton' +import type { SxProps, Theme } from '@mui/material' +import { + titleStyles as sharedTitleStyles, + contentBoxStyles +} from '../Styles/ScheduleDemandGenerationStyles' +import GenerateDemandPopup from "../Components/PopUps/GenerateDemandPopUp"; + +// Props for the ScheduleDemandGeneration component +interface ScheduleDemandGenerationProps { + title?: string + searchPlaceholder?: string + buttonText?: string + buttonVariant?: 'contained' | 'outlined' | 'text' + onSearch?: (value: string) => void + onGenerate?: () => void + disabled?: boolean + showSearch?: boolean + sx?: SxProps + maxWidth?: string | number +} + +// ScheduleDemandGeneration functional component +const ScheduleDemandGeneration: React.FC = ({ + title = "Schedule Demand Generation", + searchPlaceholder = "Search Jurisdiction", + buttonText = "Generate", + buttonVariant = "outlined", + onSearch, + disabled = false, + showSearch = true, + sx, + maxWidth = '400px' +}) => { + // State for search input value + const [searchValue, setSearchValue] = useState('') + // State to control popup visibility + const [popupOpen, setPopupOpen] = useState(false); + + // Handle search input change + const handleSearchChange = (value: string) => { + setSearchValue(value) + onSearch?.(value) + } + + // Handle search submit (e.g., on Enter or search icon click) + const handleSearchSubmit = (value: string) => { + onSearch?.(value) + } + + // Styles for the main container + const containerStyles: SxProps = { + borderRadius: '12px', + boxShadow: '0px 1px 3px rgba(0, 0, 0, 0.1)', + border: '1px solid #E5E7EB', + backgroundColor: '#ffffff', + padding: '24px', + maxWidth: maxWidth, + width: '100%', + ...sx + } + + // Title styles, with dynamic margin + const titleStyles: SxProps = { + ...sharedTitleStyles, + marginBottom: showSearch || buttonText ? '10px' : 0, // reduce gap + } + + // Content box styles, with reduced gap + const contentStyles: SxProps = { + ...contentBoxStyles, + gap: '8px', // reduce gap between search and button + } + + // Styles for the button container + const buttonContainerStyles: SxProps = { + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + } + + // Render the component UI + return ( + + + {title} + + + + {/* Optional search field for jurisdiction */} + {showSearch && ( + + )} + + {/* Action button to generate demand, opens popup */} + {buttonText && ( + + setPopupOpen(true)} + disabled={disabled} + > + {buttonText} + + setPopupOpen(false)} /> + + )} + + + ) +} + +export default ScheduleDemandGeneration \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/SearchField/SearchField.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/SearchField/SearchField.tsx new file mode 100644 index 0000000..6dece78 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/SearchField/SearchField.tsx @@ -0,0 +1,91 @@ +// SearchField component for entering and triggering search queries +// Used in dashboards and lists to filter or search data by user input + +import React from 'react' +import { TextField, InputAdornment, IconButton } from '@mui/material' +import SearchIcon from '@mui/icons-material/Search' +import type { SxProps, Theme } from '@mui/material' +import { searchFieldStyles, searchIconButtonStyles} from '../../Styles/SearchFieldStyle/searchFieldStyle' + +// Props for the SearchField component +interface SearchFieldProps { + placeholder?: string + value?: string + onChange?: (value: string) => void + onSearch?: (value: string) => void + fullWidth?: boolean + size?: 'small' | 'medium' + sx?: SxProps + disabled?: boolean + variant?: 'outlined' | 'filled' | 'standard' +} + +// SearchField functional component +const SearchField: React.FC = ({ + placeholder = "Search...", + value = "", + onChange, + onSearch, + fullWidth = true, + size = "small", + sx, + disabled = false, + variant = "outlined" +}) => { + // Handle input value change + const handleChange = (event: React.ChangeEvent) => { + const newValue = event.target.value + onChange?.(newValue) + } + + // Trigger search action + const handleSearch = () => { + onSearch?.(value) + } + + // Trigger search on Enter key press + const handleKeyPress = (event: React.KeyboardEvent) => { + if (event.key === 'Enter') { + handleSearch() + } + } + + // Combine default and custom styles + const sxProp = Array.isArray(sx) + ? [searchFieldStyles, ...sx] + : sx + ? [searchFieldStyles, sx] + : searchFieldStyles + + // Render the search input field with search icon button + return ( + + + + + + ), + }} + /> + ) +} + +export default SearchField \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/SelectorTab.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/SelectorTab.tsx new file mode 100644 index 0000000..88b7612 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Components/SelectorTab.tsx @@ -0,0 +1,41 @@ +// This file contains the SelectorTab component, which renders a row of selectable tabs for switching dashboard views. +// It is used in the Commissioner dashboard to switch between different data views. +import React from 'react' +import { Box } from '@mui/material' +import { tabContainerStyles, tabButtonStyles } from '../Styles/SelectorTabStyles' + +// Represents a single tab option +interface Tab { + id: string // Unique tab identifier + label: string // Display label for the tab +} + +// Props for SelectorTab: +// - tabs: array of tab options +// - activeTab: currently selected tab id +// - onTabChange: callback when a tab is selected +interface SelectorTabProps { + tabs: Tab[] + activeTab: string + onTabChange: (tabId: string) => void +} + +// SelectorTab component renders a row of clickable tabs +const SelectorTab: React.FC = ({ tabs, activeTab, onTabChange }) => { + return ( + + {/* Render each tab as a clickable box */} + {tabs.map((tab) => ( + onTabChange(tab.id)} // Change active tab on click + sx={tabButtonStyles(activeTab === tab.id)} // Style based on active state + > + {tab.label} + + ))} + + ) +} + +export default SelectorTab \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/CardsStyles/CardStatusSummaryStyles.ts b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/CardsStyles/CardStatusSummaryStyles.ts new file mode 100644 index 0000000..3c93fc2 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/CardsStyles/CardStatusSummaryStyles.ts @@ -0,0 +1,82 @@ +// Style objects for CardStatusSummary component and related UI elements +// These styles control the layout, colors, and appearance of status summary cards + +import type { SxProps, Theme } from "@mui/material/styles"; + +// Container style for the entire card +export const cardContainerStyles: SxProps = { + width: "100%", + background: "#fff", + borderRadius: "8px", + boxShadow: "0 1px 4px rgba(0,0,0,0.04)", + p: "0 0 0 0", + fontFamily: "inherit", + border: "2px solid #d9d9d9", + minHeight: 70, + display: "flex", + flexDirection: "column", + justifyContent: "center", + pb:3, +}; + +// Style for the header row containing ward/zone and status summary +export const cardHeaderRowStyles: SxProps = { + display: "flex", + flexDirection: "row", + alignItems: "center", + justifyContent: "space-between", + px: 2, + pt: 2, +}; + +// Style for the ward/zone label text +export const wardZoneTextStyles: SxProps = { + fontWeight: 500, + fontSize: 18, + color: "#222", + flex: 1, + textAlign: "left", +}; + +// Style for the row containing all status items (pending, approved, rejected, avg time) +export const statusRowStyles: SxProps = { + display: "flex", + flexDirection: "row", + gap: "40px", + alignItems: "center", + justifyContent: "flex-end", + flex: 2, +}; + +// Base style for each status item (pending, approved, rejected) +export const statusItemStyles: SxProps = { + display: "flex", + flexDirection: "column", + alignItems: "center", + minWidth: 60, +}; + +// Text color for pending status +export const pendingStyles: SxProps = { + color: "#b91900", +}; + +// Text color for approved status +export const approvedStyles: SxProps = { + color: "#00703c", +}; + +// Text color for rejected status +export const rejectedStyles: SxProps = { + color: "#c84c03", +}; + +// Style for the divider line at the bottom of the card +export const dividerStyles: SxProps = { + mt: "12px", + height: "2px", + width: "98%", + background: "linear-gradient(to right, #c84c03 95%, #e0e0e0 5%)", + borderRadius: "1px", + ml: "1%", +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/CardsStyles/MetricCardStyle.ts b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/CardsStyles/MetricCardStyle.ts new file mode 100644 index 0000000..61a82d8 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/CardsStyles/MetricCardStyle.ts @@ -0,0 +1,50 @@ +// This file defines style objects and functions for the MetricCard component and related metric UI elements. +// All styles use the MUI SxProps format for easy integration with Material-UI components. +import type { SxProps, Theme } from '@mui/material' + +// Style for the outer container of a metric card +export const metricCardContainerStyles = ( + backgroundColor: string, + borderColor: string +): SxProps => ({ + backgroundColor, + border: `1.5px solid ${borderColor}`, + borderRadius: '10px', + p:1, + display: 'flex', + flexDirection: 'column', + gap: 1, + minWidth:'250px' +}) + +// Style for the header row of a metric card (title and trend) +export const metricHeaderStyles: SxProps = { + display: 'flex', + justifyContent: 'space-between', + alignItems: 'center', + mb: 0.5, +} + +// Style for the main metric value text +export const metricValueStyles: SxProps = { + fontSize: '32px', + fontWeight: 600, + color: '#0F172A', + lineHeight: 1.2, +} + +// Style for the target/goal text below the metric value +export const metricTargetStyles: SxProps = { + fontSize: '14px', + fontWeight: 400, + color: '#64748B', + mt: 0.5, +} + +// Style for the trend indicator (icon and percentage) +export const trendIndicatorStyles = (trendColor: string): SxProps => ({ + display: 'flex', + alignItems: 'center', + gap: 0.5, + color: trendColor, +}) \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/Coms_DashboardLayoutStyles.ts b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/Coms_DashboardLayoutStyles.ts new file mode 100644 index 0000000..dfedb67 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/Coms_DashboardLayoutStyles.ts @@ -0,0 +1,10 @@ +// This file defines style objects for the Commissioner dashboard layout, including metric card row styles. +// All styles use the MUI SxProps format for easy integration with Material-UI components. +import type { SxProps, Theme } from '@mui/material' + +// Style for the row of metric cards (horizontal flex layout with gap) +export const metricCardListSx: SxProps = { + display: 'flex', + flexDirection: 'row', + gap: 2, +} diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/PopUpsStyles/GenerateDemandPopUpStyles.ts b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/PopUpsStyles/GenerateDemandPopUpStyles.ts new file mode 100644 index 0000000..d9222d9 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/PopUpsStyles/GenerateDemandPopUpStyles.ts @@ -0,0 +1,50 @@ +// Style objects for GenerateDemandPopUp component and related dialog UI elements +// These styles control the appearance of the demand generation popup dialog and its buttons + +import type { SxProps, Theme } from "@mui/material"; + +// Style for the main dialog container +export const dialogStyles: SxProps = { + borderRadius: "12px", +}; + +// Style for the box containing the dialog title and description +export const dialogTitleBoxStyles: SxProps = { + display: "flex", + flexDirection: "column", + alignItems: "flex-start", +}; + +// Style for the 'Generate Demand' button +export const generateButtonStyles: SxProps = { + backgroundColor: "#0b4b66", + color: "white", + borderRadius: "8px", + minWidth: 120, + padding: "6px 16px", + fontSize: "12px", + "&:hover": { + backgroundColor: "#083a4d", + }, +}; + +// Style for the 'Cancel action' button +export const cancelButtonStyles: SxProps = { + color: "#c84c03", + borderColor: "#c84c03", + borderRadius: "8px", + minWidth: 120, + padding: "6px 16px", + fontSize: "12px", + "&:hover": { + backgroundColor: "rgba(200, 76, 3, 0.08)", + borderColor: "#c84c03", + }, +}; + +// Style for the actions section at the bottom of the dialog +export const dialogActionsStyles: SxProps = { + justifyContent: "center", + gap: 2, + pb: 2, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/ScheduleDemandGenerationStyles.ts b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/ScheduleDemandGenerationStyles.ts new file mode 100644 index 0000000..59f5904 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/ScheduleDemandGenerationStyles.ts @@ -0,0 +1,91 @@ +// This file defines style objects for the ScheduleDemandGeneration component and its UI elements. +// All styles use the MUI SxProps format for easy integration with Material-UI components. +import type { SxProps, Theme } from '@mui/material' + +// Style for the outer card container +export const cardContainerStyles: SxProps = { + borderRadius: '12px', + boxShadow: '0px 1px 3px rgba(0, 0, 0, 0.1)', + border: '1px solid #E5E7EB', + backgroundColor: '#ffffff', + padding: '24px', + width: '100%', +} + +// Style for the card title text +export const titleStyles: SxProps = { + fontWeight: 600, + fontSize: '18px', + color: '#0B4B66', + marginBottom: '20px', + lineHeight: 1.4, + textAlign: 'center', +} + +// Style for the content box (holds search and button) +export const contentBoxStyles: SxProps = { + display: 'flex', + flexDirection: 'column', + gap: '16px', +} + +// Style for the search text field +// Updated component-specific styles +export const searchFieldStyles: SxProps = { + '& .MuiOutlinedInput-root': { + borderRadius: '8px', + backgroundColor: '#ffffff', + fontSize: '14px', + '& fieldset': { + borderColor: '#E5E7EB', + }, + '&:hover fieldset': { + borderColor: '#D1D5DB', + }, + '&.Mui-focused fieldset': { + borderColor: '#0B4B66', + borderWidth: '1px', + }, + }, + '& .MuiInputBase-input': { + padding: '12px 14px', + fontSize: '14px', + color: '#374151', + '&::placeholder': { + color: '#9CA3AF', + opacity: 1, + fontStyle: 'italic', + }, + }, +} + +// Style for the generate button +export const generateButtonStyles: SxProps = { + borderRadius: '8px', + textTransform: 'none', + fontSize: '14px', + fontWeight: 500, + padding: '12px 24px', + minHeight: '44px', + borderColor: '#0B4B66', + color: '#0B4B66', + backgroundColor: 'white', + '&:hover': { + backgroundColor: '#F9FAFB', + borderColor: '#0B4B66', + }, + '&:disabled': { + opacity: 0.6, + cursor: 'not-allowed', + }, +} + +// Style for the search icon button inside the text field +export const searchIconButtonStyles: SxProps = { + padding: '6px', + bgcolor: 'transparent', + color: '#0B4B66', + '&:hover': { + bgcolor: 'rgba(11, 75, 102, 0.04)' + }, +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/SearchFieldStyle/searchFieldStyle.ts b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/SearchFieldStyle/searchFieldStyle.ts new file mode 100644 index 0000000..940b9b7 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/SearchFieldStyle/searchFieldStyle.ts @@ -0,0 +1,45 @@ +// Style objects for SearchField component and its search icon button +// These styles control the appearance of the search input and icon in dashboards and lists + +import type { SxProps, Theme } from '@mui/material' + +// Styles for the search input field +export const searchFieldStyles: SxProps = { + '& .MuiOutlinedInput-root': { + borderRadius: '20px', + backgroundColor: '#f5f5f5', + fontSize: '14px', + height: '40px', + '& fieldset': { + border: 'none', + }, + '&:hover fieldset': { + border: 'none', + }, + '&.Mui-focused fieldset': { + border: 'none', + }, + }, + '& .MuiInputBase-input': { + padding: '8px 12px', + fontSize: '14px', + color: '#000000', + fontStyle: 'normal', + '&::placeholder': { + color: '#9CA3AF', + opacity: 1, + fontStyle: 'italic', + }, + }, + } + +// Styles for the search icon button at the end of the input +export const searchIconButtonStyles: SxProps = { + padding: '4px', + bgcolor: 'transparent', + color: '#6B7280', + '&:hover': { + bgcolor: 'transparent', + color: '#374151' + }, + } \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/SelectorTabStyles.ts b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/SelectorTabStyles.ts new file mode 100644 index 0000000..3ebc454 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Styles/SelectorTabStyles.ts @@ -0,0 +1,33 @@ +// This file defines style objects for the SelectorTab component and its tab buttons. +// All styles use the MUI SxProps format for easy integration with Material-UI components. +import type { SxProps, Theme } from '@mui/material' + +// Style for the tab container (row of tabs) +export const tabContainerStyles: SxProps = { + display: 'flex', + alignItems: 'center', + gap: 0, + backgroundColor: '#ffffff', + borderRadius: '6px', + padding: '0', + width: 'fit-content', + height: 28, +} + +// Style for each tab button, with active/inactive state +export const tabButtonStyles = (isActive: boolean): SxProps => ({ + padding: '10px 24px', + fontSize: '14px', + fontWeight: 500, + cursor: 'pointer', + borderRadius: '6px', + transition: 'all 0.2s ease', + backgroundColor: isActive ? '#0B4B66' : 'transparent', + color: isActive ? '#FFFFFF' : '#0B4B66', + height: '100%', + display: 'flex', + alignItems: 'center', + '&:hover': { + backgroundColor: isActive ? '#0A4A6E' : '#E2E8F0', + }, +}) \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Utils/SelectorTabs.ts b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Utils/SelectorTabs.ts new file mode 100644 index 0000000..8aec30a --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Utils/SelectorTabs.ts @@ -0,0 +1,8 @@ +// This file defines the tab options for the dashboard's SelectorTab component. +// Each tab has an id and a label for display in the UI. +export const dashboardTabs = [ + { id: 'demand', label: 'Demand Collection' }, + { id: 'coverage', label: 'Coverage' }, + { id: 'kpi', label: 'KPI Dashboard' }, + { id: 'reports', label: 'Reports' }, +]; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Utils/quickActionsList.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Utils/quickActionsList.tsx new file mode 100644 index 0000000..37531d5 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/Utils/quickActionsList.tsx @@ -0,0 +1,36 @@ +// List of quick action items for the Commissioner's dashboard +// Each item defines an action button with icon, label, and style variant + +import CheckCircleOutlineIcon from "@mui/icons-material/CheckCircleOutline"; +import PlaceIcon from "@mui/icons-material/Place"; +import ChatBubbleOutlineIcon from "@mui/icons-material/ChatBubbleOutline"; +import AnalyticsIcon from "@mui/icons-material/Analytics"; +import type { QuickActionItem } from "../Components/QuickAction/QuickActions"; + +// Array of quick actions to be displayed in the QuickActions component +export const quickActionsList: QuickActionItem[] = [ + { + id: "review-applications", + label: "Review Applications", + icon: , + variant: "contained", + }, + { + id: "view-jurisdiction", + label: "View Jurisdiction", + icon: , + variant: "outlined", + }, + { + id: "send-message", + label: "Send Message", + icon: , + variant: "outlined", + }, + { + id: "generate-report", + label: "Generate Report", + icon: , + variant: "outlined", + }, +]; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/hooks/coomissionerData.ts b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/hooks/coomissionerData.ts new file mode 100644 index 0000000..7bf61b3 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/Com_DashBoard/hooks/coomissionerData.ts @@ -0,0 +1,9 @@ +// import { useGetDashboardDataQuery } from "../api/dashboardApi"; // RTK Query slice +// export function useCommissionerDashboardData() { +// // Placeholders — Replace with your RTK Query slice or data logic +// const { data, isLoading, error } = useGetDashboardDataQuery(); +// return { +// dashboardData: data, +// loading: isLoading, +// error, +// }; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/api/allApplicationApi.ts b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/api/allApplicationApi.ts new file mode 100644 index 0000000..3d3f654 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/api/allApplicationApi.ts @@ -0,0 +1,71 @@ +// This file defines API endpoints for fetching and updating property applications for the Commissioner dashboard. +// It uses RTK Query (Redux Toolkit Query) for data fetching and caching. +import type { AllApplicationModel } from '../models/PropertyApplicationModel' +import { apiSlice } from '../../../../../store/apiSlice' +import { TAG_TYPES } from '../../../../../store/tagTypes' + +// Request params for fetching all applications (with pagination) +interface GetAllApplicationsRequest { + page?: number; + size?: number; +} + +// Response shape for fetching all applications +interface GetAllApplicationsResponse { + data: AllApplicationModel[]; + message: string; + pagination: { + page: number; + size: number; + totalItems: number; + totalPages: number; + }; + success: boolean; +} + +// Request params for updating an application's priority +interface UpdateApplicationPriorityRequest { + id: string; + priority: string; +} + +// Response shape for updating an application's priority +interface UpdateApplicationPriorityResponse { + data: AllApplicationModel; + message: string; + success: boolean; +} + +// Inject endpoints for all applications API +export const allApplicationApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + // Fetch all property applications (paginated) + getAllApplications: builder.query({ + query: ({ page = 0, size = 30 } = {}) => ({ + url: `/v1/applications?page=${page}&size=${size}`, + method: 'GET', + headers: { + 'X-User-Role': 'COMMISSIONER', + }, + }), + providesTags: [TAG_TYPES.APPLICATIONS], + }), + // Update the priority of a specific application + updateApplicationPriority: builder.mutation({ + query: ({ id, priority }) => ({ + url: `/v1/applications/${id}`, + method: 'PUT', + body: { + "priority": `${priority}` + }, + headers: { + 'X-User-Role': 'COMMISSIONER', + }, + }), + invalidatesTags: [TAG_TYPES.APPLICATIONS], + }), + }), +}) + +// Export hooks for use in components +export const { useGetAllApplicationsQuery, useUpdateApplicationPriorityMutation } = allApplicationApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/assets/pointer.svg b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/assets/pointer.svg new file mode 100644 index 0000000..50059a6 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/assets/pointer.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/assets/property_pointer_dark.svg b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/assets/property_pointer_dark.svg new file mode 100644 index 0000000..7d0889f --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/assets/property_pointer_dark.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/assets/property_pointer_light.svg b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/assets/property_pointer_light.svg new file mode 100644 index 0000000..4f4bde4 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/assets/property_pointer_light.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/components/AllApplications.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/components/AllApplications.tsx new file mode 100644 index 0000000..91ef005 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/components/AllApplications.tsx @@ -0,0 +1,243 @@ +// This file contains the AllApplications component, which displays and manages the list of property applications for the Commissioner dashboard. +// It includes search, filter, sort, and error/loading handling, and uses Material-UI for layout and styling. +import React, { useState } from 'react'; +import { + Box, + Typography, + TextField, + InputAdornment, + MenuItem, + Select, + FormControl, + CircularProgress, + Alert, + Container, + Button, +} from '@mui/material'; +// import FilterAltIcon from '@mui/icons-material/FilterAlt'; +import SearchIcon from '@mui/icons-material/Search'; +import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown'; +// import type { ApplicationModel } from '../models/PropertyApplicationModel'; +import { ApplicationCard } from './ApplicationCard'; +import { + pageContainer, + headerSection, + titleText, + subtitleText, + filterRow, + searchField, + sortDropdown, + applicationsContainer, + loadingContainer, +} from '../styles/AllApplicationStyle'; +import { useGetAllApplicationsQuery } from '../api/allApplicationApi'; +import { JurisdictionDropdown } from '../../../../components/JurisdictionDropdown/JurisdictionDropdown'; +import { jurisdictionDropdownStyles } from '../../../../styles/HomePageStyle/HomePageStyle'; + + +// Props for AllApplications (sidebar state, navigation handler if needed) +interface AllApplicationsProps { + sideBarOpen: boolean; + // navigate: (path: string) => void; +} + + +const AllApplications: React.FC = ({ }) => { + // State for filter, search, and sort + const [filterBy, setFilterBy] = useState('Filter'); + const [searchTerm, setSearchTerm] = useState(''); + const [sortOrder, setSortOrder] = useState('New - Old'); + + // Fetch applications data using RTK Query + const { + data: applications, + isLoading, + error, + } = useGetAllApplicationsQuery({ + page: 0, + size: 30 + }) + + // Handle search input change + const handleSearch = (event: React.ChangeEvent) => { + setSearchTerm(event.target.value); + // Implement search logic here + }; + + // Handle filter dropdown change + const handleFilterChange = (event: any) => { + setFilterBy(event.target.value); + }; + + // Handle sort dropdown change (future async logic can be added) + const handleSortChange = async (event: any) => { + const newSort = event.target.value; + setSortOrder(newSort); + try { + // setLoading(true); + // const order = newSort === 'New - Old' ? 'desc' : 'asc'; + // const apps = await AllApplicationsService.getSortedApplications(order); + // setApplications(apps); + } catch (err) { + // setError('Failed to sort applications'); + } finally { + // setLoading(false); + } + }; + + // Show loading spinner while fetching data + if (isLoading) { + return ( + + + + ); + } + + // Show error alert if data fetch fails + if (error) { + const errorMessage = 'status' in error + ? `Error: ${error.status}` + : error.message || 'Failed to load applications'; + + return ( + + {errorMessage} + + ); + } + + return ( + + {/* Jurisdiction dropdown at the top */} + + + + {/* Header section */} + + + All Applications + + + Manage properties under enumeration and verification + + + + {/* Filter row with filter, search, and sort */} + + {/* Filter Dropdown */} + + + + + {/* Search Bar */} + + + + ), + }} + /> + + {/* Sort Dropdown */} + + + + + + {/* Row with action buttons */} + + + + + + {/* Applications List */} + + {isLoading ? ( + Loading applications... + ) : error ? ( + Error loading applications + ) : !applications?.data || applications.data.length === 0 ? ( + No applications found + ) : ( + applications.data.map((app) => ( + + )) + )} + + + ); +}; + +export default AllApplications; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/components/ApplicationCard.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/components/ApplicationCard.tsx new file mode 100644 index 0000000..ec8fee7 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/components/ApplicationCard.tsx @@ -0,0 +1,165 @@ +// This file contains the ApplicationCard component, which displays a property application card with details, tags, and a map preview. +// Used in the Commissioner dashboard's All Applications list. +import React from 'react'; +import { + Box, + Typography, + Button, + Chip, +} from '@mui/material'; +import MapsHomeWorkOutlinedIcon from '@mui/icons-material/MapsHomeWorkOutlined'; +import DescriptionOutlinedIcon from '@mui/icons-material/DescriptionOutlined'; +import InfoOutlinedIcon from '@mui/icons-material/InfoOutlined'; +import type { AllApplicationModel } from '../models/PropertyApplicationModel'; +import { MapContainer, TileLayer, Marker } from 'react-leaflet'; +import 'leaflet/dist/leaflet.css'; +import L from 'leaflet'; +import { + cardContainer, + cardLeftSection, + cardRightSection, + propertyHeader, + propertyIcon, + propertyTitle, + propertyId, + infoIcon, + addressText, + tagsContainer, + tagChip, + actionsContainer, + imagesSection, + mapBox, + viewApplicationButton, +} from '../styles/ApplicationCardStyle'; +import RoomIcon from '@mui/icons-material/Room'; +import { useNavigate } from 'react-router-dom'; +import { renderToString } from 'react-dom/server'; +import '../styles/Marker.css' + +// Custom Leaflet marker icon for the map preview +const markerIcon = L.divIcon({ + html: renderToString( +
+ +
+ ), + className: 'custom-marker-icon', + iconSize: [32, 32], + iconAnchor: [16, 20], + popupAnchor: [0, -32], +}); + +// Props for ApplicationCard: +// - application: the application data to display +// - onSetPriority: optional callback for setting priority +interface ApplicationCardProps { + application: AllApplicationModel; + onSetPriority?: (id: string) => void; +} + + +export const ApplicationCard: React.FC = ({ + application +}) => { + // Build the full address string for display + const getFullAddress = (): string => { + if (application.Property.Address) { + const addr = application.Property.Address; + return `${addr.Street || ''}, ${addr.Locality || ''}, ${addr.WardNo || ''}`.replace(/^,\s*|,\s*$/g, ''); + } + return application.Property.ComplexName || 'Address not available'; + }; + + // Default map location (Delhi coordinates) + const getDefaultLocation = () => ({ lat: 28.6139, lng: 77.2090 }); + + // Navigation handler for clicking the card + const navigate = useNavigate(); + const handlePropertyCardClick = (applicationID: string) => { + // Optional: Store selected property ID in context, state, or as a route param! + navigate(`/commissioner/property-details/${applicationID}`); + }; + + return ( + + {/* Left Section: property details and tags */} + handlePropertyCardClick(application.ID)}> + {/* Property Header: icon, name, info, and tags */} + + + + + + {application.Property.ComplexName || 'N/A'} + + {/* Info icon (can be used for tooltips or details) */} + + + + {application.ApplicationNo} + + + {getFullAddress()} + + {/* Tags Row: property type, ownership, priority */} + + } + label={application.Property.PropertyType} + sx={tagChip} + /> + } + label={application.Property.OwnershipType} + sx={tagChip} + /> + + + + + + + {/* Right Section: actions and map preview */} + + {/* Action Buttons */} + + + + + {/* Images Section: map preview (static) */} + + + + + + + + + + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/models/PropertyApplicationModel.ts b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/models/PropertyApplicationModel.ts new file mode 100644 index 0000000..dc1a907 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/models/PropertyApplicationModel.ts @@ -0,0 +1,203 @@ + +// Represents a geographical location with latitude and longitude +export interface Location { + lat: number; // Latitude + lng: number; // Longitude +} + + +// Represents a status tag with a label and a color variant +export interface StatusTag { + label: string; // Text to display in the tag + variant: 'error' | 'success' | 'warning' | 'info'; // Visual style of the tag +} + + +// Represents a generic tag, e.g., for property or agent +export interface Tag { + type: string; // Type or label of the tag +} + + +// Represents an action that can be performed on an application (e.g., assign, set priority) +export interface Action { + type: 'priority' | 'assign'; // Type of action + label: string; // Button or action label + variant?: 'contained' | 'outlined' | 'text'; // Button style + color?: 'primary' | 'secondary' | 'error' | 'warning' | 'info' | 'success'; // Button color +} + + +// Represents detailed information about a property +export interface PropertyDetails { + ID: string; // Unique property ID + PropertyNo: string; // Property number + OwnershipType: string; // Type of ownership + PropertyType: string; // Type/category of property + ComplexName: string; // Name of the complex (if any) + Address: any | null; // Address details (structure may vary) + AssessmentDetails: any | null; // Assessment-related info + Amenities: any[]; // List of amenities + ConstructionDetails: any | null; // Construction-related info + AdditionalDetails: any | null; // Any extra details + GISData: any | null; // Geographic Information System data + CreatedAt: string; // Creation timestamp + UpdatedAt: string; // Last update timestamp + Documents: any[]; // Associated documents +} + + +// Represents a property application as received from the backend +export interface AllApplicationModel { + ID: string; // Unique application ID + ApplicationNo: string; // Application number + PropertyID: string; // Linked property ID + Priority: string; // Priority level + TenantID: string; // Tenant identifier + DueDate: string; // Due date for the application + AssignedAgent: string | null; // Agent assigned to the application + Status: string; // Current status + WorkflowInstanceID: string; // Workflow instance ID + AppliedBy: string; // User who applied + AssesseeID: string | null; // Assessee ID (if any) + Property: PropertyDetails; // Property details object + ApplicationLogs: any[]; // Logs related to the application + IsDraft: boolean; // Whether the application is a draft + CreatedAt: string; // Creation timestamp + UpdatedAt: string; // Last update timestamp + + AgentName: string; // Name of the assigned agent + AgentUsername: string; // Username of the assigned agent +} + + +// ApplicationModel is a frontend-friendly class for handling property application data and related logic +export class ApplicationModel { + id: string; // Unique application ID + propertyName: string; // Name of the property + location: Location; // Geographical location + fullAddress: string; // Full address as a string + date: string; // Date string (ISO or similar) + status: string; // Application status + statusTag: StatusTag; // Status tag object + tags: Tag[]; // List of tags (property, agent, etc.) + actions: Action[]; // List of available actions + images: (string | null)[]; // Array of image URLs or nulls + + // Constructor initializes the ApplicationModel from a data object + constructor(data: any) { + this.id = data.id; + this.propertyName = data.propertyName; + this.location = data.location; + this.fullAddress = data.fullAddress; + this.date = data.date; + this.status = data.status || ''; + this.statusTag = data.statusTag; + this.tags = data.tags || []; + this.actions = data.actions || []; + this.images = data.images || [null, null, null]; // Default to 3 empty slots + } + + // Returns the date in a human-readable format (e.g., 01-Dec-2025) + getFormattedDate(): string { + const dateObj = new Date(this.date); + return dateObj.toLocaleDateString('en-GB', { + day: '2-digit', + month: 'short', + year: 'numeric', + }); + } + + // Returns the time in a human-readable format (e.g., 10:30 AM) + getFormattedTime(): string { + const dateObj = new Date(this.date); + return dateObj.toLocaleTimeString('en-US', { + hour: '2-digit', + minute: '2-digit', + hour12: true, + }); + } + + // Returns the combined formatted date and time + getFormattedDateTime(): string { + return `${this.getFormattedDate()} ${this.getFormattedTime()}`; + } + + // Returns only the available (non-null) images + getAvailableImages(): string[] { + return this.images.filter((img): img is string => img !== null); + } + + // Checks if there are any images available + hasImages(): boolean { + return this.getAvailableImages().length > 0; + } + + // Returns the count of available images + getImageCount(): number { + return this.getAvailableImages().length; + } + + // Returns the background color for the status tag based on its variant + getStatusTagColor(): string { + switch (this.statusTag.variant) { + case 'error': + return '#FFE5E5'; // Red background for errors + case 'success': + return '#E5F8E5'; // Green background for success + case 'warning': + return '#FFF4E5'; // Orange background for warnings + case 'info': + return '#E5F4FF'; // Blue background for info + default: + return '#F5F5F5'; // Default gray + } + } + + // Returns the text color for the status tag based on its variant + getStatusTagTextColor(): string { + switch (this.statusTag.variant) { + case 'error': + return '#D32F2F'; // Red text for errors + case 'success': + return '#2E7D32'; // Green text for success + case 'warning': + return '#ED6C02'; // Orange text for warnings + case 'info': + return '#0288D1'; // Blue text for info + default: + return '#666'; // Default gray + } + } + + // Checks if the application is overdue (status is 'Due' or error variant) + isOverdue(): boolean { + return this.status === 'Due' || this.statusTag.variant === 'error'; + } + + // Returns the first action as the primary action, or null if none + getPrimaryAction(): Action | null { + return this.actions.length > 0 ? this.actions[0] : null; + } + + // Returns the second action as the secondary action, or null if not present + getSecondaryAction(): Action | null { + return this.actions.length > 1 ? this.actions[1] : null; + } + + // Checks if an agent is assigned by looking for a tag containing 'agent' + isAgentAssigned(): boolean { + return this.tags.some(tag => tag.type.toLowerCase().includes('agent')); + } + + // Returns the assigned agent's name if present, otherwise null + getAssignedAgent(): string | null { + const agentTag = this.tags.find(tag => tag.type.toLowerCase().includes('agent')); + return agentTag ? agentTag.type : null; + } + + // Returns all property tags except those related to agents + getPropertyTags(): Tag[] { + return this.tags.filter(tag => !tag.type.toLowerCase().includes('agent')); + } +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/styles/AllApplicationStyle.ts b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/styles/AllApplicationStyle.ts new file mode 100644 index 0000000..8cea0ff --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/styles/AllApplicationStyle.ts @@ -0,0 +1,105 @@ + +// Main container for the All Applications page +export const pageContainer = { + pt: 3, // Padding top + width: '80vw', // 80% of viewport width +}; + + +// Styles for the header section (title, filters, etc.) +export const headerSection = { + mb: 3, // Margin bottom +}; + + +// Styles for the main title text +export const titleText = { + fontWeight: 600, // Bold + mb: 0.5, // Margin bottom + fontFamily: 'Roboto, sans-serif', // Font family + fontSize: '32px', // Large font size + color: '#1a1a1a', // Dark color +}; + + +// Styles for the subtitle or description text +export const subtitleText = { + fontFamily: 'Roboto, sans-serif', + fontSize: '16px', // Standard font size + color: '#666', // Gray color + fontWeight: 400, // Normal weight +}; + + +// Row container for filter controls (search, sort, etc.) +export const filterRow = { + display: 'flex', // Flex layout + gap: 2, // Gap between children + mb: 3, // Margin bottom + alignItems: 'center', // Vertically center items +}; + + +// Styles for the search input field +export const searchField = { + flexGrow: 1, // Take up remaining space + bgcolor: '#fff', // White background + borderRadius: '24px', // Rounded corners + '& .MuiOutlinedInput-root': { + borderRadius: '24px', // Rounded input + height: '48px', // Input height + fontFamily: 'Roboto, sans-serif', + '& fieldset': { + border: '1px solid #e0e0e0', // Default border + }, + '&:hover fieldset': { + border: '1px solid #999', // Border on hover + }, + '&.Mui-focused fieldset': { + border: '1px solid #C84C0E', // Border when focused + }, + }, +}; + + +// Styles for the sort dropdown menu +export const sortDropdown = { + minWidth: '150px', // Minimum width +}; + + +// Container for the list of application cards +export const applicationsContainer = { + display: 'flex', // Flex layout + flexDirection: 'column', // Stack vertically + bgcolor: '#fff', // White background + borderRadius: '8px', // Rounded corners + height: '85vh', // Take up most of the viewport height + overflowY: 'auto', // Enable vertical scrolling + // mb: 3, // (Commented out) Margin bottom + pl: 3, // Padding left + pr: 2, // Padding right + py: 3, // Padding top and bottom + gap: 1, // Gap between cards + // Custom scrollbar styles + '&::-webkit-scrollbar': { + width: '6px', + background: 'transparent', + }, + '&::-webkit-scrollbar-thumb': { + background: '#c84c03', // Orange thumb + borderRadius: '10px', + }, + '&::-webkit-scrollbar-button': { + display: 'none', + }, +}; + + +// Container for loading spinner or loading state +export const loadingContainer = { + display: 'flex', // Flex layout + justifyContent: 'center', // Center horizontally + alignItems: 'center', // Center vertically + minHeight: '100vh', // Take up full viewport height +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/styles/ApplicationCardStyle.ts b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/styles/ApplicationCardStyle.ts new file mode 100644 index 0000000..a0474d3 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/styles/ApplicationCardStyle.ts @@ -0,0 +1,218 @@ + +// Main container for the application card +export const cardContainer = { + display: 'flex', // Flex layout for horizontal sections + alignItems: 'center', // Vertically center content + justifyContent: 'space-between', // Space between left and right sections + bgcolor: '#fff', // White background + borderRadius: '20px', // Rounded corners + p: 1, // Padding + boxShadow: 'none', // No shadow + border: '1.5px solid #e3e3e3', // Light border + m: 0.7, // Margin + minHeight: '135px', // Minimum height for the card +}; + + +// Left section of the card (property info, tags, etc.) +export const cardLeftSection = { + flex: 1, // Take up available space + display: 'flex', + flexDirection: 'column', // Stack vertically + minWidth: 0, // Prevent overflow +}; + + +// Header row for property icon and title +export const propertyHeader = { + display: 'flex', + alignItems: 'flex-start', // Align items to the top + gap: 1.5, // Space between icon and title + // mb: 1, // (Commented out) Margin bottom +}; + + +// Style for the property icon +export const propertyIcon = { + fontSize: 27, // Icon size + color: '#2D2D2D', // Dark gray color + mt: '4px', // Margin top + mr: '4px', // Margin right +}; + + +// Style for the property name/title +export const propertyTitle = { + fontFamily: 'Roboto, sans-serif', + fontSize: '20px', // Large font size + fontWeight: 700, // Bold + color: '#505050', // Medium gray + lineHeight: 1.1, // Tight line height +}; + + +// Style for the property ID text +export const propertyId = { + fontFamily: 'Roboto, sans-serif', + fontSize: '16px', // Standard font size + color: '#555', // Gray color + fontWeight: 400, // Normal weight + mt: '2px', // Margin top + letterSpacing: 0.2, // Slight letter spacing +}; + + + + +// Style for the info icon (tooltip, etc.) +export const infoIcon = { + fontSize: 18, // Icon size + color: '#999', // Light gray + cursor: 'pointer', // Pointer cursor on hover + mt: '-3px', // Negative margin to align +}; + + +// Style for the address text +export const addressText = { + fontFamily: 'Roboto, sans-serif', + fontSize: '16px', // Standard font size + color: '#222', // Almost black + fontWeight: 600, // Semi-bold + mt: 1, // Margin top + mb: 1, // Margin bottom + letterSpacing: 0.15, // Slight letter spacing +}; + + +// Container for property tags (chips) +export const tagsContainer = { + display: 'flex', // Flex layout + gap: 0.7, // Space between tags + flexWrap: 'wrap', // Wrap to next line if needed +}; + + +// Style for a colored tag chip (dynamic background color) +export const coloredTagChip = (color: string) => ({ + bgcolor: color, // Dynamic background color + // border: '1.5px solid #222', // (Commented out) Optional border + fontSize: '10px', // Small font + height: '22px', // Chip height + borderRadius: '20px', // Pill shape + fontFamily: 'Roboto, sans-serif', + color: '#222', // Text color + fontWeight: 500, // Medium weight + // px: 1, // (Commented out) Optional padding + // mr: 0.5, // (Commented out) Optional margin right + boxShadow: 'none', // No shadow + '& .MuiChip-icon': { + fontSize: 14, // Icon size + color: '#222', // Icon color + ml: 0.7, // Margin left + }, +}); + + +// Style for a default (white) tag chip +export const tagChip = { + bgcolor: '#fff', // White background + border: '1.5px solid #222', // Solid border + fontSize: '10px', // Small font + height: '22px', // Chip height + borderRadius: '20px', // Pill shape + fontFamily: 'Roboto, sans-serif', + color: '#222', // Text color + fontWeight: 500, // Medium weight + // px: 1, // (Commented out) Optional padding + // mr: 0.5, // (Commented out) Optional margin right + boxShadow: 'none', // No shadow + '& .MuiChip-icon': { + fontSize: 14, // Icon size + color: '#222', // Icon color + ml: 0.7, // Margin left + }, +}; + + +// Right section of the card (actions, images, map) +export const cardRightSection = { + display: 'flex', + flexDirection: 'column', // Stack vertically + alignItems: 'flex-end', // Align to the right + justifyContent: 'center', // Center vertically + minWidth: '380px', // Minimum width for layout +}; + + +// Container for action buttons (view, assign, etc.) +export const actionsContainer = { + display: 'flex', // Flex layout + gap: 1, // Space between buttons + mb: 1, // Margin bottom + justifyContent: 'flex-end', // Align to the right +}; + + +// Style for the 'View Location' button +export const viewLocationButton = { + borderRadius: '10px', // Rounded corners + textTransform: 'none', // No uppercase + fontFamily: 'Roboto, sans-serif', + fontSize: '12px', // Small font + fontWeight: 500, // Medium weight + px: 2.2, // Horizontal padding + height: '30px', // Button height + color: "#000", // Black text + backgroundColor: '#FBEEE8', // Light orange background +}; + + +// Style for the 'View Application' button +export const viewApplicationButton = { + borderRadius: '10px', // Rounded corners + textTransform: 'none', // No uppercase + fontFamily: 'Roboto, sans-serif', + fontSize: '12px', // Small font + fontWeight: 500, // Medium weight + px: 2.2, // Horizontal padding + height: '30px', // Button height + bgcolor: '#0B4B66', // Dark blue background + color: '#fff', // White text + border: 'none', // No border +}; + + +// Container for property images +export const imagesSection = { + display: 'flex', // Flex layout + gap: 2, // Space between images + mt: '2px', // Margin top +}; + + +// Style for each image box (thumbnail) +export const imageBox = { + width: '86px', // Fixed width + height: '64px', // Fixed height + borderRadius: '10px', // Rounded corners + display: 'flex', + alignItems: 'center', // Center image vertically + justifyContent: 'center', // Center image horizontally + bgcolor: '#F7F7F7', // Light gray background + boxShadow: 'none', // No shadow +}; + + +// Style for the map preview box +export const mapBox = { + width: '86px', // Fixed width + height: '64px', // Fixed height + borderRadius: '10px', // Rounded corners + overflow: 'hidden', // Hide overflow (for map tiles) + border: 'none', // No border + bgcolor: '#F7F7F7', // Light gray background + display: 'flex', + alignItems: 'center', // Center map vertically + justifyContent: 'center', // Center map horizontally +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/styles/Marker.css b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/styles/Marker.css new file mode 100644 index 0000000..609fac4 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/all-applications/styles/Marker.css @@ -0,0 +1,33 @@ + +/* + Customizes the default Leaflet marker icon when using the 'custom-marker-icon' class. + Removes background and border for a clean, transparent marker. +*/ +.leaflet-marker-icon.custom-marker-icon { + background: transparent; + border: none; +} + + +/* + Styles the custom marker icon container: + - Uses flexbox to center its content (usually an SVG) + - Sets a fixed size for consistent marker appearance +*/ +.custom-marker-icon { + display: flex; + align-items: center; + justify-content: center; + width: 32px; + height: 32px; +} + + +/* + Adds a subtle drop shadow to the SVG inside the marker for better visibility on the map. + Disables pointer events so the SVG doesn't interfere with map interactions. +*/ +.custom-marker-icon svg { + filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3)); + pointer-events: none; +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/assets/Search/arrow_left_alt.svg b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/assets/Search/arrow_left_alt.svg new file mode 100644 index 0000000..66c4a63 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/assets/Search/arrow_left_alt.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/assets/documentSectionIcon/task.svg b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/assets/documentSectionIcon/task.svg new file mode 100644 index 0000000..adcb55b --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/assets/documentSectionIcon/task.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/assets/edit_square.svg b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/assets/edit_square.svg new file mode 100644 index 0000000..ffeed7e --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/assets/edit_square.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/MapComponent.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/MapComponent.tsx new file mode 100644 index 0000000..8f2fa7e --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/MapComponent.tsx @@ -0,0 +1,87 @@ + +// React hooks for state, refs, and side effects +import { useRef, useEffect, useState } from 'react'; +// Leaflet library for interactive maps +import L from "leaflet"; +// MUI Box component for layout and styling +import { Box } from "@mui/material"; +// Import style objects for the map component +import { + mapComponentOuterStyle, + mapWrapperContainerStyle, + mapDivStyle, + mapOverlayStyle, +} from "../styles/MapComponent"; + + +/** + * MapWrapper renders a Leaflet map inside a Box component. + * It can be interactive or static based on the 'interactive' prop. + */ +export function MapWrapper({ interactive }: { interactive: boolean }) { + // Reference to the map container div + const mapRef = useRef(null); + + useEffect(() => { + if (!mapRef.current) return; + // Set the initial center of the map (latitude, longitude) + const center: [number, number] = [12.9141, 77.6387]; + // Initialize the Leaflet map + const map = L.map(mapRef.current, { zoomControl: false, attributionControl: false }).setView(center, 15); + // Add OpenStreetMap tiles + L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { + attribution: '© OpenStreetMap contributors' + }).addTo(map); + // Add a marker at the center with a popup + L.marker(center).addTo(map).bindPopup('Gandhi Nagar Complex'); + // If not interactive, disable all user interactions + if (!interactive) { + map.dragging.disable(); + map.scrollWheelZoom.disable(); + map.doubleClickZoom.disable(); + map.boxZoom.disable(); + map.keyboard.disable(); + map.touchZoom.disable(); + } + // Ensure map resizes after render for proper tile loading + setTimeout(() => { + map.invalidateSize(); + }, 200); + // Cleanup: remove the map instance on unmount + return () => { map.remove(); }; + }, [interactive]); + + return ( + + ); +} + + +/** + * MapComponent displays a static map preview by default. + * When the overlay is clicked, the map becomes interactive (user can pan/zoom). + */ +export default function MapComponent() { + // State to control whether the map is interactive + const [interactive, setInteractive] = useState(false); + + return ( + + + {/* Render the map, passing the interactive state */} + + {/* Overlay disables interaction until clicked */} + {!interactive && ( + setInteractive(true)} + title="Click to activate map" + /> + )} + + + ); +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/MapHeading.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/MapHeading.tsx new file mode 100644 index 0000000..84f21b1 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/MapHeading.tsx @@ -0,0 +1,51 @@ +// MapHeading component displays the heading and subtitle for the map view section +// Used in property approval pages to provide context for the map and insights + +import React from 'react' +import Box from '@mui/material/Box' +import Typography from '@mui/material/Typography' + +// Functional component for the map section heading +const MapHeading: React.FC = () => { + return ( + // Container box for heading and subtitle + + {/* Main heading for the map view */} + + Map View + + {/* Subtitle for additional context */} + + Property Tax based Insights + + + ) +} + +export default MapHeading diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/PropertyTaxCalculator.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/PropertyTaxCalculator.tsx new file mode 100644 index 0000000..565697b --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/PropertyTaxCalculator.tsx @@ -0,0 +1,130 @@ + +// PropertyTaxCalculator displays property info and a button to launch the tax calculator +import { Box, Typography, Button } from '@mui/material'; +import { Launch as LaunchIcon } from '@mui/icons-material'; + + +// Props for PropertyTaxCalculator component +interface PropertyTaxCalculatorProps { + propertyId?: string; // Unique property ID + propertyName?: string; // Name of the property + potentialDues?: number; // Potential tax dues (in INR) +} + + +export default function PropertyTaxCalculator({ + propertyName = "Gandhi Nagar Complex", + propertyId = "BLR-2024-001", + potentialDues = 10000.00 +}: PropertyTaxCalculatorProps) { + // Handler for calculator button click (could navigate to calculator page) + const handleCalculatorClick = () => { + // Handle navigation to tax calculator (currently just logs to console) + console.log('Opening tax calculator for property:', propertyId); + }; + + return ( + + {/* Header section with property name and ID */} + + + {propertyName} + + + {propertyId} + + + + {/* Blue box section showing potential dues and calculator button */} + + {/* Display the potential dues for the property */} + + + Potential Dues: + + + {/* Rupee symbol and formatted dues */} + + {potentialDues.toLocaleString('en-IN', { + minimumFractionDigits: 2, + maximumFractionDigits: 2 + })} + + + + {/* Button to open the property tax calculator */} + + + + + ); +} diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/SearchInfo.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/SearchInfo.tsx new file mode 100644 index 0000000..4342d6d --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/SearchInfo.tsx @@ -0,0 +1,301 @@ + +// SearchInfo displays a searchable list of zones with compliance and property info +import React, { useMemo, useState } from 'react' +import type { Dispatch, SetStateAction } from 'react' +import { Box, Card, CardContent, Typography, TextField, InputAdornment, IconButton } from '@mui/material' +import SearchIcon from '@mui/icons-material/Search' +// import ArrowBackIcon from '@mui/icons-material/ArrowBack' +import arrowLeft from '../assets/Search/arrow_left_alt.svg' +import type { Map as LeafletMap } from 'leaflet' +import { panelStyle } from '../../property-approval/styles/mapviewstyle' + + +// Type for a single zone's data +type ZoneData = { + zoneName: string // Name of the zone + wardNumber?: string // Ward number (optional) + totalProperties?: number // Total properties in the zone + compliance?: number // Compliance percentage + backgroundColor?: string // Optional background color for card + // Legacy fields for backwards compatibility + count?: number // Legacy property count + ward?: string // Legacy ward name + [k: string]: any // Allow extra fields +} + +// type WardItem = { wardName: string; wardId?: string } + +// Props for SearchInfo component +interface SearchInfoProps { + zones?: ZoneData[] // List of zones to display/search + onZoneSelect?: (zoneName: string) => void // Callback when a zone is selected + onBack?: () => void // Callback for back button + renderZoneCard?: (zone: ZoneData, index: number) => React.ReactNode + + // Optional controlled query support + query?: string + setQuery?: Dispatch> + + // Optional props passed from MapView (for advanced search/highlight) + geojsonData?: any | null + searchResults?: any[] | null + setSearchResults?: Dispatch> + prevSearchResults?: any[] | null + setPrevSearchResults?: Dispatch> + prevQuery?: string | null + setPrevQuery?: Dispatch> + notFoundNames?: string[] | null + setNotFoundNames?: Dispatch> + highlightKeys?: Set + setHighlightKeys?: Dispatch>> + mapRef?: React.RefObject +} + + +const SearchInfo: React.FC = ({ + zones = [], + onZoneSelect, + onBack, + renderZoneCard, + query: propQuery, + setQuery: setPropQuery, +}) => { + // Local state for the search query if not controlled by parent + const [localQuery, setLocalQuery] = useState(propQuery ?? '') + // Use controlled query if provided, otherwise use local state + const query = propQuery !== undefined ? propQuery : localQuery + const setQuery = setPropQuery ?? setLocalQuery + + // Filter zones based on the search query (case-insensitive) + const filteredZones = useMemo(() => { + const q = (query || '').trim().toLowerCase() + if (!q || q === 'all') return zones // Show all zones when empty or "all" + return zones.filter( + (z) => + (z.zoneName || '').toString().toLowerCase().includes(q) || + (z.wardNumber || '').toString().toLowerCase().includes(q) || + (z.count?.toString() || '').includes(q) || + (z.ward || '').toString().toLowerCase().includes(q), + ) + }, [zones, query]) + + // If a zone is selected, prepare searchable wards list + // const selectedZoneData = selectedZone ? zones.find((z) => z.zoneName === selectedZone) : null + // const filteredWards = useMemo(() => { + // const q = (query || '').trim().toLowerCase() + // if (!selectedZoneData) return [] + // const wardsList: WardItem[] = (selectedZoneData.wards || []) as WardItem[] + // if (!q) return wardsList + // return wardsList.filter((w: WardItem) => (w.wardName || '').toLowerCase().includes(q) || (w.wardId || '').toLowerCase().includes(q)) + // }, [selectedZoneData, query]) + + return ( +
+ {/* Top section: back button and title */} + + + back + + + Zone Collection Information + + + + {/* Search input for filtering zones */} + setQuery(e.target.value)} + fullWidth + variant="outlined" + size="small" + sx={{ + mb: 2, + // root outline and background to match pill UI + '& .MuiOutlinedInput-root': { + borderRadius: '28px', + backgroundColor: '#ffffff', + boxShadow: '0 6px 20px rgba(0,0,0,0.35)', + height: 38, + // remove extra right padding so adornment can sit flush + paddingRight: 0, + '& fieldset': { border: 'none' }, + }, + // input padding and placeholder color + '& .MuiOutlinedInput-input': { + padding: '10px 12px', + fontSize: 14, + '&::placeholder': { color: '#cfcfcf', opacity: 1 }, + }, + }} + InputProps={{ + endAdornment: ( + + + + + + ), + }} + /> + + {/* List of filtered zones or search instructions */} + + {filteredZones.length === 0 ? ( + // No zones found for the search query + + No zones available + + ) : ( + // Render each filtered zone as a card + filteredZones.map((z, idx) => ( + renderZoneCard ? ( + + {renderZoneCard(z, idx)} + + ) : ( + onZoneSelect?.(z.zoneName)} + sx={{ + cursor: onZoneSelect ? 'pointer' : 'default', + mb: 2, + borderRadius: '12px', + boxShadow: 'none', + border: '1px solid #E0E0E0', + backgroundColor: z.backgroundColor || '#FFFFFF', + '&:hover': { boxShadow: '0 4px 12px rgba(0,0,0,0.15)', transform: 'translateY(-2px)' }, + transition: 'all 0.2s ease-in-out', + }} + > + + {/* Zone Title */} + + {z.zoneName} + + + {/* Ward Number */} + + {z.wardNumber || z.ward || 'N/A'} + + + {/* Total Properties */} + + + Total Properties: + + + {z.totalProperties ?? z.count ?? 'N/A'} + + + + {/* Compliance */} + + + Compliance + + = 80 ? '#4CAF50' : + z.compliance && z.compliance >= 60 ? '#FF9800' : '#F44336' + }} + > + {z.compliance ? `${z.compliance}%` : 'N/A'} + + + + {/* Progress Bar for compliance percentage */} + {z.compliance && ( + + = 80 ? '#4CAF50' : + z.compliance >= 60 ? '#FF9800' : '#F44336', + borderRadius: 3, + transition: 'width 0.3s ease' + }} + /> + + )} + + + ) + )) + )} + +
+ ) +} + +export default SearchInfo \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/mapview.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/mapview.tsx new file mode 100644 index 0000000..fdac912 --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/mapview.tsx @@ -0,0 +1,216 @@ +// Main map view for property approval, using React Leaflet and GeoJSON overlays +import React, { useEffect, useState, useRef } from 'react' +import * as maplibregl from 'maplibre-gl' +import 'maplibre-gl/dist/maplibre-gl.css' +import { containerStyle, mapWrapperStyle } from '../../property-approval/styles/mapviewstyle' +// import SearchInfo from './SearchInfo' + + +const MapView: React.FC<{ selectedZone?: string | null }> = ({ selectedZone }) => { + const [geojsonData, setGeojsonData] = useState(null) + const [searchResults] = useState(null) + const mapRef = useRef(null) + const mapContainerRef = useRef(null) + const [filteredData, setFilteredData] = useState(null) + + // Load the GeoJSON data for wards on mount + useEffect(() => { + let mounted = true + fetch('/wards.geojson') + .then(r => r.ok ? r.json() : null) + .then(data => { if (mounted) setGeojsonData(data) }) + .catch(() => { if (mounted) setGeojsonData(null) }) + return () => { mounted = false } + }, []) + + // Filter GeoJSON based on selected zone + useEffect(() => { + if (!geojsonData) { + setFilteredData(null) + return + } + + if (!selectedZone) { + // No zone selected, show all + setFilteredData(geojsonData) + return + } + + // Extract zone name without " Zone" suffix + const zoneName = selectedZone.replace(' Zone', '').trim() + + // Filter features by Corporatio field + const filtered = { + type: 'FeatureCollection', + features: geojsonData.features.filter((feature: any) => + feature.properties?.Corporatio === zoneName + ) + } + + setFilteredData(filtered) + + // Fit map to filtered bounds after a short delay + if (filtered.features.length > 0 && mapRef.current) { + setTimeout(() => { + try { + // compute bounds from features + const allCoords: number[][] = [] + filtered.features.forEach((f: any) => { + const geom = f.geometry + const gather = (arr: any) => { + if (!arr) return + if (typeof arr[0] === 'number') { + allCoords.push(arr) + } else { + arr.forEach(gather) + } + } + gather(geom.coordinates) + }) + if (allCoords.length) { + const lons = allCoords.map(c => c[0]) + const lats = allCoords.map(c => c[1]) + const sw: [number, number] = [Math.min(...lons), Math.min(...lats)] + const ne: [number, number] = [Math.max(...lons), Math.max(...lats)] + // maplibre fitBounds expects [[west,south],[east,north]] + mapRef.current?.fitBounds([sw, ne], { padding: 50, maxZoom: 13 }) + } + } catch (e) { + console.error('Error fitting bounds:', e) + } + }, 200) + } + }, [selectedZone, geojsonData]) + + useEffect(() => { + // initialize MapLibre map + if (mapRef.current || !mapContainerRef.current) return + + const map = new maplibregl.Map({ + container: mapContainerRef.current, + style: 'https://api.maptiler.com/maps/streets-v2/style.json?key=YguiTF06mLtcpSVKIQyc', + center: [77.5946, 12.9716], + zoom: 12 + }) + + mapRef.current = map + + // add zoom control (zoom in/out) at bottom-left; hide compass if not needed + map.addControl(new maplibregl.NavigationControl({ showCompass: false, showZoom: true }), 'bottom-left') + + + map.on('load', () => { + try { + // add an empty source; data will be set later + if (!map.getSource('wards')) { + map.addSource('wards', { type: 'geojson', data: { type: 'FeatureCollection', features: [] } }) + } + + // fill layer + if (!map.getLayer('wards-fill')) { + map.addLayer({ + id: 'wards-fill', + type: 'fill', + source: 'wards', + paint: { + 'fill-color': selectedZone ? '#22bb77' : '#f0f4ef', + 'fill-opacity': selectedZone ? 0.25 : 0.12 + } + }) + } + + // line layer + if (!map.getLayer('wards-line')) { + map.addLayer({ + id: 'wards-line', + type: 'line', + source: 'wards', + paint: { + 'line-color': selectedZone ? '#22bb77' : '#2b7', + 'line-width': selectedZone ? 2 : 1 + } + }) + } + } catch (e) { + console.error('Error adding source/layers:', e) + } + }) + + // cleanup + return () => { + try { + map.remove() + } catch (e) { + console.error('Error removing map:', e) + } + mapRef.current = null + } + }, [mapContainerRef]) + + // update source data when geojson/searchResults/filteredData change + useEffect(() => { + const map = mapRef.current + if (!map) return + const data = (searchResults && searchResults.length) ? { type: 'FeatureCollection', features: searchResults } : (filteredData || geojsonData) + try { + const src: any = map.getSource('wards') + if (src && typeof src.setData === 'function') { + src.setData(data || { type: 'FeatureCollection', features: [] }) + } else if (!src && data) { + // if source missing (map not yet loaded), try adding when loaded + map.on('load', () => { + if (!map.getSource('wards')) map.addSource('wards', { type: 'geojson', data: data }) + }) + } + } catch (e) { + console.error('Error setting source data:', e) + } + }, [geojsonData, filteredData, searchResults]) + + // reflect selectedZone visual changes (paint properties) and fitBounds is handled earlier + useEffect(() => { + const map = mapRef.current + if (!map) return + try { + if (map.getLayer('wards-fill')) { + map.setPaintProperty('wards-fill', 'fill-color', selectedZone ? '#22bb77' : '#f0f4ef') + map.setPaintProperty('wards-fill', 'fill-opacity', selectedZone ? 0.25 : 0.12) + } + if (map.getLayer('wards-line')) { + map.setPaintProperty('wards-line', 'line-color', selectedZone ? '#22bb77' : '#2b7') + map.setPaintProperty('wards-line', 'line-width', selectedZone ? 2 : 1) + } + } catch (e) { + console.error('Error updating paint properties:', e) + } + }, [selectedZone]) + + return ( +
+
+
+ + {/* SearchInfo handles search UI and logic, passing all relevant state */} + {/* } + /> */} +
+
+ ) +} + +export default MapView \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/properties.tsx b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/properties.tsx new file mode 100644 index 0000000..8cafa1b --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/components/properties.tsx @@ -0,0 +1,214 @@ + +// CommissionerProperties component displays property approval details, map, and actions for a given application +import _React, { useState, useEffect } from 'react'; +import MapComponent from './MapComponent'; +import PropertyTaxCalculator from './PropertyTaxCalculator'; +import { Box, Typography, Select, MenuItem, CircularProgress, Alert } from '@mui/material'; +import { JurisdictionDropdown } from '../../../../components/JurisdictionDropdown/JurisdictionDropdown'; +import { jurisdictionDropdownStyles } from '../../../../styles/HomePageStyle/HomePageStyle'; +import { useDispatch, useSelector } from 'react-redux'; +// import { } from '../../../service-manager-app-features/application-view/api/applicationApi'; +import { selectApplicationError, selectApplicationLoading, setApplicationData, setApplicationError, setApplicationLoading } from '../../../service-manager-app-features/application-view/redux/apiSlice'; +import { loadingContainer } from '../../all-applications/styles/AllApplicationStyle'; +// import type { Property } from '../../../service-manager-app-features/application-view/model/applicationByIdModel'; +import SelectorTab, { type TabType } from '../../../service-manager-app-features/application-view/components/SelectorTab/SelectorTab'; +import { useGetApplicationByApplicationIdQuery } from '../../../service-manager-app-features/application-view/api/applicationApi'; + + +export interface CommissionerPropertyProps { + applicationID: string; +} + + +export const CommissionerProperties: React.FC = ({ applicationID }) => { + // State for the currently active tab (property, tax, etc.) + const [activeTab, setActiveTab] = useState('property'); + // State for the selected action (accept, reject, reassign) + const [action, setAction] = useState(''); + // const [, setProperty] = useState(null); + + // Redux dispatch and selectors for loading/error state + const dispatch = useDispatch(); + // const application = useSelector(selectApplication); + const isLoading = useSelector(selectApplicationLoading); + const error = useSelector(selectApplicationError); + + // Fetch application data using RTK Query + const { data, error: apiError, isLoading: apiLoading } = useGetApplicationByApplicationIdQuery(applicationID); + // const [acceptApplication, { isLoading: acceptLoading }] = useAcceptApplicationMutation(); + + // Update Redux state when API call changes + useEffect(() => { + dispatch(setApplicationLoading(apiLoading)); + if (data) dispatch(setApplicationData(data)); + if (apiError) dispatch(setApplicationError(apiError)); + }, [data, apiLoading, apiError, dispatch]); + + // Handle tab change event + const handleTabChange = (tab: TabType) => { + setActiveTab(tab); + }; + + // Show loading spinner while fetching data + if (isLoading) { + return ( + + + + ); + } + + // Show error alert if there is an error + if (error) { + const errorMessage = + 'status' in error + ? `Error: ${error.status}` + : error.message || 'Failed to load applications'; + + return ( + + {errorMessage} + + ); + } + + // Main UI layout for property approval + return ( + + + {/* Topbar with title and jurisdiction dropdown */} + + + + Property Approval + + + Pending Action + + + + {/* Jurisdiction Dropdown - Fixed at top right */} + + + + + + + {/* Main content area: action select, map, tax calculator, and tabs */} + + {/* Action select dropdown */} + + + + {/* Map and property tax calculator side by side */} + + + + + {/* Tabs for property details, tax, etc. */} + + + + + ); +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/styles/MapComponent.ts b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/styles/MapComponent.ts new file mode 100644 index 0000000..36bd14f --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/styles/MapComponent.ts @@ -0,0 +1,83 @@ + +// Style definitions for the MapComponent and its sub-elements +import type { SxProps, Theme } from "@mui/material"; + + +// Outer container for the map component +export const mapComponentOuterStyle: SxProps = { + height: 340, // Fixed height + borderRadius: 2, // Rounded corners + my: 1, // Vertical margin + border: '1px solid #000', // Black border + p: 0, // No padding + position: 'relative', + display: 'flex', + flexDirection: 'column', + background: '#fff', // White background + overflow: 'hidden', + width: '70%', // 70% width of parent +}; + + +// Wrapper for the map, ensures full size and background +export const mapWrapperContainerStyle: SxProps = { + width: '100%', + height: '100%', + borderRadius: 1, // Slightly rounded corners + background: '#fff', + position: 'relative', + minHeight: 340, // Minimum height for map +}; + + +// Style for the actual map div (Leaflet container) +export const mapDivStyle: SxProps = { + height: '100%', + width: '100%', + borderRadius: 1, // Slightly rounded corners + overflow: 'hidden', // Hide overflow for map tiles + minHeight: 340, +}; + + +// Overlay to disable map interaction until clicked +export const mapOverlayStyle: SxProps = { + position: 'absolute', + top: 0, left: 0, right: 0, bottom: 0, + zIndex: 20, // Above map + background: 'rgba(255,255,255,0)', // Transparent + cursor: 'pointer', // Show pointer cursor +}; + + +// Panel for map control buttons (bottom right corner) +export const mapButtonPanelStyle: SxProps = { + position: 'absolute', + right: 14, + bottom: 16, + display: 'flex', + flexDirection: 'column', + gap: '8px', // Space between buttons + zIndex: 1000, // Above map but below overlay +}; + + +// Style for individual map control buttons +export const mapButtonStyle: SxProps = { + background: '#fff', // White background + border: '1px solid #f1a37c', // Orange border + color: '#c75b2f', // Orange text + px: 1.5, // Horizontal padding + py: 0.5, // Vertical padding + borderRadius: '6px', // Rounded corners + fontSize: '0.85rem', // Small font + cursor: 'pointer', + minWidth: 0, + boxShadow: 'none', + '&:hover': { + background: '#fff5f0', // Light orange on hover + borderColor: '#d67645', + color: '#c75b2f', + }, + zIndex: 1001, // Above panel +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/styles/mapviewstyle.ts b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/styles/mapviewstyle.ts new file mode 100644 index 0000000..d30fb3c --- /dev/null +++ b/frontend/web-ui/src/app/features/comissioner-app-features/property-approval/styles/mapviewstyle.ts @@ -0,0 +1,165 @@ + +// Style definitions for the map view and search panel in property approval +import type { CSSProperties } from 'react' + + +// Main container for the map and side panel +export const containerStyle: CSSProperties = { + display: 'flex', // Flex layout for map and panel + gap: 10, // Space between map and panel + width: '100%', + height: '100vh', // Full viewport height + boxSizing: 'border-box', + overflow: 'hidden', + position: 'relative', +} + + +// Wrapper for the map area (fills container) +export const mapWrapperStyle: CSSProperties = { + width: '100%', + height: '100%', + position: 'relative', + flex: 1, // Take up available space + display: 'flex', + flexDirection: 'column', + minHeight: 0, // Important for scrolling flex children + overflow: 'hidden', +} + + +// Style for the floating search/info panel +export const panelStyle: CSSProperties = { + width: 327, // Fixed width + // Constrain height so panel doesn't force page scroll + maxHeight: 'calc(100% - 24px)', + position: 'absolute', + right: 24, + top: 15, + overflow: 'hidden', + padding: 12, + background: '#f7f7f7', // Light gray background + zIndex: 1000, + borderRadius: 20, // Rounded corners + boxShadow: '0 8px 24px rgba(0,0,0,0.12)', // Subtle shadow +} + + +// Container for the search form +export const searchFormContainerStyle: CSSProperties = { + marginBottom: 14, +} + + +// Wrapper for the search input (pill style) +export const searchInputWrapStyle: CSSProperties = { + display: 'flex', + alignItems: 'center', + background: '#fff', + borderRadius: 28, // Pill shape + padding: '6px 10px', + boxShadow: '0 6px 18px rgba(0,0,0,0.08)', + width: '100%', + maxWidth: 340, +} + + +// Style for the search input element +export const inputStyle: CSSProperties = { + border: 'none', + outline: 'none', + flex: 1, + fontSize: 14, + padding: '8px 12px', + background: 'transparent', +} + + +// Style for the search hint text +export const searchHintStyle: CSSProperties = { + marginTop: 8, + fontSize: 12, + color: '#666', +} + + +// Wrapper for the list of zones +export const zoneListWrapStyle: CSSProperties = { + marginBottom: 12, +} + + +// Style for the zone list title +export const zoneListTitleStyle: CSSProperties = { + display: 'block', + marginBottom: 6, +} + + +// Base style for zone selection buttons +export const zoneButtonStyleBase: CSSProperties = { + textAlign: 'left', + padding: '6px 8px', + borderRadius: 6, + border: '1px solid #eee', + background: '#fff', + cursor: 'pointer', + display: 'flex', + justifyContent: 'space-between', + alignItems: 'center', +} + + +// Style for each ward card in the list +export const wardCardStyle: CSSProperties = { + padding: 12, + borderRadius: 8, + border: '1px solid #f0e6e2', + background: '#fff', + marginBottom: 10, +} + + +// Row style for metrics (compliance, property count, etc.) +export const metricsRowStyle: CSSProperties = { + display: 'flex', + gap: 12, +} + + +// Block style for each metric +export const metricBlockStyle: CSSProperties = { + flex: 1, +} + + +// Style for metric label text +export const metricLabelStyle: CSSProperties = { + fontSize: 12, + color: '#666', +} + + +// Style for metric value text +export const metricValueStyle: CSSProperties = { + fontSize: 14, + fontWeight: 700, +} + + +// Style for the 'not found' message box +export const notFoundBoxStyle: CSSProperties = { + padding: 10, + borderRadius: 6, + border: '1px dashed #eee', + background: '#fafafa', + color: '#999', +} + + +// Style for the clear button in the search panel +export const clearButtonStyle: CSSProperties = { + padding: '6px 10px', +} + +export default {} diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/access-control/AccessControl.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/AccessControl.tsx new file mode 100644 index 0000000..e3dcbcb --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/AccessControl.tsx @@ -0,0 +1,234 @@ +import React, { useState } from 'react'; +import { Box, Container, Typography, Button } from '@mui/material'; +import AddIcon from '@mui/icons-material/Add'; +import { JurisdictionDropdown } from '../../../components/JurisdictionDropdown/JurisdictionDropdown'; +import { SystemRolesList } from './components/SystemRolesList'; +import { PendingRequestDetail, type PendingRequest } from './components/PendingRequestDetail'; +import { type RoleCardProps } from '../components/RoleCard'; +import CreateNewRoleDialog from './components/Dialog/CreateNewRoleDialog'; + +export const AccessControl: React.FC = () => { + const [selectedRole, setSelectedRole] = useState('Super Admin'); + const [openCreateRoleDialog, setOpenCreateRoleDialog] = useState(false); + + // Mock data for roles + const roles: RoleCardProps[] = [ + { + role: 'Super Admin', + description: 'Full system access', + userCount: 5, + userLabel: 'users', + levelTag: 'city level', + requestCount: 1, + requestLabel: 'Request', + }, + { + role: 'Field Agent', + description: 'Property verification', + userCount: 890, + userLabel: 'users', + levelTag: 'ward level', + requestCount: 7, + requestLabel: 'Requests', + }, + { + role: 'Service Manager', + description: 'Property tax management', + userCount: 15, + userLabel: 'users', + levelTag: 'city level', + requestCount: 1, + requestLabel: 'Request', + }, + { + role: 'GIS Admin', + description: 'Map data management', + userCount: 5, + userLabel: 'users', + levelTag: 'city level', + requestCount: 4, + requestLabel: 'Requests', + }, + ]; + + // Mock pending requests data + const pendingRequests: Record = { + 'Super Admin': { + id: '1', + name: 'Rajesh Kumar', + designation: 'Senior Tax Officer', + email: 'rajesh.kumar@municipal.gov', + reason: + 'Need full system access to manage critical tax operations and supervise ward-level activities.', + level: 'city level', + requestLabel: '1 pending request', + }, + 'Field Agent': { + id: '2', + name: 'Priya Sharma', + designation: 'Property Verifier', + email: 'priya.sharma@municipal.gov', + reason: 'Required to verify property details and update records in Ward 24.', + level: 'ward level', + requestLabel: '7 pending requests', + }, + 'Service Manager': { + id: '3', + name: 'Anil Reddy', + designation: 'Tax Manager', + email: 'anil.reddy@municipal.gov', + reason: 'Need access to manage property tax operations across the city.', + level: 'city level', + requestLabel: '1 pending request', + }, + 'GIS Admin': { + id: '4', + name: 'Lakshmi Menon', + designation: 'GIS Specialist', + email: 'lakshmi.menon@municipal.gov', + reason: 'Required to update and maintain map data for property boundaries.', + level: 'city level', + requestLabel: '4 pending requests', + }, + }; + + const handleRoleSelect = (role: string) => { + setSelectedRole(role); + }; + + const handleAddNewRole = () => { + setOpenCreateRoleDialog(true); + }; + + const handleEditRole = (role: string) => { + console.log('Edit role:', role); + // TODO: Implement edit role modal + }; + + const handleApprove = (requestId: string) => { + console.log('Approve request:', requestId); + // TODO: Implement approve logic + }; + + const handleReject = (requestId: string) => { + console.log('Reject request:', requestId); + // TODO: Implement reject logic + }; + + const handleDelete = (requestId: string) => { + console.log('Delete request:', requestId); + // TODO: Implement delete logic + }; + + const handleCloseCreateRoleDialog = () => { + setOpenCreateRoleDialog(false); // <-- close dialog + }; + + const currentRequest = selectedRole ? pendingRequests[selectedRole] : null; + + return ( + + {/* Header */} + + + + + Access Control Management + + + Manage roles, permissions, and jurisdiction access + + + + + + + + + + + + {/* Main Content - Two Column Layout */} + + {/* Left Column - System Roles */} + + + {/* Right Column - Pending Request Details */} + + + + {openCreateRoleDialog && ( + + )} + + + ); +}; diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/Dialog/CreateNewRoleDialog.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/Dialog/CreateNewRoleDialog.tsx new file mode 100644 index 0000000..bb5b567 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/Dialog/CreateNewRoleDialog.tsx @@ -0,0 +1,118 @@ +import { useState } from 'react'; +import { Dialog, DialogTitle, DialogContent, DialogActions, Button, Typography } from '@mui/material'; +import { AppTextField } from '../InputFields/AppTextField'; +import { AppDropdown } from '../InputFields/AppDropdown'; +import { PermissionList } from '../PermissionList/PermissionList'; +import type { Permission } from '../PermissionList/PermissionList'; + +const jurisdictionLevelOptions = ['Zone', 'Ward', 'City']; + +const defaultPermissions: Permission[] = [ + { key: 'dashboard', label: 'Dashboard', description: 'View', enabled: false }, + { key: 'properties', label: 'Properties', description: 'View, Create, Edit, Delete', enabled: false }, + { key: 'tax', label: 'Tax Calculation', description: 'View, Calculate, Approve', enabled: false }, + { key: 'gis', label: 'GIS/Maps', description: 'View, Edit, Upload, Delete', enabled: false }, + { key: 'users', label: 'Users', description: 'View, Edit, Upload, Delete', enabled: false }, + { key: 'reports', label: 'Reports', description: 'View, Generate, Export', enabled: false }, + { key: 'notifications', label: 'Notifications', description: 'View, Create, Send', enabled: false }, +]; + +const CreateNewRoleDialog = ({ onClose }: { onClose: () => void }) => { + const [form, setForm] = useState({ + roleName: '', + roleDescription: '', + jurisdictionLevel: '', + jurisdiction: '', + }); + + const [permissions, setPermissions] = useState(defaultPermissions); + + const handleChange = (field: string, value: string) => { + setForm(prev => ({ ...prev, [field]: value })); + }; + + const handleTogglePermission = (key: string) => { + setPermissions(perms => + perms.map(p => + p.key === key ? { ...p, enabled: !p.enabled } : p + ) + ); + }; + + return ( + + + Create New Role + + + handleChange('roleName', val)} + placeholder="e.g. Field Agent" + /> + handleChange('roleDescription', val)} + placeholder="Enter role description" + /> + handleChange('jurisdictionLevel', val)} + /> + handleChange('jurisdiction', val)} + placeholder="Select jurisdiction" + /> + + {/* Permissions Section */} + + + + + + + + ); +}; + +export default CreateNewRoleDialog; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/InputFields/AppDropdown.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/InputFields/AppDropdown.tsx new file mode 100644 index 0000000..c57f1b5 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/InputFields/AppDropdown.tsx @@ -0,0 +1,26 @@ +import { Box, Typography, FormControl, Select, MenuItem } from "@mui/material"; + +export const AppDropdown: React.FC<{ + label: string; + value: string; + options: string[]; + onChange: (val: string) => void; +}> = ({ label, value, options, onChange }) => ( + + {label} + + + + +); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/InputFields/AppTextField.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/InputFields/AppTextField.tsx new file mode 100644 index 0000000..925d9eb --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/InputFields/AppTextField.tsx @@ -0,0 +1,20 @@ +import { Box, Typography, TextField } from "@mui/material"; + +export const AppTextField: React.FC<{ + label: string; + value: string; + onChange: (val: string) => void; + placeholder?: string; +}> = ({ label, value, onChange, placeholder }) => ( + + {label} + onChange(e.target.value)} + placeholder={placeholder} + size="small" + /> + +); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/PendingRequestDetail.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/PendingRequestDetail.tsx new file mode 100644 index 0000000..2287ae1 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/PendingRequestDetail.tsx @@ -0,0 +1,253 @@ + + +import React from 'react'; +import { Box, Typography, Button, IconButton } from '@mui/material'; +import DeleteOutlineIcon from '@mui/icons-material/DeleteOutline'; +import AddIcon from '@mui/icons-material/Add'; +import CloseIcon from '@mui/icons-material/Close'; +import CheckIcon from '@mui/icons-material/Check'; + +export interface PendingRequest { + id: string; + name: string; + designation: string; + email: string; + reason: string; + level: string; + requestLabel: string; +} + +interface PendingRequestDetailProps { + request: PendingRequest | null; + onApprove: (requestId: string) => void; + onReject: (requestId: string) => void; + onDelete: (requestId: string) => void; +} + +export const PendingRequestDetail: React.FC = ({ + request, + onApprove, + onReject, + onDelete, +}) => { + if (!request) { + return ( + + + Select a role to view pending requests + + + ); + } + + return ( + + {/* Header */} + + + + Super Admin + + + {request.requestLabel} + + + + + + {/* User Card */} + + + + + {request.name} + + + {request.designation} + + + {request.email} + + + + + onDelete(request.id)} + sx={{ + color: '#ef4444', + padding: '4px', + '&:hover': { + backgroundColor: 'rgba(239, 68, 68, 0.1)', + }, + }} + > + + + + {request.level} + + + + + + {/* Reason */} + + {request.reason} + + + + + + + + + ); +}; diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/PermissionList/PermissionList.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/PermissionList/PermissionList.tsx new file mode 100644 index 0000000..ba7f0cd --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/PermissionList/PermissionList.tsx @@ -0,0 +1,42 @@ +import { Box, Typography, Stack } from "@mui/material"; +import AntSwitch from "../../../components/AntSwitch"; + +export interface Permission { + key: string; + label: string; + description: string; + enabled: boolean; +} + +interface PermissionListProps { + permissions: Permission[]; + onToggle: (key: string) => void; +} + +export const PermissionList: React.FC = ({ + permissions, + onToggle, +}) => ( + + {permissions.map((perm) => ( + + + {perm.label} + + {perm.description} + + + onToggle(perm.key)} + /> + + ))} + +); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/SystemRolesList.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/SystemRolesList.tsx new file mode 100644 index 0000000..90ac761 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/access-control/components/SystemRolesList.tsx @@ -0,0 +1,57 @@ + +import React from 'react'; +import { Box, Typography } from '@mui/material'; +import ShieldOutlinedIcon from '@mui/icons-material/ShieldOutlined'; +import { RoleCard, type RoleCardProps } from '../../components/RoleCard'; + +interface SystemRolesListProps { + roles: RoleCardProps[]; + selectedRole: string | null; + onRoleSelect: (role: string) => void; + onEditRole: (role: string) => void; +} + +export const SystemRolesList: React.FC = ({ + roles, + selectedRole, + onRoleSelect, + onEditRole, +}) => { + return ( + + {/* Header */} + + + + + System Roles + + + + + {/* Role Cards */} + + {roles.map((role) => ( +
onRoleSelect(role.role)} + style={{ cursor: 'pointer' }} + > + onEditRole(role.role)} + /> +
+ ))} +
+
+ ); +}; diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/admin-dashboard/AdminDashboard.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/admin-dashboard/AdminDashboard.tsx new file mode 100644 index 0000000..b5bf752 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/admin-dashboard/AdminDashboard.tsx @@ -0,0 +1,147 @@ +import React from 'react'; +import { Box, Button, Container, Typography } from '@mui/material'; +import { StatsCard } from '../components/StatsCard'; +import { ZoneCard } from '../components/ZoneCard'; +import { RecentActivityItem } from '../components/RecentActivityItem'; +import MapView from '../../comissioner-app-features/property-approval/components/mapview'; +import { FaUserAlt, FaMapMarkerAlt } from 'react-icons/fa'; +import { JurisdictionDropdown } from '../../../components/JurisdictionDropdown/JurisdictionDropdown'; + +interface AdminDashboardProps { + onNavigate: (key: string) => void; +} + +export const AdminDashboard: React.FC = ({ onNavigate }) => { + return ( + + {/* Header */} + + + + Dashboard + + + Admin Overview + + + + + + {/* Stats Cards Row */} + + + + + + + {/* GIS Map Overview */} + + + GIS Map Overview + + + + + + + {/* Zones Section */} + + + + + + console.log('View Zone A details')} + /> + console.log('View Zone B details')} + /> + console.log('View Zone C details')} + /> + + + + {/* Recent Activity Section */} + + + Recent Activity + + + } + label="New field agent added" + subtext="Agent ID: TA-2024-0890 assigned to Ward 24" + hoursAgo="2 hours ago" + /> + } + label="Shape file uploaded" + subtext="Zone 3 boundaries updated (BBMP)" + hoursAgo="5 hours ago" + /> + + + + ); +}; diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/ActionButton.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/ActionButton.tsx new file mode 100644 index 0000000..d4e7c35 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/ActionButton.tsx @@ -0,0 +1,43 @@ +import React from "react"; + +export interface ActionButtonProps { + label: string; + onClick?: () => void; + color?: string; + background?: string; + icon?: React.ReactNode; + style?: React.CSSProperties; +} + +export const ActionButton: React.FC = ({ + label, + onClick, + color = "#fff", + background = "#F26B1A", + icon, + style = {}, +}) => ( + +); diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/AntSwitch.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/AntSwitch.tsx new file mode 100644 index 0000000..fbd60ed --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/AntSwitch.tsx @@ -0,0 +1,51 @@ +import { styled } from '@mui/material/styles'; +import Switch from '@mui/material/Switch'; + +const AntSwitch = styled(Switch)(({ theme }) => ({ + width: 28, + height: 16, + padding: 0, + display: 'flex', + '&:active': { + '& .MuiSwitch-thumb': { + width: 15, + }, + '& .MuiSwitch-switchBase.Mui-checked': { + transform: 'translateX(9px)', + }, + }, + '& .MuiSwitch-switchBase': { + padding: 2, + '&.Mui-checked': { + transform: 'translateX(12px)', + color: '#fff', + '& + .MuiSwitch-track': { + opacity: 1, + backgroundColor: '#c84c03', + ...theme.applyStyles('dark', { + backgroundColor: '#c84c03', + }), + }, + }, + }, + '& .MuiSwitch-thumb': { + boxShadow: '0 2px 4px 0 rgb(0 35 11 / 20%)', + width: 12, + height: 12, + borderRadius: 6, + transition: theme.transitions.create(['width'], { + duration: 200, + }), + }, + '& .MuiSwitch-track': { + borderRadius: 16 / 2, + opacity: 1, + backgroundColor: 'rgba(0,0,0,.25)', + boxSizing: 'border-box', + ...theme.applyStyles('dark', { + backgroundColor: 'rgba(255,255,255,.35)', + }), + }, +})); + +export default AntSwitch; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/CalculationRuleCard.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/CalculationRuleCard.tsx new file mode 100644 index 0000000..51a246f --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/CalculationRuleCard.tsx @@ -0,0 +1,117 @@ +import React from "react"; + +export interface CalculationRuleCardProps { + title: string; + formula: string; + date?: string; + onEdit?: () => void; +} + +export const CalculationRuleCard: React.FC = ({ + title, + formula, + date, + onEdit, +}) => ( +
+ {onEdit && ( + + )} +
+ {title} +
+
+ {formula} +
+ {date && ( +
+ {date} +
+ )} +
+); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/FilterDropdown.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/FilterDropdown.tsx new file mode 100644 index 0000000..a4d80b7 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/FilterDropdown.tsx @@ -0,0 +1,73 @@ +import React from "react"; +import ArrowDropDownIcon from '@mui/icons-material/ArrowDropDown'; + +export interface FilterDropdownProps { + label?: string; + options: string[]; + value: string; + onChange?: (val: string) => void; +} + +export const FilterDropdown: React.FC = ({ + // label, + options, + value, + onChange +}) => ( +
+
+ + + + +
+
+); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/LayerVisibilityToggle.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/LayerVisibilityToggle.tsx new file mode 100644 index 0000000..65dcc0f --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/LayerVisibilityToggle.tsx @@ -0,0 +1,47 @@ +import React from "react"; + +export interface LayerVisibilityToggleProps { + checked: boolean; + onChange?: (checked: boolean) => void; + disabled?: boolean; +} + +export const LayerVisibilityToggle: React.FC = ({ checked, onChange, disabled }) => ( + +); diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/MapOverview.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/MapOverview.tsx new file mode 100644 index 0000000..8a8cd8a --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/MapOverview.tsx @@ -0,0 +1,119 @@ +import React from "react"; + + +export interface MapOverviewProps { + mapImageUrl?: string; + onViewMore?: () => void; + searchValue?: string; + onSearchChange?: (val: string) => void; + selectedZone?: 'Zone A' | 'Zone B' | 'Zone C'; +} + +const zoneMapImages: Record = { + 'Zone A': 'https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/India_location_map.svg/1200px-India_location_map.svg.png', + 'Zone B': 'https://upload.wikimedia.org/wikipedia/commons/thumb/1/1a/BlankMap-India.png/1200px-BlankMap-India.png', + 'Zone C': 'https://upload.wikimedia.org/wikipedia/commons/thumb/8/88/India_map_blank_without_state_names.svg/1200px-India_map_blank_without_state_names.svg.png', +}; + +export const MapOverview: React.FC = ({ + mapImageUrl, + onViewMore, + searchValue = "", + onSearchChange, + selectedZone = 'Zone A', +}) => { + const imageUrl = mapImageUrl || zoneMapImages[selectedZone] || zoneMapImages['Zone A']; + return ( +
+ {/* Search bar */} + +
+ onSearchChange && onSearchChange(e.target.value)} + onClick={(e) => (e.currentTarget as HTMLInputElement).focus()} + style={{ + pointerEvents: "auto", + width: "100%", + height: 22, + padding: "6px 44px 6px 14px", + borderRadius: 18, + border: "1px solid rgba(0,0,0,0.08)", + boxShadow: "0 6px 18px rgba(0,0,0,0.08)", + fontSize: 14, + outline: "none", + backgroundColor: "#fff", + color: "#374151", + backgroundImage: + "url('data:image/svg+xml;utf8,')", + backgroundRepeat: "no-repeat", + backgroundPosition: "right 12px center", + backgroundSize: "18px 18px", + transition: "box-shadow 120ms ease, border-color 120ms ease", + }} + /> +
+ {/* Map image */} + {`Map + {/* View More button */} + +
+ ); +}; diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/MapStatsCard.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/MapStatsCard.tsx new file mode 100644 index 0000000..0dab86a --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/MapStatsCard.tsx @@ -0,0 +1,29 @@ +import React from "react"; + +export interface MapStatsCardProps { + title: string; + value: string | number; +} + +export const MapStatsCard: React.FC = ({ title, value }) => ( +
+
{title}
+
{value}
+
+); diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/RecalibrationHistoryCard.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/RecalibrationHistoryCard.tsx new file mode 100644 index 0000000..439a393 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/RecalibrationHistoryCard.tsx @@ -0,0 +1,138 @@ +import React from "react"; + +export interface RecalibrationHistoryCardProps { + period: string; + triggeredBy: string; + date: string; + properties: string; + avgChange?: string; + duration?: string; +} + +export const RecalibrationHistoryCard: React.FC = ({ + period, + triggeredBy, + date, + properties, + avgChange, + duration, +}) => ( +
+ {/* Top bar: Period and Date */} +
+
+ {period} +
+
+ {date} +
+
+ {/* Triggered by */} +
+ Triggered by {triggeredBy} +
+ {/* Thin divider */} +
+ {/* Properties, Avg. Change, Duration (3 columns, baseline aligned) */} +
+ {/* Properties Column */} +
+
+ Properties +
+
+ {properties} +
+
+ {/* Avg. Change Column */} +
+
+ Avg. Change +
+
+ {avgChange || "-"} +
+
+ {/* Duration Column */} +
+
+ Duration +
+
+ {duration || "-"} +
+
+
+
+); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/RecalibrationStatsCard.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/RecalibrationStatsCard.tsx new file mode 100644 index 0000000..57c8964 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/RecalibrationStatsCard.tsx @@ -0,0 +1,38 @@ +import React from "react"; + +export interface RecalibrationStatsCardProps { + title: string; + value: string | number; + subtext?: string; + highlightColor?: string; +} + +export const RecalibrationStatsCard: React.FC = ({ + title, + value, + subtext, + highlightColor = "#000", +}) => ( +
+
{title}
+
{value}
+ {subtext &&
{subtext}
} +
+); diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/RecentActivityItem.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/RecentActivityItem.tsx new file mode 100644 index 0000000..c023308 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/RecentActivityItem.tsx @@ -0,0 +1,37 @@ +import React from "react"; + +export interface RecentActivityItemProps { + icon?: React.ReactNode; + label: string; + subtext?: string; + hoursAgo?: string; +} + +export const RecentActivityItem: React.FC = ({ icon, label, subtext, hoursAgo }) => ( +
+
+ {icon} +
+
+ {label} + {subtext && {subtext}} + {hoursAgo && ( + {hoursAgo} + )} +
+
+); diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/RoleCard.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/RoleCard.tsx new file mode 100644 index 0000000..b34e881 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/RoleCard.tsx @@ -0,0 +1,97 @@ +import React from "react"; +import EditSquareIcon from '@mui/icons-material/EditSquare'; +export interface RoleCardProps { + role: string; + description: string; + userCount: number; + userLabel?: string; + levelTag: string; + requestCount: number; + requestLabel?: string; + selected?: boolean; + onEdit?: () => void; +} + +export const RoleCard: React.FC = ({ + role, + description, + userCount, + userLabel = "users", + levelTag, + requestCount, + requestLabel = "Requests", + selected = false, + onEdit, +}) => ( +
+
+
+
+ + {role} + + + {userCount} {userLabel} + +
+ {description} +
+ {onEdit && ( + + )} +
+
+ {levelTag} + {requestCount} {requestLabel} +
+
+); diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/SearchBar.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/SearchBar.tsx new file mode 100644 index 0000000..58ce63c --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/SearchBar.tsx @@ -0,0 +1,35 @@ +import React from "react"; + +export interface SearchBarProps { + value: string; + placeholder?: string; + onChange?: (val: string) => void; +} + +export const SearchBar: React.FC = ({ value, placeholder = "Search by name, ID, or email", onChange }) => ( +
+ onChange && onChange(e.target.value)} + style={{ + width: '100%', + padding: '10px 38px 10px 14px', + borderRadius: 8, + border: '1.5px solid #222', + fontSize: 15, + background: '#fff', + outline: 'none', + boxSizing: 'border-box', + }} + /> + + + + +
+); diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/Sidebar.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/Sidebar.tsx new file mode 100644 index 0000000..8ca1574 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/Sidebar.tsx @@ -0,0 +1,245 @@ +import React from "react"; + +export interface SidebarItem { + label: string; + icon: React.ElementType; + isActive?: boolean; + onClick?: () => void; +} + +export interface SidebarProps { + topItems: SidebarItem[]; + bottomItems: SidebarItem[]; + width?: number; + backgroundColor?: string; + position?: 'fixed' | 'absolute' | 'relative' | 'static' | 'sticky'; + top?: number | string; + left?: number | string; + style?: React.CSSProperties; +} + +export const Sidebar: React.FC = ({ + topItems, + bottomItems, + width = 280, + backgroundColor = "#a9c8d6", + position = "fixed", + // top = 0, + left = 0, + style = {}, +}) => { + return ( +
+
+ +
+
+ {bottomItems.map(( + item, + // idx + ) => ( + + ))} +
+
+
+
+ ); +}; + +interface SidebarItemProps { + label: string; + Icon: React.ElementType; + isActive?: boolean; + onClick?: () => void; + isFirst?: boolean; + collapsed?: boolean; +} + +const SidebarItem: React.FC = ({ + Icon, + label, + isActive = false, + isFirst = false, + onClick, +}) => { + const [isHovered, setIsHovered] = React.useState(false); + + return ( +
setIsHovered(true)} + onMouseLeave={() => setIsHovered(false)} + role="button" + onClick={onClick} + > +
+ {React.createElement(Icon, { + style: { + width: isActive ? 20 : 28, + height: isActive ? 20 : 28, + }, + stroke: isActive ? "#fff" : "#181818", + })} +
+ {label} +
+ ); +}; + +// Icon Components +export const DashboardIcon: React.FC> = (props) => ( + + + + + + +); + +export const UserManagementIcon: React.FC> = (props) => ( + + + + + +); + +export const DemandGenerationIcon: React.FC> = (props) => ( + + + + + + + +); + +export const MasterDataIcon: React.FC> = (props) => ( + + + + + +); + +export const MapConfigIcon: React.FC> = (props) => ( + + + + +); + +export const LocalisationIcon: React.FC> = (props) => ( + + + + + + +); + +export const AccessControlIcon: React.FC> = (props) => ( + + + +); + +export const NotificationsIcon: React.FC> = (props) => ( + + + + +); + +export const HelpDeskIcon: React.FC> = (props) => ( + + + + + +); + +export const LanguageIcon: React.FC> = (props) => ( + + + + + +); + +export const ProfileIcon: React.FC> = (props) => ( + + + + +); + +export const SettingsIcon: React.FC> = (props) => ( + + + + +); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/StatsCard.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/StatsCard.tsx new file mode 100644 index 0000000..55b3fbe --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/StatsCard.tsx @@ -0,0 +1,121 @@ +import React from "react"; + + + +export interface StatsCardSubstat { + value: string | number; + label: string; +} + +export interface StatsCardProps { + title: string; + value?: string | number; + substats?: StatsCardSubstat[]; + subtext?: string | string[]; + highlightColor?: string; + width?: number | string; + children?: React.ReactNode; +} + + + + +export const StatsCard: React.FC = ({ + title, + value, + substats, + subtext, + highlightColor = "#C84C0E", + width = 275, + children, +}) => ( +
+
{title}
+ {substats && substats.length > 0 ? ( +
+ {substats.map((stat, idx) => ( +
+ {stat.value} + {stat.label} +
+ ))} +
+ ) : ( + value !== undefined &&
{value}
+ )} + {Array.isArray(subtext) ? ( +
+ {subtext.map((txt, idx) => { + const isPositive = typeof txt === 'string' && /\+\d+(\.\d+)?%/.test(txt); + return ( + + {txt} + + ); + })} +
+ ) : ( + subtext && ( +
+ {subtext} +
+ ) + )} + {children} +
+ +); diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/TabSwitcher.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/TabSwitcher.tsx new file mode 100644 index 0000000..cee1678 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/TabSwitcher.tsx @@ -0,0 +1,55 @@ +import React from "react"; + +export interface TabSwitcherProps { + tabs: string[]; + activeTab: string; + onTabChange: (tab: string) => void; + style?: React.CSSProperties; +} + +const ACTIVE_PINK = "#F7E4DB"; + +export const TabSwitcher: React.FC = ({ + tabs, + activeTab, + onTabChange, + style +}) => ( +
+ {tabs.map((tab, + // idx + ) => ( + + ))} +
+); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/TablePagination.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/TablePagination.tsx new file mode 100644 index 0000000..0b52b9f --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/TablePagination.tsx @@ -0,0 +1,29 @@ +import { TablePagination } from "@mui/material"; + +interface TablePaginationControlsProps { + count: number; + page: number; + rowsPerPage: number; + onPageChange: (event: unknown, newPage: number) => void; + onRowsPerPageChange: (event: React.ChangeEvent) => void; +} + +const TablePaginationControls = ({ + count, + page, + rowsPerPage, + onPageChange, + onRowsPerPageChange, +}: TablePaginationControlsProps) => ( + +); + +export default TablePaginationControls; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/UserStatsCard.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/UserStatsCard.tsx new file mode 100644 index 0000000..c6fa185 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/UserStatsCard.tsx @@ -0,0 +1,35 @@ +import React from "react"; + +export interface UserStatsCardProps { + title: string; + value: string | number; + highlightColor?: string; +} + +export const UserStatsCard: React.FC = ({ + title, + value, + highlightColor = "#000", +}) => ( +
+
{title}
+
{value}
+
+); diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/UserTable.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/UserTable.tsx new file mode 100644 index 0000000..0c39aed --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/UserTable.tsx @@ -0,0 +1,41 @@ +import React from "react"; +import { UserTableRow } from "./UserTableRow"; +import type { UserTableRowProps } from "./UserTableRow"; + +export type UserTableProps = { + rows: UserTableRowProps[]; +}; + +export const UserTable: React.FC = ({ rows }) => ( +
+ + + + + + + + + + + + + + {rows.map((row, idx) => ( + + ))} + +
UserOfficial IDDesignationRoleJurisdictionStatusAction
+
+); diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/UserTableRow.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/UserTableRow.tsx new file mode 100644 index 0000000..9c17a04 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/UserTableRow.tsx @@ -0,0 +1,126 @@ + +import React from "react"; +// Pencil (edit) and trash (delete) SVGs matching Figma style + +export type UserTableRowProps = { + user: string; + officialId: string; + designation: string; + role: string; + jurisdiction: string; + status: 'Active' | 'Inactive'; + onEdit?: () => void; + onDelete?: () => void; +}; + + +export const UserTableRow: React.FC = ({ + user, + officialId, + designation, + role, + jurisdiction, + status, + onEdit, + onDelete, +}) => ( + (e.currentTarget.style.background = '#f6f8fa')} + onMouseOut={e => (e.currentTarget.style.background = '#fff')} + > + {user} + + {officialId.split('/').length > 1 ? ( + + {officialId.split('/').slice(0, 2).join('/')}/ +
+ {officialId.split('/').slice(2).join('/')} +
+ ) : ( + officialId + )} + + {designation} + +
+ + {role} + +
+ + + {jurisdiction} + + + + {status} + + + +
+ + +
+ + +); diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/components/ZoneCard.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/components/ZoneCard.tsx new file mode 100644 index 0000000..ccf4699 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/components/ZoneCard.tsx @@ -0,0 +1,75 @@ +import React from "react"; + +export interface ZoneCardProps { + zoneName: string; + count: string | number; + onViewDetails?: () => void; +} + +export const ZoneCard: React.FC = ({ + zoneName, + count, + onViewDetails, +}) => ( +
+ {/* Left section: text */} +
+
+ {zoneName} +
+
+ {typeof count === "number" ? count.toLocaleString() : count} +
+
+ {/* Right section: arrow and view details - moved lower */} + +
+); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/demand-generation/DemandGeneration.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/demand-generation/DemandGeneration.tsx new file mode 100644 index 0000000..1117460 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/demand-generation/DemandGeneration.tsx @@ -0,0 +1,194 @@ +import React from 'react'; +import { Box, Typography, Button } from '@mui/material'; +import InfoOutlinedIcon from '@mui/icons-material/InfoOutlined'; +import AddIcon from '@mui/icons-material/Add'; +import { JurisdictionDropdown } from '../../../components/JurisdictionDropdown/JurisdictionDropdown'; +import { RecalibrationStatsCard } from '../components/RecalibrationStatsCard'; +import { CalculationRuleCard } from '../components/CalculationRuleCard'; +import { RecalibrationHistoryCard } from '../components/RecalibrationHistoryCard'; + +export const DemandGeneration: React.FC = () => { + const statsData = [ + { title: 'Total Recalibrations', value: '12', highlightColor: '#000' }, + { title: 'Last Recalibration', value: 'Oct 1, 2024', highlightColor: '#000' }, + { title: 'Active Rules', value: '3', highlightColor: '#000' }, + { title: 'Avg. Processing Time', value: '2h 28m', highlightColor: '#000' }, + ]; + + const activeRules = [ + { + title: 'Annual Property Tax Rate', + formula: 'Formula: Base Rate × Area × Usage Factor + rebate - arrears\nBase Rate: ₹25/sq.ft, Usage Factor: 1.0-2.5', + date: '01 Jan 2025 (v3)', + }, + { + title: 'Quarterly Inflation Adjustment', + formula: 'Formula: Previous Tax × (1 + Inflation Rate)\nInflation Rate: 6.5% annually', + date: '01 Jan 2025 (v3)', + }, + { + title: 'Priority Management - Enumeration', + formula: 'Formula: 30 days from SLA date - Breach: <5 days to SLA - High: <15 days to SLA - Else: Low', + date: '01 Jan 2025 (v3)', + }, + ]; + + const recalibrationHistory = [ + { + period: 'Q4 2024', + triggeredBy: 'Rajesh Kumar', + date: '2024-10-01', + properties: '45,231', + avgChange: '+8.5%', + duration: '2h 34m', + }, + { + period: 'Q3 2024', + triggeredBy: 'System Auto', + date: '2024-07-01', + properties: '44,890', + avgChange: '+6.2%', + duration: '2h 18m', + }, + { + period: 'Q2 2024', + triggeredBy: 'Priya Sharma', + date: '2024-04-01', + properties: '44,890', + avgChange: '+6.2%', + duration: '2h 45m', + }, + ]; + + return ( + + {/* Header Section */} + + + + + Demand Generation & Recalibration + + + Manage tax calculation rules and recalibration + + + + + + + + + + {/* Info Card */} + + + + + Next scheduled recalibration: + + + Q1 2025 on 2025-01-01. + + + Estimated to affect 45,500 properties. + + + + + {/* Stats Cards */} + + {statsData.map((stat, index) => ( + + + + ))} + + + {/* Main Content: Active Rules and History */} + + {/* Active Calculation Rules */} + + + + Active Calculation Rules + + + + + {activeRules.map((rule, index) => ( + console.log('Edit rule:', rule.title)} + /> + ))} + + + + {/* Recalibration History */} + + + Recalibration History + + + {recalibrationHistory.map((item, index) => ( + + ))} + + + + + ); +}; diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Assets/delete.svg b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Assets/delete.svg new file mode 100644 index 0000000..bd3061a --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Assets/delete.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Assets/edit_square.svg b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Assets/edit_square.svg new file mode 100644 index 0000000..9d4de4a --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Assets/edit_square.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Assets/pdf-file-icon.svg b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Assets/pdf-file-icon.svg new file mode 100644 index 0000000..f15f5da --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Assets/pdf-file-icon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Buttons/ActionBox.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Buttons/ActionBox.tsx new file mode 100644 index 0000000..8186cc4 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Buttons/ActionBox.tsx @@ -0,0 +1,23 @@ +import { Box, IconButton } from "@mui/material"; +import FileDownloadOutlinedIcon from "@mui/icons-material/FileDownloadOutlined"; +import EditOutlinedIcon from "@mui/icons-material/EditOutlined"; +import DeleteOutlineIcon from "@mui/icons-material/DeleteOutline"; +import { actionBoxContainerSx } from "../../Styles/ButtonsStyle/ActionBoxStyle"; + +const ActionBox = () => { + return ( + + + + + + + + + + + + ); +}; + +export default ActionBox; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Buttons/CustomButton.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Buttons/CustomButton.tsx new file mode 100644 index 0000000..9c2e18d --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Buttons/CustomButton.tsx @@ -0,0 +1,32 @@ +import { Button } from "@mui/material"; +import React from "react"; +import { getCustomButtonSx } from "../../Styles/ButtonsStyle/CustomButtonStyle"; + +interface CustomButtonProps { + icon?: React.ReactNode; + text: string; + color?: string; + backgroundColor?: string; + variant?: "contained" | "outlined" | "text"; + onClick?: () => void; +} + +const CustomButton: React.FC = ({ + icon, + text, + color, + backgroundColor, + variant = "contained", + onClick, +}) => ( + +); + +export default CustomButton; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Buttons/CustomChip.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Buttons/CustomChip.tsx new file mode 100644 index 0000000..cc6207f --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Buttons/CustomChip.tsx @@ -0,0 +1,25 @@ +import React from "react"; +import { Box } from "@mui/material"; +import { getCustomChipSx } from "../../Styles/ButtonsStyle/CustomChipStyle"; + +interface CustomChipProps { + label: string; + color?: string; + borderColor?: string; + backgroundColor?: string; + sx?: object; +} + +const CustomChip: React.FC = ({ + label, + color, + borderColor, + backgroundColor, + sx = {}, +}) => ( + + {label} + +); + +export default CustomChip; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Cards/InfoCard.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Cards/InfoCard.tsx new file mode 100644 index 0000000..9ed4773 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Cards/InfoCard.tsx @@ -0,0 +1,24 @@ +import { Card, Typography, Box } from "@mui/material" +import { CardSx, InfoCardContainerSx, labelSx, valueSx } from "../../Styles/CardsStyle/InfoCardStyle" + +interface InfoCardProps { + label: string + value: number | string +} + +const InfoCard: React.FC = ({ label, value }) => { + return ( + + + + {label} + + + {value} + + + + ) +} + +export default InfoCard \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Cards/ToggleCard.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Cards/ToggleCard.tsx new file mode 100644 index 0000000..d9454b9 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Cards/ToggleCard.tsx @@ -0,0 +1,39 @@ +import { Box, Card, IconButton, Typography } from "@mui/material" +import { ToggleCardContainerSx } from "../../Styles/CardsStyle/ToggleCardStyle" +import VisibilityOutlinedIcon from "@mui/icons-material/VisibilityOutlined" +import VisibilityOffOutlinedIcon from "@mui/icons-material/VisibilityOffOutlined" +import AntSwitch from "../SwitchButton/AntSwitch"; + +interface ToggleCardProps { + label: string; + toggled: boolean; + onToggle: (value: boolean) => void; + sx?: object; +} + +const ToggleCard = ({ label, toggled, onToggle, sx }: ToggleCardProps) => { + return ( + + onToggle(!toggled)}> + {toggled ? ( + + ) : ( + + )} + + + {label} + Visible on Map + + + onToggle(checked)} + color="primary" + sx={{ mx: 1 }} + /> + + ) +} + +export default ToggleCard \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/CheckboxOptions/LayerOptions.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/CheckboxOptions/LayerOptions.tsx new file mode 100644 index 0000000..e56e29a --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/CheckboxOptions/LayerOptions.tsx @@ -0,0 +1,44 @@ +import { Box, FormControlLabel, Checkbox, Typography, Divider } from "@mui/material"; +import { useState } from "react"; +import { layerOptionsBoxSx, layerOptionsCheckboxSx, layerOptionsLabelSx, layerOptionsDividerSx } from "../../Styles/CheckboxOptionsStyle/LayerOptionsStyle"; + +const options = [ + "Electric Lines", + "Water Lines", + "Sewage connections" +]; + +const LayerOptions = () => { + const [checked, setChecked] = useState([false, false, false]); + + const handleChange = (idx: number) => (event: React.ChangeEvent) => { + setChecked(prev => prev.map((c, i) => i === idx ? event.target.checked : c)); + }; + + return ( + + + {options.map((label, idx) => ( + + } + label={ + + {label} + + } + sx={{ m: 0, alignItems: "center", mb: idx !== options.length - 1 ? "-4px" : 0 }} + /> + ))} + + ); +}; + +export default LayerOptions; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/LayerVisibility/LayerVisibility.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/LayerVisibility/LayerVisibility.tsx new file mode 100644 index 0000000..a240496 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/LayerVisibility/LayerVisibility.tsx @@ -0,0 +1,75 @@ +import { useState } from "react"; +import { Box, IconButton, Typography } from "@mui/material"; +import { filterIconOverlaySx } from "../../Styles/MapConfigurationStyle"; +import FilterNoneIcon from "@mui/icons-material/FilterNone"; +import { + layerVisibilityContainerSx, + ToggleCardListSx, +} from "../../Styles/LayerVisibilityStyle/LayerVisibilityStyle"; +import ToggleCard from "../Cards/ToggleCard"; +import LayerOptions from "../CheckboxOptions/LayerOptions"; + +interface LayerVisibilityProps { + onClose: () => void; +} + +const layerVisibilityContents: string[] = [ + "Zone Boundaries", + "Ward Boundaries", + "Mohalla Boundaries", + "Property Polygons", + "Road Network", + "Utility Lines", +]; + +const LayerVisibility = ({ onClose }: LayerVisibilityProps) => { + // State: one boolean per layer + const [toggles, setToggles] = useState( + Array(layerVisibilityContents.length).fill(true) + ); + + // Handler to toggle a specific layer + const handleToggle = (idx: number, value: boolean) => { + setToggles((prev) => prev.map((t, i) => (i === idx ? value : t))); + }; + + return ( + + + Layer Visibility + + + + + + + {layerVisibilityContents.map((layer, idx) => ( + + handleToggle(idx, value)} + sx={ + idx === layerVisibilityContents.length - 1 + ? { + borderTopLeftRadius: "10px", + borderTopRightRadius: "10px", + borderBottomRightRadius: "0px", + borderBottomLeftRadius: "0px", + } + : { borderRadius: "10px" } + } + /> + + ))} + + + + + ); +}; + +export default LayerVisibility; diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/MapConfiguration.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/MapConfiguration.tsx new file mode 100644 index 0000000..e93e473 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/MapConfiguration.tsx @@ -0,0 +1,140 @@ +import { Box, Button, IconButton, Typography } from "@mui/material"; +import { + ButtonContainerSx, + CardListSx, + containerStylesSx, + filterIconOverlaySx, + headerContainerSx, + headerSubtitleSx, + headerTitleSx, + mapBoxSx, + viewMapBoxSx, + viewMoreButtonSx, + searchBarOverlaySx, + viewMoreOverlaySx, + leftPanelSx, +} from "../Styles/MapConfigurationStyle"; +import SelectorTab from "./SelectorTab/SelectorTab"; +import MapView from "../../../comissioner-app-features/property-approval/components/mapview"; +import CustomButton from "./Buttons/CustomButton"; +import AddIcon from "@mui/icons-material/Add"; +import FileDownloadOutlinedIcon from "@mui/icons-material/FileDownloadOutlined"; +import MapFileTable from "./Table/MapFileTable"; +import { useState } from "react"; +import UploadMapFilePopUp from "./PopUps/UploadMapFilePopUp"; +import SearchBar from "./SearchBar/SearchBar"; +import InfoCard from "./Cards/InfoCard"; +import FilterNoneIcon from "@mui/icons-material/FilterNone"; +import LayerVisibility from "./LayerVisibility/LayerVisibility"; +import { JurisdictionDropdown } from "../../../../components/JurisdictionDropdown/JurisdictionDropdown"; + +const MapConfiguration = () => { + const [open, setOpen] = useState(false); + const [searchValue, setSearchValue] = useState(""); + const [selectedIndex, setSelectedIndex] = useState(0); + const [layerVisibility, setLayerVisibility] = useState(false); + + return ( + + + + + + + + Map Configuration + + Manage map layers and GIS analytics + + + + + + + + {/* Conditionally render content based on selectedIndex */} + {selectedIndex === 0 ? ( + <> + + + {/* Top right search bar */} + + setSearchValue(e.target.value)} + onSearch={() => { + /* handle search */ + }} + /> + + {/* Bottom left view more button */} + + + + {/* Add more overlays as needed */} + + + + } + text="Export data" + variant="outlined" + color="#c84c03" + /> + } + text="Upload map file" + variant="contained" + color="#fff" + backgroundColor="#c84c03" + onClick={() => setOpen(true)} + /> + + + + + + + setOpen(false)} /> + + ) : ( + <> + {/* Content for "View Map Options" tab */} + + + + + + + + + + setLayerVisibility(true)}> + + + + {/* Left-side component */} + {layerVisibility && ( + + setLayerVisibility(false)} /> + + )} + + + + + + )} + + ); +}; + +export default MapConfiguration; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/PopUps/UploadMapFilePopUp.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/PopUps/UploadMapFilePopUp.tsx new file mode 100644 index 0000000..ea76d02 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/PopUps/UploadMapFilePopUp.tsx @@ -0,0 +1,216 @@ +import React, { useRef, useState } from "react"; +import type { ChangeEvent, DragEvent } from "react"; +import { + Dialog, + DialogTitle, + DialogContent, + DialogActions, + Box, + Typography, + TextField, + IconButton, + Paper, + Button, +} from "@mui/material"; +import pdfFileIcon from "../../Assets/pdf-file-icon.svg"; +import FileUploadIcon from "@mui/icons-material/FileUpload"; +import DownloadIcon from "@mui/icons-material/Download"; +import CloseIcon from "@mui/icons-material/Close"; +import { + dialogPaperSx, + descriptionBoxSx, + dragDropBoxSx, + uploadedFilePaperSx, + downloadButtonSx, + dialogActionsSx, + cancelButtonSx, + submitButtonSx, +} from "../../Styles/PopUpsStyle/UploadMapFilePopUpStyle"; + +interface UploadMapFilePopUpProps { + open: boolean; + onClose: () => void; +} + +interface UploadedFilePreviewProps { + file: File; + onDownload: () => void; + onRemove: () => void; +} + +const UploadedFilePreview: React.FC = ({ + file, + onDownload, + onRemove, +}) => ( + + PDF + + {file.name} + + + + + + +); + +const UploadMapFilePopUp: React.FC = ({ + open, + onClose, +}) => { + const [selectedFile, setSelectedFile] = useState(null); + const [description, setDescription] = useState(""); + const fileInputRef = useRef(null); + + const handleFileChange = (e: ChangeEvent) => { + setSelectedFile(e.target.files?.[0] || null); + }; + + const handleDrop = (e: DragEvent) => { + e.preventDefault(); + if (e.dataTransfer.files && e.dataTransfer.files.length > 0) { + setSelectedFile(e.dataTransfer.files[0]); + } + }; + + const handleDragOver = (e: DragEvent) => { + e.preventDefault(); + }; + + const handleRemoveFile = () => { + setSelectedFile(null); + if (fileInputRef.current) fileInputRef.current.value = ""; + }; + + const handleDownload = () => { + if (!selectedFile) return; + const url = URL.createObjectURL(selectedFile); + const link = document.createElement("a"); + link.href = url; + link.download = selectedFile.name; + document.body.appendChild(link); + link.click(); + document.body.removeChild(link); + URL.revokeObjectURL(url); + }; + + const handleSubmit = () => { + // TODO: Implement actual upload logic here + setSelectedFile(null); + setDescription(""); + onClose(); + }; + + const openFileDialog = (e?: React.MouseEvent) => { + e?.stopPropagation(); + fileInputRef.current?.click(); + }; + + return ( + + + + Upload File + + + + {/* Description Input */} + + + Enter Description + + setDescription(e.target.value)} + size="small" + inputProps={{ maxLength: 200 }} + /> + + {/* Drag & Drop Area */} + + + + Drag and Drop your file or{" "} + + Browse system + + + + + {/* File Preview */} + {selectedFile && ( + + )} + + Attach all documents. + + + {/* Actions */} + + + + + + ); +}; + +export default UploadMapFilePopUp; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/SearchBar/SearchBar.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/SearchBar/SearchBar.tsx new file mode 100644 index 0000000..c705cfc --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/SearchBar/SearchBar.tsx @@ -0,0 +1,44 @@ +import React from "react"; +import { Box, TextField } from "@mui/material"; +import SearchIcon from "@mui/icons-material/Search"; +import { + searchBarContainerSx, + searchInputSx, + searchIconSx, +} from "../../Styles/SearchBarStyle/SearchBarStyle"; + +interface SearchBarProps { + value: string; + onChange: (e: React.ChangeEvent) => void; + placeholder?: string; + onSearch?: () => void; +} + +const SearchBar: React.FC = ({ + value, + onChange, + placeholder = "Search Zones", + onSearch, +}) => ( + + + + +); + +export default SearchBar; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/SelectorTab/SelectorTab.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/SelectorTab/SelectorTab.tsx new file mode 100644 index 0000000..16578e8 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/SelectorTab/SelectorTab.tsx @@ -0,0 +1,30 @@ +import { Box, Typography } from "@mui/material" +import { selectorTabSx, singleTabSx, selectedSingelTabSx } from "../../Styles/SelectorTabStyle/SelectorTabStyle" + +const SelectorTabItems: string[] = [ + "Manage Maps", + "View Map Options" +] + +interface SelectorTabProps { + selectedIndex?: number; + onTabChange?: (index: number) => void; +} + +const SelectorTab: React.FC = ({ selectedIndex = 0, onTabChange }) => { + return ( + + {SelectorTabItems.map((item, index) => ( + onTabChange && onTabChange(index)} + > + {item} + + ))} + + ) +} + +export default SelectorTab \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/SwitchButton/AntSwitch.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/SwitchButton/AntSwitch.tsx new file mode 100644 index 0000000..fbd60ed --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/SwitchButton/AntSwitch.tsx @@ -0,0 +1,51 @@ +import { styled } from '@mui/material/styles'; +import Switch from '@mui/material/Switch'; + +const AntSwitch = styled(Switch)(({ theme }) => ({ + width: 28, + height: 16, + padding: 0, + display: 'flex', + '&:active': { + '& .MuiSwitch-thumb': { + width: 15, + }, + '& .MuiSwitch-switchBase.Mui-checked': { + transform: 'translateX(9px)', + }, + }, + '& .MuiSwitch-switchBase': { + padding: 2, + '&.Mui-checked': { + transform: 'translateX(12px)', + color: '#fff', + '& + .MuiSwitch-track': { + opacity: 1, + backgroundColor: '#c84c03', + ...theme.applyStyles('dark', { + backgroundColor: '#c84c03', + }), + }, + }, + }, + '& .MuiSwitch-thumb': { + boxShadow: '0 2px 4px 0 rgb(0 35 11 / 20%)', + width: 12, + height: 12, + borderRadius: 6, + transition: theme.transitions.create(['width'], { + duration: 200, + }), + }, + '& .MuiSwitch-track': { + borderRadius: 16 / 2, + opacity: 1, + backgroundColor: 'rgba(0,0,0,.25)', + boxSizing: 'border-box', + ...theme.applyStyles('dark', { + backgroundColor: 'rgba(255,255,255,.35)', + }), + }, +})); + +export default AntSwitch; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Table/MapFileTable.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Table/MapFileTable.tsx new file mode 100644 index 0000000..935e84f --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Components/Table/MapFileTable.tsx @@ -0,0 +1,85 @@ +import React, { useState } from "react"; +import { + Paper, + Table, + TableBody, + TableCell, + TableContainer, + TableHead, + TableRow, +} from "@mui/material"; +import { columns, rows } from "../../Utils/MapFileTableUtil"; +import CustomChip from "../Buttons/CustomChip"; +import ActionBox from "../Buttons/ActionBox"; +import { textWrapSx, tableContainerSx } from "../../Styles/TableStyle/MapFileTableStyle"; +import TablePaginationControls from "../../../components/TablePagination"; + +const MapFileTable = () => { + const [page, setPage] = useState(0); + const [rowsPerPage, setRowsPerPage] = useState(10); + + const handleChangePage = (_: unknown, newPage: number) => setPage(newPage); + const handleChangeRowsPerPage = (event: React.ChangeEvent) => { + setRowsPerPage(parseInt(event.target.value, 10)); + setPage(0); + }; + + const paginatedRows = rows.slice(page * rowsPerPage, page * rowsPerPage + rowsPerPage); + + return ( + + + {/* Table Header */} + + + {columns.map((col) => ( + + {col.label} + + ))} + + + + {/* Table body */} + + {paginatedRows.map((row, idx) => ( + + {row.fileName} + + + + {row.features} + {row.size} + {row.uploadedBy} + + + + + + + + ))} + +
+ +
+ ); +}; + +export default MapFileTable; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/ButtonsStyle/ActionBoxStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/ButtonsStyle/ActionBoxStyle.ts new file mode 100644 index 0000000..ed647af --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/ButtonsStyle/ActionBoxStyle.ts @@ -0,0 +1,6 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const actionBoxContainerSx: SxProps = { + display: "inline-flex", + flexDirection:"row", +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/ButtonsStyle/CustomButtonStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/ButtonsStyle/CustomButtonStyle.ts new file mode 100644 index 0000000..e5e73a4 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/ButtonsStyle/CustomButtonStyle.ts @@ -0,0 +1,19 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const getCustomButtonSx = ( + variant: "contained" | "outlined" | "text", + color?: string, + backgroundColor?: string +): SxProps => ({ + color: variant === "outlined" ? color : color, + backgroundColor: variant === "contained" ? backgroundColor : undefined, + borderColor: variant === "outlined" ? color : undefined, + textTransform: "none", + display: "flex", + alignItems: "center", + gap: 1, + borderRadius: "8px", + px: 2, + py: 0.2, + fontWeight: 500, +}); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/ButtonsStyle/CustomChipStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/ButtonsStyle/CustomChipStyle.ts new file mode 100644 index 0000000..d7661af --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/ButtonsStyle/CustomChipStyle.ts @@ -0,0 +1,18 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const getCustomChipSx = ( + color: string = "#222", + borderColor: string = "#222", + backgroundColor: string = "#fff" +): SxProps => ({ + display: "inline-block", + border: `1px solid ${borderColor}`, + borderRadius: "10px", + px: 0.6, + py: 0.25, + fontSize: 14, + color, + backgroundColor, + fontWeight: 400, + lineHeight: 1.5, +}); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/CardsStyle/InfoCardStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/CardsStyle/InfoCardStyle.ts new file mode 100644 index 0000000..9b620a9 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/CardsStyle/InfoCardStyle.ts @@ -0,0 +1,29 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const InfoCardContainerSx: SxProps = { + display: "flex", + flexDirection: "column", + alignItems: "center", +} + +export const labelSx: SxProps = { +fontSize: 20, +fontWeight: 400, +textAlign: "center", + width: "100%", +} + +export const valueSx: SxProps = { + fontSize: 32, + fontWeight: 600, +} + +export const CardSx: SxProps = { +px: 2, +py:0.4, +minWidth: 200, +maxWidth: 200, +width: 200, +border: "1px solid #000000", +boxSizing: "border-box" +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/CardsStyle/ToggleCardStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/CardsStyle/ToggleCardStyle.ts new file mode 100644 index 0000000..bfe7bcb --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/CardsStyle/ToggleCardStyle.ts @@ -0,0 +1,11 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const ToggleCardContainerSx: SxProps = { + display: "grid", + gridTemplateColumns: "0.2fr 4fr 0.2fr", + gap: 2, + px:0.5, + py:2, + background: "#f5f5f5", + boxShadow: "none", +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/CheckboxOptionsStyle/LayerOptionsStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/CheckboxOptionsStyle/LayerOptionsStyle.ts new file mode 100644 index 0000000..f51504b --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/CheckboxOptionsStyle/LayerOptionsStyle.ts @@ -0,0 +1,29 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const layerOptionsBoxSx: SxProps = { + p: 0, + width: "100%", + backgroundColor: "#f5f5f5", + display: "flex", + flexDirection: "column", + borderBottomLeftRadius: "10px", + borderBottomRightRadius: "10px" +}; + +export const layerOptionsCheckboxSx: SxProps = { + color: "#c84c03", + '&.Mui-checked': { + color: "#c84c03", + }, +}; + +export const layerOptionsLabelSx: SxProps = { + fontSize: 12, + fontWeight: 300, +}; + +export const layerOptionsDividerSx: SxProps = { + mb: 0, + background: "#00000033", + borderBottomWidth: 1, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/LayerVisibilityStyle/LayerVisibilityStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/LayerVisibilityStyle/LayerVisibilityStyle.ts new file mode 100644 index 0000000..7a67e57 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/LayerVisibilityStyle/LayerVisibilityStyle.ts @@ -0,0 +1,11 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const layerVisibilityContainerSx: SxProps = { + pl: 5, + borderRadius: "10px", +} + +export const ToggleCardListSx: SxProps = { + display: "flex", + flexDirection: "column", +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/MapConfigurationStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/MapConfigurationStyle.ts new file mode 100644 index 0000000..c07f095 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/MapConfigurationStyle.ts @@ -0,0 +1,131 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const containerStylesSx: SxProps = { + backgroundColor: "#f5f5f5", + pl:5, + pr:2, + pt:4, + pb:2, +} + +export const headerContainerSx: SxProps = { + display: "flex", + flexDirection: "column", + width: "100%", + mb: 2, +}; + +export const headerTitleSx: SxProps = { + fontSize: 32, + fontWeight: 500, + color: "black", + p:0, + m:0, +}; + +export const headerSubtitleSx: SxProps = { + fontSize: 20, + fontWeight: 300, + color: "black", + p:0, + m:0, +}; + +export const mapBoxSx: SxProps = { + borderRadius: "20px", + p: 0, + m: 0, + maxHeight: "450px", + width: "100%", + overflow: "hidden", + position: "relative", +}; + +export const ButtonContainerSx: SxProps = { + display:"flex", + flexDirection:"row", + justifyContent:"flex-end", + gap:2, + my:2, +} + +export const viewMoreButtonSx: SxProps = { + backgroundColor: "#0B4B66", + color: "#fff", + borderRadius: "8px", + fontWeight: 400, + fontSize: 14, + px: 2, + py: 0, + minWidth: 120, + textTransform: "none", + boxShadow: "0px 1px 4px 0px #00000014", + "&:hover": { + backgroundColor: "#08304a", + }, +}; + +export const CardListSx: SxProps = { + display: "flex", + flexDirection: "row", + gap: 2, +}; + +export const viewMapBoxSx: SxProps = { + borderRadius: "20px", + p: 0, + m: 0, + maxHeight: "750px", + width: "100%", + overflow: "hidden", + position: "relative", + mt:2, +} + +export const filterIconOverlaySx: SxProps = { + position: "absolute", + top: 10, + left: 10, + zIndex: 10, + background: "#fff", + borderRadius: "50%", + boxShadow: "0px 2px 8px rgba(0,0,0,0.12)", + width: 40, + height: 40, + display: "flex", + alignItems: "center", + justifyContent: "center", + "&:hover": { + background: "#fff", + }, +}; + +export const searchBarOverlaySx: SxProps = { + position: "absolute", + top: 16, + right: 16, + zIndex: 10, + width: 420, + maxWidth: "90%", +}; + +export const viewMoreOverlaySx: SxProps = { + position: "absolute", + bottom: 16, + left: 16, + zIndex: 10, +}; + +export const leftPanelSx: SxProps = { + position: "absolute", + top: 0, + left: 0, + height: "100%", + width: 320, + background: "#fff", + boxShadow: "2px 0 8px rgba(0,0,0,0.08)", + zIndex: 20, + p: 2, + display: "flex", + flexDirection: "column", +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/PopUpsStyle/UploadMapFilePopUpStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/PopUpsStyle/UploadMapFilePopUpStyle.ts new file mode 100644 index 0000000..b4c9d97 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/PopUpsStyle/UploadMapFilePopUpStyle.ts @@ -0,0 +1,73 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const dialogPaperSx: SxProps = { + borderRadius: "20px", +}; + +export const descriptionBoxSx: SxProps = { + mb: 2, + mt: 0, +}; + +export const dragDropBoxSx: SxProps = { + border: "1.5px dashed #BDBDBD", + borderRadius: "10px", + p: 2, + mb: 2, + textAlign: "center", + background: "#fafbfc", + cursor: "pointer", + position: "relative", +}; + +export const uploadedFilePaperSx: SxProps = { + display: "flex", + alignItems: "center", + p: 1, + mb: 1, + borderRadius: "12px", + border: "1px solid #E0E0E0", + background: "#fff", + position: "relative", +}; + +export const downloadButtonSx: SxProps = { + minWidth: 110, + mr: 1, + color: "#0B4B66", + borderColor: "#0B4B66", + borderRadius: "8px", + fontWeight: 600, + "&:hover": { + borderColor: "#08304a", + color: "#08304a", + }, +}; + +export const dialogActionsSx: SxProps = { + justifyContent: "center", + pb: 2, + px: 3, + display: "flex", + flexDirection: "row", + gap: 2, +}; + +export const cancelButtonSx: SxProps = { + color: "#0B4B66", + borderColor: "#0B4B66", + fontWeight: 600, + borderRadius: "8px", + flex: 1, + minWidth: 0, +}; + +export const submitButtonSx: SxProps = { + backgroundColor: "#0B4B66", + color: "#fff", + fontWeight: 600, + borderRadius: "8px", + flex: 1, + minWidth: 0, + "&:hover": { backgroundColor: "#08304a" }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/SearchBarStyle/SearchBarStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/SearchBarStyle/SearchBarStyle.ts new file mode 100644 index 0000000..0268fad --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/SearchBarStyle/SearchBarStyle.ts @@ -0,0 +1,37 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const searchBarContainerSx: SxProps = { + display: "flex", + alignItems: "center", + background: "#ffffff", + borderRadius: "20px", + boxShadow: "-8px 8px 12px -4px #00000095", + border: "1px solid #E0E0E0", + height: 36, + px: 2, + width: "100%", + maxWidth: 420, + opacity: 0.8, +}; + +export const searchInputSx: SxProps = { + flex: 1, + border: "none", + outline: "none", + fontSize: 18, + background: "transparent", + color: "#868686", + "&::placeholder": { + color: "#868686", + opacity: 1, + fontSize: 18, + fontStyle: "italic", + }, +}; + +export const searchIconSx: SxProps = { + color: "#222", + fontSize: 28, + ml: 1, + cursor: "pointer", +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/SelectorTabStyle/SelectorTabStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/SelectorTabStyle/SelectorTabStyle.ts new file mode 100644 index 0000000..4f3040b --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/SelectorTabStyle/SelectorTabStyle.ts @@ -0,0 +1,25 @@ +import type {SxProps, Theme} from "@mui/material"; + +export const selectorTabSx: SxProps = { + backgroundColor: "#FFFFFF", + borderRadius: "20px", + display: "inline-flex", + flexDirection: "row", + justifyContent: "flex-start", + gap:3, + alignItems: "center", + py:0.4, + px:3, +} + +export const singleTabSx: SxProps = { + backgroundColor: "#ffffff", + cursor: "pointer", + px: 1, + borderRadius: "10px", +} + +export const selectedSingelTabSx: SxProps = { + ...singleTabSx, + backgroundColor: "#f7e4db", +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/TableStyle/MapFileTableStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/TableStyle/MapFileTableStyle.ts new file mode 100644 index 0000000..d31b9c2 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Styles/TableStyle/MapFileTableStyle.ts @@ -0,0 +1,32 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const textWrapSx: SxProps = { + whiteSpace: "normal", + wordBreak: "break-word", + maxWidth: 120 +}; + +export const tableContainerSx: SxProps = { + borderRadius: "16px", + boxShadow: "none", + border: "1px solid #00000033", + maxHeight: 360, + overflowY: "auto", + "&::-webkit-scrollbar": { + width: "6px", + }, + "&::-webkit-scrollbar-thumb": { + backgroundColor: "#c84c03", + borderRadius: "8px", + }, + "&::-webkit-scrollbar-track": { + backgroundColor: "transparent", + }, + "&::-webkit-scrollbar-button": { + display: "none", + height: 0, + width: 0, + }, + scrollbarWidth: "thin", + scrollbarColor: "#c84c03 transparent", +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Utils/MapFileTableUtil.ts b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Utils/MapFileTableUtil.ts new file mode 100644 index 0000000..550803f --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/map-configuration/Utils/MapFileTableUtil.ts @@ -0,0 +1,92 @@ +export const columns: { id: string; label: string }[] = [ + { id: "fileName", label: "File Name" }, + { id: "type", label: "Type" }, + { id: "features", label: "Features" }, + { id: "size", label: "Size" }, + { id: "uploadedBy", label: "Uploaded By" }, + { id: "status", label: "Status" }, + { id: "action", label: "Action" }, +]; + +export const rows = [ + { + fileName: "BBMP_Zones_2024.shp", + type: "Zones", + features: "Property Tax Officer", + size: "2.4 MB", + uploadedBy: "Priya Sharma", + status: "Active", + }, + { + fileName: "BBMP_Wards_2024.shp", + type: "Wards", + features: "GIS Officer", + size: "5.8 MB", + uploadedBy: "Priya Sharma", + status: "Active", + }, + { + fileName: "BBMP_Mohallas_Zone3.shp", + type: "Mohallas", + features: "Field Agent", + size: "1.2 MB", + uploadedBy: "Priya Sharma", + status: "Active", + }, + { + fileName: "BBMP_Streets_2024.shp", + type: "Streets", + features: "Surveyor", + size: "3.1 MB", + uploadedBy: "Amit Kumar", + status: "Inactive", + }, + { + fileName: "BBMP_Blocks_2024.shp", + type: "Blocks", + features: "Data Analyst", + size: "4.7 MB", + uploadedBy: "Sunita Rao", + status: "Active", + }, + { + fileName: "BBMP_Buildings_2024.shp", + type: "Buildings", + features: "Building Inspector", + size: "6.2 MB", + uploadedBy: "Rahul Singh", + status: "Pending", + }, + { + fileName: "BBMP_Parks_2024.shp", + type: "Parks", + features: "Environment Officer", + size: "2.9 MB", + uploadedBy: "Meena Joshi", + status: "Active", + }, + { + fileName: "BBMP_Roads_2024.shp", + type: "Roads", + features: "Transport Officer", + size: "5.0 MB", + uploadedBy: "Vikram Patel", + status: "Inactive", + }, + { + fileName: "BBMP_Lakes_2024.shp", + type: "Lakes", + features: "Water Board", + size: "3.8 MB", + uploadedBy: "Anjali Menon", + status: "Active", + }, + { + fileName: "BBMP_Schools_2024.shp", + type: "Schools", + features: "Education Dept", + size: "2.5 MB", + uploadedBy: "Suresh Babu", + status: "Pending", + }, +]; diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Buttons/ActionBox.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Buttons/ActionBox.tsx new file mode 100644 index 0000000..defcc05 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Buttons/ActionBox.tsx @@ -0,0 +1,19 @@ +import { Box, IconButton } from "@mui/material"; +import FileDownloadOutlinedIcon from "@mui/icons-material/FileDownloadOutlined"; +import DeleteOutlineIcon from "@mui/icons-material/DeleteOutline"; +import { actionBoxContainerSx } from "../../Styles/ButtonsStyle/ActionBoxStyle"; + +const ActionBox = () => { + return ( + + + + + + + + + ); +}; + +export default ActionBox; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Buttons/CustomButton.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Buttons/CustomButton.tsx new file mode 100644 index 0000000..9c2e18d --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Buttons/CustomButton.tsx @@ -0,0 +1,32 @@ +import { Button } from "@mui/material"; +import React from "react"; +import { getCustomButtonSx } from "../../Styles/ButtonsStyle/CustomButtonStyle"; + +interface CustomButtonProps { + icon?: React.ReactNode; + text: string; + color?: string; + backgroundColor?: string; + variant?: "contained" | "outlined" | "text"; + onClick?: () => void; +} + +const CustomButton: React.FC = ({ + icon, + text, + color, + backgroundColor, + variant = "contained", + onClick, +}) => ( + +); + +export default CustomButton; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Buttons/CustomChip.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Buttons/CustomChip.tsx new file mode 100644 index 0000000..cc6207f --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Buttons/CustomChip.tsx @@ -0,0 +1,25 @@ +import React from "react"; +import { Box } from "@mui/material"; +import { getCustomChipSx } from "../../Styles/ButtonsStyle/CustomChipStyle"; + +interface CustomChipProps { + label: string; + color?: string; + borderColor?: string; + backgroundColor?: string; + sx?: object; +} + +const CustomChip: React.FC = ({ + label, + color, + borderColor, + backgroundColor, + sx = {}, +}) => ( + + {label} + +); + +export default CustomChip; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Cards/NotifyCard.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Cards/NotifyCard.tsx new file mode 100644 index 0000000..6be2c4c --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Cards/NotifyCard.tsx @@ -0,0 +1,33 @@ +import { Card, Box, Typography } from "@mui/material"; +import AntSwitch from "../SwitchButton/AntSwitch"; + +interface NotifyCardProps { + label: string; + icon: React.ReactNode; +} + +const NotifyCard: React.FC = ({ label, icon }) => { + return ( + + + {icon} + {label} + + + + ); +}; + +export default NotifyCard; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/NotificationManagement.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/NotificationManagement.tsx new file mode 100644 index 0000000..f5ab575 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/NotificationManagement.tsx @@ -0,0 +1,62 @@ +import { useState } from "react"; +import { Box, Typography } from "@mui/material"; +import { JurisdictionDropdown } from "../../../../components/JurisdictionDropdown/JurisdictionDropdown"; +import { + ButtonsContainerSx, + containerStylesSx, + headerContainerSx, + headerSubtitleSx, + headerTitleSx, +} from "../Styles/NotificationManagementStyle"; +import CustomButton from "./Buttons/CustomButton"; +import AddIcon from "@mui/icons-material/Add"; +import TodayRoundedIcon from "@mui/icons-material/TodayRounded"; +import TemplateTable from "./Table/TemplateTable"; +import CreateTemplateDialog from "../Components/PopUps/CreateTemplateDialog"; + +const NotificationManagement = () => { + const [openDialog, setOpenDialog] = useState(false); + + return ( + + + + + + + Notification Management + + Create and schedule notifications + + + + + } + text="Schedule Notification" + color="#c84c03" + variant="outlined" + /> + } + text="Create Template" + color="#fff" + backgroundColor="#c84c03" + variant="contained" + onClick={() => setOpenDialog(true)} + /> + + + + + + + setOpenDialog(false)} /> + + ); +}; + +export default NotificationManagement; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/PopUps/CreateTemplateDialog.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/PopUps/CreateTemplateDialog.tsx new file mode 100644 index 0000000..943408a --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/PopUps/CreateTemplateDialog.tsx @@ -0,0 +1,161 @@ +import { Dialog, DialogTitle, DialogContent, DialogActions, Button, Typography, TextField, FormControl, Select, MenuItem, Box } from "@mui/material"; +import React, { useState } from "react"; +import { channelOptions } from "../../Utils/NotifyCardsUtil"; +import NotifyCard from "../Cards/NotifyCard"; + +interface CreateTemplateDialogProps { + open: boolean; + onClose: () => void; +} + +const templateTypes = [ + "Utility", + "General", + "Alert", + "Reminder", +]; + +const inputSx = { + height: 40, + borderRadius: "8px", + "& .MuiOutlinedInput-root": { + height: 40, + borderRadius: "8px", + "& fieldset": { + borderColor: "#000", + }, + "&:hover fieldset": { + borderColor: "#000", + }, + "&.Mui-focused fieldset": { + borderColor: "#000", + }, + }, +}; + +const selectSx = { + height: 40, + borderRadius: "8px", + "& .MuiOutlinedInput-root": { + height: 40, + borderRadius: "8px", + "& fieldset": { + borderColor: "#000", + }, + "&:hover fieldset": { + borderColor: "#000", + }, + "&.Mui-focused fieldset": { + borderColor: "#000", + }, + }, +}; + +const multilineInputSx = { + borderRadius: "8px", + "& .MuiOutlinedInput-root": { + borderRadius: "8px", + "& fieldset": { + borderColor: "#000", + }, + "&:hover fieldset": { + borderColor: "#000", + }, + "&.Mui-focused fieldset": { + borderColor: "#000", + }, + }, +}; + +const cancelBtnSx = { + color: "#c84c03", + borderColor: "#c84c03", + borderRadius: "8px", + textTransform: "none", + fontWeight: 500, + borderWidth: 1, + borderStyle: "solid", + backgroundColor: "#fff", + "&:hover": { + backgroundColor: "#f5f5f5", + borderColor: "#c84c03", + }, +}; + +const createBtnSx = { + backgroundColor: "#c84c03", + color: "#fff", + borderRadius: "8px", + textTransform: "none", + fontWeight: 500, + "&:hover": { + backgroundColor: "#a63d02", + }, +}; + +const CreateTemplateDialog: React.FC = ({ open, onClose }) => { + const [templateName, setTemplateName] = useState(""); + const [templateType, setTemplateType] = useState(""); + const [messageContent, setMessageContent] = useState(""); + + return ( + + + Create Notification Template + + + + Template Name + setTemplateName(e.target.value)} + variant="outlined" + sx={inputSx} + /> + + + Template Type + + + + + + {channelOptions.map((option) => ( + + ))} + + + Message Content + setMessageContent(e.target.value)} + variant="outlined" + sx={multilineInputSx} + /> + + + + + + + + ); +}; + +export default CreateTemplateDialog; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/SwitchButton/AntSwitch.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/SwitchButton/AntSwitch.tsx new file mode 100644 index 0000000..fbd60ed --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/SwitchButton/AntSwitch.tsx @@ -0,0 +1,51 @@ +import { styled } from '@mui/material/styles'; +import Switch from '@mui/material/Switch'; + +const AntSwitch = styled(Switch)(({ theme }) => ({ + width: 28, + height: 16, + padding: 0, + display: 'flex', + '&:active': { + '& .MuiSwitch-thumb': { + width: 15, + }, + '& .MuiSwitch-switchBase.Mui-checked': { + transform: 'translateX(9px)', + }, + }, + '& .MuiSwitch-switchBase': { + padding: 2, + '&.Mui-checked': { + transform: 'translateX(12px)', + color: '#fff', + '& + .MuiSwitch-track': { + opacity: 1, + backgroundColor: '#c84c03', + ...theme.applyStyles('dark', { + backgroundColor: '#c84c03', + }), + }, + }, + }, + '& .MuiSwitch-thumb': { + boxShadow: '0 2px 4px 0 rgb(0 35 11 / 20%)', + width: 12, + height: 12, + borderRadius: 6, + transition: theme.transitions.create(['width'], { + duration: 200, + }), + }, + '& .MuiSwitch-track': { + borderRadius: 16 / 2, + opacity: 1, + backgroundColor: 'rgba(0,0,0,.25)', + boxSizing: 'border-box', + ...theme.applyStyles('dark', { + backgroundColor: 'rgba(255,255,255,.35)', + }), + }, +})); + +export default AntSwitch; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Table/TemplateTable.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Table/TemplateTable.tsx new file mode 100644 index 0000000..da1d0a7 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Components/Table/TemplateTable.tsx @@ -0,0 +1,105 @@ +import { + Paper, + Table, + TableBody, + TableCell, + TableContainer, + TableHead, + TableRow, + Box, + Typography, +} from "@mui/material"; +import { columns, rows } from "../../Utils/TemplateTableUtil"; +import CustomChip from "../Buttons/CustomChip"; +import ActionBox from "../Buttons/ActionBox"; +import { textWrapSx, tableContainerSx, chipWrapSx } from "../../Styles/TableStyle/TemplateTableStyle"; + +const TemplateTable = () => { + return ( + + + {/* Table Header */} + + + {columns.map((col) => ( + + {col.label} + + ))} + + + + {/* Table body */} + + {rows.map((row, idx) => ( + + {/* Template Name */} + + {row.templateName} + + {/* Channels */} + + + {row.channels.map((channel: string, i: number) => ( + + ))} + + + {/* Type */} + + + + {/* Role */} + + + {row.role.map((role: string, i: number) => ( + + ))} + + + {/* Last Used */} + + {row.lastUsed} + + {/* Status */} + + + + {/* Action */} + + + + + ))} + +
+
+ ); +}; + +export default TemplateTable; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/ButtonsStyle/ActionBoxStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/ButtonsStyle/ActionBoxStyle.ts new file mode 100644 index 0000000..ed647af --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/ButtonsStyle/ActionBoxStyle.ts @@ -0,0 +1,6 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const actionBoxContainerSx: SxProps = { + display: "inline-flex", + flexDirection:"row", +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/ButtonsStyle/CustomButtonStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/ButtonsStyle/CustomButtonStyle.ts new file mode 100644 index 0000000..e5e73a4 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/ButtonsStyle/CustomButtonStyle.ts @@ -0,0 +1,19 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const getCustomButtonSx = ( + variant: "contained" | "outlined" | "text", + color?: string, + backgroundColor?: string +): SxProps => ({ + color: variant === "outlined" ? color : color, + backgroundColor: variant === "contained" ? backgroundColor : undefined, + borderColor: variant === "outlined" ? color : undefined, + textTransform: "none", + display: "flex", + alignItems: "center", + gap: 1, + borderRadius: "8px", + px: 2, + py: 0.2, + fontWeight: 500, +}); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/ButtonsStyle/CustomChipStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/ButtonsStyle/CustomChipStyle.ts new file mode 100644 index 0000000..1c21bc2 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/ButtonsStyle/CustomChipStyle.ts @@ -0,0 +1,18 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const getCustomChipSx = ( + color: string = "#222", + borderColor: string = "#222", + backgroundColor: string = "#fff" +): SxProps => ({ + display: "inline-block", + border: `1.5px solid ${borderColor}`, + borderRadius: "20px", + px: 0.6, + py: 0.25, + fontSize: 14, + color, + backgroundColor, + fontWeight: 400, + lineHeight: 1.5, +}); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/CardsStyle/NotifyCardStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/CardsStyle/NotifyCardStyle.ts new file mode 100644 index 0000000..e69de29 diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/NotificationManagementStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/NotificationManagementStyle.ts new file mode 100644 index 0000000..7ebda05 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/NotificationManagementStyle.ts @@ -0,0 +1,42 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const containerStylesSx: SxProps = { + backgroundColor: "#f5f5f5", + pl:5, + pr:2, + pt:4, + pb:2, + height: "100vh", +} + +export const headerContainerSx: SxProps = { + display: "flex", + flexDirection: "column", + width: "100%", + mb: 2, +}; + +export const headerTitleSx: SxProps = { + fontSize: 32, + fontWeight: 500, + color: "black", + p:0, + m:0, +}; + +export const headerSubtitleSx: SxProps = { + fontSize: 20, + fontWeight: 300, + color: "black", + p:0, + m:0, +}; + +export const ButtonsContainerSx: SxProps = { + display: "flex", + flexDirection: "row", + justifyContent: "flex-end", + width: "100%", + gap: 2, + mb: 2, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/PopUpsStyle/CreateTemplateDialogStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/PopUpsStyle/CreateTemplateDialogStyle.ts new file mode 100644 index 0000000..e69de29 diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/TableStyle/TemplateTableStyle.ts b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/TableStyle/TemplateTableStyle.ts new file mode 100644 index 0000000..08cb666 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Styles/TableStyle/TemplateTableStyle.ts @@ -0,0 +1,40 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const textWrapSx: SxProps = { + whiteSpace: "normal", + wordBreak: "break-word", + maxWidth: 120 +}; + +export const tableContainerSx: SxProps = { + borderRadius: "16px", + boxShadow: "none", + border: "1px solid #00000033", + maxHeight: 360, + overflowY: "auto", + "&::-webkit-scrollbar": { + width: "6px", + }, + "&::-webkit-scrollbar-thumb": { + backgroundColor: "#c84c03", + borderRadius: "8px", + }, + "&::-webkit-scrollbar-track": { + backgroundColor: "transparent", + }, + "&::-webkit-scrollbar-button": { + display: "none", + height: 0, + width: 0, + }, + scrollbarWidth: "thin", + scrollbarColor: "#c84c03 transparent", +}; + +export const chipWrapSx = { + display: "flex", + flexWrap: "wrap", + gap: 1, + maxWidth: 120, + justifyContent: "center", +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Utils/NotifyCardsUtil.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Utils/NotifyCardsUtil.tsx new file mode 100644 index 0000000..06495f4 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Utils/NotifyCardsUtil.tsx @@ -0,0 +1,11 @@ +import CircleNotificationsOutlinedIcon from '@mui/icons-material/CircleNotificationsOutlined'; +import ModeCommentOutlinedIcon from '@mui/icons-material/ModeCommentOutlined'; +import ChatBubbleOutlineOutlinedIcon from '@mui/icons-material/ChatBubbleOutlineOutlined'; +import DraftsOutlinedIcon from '@mui/icons-material/DraftsOutlined'; + +export const channelOptions = [ + { label: "Email", icon: }, + { label: "SMS", icon: }, + { label: "WhatsApp", icon: }, + { label: "In-App", icon: }, +]; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Utils/TemplateTableUtil.ts b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Utils/TemplateTableUtil.ts new file mode 100644 index 0000000..4997f93 --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/notification-management/Utils/TemplateTableUtil.ts @@ -0,0 +1,92 @@ +export const columns: { id: string; label: string }[] = [ + { id: "templateName", label: "Template Name" }, + { id: "channels", label: "Channels" }, + { id: "type", label: "Type" }, + { id: "role", label: "Role" }, + { id: "lastUsed", label: "Last Used" }, + { id: "status", label: "Status" }, + { id: "action", label: "Action" }, +]; + +export const rows = [ + { + templateName: "Tax Payment Reminder", + channels: ["App", "SMS"], + type: "Utility", + role: ["Citizen"], + lastUsed: "2024-10-28", + status: "Active", + }, + { + templateName: "Property Verification Notice", + channels: ["App", "SMS"], + type: "General", + role: ["Citizen", "Agent"], + lastUsed: "2024-10-25", + status: "Active", + }, + { + templateName: "New Property Registration Confirmation", + channels: ["App", "SMS", "WhatsApp"], + type: "General", + role: ["Citizen", "Agent"], + lastUsed: "2024-10-27", + status: "Active", + }, + { + templateName: "Demand Recalibration Update", + channels: ["App", "SMS"], + type: "Utility", + role: ["Citizen"], + lastUsed: "2024-10-01", + status: "Active", + }, + { + templateName: "Annual Tax Statement", + channels: ["App", "SMS", "Email"], + type: "Utility", + role: ["Citizen"], + lastUsed: "2024-09-15", + status: "Active", + }, + { + templateName: "Agent Assignment Notification", + channels: ["App", "SMS"], + type: "General", + role: ["Agent"], + lastUsed: "2024-09-10", + status: "Inactive", + }, + { + templateName: "Property Transfer Alert", + channels: ["App", "SMS", "WhatsApp"], + type: "General", + role: ["Citizen", "Agent"], + lastUsed: "2024-08-30", + status: "Active", + }, + { + templateName: "Payment Failure Notice", + channels: ["App", "SMS"], + type: "Utility", + role: ["Citizen"], + lastUsed: "2024-08-20", + status: "Active", + }, + { + templateName: "Survey Completion Reminder", + channels: ["App", "SMS"], + type: "General", + role: ["Agent"], + lastUsed: "2024-08-05", + status: "Inactive", + }, + { + templateName: "Document Submission Request", + channels: ["App", "SMS", "Email"], + type: "General", + role: ["Citizen"], + lastUsed: "2024-07-25", + status: "Active", + }, +]; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/it-admin-app-features/user-management/UserManagement.tsx b/frontend/web-ui/src/app/features/it-admin-app-features/user-management/UserManagement.tsx new file mode 100644 index 0000000..3845c4e --- /dev/null +++ b/frontend/web-ui/src/app/features/it-admin-app-features/user-management/UserManagement.tsx @@ -0,0 +1,173 @@ +import React, { useState } from 'react'; +import { Box, Container, Typography, Button } from '@mui/material'; +import AddIcon from '@mui/icons-material/Add'; +import { UserStatsCard } from '../components/UserStatsCard'; +import { SearchBar } from '../components/SearchBar'; +import { FilterDropdown } from '../components/FilterDropdown'; +import { UserTable } from '../components/UserTable'; +import { JurisdictionDropdown } from '../../../components/JurisdictionDropdown/JurisdictionDropdown'; +import FilterListIcon from '@mui/icons-material/FilterList'; + +export const UserManagement: React.FC = () => { + const [searchQuery, setSearchQuery] = useState(''); + const [statusFilter, setStatusFilter] = useState('All Status'); + const [roleFilter, setRoleFilter] = useState('All Roles'); + + const mockUsers = [ + { + user: 'Rajesh Kumar', + officialId: 'BBMP/PTO/2024/001', + designation: 'Property Tax Officer', + role: 'Tax Officer', + jurisdiction: 'Ward 24 (BBMP)', + status: 'Active' as const, + }, + { + user: 'Priya Sharma', + officialId: 'BBMP/GIS/2024/012', + designation: 'GIS Officer', + role: 'GIS Admin', + jurisdiction: 'City Level (BBMP)', + status: 'Active' as const, + }, + { + user: 'Anil Reddy', + officialId: 'BBMP/FA/2024/089', + designation: 'Field Agent', + role: 'Verifier', + jurisdiction: 'Ward 38 (BBMP)', + status: 'Active' as const, + }, + { + user: 'Lakshmi Menon', + officialId: 'BBMP/DEO/2024/023', + designation: 'Data Entry Operator', + role: 'Data Entry', + jurisdiction: 'Zone 3 (BBMP)', + status: 'Active' as const, + }, + { + user: 'Rohan Kumar', + officialId: 'BBMP/PTO/2024/014', + designation: 'Property Tax Officer', + role: 'Tax Officer', + jurisdiction: 'Ward 56(BBMP)', + status: 'Active' as const, + }, + ]; + + return ( + + {/* Header */} + + + + + User Management + + + Manage system users and permissions + + + + + + + + + + {/* Stats Cards Row */} + + + + + + + {/* Search and Filters */} + + + + + + + + {/* User Table */} + + ({ + ...user, + onEdit: () => console.log('Edit user:', user.user), + onDelete: () => console.log('Delete user:', user.user), + }))} + /> + + + ); +}; diff --git a/frontend/web-ui/src/app/features/login-signup/assets/LoginPageAssets/LoginBG.svg b/frontend/web-ui/src/app/features/login-signup/assets/LoginPageAssets/LoginBG.svg new file mode 100644 index 0000000..145bef0 --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/assets/LoginPageAssets/LoginBG.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/frontend/web-ui/src/app/features/login-signup/assets/LoginPageAssets/LoginPropertyTaxText.svg b/frontend/web-ui/src/app/features/login-signup/assets/LoginPageAssets/LoginPropertyTaxText.svg new file mode 100644 index 0000000..b193854 --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/assets/LoginPageAssets/LoginPropertyTaxText.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontend/web-ui/src/app/features/login-signup/assets/LoginPageAssets/translate_indic.svg b/frontend/web-ui/src/app/features/login-signup/assets/LoginPageAssets/translate_indic.svg new file mode 100644 index 0000000..cc56e27 --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/assets/LoginPageAssets/translate_indic.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/frontend/web-ui/src/app/features/login-signup/components/LoginSignUp/LanguageButton.tsx b/frontend/web-ui/src/app/features/login-signup/components/LoginSignUp/LanguageButton.tsx new file mode 100644 index 0000000..d1af6fb --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/components/LoginSignUp/LanguageButton.tsx @@ -0,0 +1,64 @@ + +// LanguageButton displays a button for language selection with an icon and label +import React from "react"; +import { Button, Typography } from "@mui/material"; +import translateIndicSvg from '../../assets/LoginPageAssets/translate_indic.svg'; + + +// Props: optional onClick handler for button +export const LanguageButton: React.FC<{ onClick?: () => void }> = ({ onClick }) => { + // State to track if the button is pressed (for visual feedback) + const [pressed, setPressed] = React.useState(false); + + return ( + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/login-signup/components/LoginSignUp/LanguageSettingsModal.tsx b/frontend/web-ui/src/app/features/login-signup/components/LoginSignUp/LanguageSettingsModal.tsx new file mode 100644 index 0000000..c242cf4 --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/components/LoginSignUp/LanguageSettingsModal.tsx @@ -0,0 +1,232 @@ + +// LanguageSettingsModal allows users to select and confirm their preferred language +import React from "react"; +import { Box, Modal, Typography, IconButton, Button } from "@mui/material"; +import CheckCircleRoundedIcon from '@mui/icons-material/CheckCircleRounded'; +import CloseRoundedIcon from '@mui/icons-material/CloseRounded'; + +// List of available languages for selection +const LANGUAGES = [ + { + code: "en", + label: "English", + script: "Aa", + scriptFont: "inherit", + subtitle: "English", + available: true, + }, + { + code: "hi", + label: "Hindi", + script: "आ", + scriptFont: "Noto Serif, serif", + subtitle: "हिन्दी Hindi", + available: true, + }, + { + code: "kn", + label: "Kannada", + script: "ಅ", + scriptFont: "'Noto Sans Kannada', sans-serif", + subtitle: "ಕನ್ನಡ Kannada", + available: true, + }, + { + code: "te", + label: "Telugu", + script: "అ", + scriptFont: "'Noto Sans Telugu', sans-serif", + subtitle: "తెలుగు Telugu", + available: true, + }, + { + code: "ta", + label: "Tamil", + script: "அ", + scriptFont: "'Noto Sans Tamil', sans-serif", + subtitle: "தமிழ் Tamil", + available: true, + }, +]; + + +// Props for LanguageSettingsModal +export interface LanguageSettingsModalProps { + open: boolean; // Whether the modal is open + selected?: string; // Currently selected language code + onSelect: (code: string) => void; // Callback when a language is selected + onClose: () => void; // Callback to close the modal + onConfirm: () => void; // Callback to confirm selection +} + + +export const LanguageSettingsModal: React.FC = ({ + open, + selected = "en", + onSelect, + onClose, + onConfirm, +}) => ( + + + {/* Header row with title and close button */} + + + + + Language Settings + + + Please confirm your language. + + + + + + + + + + {/* Language grid for selection */} + + {LANGUAGES.map(lang => ( + lang.available && onSelect(lang.code)} + > + + + {lang.script} + + {selected === lang.code && ( + + )} + + + + {lang.subtitle} + + + + ))} + + + {/* Confirm button at the bottom */} + + + + + + +); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/login-signup/components/LoginSignUp/LoginHeaderWithLanguage.tsx b/frontend/web-ui/src/app/features/login-signup/components/LoginSignUp/LoginHeaderWithLanguage.tsx new file mode 100644 index 0000000..f3b12f0 --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/components/LoginSignUp/LoginHeaderWithLanguage.tsx @@ -0,0 +1,41 @@ + +// LoginHeaderWithLanguage displays the login header and a language selection button +import { Box, Typography } from "@mui/material"; +import { LanguageButton } from "./LanguageButton"; // adjust path + + +// Props for LoginHeaderWithLanguage +interface LoginHeaderWithLanguageProps { + LanguageButtonProp?: React.ComponentProps; +} + + +// Renders a header with the "Log In" title and a language selection button +export const LoginHeaderWithLanguage: React.FC = ({ + LanguageButtonProp = {}, +}) => ( + + {/* Login page title */} + + Log In + + {/* Language selection button */} + + +); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/login-signup/components/ProtectedRouteComponent/ProtectedRoute.tsx b/frontend/web-ui/src/app/features/login-signup/components/ProtectedRouteComponent/ProtectedRoute.tsx new file mode 100644 index 0000000..7d22100 --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/components/ProtectedRouteComponent/ProtectedRoute.tsx @@ -0,0 +1,54 @@ + +// ProtectedRoute is a wrapper component that restricts access to its children based on authentication and user role. +import React from "react"; +import { Navigate } from "react-router-dom"; +import { useAuth } from "../../provider/AuthProvider"; +import LoadingPage from "../../../../pages/loading-page/LoadingPage"; + + +// Props for ProtectedRoute: +// - children: The components to render if access is allowed +// - allowedRoles: Optional array of roles that are permitted to access the route +interface ProtectedRouteProps { + children: React.ReactNode; + allowedRoles?: ('SERVICE_MANAGER' | 'COMMISSIONER' | 'ADMIN')[]; +} + + +const ProtectedRoute: React.FC = ({ children, allowedRoles }) => { + // Get authentication state and user role from context + const { isAuthenticated, loading, role } = useAuth(); + + // Show loading indicator while authentication status is being determined + if (loading) { + return ; + } + + // If user is not authenticated, redirect to login page + if (!isAuthenticated) { + return ; + } + + // If allowedRoles is provided, check if the user's role is permitted + if (allowedRoles && allowedRoles.length > 0) { + if (!role || !allowedRoles.includes(role)) { + // If user has a known role, redirect to their respective home page + if (role === 'SERVICE_MANAGER') { + return ; + } else if (role === 'COMMISSIONER') { + return ; + } else if (role === 'ADMIN') { + return ; + } + // If role is unknown or not allowed, redirect to login + return ; + } + } + + // If authenticated and role is allowed (or no role restriction), render children + return <>{children}; +}; + + +// Export the ProtectedRoute component as default +export default ProtectedRoute; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/login-signup/components/PublicRouteComponent/PublicRoute.tsx b/frontend/web-ui/src/app/features/login-signup/components/PublicRouteComponent/PublicRoute.tsx new file mode 100644 index 0000000..0ddac29 --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/components/PublicRouteComponent/PublicRoute.tsx @@ -0,0 +1,31 @@ + +// PublicRoute is a wrapper component that restricts access to its children for authenticated users. +// It is typically used for routes like login or signup that should not be accessible when logged in. +import React from "react"; +import { Navigate } from "react-router-dom"; +import { useAuth } from "../../provider/AuthProvider"; +import LoadingPage from "../../../../pages/loading-page/LoadingPage"; + + +// Props: children - the components to render if the user is not authenticated +const PublicRoute: React.FC<{ children: React.ReactNode }> = ({ children }) => { + // Get authentication state from context + const { isAuthenticated, loading } = useAuth(); + + // Show loading indicator while authentication status is being determined + if (loading) { + return ; + } + + // If user is authenticated, redirect to the service manager's home page + if (isAuthenticated) { + return ; + } + + // If not authenticated, render the children components (e.g., login or signup forms) + return <>{children}; +}; + + +// Export the PublicRoute component as default +export default PublicRoute; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/login-signup/env.ts b/frontend/web-ui/src/app/features/login-signup/env.ts new file mode 100644 index 0000000..5b56e30 --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/env.ts @@ -0,0 +1,9 @@ + +// URL for obtaining Keycloak access and refresh tokens +export const KEYCLOAK_TOKEN_URL = + `${import.meta.env.VITE_KEYCLOAK_URL}/realms/${import.meta.env.VITE_KEYCLOAK_REALM}/protocol/openid-connect/token`; + +// URL for fetching user information from Keycloak +export const KEYCLOAK_USER_INFO_URL = + `${import.meta.env.VITE_KEYCLOAK_URL}/realms/${import.meta.env.VITE_KEYCLOAK_REALM}/protocol/openid-connect/userinfo`; + diff --git a/frontend/web-ui/src/app/features/login-signup/loader/AuthLoader.tsx b/frontend/web-ui/src/app/features/login-signup/loader/AuthLoader.tsx new file mode 100644 index 0000000..b5155e8 --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/loader/AuthLoader.tsx @@ -0,0 +1,39 @@ + +// AuthLoader is a wrapper component that manages authentication state before rendering its children. +// It handles loading, error, and unauthenticated states by showing the login screen or a loading indicator. +import React from 'react'; +import { useAuth } from '../provider/AuthProvider'; +import LoginScreen from '../../../pages/Login-SignUp/Login-SignUp'; +import LoadingPage from '../../../pages/loading-page/LoadingPage'; + + + +const AuthLoader: React.FC<{ children: React.ReactNode }> = ({ children }) => { + // Get authentication state and updater from context + const { loading, isAuthenticated, error, updateAuthState } = useAuth(); + + // Show a full-page loading indicator while authentication status is being determined + if (loading) { + return ( + + ); + } + + // If there is an authentication error, show the login screen and pass the updateAuthState callback + if (error) { + return ; + } + + // If user is not authenticated, show the login screen + if (!isAuthenticated) { + return ; + } + + // If authenticated, render the children components + return <>{children}; +}; + + +// Export the AuthLoader component as default +export default AuthLoader; + \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/login-signup/models/LoginFormModel.ts b/frontend/web-ui/src/app/features/login-signup/models/LoginFormModel.ts new file mode 100644 index 0000000..e633da7 --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/models/LoginFormModel.ts @@ -0,0 +1,26 @@ + +// Represents the values entered in the login form +export interface LoginFormValues { + username: string; // User's login username + password: string; // User's login password +} + + +// Represents the user data returned from a successful login response +export interface LoginResponseData { + id: string; // Unique user identifier + username: string; // Username of the user + email: string; // User's email address + firstName: string; // User's first name + lastName: string; // User's last name + role: string; // User's role (e.g., admin, manager) + phoneNumber: string; // User's phone number +} + + +// Represents the structure of the login API response +export interface LoginResponse { + success: boolean; // Indicates if login was successful + message: string; // Message describing the result + data?: LoginResponseData; // Optional user data if login is successful +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/login-signup/models/ProfileService.ts b/frontend/web-ui/src/app/features/login-signup/models/ProfileService.ts new file mode 100644 index 0000000..2178abe --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/models/ProfileService.ts @@ -0,0 +1,105 @@ + +// Provides user profile types and utility functions for user profile and language management +import httpClient from "../services/httpClient"; + + +// Represents a user's address information +export type Address = { + addressLine1: string; // First line of address + addressLine2: string | null; // Second line of address (optional) + city: string; // City name + state: string; // State name + pinCode: string; // Postal code +}; + + +// Represents a zone and its associated wards +export type ZoneData = { + zoneNumber: string; // Zone identifier + wards: string[]; // List of ward names or numbers +}; + + +// Represents detailed user profile information +export type UserProfile = { + firstName: string; // User's first name + lastName: string; // User's last name + fullName: string; // User's full name + phoneNumber: string; // User's phone number + adhaarNo: number; // User's Aadhaar number (unique ID) + gender: string; // User's gender + guardian?: string; // Guardian's name (optional) + guardianType?: string; // Type of guardian (optional) + dateOfBirth?: string; // Date of birth (optional) + address: Address; // User's address + department: string; // Department name + designation: string; // User's designation + workLocation?: string; // Work location (optional) + profilePicture?: string; // Profile picture URL (optional) + relationshipToProperty: string; // Relationship to property + ownershipShare: number; // Share of ownership + isPrimaryOwner: boolean; // Is the primary owner + isVerified: boolean; // Is the profile verified +}; + + +// Represents a user with profile and zone information +export type User = { + id: string; // Unique user identifier + username: string; // Username + email: string; // Email address + role: string; // User's role + isActive: boolean; // Is the user active + zoneData: ZoneData[]; // List of zones and wards + preferred_language?: string; // Preferred language (optional) + createdDate: string; // Account creation date + updatedDate: string; // Last update date + createdBy: string; // Who created the user + updatedBy: string; // Who last updated the user + profile: UserProfile; // User's profile details +}; + + +// Fetches a user by their username from the onboarding API +export const getUserByUsername = async (username: string): Promise => { + const response = await fetch(`${import.meta.env.VITE_ONBOARDING_HOST}/api/v1/users?username=${username}`); + if (response.status !== 200) throw new Error("User not found"); + const data = await response.json(); + + // Check if user data exists and is valid + if (!data.data || !Array.isArray(data.data.users) || data.data.users.length === 0) { + throw new Error("User not found"); + } + // Return the first user found + return data.data.users[0]; +}; + + +// Sets the application's locale in localStorage +export const setAppLocale = (localeKey:string, locale: string) => { + localStorage.setItem(localeKey, locale); +}; + + +// Retrieves the application's locale from localStorage, defaults to 'en' if not set +export const getAppLocale = () => { + return localStorage.getItem("appLocale") || "en"; +}; + + +// Removes the application's locale from localStorage +export const removeAppLocale = () => { + localStorage.removeItem("appLocale"); +}; + + +// Updates the user's preferred language via API call +export const updatePreferredLanguage = async (userId: string, lang: string) => { + const response = await httpClient.put( + `/api/v1/users/${userId}/language`, + { preferredLanguage: lang }, + { headers: { "Content-Type": "application/json" } } + ); + if (response.status < 200 || response.status >= 300) throw new Error("Failed to update preferred language"); + return response.data; +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/login-signup/provider/AuthProvider.tsx b/frontend/web-ui/src/app/features/login-signup/provider/AuthProvider.tsx new file mode 100644 index 0000000..b57168c --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/provider/AuthProvider.tsx @@ -0,0 +1,284 @@ +// Provides authentication context and state management for the application +import React, { createContext, useContext, useState, useEffect, useCallback, useMemo } from 'react'; +import type { ReactNode } from 'react'; +import { authService } from '../services/AuthService'; +import type { User } from '../models/ProfileService'; +import { useDispatch } from 'react-redux'; +import { setUser as setReduxUser, clearUser as clearReduxUser } from '../../../../store/userSlice'; + +// Defines the shape of the authentication context +interface AuthContextType { + isAuthenticated: boolean; + token: string | null; + login: (username: string, password: string) => Promise; + logout: () => Promise; + loading: boolean; + error: string | null; + updateAuthState: () => Promise; + role: 'SERVICE_MANAGER' | 'COMMISSIONER' | 'ADMIN' | null; + user: User | null; + appLocale: string; +} + + +// ---- Session storage helpers ---- +// Key for storing user in sessionStorage +const SESSION_USER_KEY = 'user'; + +// Save user object to sessionStorage +function saveUserToSession(user: User | null) { + if (user) { + try { + sessionStorage.setItem(SESSION_USER_KEY, JSON.stringify(user)); + } catch { + // ignore storage errors + } + } else { + sessionStorage.removeItem(SESSION_USER_KEY); + } +} + +// Retrieve user object from sessionStorage +export function getUserFromSession(): User | null { + try { + const stored = sessionStorage.getItem(SESSION_USER_KEY); + return stored ? JSON.parse(stored) : null; + } catch { + return null; + } +} + + + +// Create the authentication context +const AuthContext = createContext(undefined); + + +// Custom hook to access authentication context +export const useAuth = () => { + const context = useContext(AuthContext); + if (!context) throw new Error('useAuth must be used within an AuthProvider'); + return context; +}; + + +// Provides authentication state and actions to its children +export const AuthProvider: React.FC<{ children: ReactNode }> = ({ children }) => { + // State variables for authentication + const [isAuthenticated, setIsAuthenticated] = useState(false); + const [token, setToken] = useState(null); + const [role, setRole] = useState<'SERVICE_MANAGER' | 'COMMISSIONER' | 'ADMIN' | null>(null); + const [user, setUser] = useState(null); + const [appLocale, setAppLocaleState] = useState('en'); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(null); + + const dispatch = useDispatch(); + + // Initialize authentication state on mount + useEffect(() => { + let mounted = true; + const initAuth = async () => { + try { + const isAuth = authService.isAuthenticated(); + if (!mounted) return; + if (isAuth) { + const validToken = await authService.getValidToken(); + if (!mounted) return; + setIsAuthenticated(Boolean(validToken)); + setToken(validToken ?? null); + + // Determine user's primary role + const primaryRole = authService.getPrimaryRole?.(); + setRole( + primaryRole === 'SERVICE_MANAGER' + ? 'SERVICE_MANAGER' + : primaryRole === 'COMMISSIONER' + ? 'COMMISSIONER' + : primaryRole === 'ADMIN' ? 'ADMIN' : null + ); + + setAppLocaleState(authService.appLocale ?? 'en'); + + // Retrieve user from session or service + const storedUser = getUserFromSession(); + const svcUser = authService.user ?? null; + const finalUser = storedUser || svcUser; + setUser(finalUser); + if (!storedUser && svcUser) saveUserToSession(svcUser); + + // ✅ SYNC WITH REDUX on init + if (finalUser) { + dispatch(setReduxUser(finalUser)); + } + } else { + setIsAuthenticated(false); + setToken(null); + setRole(null); + setAppLocaleState('en'); + setUser(null); + saveUserToSession(null); + } + } catch (e) { + setError('Authentication initialization failed'); + setIsAuthenticated(false); + setToken(null); + setRole(null); + setAppLocaleState('en'); + setUser(null); + saveUserToSession(null); + } finally { + if (mounted) setLoading(false); + } + }; + initAuth(); + return () => { + mounted = false; + } + }, [dispatch]); + + + // Handles user login and updates authentication state + const login = useCallback(async (username: string, password: string): Promise => { + setLoading(true); + setError(null); + try { + const success = await authService.loginWithPassword({ username, password }); + if (success) { + const validToken = await authService.getValidToken(); + setIsAuthenticated(true); + setToken(validToken ?? authService.getAccessToken?.() ?? null); + + const primaryRole = authService.getPrimaryRole?.(); + setRole( + primaryRole === 'SERVICE_MANAGER' + ? 'SERVICE_MANAGER' + : primaryRole === 'COMMISSIONER' + ? 'COMMISSIONER' + : primaryRole === 'ADMIN' ? 'ADMIN' : null + ); + + setAppLocaleState(authService.appLocale ?? 'en'); + + const userData = authService.user ?? null; + setUser(userData); + saveUserToSession(userData); + + // ✅ SYNC WITH REDUX + if (userData) { + dispatch(setReduxUser(userData)); + } + + return true; + } else { + setError('Login failed. Please check your credentials.'); + return false; + } + } catch (e) { + setError('Login failed. Please try again.'); + return false; + } finally { + setLoading(false); + } + }, [dispatch]); + + + + // Handles user logout and clears authentication state + const logout = useCallback(async () => { + setLoading(true); + setError(null); + try { + await authService.logout(); + } catch { + setError('Logout failed'); + } finally { + setIsAuthenticated(false); + setToken(null); + setRole(null); + setAppLocaleState('en'); + setUser(null); + saveUserToSession(null); + + // ✅ SYNC WITH REDUX + dispatch(clearReduxUser()); + + setLoading(false); + } + }, [dispatch]); + + + + // Refreshes authentication state (e.g., after token refresh or user update) + const updateAuthState = useCallback(async () => { + try { + const validToken = await authService.getValidToken(); + if (validToken) { + setIsAuthenticated(true); + setToken(validToken); + // Update user's primary role + const primaryRole = authService.getPrimaryRole?.(); + setRole( + primaryRole === 'SERVICE_MANAGER' + ? 'SERVICE_MANAGER' + : primaryRole === 'COMMISSIONER' + ? 'COMMISSIONER' + : primaryRole === 'ADMIN' ? 'ADMIN' : null + ); + setAppLocaleState(authService.appLocale ?? 'en'); + + const userData = authService.user ?? null; + setUser(userData); + saveUserToSession(userData); + + // ✅ SYNC WITH REDUX + if (userData) { + dispatch(setReduxUser(userData)); + } + + setError(null); + } else { + setIsAuthenticated(false); + setToken(null); + setRole(null); + setAppLocaleState('en'); + setUser(null); + saveUserToSession(null); + + // ✅ SYNC WITH REDUX + dispatch(clearReduxUser()); + } + } catch { + setIsAuthenticated(false); + setToken(null); + setRole(null); + setAppLocaleState('en'); + setUser(null); + saveUserToSession(null); + + // ✅ SYNC WITH REDUX + dispatch(clearReduxUser()); + } + }, [dispatch]); + + + // Memoize the context value to avoid unnecessary re-renders + const contextValue = useMemo( + () => ({ + isAuthenticated, + token, + login, + logout, + loading, + error, + updateAuthState, + role, + user, + appLocale, + }), + [isAuthenticated, token, login, logout, loading, error, updateAuthState, role, user, appLocale] + ); + + // Provide authentication context to children + return {children}; +}; diff --git a/frontend/web-ui/src/app/features/login-signup/services/AuthService.tsx b/frontend/web-ui/src/app/features/login-signup/services/AuthService.tsx new file mode 100644 index 0000000..c244e57 --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/services/AuthService.tsx @@ -0,0 +1,345 @@ +// AuthService handles authentication, token management, user profile, and locale for the app +// Provides login, logout, token refresh, and role/locale utilities for user sessions + +import { KEYCLOAK_TOKEN_URL } from '../env'; + +import { + getUserByUsername, + setAppLocale, + getAppLocale, + removeAppLocale, + updatePreferredLanguage, + type User, +} from '../models/ProfileService'; + +// Response structure for OAuth token requests +interface TokenResponse { + access_token: string; + refresh_token: string; + expires_in: number; + token_type: string; + scope: string; +} + +// Credentials for login +interface AuthCredentials { + username: string; + password: string; +} + +// Main authentication service class +class AuthService { + private accessToken: string | null = null; + private refreshToken: string | null = null; + private tokenExpiry: number | null = null; + + public user: User | null = null; + public appLocale: string = 'en'; + + public primaryRole: 'SERVICE_MANAGER' | 'COMMISSIONER' | 'ADMIN' | null = null; + + // Track which locale key is set, based on user role + private localeKey: string = "appLocale"; + + // Login with username and password, fetch tokens and user profile + async loginWithPassword(credentials: AuthCredentials): Promise { + try { + const response = await fetch(KEYCLOAK_TOKEN_URL, { + method: 'POST', + headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, + body: new URLSearchParams({ + grant_type: 'password', + client_id: import.meta.env.VITE_KEYCLOAK_CLIENT_ID, + client_secret: import.meta.env.VITE_KEYCLOAK_CLIENT_SECRET, + username: credentials.username, + password: credentials.password, + scope: import.meta.env.VITE_KEYCLOAK_SCOPE, + }), + }); + + if (!response.ok) return false; + const tokenData: TokenResponse = await response.json(); + + this.accessToken = tokenData.access_token; + this.refreshToken = tokenData.refresh_token; + this.tokenExpiry = Date.now() + tokenData.expires_in * 1000; + + localStorage.setItem('access_token', this.accessToken); + localStorage.setItem('refresh_token', this.refreshToken); + localStorage.setItem('token_expiry', this.tokenExpiry.toString()); + + // Fetch user profile FIRST, to determine role + let user: User | null = null; + + let primaryRole: 'SERVICE_MANAGER' | 'COMMISSIONER' | 'ADMIN' | null = null; + + let localeKey = "appLocale"; + let appLocale = 'en'; + try { + user = await getUserByUsername(credentials.username); + this.user = user; + if (user && user.role) { + const role = user.role.toUpperCase(); + if (role === 'SERVICE_MANAGER') primaryRole = 'SERVICE_MANAGER'; + else if (role === 'COMMISSIONER') primaryRole = 'COMMISSIONER'; + + else if (role === 'ADMIN') primaryRole = 'ADMIN'; + + else primaryRole = null; + } else { + primaryRole = this.getPrimaryRoleFromToken(); + } + localeKey = primaryRole === 'SERVICE_MANAGER' + ? 'serviceManagerLocale' + : primaryRole === 'COMMISSIONER' + ? 'commissionerLocale' + + : primaryRole === 'ADMIN' + + ? 'adminLocale' + + : 'appLocale'; + + appLocale = user?.preferred_language || 'en'; + } catch { + this.user = null; + primaryRole = this.getPrimaryRoleFromToken(); + localeKey = primaryRole === 'SERVICE_MANAGER' + ? 'serviceManagerLocale' + : primaryRole === 'COMMISSIONER' + ? 'commissionerLocale' + + : primaryRole === 'ADMIN' + + ? 'adminLocale' + + : 'appLocale'; + + appLocale = 'en'; + } + this.primaryRole = primaryRole; + this.localeKey = localeKey; + this.appLocale = appLocale; + + // Set locale in persistent store as per resolved role + setAppLocale(localeKey, appLocale); + return true; + } catch (error) { + console.log(error) + return false; + } + } + + // Refresh the access token using the refresh token + async refreshAccessToken(): Promise { + if (!this.refreshToken) return false; + try { + const response = await fetch(KEYCLOAK_TOKEN_URL, { + method: 'POST', + headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, + body: new URLSearchParams({ + grant_type: 'refresh_token', + refresh_token: this.refreshToken, + client_id: import.meta.env.VITE_KEYCLOAK_CLIENT_ID, + client_secret: import.meta.env.VITE_KEYCLOAK_CLIENT_SECRET, + }), + }); + if (!response.ok) { + await this.logout(); + return false; + } + const tokenData: TokenResponse = await response.json(); + this.accessToken = tokenData.access_token; + this.refreshToken = tokenData.refresh_token; + this.tokenExpiry = Date.now() + tokenData.expires_in * 1000; + + localStorage.setItem('access_token', this.accessToken); + localStorage.setItem('refresh_token', this.refreshToken); + localStorage.setItem('token_expiry', this.tokenExpiry.toString()); + return true; + } catch { + await this.logout(); + return false; + } + } + + // Get a valid access token, refreshing if needed + async getValidToken(): Promise { + if (!this.accessToken) this.loadFromStorage(); + if (this.tokenExpiry && Date.now() >= this.tokenExpiry - 60000) { + const refreshed = await this.refreshAccessToken(); + if (!refreshed) return null; + } + return this.accessToken; + } + + // Load tokens, user, and locale from localStorage + private loadFromStorage(): void { + this.accessToken = localStorage.getItem('access_token'); + this.refreshToken = localStorage.getItem('refresh_token'); + const expiry = localStorage.getItem('token_expiry'); + this.tokenExpiry = expiry ? parseInt(expiry) : null; + + // Guess role and key to retrieve correct locale + const storedServiceManagerLocale = localStorage.getItem('serviceManagerLocale'); + const storedCommissionerLocale = localStorage.getItem('commissionerLocale'); + + const storedAdminLocale = localStorage.getItem('adminLocale'); + + if (storedServiceManagerLocale) { + this.appLocale = storedServiceManagerLocale; + this.localeKey = 'serviceManagerLocale'; + this.primaryRole = 'SERVICE_MANAGER'; + } else if (storedCommissionerLocale) { + this.appLocale = storedCommissionerLocale; + this.localeKey = 'commissionerLocale'; + this.primaryRole = 'COMMISSIONER'; + + } else if (storedAdminLocale) { + + this.appLocale = storedAdminLocale; + + this.localeKey = 'adminLocale'; + + this.primaryRole = 'ADMIN'; + + } else { + this.appLocale = getAppLocale(); + this.localeKey = 'appLocale'; + this.primaryRole = null; + } + } + + // Logout the user, clear tokens and locale, and update preferred language + async logout(): Promise { + try { + if (this.user) { + const lastLocale = localStorage.getItem(this.localeKey) || getAppLocale() || 'en'; + console.log('Calling updatePreferredLanguage with:', this.user.id, lastLocale); + try { + await updatePreferredLanguage(this.user.id, lastLocale); + console.log('updatePreferredLanguage finished successfully'); + } catch (err) { + console.error('updatePreferredLanguage error:', err); + } + } + } catch (e) { + console.log(e); + } + this.accessToken = null; + this.refreshToken = null; + this.tokenExpiry = null; + this.user = null; + this.primaryRole = null; + this.appLocale = 'en'; + + localStorage.removeItem('serviceManagerLocale'); + localStorage.removeItem('commissionerLocale'); + + localStorage.removeItem('adminLocale'); + + removeAppLocale(); + localStorage.removeItem('access_token'); + localStorage.removeItem('refresh_token'); + localStorage.removeItem('token_expiry'); + } + + // Check if the user is authenticated (token exists and not expired) + isAuthenticated(): boolean { + if (!this.accessToken) this.loadFromStorage(); + return !!(this.accessToken && this.tokenExpiry && Date.now() < this.tokenExpiry); + } + + // Get the current access token + getAccessToken(): string | null { + return this.accessToken; + } + + // Decode the JWT token payload + decodeTokenPayload(): any | null { + if (!this.accessToken) this.loadFromStorage(); + if (!this.accessToken) return null; + try { + const part = this.accessToken.split('.')[1]; + if (!part) return null; + const json = atob(part.replace(/-/g, '+').replace(/_/g, '/')); + return JSON.parse( + decodeURIComponent( + json.split('').map((c) => '%' + c.charCodeAt(0).toString(16).padStart(2, '0')).join('') + ) + ); + } catch { + return null; + } + } + + // Get all roles from the token + getTokenRoles(): string[] { + const payload = this.decodeTokenPayload(); + if (!payload) return []; + const realmRoles: string[] = payload.realm_access?.roles || []; + const resourceRoles: string[] = payload.resource_access + ? Object.values(payload.resource_access).flatMap((r: any) => r.roles || []) + : []; + return Array.from(new Set([...realmRoles, ...resourceRoles])); + } + + getPrimaryRoleFromToken(): 'SERVICE_MANAGER' | 'COMMISSIONER' | 'ADMIN' | null { + + const roles = this.getTokenRoles().map((r) => r.toUpperCase()); + if (roles.includes('SERVICE_MANAGER')) return 'SERVICE_MANAGER'; + if (roles.includes('COMMISSIONER')) return 'COMMISSIONER'; + + if (roles.includes('ADMIN')) return 'ADMIN'; + + return null; + } + + // Check if the user has a specific role + hasRole(role: string): boolean { + if (this.user?.role) { + return this.user.role.toLowerCase() === role.toLowerCase(); + } + return this.getTokenRoles().some((r) => r.toUpperCase() === role.toUpperCase()); + } + + // Check if the user is a Service Manager + isServiceManager(): boolean { + return this.getPrimaryRole() === 'SERVICE_MANAGER'; + } + + // Check if the user is a Commissioner + isCommissioner(): boolean { + return this.getPrimaryRole() === 'COMMISSIONER'; + } + + isAdmin(): boolean { + + return this.getPrimaryRole() === 'ADMIN'; + + } + + // Prefer role from user profile if available + + getPrimaryRole(): 'SERVICE_MANAGER' | 'COMMISSIONER' | 'ADMIN' | null { + + if (this.user?.role) { + if (this.user.role.toUpperCase() === "SERVICE_MANAGER") return "SERVICE_MANAGER"; + if (this.user.role.toUpperCase() === "COMMISSIONER") return "COMMISSIONER"; + + if (this.user.role.toUpperCase() === "ADMIN") return "ADMIN"; + + } + return this.getPrimaryRoleFromToken(); + } + + // Get the locale key for the current user/role + getLocaleKey(): string { + return this.localeKey; + } + +} + +export const authService = new AuthService(); + +export default authService; diff --git a/frontend/web-ui/src/app/features/login-signup/services/GetHeaderId.ts b/frontend/web-ui/src/app/features/login-signup/services/GetHeaderId.ts new file mode 100644 index 0000000..11c39e2 --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/services/GetHeaderId.ts @@ -0,0 +1,21 @@ + +// Utility to fetch user ID by username and set it in HTTP headers for future requests +import httpClient from "./httpClient"; + + +// Fetches the user by username and sets the user's ID in the HTTP client's default headers +// This is useful for APIs that require the user ID to be sent in a custom header +export async function GetHeaderId(username: string) { + // Make a GET request to fetch user data by username + const response = await httpClient.get(`/api/v1/users?username=${username}`); + console.log("resp: ", response); + + // Extract the user ID from the response + const newUserId = response.data.user.id; + // Set the user ID in the default headers for future HTTP requests + httpClient.defaults.headers.common['X-User-ID'] = newUserId; + // Optionally, you could set the user role as well if needed + // httpClient.defaults.headers.common['X-User-Role'] = role; + // console.log(response.data.user); + return; +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/login-signup/services/LoginService.ts b/frontend/web-ui/src/app/features/login-signup/services/LoginService.ts new file mode 100644 index 0000000..eeef98e --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/services/LoginService.ts @@ -0,0 +1,33 @@ + +// LoginService provides a static method to perform user login via API +import type { LoginFormValues, LoginResponse } from "../models/LoginFormModel"; + + +export class LoginService { + /** + * Attempts to log in a user with the provided form values. + * @param form - The login form values (username and password) + * @returns A promise resolving to the login response object + */ + static async login(form: LoginFormValues): Promise { + try { + // Send a POST request to the login API endpoint + const response = await fetch(`${import.meta.env.VITE_ONBOARDING_HOST}/api/login`, { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify(form), + }); + // Parse the response as JSON + const data = await response.json(); + // If login is successful, return the response data + if (data.success) { + return { success: true, message: data.message, data: data.data }; + } + // If login fails, return an error message + return { success: false, message: data?.message || "Login failed" }; + } catch (err) { + // Handle network or unexpected errors + return { success: false, message: "Network error" }; + } + } +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/login-signup/services/httpClient.ts b/frontend/web-ui/src/app/features/login-signup/services/httpClient.ts new file mode 100644 index 0000000..3060020 --- /dev/null +++ b/frontend/web-ui/src/app/features/login-signup/services/httpClient.ts @@ -0,0 +1,70 @@ + +// This file sets up a pre-configured Axios HTTP client with authentication and tenant handling +import axios from 'axios'; +import { authService } from './AuthService'; + + +// Tenant ID for multi-tenant API requests +const TENANT_ID = import.meta.env.VITE_TENANT_ID; + + +// Create an Axios instance with base URL and default headers +const httpClient = axios.create({ + baseURL: import.meta.env.VITE_ONBOARDING_HOST, + headers: { + 'Content-Type': 'application/json', + 'X-Tenant-ID': TENANT_ID, + }, +}); + + +// Request interceptor: adds Authorization header with Bearer token if available +httpClient.interceptors.request.use( + async (config) => { + console.log('Making request to:', config.url); + const token = await authService.getValidToken(); + console.log('Got token for request:', token ? 'token exists' : 'no token'); + if (token) { + config.headers.Authorization = `Bearer ${token}`; + console.log('Added Authorization header to request'); + } else { + console.log('No token available for request'); + } + return config; + }, + (error) => Promise.reject(error) +); + + +// Response interceptor: handles 401 errors by attempting token refresh and retrying the request +httpClient.interceptors.response.use( + (response) => response, + async (error) => { + console.log('HTTP Error:', error.response?.status, error.response?.statusText); + if (error.response?.status === 401) { + console.log('Received 401, attempting token refresh'); + try { + const refreshed = await authService.refreshAccessToken(); + console.log('Token refresh result:', refreshed); + if (refreshed) { + const newToken = await authService.getValidToken(); + console.log('Got new token for retry:', newToken ? 'token exists' : 'no token'); + if (newToken) { + error.config.headers.Authorization = `Bearer ${newToken}`; + console.log('Retrying request with new token'); + return httpClient.request(error.config); + } + } + } catch (refreshError) { + console.log('Token refresh failed:', refreshError); + authService.logout(); + window.location.reload(); // This will trigger the auth flow + } + } + return Promise.reject(error); + } +); + + +// Export the configured HTTP client for use throughout the app +export default httpClient; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/api/allApplicationApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/api/allApplicationApi.ts new file mode 100644 index 0000000..3891906 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/api/allApplicationApi.ts @@ -0,0 +1,148 @@ +// This file defines API endpoints for managing and querying property applications for service managers +import type { AllApplicationModel } from '../models/PropertyApplicationModel' +import { apiSlice } from '../../../../../store/apiSlice' +import { TAG_TYPES } from '../../../../../store/tagTypes' + +interface GetByWardNoRequest { + wardNo: string; + page?: number; + size?: number; +} +interface GetByZoneNoRequest { + zoneNo: string; + page?: number; + size?: number; +} +interface GetByDueDateRequest { + dueDateTo: string; + page?: number; + size?: number; +} +// Request type for fetching applications by ward number +interface GetAllApplicationsRequest { + page?: number; + size?: number; +// Request type for fetching applications by zone number +} +interface GetAllApplicationsResponse { + data: AllApplicationModel[]; +// Request type for fetching applications by due date + message: string; + pagination: { + page: number; + size: number; +// Request type for fetching all applications with pagination + totalItems: number; + totalPages: number; + }; + success: boolean; +} +interface UpdateApplicationPriorityRequest { + id: string; + priority: string; +} +interface UpdateApplicationPriorityResponse { + data: AllApplicationModel; +// Response type for fetching all applications, includes pagination info + message: string; + success: boolean; +} + +// Request type for updating the priority of an application + +interface GetApplicationByApplicationNoRequest { + applicationNo: string; + page?: number; + size?: number; +} + +// Response type for updating the priority of an application + +export const allApplicationApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ +// Request type for fetching an application by its application number + getAllApplications: builder.query({ +// Define endpoints for all application-related API calls using RTK Query + query: ({ page = 0, size = 10 } = {}) => { + const url = `/v1/applications?sortBy=DESC&page=${page}&size=${size}`; + // Fetch all applications with pagination + return { + url, + method: 'GET', + headers: { + 'X-User-Role': 'SERVICE_MANAGER', + }, + }; + }, + providesTags: [TAG_TYPES.APPLICATIONS, TAG_TYPES.AGENTS], + }), + getAllApplicationsByWard: builder.query({ + query: ({ wardNo, page=0, size=10 }) => ({ + url: `/v1/applications/search?isDraft=true&wardNo=${wardNo}&page=${page}&size=${size}`, + // Fetch all applications for a specific ward + method: 'GET', + headers: { + 'X-User-Role': 'SERVICE_MANAGER', + }, + }), + providesTags: [TAG_TYPES.APPLICATIONS], + }), + getAllApplicationsByZone: builder.query({ + query: ({ zoneNo, page=0, size=10 }) => ({ + url: `/v1/applications/search?isDraft=true&zoneNo=${zoneNo}&page=${page}&size=${size}`, + // Fetch all applications for a specific zone + method: 'GET', + headers: { + 'X-User-Role': 'SERVICE_MANAGER', + }, + }), + providesTags: [TAG_TYPES.APPLICATIONS], + }), + getAllApplicationsByDueDate: builder.query({ + query: ({ dueDateTo, page=0, size=10 }) => ({ + url: `/v1/applications/search?isDraft=true&dueDateTo=${dueDateTo}&page=${page}&size=${size}`, + // Fetch all applications due by a specific date + method: 'GET', + headers: { + 'X-User-Role': 'SERVICE_MANAGER', + }, + }), + providesTags: [TAG_TYPES.APPLICATIONS], + }), + getApplicationByApplicationNo: builder.query({ + query: ({ applicationNo, page=0, size=10 }) => ({ + url: `/v1/applications/search?isDraft=false&applicationNo=${applicationNo}&page=${page}&size=${size}`, + // Fetch an application by its application number + method: 'GET', + headers: { + 'X-User-Role': 'SERVICE_MANAGER', + }, + }), + providesTags: [TAG_TYPES.APPLICATIONS], + }), + updateApplicationPriority: builder.mutation({ + query: ({ id, priority }) => ({ + url: `/v1/applications/${id}`, + // Update the priority of a specific application + method: 'PUT', + body: { + "priority": `${priority}` + }, + headers: { + 'X-User-Role': 'SERVICE_MANAGER', + }, + }), + invalidatesTags: [TAG_TYPES.APPLICATIONS], + }), + }), +}) + +export const { + useGetAllApplicationsQuery, + useGetAllApplicationsByWardQuery, +// Export hooks for use in React components + useGetAllApplicationsByZoneQuery, + useGetAllApplicationsByDueDateQuery, + useGetApplicationByApplicationNoQuery, + useUpdateApplicationPriorityMutation +} = allApplicationApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/assets/pointer.svg b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/assets/pointer.svg new file mode 100644 index 0000000..50059a6 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/assets/pointer.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/assets/property_pointer_dark.svg b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/assets/property_pointer_dark.svg new file mode 100644 index 0000000..7d0889f --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/assets/property_pointer_dark.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/assets/property_pointer_light.svg b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/assets/property_pointer_light.svg new file mode 100644 index 0000000..4f4bde4 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/assets/property_pointer_light.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/AllApplications.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/AllApplications.tsx new file mode 100644 index 0000000..5541838 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/AllApplications.tsx @@ -0,0 +1,282 @@ +import React, { useState, useEffect, useRef, useMemo } from 'react'; +import { + Box, Typography, TextField, InputAdornment, MenuItem, + Select, FormControl, CircularProgress, Alert, Container, IconButton, +} from '@mui/material'; +import SearchIcon from '@mui/icons-material/Search'; +import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown'; +import { + useGetAllApplicationsByDueDateQuery, + useGetAllApplicationsByWardQuery, + useGetAllApplicationsByZoneQuery, + useGetAllApplicationsQuery, + useGetApplicationByApplicationNoQuery, +} from '../api/allApplicationApi'; +import { useGetAllAgentsQuery } from '../../service-manager-dashboard/api/dashboardAgentsApi'; +import { JurisdictionDropdown } from '../../../../components/JurisdictionDropdown/JurisdictionDropdown'; +import { FILTER_TYPES, DEFAULT_SORT_ORDER, DEBOUNCE_DELAY } from '../../../../../utils/constants'; +import { ApplicationsList } from './AllApplicationsList'; +import { parseISO, isValid } from 'date-fns'; // Using date-fns for reliable date parsing +import { skipToken } from '@reduxjs/toolkit/query'; +import { + applicationsContainer, filterDropdown, filterRow, headerSection, + loadingContainer, pageContainer, searchField, sortDropdown, subtitleText, titleText, +} from '../styles/AllApplicationStyle'; +import type { AllApplicationModel } from '../models/PropertyApplicationModel'; +import { jurisdictionDropdownStyles } from '../../../../styles/HomePageStyle/HomePageStyle'; +import { Pagination } from '@mui/material'; + +const AllApplications: React.FC = () => { + type FilterType = typeof FILTER_TYPES[keyof typeof FILTER_TYPES]; + + const [page, setPage] = useState(1); + const [size, ] = useState(5); + + const [filterBy, setFilterBy] = useState(FILTER_TYPES.APPLICATION_NO); + const [searchQuery, setSearchQuery] = useState(''); + const [sortOrder, setSortOrder] = useState(DEFAULT_SORT_ORDER); + const [displayedApplications, setDisplayedApplications] = useState([]); + const [searchActivated, setSearchActivated] = useState(false); + const [dateConversionError, setDateConversionError] = useState( + null + ); + const [listKey, setListKey] = useState(0); + const debounceRef = useRef(undefined); + + // Debounce search input to avoid excessive queries + useEffect(() => { + if (debounceRef.current) { + clearTimeout(debounceRef.current); + } + debounceRef.current = window.setTimeout(() => { + setSearchActivated(!!searchQuery); + }, DEBOUNCE_DELAY); + + return () => { + if (debounceRef.current) { + clearTimeout(debounceRef.current); + } + }; + }, [searchQuery]); + + // Convert to ISO format when searching by due date + const convertedDueDate = useMemo(() => { + if (filterBy === FILTER_TYPES.DUE_DATE && searchActivated && searchQuery) { + const parsedDate = parseISO(searchQuery); + if (isValid(parsedDate)) { + return parsedDate.toISOString(); + } + setDateConversionError('Invalid date format. Please use "YYYY-MM-DD".'); + return null; + } + return null; + }, [filterBy, searchActivated, searchQuery]); + + // Data fetching hooks for different filters + const { data: applications, isLoading, error } = useGetAllApplicationsQuery({ page: page - 1, size }); +const { data: applicationsByWard } = useGetAllApplicationsByWardQuery( + filterBy === FILTER_TYPES.WARD && searchActivated && searchQuery + ? { wardNo: searchQuery, page: page - 1, size } + : skipToken +); +const { data: applicationsByZone } = useGetAllApplicationsByZoneQuery( + filterBy === FILTER_TYPES.ZONE && searchActivated && searchQuery + ? { zoneNo: searchQuery, page: page - 1, size } + : skipToken +); +const { data: applicationsByDueDate} = useGetAllApplicationsByDueDateQuery( + filterBy === FILTER_TYPES.DUE_DATE && searchActivated && searchQuery && convertedDueDate + ? { dueDateTo: convertedDueDate, page: page - 1, size } + : skipToken +); +const { data: applicationByNo} = useGetApplicationByApplicationNoQuery( + filterBy === FILTER_TYPES.APPLICATION_NO && searchActivated && searchQuery + ? { applicationNo: searchQuery, page: page - 1, size } + : skipToken +); + + // Update displayed applications based on filter and search state + useEffect(() => { + let result: AllApplicationModel[] = []; + if (searchActivated) { + if (filterBy === FILTER_TYPES.APPLICATION_NO && applicationByNo?.data) { + result = applicationByNo.data; + } else if (filterBy === FILTER_TYPES.WARD && applicationsByWard?.data) { + result = applicationsByWard.data; + } else if (filterBy === FILTER_TYPES.ZONE && applicationsByZone?.data) { + result = applicationsByZone.data; + } else if ( + filterBy === FILTER_TYPES.DUE_DATE && + applicationsByDueDate?.data + ) { + result = applicationsByDueDate.data; + } + } else if (applications?.data) { + result = applications.data; + } + setDisplayedApplications(result); + }, [filterBy, searchActivated, applicationByNo, applicationsByWard, applicationsByZone, applicationsByDueDate, applications]); + + // Reset search and error state when filter type changes + useEffect(() => { + setSearchQuery(""); + setSearchActivated(false); + setDateConversionError(null); + }, [filterBy]); + + // Unmount and remount list when sortOrder changes to force re-render + useEffect(() => { + setListKey((prev) => prev + 1); + }, [sortOrder]); + + // Reset page to 1 when filter/search changes +useEffect(() => { + setPage(1); +}, [filterBy, searchQuery, searchActivated]); + + // Fetch agent data for application assignment + const { data: agentsData } = useGetAllAgentsQuery(); + + // Aggregate error state for display + const showError = error || dateConversionError; + + // Get pagination info from the correct data source + const pagination = + (searchActivated && filterBy === FILTER_TYPES.APPLICATION_NO && applicationByNo?.pagination) || + (searchActivated && filterBy === FILTER_TYPES.WARD && applicationsByWard?.pagination) || + (searchActivated && filterBy === FILTER_TYPES.ZONE && applicationsByZone?.pagination) || + (searchActivated && filterBy === FILTER_TYPES.DUE_DATE && applicationsByDueDate?.pagination) || + applications?.pagination; + + return ( + + + + + + + All Applications + + + Manage properties under enumeration and verification + + + + + + + setSearchQuery(e.target.value)} + sx={searchField} + InputProps={{ + endAdornment: ( + + setSearchActivated(true)} + edge="end" + sx={{ color: "#666" }} + disabled={!searchQuery} + aria-label="search applications" + > + + + + ), + }} + /> + + + + + + + {isLoading ? ( + + + + ) : showError ? ( + {dateConversionError || 'Failed to load applications'} + ) : displayedApplications.length === 0 ? ( + No applications found + ) : ( + <> + + {pagination && pagination.totalPages > 1 && ( + + setPage(value)} + showFirstButton + showLastButton + sx={{ + "& .MuiPaginationItem-root": { + color: "#c84c03", + borderColor: "#c84c03", + }, + "& .Mui-selected": { + backgroundColor: "#c84c03 !important", + color: "#fff !important", + borderColor: "#c84c03", + }, + "& .MuiPaginationItem-root:hover": { + backgroundColor: "#ffe3c2", + }, + }} + /> + + )} + + )} + + + ); +}; + +export default AllApplications; diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/AllApplicationsList.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/AllApplicationsList.tsx new file mode 100644 index 0000000..1a3499c --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/AllApplicationsList.tsx @@ -0,0 +1,40 @@ +import React, { memo, useMemo } from 'react'; +import { Virtuoso } from 'react-virtuoso'; +import { ApplicationCard } from './ApplicationCard'; +import ErrorBoundary from './ErrorBoundary'; +import type { AllApplicationModel } from '../models/PropertyApplicationModel'; + +export const ApplicationsList: React.FC<{ + applications: AllApplicationModel[]; + sortOrder: string; + agentsData: any; +}> = memo(({ applications, sortOrder, agentsData }) => { + const sortedApplications = useMemo(() => { + return applications + .slice() + .sort((a, b) => { + const dateA = new Date(a.DueDate).getTime(); + const dateB = new Date(b.DueDate).getTime(); + return sortOrder === 'New - Old' ? dateB - dateA : dateA - dateB; + }); + }, [applications, sortOrder]); + + return ( + ( + + + + )} + /> + ); +}); + +ApplicationsList.displayName = 'ApplicationsList'; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/ApplicationCard.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/ApplicationCard.tsx new file mode 100644 index 0000000..57c33b2 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/ApplicationCard.tsx @@ -0,0 +1,290 @@ +import React, { useMemo, useState } from 'react'; +import { + Box, + Typography, + Button, + Chip, +} from '@mui/material'; +import MapsHomeWorkOutlinedIcon from '@mui/icons-material/MapsHomeWorkOutlined'; +import DescriptionOutlinedIcon from '@mui/icons-material/DescriptionOutlined'; +import InfoOutlinedIcon from '@mui/icons-material/InfoOutlined'; +import type { AllApplicationModel } from '../models/PropertyApplicationModel'; +import { useNavigate } from 'react-router-dom'; +import { PriorityModal } from '../../priority-modal/components/PriorityModal'; +import { + cardContainer, + cardLeftSection, + cardRightSection, + propertyHeader, + propertyIcon, + propertyTitle, + propertyId, + infoIcon, + addressText, + tagsContainer, + tagChip, + actionsContainer, + priorityButton, + assignButton, + imagesSection, + mapBox, + coloredTagChip, +} from '../styles/ApplicationCardStyle'; +import { ApplicationInboxAssignmentModal } from '../../assign-agent-to-application/components/ApplicationInboxAssignmentModal'; +import { MapLibreMap } from './ApplicationCardMapComponent'; + + +interface ApplicationCardProps { + application: AllApplicationModel; + onSetPriority?: (id: string) => void; + agentsData?: { + data?: { + users?: Array<{ id: string; profile?: { fullName?: string }; username?: string }> + } + }; +} + + +export const ApplicationCard: React.FC = ({ + application, + onSetPriority, + agentsData, +}) => { + const [priorityModalOpen, setPriorityModalOpen] = useState(false); + const [selectedPriority, setSelectedPriority] = useState(application.Priority || "High"); + const [assignModalOpen, setAssignModalOpen] = useState(false); + const navigate = useNavigate(); + + const agentIdToName = useMemo(() => { + const map: Record = {}; + if (agentsData?.data?.users) { + agentsData.data.users.forEach(agent => { + map[agent.id] = agent.profile?.fullName || "N/A"; + }); + } + return map; + }, [agentsData]); + + const AgentName = application.AssignedAgent + ? agentIdToName[application.AssignedAgent] || 'Unassigned' + : 'Unassigned'; + + const isAssigned = AgentName !== 'Unassigned'; + + const handlePriorityConfirm = (newPriority: string) => { + setSelectedPriority(newPriority); + if (onSetPriority) onSetPriority(application.ID); + }; + + const getBGColorForPriority = (priority: string): string => { + switch (priority.toLowerCase()) { + case 'high': return '#F8D7DA'; + case 'medium': return '#FFF3CD'; + case 'low': return '#D1E7DD'; + default: return '#E2E3E5'; + } + }; + + const formatDate = (dateString: string): string => { + const date = new Date(dateString); + const formattedDate = date.toLocaleDateString('en-GB', { + day: '2-digit', + month: 'numeric', + year: 'numeric', + }); + return `Due: ` + formattedDate.replace(/\//g, '-'); + }; + + const getFullAddress = (): string => { + if (application.Property.Address) { + const addr = application.Property.Address; + const zoneNo = application.Property.Address.ZoneNo; + const parts = [addr.Street, addr.Locality, addr.WardNo, zoneNo].filter(Boolean); + return parts.length > 0 ? parts.join(' \u2022 ') : 'Address not available'; + } + return application.Property.ComplexName || 'Address not available'; + }; + + const DEFAULT_BANGALORE_LAT = 12.9141; + const DEFAULT_BANGALORE_LNG = 77.6387; + + const mapCoordinates = useMemo(() => { + const gisData = application.Property.GISData; + let lat = gisData?.Latitude ?? 0; + let lng = gisData?.Longitude ?? 0; + + if ((lat === 0 || lng === 0) && gisData?.Coordinates?.[0]) { + lat = gisData.Coordinates[0].Latitude ?? 0; + lng = gisData.Coordinates[0].Longitude ?? 0; + } + + const finalLat = lat !== 0 && !isNaN(lat) && isFinite(lat) ? lat : DEFAULT_BANGALORE_LAT; + const finalLng = lng !== 0 && !isNaN(lng) && isFinite(lng) ? lng : DEFAULT_BANGALORE_LNG; + + return { lat: finalLat, lng: finalLng }; + }, [application.Property.GISData]); + + const handlePropertyCardClick = (applicationID: string) => { + navigate(`/service-manager/property-details/${applicationID}`); + }; + + const getStatusColor = (status: string): { bgColor: string; textColor: string; borderColor: string } => { + switch (status.toLowerCase()) { + case 'assigned': + return { bgColor: '#FFF3CD', textColor: '#856404', borderColor: '#FFC107' }; + case 'verified': + return { bgColor: '#D1E7DD', textColor: '#0F5132', borderColor: '#4CAF50' }; + case 'audit_verified': + return { bgColor: '#D1ECF1', textColor: '#0C5460', borderColor: '#2196F3' }; + case 'rejected': + return { bgColor: '#F8D7DA', textColor: '#721C24', borderColor: '#F44336' }; + case 'approved': + return { bgColor: '#D1E7DD', textColor: '#0F5132', borderColor: '#4CAF50' }; + case 'initiated': + return { bgColor: '#E2E3E5', textColor: '#383D41', borderColor: '#9E9E9E' }; + default: + return { bgColor: '#E2E3E5', textColor: '#383D41', borderColor: '#9E9E9E' }; + } + }; + + let applicationStatus = application.Status || ''; + if (applicationStatus.toLowerCase() === 'assigned') { + applicationStatus = 'Assigned'; + } else if (applicationStatus.toLowerCase() === 'verified') { + applicationStatus = 'Verified'; + } else if (applicationStatus.toLowerCase() === 'audit_verified') { + applicationStatus = 'Audit Verified'; + } else if (applicationStatus.toLowerCase() === 'rejected') { + applicationStatus = 'Rejected'; + } else if (applicationStatus.toLowerCase() === 'approved') { + applicationStatus = 'Approved'; + } else if (applicationStatus.toLowerCase() === 'initiated') { + applicationStatus = 'Initiated'; + } + + const statusColors = getStatusColor(application.Status || ''); + + return ( + + handlePropertyCardClick(application.ID)}> + + + + + + {application.Property.ComplexName || 'N/A'} + + + + + + {application.ApplicationNo} + + + {getFullAddress()} + + + } + label={application.Property.PropertyType} + sx={tagChip} + /> + } + label={application.Property.OwnershipType} + sx={tagChip} + /> + + + + + + + + + + + + {isAssigned ? ( + + ) : ( + + )} + + + + + + + + + + setPriorityModalOpen(false)} + onConfirm={handlePriorityConfirm} + defaultValue={selectedPriority} + /> + setAssignModalOpen(false)} + isAssigned={isAssigned} + /> + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/ApplicationCardMapComponent.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/ApplicationCardMapComponent.tsx new file mode 100644 index 0000000..bb7459f --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/ApplicationCardMapComponent.tsx @@ -0,0 +1,150 @@ +import React, { useEffect, useRef, useState } from 'react'; +import maplibregl from 'maplibre-gl'; +import 'maplibre-gl/dist/maplibre-gl.css'; +import { Box, CircularProgress } from '@mui/material'; + +interface MapLibreMapProps { + latitude: number; + longitude: number; + width?: string; + height?: string; + borderRadius?: string; + zoom?: number; +} + +export const MapLibreMap: React.FC = ({ + latitude, + longitude, + width = '96px', + height = '74px', + borderRadius = '8px', + zoom = 24, +}) => { + const containerRef = useRef(null); + const mapInstanceRef = useRef(null); + const markerRef = useRef(null); // Added marker ref + const [isLoaded, setIsLoaded] = useState(false); + const [isInView, setIsInView] = useState(false); + + // Intersection Observer to detect when the map is in the viewport + useEffect(() => { + if (!containerRef.current) return; + + const observer = new IntersectionObserver( + (entries) => { + entries.forEach((entry) => { + if (entry.isIntersecting) { + setIsInView(true); + } + }); + }, + { threshold: 0.1 } + ); + + observer.observe(containerRef.current); + + return () => { + observer.disconnect(); + }; + }, []); + + // Initialize the map when it is in view + useEffect(() => { + if (!containerRef.current || !isInView || mapInstanceRef.current) return; + + const mapInstance = new maplibregl.Map({ + container: containerRef.current!, + center: [longitude, latitude], + zoom: zoom, + interactive: false, + attributionControl: false, + style: { + version: 8, + sources: { + 'raster-tiles': { + type: 'raster', + tiles: ['https://tile.openstreetmap.org/{z}/{x}/{y}.png'], + tileSize: 256, + attribution: '© OpenStreetMap contributors', + }, + }, + layers: [ + { + id: 'simple-tiles', + type: 'raster', + source: 'raster-tiles', + minzoom: 0, + maxzoom: 24, + }, + ], + }, + }); + + mapInstanceRef.current = mapInstance; + + mapInstance.on('load', () => { + // Add marker when map loads + const marker = new maplibregl.Marker({ + color: '#000000', // Black marker (you can customize the color) + scale: 0.65, + }) + .setLngLat([longitude, latitude]) + .addTo(mapInstance); + + markerRef.current = marker; + setIsLoaded(true); + }); + + return () => { + // Clean up marker + if (markerRef.current) { + markerRef.current.remove(); + markerRef.current = null; + } + // Clean up map + if (mapInstanceRef.current) { + mapInstanceRef.current.remove(); + mapInstanceRef.current = null; + } + }; + }, [isInView, latitude, longitude, zoom]); + + // Update marker position when coordinates change + useEffect(() => { + if (mapInstanceRef.current && markerRef.current) { + mapInstanceRef.current.setCenter([longitude, latitude]); + markerRef.current.setLngLat([longitude, latitude]); + } + }, [latitude, longitude]); + + return ( + +
+ {!isLoaded && ( + + + + )} + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/ErrorBoundary.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/ErrorBoundary.tsx new file mode 100644 index 0000000..d80ff72 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/components/ErrorBoundary.tsx @@ -0,0 +1,108 @@ + +// ErrorBoundary is a React class component that catches JavaScript errors in its child component tree +// and displays a fallback UI instead of crashing the whole app. +import React, { Component, type ReactNode } from 'react'; +import { Box, Typography, Button } from '@mui/material'; + + +// Props for ErrorBoundary: +// - children: React nodes to render inside the boundary +// - fallback: Optional custom fallback UI to display on error +interface ErrorBoundaryProps { + children: ReactNode; + fallback?: ReactNode; +} + + +// State for ErrorBoundary: +// - hasError: Whether an error has been caught +// - error: The error object, if any +interface ErrorBoundaryState { + hasError: boolean; + error: Error | null; +} + + +// ErrorBoundary class component implementation +class ErrorBoundary extends Component { + constructor(props: ErrorBoundaryProps) { + super(props); + // Initialize state + this.state = { + hasError: false, + error: null + }; + } + + + // Update state so the next render will show the fallback UI + static getDerivedStateFromError(error: Error): ErrorBoundaryState { + return { + hasError: true, + error + }; + } + + + // Log error details for debugging or reporting + componentDidCatch(error: Error, info: React.ErrorInfo) { + console.error('Error caught by ErrorBoundary:', error); + console.error('Component Stack:', info.componentStack); + // Optional: Log to an error reporting service + // logErrorToMyService(error, info.componentStack); + } + + + // Reset error state to allow retrying rendering + handleReset = () => { + this.setState({ hasError: false, error: null }); + }; + + + render() { + if (this.state.hasError) { + // Render custom fallback UI if provided + if (this.props.fallback) { + return this.props.fallback; + } + + // Default fallback UI for errors + return ( + + + Something went wrong + + + {this.state.error?.message || 'An unexpected error occurred'} + + + + ); + } + + // Render children if no error + return this.props.children; + } +} + +export default ErrorBoundary; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/models/PropertyApplicationModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/models/PropertyApplicationModel.ts new file mode 100644 index 0000000..ab7af8c --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/models/PropertyApplicationModel.ts @@ -0,0 +1,195 @@ +// ---------- Utility ---------- +export interface Location { + lat: number; + lng: number; +} + +// ---------- Address ---------- +export interface PropertyAddress { + ID: string; + Locality: string; + ZoneNo: string; + WardNo: string; + BlockNo: string; + Street: string; + ElectionWard: string; + SecretariatWard: string; + PinCode: number; + DifferentCorrespondenceAddress: boolean; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; + CorrespondenceAddress1: string; + CorrespondenceAddress2: string; + CorrespondenceAddress3: string; +} + +// ---------- Assessment ---------- +export interface AssessmentDetails { + ID: string; + ReasonOfCreation: string; + OccupancyCertificateNumber: string; + OccupancyCertificateDate: string; + ExtentOfSite: string; + IsLandUnderneathBuilding: string; + IsUnspecifiedShare: boolean; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; +} + +// ---------- Amenities (MATCHES API STRUCTURE) ---------- +export interface Amenities { + ID: string; + type: string[]; // Array of strings like ["Lift", "Electricity"] + Description: string; + ExpiryDate: string | null; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; +} + +// ---------- Construction / Floors ---------- +// Represents details of a single floor in a property +export interface FloorDetail { + ID: string; + FloorNo: number; + Classification: string; + NatureOfUsage: string; + FirmName: string; + OccupancyType: string; + OccupancyName: string; + constructionDate: string; + effectiveFromDate: string; + UnstructuredLand: string; + LengthFt: number; + BreadthFt: number; + PlinthAreaSqFt: number; + BuildingPermissionNo: string; + FloorDetailsEntered: boolean; + ConstructionDetailsID: string; + CreatedAt: string; + UpdatedAt: string; +} + +// Represents construction details for a property, including all floors +export interface ConstructionDetails { + ID: string; + FloorType: string; + WallType: string; + RoofType: string; + WoodType: string; + PropertyID: string; + FloorDetails: FloorDetail[]; + CreatedAt: string; + UpdatedAt: string; +} + +// ---------- Additional Details ---------- +export interface AdditionalDetails { + ID: string; + FieldName: string; + fieldValue: { + DocumentType?: number; + revenueDocumentNo?: number; + serialNo?: number; + [key: string]: any; + }; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; +} + +// ---------- GIS ---------- +export interface Coordinate { + ID: string; + Latitude: number; + Longitude: number; + GISDataID: string; + CreatedAt: string; +} + +export interface GISData { + ID: string; + Source: string; + Type: string; + EntityType: string; + PropertyID: string; + Latitude: number; + Longitude: number; + Coordinates: Coordinate[]; + CreatedAt: string; + UpdatedAt: string; +} + +// ---------- Documents ---------- +export interface PropertyDocument { + ID: string; + PropertyID: string; + DocumentType: string; + DocumentName: string; + FileStoreID: string; + UploadDate: string; + action: string; +} + +// ---------- IGRS ---------- +export interface IGRS { + id: string; + habitation: string; + igrsWard: string; + igrsLocality: string; + igrsBlock: string; + doorNoFrom: string; + doorNoTo: string; + igrsClassification: string; + builtUpAreaPct: number; + frontSetback: number; + rearSetback: number; + sideSetback: number; + totalPlinthArea: number; + createdAt: string; + updatedAt: string; + PropertyID: string; +} + +// ---------- Property ---------- +export interface PropertyDetails { + ID: string; + PropertyNo: string; + OwnershipType: string; + PropertyType: string; + ComplexName: string; + Address: PropertyAddress; + AssessmentDetails: AssessmentDetails; + Amenities: Amenities; // Single object, not array! + ConstructionDetails: ConstructionDetails; + AdditionalDetails: AdditionalDetails; + GISData: GISData; + CreatedAt: string; + UpdatedAt: string; + Documents: PropertyDocument[]; + IGRS: IGRS; +} + +// ---------- Application ---------- +export interface AllApplicationModel { + ID: string; + ApplicationNo: string; + PropertyID: string; + Priority: string; + TenantID: string; + DueDate: string; + AssignedAgent: string | null; + Status: string; + WorkflowInstanceID: string; + AppliedBy: string; + AssesseeID: string | null; + Property: PropertyDetails; + ApplicationLogs: any[] | null; + IsDraft: boolean; + CreatedAt: string; + UpdatedAt: string; + AgentName?: string; + AgentUsername?: string; +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/services/AllApplicationsService.ts b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/services/AllApplicationsService.ts new file mode 100644 index 0000000..cbfc496 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/services/AllApplicationsService.ts @@ -0,0 +1,228 @@ +// import { ApplicationModel } from '../models/PropertyApplicationModel'; + +// const BASE_URL = 'http://localhost:3002'; + +// export class AllApplicationsService { +// /** +// * Fetch all applications from json-server +// */ +// static async getAllApplications(): Promise { +// try { +// const response = await fetch(`${BASE_URL}/allApplications`); +// console.log('Response:', response); +// if (!response.ok) { +// throw new Error(`HTTP error! status: ${response.status}`); +// } + +// const data = await response.json(); +// return data.map((app: any) => new ApplicationModel(app)); +// } catch (error) { +// console.error('Error fetching all applications:', error); +// throw error; +// } +// } + +// /** +// * Fetch a single application by ID +// */ +// static async getApplicationById(id: string): Promise { +// try { +// const response = await fetch(`${BASE_URL}/allApplications/${id}`); + +// if (!response.ok) { +// if (response.status === 404) { +// return null; +// } +// throw new Error(`HTTP error! status: ${response.status}`); +// } + +// const data = await response.json(); +// return new ApplicationModel(data); +// } catch (error) { +// console.error(`Error fetching application ${id}:`, error); +// throw error; +// } +// } + +// /** +// * Search applications by property name +// */ +// static async searchApplications(searchTerm: string): Promise { +// try { +// const response = await fetch( +// `${BASE_URL}/allApplications?propertyName_like=${encodeURIComponent(searchTerm)}` +// ); + +// if (!response.ok) { +// throw new Error(`HTTP error! status: ${response.status}`); +// } + +// const data = await response.json(); +// return data.map((app: any) => new ApplicationModel(app)); +// } catch (error) { +// console.error('Error searching applications:', error); +// throw error; +// } +// } + +// /** +// * Filter applications by status +// */ +// static async filterByStatus(status: string): Promise { +// try { +// const response = await fetch( +// `${BASE_URL}/allApplications?status=${encodeURIComponent(status)}` +// ); + +// if (!response.ok) { +// throw new Error(`HTTP error! status: ${response.status}`); +// } + +// const data = await response.json(); +// return data.map((app: any) => new ApplicationModel(app)); +// } catch (error) { +// console.error('Error filtering applications by status:', error); +// throw error; +// } +// } + +// /** +// * Sort applications (newest to oldest or vice versa) +// */ +// static async getSortedApplications(order: 'asc' | 'desc' = 'desc'): Promise { +// try { +// const response = await fetch( +// `${BASE_URL}/allApplications?_sort=date&_order=${order}` +// ); + +// if (!response.ok) { +// throw new Error(`HTTP error! status: ${response.status}`); +// } + +// const data = await response.json(); +// return data.map((app: any) => new ApplicationModel(app)); +// } catch (error) { +// console.error('Error sorting applications:', error); +// throw error; +// } +// } + +// /** +// * Paginate applications +// */ +// static async getPaginatedApplications( +// page: number = 1, +// limit: number = 10 +// ): Promise<{ applications: ApplicationModel[]; total: number }> { +// try { +// const response = await fetch( +// `${BASE_URL}/allApplications?_page=${page}&_limit=${limit}` +// ); + +// if (!response.ok) { +// throw new Error(`HTTP error! status: ${response.status}`); +// } + +// const data = await response.json(); +// const total = parseInt(response.headers.get('X-Total-Count') || '0', 10); + +// return { +// applications: data.map((app: any) => new ApplicationModel(app)), +// total, +// }; +// } catch (error) { +// console.error('Error fetching paginated applications:', error); +// throw error; +// } +// } + +// /** +// * Update application (e.g., assign agent, change priority) +// */ +// static async updateApplication( +// id: string, +// updates: Partial +// ): Promise { +// try { +// const response = await fetch(`${BASE_URL}/allApplications/${id}`, { +// method: 'PATCH', +// headers: { +// 'Content-Type': 'application/json', +// }, +// body: JSON.stringify(updates), +// }); + +// if (!response.ok) { +// throw new Error(`HTTP error! status: ${response.status}`); +// } + +// const data = await response.json(); +// return new ApplicationModel(data); +// } catch (error) { +// console.error(`Error updating application ${id}:`, error); +// throw error; +// } +// } + +// /** +// * Delete application +// */ +// static async deleteApplication(id: string): Promise { +// try { +// const response = await fetch(`${BASE_URL}/allApplications/${id}`, { +// method: 'DELETE', +// }); + +// if (!response.ok) { +// throw new Error(`HTTP error! status: ${response.status}`); +// } + +// return true; +// } catch (error) { +// console.error(`Error deleting application ${id}:`, error); +// throw error; +// } +// } + +// /** +// * Get applications by zone +// */ +// static async getApplicationsByZone(zone: string): Promise { +// try { +// const response = await fetch( +// `${BASE_URL}/allApplications?fullAddress_like=${encodeURIComponent(zone)}` +// ); + +// if (!response.ok) { +// throw new Error(`HTTP error! status: ${response.status}`); +// } + +// const data = await response.json(); +// return data.map((app: any) => new ApplicationModel(app)); +// } catch (error) { +// console.error('Error fetching applications by zone:', error); +// throw error; +// } +// } + +// /** +// * Get overdue applications +// */ +// static async getOverdueApplications(): Promise { +// try { +// const response = await fetch( +// `${BASE_URL}/allApplications?status=Due` +// ); + +// if (!response.ok) { +// throw new Error(`HTTP error! status: ${response.status}`); +// } + +// const data = await response.json(); +// return data.map((app: any) => new ApplicationModel(app)); +// } catch (error) { +// console.error('Error fetching overdue applications:', error); +// throw error; +// } +// } +// } \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/services/ApplicationApiService.ts b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/services/ApplicationApiService.ts new file mode 100644 index 0000000..e69de29 diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/styles/AllApplicationStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/styles/AllApplicationStyle.ts new file mode 100644 index 0000000..32698c1 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/styles/AllApplicationStyle.ts @@ -0,0 +1,111 @@ +// Style objects for the All Applications page in the Service Manager module +// These styles control the layout, appearance, and UI elements for the applications list and filters + +export const pageContainer = { + pt: 3 , + width: '80vw', // Main container width + // overflowX: 'none', +}; + +// Styles for the header section (title, subtitle) +export const headerSection = { + mb: 3, +}; + +// Styles for the main page title +export const titleText = { + fontWeight: 600, + mb: 0.5, + fontFamily: 'Roboto, sans-serif', + fontSize: '32px', + color: '#1a1a1a', +}; + +// Styles for the subtitle text +export const subtitleText = { + fontFamily: 'Roboto, sans-serif', + fontSize: '16px', + color: '#666', + fontWeight: 400, +}; + +// Styles for the row containing filters, sort, and search +export const filterRow = { + display: 'flex', + gap: 2, + mb: 3, + alignItems: 'center', + height: '40px', // Fixed height for filter row +}; + +// Styles for the filter dropdown +export const filterDropdown = { + minWidth: '160px', + height: '40px', // Match the filterRow height +}; + +// Styles for the sort dropdown +export const sortDropdown = { + minWidth: '140px', + height: '40px', // Match the filterRow height +}; + +// Styles for the search field input +export const searchField = { + flexGrow: 1, + bgcolor: '#fff', + borderRadius: '24px', + height: '40px', // Explicit height for search field + '& .MuiOutlinedInput-root': { + borderRadius: '24px', + height: '40px', // Match the container height + fontFamily: 'Roboto, sans-serif', + '& fieldset': { + border: '1px solid #e0e0e0', + }, + '&:hover fieldset': { + border: '1px solid #999', + }, + '&.Mui-focused fieldset': { + border: '1px solid #C84C0E', + }, + }, + '& .MuiOutlinedInput-input': { + padding: '8px 14px', // Padding for input + fontSize: '14px', // Input font size + }, +}; + +// Styles for the container holding the list of applications +export const applicationsContainer = { + display: 'flex', + flexDirection: 'column', + bgcolor: '#fff', + borderRadius: '8px', + height: '85%', + overflowY: 'auto', + // mb: 3, + pl: 3, + pr: 2, + py: 3, + gap: 1, + '&::-webkit-scrollbar': { + width: '6px', + background: 'transparent', + }, + '&::-webkit-scrollbar-thumb': { + background: '#c84c03', + borderRadius: '10px', + }, + '&::-webkit-scrollbar-button': { + display: 'none', + }, +}; + +// Styles for the loading spinner/container +export const loadingContainer = { + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + minHeight: '80%', +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/styles/ApplicationCardStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/styles/ApplicationCardStyle.ts new file mode 100644 index 0000000..ab7de16 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/styles/ApplicationCardStyle.ts @@ -0,0 +1,204 @@ +// Style objects for the Application Card component in the All Applications page +// These styles control the layout, appearance, and UI elements for each property application card + +// Main container for the application card +export const cardContainer = { + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', + bgcolor: '#fff', + borderRadius: '20px', + p: 1, + boxShadow: 'none', + border: '1.5px solid #e3e3e3', + m: 0.7, + minHeight: '135px', +}; + +// Left section of the card (property info) +export const cardLeftSection = { + flex: 1, + display: 'flex', + flexDirection: 'column', + minWidth: 0, +}; + +// Header row for property title and icon +export const propertyHeader = { + display: 'flex', + alignItems: 'flex-start', + gap: 1.5, + // mb: 1, +}; + +// Icon for the property +export const propertyIcon = { + fontSize: 27, + color: '#2D2D2D', + mt: '4px', +}; + +// Title text for the property +export const propertyTitle = { + fontFamily: 'Roboto, sans-serif', + fontSize: '20px', + fontWeight: 700, + color: '#505050', + lineHeight: 1.1, +}; + +// Property ID text +export const propertyId = { + fontFamily: 'Roboto, sans-serif', + fontSize: '16px', + color: '#555', + fontWeight: 400, + mt: '2px', + letterSpacing: 0.2, +}; + + + +// Info icon style +export const infoIcon = { + fontSize: 18, + color: '#999', + cursor: 'pointer', + mt: '-3px', +}; + +// Address text style +export const addressText = { + fontFamily: 'Roboto, sans-serif', + fontSize: '16px', + color: '#222', + fontWeight: 600, + mt: 1, + mb: 1, + letterSpacing: 0.15, +}; + +// Container for tag chips +export const tagsContainer = { + display: 'flex', + gap: 0.7, + flexWrap: 'wrap', +}; + +// Colored tag chip style (function for dynamic color) +export const coloredTagChip = (color:string) => ({ + bgcolor: color, + // border: '1.5px solid #222', + fontSize: '10px', + height: '22px', + borderRadius: '20px', + fontFamily: 'Roboto, sans-serif', + color: '#222', + fontWeight: 500, + // px: 1, + // mr: 0.5, + boxShadow: 'none', + '& .MuiChip-icon': { + fontSize: 14, + color: '#222', + ml: 0.7, + }, +}); + +// Default tag chip style +export const tagChip = { + bgcolor: '#fff', + border: '1.5px solid #222', + fontSize: '10px', + height: '22px', + borderRadius: '20px', + fontFamily: 'Roboto, sans-serif', + color: '#222', + fontWeight: 500, + // px: 1, + // mr: 0.5, + boxShadow: 'none', + '& .MuiChip-icon': { + fontSize: 14, + color: '#222', + ml: 0.7, + }, +}; + +// Right section of the card (actions, images, map) +export const cardRightSection = { + display: 'flex', + flexDirection: 'column', + alignItems: 'flex-end', + justifyContent: 'center', + minWidth: '300px', +}; + +// Container for action buttons +export const actionsContainer = { + display: 'flex', + gap: 1, + mb: 1, + justifyContent: 'flex-end', +}; + +// Style for the priority button (function for dynamic priority) +export const priorityButton = (applicationPriority: string) => ({ + borderRadius: '10px', + textTransform: 'none', + fontFamily: 'Roboto, sans-serif', + fontSize: '12px', + fontWeight: 500, + px: 2.2, + height: '30px', + border: '2px solid #0B4B66', + color: (!applicationPriority || applicationPriority === '' || applicationPriority === null) ? '#0B4B66' : `#fff`, + backgroundColor: (!applicationPriority || applicationPriority === '' || applicationPriority === null) ? '#fff' : `#0B4B66`, + borderWidth: '2px', +}); + +// Style for the assign button +export const assignButton = { + borderRadius: '10px', + textTransform: 'none', + fontFamily: 'Roboto, sans-serif', + fontSize: '12px', + fontWeight: 500, + px: 2.2, + height: '30px', + bgcolor: '#C84C0E', + color: '#fff', + border: 'none', +}; + +// Section for images in the card +export const imagesSection = { + display: 'flex', + gap: 2, + mt: '2px', +}; + +// Style for each image box +export const imageBox = { + width: '86px', + height: '64px', + borderRadius: '10px', + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + bgcolor: '#F7F7F7', + boxShadow: 'none', +}; + +// Style for the map box in the card +export const mapBox = { + width: '86px', + height: '64px', + borderRadius: '10px', + overflow: 'hidden', + border: 'none', + bgcolor: '#F7F7F7', + display: 'flex', + alignItems: 'center', + justifyContent: 'center', +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/styles/Marker.css b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/styles/Marker.css new file mode 100644 index 0000000..c0400a2 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/all-applications/styles/Marker.css @@ -0,0 +1,23 @@ +/* Marker.css - Styles for custom map markers in the All Applications page + These styles control the appearance and layout of custom Leaflet/Map marker icons */ + +/* Remove background and border for custom Leaflet marker icons */ +.leaflet-marker-icon.custom-marker-icon { + background: transparent; + border: none; +} + +/* Flexbox layout for custom marker icon container */ +.custom-marker-icon { + display: flex; + align-items: center; + justify-content: center; + width: 32px; + height: 32px; +} + +/* Add drop shadow to SVG icons and prevent pointer events */ +.custom-marker-icon svg { + filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3)); + pointer-events: none; +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/api/getAllAgentsApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/api/getAllAgentsApi.ts new file mode 100644 index 0000000..e718912 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/api/getAllAgentsApi.ts @@ -0,0 +1,22 @@ + +// This file defines an API slice for fetching all agent users from the backend +import { onboardingApiSlice } from '../../../../../store/onboardingApiSlice' +import type { GetAgentsResponse } from '../models/agentModel'; + + + +// Injects the getAllAgents endpoint into the onboardingApiSlice +export const allAgentsApi = onboardingApiSlice.injectEndpoints({ + endpoints: (builder) => ({ + // Fetch all users with the AGENT role + getAllAgents: builder.query({ + query: () => ({ + url: `/api/v1/users?role=AGENT`, + method: 'GET', + }), + }), + }), +}); + +// Export the hook for use in React components +export const { useGetAllAgentsQuery } = allAgentsApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/api/getAllApplicationsApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/api/getAllApplicationsApi.ts new file mode 100644 index 0000000..ae3d28f --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/api/getAllApplicationsApi.ts @@ -0,0 +1,57 @@ +/** + * API slice for managing application inbox-related endpoints for the Service Manager. + * Provides endpoints to fetch all applications and applications under a specific jurisdiction (zone/ward), + * with support for pagination and cache management using RTK Query. + */ +import { apiSlice } from '../../../../../store/apiSlice' +import { TAG_TYPES } from '../../../../../store/tagTypes' +import type { + GetAllApplicationsResponse, + // GetAllApplicationsRequest +} from '../models/getAllApplicationsModel' + +// Extend the base API slice with endpoints related to the application inbox +export const applicationInboxApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + // getAllApplicationsInbox: builder.query({ + // query: ({ page = 0, size = 20 } = {}) => ({ + // url: `/v1/applications?page=${page}&size=${size}`, + // method: 'GET', + // headers: { + // 'X-User-Role': 'SERVICE_MANAGER', + // }, + // }), + // providesTags: [TAG_TYPES.APPLICATIONS], + // }), + + getAllApplicationsUnderJurisdiction: builder.query< + GetAllApplicationsResponse, + { zoneNo: string; wardNos: string[]; page?: number; size?: number; status?: string; priority?: string; assignedAgent?: string; applicationNo?: string } +>({ + query: ({ page = 0, size = 20, zoneNo, wardNos, status, priority, assignedAgent, applicationNo }) => { + const zoneParam = `zoneNo=${encodeURIComponent(zoneNo)}`; + const wardParams = wardNos.map(w => `wardNo=${encodeURIComponent(w)}`).join('&'); + const statusParam = status ? `status=${encodeURIComponent(status)}` : ''; + const priorityParam = priority ? `priority=${encodeURIComponent(priority)}` : ''; + const agentParam = assignedAgent ? `assignedAgent=${encodeURIComponent(assignedAgent)}` : ''; + const applicationNoParam = applicationNo ? `applicationNo=${encodeURIComponent(applicationNo)}` : ''; + const url = `/v1/applications/search?${zoneParam}&${wardParams}&${statusParam}&status=VERIFIED&${priorityParam}&${agentParam}&${applicationNoParam}&page=${page}&size=${size}`; + console.log('Built jurisdiction query for applications:', url); + return { + url, + method: 'GET', + headers: { + 'X-User-Role': 'SERVICE_MANAGER', + }, + }; + }, + providesTags: [TAG_TYPES.APPLICATIONS], +}), + }), +}) + +// Export hooks generated by RTK Query for use in components +export const { + // useGetAllApplicationsInboxQuery, + useGetAllApplicationsUnderJurisdictionQuery +} = applicationInboxApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/api/getAndReassignAgentApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/api/getAndReassignAgentApi.ts new file mode 100644 index 0000000..bfcab8d --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/api/getAndReassignAgentApi.ts @@ -0,0 +1,69 @@ + +/** + * This file defines API slices for managing agent-related operations in the Service Manager's application inbox. + * Includes endpoints for fetching agents by ward, fetching agent details by ID, and reassigning applications to agents. + * Utilizes RTK Query for efficient data fetching and cache management. + */ +import { onboardingApiSlice } from '../../../../../store/onboardingApiSlice' +import {apiSlice} from '../../../../../store/apiSlice'; +import { TAG_TYPES } from '../../../../../store/tagTypes'; + +import type { + GetAgentByIdResponse, + GetAgentsByWardResponse, + ReassignApplicationResponse, +} from '../models/getAndReassignAgentModel'; + +// API slice for agent fetching operations +export const agentsApi = onboardingApiSlice.injectEndpoints({ + endpoints: (builder) => ({ + /** + * Fetches a list of active agents for a specific ward. + * Limits the result to 20 agents, starting from offset 0. + */ + getAgents: builder.query({ + query: ({ ward }) => ({ + url: `/api/v1/users?role=AGENT&isActive=true&ward=${ward}&limit=20&offset=0`, + method: 'GET', + }), + }), + /** + * Fetches details of a single agent by their unique ID. + */ + getAgentById: builder.query({ + query: (id) => ({ + url: `/api/v1/users/${id}`, + method: 'GET', + }), + }), + }), +}); + +// Export hooks for fetching agents and agent details +export const { useGetAgentsQuery, useGetAgentByIdQuery } = agentsApi; + +// API slice for reassigning applications +export const reassignApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + /** + * Reassigns an application to a different agent. + * Sends a PATCH request with the new agent ID and comments explaining the reassignment. + * Invalidates the APPLICATIONS tag to ensure data is refreshed. + */ + reassignApplication: builder.mutation({ + query: ({ applicationId, agentId, comments}) => ({ + url: `/v1/applications/${applicationId}`, + method: 'PATCH', + body: { + action: "re-assign", + agentId, + comments, + }, + }), + invalidatesTags: [TAG_TYPES.APPLICATIONS] + }), + }), +}); + +// Export hook for reassigning applications +export const { useReassignApplicationMutation } = reassignApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/api/searchAndFilterApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/api/searchAndFilterApi.ts new file mode 100644 index 0000000..6f048db --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/api/searchAndFilterApi.ts @@ -0,0 +1,65 @@ + +// /** +// * This file provides an API slice for searching and filtering applications in the Service Manager's inbox. +// * It defines a query endpoint that allows filtering by various parameters such as priority, zone, agent, status, property, applicant, and application number. +// * Uses RTK Query for efficient data fetching and cache management. +// */ +// import { apiSlice } from '../../../../../store/apiSlice' +// import { TAG_TYPES } from '../../../../../store/tagTypes' +// import type { GetAllApplicationsResponse } from '../models/getAllApplicationsModel'; + + +// // Defines the possible search and filter parameters for applications +// interface ApplicationSearchParams { +// priority?: string; +// zoneNo?: string; +// assignedAgent?: string; +// status?: string; +// propertyId?: string; +// appliedBy?: string; +// applicationNo?: string; +// page?: number; +// size?: number; +// } + + +// export const allApplicationApi = apiSlice.injectEndpoints({ +// endpoints: (builder) => ({ +// /** +// * Fetches filtered applications based on provided search parameters. +// * Dynamically builds the query string from the given filters. +// * Adds a custom header to indicate the user role. +// */ +// getFilteredApplications: builder.query({ +// query: (params) => { +// // Build query parameters from the provided filters +// const queryParams = new URLSearchParams(); +// if (params.priority) queryParams.append('priority', params.priority); +// if (params.zoneNo) queryParams.append('zoneNo', params.zoneNo); +// if (params.assignedAgent) queryParams.append('assignedAgent', params.assignedAgent); +// if (params.status) queryParams.append('status', params.status); +// if (params.propertyId) queryParams.append('propertyId', params.propertyId); +// if (params.appliedBy) queryParams.append('appliedBy', params.appliedBy); +// if (params.applicationNo) queryParams.append('applicationNo', params.applicationNo); +// if (params.page !== undefined) queryParams.append('page', params.page.toString()); +// if (params.size !== undefined) queryParams.append('size', params.size.toString()); +// // Return the API request configuration +// return { +// url: `/v1/applications/search?${queryParams.toString()}`, +// method: 'GET', +// headers: { +// 'X-User-Role': 'SERVICE_MANAGER', +// }, +// }; +// }, +// // Provides a tag for cache management and refetching +// providesTags: [TAG_TYPES.APPLICATIONS], +// }), +// }), +// }) + + +// // Export the hook for fetching filtered applications +// export const { +// useGetFilteredApplicationsQuery, +// } = allApplicationApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/AlertComponent/AlertComponent.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/AlertComponent/AlertComponent.tsx new file mode 100644 index 0000000..4918e6e --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/AlertComponent/AlertComponent.tsx @@ -0,0 +1,29 @@ + +/** + * This component displays an informational alert message using Material-UI's Alert component. + * It is typically used to show status or feedback messages, such as when no data is found. + */ +import React from "react"; +import { Alert } from "@mui/material"; + + +// Props for the AlertMessage component +interface AlertMessageProps { + message?: string; // The message to display in the alert + sx?: object; // Optional custom styles for the alert +} + + +// Functional component to render an informational alert +const AlertMessage: React.FC = ({ + message = "No data found.", + sx = {}, +}) => ( + + {message} + +); + + +// Export the AlertMessage component as default +export default AlertMessage; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInbox.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInbox.tsx new file mode 100644 index 0000000..2cef2a4 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInbox.tsx @@ -0,0 +1,50 @@ + +/** + * This component renders the main application inbox page for the service manager. + * It includes the jurisdiction dropdown, header, search/filter controls, and the list of property cards. + */ +import Box from '@mui/material/Box' +import ApplicationInboxHeader from './ApplicationInboxHeader/ApplicationInboxHeader' +import ApplicationInboxSearchHeader from './ApplicationInboxHeader/ApplicationInboxSearchHeader' +import { + mainContainerSx, + contentRowSx, + leftColumnSx, +} from '../styles/ApplicationInboxStyle' +import ApplicationInboxPropertyCardList from './ApplicationInboxPropertyCard/ApplicationInboxPropertyCardList' +import { JurisdictionDropdown } from '../../../../components/JurisdictionDropdown/JurisdictionDropdown' +import { jurisdictionDropdownStyles } from '../../../../styles/HomePageStyle/HomePageStyle' + + +// Props for the ApplicationInbox component +interface ApplicationInboxProps { + sideBarOpen?: boolean; // (Optional) Whether the sidebar is open + setSelectedNav?: (nav: string) => void; // (Optional) Handler to set selected navigation +} + + +// Functional component to render the main application inbox page +const ApplicationInbox: React.FC = () => { + return ( + + {/* Jurisdiction dropdown for filtering by zone/ward */} + + + + {/* Header for the inbox page */} + + + + {/* Search and filter controls */} + + {/* List of property cards */} + + + + + ) +} + + +// Export the ApplicationInbox component as default +export default ApplicationInbox \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ActionButton.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ActionButton.tsx new file mode 100644 index 0000000..0e334f6 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ActionButton.tsx @@ -0,0 +1,127 @@ + +/** + * This component renders an action button with a dropdown menu for application inbox actions. + * It allows the user to trigger actions such as reassigning an agent for a specific application. + * When 'Reassign Agent' is selected, a dialog opens for agent reassignment. + */ +import { Menu, Button, MenuItem, Dialog, DialogContent } from "@mui/material"; +import ArrowDropDownIcon from '@mui/icons-material/ArrowDropDown'; +import React from "react"; +import { + actionButtonSx, + actionMenuPaperSx, + actionMenuItemSx, +} from "../../styles/ApplicationInboxButtons/ActionButtonStyle"; +import ApplicationInboxReassignmentBox from "../ApplicationInboxReassignmentBox/ApplicationInboxReassignmentBox"; + + +// Props for the ActionButton component +interface ActionDropdownProps { + selectedAction: string; // Currently selected action label + onActionChange: (action: string) => void; // Callback when an action is selected + ward: string; // Ward identifier for the application + applicationId: string; // Application identifier + assignedAgentId?: string; // (Optional) Currently assigned agent's ID +} + + +// Functional component to render an action button with a dropdown and dialog for agent reassignment +const ActionButton: React.FC = ({ + selectedAction, + onActionChange, + ward, + applicationId, + assignedAgentId +}) => { + // State for menu anchor element + const [anchorEl, setAnchorEl] = React.useState(null); + const isOpen = Boolean(anchorEl); + // State for dialog visibility and ward context + const [dialogOpen, setDialogOpen] = React.useState(false); + const [dialogWard, setDialogWard] = React.useState(""); + + // Handle button click to open the dropdown menu + const handleButtonClick = (event: React.MouseEvent) => { + setAnchorEl(event.currentTarget); + }; + + // Handle menu item selection and open dialog if needed + const handleMenuClose = (value?: string) => { + if (value) { + onActionChange(value); + if (value === "Reassign Agent") { + setDialogWard(ward); + setDialogOpen(true); + } + } + setAnchorEl(null); + }; + + // Handle dialog close + const handleDialogClose = () => { + setDialogOpen(false); + }; + + return ( + <> + {/* Action button with dropdown icon */} + + + {/* Dropdown menu for actions */} + handleMenuClose()} + anchorOrigin={{ + vertical: "bottom", + horizontal: "left", + }} + transformOrigin={{ + vertical: "top", + horizontal: "left", + }} + slotProps={{ + paper: { + sx: { + ...actionMenuPaperSx, + minWidth: anchorEl ? anchorEl.offsetWidth : undefined, + }, + }, + }} + > + handleMenuClose("Reassign Agent")} + sx={actionMenuItemSx} + > + Reassign Agent + + + + {/* Dialog for agent reassignment */} + + + + + + + ); +}; + + +// Export the ActionButton component as default +export default ActionButton; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ApplicationInboxCheckBox.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ApplicationInboxCheckBox.tsx new file mode 100644 index 0000000..9510319 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ApplicationInboxCheckBox.tsx @@ -0,0 +1,24 @@ + +/** + * This component renders a styled Material-UI Checkbox for use in the application inbox. + * It uses custom icons and styles for checked and unchecked states. + */ +import Checkbox from '@mui/material/Checkbox' +import CheckIcon from '@mui/icons-material/CheckBoxOutlined' +import CheckBoxOutlineBlankIcon from '@mui/icons-material/CheckBoxOutlineBlank' +import { checkBoxIconSx, checkBoxCheckedIconSx } from '../../styles/ApplicationInboxButtons/ApplicationInboxCheckboxStyle' + + +// Functional component to render a custom-styled checkbox +const ApplicationInboxCheckBox = () => { + return ( + } + checkedIcon={} + /> + ) +} + + +// Export the ApplicationInboxCheckBox component as default +export default ApplicationInboxCheckBox \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ApplicationInboxFilterButton.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ApplicationInboxFilterButton.tsx new file mode 100644 index 0000000..dda52c7 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ApplicationInboxFilterButton.tsx @@ -0,0 +1,49 @@ + +/** + * This component renders a filter button for the application inbox. + * When clicked, it opens a dialog containing the property filter form. + * Useful for filtering applications based on various criteria. + */ +import React from "react"; +import Button from "@mui/material/Button"; +import FilterAltOutlinedIcon from "@mui/icons-material/FilterAltOutlined"; +import Dialog from "@mui/material/Dialog"; +import DialogContent from "@mui/material/DialogContent"; +import { filterButtonSx, filterIconSx, DialogBoxSx } from "../../styles/ApplicationInboxButtons/ApplicationInboxFilterButtonStyle"; +import PropertyFilter from "../PropertyFilter/PropertyFilter"; + + +// Functional component to render a filter button and dialog for property filtering +const ApplicationInboxFilterButton = () => { + // State to control dialog visibility + const [open, setOpen] = React.useState(false); + + // Open the filter dialog + const handleClick = () => setOpen(true); + // Close the filter dialog + const handleClose = () => setOpen(false); + + return ( + <> + {/* Button to open the filter dialog */} + + {/* Dialog containing the property filter form */} + + + + + + + ); +}; + + +// Export the ApplicationInboxFilterButton component as default +export default ApplicationInboxFilterButton; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ApplicationInboxReassignButton.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ApplicationInboxReassignButton.tsx new file mode 100644 index 0000000..2ab44ae --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ApplicationInboxReassignButton.tsx @@ -0,0 +1,32 @@ + +/** + * This component renders a styled button for reassigning an application in the inbox. + * It is typically used to trigger the reassignment action for a selected application. + */ +import Button from "@mui/material/Button"; +import { reassignButtonSx } from "../../styles/ApplicationInboxButtons/ApplicationInboxReassignButtonStyle"; + + +// Props for the ApplicationInboxReassignButton component +interface ApplicationInboxReassignButtonProps { + onClick: () => void; // Handler for button click + disabled?: boolean; // Whether the button is disabled + text: string; // Button label text +} + + +// Functional component to render a contained, styled button for reassignment +const ApplicationInboxReassignButton: React.FC = ({ onClick, disabled, text }) => ( + +); + + +// Export the ApplicationInboxReassignButton component as default +export default ApplicationInboxReassignButton; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ApplicationInboxToggleButton.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ApplicationInboxToggleButton.tsx new file mode 100644 index 0000000..aadfbe0 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ApplicationInboxToggleButton.tsx @@ -0,0 +1,20 @@ + +/** + * This component renders a styled toggle switch for use in the application inbox. + * It can be used to toggle states such as enabling or disabling features for an application. + */ +import Switch from "@mui/material/Switch"; +import { toggleButtonSx } from "../../styles/ApplicationInboxButtons/ApplicationInboxToggleButtonStyle"; + + +// Functional component to render a custom-styled toggle switch +const ApplicationInboxToggleButton = (props: any) => ( + +); + + +// Export the ApplicationInboxToggleButton component as default +export default ApplicationInboxToggleButton; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/TextButton.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/TextButton.tsx new file mode 100644 index 0000000..baec817 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/TextButton.tsx @@ -0,0 +1,36 @@ + +/** + * This component renders a reusable outlined text button for the application inbox. + * It accepts custom text, styles, and an optional click handler. + */ +import type { SxProps, Theme } from "@mui/material"; +import React from "react"; +import Button from "@mui/material/Button"; + + +// Props for the TextButton component +interface TextButtonProps { + text: string; // Button label text + sx?: SxProps; // Optional custom styles for the button + onClick?: () => void; // Optional click handler +} + + +// Functional component to render an outlined text button +const TextButton: React.FC = ({ + text, + sx, + onClick, +}) => ( + +); + + +// Export the TextButton component as default +export default TextButton; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxHeader/ApplicationInboxHeader.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxHeader/ApplicationInboxHeader.tsx new file mode 100644 index 0000000..19fc50c --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxHeader/ApplicationInboxHeader.tsx @@ -0,0 +1,31 @@ + +/** + * This component renders the header section for the application inbox page. + * It displays the main title and a subtitle describing the inbox functionality. + */ +import Box from '@mui/material/Box' +import Typography from '@mui/material/Typography' +import { + headerContainerSx, + headerTitleSx, + headerSubtitleSx, +} from "../../styles/ApplicationInboxHeader/ApplicationInboxHeaderStyle" + + +// Functional component to render the inbox header with title and subtitle +const ApplicationInboxHeader = () => { + return ( + + + Application Inbox + + + Manage property applications and workload distribution from inbox + + + ) +} + + +// Export the ApplicationInboxHeader component as default +export default ApplicationInboxHeader \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxHeader/ApplicationInboxSearchHeader.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxHeader/ApplicationInboxSearchHeader.tsx new file mode 100644 index 0000000..7217ab2 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxHeader/ApplicationInboxSearchHeader.tsx @@ -0,0 +1,33 @@ + +/** + * This component renders the search and filter header for the application inbox. + * It includes a title, a search bar, and a filter button for property selection. + */ +import { Box, Typography } from "@mui/material"; +import ApplicationInboxFilterButton from "../ApplicationInboxButtons/ApplicationInboxFilterButton"; +import ApplicationInboxSearchBar from "../ApplicationInboxSearchBar/ApplicationInboxSearchBar"; +import { + searchHeaderContainerSx, + selectPropertiesTextSx, + searchHeaderRowSx, +} from "../../styles/ApplicationInboxHeader/ApplicationInboxSearchHeaderStyle"; + + +// Functional component to render the search and filter header for the inbox +const ApplicationInboxSearchHeader = () => { + return ( + + {/* Title for the property selection section */} + Select Properties + {/* Row containing the search bar and filter button */} + + + + + + ); +}; + + +// Export the ApplicationInboxSearchHeader component as default +export default ApplicationInboxSearchHeader; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxPropertyCard/ApplicationInboxPropertyCard.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxPropertyCard/ApplicationInboxPropertyCard.tsx new file mode 100644 index 0000000..2c9c6a8 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxPropertyCard/ApplicationInboxPropertyCard.tsx @@ -0,0 +1,101 @@ + +/** + * This component renders a property card in the application inbox. + * It displays property details, agent info, priority, status, and action buttons for each application. + */ +import Box from '@mui/material/Box' +// import ApplicationInboxCheckBox from '../ApplicationInboxButtons/ApplicationInboxCheckBox' +import Typography from '@mui/material/Typography' +import ActionButton from '../ApplicationInboxButtons/ActionButton' +import TextButton from '../ApplicationInboxButtons/TextButton' +import { + newPropertyButtonSx, + highPriorityButtonSx, + dueDateButtonSx, + lowPriorityButtonSx, + mediumPriorityButtonSx, +} from '../../styles/ApplicationInboxButtons/TextButtonStyle' +import { + applicationInboxPropertyCardSx, + propertyCardHeaderSx, + propertyCardAgentInfoSx, + propertyCardActionsSx, +} from '../../styles/ApplicationInboxPropertyCard/ApplicationInboxPropertyCardStyle' +import type {AllApplicationModel} from '../../models/getAllApplicationsModel' + + +// Props for the ApplicationInboxPropertyCard component +interface ApplicationInboxPropertyCardProps { + property: AllApplicationModel & { agentName?: string; agentUsername?: string }; +} + + +// Functional component to render a property card with details and actions +const ApplicationInboxPropertyCard: React.FC = ({ property }) => { + // Helper to get the correct style for the priority button + const getPriorityButtonSx = (priority: string) => { + if (priority === "LOW") return lowPriorityButtonSx; + if (priority === "MEDIUM") return mediumPriorityButtonSx; + return highPriorityButtonSx; + }; + + return ( + + {/* Optionally render a checkbox for selection (currently commented out) */} + {/* + + */} + + + + {/* Display the application number */} + {/* {property.Property.PropertyNo} */} + {property.ApplicationNo} + {/* Show the priority and status as styled buttons */} + + + + + {/* Display property address and complex name */} + + {property.Property.Address?.Locality + ? `${property.Property.Address.Locality}, ` + : ""} + {property.Property.ComplexName} + + + {/* Show agent info and ward/zone details */} + + + Agent: {property.agentName} ({property.agentUsername}) + + + {property.Property.Address?.WardNo ?? "No Ward"} + + + {property.Property.Address?.ZoneNo ?? ""} + + + + {/* Optionally display agent username (currently commented out) */} + {/* + Username: {property.AgentUsername || "N/A"} + */} + + + + {/* Action buttons for due date and agent reassignment */} + + + {}} applicationId={property.ID} ward={property.Property.Address?.WardNo ? property.Property.Address.WardNo : ""} /> + + + ) +} + + +// Export the ApplicationInboxPropertyCard component as default +export default ApplicationInboxPropertyCard \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxPropertyCard/ApplicationInboxPropertyCardList.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxPropertyCard/ApplicationInboxPropertyCardList.tsx new file mode 100644 index 0000000..c3d9338 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxPropertyCard/ApplicationInboxPropertyCardList.tsx @@ -0,0 +1,129 @@ +/** + * This component renders a list of property cards for the application inbox. + * It fetches applications and agents, applies backend filters, + * and displays paginated results with appropriate loading and error messages. + */ +import React, { useState, useMemo } from "react"; +import Box from "@mui/material/Box"; +import ApplicationInboxPropertyCard from "./ApplicationInboxPropertyCard"; +import { applicationInboxPropertyCardListSx } from "../../styles/ApplicationInboxPropertyCard/ApplicationInboxPropertyCardListStyle"; +import { useGetAllApplicationsUnderJurisdictionQuery } from "../../api/getAllApplicationsApi"; +import { useGetAllAgentsQuery } from "../../api/getAllAgentsApi"; +import PaginationControls from "../../../../../components/Pagination/PaginationControls"; +import { useSelector } from 'react-redux'; +import AlertMessage from "../AlertComponent/AlertComponent"; +import { useDebouncedValue } from "../../utils/debounce"; +import { + buildAgentIdToNameMap, + enrichPropertiesWithAgentName, + buildAgentIdToUsernameMap, + enrichPropertiesWithAgentUsername, +} from "../../utils/searchAndFilterutil"; +import type { RootState } from "../../../../../../store/index"; +import type { AllApplicationModel } from "../../models/getAllApplicationsModel"; + +// Number of items to show per page +const PAGE_SIZE = 5; + +// Functional component to render a paginated, filtered list of property cards +const ApplicationInboxPropertyCardList: React.FC = () => { + // State for current page in pagination + const [page, setPage] = useState(1); + + // Get selected zone from Redux store + const selectedZone = useSelector((state: RootState) => state.user.selectedZone); + + // Fetch all agents for mapping and filtering + const { data: agentsData, isLoading: agentsLoading } = useGetAllAgentsQuery(); + + // Get filter values from Redux store + const agentsFilter = useSelector((state: RootState) => state.filter.agents); // array, but only one agent allowed + const priority = useSelector((state: RootState) => state.filter.priority); + const wardsFilter = useSelector((state: RootState) => state.filter.wards); // single ward in array + const searchValue = useSelector((state: RootState) => state.filter.searchValue); + + // Debounce the search value to avoid excessive filtering + const debouncedSearchValue = useDebouncedValue(searchValue, 300); + + // Determine which wards to pass + const wardNos = wardsFilter.length > 0 + ? [wardsFilter[0]] // Only one ward can be selected + : selectedZone?.wards ?? []; + + // Determine agentId to pass (find from agent name) + let agentId = ""; + if (agentsFilter.length > 0 && agentsData?.data?.users) { + const foundAgent = agentsData.data.users.find( + (a) => a.profile?.fullName === agentsFilter[0] + ); + agentId = foundAgent ? foundAgent.id : ""; + } + + // Only fetch if a zone and wards are available + const shouldFetch = !!selectedZone && !!selectedZone.zoneNumber && wardNos.length > 0; + + // Fetch applications under user's jurisdiction with filters + const { data, isLoading, isError, isFetching } = useGetAllApplicationsUnderJurisdictionQuery( + { + page: page - 1, + size: PAGE_SIZE, + zoneNo: selectedZone?.zoneNumber ?? "", + wardNos, + status: "ASSIGNED", + ...(priority ? { priority } : {}), + ...(agentId ? { assignedAgent: agentId } : {}), + ...(debouncedSearchValue ? { applicationNo: debouncedSearchValue } : {}), + }, + { skip: !shouldFetch } + ); + + // Memoized mapping of agent IDs to names and usernames + const agentIdToName = useMemo( + () => buildAgentIdToNameMap(agentsData ?? {data: {users: []}}), + [agentsData] + ); + const agentIdToUsername = useMemo( + () => buildAgentIdToUsernameMap(agentsData ?? {data: {users: []}}), + [agentsData] + ); + + // Enrich properties with agent names and usernames + let enrichedProperties = useMemo( + () => enrichPropertiesWithAgentName(data?.data ?? [], agentIdToName), + [data, agentIdToName] + ); + enrichedProperties = useMemo( + () => enrichPropertiesWithAgentUsername(enrichedProperties, agentIdToUsername), + [enrichedProperties, agentIdToUsername] + ); + + const totalPages = data?.pagination?.totalPages || 1; + + // Show appropriate messages for loading, errors, or empty states + if (!shouldFetch) return ; + if (isLoading || agentsLoading) return ; + if (isError) return ; + if (!enrichedProperties.length) return ; + + // Render the list of property cards and pagination controls + return ( + + {isFetching &&
Loading page...
} + + {enrichedProperties.map((property: AllApplicationModel) => ( + + ))} + + {totalPages > 1 && ( + + )} + +
+ ); +}; + +export default ApplicationInboxPropertyCardList; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxReassignmentBox/ApplicationInboxReassignmentBox.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxReassignmentBox/ApplicationInboxReassignmentBox.tsx new file mode 100644 index 0000000..0442ea0 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxReassignmentBox/ApplicationInboxReassignmentBox.tsx @@ -0,0 +1,140 @@ + +/** + * This component renders a dialog box for reassigning an application to a new agent. + * It allows the user to select a new agent, provide a reason, and optionally notify the agent via SMS. + * The reassignment is submitted using a mutation hook. + */ +import Box from "@mui/material/Box"; +import TextField from "@mui/material/TextField"; +import Typography from "@mui/material/Typography"; +import ApplicationInboxReassignButton from "../ApplicationInboxButtons/ApplicationInboxReassignButton"; +import ApplicationInboxToggleButton from "../ApplicationInboxButtons/ApplicationInboxToggleButton"; +import { + reassignmentBoxSx, + titleSx, + fieldLabelSx, + agentFieldSx, + reasonFieldSx, + toggleRowSx, +} from "../../styles/ApplicationInboxReassignmentBox/ApplicationInboxReassignmentBoxStyle"; +import { useGetAgentsQuery } from "../../api/getAndReassignAgentApi"; +import { useReassignApplicationMutation } from "../../api/getAndReassignAgentApi"; +import MenuItem from "@mui/material/MenuItem"; +import { useState } from "react"; + + +// Props for the ApplicationInboxReassignmentBox component +interface ApplicationInboxReassignmentBoxProps { + ward: string; // Ward identifier for the application + applicationId: string; // Application identifier + onClose: () => void; // Handler to close the dialog + assignedAgentId?: string; // (Optional) Currently assigned agent's ID +} + + +// Functional component to render the reassignment dialog box +const ApplicationInboxReassignmentBox = ({ ward, applicationId, onClose, assignedAgentId }: ApplicationInboxReassignmentBoxProps) => { + // Fetch all agents for the ward (currently empty string, can be updated for filtering) + const { data: agentsData, isLoading } = useGetAgentsQuery({ ward:ward }); + // State for selected agent, reason, and SMS notification toggle + const [selectedAgent, setSelectedAgent] = useState(""); + const [reason, setReason] = useState(""); + const [notifySMS, setNotifySMS] = useState(false); + + // Exclude the currently assigned agent from the agent list + const filteredAgents = (agentsData?.data.users || []).filter( + agent => agent.id !== assignedAgentId + ); + + // Mutation hook for reassigning the application + const [reassignApplication, { isLoading: isReassigning, isSuccess: isReassignSuccess }] = useReassignApplicationMutation(); + + // Toggle the SMS notification state + const handleNotifyChange = () => { + setNotifySMS(!notifySMS); + } + + // Handle the reassignment action + const handleReassign = async () => { + if (!selectedAgent || !reason) return; + + // Debug logs for agent selection (can be removed in production) + console.log("filteredAgents:", filteredAgents.map(agent => ({ + id: agent.id, + name: agent.profile.fullName + }))); + console.log("AssignedAgentId (excluded):", assignedAgentId); + + await reassignApplication({ + applicationId, + agentId: selectedAgent, + comments: reason, + }); + onClose(); + + console.log("ReAssignment Status", isReassignSuccess); + }; + + return ( + + Reassignment Details + + {/* Agent selection dropdown */} + + Select New Agent: + setSelectedAgent(e.target.value)} + > + {isLoading ?( + Loading... + ) : filteredAgents.length === 0 ? ( + No agents available for the ward + ) + : filteredAgents.map(agent => ( + + {agent.profile.fullName} + + ))} + + + + {/* Reason for reassignment input */} + + Reason for Reassignment: + setReason(e.target.value)} + /> + + + {/* Toggle for SMS notification to agent */} + + Notify Agent via SMS + + + + {/* Button to submit the reassignment */} + + + + + ); +}; + + +// Export the ApplicationInboxReassignmentBox component as default +export default ApplicationInboxReassignmentBox; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxSearchBar/ApplicationInboxSearchBar.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxSearchBar/ApplicationInboxSearchBar.tsx new file mode 100644 index 0000000..8716913 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxSearchBar/ApplicationInboxSearchBar.tsx @@ -0,0 +1,51 @@ + +/** + * This component renders a search bar for filtering applications in the inbox. + * It updates the search value in the Redux store as the user types. + */ +import React from "react"; +import { Box, TextField, InputAdornment } from "@mui/material"; +import SearchIcon from "@mui/icons-material/Search"; +import { + searchBarContainerSx, + searchFieldSx, +} from "../../styles/ApplicationInboxSearchBar/ApplicationInboxSearchBarStyle"; +import { useDispatch, useSelector } from "react-redux"; +import { setSearchValue } from "../../store/filterSlice"; + + +// Functional component to render a search bar for the inbox +const ApplicationInboxSearchBar: React.FC = () => { + const dispatch = useDispatch(); + // Get the current search value from Redux store + const searchValue = useSelector((state: any) => state.filter.searchValue); + + // Update the search value in the store when the user types + const handleSearchChange = (event: React.ChangeEvent) => { + dispatch(setSearchValue(event.target.value)); + }; + + return ( + + + + + ), + }} + /> + + ); +}; + +// Export the ApplicationInboxSearchBar component as default +export default ApplicationInboxSearchBar; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxSearchBar/FilterSearchBar.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxSearchBar/FilterSearchBar.tsx new file mode 100644 index 0000000..4683230 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/ApplicationInboxSearchBar/FilterSearchBar.tsx @@ -0,0 +1,44 @@ + +/** + * This component renders a search input field with a search icon for filtering. + * It manages its own local search value state and updates as the user types. + */ +import React, { useState } from 'react'; +import { TextField, InputAdornment } from '@mui/material'; +import SearchIcon from '@mui/icons-material/Search'; +import { searchInputSx } from '../../styles/ApplicationInboxSearchBar/FilterSearchBarStyle'; + + +// Functional component to render a search input with a search icon +const ApplicationInboxSearchInput: React.FC = () => { + // Local state for the search input value + const [searchValue, setSearchValue] = useState(''); + + // Update the local search value as the user types + const handleSearchChange = (event: React.ChangeEvent) => { + setSearchValue(event.target.value); + }; + + return ( + + + + ), + }, + }} + /> + ); +}; + + +// Export the ApplicationInboxSearchInput component as default +export default ApplicationInboxSearchInput; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/FilterComponents/MultiSelectAutocomplete.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/FilterComponents/MultiSelectAutocomplete.tsx new file mode 100644 index 0000000..c3d8fd6 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/FilterComponents/MultiSelectAutocomplete.tsx @@ -0,0 +1,115 @@ + +/** + * This component renders a multi-select autocomplete input with custom tags. + * Users can select multiple options, and each selection is shown as a removable chip below the input. + * Useful for filtering or tagging scenarios in forms and search UIs. + */ +import Autocomplete from '@mui/material/Autocomplete'; +import TextField from '@mui/material/TextField'; +import Chip from '@mui/material/Chip'; +import React, { useState } from 'react'; +import Box from '@mui/material/Box'; +import type { SxProps, Theme } from '@mui/material'; + + +// Props for the MultiSelectAutocomplete component +interface MultiSelectAutocompleteProps { + options: string[]; // List of selectable options + value: string[]; // Currently selected values + onChange: (value: string[]) => void; // Handler for selection changes + placeholder?: string; // Placeholder text for the input + label?: string; // Label for the input + disabled?: boolean; // Whether the input is disabled + loading?: boolean; // Whether the input is in loading state +} + + +// Functional component to render a multi-select autocomplete with removable chips +const MultiSelectAutocomplete: React.FC }> = ({ + options, + value, + onChange, + placeholder, + label, + disabled, + loading, + sx, +}) => { + // State to control the open/close state of the dropdown + const [open, setOpen] = useState(false); + return ( + + setOpen(true)} + onClose={() => setOpen(false)} + // Handle selection changes and close dropdown after selection + onChange={(_, val, reason) => { + onChange(val); + if (reason === 'selectOption') setOpen(false); + }} + filterSelectedOptions + disableCloseOnSelect + loading={loading} + disabled={disabled} + renderTags={() => null} // Hide tags inside input + renderInput={params => ( + + )} + sx={{ mb: 1 }} + /> + {/* Render selected options as removable chips below the input */} + + {value.map((option, index) => ( + { + // Remove the tag when close icon clicked + const newValue = [...value]; + newValue.splice(index, 1); + onChange(newValue); + }} + sx={{ + background: '#fff', + color: '#000000', + fontWeight: 500, + border: '1px solid black', + borderRadius: 6, + px: 1, + fontSize: 14, + }} + /> + ))} + + + ) +}; + + +// Export the MultiSelectAutocomplete component as default +export default MultiSelectAutocomplete; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/FilterComponents/MultiSelectChipGroup.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/FilterComponents/MultiSelectChipGroup.tsx new file mode 100644 index 0000000..5f89ab6 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/FilterComponents/MultiSelectChipGroup.tsx @@ -0,0 +1,77 @@ + +/** + * This component renders a group of selectable chips for multi-select filtering. + * Users can select or deselect options, and the selected chips are styled differently. + * Useful for tag-based or categorical filtering in forms and search UIs. + */ +import React from "react"; +import Box from "@mui/material/Box"; +import Chip from "@mui/material/Chip"; + + +// Option type for each chip in the group +export interface MultiSelectChipOption { + value: string; // The value of the chip + label: string; // The display label of the chip +} + + +// Props for the MultiSelectChipGroup component +export interface MultiSelectChipGroupProps { + options: MultiSelectChipOption[]; // List of chip options + selectedValues: string[]; // Currently selected values + onChange: (values: string[]) => void; // Handler for selection changes + sx?: object; // Optional styles for the container + chipSx?: object; // Optional styles for individual chips +} + + +// Functional component to render a group of selectable chips for multi-select +const MultiSelectChipGroup: React.FC = ({ + options, + selectedValues, + onChange, + sx, + chipSx, +}) => { + // Handle chip click to toggle selection + const handleChipClick = (value: string) => { + if (selectedValues.includes(value)) { + onChange(selectedValues.filter(v => v !== value)); + } else { + onChange([...selectedValues, value]); + } + }; + + return ( + + {options.map(option => ( + handleChipClick(option.value)} + sx={{ + fontWeight: 500, + px: 1, + borderRadius: 6, + cursor: "pointer", + backgroundColor: selectedValues.includes(option.value) ? "#c84c03" : "#fff", + color: selectedValues.includes(option.value) ? "#fff" : "#222", + border: selectedValues.includes(option.value) ? "none" : "1px solid #ccc", + ...chipSx, + "&:hover": { + backgroundColor: selectedValues.includes(option.value) + ? "#a23b02" + : "#ffeed0", + }, + }} + /> + ))} + + ); +}; + + +// Export the MultiSelectChipGroup component as default +export default MultiSelectChipGroup; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/PropertyFilter/PropertyFilter.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/PropertyFilter/PropertyFilter.tsx new file mode 100644 index 0000000..4b905a3 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/components/PropertyFilter/PropertyFilter.tsx @@ -0,0 +1,153 @@ +/** + * This component renders a filter form for the property application inbox. + * It allows filtering by agent, ward, and priority, and applies the selected filters to the Redux store. + */ +import Box from '@mui/material/Box' +import Typography from '@mui/material/Typography' +import Divider from '@mui/material/Divider' +import TextButton from '../ApplicationInboxButtons/TextButton' +import { applyFilterButtonSx } from '../../styles/ApplicationInboxButtons/TextButtonStyle' +import { DividerSx, filterButtonContainerSx } from '../../styles/PropertyFilter/PropertyFilterStyle' +import MultiSelectAutocomplete from '../FilterComponents/MultiSelectAutocomplete' +import { useDispatch, useSelector } from 'react-redux' +import { setAgents, setPriority, setWards } from '../../store/filterSlice' +import { useGetAllAgentsQuery } from '../../api/getAllAgentsApi' +import React, { useState, useEffect } from 'react' +import Chip from "@mui/material/Chip"; +import Stack from '@mui/material/Stack' +import type { RootState } from '../../../../../../store' + +// Type definition for a zone, which includes a zone number and a list of wards in that zone +interface ZoneData { + zoneNumber: string; + wards: string[]; +} + +// Props for the PropertyFilter component +interface PropertyFilterProps { + onClose?: () => void; // Optional handler to close the filter dialog +} + +// Priority options for filtering +const priorityOptions = [ + { value: "LOW", label: "Low" }, + { value: "MEDIUM", label: "Medium" }, + { value: "HIGH", label: "High" } +]; + +// Functional component to render the property filter form +const PropertyFilter: React.FC = ({ onClose }) => { + // Agent filter state and options + const { data: agentsData, isLoading: agentsLoading } = useGetAllAgentsQuery() + const agentOptions = agentsData?.data?.users?.map(agent => agent.profile?.fullName) || [] + const agentsFilterRedux = useSelector((state: RootState) => state.filter.agents) + // Restrict to single agent selection + const [selectedAgent, setSelectedAgent] = useState(agentsFilterRedux[0] ?? "") + useEffect(() => { setSelectedAgent(agentsFilterRedux[0] ?? "") }, [agentsFilterRedux]) + + // Priority filter (single selection) + const priority = useSelector((state: RootState) => state.filter.priority) + const dispatch = useDispatch() + + // Ward filter state (single selection) + const selectedZone = useSelector((state: RootState) => state.user.selectedZone); + const assignedZones: ZoneData[] = Array.isArray(selectedZone) ? selectedZone : selectedZone ? [selectedZone] : []; + const wardOptions = assignedZones.flatMap(z => z.wards); + const wardsFilterRedux = useSelector((state: RootState) => state.filter.wards); + const [selectedWard, setSelectedWard] = useState(wardsFilterRedux[0] ?? ""); + useEffect(() => { setSelectedWard(wardsFilterRedux[0] ?? ""); }, [wardsFilterRedux]); + + // Apply the selected filters to the Redux store + const handleApply = () => { + dispatch(setAgents(selectedAgent ? [selectedAgent] : [])) + dispatch(setPriority(priority)) + dispatch(setWards(selectedWard ? [selectedWard] : [])) + if (onClose) onClose(); + } + + // Handle priority chip click to toggle selection + const handlePriorityChipClick = (value: string) => { + dispatch(setPriority(priority === value ? '' : value)); + }; + + // Handle ward chip click to select only one ward + const handleWardChipClick = (ward: string) => { + setSelectedWard(prev => prev === ward ? "" : ward); + }; + + return ( + + {/* Agent filter section */} + Agent + setSelectedAgent(arr[0] ?? "")} + placeholder="Search agent..." + loading={agentsLoading} + // If your MultiSelectAutocomplete supports maxSelections, you can add: maxSelections={1} + /> + + + {/* Ward filter section as chips (single select) */} + Ward + + {wardOptions.map((ward: string) => ( + handleWardChipClick(ward)} + color={selectedWard === ward ? "primary" : "default"} + variant={selectedWard === ward ? "filled" : "outlined"} + sx={{ + borderRadius: 6, + fontWeight: 500, + fontSize: 14, + bgcolor: selectedWard === ward ? "#c84c03" : undefined, + color: selectedWard === ward ? "#fff" : undefined, + borderColor: selectedWard === ward ? "#c84c03" : undefined, + '&:hover': { + bgcolor: selectedWard === ward ? "#a63e02" : undefined, + }, + }} + /> + ))} + + + + {/* Priority filter section */} + Priority + + {priorityOptions.map((option) => ( + handlePriorityChipClick(option.value)} + color={priority === option.value ? "primary" : "default"} + variant={priority === option.value ? "filled" : "outlined"} + sx={{ + borderRadius: 6, + fontWeight: 500, + fontSize: 14, + bgcolor: priority === option.value ? "#c84c03" : undefined, + color: priority === option.value ? "#fff" : undefined, + borderColor: priority === option.value ? "#c84c03" : undefined, + '&:hover': { + bgcolor: priority === option.value ? "#a63e02" : undefined, + }, + }} + /> + ))} + + + {/* Apply filter button */} + + + + + ) +} + +export default PropertyFilter \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/models/ApplicationInboxModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/models/ApplicationInboxModel.ts new file mode 100644 index 0000000..f98bcf9 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/models/ApplicationInboxModel.ts @@ -0,0 +1,16 @@ + +/** + * Represents a property item in the application inbox. + */ +export interface InboxProperty { + id: number; // Unique identifier for the inbox property + propertyName: string; // Name of the property + propertyId: string; // Property ID + address: string; // Full address of the property + ward: string; // Ward number or name + zone: string; // Zone number or name + agentName: string; // Name of the assigned agent + priority: string; // Priority level (e.g., LOW, MEDIUM, HIGH) + isNew: boolean; // Whether the property is new in the inbox + dueDate: string; // Due date for the property/application +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/models/agentModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/models/agentModel.ts new file mode 100644 index 0000000..3f70dbd --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/models/agentModel.ts @@ -0,0 +1,70 @@ + +/** + * Represents the address details of an agent. + */ +export interface AgentAddress { + addressLine1: string; // First line of the address + addressLine2: string; // Second line of the address + city: string; // City name + state: string; // State name + pinCode: string; // Postal code +} + + +/** + * Represents the profile information of an agent. + */ +export interface AgentProfile { + firstName: string; // Agent's first name + lastName: string; // Agent's last name + fullName: string; // Agent's full name + phoneNumber: string; // Contact phone number + adhaarNo: number; // Aadhaar number (unique ID) + gender: string; // Gender of the agent + guardian: string; // Guardian's name + guardianType: string; // Type of guardian (e.g., father, mother) + dateOfBirth: string; // Date of birth + address: AgentAddress; // Address details + department: string; // Department name + designation: string; // Job designation + workLocation: string; // Work location + profilePicture: string; // URL to profile picture + relationshipToProperty: string; // Relationship to the property + ownershipShare: number; // Share of ownership + isPrimaryOwner: boolean; // Whether agent is the primary owner + isVerified: boolean; // Whether agent is verified +} + + +/** + * Represents an agent user in the system. + */ +export interface AgentUser { + id: string; // Unique user ID + username: string; // Username + email: string; // Email address + role: string; // User role (e.g., AGENT) + isActive: boolean; // Whether the user is active + ward: string; // Ward assigned to the agent + preferred_language: string; // Preferred language + createdDate: string; // Date the user was created + updatedDate: string; // Date the user was last updated + createdBy?: string; // (Optional) Who created the user + updatedBy?: string; // (Optional) Who last updated the user + profile: AgentProfile; // Profile details +} + + +/** + * Represents the response structure for fetching agents. + */ +export interface GetAgentsResponse { + success: boolean; // Indicates if the request was successful + message?: string; // Optional message from the server + data: { + users: AgentUser[]; // List of agent users + TotalCount: number; // Total number of users + Limit: number; // Pagination limit + Offset: number; // Pagination offset + }; +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/models/getAllApplicationsModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/models/getAllApplicationsModel.ts new file mode 100644 index 0000000..a2490f0 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/models/getAllApplicationsModel.ts @@ -0,0 +1,231 @@ + +/** + * Represents an amenity associated with a property. + */ +export interface Amenity { + ID: string; // Unique amenity ID + Type: string; // Type of amenity + Description: string; // Description of the amenity + ExpiryDate: string; // Expiry date of the amenity + PropertyID: string; // Associated property ID + CreatedAt: string; // Creation timestamp + UpdatedAt: string; // Last update timestamp +} + + +/** + * Represents details of a floor within a property. + */ +export interface FloorDetail { + ID: string; // Unique floor detail ID + FloorNo: number; // Floor number + Classification: string; // Classification of the floor + NatureOfUsage: string; // Usage type (e.g., residential, commercial) + FirmName: string; // Name of the firm (if applicable) + OccupancyType: string; // Type of occupancy + OccupancyName: string; // Name of the occupant + constructionDate: string; // Construction date + effectiveFromDate: string; // Date from which the floor is effective + UnstructuredLand: string; // Unstructured land info + LengthFt: number; // Length in feet + BreadthFt: number; // Breadth in feet + PlinthAreaSqFt: number; // Plinth area in square feet + BuildingPermissionNo: string; // Building permission number + FloorDetailsEntered: boolean; // Whether floor details are entered + ConstructionDetailsID: string; // Associated construction details ID + CreatedAt: string; // Creation timestamp + UpdatedAt: string; // Last update timestamp +} + + +/** + * Represents construction details of a property. + */ +export interface ConstructionDetails { + ID: string; // Unique construction details ID + FloorType: string; // Type of floor + WallType: string; // Type of wall + RoofType: string; // Type of roof + WoodType: string; // Type of wood used + PropertyID: string; // Associated property ID + FloorDetails: FloorDetail[]; // List of floor details + CreatedAt: string; // Creation timestamp + UpdatedAt: string; // Last update timestamp +} + + +/** + * Represents a GIS coordinate for a property. + */ +export interface GISCoordinate { + ID: string; // Unique coordinate ID + Latitude: number; // Latitude value + Longitude: number; // Longitude value + GISDataID: string; // Associated GIS data ID + CreatedAt: string; // Creation timestamp +} + + +/** + * Represents GIS data for a property, including coordinates. + */ +export interface GISData { + ID: string; // Unique GIS data ID + Source: string; // Source of GIS data + Type: string; // Type of GIS data + EntityType: string; // Entity type (e.g., property) + PropertyID: string; // Associated property ID + Coordinates: GISCoordinate[];// List of coordinates + CreatedAt: string; // Creation timestamp + UpdatedAt: string; // Last update timestamp +} + + +/** + * Represents a document associated with a property. + */ +export interface Document { + ID: string; // Unique document ID + PropertyID: string; // Associated property ID + DocumentType: string; // Type of document + DocumentName: string; // Name of the document + FileStoreID: string | null;// File store identifier (nullable) + UploadDate: string; // Date the document was uploaded +} + + +/** + * Represents the address details of a property. + */ +export interface Address { + ID: string; // Unique address ID + Locality: string; // Locality name + ZoneNo: string; // Zone number + WardNo: string; // Ward number + BlockNo: string; // Block number + Street: string; // Street name + ElectionWard: string; // Election ward + SecretariatWard: string; // Secretariat ward + PinCode: number; // Postal code + DifferentCorrespondenceAddress: boolean; // If correspondence address is different + PropertyID: string; // Associated property ID + CreatedAt: string; // Creation timestamp + UpdatedAt: string; // Last update timestamp +} + + +/** + * Represents assessment details for a property. + */ +export interface AssessmentDetails { + ID: string; // Unique assessment ID + PropertyID: string; // Associated property ID + ExtentOfSite: string; // Extent of the site + IsLandUnderneathBuilding: string; // Whether land is underneath building + IsUnspecifiedShare: boolean; // If share is unspecified + OccupancyCertificateDate: string; // Date of occupancy certificate + OccupancyCertificateNumber: string;// Occupancy certificate number + ReasonOfCreation: string; // Reason for creation + CreatedAt: string; // Creation timestamp + UpdatedAt: string; // Last update timestamp +} + + +/** + * Represents additional details for a property, such as amenities and certifications. + */ +export interface AdditionalDetails { + ID: string; // Unique additional details ID + FieldName: string; // Name of the field + fieldValue: { + amenities: string[]; // List of amenities + certification: { + earthquake_resistant: boolean; // Earthquake resistance + fire_safety: string; // Fire safety info + green_building: boolean; // Green building status + }; + construction_year: number; // Year of construction + elevator: boolean; // Elevator availability + floors: number; // Number of floors + security: { + access_control: string; // Access control info + cctv: boolean; // CCTV availability + guard: string; // Guard info + }; + units_per_floor: number; // Units per floor + }; + PropertyID: string; // Associated property ID + CreatedAt: string; // Creation timestamp + UpdatedAt: string; // Last update timestamp +} + + +/** + * Represents the main details of a property. + */ +export interface PropertyDetails { + ID: string; // Unique property ID + PropertyNo: string; // Property number + OwnershipType: string; // Type of ownership + PropertyType: string; // Type of property + ComplexName: string; // Name of the complex + Address: Address | null; // Address details + AssessmentDetails: AssessmentDetails | null; // Assessment details + Amenities: Amenity[]; // List of amenities + ConstructionDetails: ConstructionDetails | null; // Construction details + AdditionalDetails: AdditionalDetails | null; // Additional property details + GISData: GISData | null; // GIS data + CreatedAt: string; // Creation timestamp + UpdatedAt: string; // Last update timestamp + Documents: Document[]; // List of documents +} + + +/** + * Represents an application record for a property. + */ +export interface AllApplicationModel { + ID: string; // Unique application ID + ApplicationNo: string; // Application number + PropertyID: string; // Associated property ID + Priority: string; // Priority level + TenantID: string; // Tenant ID + DueDate: string; // Due date for the application + AssignedAgent: string | null; // Assigned agent ID (nullable) + Status: string; // Application status + WorkflowInstanceID: string; // Workflow instance ID + AppliedBy: string; // Who applied + AssesseeID: string | null; // Assessee ID (nullable) + Property: PropertyDetails; // Property details + ApplicationLogs: any[]; // Logs related to the application + IsDraft: boolean; // Whether the application is a draft + CreatedAt: string; // Creation timestamp + UpdatedAt: string; // Last update timestamp + agentName?: string; // (Optional) Agent's name + agentUsername?: string; // (Optional) Agent's username +} + + +/** + * Request parameters for fetching all applications (pagination). + */ +export interface GetAllApplicationsRequest { + page?: number; // Page number + size?: number; // Page size +} + + +/** + * Response structure for fetching all applications. + */ +export interface GetAllApplicationsResponse { + data: AllApplicationModel[]; // List of application models + message: string; // Response message + pagination: { + page: number; // Current page + size: number; // Page size + totalItems: number; // Total number of items + totalPages: number; // Total number of pages + }; + success: boolean; // Whether the request was successful +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/models/getAndReassignAgentModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/models/getAndReassignAgentModel.ts new file mode 100644 index 0000000..2c9eef2 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/models/getAndReassignAgentModel.ts @@ -0,0 +1,172 @@ + +/** + * Represents a basic agent with contact and role information. + */ +export interface Agent { + id: string; // Unique identifier for the agent + name: string; // Agent's full name + email: string; // Agent's email address + phone: string; // Agent's phone number + role: string; // Role of the agent + status?: string; // (Optional) Status of the agent +} + + +/** + * Represents the profile details of an agent, including personal and work information. + */ +export interface AgentProfile { + firstName: string; // Agent's first name + lastName: string; // Agent's last name + fullName: string; // Agent's full name + phoneNumber: string; // Agent's phone number + adhaarNo: number; // Agent's Aadhaar number + gender: string; // Gender of the agent + guardian: string; // Guardian's name + guardianType: string; // Type of guardian (e.g., father, mother) + dateOfBirth: string; // Date of birth + address: { + addressLine1: string; // Address line 1 + addressLine2: string; // Address line 2 + city: string; // City + state: string; // State + pinCode: string; // Postal code + }; + department: string; // Department name + designation: string; // Designation or job title + workLocation: string; // Work location + profilePicture: string; // URL to profile picture + relationshipToProperty: string; // Relationship to the property + ownershipShare: number; // Ownership share percentage + isPrimaryOwner: boolean; // Whether the agent is the primary owner + isVerified: boolean; // Whether the agent is verified +} + + +/** + * Response structure for fetching a list of agents. + */ +export interface GetAgentsResponse { + success: boolean; // Indicates if the request was successful + data: Agent[]; // List of agents + message?: string; // (Optional) Response message +} + + +/** + * Request structure for reassigning an application to another agent. + */ +export interface ReassignApplicationRequest { + action: string; // Action to be performed (e.g., 'reassign') + reasonForReassignment: string; // Reason for reassigning the application + informViaSMS: boolean; // Whether to inform via SMS + applicationId: string; // ID of the application to reassign + agentId: string; // ID of the agent to assign +} + + +/** + * Response structure after reassigning an application. + */ +export interface ReassignApplicationResponse { + success: boolean; // Indicates if the reassignment was successful + message: string; // Response message +} + + +/** + * Represents the address details of an agent. + */ +export interface AgentAddress { + addressLine1: string; // Address line 1 + addressLine2: string; // Address line 2 + city: string; // City + state: string; // State + pinCode: string; // Postal code +} + + +/** + * Represents the profile details of an agent, including address as a separate type. + */ +export interface AgentProfile { + firstName: string; // Agent's first name + lastName: string; // Agent's last name + fullName: string; // Agent's full name + phoneNumber: string; // Agent's phone number + adhaarNo: number; // Agent's Aadhaar number + gender: string; // Gender of the agent + guardian: string; // Guardian's name + guardianType: string; // Type of guardian (e.g., father, mother) + dateOfBirth: string; // Date of birth + address: AgentAddress; // Address details (AgentAddress type) + department: string; // Department name + designation: string; // Designation or job title + workLocation: string; // Work location + profilePicture: string; // URL to profile picture + relationshipToProperty: string; // Relationship to the property + ownershipShare: number; // Ownership share percentage + isPrimaryOwner: boolean; // Whether the agent is the primary owner + isVerified: boolean; // Whether the agent is verified +} + + +/** + * Represents an agent with detailed profile and status information, fetched by ID. + */ +export interface AgentById { + id: string; // Unique agent ID + username: string; // Username of the agent + email: string; // Email address + role: string; // Role of the agent + isActive: boolean; // Whether the agent is active + ward: string; // Ward assigned to the agent + preferred_language: string; // Preferred language + createdDate: string; // Creation date + updatedDate: string; // Last update date + profile: AgentProfile; // Agent's profile details +} + + +/** + * Response structure for fetching an agent by ID. + */ +export interface GetAgentByIdResponse { + success: boolean; // Indicates if the request was successful + message?: string; // (Optional) Response message + data: AgentById; // Agent details +} + + +/** + * Represents a user who is an agent, including audit fields. + */ +export interface AgentUser { + id: string; // Unique user ID + username: string; // Username + email: string; // Email address + role: string; // Role of the user + isActive: boolean; // Whether the user is active + ward: string; // Ward assigned + preferred_language: string; // Preferred language + createdDate: string; // Creation date + updatedDate: string; // Last update date + createdBy?: string; // (Optional) Who created the user + updatedBy?: string; // (Optional) Who last updated the user + profile: AgentProfile; // Profile details +} + + +/** + * Response structure for fetching agents by ward, including pagination info. + */ +export interface GetAgentsByWardResponse { + success: boolean; // Indicates if the request was successful + message?: string; // (Optional) Response message + data: { + users: AgentUser[]; // List of agent users + TotalCount: number; // Total number of users + Limit: number; // Limit per page + Offset: number; // Offset for pagination + }; +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/store/filterSlice.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/store/filterSlice.ts new file mode 100644 index 0000000..4ab57c7 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/store/filterSlice.ts @@ -0,0 +1,97 @@ + +// Redux slice for managing filter state in the application inbox. +import { createSlice } from '@reduxjs/toolkit' +import type {PayloadAction} from '@reduxjs/toolkit' + + +/** + * Represents the filter state for the application inbox, including agents, wards, statuses, sorting, and more. + */ +interface FilterState { + agents: string[]; // List of selected agent IDs + wards: string[]; // List of selected ward IDs + statuses: string[]; // List of selected statuses + sort: string; // Current sort option + searchValue: string; // Search input value + zones?: string[]; // (Optional) List of selected zones + priority: string; // Selected priority filter +} + + +// Initial state for the filter slice +const initialState: FilterState = { + agents: [], + wards: [], + statuses: [], + sort: '', + searchValue: '', + zones: [], + priority: '', +} + + +// Slice for managing filter-related state and actions +const filterSlice = createSlice({ + name: 'filter', + initialState, + reducers: { + /** + * Sets the selected agents filter. + */ + setAgents: (state, action: PayloadAction) => { + state.agents = action.payload; + }, + /** + * Sets the selected wards filter. + */ + setWards: (state, action: PayloadAction) => { + state.wards = action.payload; + }, + /** + * Sets the selected statuses filter. + */ + setStatuses: (state, action: PayloadAction) => { + state.statuses = action.payload; + }, + /** + * Sets the current sort option. + */ + setSort: (state, action: PayloadAction) => { + state.sort = action.payload; + }, + /** + * Sets all filters at once using a FilterState object. + */ + setAllFilters: (state, action: PayloadAction) => { + Object.assign(state, action.payload); + }, + /** + * Clears all filters, resetting to initial state. + */ + clearFilters: (state) => { + Object.assign(state, initialState); + }, + /** + * Sets the search value for filtering. + */ + setSearchValue: (state, action: PayloadAction) => { + state.searchValue = action.payload; + }, + /** + * Sets the selected zones filter. + */ + setZones: (state, action: PayloadAction) => { + state.zones = action.payload; + }, + /** + * Sets the selected priority filter. + */ + setPriority: (state, action: PayloadAction) => { + state.priority = action.payload; + }, + } +}) + +// Export filter actions and reducer for use in the Redux store +export const { setAgents, setWards, setStatuses, setSort, setAllFilters, clearFilters, setSearchValue, setZones, setPriority } = filterSlice.actions +export default filterSlice.reducer \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ActionButtonStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ActionButtonStyle.ts new file mode 100644 index 0000000..8e305bc --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ActionButtonStyle.ts @@ -0,0 +1,38 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const actionButtonSx: SxProps = { + borderRadius: "8px", + backgroundColor: "#ffffff", + color: "#c84c03", + textTransform: "none", + fontWeight: 500, + fontSize: 14, + padding: "8px 16px", + minWidth: "90px", + height: "24px", + border: "1px solid #c84c03", + cursor: "pointer", + "&:hover": { + backgroundColor: "#ffffff", + }, +}; + +export const actionMenuPaperSx: SxProps = { + borderRadius: "8px", + boxShadow: "0 2px 8px rgba(0,0,0,0.07)", + minWidth: actionButtonSx.minWidth, + background: actionButtonSx.backgroundColor, + color: actionButtonSx.color, +}; + +export const actionMenuItemSx: SxProps = { + fontSize: actionButtonSx.fontSize as number | string, + padding: actionButtonSx.padding as string, + fontWeight: actionButtonSx.fontWeight as number | string, + background: "transparent", + borderRadius: "8px", + "&:hover": { + backgroundColor: "#e3e3e3", + color: "#c84c03", + }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ApplicationInboxCheckboxStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ApplicationInboxCheckboxStyle.ts new file mode 100644 index 0000000..0617bb3 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ApplicationInboxCheckboxStyle.ts @@ -0,0 +1,11 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const checkBoxIconSx: SxProps = { + color: "inherit", + background: "transparent", +}; + +export const checkBoxCheckedIconSx: SxProps = { + color: "#c84c03", + background: "transparent", +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ApplicationInboxFilterButtonStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ApplicationInboxFilterButtonStyle.ts new file mode 100644 index 0000000..e6cca24 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ApplicationInboxFilterButtonStyle.ts @@ -0,0 +1,28 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const filterButtonSx: SxProps = { + borderRadius: "10px", + textTransform: "none", + background: "#ffffff", + color: "#c84c03", + borderColor: "#c84c03", + width: 123, + height: 37, + display: "flex", + alignItems: "center", + justifyContent: "center", + fontSize: "20px", + fontWeight: 500, +}; + +export const filterIconSx: SxProps = { + width: 24, + height: 24, +}; + +export const DialogBoxSx: SxProps = { + '& .MuiPaper-root': { + borderRadius: '20px', + minWidth: 400, + }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ApplicationInboxReassignButtonStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ApplicationInboxReassignButtonStyle.ts new file mode 100644 index 0000000..294e6b5 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ApplicationInboxReassignButtonStyle.ts @@ -0,0 +1,13 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const reassignButtonSx: SxProps = { + borderRadius: "8px", + textTransform: "none", + fontWeight: 400, + fontSize: 16, + background: "#0b4b66", + height: "32px", + width: "100%", + px: "20px", + py: "8px", +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ApplicationInboxToggleButtonStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ApplicationInboxToggleButtonStyle.ts new file mode 100644 index 0000000..5d416fd --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/ApplicationInboxToggleButtonStyle.ts @@ -0,0 +1,13 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const toggleButtonSx: SxProps = { + "& .MuiSwitch-switchBase.Mui-checked": { + color: "#0b4b66", + }, + "& .MuiSwitch-switchBase.Mui-checked + .MuiSwitch-track": { + backgroundColor: "#0b4b66", + }, + "& .MuiSwitch-track": { + backgroundColor: "#b0bec5", + }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/TextButtonStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/TextButtonStyle.ts new file mode 100644 index 0000000..94b56a7 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxButtons/TextButtonStyle.ts @@ -0,0 +1,96 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const newPropertyButtonSx: SxProps = { + backgroundColor: "#ffffff", + color: "#c84c03", + borderRadius: "30px", + height: "20px", + fontSize: 10, + fontWeight: 400, + textTransform: "none", + border: "1.5px solid #c84c03", + boxShadow: "none", + px: 2, + py: 1, + "&:hover": { + backgroundColor: "#f5f5f5", + borderColor: "#c84c03", + }, +}; + +const basePriorityButtonSx: SxProps = { + minWidth:"unset", + width:"auto", + color: "#ffffff", + borderRadius: "10px", + height: "20px", + fontSize: 10, + fontWeight: 400, + textTransform: "none", + boxShadow: "none", + border:"none", + px: 1, + py: 0, +}; + +export const highPriorityButtonSx: SxProps = { + ...basePriorityButtonSx, + backgroundColor: "rgba(163, 2, 2, 0.8)", + "&:hover": { + backgroundColor: "#a30202", + borderColor: "#a30202", + }, +}; + +export const mediumPriorityButtonSx: SxProps = { + ...basePriorityButtonSx, + backgroundColor: "rgba(165, 148, 0, 1)", + "&:hover": { + backgroundColor: "#a59400", + borderColor: "#a59400", + }, +}; + +export const lowPriorityButtonSx: SxProps = { + ...basePriorityButtonSx, + backgroundColor: "rgba(0, 112, 60, 1)", + "&:hover": { + backgroundColor: "#00703c", + borderColor: "#00703c", + }, +}; + +export const dueDateButtonSx: SxProps = { + backgroundColor: "#ffffff", + color: "black", + borderRadius: "10px", + height: "20px", + fontSize: 14, + fontWeight: 500, + textTransform: "none", + border: "1.5px solid #222", + boxShadow: "none", + px: 2, + "&:hover": { + backgroundColor: "#f5f5f5", + borderColor: "#222", + }, +}; + +export const applyFilterButtonSx: SxProps = { + backgroundColor: "#ffffff", + color: "#c84c03", + borderRadius: "10px", + height: "28px", + fontSize: 14, + fontWeight: 500, + textTransform: "none", + border: "1.5px solid #c84c03", + boxShadow: "none", + px: 2, + alignSelf:"end", + "&:hover": { + backgroundColor: "#f5f5f5", + borderColor: "#c84c03", + }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxHeader/ApplicationInboxHeaderStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxHeader/ApplicationInboxHeaderStyle.ts new file mode 100644 index 0000000..ddbc017 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxHeader/ApplicationInboxHeaderStyle.ts @@ -0,0 +1,20 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const headerContainerSx: SxProps = { + display: "flex", + flexDirection: "column", + width: "100%", + mb: 2, +}; + +export const headerTitleSx: SxProps = { + fontSize: 32, + fontWeight: 500, + color: "black", +}; + +export const headerSubtitleSx: SxProps = { + fontSize: 20, + fontWeight: 300, + color: "black", +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxHeader/ApplicationInboxSearchHeaderStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxHeader/ApplicationInboxSearchHeaderStyle.ts new file mode 100644 index 0000000..0490b0d --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxHeader/ApplicationInboxSearchHeaderStyle.ts @@ -0,0 +1,27 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const searchHeaderContainerSx: SxProps = { + background: "rgba(217, 217, 217, 0.31)", + borderRadius: "10px", + display: "flex", + flexDirection: "column", + px: 2, + py: 2, + pb: 3, + width: "100%", +}; + +export const selectPropertiesTextSx: SxProps = { + ml: 2, + fontSize: 20, + fontWeight: 300, +}; + +export const searchHeaderRowSx: SxProps = { + mt: 1, + ml: 2, + display: "grid", + gridTemplateColumns:"6fr 1fr", + alignItems:"center", + gap:2, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxPropertyCard/ApplicationInboxPropertyCardListStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxPropertyCard/ApplicationInboxPropertyCardListStyle.ts new file mode 100644 index 0000000..906dd81 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxPropertyCard/ApplicationInboxPropertyCardListStyle.ts @@ -0,0 +1,25 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const applicationInboxPropertyCardListSx: SxProps = { + maxHeight: "60vh", + overflowY: "auto", + background: "#ffffff", + borderRadius: "0", + py: 0, + pl: 2, + pr: 2, + display: "flex", + flexDirection: "column", + gap: 2, + '&::-webkit-scrollbar': { + width: '6px', + background: 'transparent', + }, + '&::-webkit-scrollbar-thumb': { + background: '#c84c03', + borderRadius: '10px', + }, + '&::-webkit-scrollbar-button': { + display: 'none', + }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxPropertyCard/ApplicationInboxPropertyCardStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxPropertyCard/ApplicationInboxPropertyCardStyle.ts new file mode 100644 index 0000000..2da7381 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxPropertyCard/ApplicationInboxPropertyCardStyle.ts @@ -0,0 +1,36 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const applicationInboxPropertyCardSx: SxProps = { + display: "grid", + // gridTemplateColumns: "auto auto 1fr", + // px: 2, + gridTemplateColumns: "auto auto", + gap: 2, + width: "100%", + border: "1px solid rgba(0,0,0,0.2)", + borderRadius: "10px", + px: 5, + py: 2, +} + +export const propertyCardHeaderSx: SxProps = { + display: "flex", + flexDirection: "row", + alignItems: "center", + gap: "10px", +}; + +export const propertyCardAgentInfoSx: SxProps = { + display: "flex", + flexDirection: "row", + justifyContent: "flex-start", + alignItems: "center", +}; + +export const propertyCardActionsSx: SxProps = { + display: "flex", + flexDirection: "column", + alignItems: "flex-end", + justifyContent: "space-between", + height: "100%", +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxReassignmentBox/ApplicationInboxReassignmentBoxStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxReassignmentBox/ApplicationInboxReassignmentBoxStyle.ts new file mode 100644 index 0000000..d2ffcf5 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxReassignmentBox/ApplicationInboxReassignmentBoxStyle.ts @@ -0,0 +1,54 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const reassignmentBoxSx: SxProps = { + background: "#ffffff", + borderRadius: "10px", + px: 1, + py: 1, + height:"auto", + alignSelf: "flex-start", +}; + +export const titleSx: SxProps = { + fontSize: 20, + fontWeight: 300, + letterSpacing: 0.5, + color: "black", + mb: 2, +}; + +export const fieldLabelSx: SxProps = { + fontSize: 16, + fontWeight: 300, +}; + +export const agentFieldSx: SxProps = { + background: "#f1f1f1", + borderRadius: "8px", + height: "40px", + width: "100%", + "& .MuiOutlinedInput-input": { + padding: "10px 14px", + lineHeight: "20px", + }, + "& .MuiOutlinedInput-notchedOutline": { + border: "none", + }, +}; + +export const reasonFieldSx: SxProps = { + background: "#f1f1f1", + borderRadius: "8px", + width: "100%", + "& .MuiOutlinedInput-notchedOutline": { + border: "none", + }, +}; + +export const toggleRowSx: SxProps = { + display: "flex", + alignItems: "center", + justifyContent: "flex-end", + mt: 1, + mb: 2, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxSearchBar/ApplicationInboxSearchBarStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxSearchBar/ApplicationInboxSearchBarStyle.ts new file mode 100644 index 0000000..e8c20c9 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxSearchBar/ApplicationInboxSearchBarStyle.ts @@ -0,0 +1,27 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const searchBarContainerSx: SxProps = { + width: "100%", +}; + +export const searchFieldSx: SxProps = { + borderRadius: "10px", + background: "#fafafa", + fontSize: 20, + "& .MuiOutlinedInput-root": { + borderRadius: "10px", + background: "#fafafa", + height: 40, + borderColor: "#b0b0b0", + }, + "& .MuiOutlinedInput-input": { + fontSize: 20, + padding: "10px 16px", + }, + "& .MuiOutlinedInput-notchedOutline": { + borderColor: "#b0b0b0", + }, + "& .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline": { + borderColor: "#c84c03", +}, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxSearchBar/FilterSearchBarStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxSearchBar/FilterSearchBarStyle.ts new file mode 100644 index 0000000..5a3fcf8 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxSearchBar/FilterSearchBarStyle.ts @@ -0,0 +1,20 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const searchInputSx: SxProps = { + '& .MuiOutlinedInput-root': { + backgroundColor: '#F5F5F5', + borderRadius: '20px', + '& fieldset': { + borderColor: 'transparent', + }, + '&:hover fieldset': { + borderColor: '#E0E0E0', + }, + '&.Mui-focused fieldset': { + borderColor: '#C84C03', + }, + }, + '& .MuiInputBase-input': { + padding: '10px 14px', + }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxStyle.ts new file mode 100644 index 0000000..7e0bf5a --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/ApplicationInboxStyle.ts @@ -0,0 +1,27 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const mainContainerSx: SxProps = { + display: "flex", + flexDirection: "column", + alignItems: "flex-start", + width: "100%", + px:5, + mt:8, + height:"100%", + pb:2, +}; + +export const contentRowSx: SxProps = { + width:"100%", +}; + +export const leftColumnSx: SxProps = { + display: "grid", + gridTemplateRows: "1fr", + background:"#ffffff", + px:2, + py:2, + borderRadius:"10px", + gap:3, + maxHeight: "100vh", +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/FilterComponentsStyle/MultiSelectChipGroupStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/FilterComponentsStyle/MultiSelectChipGroupStyle.ts new file mode 100644 index 0000000..e69de29 diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/PropertyFilter/PropertyFilterStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/PropertyFilter/PropertyFilterStyle.ts new file mode 100644 index 0000000..584519b --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/styles/PropertyFilter/PropertyFilterStyle.ts @@ -0,0 +1,35 @@ +import type { SxProps, Theme } from "@mui/material"; + +export const filterButtonContainerSx: SxProps = { + display: 'flex', + justifyContent: 'flex-end', + mt: 2 +}; + +export const TypographySx: SxProps = { + +} + +export const DividerSx: SxProps = { + my: 2, + borderBottomWidth: 2 +} + +export const autoCompleteSx: SxProps = { + // Change border color when focused and not + "& .MuiOutlinedInput-root": { + "&.Mui-focused fieldset": { + borderColor: "#c84c03", + }, + + // Text color (optional for input) + color: "#c84c03", + }, + "& label.Mui-focused": { + color: "#c84c03", + }, + // Optional: Change chip color if desired + "input": { + color: "#c84c03", + }, +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/utils/debounce.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/utils/debounce.ts new file mode 100644 index 0000000..998fab1 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/utils/debounce.ts @@ -0,0 +1,25 @@ + +// React hook for debouncing a value. Useful for delaying updates (e.g., search input) until user stops typing. +import { useState, useEffect } from "react"; + + +/** + * Custom React hook that returns a debounced version of a value. + * The value will only update after the specified delay has passed without changes. + * + * @param value - The value to debounce + * @param delay - Delay in milliseconds before updating the debounced value + * @returns The debounced value + */ +export function useDebouncedValue(value: T, delay: number): T { + const [debounced, setDebounced] = useState(value); // State to hold the debounced value + + useEffect(() => { + // Set a timeout to update the debounced value after the delay + const handler = setTimeout(() => setDebounced(value), delay); + // Clear the timeout if value or delay changes before the timeout completes + return () => clearTimeout(handler); + }, [value, delay]); + + return debounced; // Return the debounced value +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/utils/searchAndFilterutil.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/utils/searchAndFilterutil.ts new file mode 100644 index 0000000..d226aa2 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-inbox/utils/searchAndFilterutil.ts @@ -0,0 +1,165 @@ + +// Utility functions for searching, filtering, and enriching application inbox data. +import type { AllApplicationModel } from "../models/getAllApplicationsModel"; + + +/** + * Represents an agent with optional profile and username fields. + */ +interface Agent { + id: string; // Unique agent ID + profile?: { + fullName?: string; // (Optional) Full name of the agent + }; + username?: string; // (Optional) Username of the agent +} + + +/** + * Represents the structure of agents data returned from the backend. + */ +interface AgentsData { + data?: { + users?: Agent[]; // (Optional) List of agent users + }; +} + + +/** + * Builds a mapping from agent ID to agent full name. + * @param agentsData - The agents data object + * @returns Record mapping agent IDs to names + */ +export function buildAgentIdToNameMap(agentsData: AgentsData): Record { + const map: Record = {}; + if (agentsData?.data?.users) { + agentsData.data.users.forEach((agent) => { + map[agent.id] = agent.profile?.fullName || "N/A"; // Use full name or fallback to 'N/A' + }); + } + return map; +} + + +/** + * Builds a mapping from agent ID to agent username. + * @param agentsData - The agents data object + * @returns Record mapping agent IDs to usernames + */ +export function buildAgentIdToUsernameMap(agentsData: AgentsData): Record { + const map: Record = {}; + if (agentsData?.data?.users) { + agentsData.data.users.forEach((agent) => { + map[agent.id] = agent.username || "N/A"; // Use username or fallback to 'N/A' + }); + } + return map; +} + + +/** + * Adds the agent's name to each property in the list, based on the agent ID. + * @param properties - List of application models + * @param agentIdToName - Mapping from agent ID to agent name + * @returns List of application models with agentName field populated + */ +export function enrichPropertiesWithAgentName( + properties: AllApplicationModel[], + agentIdToName: Record +): AllApplicationModel[] { + return properties.map(property => ({ + ...property, + agentName: agentIdToName[property.AssignedAgent ?? ""] || "N/A", + })); +} + + +/** + * Adds the agent's username to each property in the list, based on the agent ID. + * @param properties - List of application models + * @param agentIdToUsername - Mapping from agent ID to agent username + * @returns List of application models with agentUsername field populated + */ +export function enrichPropertiesWithAgentUsername( + properties: AllApplicationModel[], + agentIdToUsername: Record +): AllApplicationModel[] { + return properties.map(property => ({ + ...property, + agentUsername: agentIdToUsername[property.AssignedAgent ?? ""] || "N/A", + })); +} + + +/** + * Filters the list of properties based on agent, priority, zone, and search value. + * Only properties with Status 'ASSIGNED' are included. + * + * @param properties - List of application models + * @param agentsFilter - List of agent names to filter by + * @param searchValue - Search string to filter by various fields + * @param zonesFilter - List of zone numbers to filter by + * @param priority - Priority value to filter by + * @returns Filtered list of application models + */ +export function filterProperties( + properties: AllApplicationModel[], + agentsFilter: string[] = [], + searchValue: string = "", + zonesFilter: string[] = [], + priority: string = "" +) { + return properties + .filter(property => property.Status === "ASSIGNED") // Only include assigned properties + .filter(property => { + // Agent filter (by agent name) + if (agentsFilter.length > 0 && + !agentsFilter.some(agent => property.agentName === agent)) { + return false; + } + + // Priority filter (single selection) + if (priority && property.Priority !== priority) { + return false; + } + + // Zone filter (by ZoneNo, case insensitive) + if (zonesFilter && zonesFilter.length > 0) { + const propertyZone = property.Property.Address?.ZoneNo?.toString().toLowerCase(); + if (!zonesFilter.some(zone => zone.toLowerCase() === propertyZone)) { + return false; + } + } + + // Search filter (matches against several fields) + if (searchValue && searchValue.length > 0) { + const lcSearch = searchValue.toLowerCase(); + const fieldsToSearch = [ + property.agentName, + property.agentUsername, + property.ApplicationNo, + property.Property.PropertyNo, + property.Property.Address?.Locality, + property.Property.Address?.Street + ]; + if (!fieldsToSearch.some(field => + (field || '').toString().toLowerCase().includes(lcSearch) + )) { + return false; + } + } + + return true; // Include property if all filters pass + }); +} + + +/** + * Calculates the total number of pages for pagination. + * @param totalItems - Total number of items + * @param pageSize - Number of items per page + * @returns Total number of pages (minimum 1) + */ +export function getTotalPages(totalItems: number, pageSize: number): number { + return Math.max(Math.ceil(totalItems / pageSize), 1); +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/MapMarkerIcon/Proptery one.svg b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/MapMarkerIcon/Proptery one.svg new file mode 100644 index 0000000..76bd35e --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/MapMarkerIcon/Proptery one.svg @@ -0,0 +1,4 @@ + + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/MapMarkerIcon/close.svg b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/MapMarkerIcon/close.svg new file mode 100644 index 0000000..2d54b0e --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/MapMarkerIcon/close.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/MapMarkerIcon/edit_squaremap.svg b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/MapMarkerIcon/edit_squaremap.svg new file mode 100644 index 0000000..1e2515b --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/MapMarkerIcon/edit_squaremap.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/MapMarkerIcon/undo.svg b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/MapMarkerIcon/undo.svg new file mode 100644 index 0000000..b5ff1ba --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/MapMarkerIcon/undo.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/documentSectionIcon/search_activity.svg b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/documentSectionIcon/search_activity.svg new file mode 100644 index 0000000..52dc789 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/documentSectionIcon/search_activity.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/documentSectionIcon/task.svg b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/documentSectionIcon/task.svg new file mode 100644 index 0000000..adcb55b --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/documentSectionIcon/task.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/edit_square.svg b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/edit_square.svg new file mode 100644 index 0000000..ffeed7e --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Assets/edit_square.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/addRequestStyles/addRequestPopUpStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/addRequestStyles/addRequestPopUpStyle.ts new file mode 100644 index 0000000..e9976d4 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/addRequestStyles/addRequestPopUpStyle.ts @@ -0,0 +1,154 @@ + +// This file defines style objects for the Add Request popup component using Material-UI's sx prop. +// Each exported constant represents a set of styles for a specific UI element in the popup dialog. +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the main dialog paper (container) of the popup +export const dialogPaperStyle: SxProps = { + borderRadius: "22px", + p: 0, + minWidth: 420, + maxWidth: 510, + boxShadow: "0px 6px 24px 0px rgba(36,66,117,0.16)", +}; + +// Styles for the title text of the dialog +export const dialogTitleStyle: SxProps = { + fontWeight: 700, + fontSize: "22px", + mt: 3, + mb: 1.5, + textAlign: "center", + color: "#121212", +}; + +// Styles for the close (X) button in the dialog +export const closeButtonStyle: SxProps = { + position: "absolute", + top: 14, + right: 14, + bgcolor: "#F3F8FA", + color: "#0B4B66", + width: 36, + height: 36, + borderRadius: "50%", + minWidth: 0, + boxShadow: "none", + "&:hover": { + bgcolor: "#ebf3fa", + }, +}; + +// Styles for form field labels in the popup +export const labelStyle: SxProps = { + fontWeight: 500, + color: "#152024", + fontSize: "15px", + mb: "6px", +}; +// Styles for the content area or text fields in the popup +export const contentStyle: SxProps = { + fontWeight: 300, + border: '1px solid #E0E6ED', + p:1, + color: "#152024", + fontSize: "15px", + borderRadius: "8px", + mb: "6px", +}; + +// Styles for the main text input fields +export const textFieldStyle: SxProps = { + width: "100%", + bgcolor: "#F8FAFB", + borderRadius: "10px", + mb: 2.5, + textarea: { minHeight: 86, maxHeight: 120 }, +}; + +// Styles for the file input dropzone area +export const fileInputRoot: SxProps = { + bgcolor: "#F8FAFB", + border: "1.5px dashed #DBDFE6", + borderRadius: "8px", + p: "25px 0", + mb: 2.2, + display: "flex", + flexDirection: "column", + alignItems: "center", + textAlign: "center", + minHeight: 80, + cursor: "pointer", +}; + +// Styles for the container displaying uploaded files +export const uploadedFileStyle: SxProps = { + display: "flex", + alignItems: "center", + justifyContent: "space-between", + mt: 1, + mb: 2, + px: 2, + py: 1, + borderRadius: "8px", + bgcolor: "#F9FEFC", + border: "1px solid #CEF4ED", +}; + +// Styles for the download button for uploaded files +export const downloadBtnStyle: SxProps = { + color: "#0B4B66", + bgcolor: "transparent", + borderRadius: "8px", + px: 1.5, + py: "4px", + fontWeight: 500, + fontSize: "14px", + boxShadow: "none", + "&:hover": { + bgcolor: "#EAFEFB", + }, +}; + +// Styles for the button bar at the bottom of the popup +export const buttonBarStyle: SxProps = { + display: "flex", + width: "100%", + justifyContent: "flex-end", + gap: 1.5, + mt: 3, + mb: 2, +}; + +// Styles for the cancel button in the popup +export const cancelBtnStyle: SxProps = { + color: "#0B4B66", + bgcolor: "#F8FAFB", + borderRadius: "8px", + width: 104, + height: 36, + fontWeight: 600, + fontSize: "15px", + textTransform: "none", + boxShadow: "none", + border: "1px solid #E0E6ED", + "&:hover": { + bgcolor: "#E9F0F5", + }, +}; + +// Styles for the submit button in the popup +export const submitBtnStyle: SxProps = { + color: "#fff", + bgcolor: "#0B4B66", + borderRadius: "8px", + width: 104, + height: 36, + fontWeight: 600, + fontSize: "15px", + textTransform: "none", + boxShadow: "none", + "&:hover": { + bgcolor: "#09374b", + }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/addRequestStyles/confirmationPopUp.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/addRequestStyles/confirmationPopUp.ts new file mode 100644 index 0000000..c9cf242 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/addRequestStyles/confirmationPopUp.ts @@ -0,0 +1,107 @@ + +// This file defines style objects for the confirmation popup component using Material-UI's sx prop. +// Each exported constant represents a set of styles for a specific UI element in the confirmation dialog. +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the main dialog paper (container) of the confirmation popup +export const confirmDialogPaperStyle: SxProps = { + borderRadius: "20px", + minWidth: 390, + maxWidth: 410, + p: 0, + boxShadow: "0px 6px 36px 0px rgba(36, 66, 117, 0.19)", +}; + +// Styles for the title text in the confirmation dialog +export const confirmTitleStyle: SxProps = { + fontWeight: 700, + fontSize: "20px", + mt: 3.5, + mb: 2, + textAlign: "center", + color: "#1C2237", + letterSpacing: 0.2, +}; + +// Styles for the description text in the confirmation dialog +export const confirmDescStyle: SxProps = { + color: "#4F566B", + fontSize: "15.3px", + fontWeight: 500, + lineHeight: 1.44, + px: 4.6, + mb: 2.2, + textAlign: "center", +}; + +// Styles for the note or additional information text +export const confirmNoteStyle: SxProps = { + color: "#77809A", + fontSize: "14px", + fontWeight: 400, + textAlign: "center", + px: 4, + mb: 2, +}; + +// Styles for the button bar containing action buttons +export const confirmButtonBar: SxProps = { + display: "flex", + justifyContent: "center", + gap: 2.3, + px: 4, + mb: 4, +}; + +// Styles for the reject/cancel button +export const rejectBtn: SxProps = { + border: "1.6px solid #0B4B66", + color: "#0B4B66", + bgcolor: "#fff", + borderRadius: "8px", + fontWeight: 700, + fontSize: "15.2px", + height: "38px", + width: "125px", + textTransform: "none", + boxShadow: "none", + "&:hover": { + bgcolor: "#EBF2FF", + borderColor: "#0B4B66", + }, +}; + +// Styles for the confirm/accept button +export const confirmBtn: SxProps = { + border: "1.6px solid #0B4B66", + bgcolor: "#0B4B66", + color: "#fff", + borderRadius: "8px", + fontWeight: 700, + fontSize: "15.2px", + height: "38px", + width: "125px", + textTransform: "none", + boxShadow: "none", + "&:hover": { + bgcolor: "#082e44", + borderColor: "#0B4B66", + }, +}; + +// Styles for the close (X) button in the confirmation dialog +export const closeButtonStyle: SxProps = { + position: "absolute", + right: 13, + top: 16, + bgcolor: "#F3F8FA", + color: "#0B4B66", + width: 33, + height: 33, + borderRadius: "50%", + minWidth: 0, + boxShadow: "none", + "&:hover": { + bgcolor: "#ebf3fa", + }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/propertiesStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/propertiesStyle.ts new file mode 100644 index 0000000..84a61a3 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/propertiesStyle.ts @@ -0,0 +1,70 @@ + +// This file defines style objects for the properties view and related UI elements in the application, using Material-UI's sx prop. +// Each exported constant represents a set of styles for a specific section or component in the properties view. + + +// Styles for the main inner container of the properties page +export const innerContainerStyle = { + width: '100%', + boxSizing: 'border-box', + minHeight: '100vh', + display: 'flex', + flexDirection: 'column', + overflow: 'none', + justifyContent: 'space-between', + pr: 2, + pl:2 +}; + +// Styles for the main title text on the properties page +export const titleStyle = { + fontSize: 36, + fontWeight: 700, + ml: '20px', + mt: '30px', +}; + +// Styles for the subtitle text under the main title +export const subtitleStyle = { + fontSize: 24, + fontWeight: 300, + ml: 3 +}; + +// Styles for the container holding action buttons or controls +export const actOnApplicaiton= { +display: 'flex', + flexDirection: 'column', + justifyContent: 'space-between', + alignItems: 'center', + mb:2 + +} + +// Styles for the select action dropdown/button +export const selectActionStyle = { + bgcolor: '#0b5a7a', + color: '#fff', + border: 'none', + borderRadius: '8px', + fontSize: '0.95rem', + cursor: 'pointer', + minWidth: 170, + boxShadow: 'none', + '& .MuiSelect-icon': { color: '#fff' }, + '& fieldset': { border: 'none' }, + '& .MuiMenuItem-root': { color: '#0f172a' } +}; + +// Styles for the dropdown menu paper (background and text color) +export const selectMenuPaperProps = { + sx: { bgcolor: '#fff', color: '#0f172a' }, +}; + +// Styles for the main content grid layout of the properties page +export const mainContentStyle = { + gridTemplateColumns: '1fr var(--right-panel-width)', + gridTemplateRows: 'auto 1fr', + padding: '1rem', + alignItems: 'start', +}; diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/ApplicationTrackStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/ApplicationTrackStyle.ts new file mode 100644 index 0000000..5fb1148 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/ApplicationTrackStyle.ts @@ -0,0 +1,184 @@ +// Styles for the main container of the application tracking component +export const containerStyle = (isMobile: boolean) => ({ + width: { xs: "calc(100% - 12px)", sm: "auto" }, + p: isMobile ? "16px 4px 10px 4px" : "16px 4px 10px 4px", + flex: 1, + overflow: "hidden", + mx: "auto", + borderRadius: "25px", + mt: isMobile ? "32px" : "0px", + mb: isMobile ? "8px" : "0px", + minWidth: 0, +}); + +// Styles for the circular step indicator in the timeline +export const timelineCircleStyle = { + width: "28px", + height: "28px", + borderRadius: "50%", + border: "2px solid #c2c2c2ff", + background: "#ffffffff", + color: "#000000ff", + display: "flex", + alignItems: "center", + justifyContent: "center", + fontWeight: "bold", + zIndex: 1, +}; + +// Styles for the vertical bar connecting timeline steps +export const timelineVerticalBarStyle = { + position: "absolute", + top: "32px", + left: "50%", + width: "4px", + height: "calc(100% - 32px)", + transform: "translateX(-50%)", + background: "#d0d0d0", + borderRadius: "1.5px", + zIndex: 0, +}; + +// Styles for the title of a comment or status update +export const commentTitleStyle = { + fontSize: 14, + color: "#0B4B66", + fontWeight: 700, + mb: "2px", +}; + +// Styles for the main text of a comment or status update +export const commentTextStyle = { + fontSize: 13, + color: "#1a1a1a", + fontWeight: 400, + lineHeight: 1.6, + mb: "2px", +}; + +// Styles for the container holding file attachments +export const fileBoxStyle = { + mt: "14px", +}; + +// Styles for the box displaying file information and actions +export const fileInfoBoxStyle = { + display: "flex", + alignItems: "center", + gap: "12px", + mb: "12px", +}; + +// Styles for the file name text +export const fileNameStyle = { + color: "#1a1a1a", + fontSize: 13, + fontWeight: 400, +}; + +// Styles for the date text next to file or comment +export const dateTextStyle = { + color: "#858585", + fontSize: 13, + fontWeight: 400, + ml: 1, +}; + +// Styles for the description or additional details text +export const descriptionStyle = { + fontSize: 13, + color: "#333333", + mt: "4px", + lineHeight: 1.6, +}; + +// Styles for the box containing the add button, responsive to mobile +export const addButtonBoxStyle = (isMobile: boolean) => ({ + width: "100%", + display: "flex", + justifyContent: "flex-end", + background: "none", + position: "static", + bottom: "unset", + left: "unset", + transform: "none", + maxWidth: isMobile ? "100%" : "none", + boxShadow: "none", + zIndex: "auto", + boxSizing: "border-box", + mt: "20px", +}); + +// Styles for the download button for attached files +export const downloadButtonStyle = { + background: "#ffffffff", + color: "#10729B", + fontSize: "10px", + fontWeight: 600, + border: "none", + borderRadius: "8px", + height: "28px", + width: "150px", + cursor: "pointer", + transition: "background 0.2s", + boxShadow: "none", + alignSelf: "flex-end", + "&:hover": { + background: "#ffffffff", + boxShadow: "0 4px 14px rgba(205, 209, 214, 0.35)", + transform: "translateY(-1px)", + }, +} + +// Styles for the add button to upload or add new items +export const addButtonStyle = { + background: "#0B4B66", + color: "#fff", + fontSize: "14px", + fontWeight: 400, + border: "none", + borderRadius: "8px", + height: "28px", + width: "150px", + cursor: "pointer", + transition: "background 0.2s", + boxShadow: "none", + alignSelf: "flex-end", + "&:hover": { + background: "#0B4B66", + boxShadow: "0 4px 14px rgba(18, 47, 83, 0.35)", + transform: "translateY(-1px)", + }, +}; + +// Styles for fields that have been modified (highlighted) +export const fieldModifiedStyle = { + fontWeight: 600, + fontSize: "13px", + color: "#325252", + mb: "6px", +}; + +// Styles for the GIS (Geographic Information System) info box +export const gisBoxStyle = { + mt: "4px", + mb: "2px", +}; + +// Styles for the GIS reference text box +export const gisReferanceStyle = { + color: "#1a1a1a", + fontSize: "12px", + background: "#f6fafb", + px: "6px", + py: "4px", + borderRadius: "6px", + mb: "4px", + display: "inline-block", +}; + +// Styles for the GIS reference ID text +export const gisreferanceIdStyle = { + color: "#4257b4", + fontWeight: 400, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/AssignmentBox.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/AssignmentBox.ts new file mode 100644 index 0000000..01abc7e --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/AssignmentBox.ts @@ -0,0 +1,63 @@ + +// This file defines style objects for the Assignment/Reassignment box UI in the application view, using Material-UI's sx prop. +// Each exported constant represents a set of styles for a specific UI element in the assignment box. +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the main container box of the reassignment section +export const reassignmentBoxSx: SxProps = { + background: "#ffffff", + borderRadius: "10px", + px: 1, + py: 1, + height:"auto", + alignSelf: "flex-start", +}; + +// Styles for the title text in the reassignment box +export const titleSx: SxProps = { + fontSize: 20, + fontWeight: 300, + letterSpacing: 0.5, + color: "black", + mb: 2, +}; + +// Styles for the labels of form fields +export const fieldLabelSx: SxProps = { + fontSize: 16, + fontWeight: 300, +}; + +// Styles for the agent selection input field +export const agentFieldSx: SxProps = { + background: "#f1f1f1", + borderRadius: "8px", + height: "40px", + width: "100%", + "& .MuiOutlinedInput-input": { + padding: "10px 14px", + lineHeight: "20px", + }, + "& .MuiOutlinedInput-notchedOutline": { + border: "none", + }, +}; + +// Styles for the reason input field +export const reasonFieldSx: SxProps = { + background: "#f1f1f1", + borderRadius: "8px", + width: "100%", + "& .MuiOutlinedInput-notchedOutline": { + border: "none", + }, +}; + +// Styles for the row containing toggle switches or actions +export const toggleRowSx: SxProps = { + display: "flex", + alignItems: "center", + justifyContent: "flex-end", + mt: 1, + mb: 2, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/DocumentsCardStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/DocumentsCardStyle.ts new file mode 100644 index 0000000..35c8ab8 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/DocumentsCardStyle.ts @@ -0,0 +1,353 @@ +// This file defines style objects for the documents card and its elements in the application view, using Material-UI's sx prop. +// Each exported constant represents a set of styles for a specific UI element related to document display and actions. + +import { type SxProps, type Theme } from "@mui/material"; + +// Styles for the outer container of the documents card +export const documentsCardOuterStyle: SxProps = { + background: "#fff", + borderRadius: 2, + boxShadow: "0 1px 12px rgba(247, 243, 243, 0.97)", + border: "2px solid #ececec", + p: "0px", + width: "100%", + mb: 3, +}; + +// Styles for the header section of the documents card +export const documentsCardHeaderStyle: SxProps = { + display: "flex", + alignItems: "center", + justifyContent: "space-between", + pb: 2, + // borderBottom: "1px solid #f3edea", + px: 2, +}; + +// Styles for the main title of the documents card +export const documentsTitleStyle: SxProps = { + mt: 1, + mb: 0.5, + fontWeight: 550, + fontSize: 20, +}; + +// Styles for the subtitle or description under the main title +export const documentsSubtitleStyle: SxProps = { + color: "#585858", + mt: -1.2, + fontSize: 11.5, + lineHeight: 1.2, +}; + +// Styles for the sort/filter label or button +export const documentsSortStyle: SxProps = { + fontWeight: 500, + color: "#977a47", + mt: 0.5, +}; + +// Styles for the list container holding all document rows +export const documentsListStyle: SxProps = { + mt: 1, + justifyContent: "center", + padding: 0, +}; + +// ...existing code... +// Styles for the select dropdown button in the documents card +export const SelectButtonStyle: SxProps = { + borderRadius: "999px", + height: 36, + px: 3, + marginTop: 2, + + // keep select content layout local + "& .MuiSelect-select": { display: "flex", alignItems: "center", gap: 1 }, + + // default outline color (outlined variant) + "& .MuiOutlinedInput-notchedOutline": { + borderColor: "#dedede", + }, + + // hover the notched outline + "&:hover .MuiOutlinedInput-notchedOutline": { + borderColor: "#c24b4b", + }, + + // when this Select root is focused, change only the notched outline (no root override) + "&.Mui-focused .MuiOutlinedInput-notchedOutline": { + borderColor: "#d32f2f", + borderWidth: 1.5, + }, + + // remove native focus outline on inner select element + "& .MuiSelect-select:focus": { + outline: "none", + }, +}; +// ...existing code... + +// Styles for each individual document row in the list +export const EachDocumentRowStyle: SxProps = { + display: "flex", + alignItems: "center", + minWidth: "90%", + border: "1px solid #000000ff", + borderRadius: 2, + // justifyContent: "space-between", + width: "100%", + gap: 2, + padding: "10px", + } + +// Styles for the icon container on the right side of a document row +export const RightIconStyle: SxProps = { + display: "flex", + flexDirection: "column", + alignItems: "center", + justifyContent: "center", + ml: "auto", // push to the far right inside the row + // border: "1px solid #000", + borderRadius: 1, + px: 1, + py: 0.5, +} + +// Styles for a document row, with optional last-row logic +export const documentRowStyle = (_isLastRow: boolean): SxProps => ({ + position: 'relative', + display: "flex", + alignItems: "center", + justifyContent: "space-between", + px: 1.5, + py: 0.6, +}); + +// Styles for the icon box displaying the document type or status +export const documentIconBoxStyle: SxProps = { + + bgcolor: "#F5F5F5", + borderRadius: "10px", + display: "flex", + alignItems: "center", + justifyContent: "center", + mr: 0, + ml: 1, + width: 58, + height: 58, + border: "1px solid #e8e8e8", + boxShadow: "0 1px 2px rgba(0,0,0,0.04)", +}; + + +// Styles for the dropdown selector in the documents card +export const DropdownStyle: SxProps = { + // border: "1px solid #000000ff", + minWidth: 100, + // borderColor: "#ee1212ff" +}; +// Styles for the text box containing document details +export const documentTextBoxStyle: SxProps = { + minWidth: "60%", +}; + +// Styles for the document title text +export const documentTitleStyle: SxProps = { + fontWeight: 800, + fontSize: 20, + color: "#383838", + lineHeight: 1.3, +}; + +// Styles for the metadata text (e.g., date, type) under the document title +export const documentMetaStyle: SxProps = { + fontSize: 12, + color: "#918c8cff", + fontWeight: 400, + mt: "2px", + textOverflow: "ellipsis", + overflow: "hidden", +}; + +// Styles for the verified status label (legacy, prefer new styles below) +export const verifiedStyle: SxProps = { + // kept for backwards-compat; prefer the new verified* styles below + color: "#16a34a", + fontSize: 12, + background: "#eaeaeaff", + borderRadius: "10px", + px: 1.7, + py: 0.3, + fontWeight: 600, +}; + +// Styles for the container of the verified status +export const verifiedContainerStyle: SxProps = { + // render inside the actions column flow (no absolute positioning) + display: 'flex', + alignItems: 'center', + gap: 1, + backgroundColor: '#0f7d2eff', + borderRadius: 5, + paddingLeft: 1.6, + paddingTop: 0.4, + mb: 1.2, + // removed ml so it doesn't push the Act button + ml: 0, + mr: 0, + alignContent: 'center', +}; + +// Styles for the container of the rejected status +export const rejectedContainerStyle: SxProps = { + display: 'flex', + alignItems: 'center', + gap: 1, + backgroundColor: '#A30222', + borderRadius: 5, + paddingLeft: 1.5, + paddingTop: 0.4, + paddingRight: 1.5, + mb: 1.2, + // removed ml so it doesn't push the Act button + ml: 0, + mr: 0.2, + alignContent: 'center', +}; + +// Styles for the container of the pending status +export const PendingContainerStyle: SxProps = { + display: 'flex', + alignItems: 'center', + gap: 1, + backgroundColor: "#A59400", + borderRadius: 5, + // match layout with verified/rejected containers + paddingLeft: 1.2, + paddingTop: 0.4, + paddingRight: -1.5, + mb: 1.2, + ml: 0, + mr: 0, + alignContent: 'center', +}; + +// Styles for the text of the pending status +export const PendingTextStyle: SxProps = { +// same sizing/spacing as verified/rejected text, only color changed for pending + color: '#ffffffff', + fontSize: 18, + fontWeight: 500, + lineHeight: 1, + mb: 0.5, + ml: 0, + paddingLeft: 1, + paddingRight: 1, + paddingTop: 0.2, + paddingBottom: 0.2, +}; + +// Styles for the text of the rejected status +export const rejectedTextStyle: SxProps = { + color: "#ffffffff", + fontWeight: 500, + fontSize: 18, + lineHeight: 1, + mb: 0.5, + mr: 1.0, + ml: 1, +} + +// Styles for the text of the verified status +export const verifiedTextStyle: SxProps = { + color: '#ffffffff', + fontSize: 18, + fontWeight: 500, + lineHeight: 1, + mb: 0.5, + ml: 0, + paddingLeft: 1, + paddingRight: 1, + paddingTop: 0.2, + paddingBottom: 0.2, +}; + +// Styles for the icon box of the verified status +export const verifiedIconBoxStyle: SxProps = { + width: 17, + height: 17, + borderRadius: '50%', + border: '2px solid #ffffffff', + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + color: '#ffffffff', + mb: 0.5, + mr: 2, + mt: 0.2, +}; + +// Styles for the icon box of the pending status +export const PendingIconBoxStyle: SxProps = { + width: 18, + height: 18, + borderRadius: '50%', + // border: '2px solid #ffffffff', + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + color: '#ffffffff', + mb: 0.5, + mr: 2, + mt: 0.2, +} + +// Styles for the icon box of the cancel/rejected status +export const CancelIconBoxStyle: SxProps = { + color: '#ffffffff' , + width: 20, + height: 20, + // border: '2px solid #D32F2F', + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + fontSize: 18, + mb: 0.5, + ml: -0.9, +} + +// Styles for the actions column on the right side of the document card +export const documentActionsStyle: SxProps = { + display: 'flex', + flexDirection: 'column', + alignItems: 'center', + justifyContent: 'flex-start', + gap: 0.8, + // compact width on the right + minWidth: 90, + pr: 1, + pt: 0.8, + // make the actions area look like a right-side box inside the card + border: '1px solid #e6e6e6', + borderRadius: 6, + px: 1, + py: 0.5, + bgcolor: '#fff', +}; + +// Styles for the icon button used for document actions (e.g., download, delete) +export const documentIconButtonStyle: SxProps = { + // background: "#f8fafc", + // border: "1px solid #dedede", + borderRadius: 6, + width: 32, + height: 32, + p: 0.4, + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + "&:hover": { bgcolor: "#f1edea" }, + // make the icons visually prominent (orange) to match the screenshot + color: '#c85a1a', +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/MapComponent.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/MapComponent.ts new file mode 100644 index 0000000..1aa121d --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/MapComponent.ts @@ -0,0 +1,114 @@ + +// This file defines style objects for the MapComponent and its UI elements in the application view, using Material-UI's sx prop. +// Each exported constant represents a set of styles for a specific map-related UI element. +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the outer container of the map component +export const mapComponentOuterStyle: SxProps = { + // height: 350, + borderRadius: 2, // 12px + border: '1px solid #000', + p: 0, + position: 'relative', + mt: 2, + gridColumn: { xs: undefined, md: '1 / span 2' }, + background: '#fff', + // minHeight: 300, + overflow: 'hidden' +}; + +// Styles for the wrapper container that holds the map +export const mapWrapperContainerStyle: SxProps = { + width: '100%', + height: '100%', + borderRadius: 1, // 8px + background: '#fff', + position: 'relative', + // minHeight: 400, // Ensures height for all parents +}; + +// Styles for the div that directly renders the map +export const mapDivStyle: SxProps = { + height: '350px', + width: '100%', + borderRadius: 1, + overflow: 'hidden', + // minHeight: 400, +}; + +// Styles for the overlay that sits on top of the map (e.g., for disabling interaction) +export const mapOverlayStyle: SxProps = { + position: 'absolute', + top: 0, left: 0, right: 0, bottom: 0, + zIndex: 20, + background: 'rgba(255,255,255,0)', + cursor: 'pointer', +}; + +// Styles for the panel that holds map action buttons (bottom right corner) +export const mapButtonPanelStyle: SxProps = { + position: 'absolute', + right: 14, + bottom: 16, + display: 'flex', + flexDirection: 'column', + gap: '8px', + zIndex: 1000, +}; + +// Styles for the main action button(s) on the map +export const mapButtonStyle: SxProps = { + background: '#fff', + border: '1px solid #f1a37c', + color: '#c75b2f', + px: 1.5, + py: 0, + paddingTop: 0, + borderRadius: '20px', + fontSize: '0.85rem', + cursor: 'pointer', + minWidth: 0, + boxShadow: 'none', + textTransform: 'none', + '&:hover': { + background: '#fff5f0', + borderColor: '#d67645', + color: '#c75b2f', + }, + + zIndex: 1001, +}; + +// Styles for circular icon buttons on the map (e.g., zoom, undo) +export const mapIconButtonStyle: SxProps = { + // base visual same as mapButtonStyle but circular + ...mapButtonStyle, + width: 36, + height: 36, + minWidth: 36, + px: 0, + py: 0, + borderRadius: '70%', + display: 'inline-flex', + alignItems: 'center', + justifyContent: 'center', + boxShadow: 'none', + '&:hover': { + background: '#fff5f0', + borderColor: '#d67645', + color: '#c75b2f', + }, +} + +// Styles for the undo action button, based on mapIconButtonStyle +export const mapUndoButtonStyle: SxProps = { + ...mapIconButtonStyle, + // keep the same outer dimensions as other icon buttons so border thickness/shape stays consistent + width: 36, + height: 36, + minWidth: 36, + // small inner padding tweak + px: 0.25, + py: 0.25, + boxShadow: 'none', +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/cardsStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/cardsStyle.ts new file mode 100644 index 0000000..0edb812 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/cardsStyle.ts @@ -0,0 +1,133 @@ + +// This file defines style objects for property and note cards in the application view, using Material-UI's sx prop. +// Each exported constant represents a set of styles for a specific card or card element. +import { type SxProps, type Theme } from "@mui/material"; + +// Styles for the grid layout containing property detail cards +export const propertyDetailsGridStyle = { + display: 'grid', + gridTemplateColumns: { xs: '1fr', md: '2.4fr 2.4fr 270px' }, + gridAutoRows: 'auto', + gap: '0.9rem', + marginTop: '1rem', +}; + +// Styles for the main property detail card +export const cardStyle = { + bgcolor: '#fff', + p: '1rem 1.25rem', + borderRadius: '8px', + border: '1px solid #e9e9ef', + position: 'relative', + boxSizing: 'border-box', + display: 'flex', + flexDirection: 'column', + alignSelf: 'stretch', +}; + +// Styles for the edit button on a card +export const editButtonStyle = { + position: 'absolute', + right: 10, + top: 10, + border: 'none', + bgcolor: '#fff', + borderRadius: '6px', + p: '6px', + boxShadow: '0 1px 2px rgba(0, 0, 0, 0.04)', + cursor: 'pointer', + '&:hover': { bgcolor: '#f4f4f4' }, +}; + +// Styles for the label text in a card row +export const cardLabelStyle = { + fontWeight: 800, + marginRight: '8px', + fontSize: 14 +}; +// Styles for the content text in a card row +export const cardContentStyle = { + fontSize: 14, + fontWeight: 300 +}; + +// Styles for a row within a card +export const cardRowStyle = { + mb: 0.3, +}; + +// Styles for the header label of a card +export const cardHeaderLabelStyle: SxProps = { + fontSize: 16, + fontStyle: 'italic', + mb: '10px', +}; +// Styles for the last row in a card (currently empty, can be extended) +export const lastCardRowStyle: SxProps = {}; + +// Styles for the note card component +export const noteCardStyle: SxProps = { + bgcolor: '#fff', + p: '1rem 1.25rem', + borderRadius: '8px', + border: '1px solid #e9e9ef', + gridColumn: { md: 'span 2' }, + alignSelf: 'stretch', +}; + +// Styles for the header section of a note card +export const noteHeaderStyle: SxProps = { + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', + mb: 0.5, +}; + +// Styles for the label in the note card header +export const noteLabelStyle: SxProps = { + fontStyle: 'italic', + fontSize: 15, + fontWeight: 400, + mr: 1, +}; + +// Styles for the date display in the note card header +export const noteDateStyle: SxProps = { + fontSize: 12, + border: '#424242 1px solid', + borderRadius: '10px', + px: '0.6em', + py: '0.18em', +}; + +// Styles for the main content text of a note card +export const noteContentTextStyle: SxProps = { + fontWeight: 300, + fontSize: 14, +}; + +// --- Added for inline style replacement below --- + +// Styles for the card that tracks application progress or status +export const trackCardStyle: SxProps = { + alignSelf: 'start', + position: 'relative', + gridColumn: { xs: '1 / -1', md: '3 / 4' }, + gridRow: { md: '1 / span 4' }, + marginTop: { xs: '1rem', md: 0 }, + minWidth: 250, + boxShadow: { xs: "none", sm: "0 1px 12px rgba(0,0,0,0.1)" }, + minHeight: { xs: 'auto', md: "100vh" }, + background: { xs: "#ffffff", sm: "#f0f0f0" }, + borderRadius: { xs: 0, sm: "18px" }, + display: "flex", + flexDirection: "column", + alignItems: "center", +}; + +// Styles for the note card when displayed in a grid layout +export const noteCardGridStyle: SxProps = { + ...noteCardStyle, + gridColumn: { xs: '1 / -1', md: '1 / span 2' }, + marginTop: 2 +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/propertiesStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/propertiesStyle.ts new file mode 100644 index 0000000..ea8e5c4 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/propertiesStyle.ts @@ -0,0 +1,66 @@ +// import type { SxProps, Theme } from "@mui/material"; + +// export const dashboardBoxStyle: SxProps = { +// position: 'relative', +// minHeight: '100vh', +// color: '#0f172a', +// width: '100%', +// fontFamily: 'Inter,Segoe UI,Roboto,Arial,Helvetica,sans-serif' +// }; + +// export const mainAreaBoxStyle: SxProps = { +// display: 'flex', +// flexDirection: 'column', +// minHeight: '100vh', +// overflow: 'auto' +// }; + +// export const topbarBoxStyle: SxProps = { +// p: 0, +// ml: 0, +// position: 'relative', +// }; + +// export const titleAreaBoxStyle: SxProps = { +// display: 'flex', +// flexDirection: 'column', +// gap: '8px', +// mt: '18px' +// }; + +// export const titleTypoStyle: SxProps = { +// fontSize: 36, +// fontWeight: 700, +// ml: '20px', +// mt: '40px' +// }; + +// export const jurActionSelectStyle: SxProps = { +// position: 'absolute', +// right: 15, +// top: 85, +// bgcolor: '#0b5a7a', +// color: '#fff', +// border: 'none', +// py: '10px', +// px: '14px', +// borderRadius: '8px', +// fontSize: '0.95rem', +// cursor: 'pointer', +// zIndex: 1100, +// minWidth: 170, +// boxShadow: 'none', +// '& .MuiSelect-icon': { color: '#fff' }, +// '& fieldset': { border: 'none' }, +// '& .MuiMenuItem-root': { color: '#0f172a' } +// }; + +// export const contentBoxStyle: SxProps = { +// display: 'grid', +// gridTemplateColumns: '1fr var(--right-panel-width)', +// gridTemplateRows: 'auto 1fr', +// gap: 18, +// padding: '1rem', +// alignItems: 'start', +// marginTop: '40px', +// }; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/searchPropertyChangeLogStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/searchPropertyChangeLogStyle.ts new file mode 100644 index 0000000..fc5c219 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/searchPropertyChangeLogStyle.ts @@ -0,0 +1,177 @@ + +// This file defines style objects for the property change log/history view in the application, using Material-UI's sx prop. +// Each exported constant represents a set of styles for a specific UI element in the change log/history section. +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the main container holding the application history and preview +export const applicatonHistoryStyle: SxProps = { + display: "flex", + gap: "24px", + width: "100%", + mt: 0, +}; + +// Styles for the preview card box (e.g., document/image preview) +export const previewBoxCardStyle: SxProps = { + flex: 1, + display: "flex", + alignItems: "center", + justifyContent: "center", + minWidth: 250, + minHeight: 280, + p: 6, + borderRadius: 2, + bgcolor: "#fff", + // boxShadow: "0 1px 8px rgba(0,0,0,.03)", + border: "2px dashed #888888ff", +}; + +// Styles for centering content inside the preview box +export const previewCenteredStyle: SxProps = { + textAlign: "center", +}; + +// Styles for the icon displayed in the preview box +export const previewIconStyle: SxProps = { + fontSize: 32, + color: "#c75b2f", + mb: 1, +}; + +// Styles for the subtitle or description in the preview box +export const previewSubStyle: SxProps = { + color: "#888", + fontSize: 14, +}; + +// Styles for the card displaying the application history log +export const applicationHistoryCardStyle: SxProps = { + flex: 2, + bgcolor: "#fff", + p: 2, + borderRadius: 2, + boxShadow: "0 1px 8px rgba(0,0,0,.03)", + border: "1px solid #ececec", +}; + +// Styles for the title of the application history section +export const applicationHistoryTitleStyle: SxProps = { + mb: 0.5, +}; + +// Styles for the subtitle or description in the history section +export const historySubStyle: SxProps = { + color: "#6b7280", + fontSize: 13, + mb: 1.5, +}; + +// Styles for each item/row in the history log +export const historyItemStyle: SxProps = { + display: "flex", + position: "relative", + justifyContent: "space-between", + alignItems: "flex-start", + borderBottom: "1px solid #eee", + py: 1.5, + gap: 2, + width: '100%' +}; + +// Styles for the left section of a history item (main content) +export const historyLeftStyle: SxProps = { + display: "flex", + borderBottom: "1px solid #eee", + p: 1.5, + m: 1.5, + width: '100%', + borderRadius: 2, + border: "2px solid rgba(0, 0, 0, 0.18)", + background: "rgba(255, 255, 255, 0.45)", + boxShadow: "0 4px 30px rgba(0,0,0,0.04)", + backdropFilter: "blur(8px)", + WebkitBackdropFilter: "blur(8px)", + // Remove height and minHeight! +}; + +// Styles for the year or main label in the history item +export const historyYearStyle: SxProps = { + fontWeight: "bold", + color: "#c75b2f", + minWidth: 48, + fontSize: 18, +}; + +// Styles for the main content column in a history item +export const historyMainStyle: SxProps = { +display: "flex", + flexDirection: "column", + gap: "2px", + // Remove height/minHeight! + + +}; + +// Styles for the button to view a location on the map +export const viewLocationButtonStyle: SxProps = { + + alignSelf: 'flex-start', + mt: '4px', + background: "#DBFAD3", + color: "black", + borderRadius: "16px", + px: 2, + py: "4px", + fontSize: 10, + width: '132px', + "&:hover": { + background: "#bdf9b1", + color: "#000", + }, +}; +// Styles for the right section of a history item (actions, dates) +export const historyRightStyle: SxProps = { + display: "flex", + flexDirection: "column", + alignItems: "end", + gap: "10px", + ml: 'auto' +}; + +// Styles for the date label in a history item +export const historyDateStyle: SxProps = { + fontSize: 13, + color: "#000000ff", + borderRadius: "8px", + border: "1px solid #000000ff", + px: 0.5, +}; + +// Styles for the status label (e.g., approved, pending) in a history item +export const historyStayleStyle: SxProps = { + color: "white", + width: "102px", + textAlign: "center", + backgroundColor: "#00703C", + fontSize: 13, + borderRadius: "8px", +}; + +// Styles for the download button in the history section +export const downloadButtonStyle: SxProps = { + position: "absolute", + right: "8px", + bottom: "10px", + background: "#ffffffff", + color: "#f1a37c", + border: "#f1a37c 1px solid", + borderRadius: "16px", + px: 2, + py: "4px", + fontSize: 13, + boxShadow: "none", + "&:hover": { + background: "#ee8830", + color: "#ffffff" + } +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/selectorTabsStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/selectorTabsStyle.ts new file mode 100644 index 0000000..4d35784 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/Styles/searchPropertyStyles/selectorTabsStyle.ts @@ -0,0 +1,43 @@ + +// This file defines style objects for the selector tabs component in the application view, using Material-UI's sx prop. +// Each exported constant represents a set of styles for a specific tab or tab panel UI element. +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the pill-shaped tab bar wrapper +export const tabBarWrapperStyle: SxProps = { + display: 'flex', + padding: '2px', + px:'4px', + m: '18px 0 12px 0', + alignItems: 'start', + justifyContent: 'space-between', + background: '#ffffff', + borderRadius: '10px', + boxShadow: '0 4px 10px rgba(15,23,42,0.04)', + border: '1px solid #f1f5f9', +}; + +// Styles for each tab button, with dynamic styling for active and disabled states +export const tabButtonStyle = (active: boolean, disabled: boolean): SxProps => ({ + minWidth: 'auto', + textTransform: 'none', + fontSize: 14, + color: disabled + ? '#bcbcbc' + : active + ? '#054e58' + : '#6b7280', + fontWeight: active ? 700 : 500, + bgcolor: active ? '#dff6f9' : 'transparent', + borderRadius: '10px', + transition: 'background-color 120ms ease, color 120ms ease, 120ms ease', + '&:focus': { + outlineOffset: 1, + }, +}); + +// Styles for the content panel shown when a tab is active +export const tabPanelStyle: SxProps = { + px: 0, + pb: 2, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/GisDataAPI.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/GisDataAPI.ts new file mode 100644 index 0000000..6e00d53 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/GisDataAPI.ts @@ -0,0 +1,47 @@ + +// RTK Query API endpoint for replacing GIS coordinates for a property application. +import { apiSlice } from "../../../../../store/apiSlice"; // adjust path if needed +import { TAG_TYPES } from "../../../../../store/tagTypes"; + + +/** + * Injects an endpoint for replacing GIS coordinates for a property application using RTK Query. + * Uses a PUT request to update the coordinates for a given GIS data ID. + */ +export const coordinatesApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + /** + * Mutation for replacing GIS coordinates for a property. + * @param gisDataId - The ID of the GIS data to update + * @param applicationId - The ID of the related application + * @param points - Array of latitude/longitude points + * @returns The response from the backend + */ + replaceGisCoordinates: builder.mutation< + any, + { + gisDataId: string; + applicationId: string; + points: Array<{ latitude: number; longitude: number }> + } + >({ + query: ({ gisDataId, points }) => ({ + url: `/v1/coordinates/gis/${gisDataId}`, + method: 'PUT', + body: points, + headers: { 'Content-Type': 'application/json' }, + }), + // Invalidate specific application and general lists after update + invalidatesTags: (_result, _error, arg) => [ + { type: TAG_TYPES.APPLICATION, id: arg.applicationId }, + TAG_TYPES.APPLICATIONS, + TAG_TYPES.GIS_DATA + ] + }), + }), + overrideExisting: false, +}); + + +// Export the mutation hook for replacing GIS coordinates +export const { useReplaceGisCoordinatesMutation } = coordinatesApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/applicationApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/applicationApi.ts new file mode 100644 index 0000000..2f9dff2 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/applicationApi.ts @@ -0,0 +1,155 @@ + +// RTK Query API endpoints for viewing, editing, and acting on property applications. +import type { ApplicationResponse, Property } from '../model/applicationByIdModel'; +import type { AcceptApplicationResponse, EditApplicationResponse } from '../model/acceptApplicationModel'; +import { apiSlice } from '../../../../../store/apiSlice' +import { TAG_TYPES } from '../../../../../store/tagTypes' +import type { PostApplicationLogRequest, PostApplicationLogResponse } from '../model/applicationLogModel'; + + +/** + * Injects endpoints for viewing and editing property applications using RTK Query. + * Includes queries for fetching owner/application details and mutations for editing and logging. + */ +export const viewApplicationApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + + // Get owner details by property ID + getOwnerByPropertyId: builder.query({ + query: (propertyId) => ({ + url: `${import.meta.env.VITE_ENUMERATION_HOST}/v1/property-owners/property/${propertyId}`, + method: 'GET', + headers: { + 'X-User-Role': 'SERVICE_MANAGER', + 'X-Tenant-ID': 'pb.amritsar' + }, + }), + providesTags: [TAG_TYPES.APPLICATIONS], + }), + + // get application by Application id + getApplicationByApplicationId: builder.query({ + query: (applicationId) => ({ + url: `${import.meta.env.VITE_ENUMERATION_HOST}/v1/applications/${applicationId}`, + method: 'GET', + }), + providesTags: (_result, _error, applicationId) => [ + { type: TAG_TYPES.APPLICATION, id: applicationId }, + { type: TAG_TYPES.APPLICATION_LOGS, id: applicationId }, + TAG_TYPES.APPLICATIONS, + TAG_TYPES.GIS_DATA + ], + }), + + // Edit application details + editApplication: builder.mutation({ + query: ({ property }) => ({ + url: `/v1/properties/${property.ID}`, + method: 'PUT', + headers: { + 'X-Tenant-ID': 'pb.amritsar' + }, + body: { + ...property + }, + }), + invalidatesTags: (_result, _error, { property , applicationId }) => [ + { type: TAG_TYPES.APPLICATION, id: applicationId }, + { type: TAG_TYPES.APPLICATION_LOGS, id: property.ID }, + TAG_TYPES.APPLICATIONS, + TAG_TYPES.GIS_DATA + ], + }), + + // Edit owner details (PUT /v1/property-owners/{owner_id}) + editOwner: builder.mutation }>({ + query: ({ id, owner }) => ({ + url: `/v1/property-owners/${id}`, + method: 'PUT', + headers: { + 'X-Tenant-ID': 'pb.amritsar' + }, + body: owner, + }), + }), + + // Post an application log entry + postApplicationLog: builder.mutation({ + query: (log) => ({ + url: '/v1/application-logs', + method: 'POST', + headers: { + 'X-Tenant-ID': 'pb.amritsar', + }, + body: log, + }), + // Invalidate logs cache for the affected application + invalidatesTags: (_result, _error, arg) => [ + { type: TAG_TYPES.APPLICATION_LOGS, id: arg.applicationId } + ], + }), + + }), + +}); + + +/** + * Injects a standalone endpoint for posting application logs. + */ +export const applicationLogApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + postApplicationLog: builder.mutation({ + query: (log) => ({ + url: '/v1/application-logs', + method: 'POST', + headers: { + 'X-Tenant-ID': 'pb.amritsar', + }, + body: log, + }), + }), + }), +}); + + +// Export the mutation hook for posting application logs +export const { usePostApplicationLogMutation } = applicationLogApi; + + +/** + * Injects an endpoint for accepting (auditing) an application. + * Uses a PATCH request to update the application's approval status and comments. + */ +export const acceptApplicationApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + acceptApplication: builder.mutation({ + query: ({ applicationId, approved, comments }) => ({ + url: `/v1/applications/${applicationId}`, + method: 'PATCH', + headers: { + 'X-Tenant-ID': 'pb.amritsar' + }, + body: { + action: "audit-verify", + approved, + comments, + }, + }), + // Invalidate the applications cache after approval + invalidatesTags: [TAG_TYPES.APPLICATIONS] + }), + }), +}); + +// Export the mutation hook for accepting applications +export const { useAcceptApplicationMutation } = acceptApplicationApi; + + +// Export hooks for all queries and mutations in the viewApplicationApi +export const { + useGetOwnerByPropertyIdQuery, + useGetApplicationByApplicationIdQuery, + useEditApplicationMutation, + useEditOwnerMutation +} = viewApplicationApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/assignAgentApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/assignAgentApi.ts new file mode 100644 index 0000000..72c087d --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/assignAgentApi.ts @@ -0,0 +1,43 @@ + +// RTK Query API endpoint for assigning an agent to an application. +import { apiSlice } from '../../../../../store/apiSlice' +import { TAG_TYPES } from '../../../../../store/tagTypes' +import type { AssignApplicationResponse } from '../model/assignAgentModel'; + + +/** + * Injects an endpoint for assigning an agent to a property application using RTK Query. + * Uses a PATCH request to update the application's assigned agent. + */ +export const assignApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + /** + * Mutation for assigning an agent to an application. + * @param applicationId - The ID of the application to assign + * @param agentId - The ID of the agent to assign + * @param comments - Comments for the assignment action + * @returns The response from the backend + */ + AssignApplication: builder.mutation({ + query: ({ applicationId, agentId }) => ({ + url: `/v1/applications/${applicationId}`, + method: 'PATCH', + body: { + "action": "assign", + "agentId": `${agentId}`, + "comments": "Assign to field agent", + }, + }), + // Invalidate relevant caches after assignment + invalidatesTags: (_result, _error, arg) => [ + { type: TAG_TYPES.APPLICATION, id: arg.applicationId }, + // { type: TAG_TYPES.APPLICATIONS, id: 'LIST' }, + TAG_TYPES.AGENTS, + TAG_TYPES.ASSIGNMENTS, + ] + }), + }), +}); + +// Export the mutation hook for assigning an agent +export const { useAssignApplicationMutation } = assignApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/documentsApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/documentsApi.ts new file mode 100644 index 0000000..ca3ea75 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/documentsApi.ts @@ -0,0 +1,52 @@ + +// RTK Query API endpoint for updating document actions (e.g., approve, reject) in the application view. +import { apiSlice } from '../../../../../store/apiSlice'; +import onboardingApiSlice from '../../../../../store/onboardingApiSlice'; +import { TAG_TYPES } from '../../../../../store/tagTypes'; +import type { UpdateDocumentRequest, UpdateDocumentResponse } from '../model/documentsModel'; + + +/** + * Injects an endpoint for updating the action/status of a document (e.g., approve, reject) using RTK Query. + * Uses a PUT request to update the document by its ID. + */ +export const documentsApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + /** + * Mutation for updating a document's action/status. + * @param documentId - The ID of the document to update + * @param action - The action to perform (e.g., approve, reject) + * @returns The response from the backend + */ + updateDocumentAction: builder.mutation({ + query: ({ documentId, action }) => ({ + url: `/v1/documents/${documentId}`, + method: 'PUT', + body: { action }, + headers: { + 'Content-Type': 'application/json', + 'X-Tenant-ID': 'default', + }, + }), + // Invalidate the applications cache after document update + invalidatesTags: [TAG_TYPES.APPLICATIONS], + }), + }), +}); + + +// Inject a common endpoint to get user by id +export const extendedOnboardingApi = onboardingApiSlice.injectEndpoints({ + endpoints: (builder) => ({ + getUserById: builder.query({ + query: (id: string) => `/api/v1/users/${id}`, + }), + }), + overrideExisting: false, +}); + +// Export hooks for the injected endpoints +export const { useGetUserByIdQuery } = extendedOnboardingApi; + + +export const { useUpdateDocumentActionMutation } = documentsApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/edit-application-apis/editApplicationApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/edit-application-apis/editApplicationApi.ts new file mode 100644 index 0000000..be8543b --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/edit-application-apis/editApplicationApi.ts @@ -0,0 +1,253 @@ + +// RTK Query API endpoints for editing various parts of a property application. +import { apiSlice } from "../../../../../../store/apiSlice"; +import { TAG_TYPES } from "../../../../../../store/tagTypes"; +import type { + EditAdditionalDetailsRequest, + EditAdditionalDetailsResponse, + EditAmenitiesRequest, + EditAmenitiesResponse, + EditOwnerRequest, + EditOwnerResponse, + EditAssessmentRequest, + EditAssessmentResponse, + EditIGRSRequest, + EditIGRSResponse, + EditConstructionRequest, + EditConstructionResponse, + EditFloorRequest, + EditFloorResponse, + EditAddressResponse, + EditAddressRequest, +} from "../../model/editAplicaiton-models/editApplicaitonModles"; +import type { Property } from "../../model/applicationByIdModel"; + + +/** + * Injects endpoints for editing various sections of a property application using RTK Query. + * Each mutation corresponds to a different editable section (owner, amenities, assessment, etc.). + */ +export const editApplicationApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + // --- Edit Application (Property) --- + /** + * Edits the main property application details. + */ + editApplication: builder.mutation< + EditOwnerResponse, + { property: Property } + >({ + query: ({ property }) => ({ + url: `/v1/properties/${property.ID}`, + method: "PUT", + headers: { + "X-Tenant-ID": "pb.amritsar", + }, + body: { + ...property, + }, + }), + // Invalidate the cache for the edited application + invalidatesTags: (_result, _error, { property }) => [ + { type: TAG_TYPES.APPLICATIONS, id: property.ID }, + ], + }), + + // --- Edit Owner Details --- + /** + * Edits the owner details of a property. + */ + editOwner: builder.mutation< + EditOwnerResponse, + { id: string; owner: Omit } + >({ + query: ({ id, owner }) => ({ + url: `/v1/property-owners/${id}`, + method: "PUT", + headers: { + "X-Tenant-ID": "pb.amritsar", + }, + body: owner, + }), + // Invalidate the cache for the edited owner's application + invalidatesTags: (_result, _error, { owner }) => [ + { type: TAG_TYPES.APPLICATIONS, id: owner.propertyId }, + ], + }), + + // --- Edit Additional Property Details --- + /** + * Edits additional details for a property. + */ + editAdditionalDetails: builder.mutation< + EditAdditionalDetailsResponse, + { + id: string; + propertyId: string; + additionalDetails: EditAdditionalDetailsRequest; + } + >({ + query: ({ id, additionalDetails }) => ({ + url: `/v1/additional-property-details/${id}`, + method: "PUT", + headers: { + "X-Tenant-ID": "pb.amritsar", + }, + body: additionalDetails, + }), + // Invalidate the cache for the edited property's application + invalidatesTags: (_result, _error, { propertyId }) => [ + { type: TAG_TYPES.APPLICATIONS, id: propertyId }, + ], + }), + + // --- Edit Amenities --- + /** + * Edits the amenities for a property. + */ + editAmenities: builder.mutation< + EditAmenitiesResponse, + { id: string; propertyId: string; amenities: EditAmenitiesRequest } + >({ + query: ({ id, amenities }) => ({ + url: `/v1/amenities/${id}`, + method: "PUT", + headers: { + "X-Tenant-ID": "pb.amritsar", + }, + body: { + property_id: amenities.property_id, + type: amenities.type, + }, + }), + // Invalidate the cache for the edited property's application + invalidatesTags: (_result, _error, { propertyId }) => [ + { type: TAG_TYPES.APPLICATIONS, id: propertyId }, + ], + }), + + // --- Edit Assessment Details --- + /** + * Edits the assessment details for a property. + */ + editAssessment: builder.mutation< + EditAssessmentResponse, + { id: string; body: EditAssessmentRequest } + >({ + query: ({ id, body }) => ({ + url: `/v1/assessment-details/${id}`, + method: "PUT", + headers: { + "X-Tenant-ID": "pb.amritsar", + }, + body, + }), + // Invalidate the cache for the edited property's application + invalidatesTags: (_result, _error, { body }) => [ + { type: TAG_TYPES.APPLICATIONS, id: body.PropertyID }, + ], + }), + + // --- Edit IGRS Details --- + /** + * Edits the IGRS (stamp duty/registration) details for a property. + */ + editIGRS: builder.mutation< + EditIGRSResponse, + { id: string; body: EditIGRSRequest } + >({ + query: ({ id, body }) => ({ + url: `/v1/igrs/${id}`, + method: "PUT", + headers: { + "X-Tenant-ID": "pb.amritsar", + }, + body, + }), + // Invalidate the cache for the edited property's application + invalidatesTags: (_result, _error, { body }) => [ + { type: TAG_TYPES.APPLICATIONS, id: body.propertyId }, + ], + }), + + // --- Edit Construction Details --- + /** + * Edits the construction details for a property. + */ + editConstruction: builder.mutation< + EditConstructionResponse, + { id: string; body: EditConstructionRequest } + >({ + query: ({ id, body }) => ({ + url: `/v1/construction-details/${id}`, + method: "PUT", + headers: { + "X-Tenant-ID": "pb.amritsar", + }, + body, + }), + // Invalidate the cache for the edited property's application + invalidatesTags: (_result, _error, { body }) => [ + { type: TAG_TYPES.APPLICATIONS, id: body.propertyId }, + ], + }), + + // --- Edit Property Address --- + /** + * Edits the address details for a property. + */ + editAddress: builder.mutation< EditAddressResponse, + { id: string; body: EditAddressRequest } + >({ + query: ({ id, body }) => ({ + url: `/v1/property-addresses/${id}`, + method: "PUT", + headers: { + "X-Tenant-ID": "pb.amritsar", + }, + body, + }), + // Invalidate the cache for the edited property's application + invalidatesTags: (_result, _error, { body }) => [ + { type: TAG_TYPES.APPLICATIONS, id: body.propertyId }, + ], + }), + + // --- Edit Floor Details --- + /** + * Edits the floor details for a property. + */ + editFloor: builder.mutation< + EditFloorResponse, + { id: string; body: EditFloorRequest } + >({ + query: ({ id, body }) => ({ + url: `/v1/floor-details/${id}`, + method: "PUT", + headers: { + "X-Tenant-ID": "pb.amritsar", + }, + body, + }), + // Invalidate the cache for the edited property's application + invalidatesTags: (_result, _error, { body }) => [ + { type: TAG_TYPES.APPLICATIONS, id: body.propertyId }, + ], + }), + }), + overrideExisting: false, +}); + + +// Export hooks for each mutation endpoint for use in React components +export const { + useEditApplicationMutation, + useEditAdditionalDetailsMutation, + useEditAddressMutation, + useEditAmenitiesMutation, + useEditOwnerMutation, + useEditAssessmentMutation, + useEditIGRSMutation, + useEditConstructionMutation, + useEditFloorMutation, +} = editApplicationApi; diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/fileStoreApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/fileStoreApi.ts new file mode 100644 index 0000000..dcf811c --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/fileStoreApi.ts @@ -0,0 +1,52 @@ + +// RTK Query API endpoints for file storage operations (upload/download) in the application view. +import { filestoreApiSlice } from '../../../../../store/filestoreApiSlice'; +import type {UploadResult} from '../model/fileStoreModel'; + + +/** + * Injects endpoints for file storage operations (download/upload) using RTK Query. + */ +export const filestoreApi = filestoreApiSlice.injectEndpoints({ + endpoints: (builder) => ({ + /** + * Query for downloading a file from the filestore by fileStoreId and tenantId. + * @returns The file as a Blob object + */ + getFileFromFilestore: builder.query({ + query: ({ fileStoreId, tenantId = "pg" }) => ({ + url: `/filestore/v1/files/${fileStoreId}?tenantId=${tenantId}`, + method: 'GET', + responseHandler: (response) => response.blob(), + }), + }), + + /** + * Mutation for uploading a file to the filestore. + * @param file - The file to upload + * @param tenantId - (Optional) Tenant ID + * @param module - (Optional) Module name + * @param tag - (Optional) Tag for the file + * @returns The upload result from the backend + */ + uploadFileToFilestore: builder.mutation({ + query: ({ file, tenantId = "pg", module = "HCM-ADMIN-CONSOLE-CLIENT", tag = "test" }) => { + const formData = new FormData(); + formData.append("file", file); + formData.append("tenantId", tenantId); + formData.append("module", module); + formData.append("tag", tag); + return { + url: '/filestore/v1/files/upload', + method: 'POST', + body: formData, + }; + }, + }), + }), +}); + + +// Export hooks for file download and upload operations +export const { useGetFileFromFilestoreQuery, useUploadFileToFilestoreMutation } = filestoreApi; +export default filestoreApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/mdmsService/mdmsApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/mdmsService/mdmsApi.ts new file mode 100644 index 0000000..0297da7 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/api/mdmsService/mdmsApi.ts @@ -0,0 +1,70 @@ +import mdmsApiSlice from '../../../../../../store/mdmsApiSlice' + +// MDMS API Response Types +interface MdmsResponse { + mdms: Array<{ + id: string; + tenantId: string; + schemaCode: string; + uniqueIdentifier: string; + data: { + [key: string]: any[]; + }; + isActive: boolean; + auditDetails: { + createdBy: string; + lastModifiedBy: string; + createdTime: number; + lastModifiedTime: number; + }; + }>; +} + + +export const mdmsApi = mdmsApiSlice.injectEndpoints({ + endpoints: (builder) => ({ + // Generic MDMS enumeration fetcher (fetches all dropdown data for PropertyTax.Enumeration) + getMdmsEnumeration: builder.query<{ [key: string]: any[] }, void>({ + query: () => ({ + url: '?schemaCode=PropertyTax.Enumeration', + method: 'GET', + }), + transformResponse: (response: MdmsResponse) => + response?.mdms?.[0]?.data ?? {}, + }), + + // Fetch by schema code (for e.g. unit of measurement) + // getMdmsDataBySchema: builder.query({ + // query: (schemaCode: string) => ({ + // url: `?schemaCode=${schemaCode}`, + // method: 'GET', + // }), + // transformResponse: (response: MdmsResponse) => + // response.mdms && response.mdms.length > 0 + // ? response.mdms[0] + // : undefined, + // }), + + // Example: fetch one dropdown from PropertyTax.Enumeration + // getDropdown: builder.query({ + // query: () => ({ + // url: '?schemaCode=PropertyTax.Enumeration', + // method: 'GET', + // }), + // transformResponse: (response: MdmsResponse, _meta, arg) => { + // if (response?.mdms?.[0]?.data) { + // return response.mdms[0].data[arg.dropdownKey] ?? []; + // } + // return []; + // }, + // }), + }), + overrideExisting: false, +}) + +// Export hooks for use in components +export const { + useGetMdmsEnumerationQuery, + // useGetMdmsDataBySchemaQuery, + // useGetDropdownQuery, +} = mdmsApi \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/Application_Log/ApplicationTrack.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/Application_Log/ApplicationTrack.tsx new file mode 100644 index 0000000..f28d8c1 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/Application_Log/ApplicationTrack.tsx @@ -0,0 +1,280 @@ +// This component displays a timeline of application logs (comments, actions, attachments) for a property application. +// It allows users to add new comments (with optional file attachments) and download attached documents. +// The component uses dialogs for adding comments and confirming submissions, and integrates with API mutations for posting logs and uploading files. +import React from "react"; +import { Box, Typography, Button, useMediaQuery, Container } from "@mui/material"; +import DownloadIcon from "@mui/icons-material/Download"; +import DescriptionIcon from "@mui/icons-material/Description"; +import { + containerStyle, + timelineCircleStyle, + timelineVerticalBarStyle, + commentTitleStyle, + commentTextStyle, + dateTextStyle, + addButtonBoxStyle, + addButtonStyle, + downloadButtonStyle +} from "../../Styles/searchPropertyStyles/ApplicationTrackStyle"; +import RequestDialog from "../property details/addRequestPopUp/addRequestPopUp"; +import ConfirmationDialog from "../property details/addRequestPopUp/confirmationPopUp"; +import { usePostApplicationLogMutation } from "../../api/applicationApi"; +import { useUploadFileToFilestoreMutation } from "../../api/fileStoreApi"; +import { useAuth } from "../../../../login-signup/provider/AuthProvider"; + + + +// Localization strings for UI labels +const loc = { + applicationLogTitle: "Track Application", + addRequestText: "Add Comment", +}; + + +// Type for a single application log entry +interface ApplicationLog { + Action: string; + ApplicationID: string; + Actor : string; + Comments: string; + CreatedAt: string; + FileStoreID: string | null; + ID: string; + Metadata: string; + PerformedBy: string; + PerformedDate: string; +} + + +// Props for the ApplicationTrack component +interface ApplicationTrackProps { + logs: ApplicationLog[]; // List of log entries to display + timelineBackgroundColor?: string; // Optional color for the timeline bar + applicationId?: string; // Application ID for posting new logs +} + + +const ApplicationTrack: React.FC = ({ logs, applicationId, timelineBackgroundColor = "#d0d0d0" }) => { + const { user } = useAuth(); + const isMobile = useMediaQuery("(max-width:375px)"); + // console.log("user object:", user); + + // Sort logs oldest to newest for timeline display + const logItems: ApplicationLog[] = (logs ?? []).slice().sort( + (a, b) => new Date(a.PerformedDate).getTime() - new Date(b.PerformedDate).getTime() + ); + + // Dialog state for add comment and confirmation dialogs + const [open, setOpen] = React.useState(false); + const [showSuccess, setShowSuccess] = React.useState(false); + const [pendingComment, setPendingComment] = React.useState(null); + const [pendingFile, setPendingFile] = React.useState(undefined); + + // API mutations for posting logs and uploading files + const [postApplicationLog, { isLoading: isLogLoading }] = usePostApplicationLogMutation(); + const [uploadFileToFilestore, { isLoading: isFileUploading }] = useUploadFileToFilestoreMutation(); + + // Open the add comment dialog + const handleAddComment = () => setOpen(true); + // Close the add comment dialog + const handleClose = () => setOpen(false); + + // Called when "Submit" in RequestDialog is clicked (before confirmation dialog) + const handleRequestSubmit = (comment: string, file?: File) => { + const error = validateFile(file); + if (error) { + alert(error); + return; + } + setPendingComment(comment); + setPendingFile(file); + setShowSuccess(true); + setOpen(false); + }; + + // Called after confirmation dialog ("Confirm" is clicked) + const handleConfirm = async () => { + try { + const Id = applicationId || ""; + const performedBy = user?.username || ""; + // console.log("user name :", user?.username); + // console.log("performedBy:", performedBy); + + let fileStoreId: string | undefined = undefined; + + // If a file is attached, upload it to the filestore first + if (pendingFile) { + const uploadResult = await uploadFileToFilestore({ file: pendingFile }).unwrap(); + fileStoreId = uploadResult?.files?.[0]?.fileStoreId; + console.log("file store id is: ", fileStoreId); + } + // console.log("Performed by : ", user?.username); + + // 2. Post application log + await postApplicationLog({ + action: "CREATE", + actor: user?.role || "No Role Found", + performedBy, + comments: pendingComment || "", + applicationId: Id, + fileStoreId: fileStoreId || undefined, + metadata: { + userAgent: navigator.userAgent, + ...(pendingFile ? { file: { name: pendingFile.name } } : {}), + }, + }).unwrap(); + } catch (err) { + console.error("Error posting comment", err); + } + // console.log("comment submitted: ", pendingComment); + + setShowSuccess(false); + setPendingComment(null); + setPendingFile(undefined); + }; + + // Close the confirmation dialog + const handleSuccessClose = () => { + setShowSuccess(false); + setOpen(false); + }; + + // Add this validation function + function validateFile(file?: File): string | null { + if (!file) return null; + const allowedTypes = [ + "application/pdf", + "image/jpeg", + "image/jpg", + "image/png" + ]; + if (!allowedTypes.includes(file.type)) { + return "Only PDF, JPG, JPEG, and PNG files are allowed."; + } + return null; + } + + return ( + + + {/* Title for the application log timeline */} + + {loc.applicationLogTitle} + + + {/* Show custom message if no logs */} + {logItems.length === 0 ? ( + + No Log Found + + ) : ( + logItems.map((item, idx) => { + // console.log('FileStoreID:', item.FileStoreID); + let fileName = ""; + try { + const meta = item.Metadata ? JSON.parse(item.Metadata) : {}; + fileName = meta.file?.name || ""; + } catch {} + return ( + + {/* Timeline marker and vertical bar */} + + + {idx + 1} + + {idx !== logItems.length - 1 && ( + + )} + + {/* Log details: performer, comment, attachment, date */} + + + {item.Actor} + + + {item.PerformedBy} + + + {item.Comments} + + {/* Show file name if present */} + {fileName && ( + + + + {fileName} + + + )} + {/* Always show download button if FileStoreID exists */} + {item.FileStoreID && ( + + )} + {/* Show the date of the log entry */} + + {item.PerformedDate.split("T")[0]} + + + + ); + }) + )} + + {/* Add comment button and dialogs */} + + + + + + + + ); +}; + + +// Export the ApplicationTrack component for use in parent components +export default ApplicationTrack; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/Assign_Agent_Popup/assignmentPopup.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/Assign_Agent_Popup/assignmentPopup.tsx new file mode 100644 index 0000000..22c2fbd --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/Assign_Agent_Popup/assignmentPopup.tsx @@ -0,0 +1,106 @@ + +// This component provides a UI for reassigning an application to a different agent. +// It fetches available agents, allows the user to select one, and assigns the application via an API call. +// The component is used in the property details view for agent reassignment. +import Box from "@mui/material/Box"; +import TextField from "@mui/material/TextField"; +import Typography from "@mui/material/Typography"; +import Button from "@mui/material/Button"; + +import MenuItem from "@mui/material/MenuItem"; +import { useState } from "react"; +import { agentFieldSx, fieldLabelSx, reassignmentBoxSx, titleSx} from "../../Styles/searchPropertyStyles/AssignmentBox"; +import { useGetAgentsQuery, } from "../../../application-inbox/api/getAndReassignAgentApi"; +import { useAssignApplicationMutation } from "../../api/assignAgentApi"; + + +// Props for the ApplicationAssignmentBox component +interface ApplicationInboxReassignmentBoxProps { + ward: string; // Ward for which to fetch agents (not used in this instance) + applicationId: string; // ID of the application to reassign + onClose: () => void; // Function to close the popup + assignedAgentId?: string; // ID of the currently assigned agent (to exclude from list) +} + + +const ApplicationAssignmentBox = ({ward, applicationId, onClose, assignedAgentId }: ApplicationInboxReassignmentBoxProps) => { + // Fetch the list of agents (for the given ward) + const { data: agentsData, isLoading } = useGetAgentsQuery({ ward: ward }); + // State for the selected agent to assign + const [selectedAgent, setSelectedAgent] = useState(""); + + // Exclude the currently assigned agent from the dropdown + const filteredAgents = (agentsData?.data.users || []).filter( + agent => agent.id !== assignedAgentId + ); + + // Mutation for assigning the application to an agent + const [assignApplication, { isLoading: isAssigning }] = useAssignApplicationMutation(); + + // Handle the assign button click + const handleAssign = async () => { + if (!selectedAgent) return; + + await assignApplication({ + applicationId, + agentId: selectedAgent, + comments: "", + }); + onClose(); + }; + + + return ( + + {/* Title for the assignment popup */} + Assignment Details + + {/* Dropdown to select a new agent */} + + Select Agent: + setSelectedAgent(e.target.value)} + > + {isLoading + ? Loading... + : filteredAgents.map(agent => ( + + {agent.profile.fullName} + + ))} + + + + {/* Assign button to confirm reassignment */} + + + + + ); +}; + + +// Export the assignment popup component for use in parent components +export default ApplicationAssignmentBox; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/Map_Component/MapComponent.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/Map_Component/MapComponent.tsx new file mode 100644 index 0000000..9e18389 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/Map_Component/MapComponent.tsx @@ -0,0 +1,1069 @@ +import React, { useRef, useEffect, useState, useCallback } from 'react'; +import maplibregl from 'maplibre-gl'; +import 'maplibre-gl/dist/maplibre-gl.css'; +import { Box, Button, IconButton } from "@mui/material"; +import closeSvg from "../../Assets/MapMarkerIcon/close.svg"; +import undoSvg from "../../Assets/MapMarkerIcon/undo.svg"; +import editSquareSvg from "../../Assets/MapMarkerIcon/edit_squaremap.svg"; +// import { useDispatch } from 'react-redux'; +// import { selectApplication } from '../../redux/apiSlice'; +import propertyMarkerSvg from '../../Assets/MapMarkerIcon/Proptery one.svg'; +import { useReplaceGisCoordinatesMutation } from '../../api/GisDataAPI'; +import { + mapComponentOuterStyle, + mapWrapperContainerStyle, + mapDivStyle, + mapOverlayStyle, + mapButtonPanelStyle, + mapButtonStyle, + mapIconButtonStyle, + mapUndoButtonStyle, +} from "../../Styles/searchPropertyStyles/MapComponent"; +import type { Property } from '../../model/applicationByIdModel'; +import { useAuth } from '../../../../login-signup/provider/AuthProvider'; +// import { useSelector } from 'react-redux'; +// import type { RootState } from '../../../../../../store'; +import { usePostApplicationLogMutation } from '../../api/applicationApi'; + +/** + * Type definition for polygon drawing controls exposed to parent component + */ +type PolygonControlRef = { + start?: () => void; // Start drawing mode + finish?: () => void; // Finish and save polygon + clear?: (notify?: boolean) => void; // Clear all drawings + undo?: () => void // Undo last point +} | null; + +/** + * MapWrapper Component + * + * Core map rendering component using Leaflet.js + * Handles both static display and interactive drawing modes + * + * Features: + * - Display single points, multiple points, or polygons + * - Interactive polygon drawing with visual feedback + * - Location editing mode with live center updates + * - Centroid calculation for polygons + */ +export function MapWrapper({ + interactive, + coordinates, + externalControlRef, + onPolygonComplete, + locationMode, + onLocationMove, + initialCenter, +}: { + interactive: boolean; // Enable/disable map interactions (pan, zoom) + coordinates?: Array<{ Latitude?: number; Longitude?: number; latitude?: number; longitude?: number }> | null; + externalControlRef?: React.MutableRefObject | null; // Ref for parent to control polygon drawing + onPolygonComplete?: (coords: Array<{ lat: number; lng: number }>) => void; // Callback when polygon drawing completes + locationMode?: boolean; // Special mode for single point editing + onLocationMove?: (lat: number, lng: number) => void; // Live callback for map center changes + initialCenter?: { lat: number; lng: number } | null; // Initial map center for location mode +}) { + // DOM and MapLibre instance references + const mapRef = useRef(null); + const mapInstanceRef = useRef(null); + + // Drawing state references + const initialLocationSentRef = useRef(false); // Prevents duplicate initial location callbacks + const drawingPointsRef = useRef<[number, number][]>([]); // Points being drawn + const tempMarkersRef = useRef([]); // Temporary point markers during drawing + const drawnLayersRef = useRef([]); // Final drawn layers (polygons, markers) + + /** + * Main map initialization and update effect + * Handles map creation, marker placement, and event listeners + */ + useEffect(() => { + if (!mapRef.current) return; + + // Parse coordinates from props (keep lat,lng ordering as before) + const hasArray = coordinates && Array.isArray(coordinates) && coordinates.length > 0; + let points: [number, number][] = []; + if (hasArray) { + points = coordinates!.map((c) => [c.Latitude ?? c.latitude ?? 0, c.Longitude ?? c.longitude ?? 0] as [number, number]); + } + + // Determine map center: prefer initialCenter in locationMode, otherwise use first coordinate + const defaultCenterLatLng: [number, number] = (locationMode && initialCenter) + ? [initialCenter.lat, initialCenter.lng] + : (hasArray ? points[0] : [12.9141, 77.6387]); // Default: Bangalore coordinates + + // MapLibre expects [lng, lat] + const centerLngLat: [number, number] = [defaultCenterLatLng[1], defaultCenterLatLng[0]]; + + // Initialize MapLibre map + const styleUrl = 'https://api.maptiler.com/maps/base-v4/style.json?key=YguiTF06mLtcpSVKIQyc'; + const map = new maplibregl.Map({ + container: mapRef.current as HTMLElement, + style: styleUrl, + center: centerLngLat as [number, number], + zoom: 15, + attributionControl: false, + }); + + mapInstanceRef.current = map; + + // add zoom control (zoom in/out) at bottom-left; hide compass/rotate control + map.addControl(new maplibregl.NavigationControl({ showCompass: false, showZoom: true }), 'bottom-left'); + + + // Utilities for managing MapLibre layers/sources/markers + const customMarkerElement = () => { + // Create a fixed-size wrapper so MapLibre's anchor calculations are stable across zoom and image load + const wrapper = document.createElement('div'); + wrapper.style.width = '34px'; + wrapper.style.height = '34px'; + wrapper.style.position = 'relative'; + wrapper.style.pointerEvents = 'none'; + + const img = document.createElement('img'); + img.src = propertyMarkerSvg; + img.style.width = '34px'; + img.style.height = '34px'; + img.style.position = 'absolute'; + img.style.left = '50%'; + img.style.bottom = '0'; + img.style.transform = 'translateX(-50%)'; + img.style.display = 'block'; + img.style.margin = '0'; + img.style.padding = '0'; + + wrapper.appendChild(img); + return wrapper; + }; + + const addedSourceIds: string[] = []; + const addedLayerIds: string[] = []; + const createdMarkers: maplibregl.Marker[] = []; + + const addMarker = (lat: number, lng: number) => { + try { + const el = customMarkerElement(); + // Use anchor: 'bottom' so the bottom of the image is exactly at the coordinate. + const marker = new maplibregl.Marker({ element: el, anchor: 'bottom' as any }) + .setLngLat([lng, lat]) + .addTo(map); + createdMarkers.push(marker); + return marker; + } catch (e) { + return null; + } + }; + + const clearDrawn = () => { + // remove markers + createdMarkers.forEach(m => { try { m.remove(); } catch (e) {} }); + createdMarkers.length = 0; + + // remove layers and sources + addedLayerIds.forEach(id => { try { if (map.getLayer(id)) map.removeLayer(id); } catch (e) {} }); + addedSourceIds.forEach(id => { try { if (map.getSource(id)) map.removeSource(id); } catch (e) {} }); + addedLayerIds.length = 0; + addedSourceIds.length = 0; + }; + + // When map is loaded, add initial features + map.on('load', () => { + // Display markers/polygons only when NOT in location editing mode + if (!locationMode) { + if (points.length >= 3) { + // Create GeoJSON polygon (MapLibre expects [lng,lat]) + const coords = points.map(p => [p[1], p[0]] as [number, number]); + // ensure closed ring + const ring = coords.slice(); + if (ring.length && (ring[0][0] !== ring[ring.length - 1][0] || ring[0][1] !== ring[ring.length - 1][1])) { + ring.push(ring[0]); + } + const sourceId = 'polygon-source'; + const fillLayerId = 'polygon-fill'; + const lineLayerId = 'polygon-line'; + map.addSource(sourceId, { type: 'geojson', data: { type: 'Feature', properties: {}, geometry: { type: 'Polygon', coordinates: [ring] } } as any }); + map.addLayer({ id: fillLayerId, type: 'fill', source: sourceId, paint: { 'fill-color': '#C84C0E', 'fill-opacity': 0.2 } }); + map.addLayer({ id: lineLayerId, type: 'line', source: sourceId, paint: { 'line-color': '#C84C0E', 'line-width': 2 } }); + addedSourceIds.push(sourceId); + addedLayerIds.push(fillLayerId, lineLayerId); + + // Fit bounds + const lats = points.map(p => p[0]); + const lngs = points.map(p => p[1]); + const minLat = Math.min(...lats), maxLat = Math.max(...lats); + const minLng = Math.min(...lngs), maxLng = Math.max(...lngs); + try { map.fitBounds([[minLng, minLat], [maxLng, maxLat]], { padding: 20 }); } catch (e) {} + + // compute visual centroid using pixel space + const computeVisualCentroid = (latlngs: [number, number][]) => { + try { + const layerPts = latlngs.map(p => map.project([p[1], p[0]])); + let signedArea = 0, cx = 0, cy = 0; + for (let i = 0; i < layerPts.length; i++) { + const p0 = layerPts[i]; + const p1 = layerPts[(i + 1) % layerPts.length]; + const a = p0.x * p1.y - p1.x * p0.y; + signedArea += a; + cx += (p0.x + p1.x) * a; + cy += (p0.y + p1.y) * a; + } + signedArea *= 0.5; + if (Math.abs(signedArea) < 1e-6) { + const avgX = layerPts.reduce((s, p) => s + p.x, 0) / layerPts.length; + const avgY = layerPts.reduce((s, p) => s + p.y, 0) / layerPts.length; + return map.unproject([avgX, avgY]); + } + cx = cx / (6 * signedArea); + cy = cy / (6 * signedArea); + return map.unproject([cx, cy]); + } catch (err) { + return { lat: latlngs[0][0], lng: latlngs[0][1] } as any; + } + }; + + try { + const centroid = computeVisualCentroid(points); + const marker = addMarker(centroid.lat, centroid.lng); + // no popup; keep marker + if (marker) drawnLayersRef.current.push(marker as any); + } catch (e) { + console.error('Failed to create centroid marker:', e); + } + + } else if (points.length === 1) { + const marker = addMarker(points[0][0], points[0][1]); + if (marker) drawnLayersRef.current.push(marker as any); + try { map.setCenter([points[0][1], points[0][0]]); map.setZoom(15); } catch (e) {} + + } else if (points.length === 2) { + points.forEach(p => { const m = addMarker(p[0], p[1]); if (m) drawnLayersRef.current.push(m as any); }); + const lats = points.map(p => p[0]); + const lngs = points.map(p => p[1]); + const minLat = Math.min(...lats), maxLat = Math.max(...lats); + const minLng = Math.min(...lngs), maxLng = Math.max(...lngs); + try { map.fitBounds([[minLng, minLat], [maxLng, maxLat]], { padding: 20 }); } catch (e) {} + + } else { + // default marker at center + const marker = addMarker(defaultCenterLatLng[0], defaultCenterLatLng[1]); + if (marker) drawnLayersRef.current.push(marker as any); + } + } + }); + + // Control map interactivity based on props + if (!interactive && !locationMode) { + try { map.dragPan.disable(); } catch (e) {} + try { map.scrollZoom.disable(); } catch (e) {} + try { map.doubleClickZoom.disable(); } catch (e) {} + try { map.boxZoom && (map.boxZoom as any).disable && (map.boxZoom as any).disable(); } catch (e) {} + try { (map as any).keyboard && (map as any).keyboard.disable && (map as any).keyboard.disable(); } catch (e) {} + } + + // Always allow interactions in location mode for repositioning + if (locationMode) { + try { map.dragPan.enable(); } catch (e) {} + try { map.scrollZoom.enable(); } catch (e) {} + } + + // Location mode: Track map center changes in real-time + let locationHandler: (() => void) | null = null; + if (locationMode) { + locationHandler = () => { + try { + const c = map.getCenter(); + onLocationMove && onLocationMove(c.lat, c.lng); + } catch (e) { + console.warn('[MapWrapper] Failed to read map center', e); + } + }; + + map.on('move', locationHandler); + map.on('moveend', locationHandler); + map.on('drag', locationHandler); + + if (!initialLocationSentRef.current) { + initialLocationSentRef.current = true; + locationHandler(); + } + } + + // Resize map shortly after mount + setTimeout(() => { try { map.resize(); } catch (e) {} }, 200); + + // Cleanup function + return () => { + if (locationHandler) { + map.off('move', locationHandler); + map.off('moveend', locationHandler); + map.off('drag', locationHandler); + } + initialLocationSentRef.current = false; + try { clearDrawn(); } catch (e) {} + try { map.remove(); } catch (e) {} + mapInstanceRef.current = null; + }; + }, [interactive, coordinates, locationMode, initialCenter, onLocationMove]); + + /** + * Expose polygon drawing controls to parent component via ref + */ + useEffect(() => { + if (!externalControlRef) return; + + externalControlRef.current = { + start: () => startDrawingOnMap(), + finish: () => finishDrawingOnMap(), + clear: (notify?: boolean) => clearDrawingsOnMap(notify), + undo: () => undoDrawingOnMap() + }; + + return () => { + if (externalControlRef) externalControlRef.current = null; + }; + }, [externalControlRef]); + + /** + * Start polygon drawing mode + * - Clears previous drawings + * - Changes cursor to crosshair + * - Attaches click handler for point placement + */ + const startDrawingOnMap = () => { + const map = mapInstanceRef.current as maplibregl.Map | null; + if (!map) return; + + drawingPointsRef.current = []; + + // remove any preview source/layer + try { + if (map.getLayer('preview-line')) map.removeLayer('preview-line'); + if (map.getLayer('preview-fill')) map.removeLayer('preview-fill'); + if (map.getSource('preview')) map.removeSource('preview'); + } catch (e) {} + + tempMarkersRef.current.forEach(m => { try { (m as any).remove(); } catch (e) {} }); + tempMarkersRef.current = []; + + (map.getContainer() as HTMLElement).style.cursor = 'crosshair'; + map.getCanvas().style.cursor = 'crosshair'; + map.on('click', onMapClick); + }; + + /** + * Handle map clicks during drawing mode + * - Adds point to drawing array + * - Shows temporary marker at click location + * - Updates temporary polyline/polygon visualization + */ + const onMapClick = (e: any) => { + const latlng: [number, number] = [e.lngLat.lat, e.lngLat.lng]; + drawingPointsRef.current.push(latlng); + + const map = mapInstanceRef.current as maplibregl.Map | null; + if (!map) return; + + // add small DOM marker at click location + try { + const el = document.createElement('div'); + el.style.width = '10px'; + el.style.height = '10px'; + el.style.background = '#C84C0E'; + el.style.borderRadius = '50%'; + el.style.transform = 'translate(-50%, -50%) scale(1)'; + // prevent the temp marker from catching pointer events + el.style.pointerEvents = 'none'; + const m = new maplibregl.Marker({ element: el }) + .setLngLat([e.lngLat.lng, e.lngLat.lat]) + .addTo(map); + // store as any in tempMarkersRef + tempMarkersRef.current.push(m as any); + } catch (err) {} + + // update preview source + try { + const coords = drawingPointsRef.current.map(p => [p[1], p[0]]); + const preview = { + type: 'Feature', + geometry: drawingPointsRef.current.length >= 3 ? { type: 'Polygon', coordinates: [[...coords, coords[0]]] } : { type: 'LineString', coordinates: coords } + } as any; + + if (!map.getSource('preview')) { + map.addSource('preview', { type: 'geojson', data: preview }); + map.addLayer({ id: 'preview-fill', type: 'fill', source: 'preview', paint: { 'fill-color': '#C84C0E', 'fill-opacity': 0.15 } }); + map.addLayer({ id: 'preview-line', type: 'line', source: 'preview', paint: { 'line-color': '#C84C0E', 'line-width': 2 } }); + } else { + (map.getSource('preview') as any).setData(preview); + } + } catch (err) { } + }; + + /** + * Finish polygon drawing + * - Removes click handler + * - Resets cursor + * - Creates final polygon if 3+ points + * - Calls completion callback + * - Cleans up temporary markers + */ + const finishDrawingOnMap = () => { + const map = mapInstanceRef.current as maplibregl.Map | null; + if (!map) return; + + map.off('click', onMapClick); + (map.getContainer() as HTMLElement).style.cursor = ''; + map.getCanvas().style.cursor = ''; + + const pts = drawingPointsRef.current.slice(); + if (pts.length >= 3) { + // Add final polygon source/layer + const coords = pts.map(p => [p[1], p[0]]); + const ring = coords.slice(); if (ring.length && (ring[0][0] !== ring[ring.length-1][0] || ring[0][1] !== ring[ring.length-1][1])) ring.push(ring[0]); + try { + if (map.getSource('drawn')) map.removeSource('drawn'); + if (map.getLayer('drawn-fill')) map.removeLayer('drawn-fill'); + if (map.getLayer('drawn-line')) map.removeLayer('drawn-line'); + } catch (e) {} + try { + map.addSource('drawn', { type: 'geojson', data: { type: 'Feature', properties: {}, geometry: { type: 'Polygon', coordinates: [ring] } } as any }); + map.addLayer({ id: 'drawn-fill', type: 'fill', source: 'drawn', paint: { 'fill-color': '#C84C0E', 'fill-opacity': 0.15 } }); + map.addLayer({ id: 'drawn-line', type: 'line', source: 'drawn', paint: { 'line-color': '#C84C0E', 'line-width': 2 } }); + } catch (e) {} + + drawnLayersRef.current.push('drawn' as any); + + // Notify parent + try { if (onPolygonComplete) onPolygonComplete(pts.map(p => ({ lat: p[0], lng: p[1] }))); } catch (e) { console.error(e); } + } + + // remove preview and temp markers + try { if (map.getLayer('preview-line')) map.removeLayer('preview-line'); } catch (e) {} + try { if (map.getLayer('preview-fill')) map.removeLayer('preview-fill'); } catch (e) {} + try { if (map.getSource('preview')) map.removeSource('preview'); } catch (e) {} + + tempMarkersRef.current.forEach(m => { try { (m as any).remove(); } catch (e) {} }); + tempMarkersRef.current = []; + drawingPointsRef.current = []; + }; + + /** + * Undo last drawn point + * - Removes last point from array + * - Removes corresponding marker + * - Redraws temporary visualization + */ + const undoDrawingOnMap = () => { + const map = mapInstanceRef.current as maplibregl.Map | null; + if (!map) return; + + // remove last temp marker + try { + const last = tempMarkersRef.current.pop(); + if (last) try { (last as any).remove(); } catch (e) {} + } catch (e) {} + + drawingPointsRef.current.pop(); + + // update preview source + try { + const coords = drawingPointsRef.current.map(p => [p[1], p[0]]); + const preview = { + type: 'Feature', + geometry: drawingPointsRef.current.length >= 3 ? { type: 'Polygon', coordinates: [[...coords, coords[0]]] } : { type: 'LineString', coordinates: coords } + } as any; + if (map.getSource('preview')) (map.getSource('preview') as any).setData(preview); + } catch (e) {} + }; + + /** + * Clear all drawings (both temporary and final) + * @param notify - If true, calls onPolygonComplete with empty array + */ + const clearDrawingsOnMap = (notify: boolean = false) => { + const map = mapInstanceRef.current as maplibregl.Map | null; + if (!map) return; + + // remove drawn source/layers + try { if (map.getLayer('drawn-fill')) map.removeLayer('drawn-fill'); } catch (e) {} + try { if (map.getLayer('drawn-line')) map.removeLayer('drawn-line'); } catch (e) {} + try { if (map.getSource('drawn')) map.removeSource('drawn'); } catch (e) {} + + // remove preview + try { if (map.getLayer('preview-line')) map.removeLayer('preview-line'); } catch (e) {} + try { if (map.getLayer('preview-fill')) map.removeLayer('preview-fill'); } catch (e) {} + try { if (map.getSource('preview')) map.removeSource('preview'); } catch (e) {} + + // remove markers + tempMarkersRef.current.forEach(m => { try { (m as any).remove(); } catch (e) {} }); + tempMarkersRef.current = []; + + drawingPointsRef.current = []; + + // Notify parent if requested + if (notify && onPolygonComplete) onPolygonComplete([]); + }; + + return ; +} + +/** + * MapComponent Props Interface + */ +interface MapComponentProps { + application: Property | null; + applicationStatus: string // Property data containing GIS information + applicationID: string +} + +/** + * MapComponent - Parent Container + * + * Main component that manages map state and user interactions + * + * Features: + * - Toggle between view/edit modes + * - Polygon drawing with undo/clear controls + * - Single point location editing with live preview + * - Automatic coordinate persistence via RTK Query mutation + * - Display of current coordinates and centroid + * + * State Management: + * - Uses local React state for UI interactions + * - Persists changes to backend via RTK Query mutation + * - RTK Query cache automatically updates on successful mutation + */ +export default function MapComponent({ application, applicationStatus, applicationID }: MapComponentProps) { + // Extract coordinates from application data + const coordinates = application?.GISData?.Coordinates; + const status = applicationStatus; + // console.log("application Status from map :",status ); + + + // UI state + const [interactive, setInteractive] = useState(false); // Map interactivity toggle + const [polygonActive, setPolygonActive] = useState(false); // Polygon drawing mode active + const [locationMode, setLocationMode] = useState(false); // Single point editing mode + + // Location state + const [locationCenter, setLocationCenter] = useState<{ lat: number; lng: number } | null>(null); // Live map center during editing + const [initialEditCenter, setInitialEditCenter] = useState<{ lat: number; lng: number } | null>(null); // Initial center when entering edit mode + const [currentPolygon, setCurrentPolygon] = useState | null>(null); // Currently drawn polygon + const [lastSavedLocation, setLastSavedLocation] = useState<{ lat: number; lng: number } | null>(null); // Last saved single point + const [postApplicationLog] = usePostApplicationLogMutation(); + const { user } = useAuth(); + const userName= user?.username + // Refs + const polygonControlRef = useRef(null); // Control polygon drawing from parent + + // RTK Query mutation for persisting coordinates to backend + const [replaceGisCoordinates] = useReplaceGisCoordinatesMutation(); + + /** + * Sync coordinates from props to local state + * Extracts single point coordinates when available + */ + useEffect(() => { + // Reset drawing state when coordinates change + setCurrentPolygon(null); + setLocationCenter(null); + + // Extract single point coordinate from various possible structures + const fromCoordinates = (() => { + if (Array.isArray(coordinates) && coordinates.length === 1) { + return { + lat: coordinates[0].Latitude ?? coordinates[0].Latitude ?? 0, + lng: coordinates[0].Longitude ?? coordinates[0].Longitude ?? 0, + }; + } + + // Check GISData for single point + const gs = application?.GISData; + const lat = gs?.Latitude ?? gs?.Latitude; + const lng = gs?.Longitude ?? gs?.Longitude; + if (typeof lat === 'number' && typeof lng === 'number') { + return { lat, lng }; + } + + return null; + })(); + + // Update lastSavedLocation if coordinate changed + if ( + fromCoordinates && + (!lastSavedLocation || + fromCoordinates.lat !== lastSavedLocation.lat || + fromCoordinates.lng !== lastSavedLocation.lng) + ) { + setLastSavedLocation(fromCoordinates); + } + }, [coordinates, application, lastSavedLocation]); + + /** + * Convert backend coordinate format to polygon points + * Handles both uppercase and lowercase property names + */ + const backendCoordsToPolygon = (coords: any) => + Array.isArray(coords) + ? coords.map((c) => ({ + lat: c.Latitude ?? c.latitude ?? 0, + lng: c.Longitude ?? c.longitude ?? 0, + })) + : []; + + /** + * Live update handler for location mode + * Called continuously as user pans the map + */ + const handleLocationMove = useCallback((lat: number, lng: number) => { + setLocationCenter({ lat, lng }); + }, []); + + /** + * Handle polygon drawing completion + * - Updates local state immediately + * - Persists to backend via RTK Query mutation + * - Reverts on error + */ + const handlePolygonComplete = async (polygonArr: Array<{ lat: number; lng: number }>) => { + setCurrentPolygon(polygonArr); + setLastSavedLocation(null); + + const updatedCoords = polygonArr.map((p) => ({ latitude: p.lat, longitude: p.lng })); + + const gisDataId = application?.GISData?.ID ?? application?.GISData?.ID ?? null; + const applicationId = application?.ID ?? null; + + // Log polygon change + const prevCoords = Array.isArray(application?.GISData?.Coordinates) ? application.GISData.Coordinates : []; + let comments = ''; + if (prevCoords.length > 0) { + comments = `Polygon changed`; + } else { + comments = `Polygon added`; + } + + if (gisDataId && applicationId) { + try { + await replaceGisCoordinates({ + gisDataId, + applicationId, + points: updatedCoords + }).unwrap(); + // console.log('Polygon coordinates saved successfully'); + } catch (err) { + console.error('Failed to save polygon coordinates', err); + setCurrentPolygon(null); + } + } else { + console.warn('Missing GISDataID or ApplicationID; cannot persist coordinates'); + } + + // Build log payload + const logPayload = { + applicationId: applicationID || '', + propertyId: application?.GISData?.PropertyID || '', + gisDataId: gisDataId || '', + action: "EDIT_POLYGON", + performedBy: (typeof userName !== 'undefined' && userName) ? userName : "SERVICE_MANAGER", + actor: "SERVICE MANAGER", + comments, + timestamp: new Date().toISOString(), + metadata: {} + }; + // console.log("Polygon Log Payload : ", logPayload); + + // Post the log + try { + if (typeof postApplicationLog === 'function') { + await postApplicationLog(logPayload).unwrap(); + } + } catch (err) { + console.error("Failed to post polygon application log:", err); + } + }; + + /** + * Save single point location + * - Uses live center from locationCenter state + * - Updates local state immediately for instant feedback + * - Persists to backend + * - Exits location mode on success + */ + + // const currentUserRole = useSelector((state: RootState) => state.user.currentUser?.role); + + + const saveLocation = async () => { + if (!locationCenter) return; + + const payload = [{ latitude: locationCenter.lat, longitude: locationCenter.lng }]; + + // Log changed coordinates before editing + const prevLocation = lastSavedLocation; + if (prevLocation && (prevLocation.lat !== locationCenter.lat || prevLocation.lng !== locationCenter.lng)) { + console.log(`Location changed from lat: ${prevLocation.lat}, lng: ${prevLocation.lng} to lat: ${locationCenter.lat}, lng: ${locationCenter.lng}`); + } + + setLastSavedLocation(locationCenter); + setCurrentPolygon(null); + setLocationMode(false); + setInitialEditCenter(null); + + const gisDataId = application?.GISData?.ID ?? null; + const applicationId = application?.ID ?? null; + + if (gisDataId && applicationId) { + try { + await replaceGisCoordinates({ + gisDataId, + applicationId, + points: payload + }).unwrap(); + console.log('Location saved successfully'); + } catch (err) { + console.error('Failed to save location', err); + setLastSavedLocation(null); + } + } else { + console.warn('Missing GISDataID or ApplicationID; cannot persist location'); + } + + // Prepare log entry in required format + let comments = ''; + if (prevLocation && (prevLocation.lat !== locationCenter.lat || prevLocation.lng !== locationCenter.lng)) { + comments = `Location changed`; + } else { + comments = `Location added`; + } + // Build log payload + const logPayload = { + applicationId: applicationID || '', + propertyId: application?.GISData?.PropertyID || '', + gisDataId: gisDataId || '', + action: "EDIT_LOCATION", + performedBy: (typeof userName !== 'undefined' && userName) ? userName : "SERVICE_MANAGER", + actor: "SERVICE MANAGER", + comments, + timestamp: new Date().toISOString(), + metadata: {} + }; + console.log("Location Log Payload : ", logPayload); + + // Post the log + try { + if (typeof postApplicationLog === 'function') { + await postApplicationLog(logPayload).unwrap(); + } + } catch (err) { + console.error("Failed to post location application log:", err); + } + }; + + /** + * Cancel location editing mode + * Discards any unsaved changes + */ + const cancelLocation = () => { + setLocationMode(false); + setLocationCenter(null); + setInitialEditCenter(null); + }; + + /** + * Memoized coordinates for map display + * Priority: currentPolygon > backend coordinates > lastSavedLocation + * Returns null in location mode (no markers displayed) + */ + const displayCoords = React.useMemo(() => { + if (locationMode) return null; // Hide markers in location edit mode + + if (currentPolygon && currentPolygon.length) { + return currentPolygon.map((p) => ({ Latitude: p.lat, Longitude: p.lng })); + } + + if (Array.isArray(coordinates) && coordinates.length > 0) { + return coordinates; + } + + if (lastSavedLocation) { + return [{ Latitude: lastSavedLocation.lat, Longitude: lastSavedLocation.lng }]; + } + + return null; + }, [locationMode, currentPolygon, lastSavedLocation, coordinates]); + + /** + * Calculate centroid for display in info panel + * - For single point: returns the point + * - For polygon: calculates geometric centroid using shoelace formula + */ + const displayCentroid = (() => { + const sourceCoords = locationMode && locationCenter + ? [{ Latitude: locationCenter.lat, Longitude: locationCenter.lng }] + : displayCoords || []; + + const points = backendCoordsToPolygon(sourceCoords); + if (!points.length) return null; + if (points.length === 1) return points[0]; + + // Calculate polygon centroid using shoelace formula + let signedArea = 0, cx = 0, cy = 0; + for (let i = 0; i < points.length; i++) { + const { lat: x0, lng: y0 } = points[i]; + const { lat: x1, lng: y1 } = points[(i + 1) % points.length]; + const a = x0 * y1 - x1 * y0; + signedArea += a; + cx += (x0 + x1) * a; + cy += (y0 + y1) * a; + } + signedArea *= 0.5; + + // Fallback for degenerate polygons + if (signedArea === 0) return points[0]; + + cx = cx / (6 * signedArea); + cy = cy / (6 * signedArea); + return { lat: cx, lng: cy }; + })(); + + return ( + + {/* Map Container */} + + + + {/* Overlay to enable interactivity on click (for non-interactive maps) */} + {!interactive && ( + setInteractive(true)} + title="Click to activate map" + /> + )} + + {/* Polygon Drawing Controls (visible when polygon mode active) */} + {polygonActive && ( + + {/* Clear button */} + polygonControlRef.current?.clear?.(false)} + sx={mapIconButtonStyle} + > + close + + + {/* Start drawing button */} + + + {/* Finish drawing button */} + + + {/* Undo last point button */} + polygonControlRef.current?.undo?.()} + sx={mapUndoButtonStyle} + > + undo + + + )} + + {/* Coordinate Info Panel (top right) - shown when NOT in location mode */} + {displayCentroid && !locationMode && ( + +
+ latitude: {displayCentroid.lat.toFixed(6)} +
+
+ longitude: {displayCentroid.lng.toFixed(6)} +
+ {displayCoords && displayCoords.length > 2 && ( +
+ points: {displayCoords.length} +
+ )} +
+ )} +
+ + {/* Main Action Buttons */} + + {/* Edit Location Button - for single point editing */} + + + {/* Edit Polygon Button - toggle polygon drawing mode */} + + + + {/* Location Mode Overlay (center marker + coordinate display) */} + {locationMode && ( + <> + {/* Centered marker that stays in middle of screen */} + + center + + + {/* Live coordinate display with save/cancel buttons */} + +
+ Lat: {locationCenter ? locationCenter.lat.toFixed(6) : '—'} +
+
+ Lng: {locationCenter ? locationCenter.lng.toFixed(6) : '—'} +
+ + + + +
+ + )} +
+ ); +} diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/SelectorTab/SelectorTab.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/SelectorTab/SelectorTab.tsx new file mode 100644 index 0000000..66ebfc1 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/SelectorTab/SelectorTab.tsx @@ -0,0 +1,79 @@ + +import Cards from '../property details/property_cards/cards'; +import { Box, Button } from '@mui/material'; +import { + tabBarWrapperStyle, + tabButtonStyle, +} from "../../Styles/searchPropertyStyles/selectorTabsStyle"; +import SearchPropertyDocuments from '../property details/SearchPropertyDocuments'; +import SearchPropertyChangeLog from '../change_Log/ChangeLog'; + + +// Supported tab types for the selector +export type TabType = 'property' | 'documents' | 'services' | 'change'; + + +// Props for the SelectorTab component +interface SelectorTabProps { + activeTab: TabType; // Currently selected tab + onTabChange: (tab: TabType) => void; // Callback when tab changes + propertyId: string | null; // Property ID for fetching data + assesseeId?: string; +} + + +// Tab configuration: label, value, and disabled state +const tabConfig: { + label: string; + value: TabType; + disabled?: boolean; +}[] = [ + { label: 'Property Details', value: 'property' }, + { label: 'Documents', value: 'documents' }, + { label: 'Services and Utilities', value: 'services', disabled: true }, + { label: 'Change Log', value: 'change' }, +]; + + +// SelectorTab component: renders tab buttons and the corresponding content panel +export default function SelectorTab({ activeTab, onTabChange , propertyId, assesseeId}: SelectorTabProps) { + // Handles tab button clicks, prevents switching to disabled tabs + function handleTabClick(tab: TabType) { + if (!tabConfig.find(t => t.value === tab)?.disabled) { + onTabChange(tab); + } + } + + return ( + + {/* Tab bar with all configured tabs */} + + {tabConfig.map(tab => ( + + ))} + + {/* Content panel: renders the component for the active tab */} + + {activeTab === 'property' && } + {activeTab === 'documents' && } + {activeTab === 'services' && ""} + {activeTab === 'change' && } + + + ); +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/change_Log/ChangeLog.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/change_Log/ChangeLog.tsx new file mode 100644 index 0000000..6fea8cd --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/change_Log/ChangeLog.tsx @@ -0,0 +1,160 @@ +// This component displays a change log/history for a property, including application previews and a timeline of key events. +// It uses static mock data for demonstration and renders cards for preview and application history. +import _React from "react"; +import { Box, Typography, Button } from "@mui/material"; +import VisibilityIcon from "@mui/icons-material/Visibility"; +import { +applicatonHistoryStyle, + previewBoxCardStyle, + previewCenteredStyle, + previewIconStyle, + previewSubStyle, + applicationHistoryCardStyle, + applicationHistoryTitleStyle, + historySubStyle, + historyItemStyle, + historyLeftStyle, + historyYearStyle, + historyMainStyle, + historyRightStyle, + historyDateStyle, + historyStayleStyle, + downloadButtonStyle, +viewLocationButtonStyle, +} from "../../Styles/searchPropertyStyles/searchPropertyChangeLogStyle"; + +// Mock data representing the property/application history timeline +const history = [ + { + year: 2025, + id: 'PRP_2025_003', + action: 'Apartment complex verification pending final Review', + agent: 'Ravi Kumar', + date: '28/10/2024', + status: 'Under Review' + }, + { + year: 2023, + event: 'Ownership Transfer', + from: 'Ms Meena Rajesh', + to: 'Mr Pradeep Nair (current owner)', + mutation: 'MUT_2023_0134', + date: '14/04/2023' + }, + { + year: 2016, + id: 'PTX_2016_015', + action: 'Property Reassessment for updated floor area', + date: '23/07/2016' + } +]; + + +export default function SearchPropertyChangeLog() { + // Renders the property change log UI, including preview and application history cards + return ( + + {/* Preview Card: Shows a preview section for the selected application */} + + + + + + + Preview Application + + + view application selected from Logs + + + + + {/* Application History Timeline */} + + Application History + + All Applications filed against this Property + + + + {/* Render each history event as a timeline card */} + {history.map((h, idx) => ( + + + + + + {h.year} + + {/* Conditionally render available fields for each event */} + {h.id && ( + + Application ID : {h.id} + + )} + {h.event && ( + + Event: {h.event} + + )} + {h.action && ( + + Action: {h.action} + + )} + {h.agent && ( + + Agent: {h.agent} + + )} + {h.from && ( + + From : {h.from} + + )} + {h.to && ( + + To : {h.to} + + )} + {h.mutation && ( + + Mutation ID : {h.mutation} + + )} + {/* Button to view location for this event */} + + + + + + {h.date} + + {h.status && ( + + {h.status} + + )} + {/* Button to download documents for this event */} + + + + + ))} + + + + ); +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/properties.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/properties.tsx new file mode 100644 index 0000000..858e61b --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/properties.tsx @@ -0,0 +1,298 @@ +/** + * properties.tsx + * + * This file provides the main Properties page component for viewing and managing a single property application. + * It displays property details, a map, and tabbed sections for documents, services, and change log. + * The component fetches application data, manages UI state for actions (accept, assign, reassign), and renders dialogs for assignment. + * + * Features: + * - Fetch and display property application data + * - Show property map and details + * - Tabbed navigation for property, documents, services, and change log + * - Accept, assign, and reassign application actions with dialogs + * - Handles loading and error states + */ +import React, { useState } from 'react'; +import MapComponent from './Map_Component/MapComponent'; +import SelectorTab from './SelectorTab/SelectorTab'; +import { Box, Typography, Select, MenuItem, CircularProgress, Alert, Dialog, DialogContent } from '@mui/material'; +import { JurisdictionDropdown } from '../../../../components/JurisdictionDropdown/JurisdictionDropdown'; +import { jurisdictionDropdownStyles } from '../../../../styles/HomePageStyle/HomePageStyle'; +import { loadingContainer } from '../../all-applications/styles/AllApplicationStyle'; +import { useAcceptApplicationMutation, useGetApplicationByApplicationIdQuery } from '../api/applicationApi'; +import ApplicationInboxReassignmentBox from '../../application-inbox/components/ApplicationInboxReassignmentBox/ApplicationInboxReassignmentBox'; +import ApplicationInboxAssignmentBox from './Assign_Agent_Popup/assignmentPopup'; + +import { + selectActionStyle, + selectMenuPaperProps, + mainContentStyle +} from '../Styles/propertiesStyle'; + +type TabType = 'property' | 'documents' | 'services' | 'change'; + + +// Props for the Properties page component +interface PropertiesPageProps { + propertyDetails?: boolean; + applicationID: string; + sideBarOpen?: boolean; + setSelectedNav?: (nav: string) => void; +} + + +export const Properties: React.FC = ({ applicationID }) => { + // State for active tab, action dropdown, and dialog visibility + const [activeTab, setActiveTab] = useState('property'); + const [action, setAction] = useState(''); + const [dialogOpen, setDialogOpen] = useState(false); + const [assignDialogOpen, setAssignDialogOpen] = useState(false); + + // Fetch data using RTK Query + const { data: applicationData, error: apiError, isLoading: apiLoading } = useGetApplicationByApplicationIdQuery(applicationID); + // console.log("Application data id :", applicationData?.data.ID); + // console.log("Application data : ", applicationData); + + const [acceptApplication, { isLoading: acceptLoading }] = useAcceptApplicationMutation(); + const agentId = applicationData?.data.AssignedAgent; + // console.log("Application data", applicationData); + + + // Handler for accepting the application + const handleAcceptApplication = async () => { + if (applicationData?.data.Status === "VERIFIED") { + console.log('Status is VERIFIED. Accept clicked for applicationId:', applicationID); + } + try { + const response = await acceptApplication({ + applicationId: applicationID, + approved: true, + comments: 'audit verified application' + }).unwrap(); + console.log('Accept API response:', response); + } catch (err) { + console.error('Accept action failed', err); + } + setAction(""); + }; + + // Handler for tab change + const handleTabChange = (tab: TabType) => { + setActiveTab(tab); + }; + + type StatusKey = 'VERIFIED' | 'ASSIGNED' | 'REJECTED' | 'APPROVED' | 'AUDIT_VERIFIED' | 'INITIATED'; + + const statusMap: Record = { + VERIFIED: { label: "Verified", color: "#14833B" }, + ASSIGNED: { label: "Assigned", color: "#e4b10bff" }, + REJECTED: { label: "Rejected", color: "#B71C1C" }, + APPROVED: { label: "Approved", color: "#1565C0" }, + AUDIT_VERIFIED: { label: "Audit Verified", color: "#00703C" }, + INITIATED: { label: "Initiated", color: "#f6cd38ff" }, + + }; + + const statusValue = applicationData?.data?.Status as StatusKey; + const statusInfo = statusValue && statusMap[statusValue] + ? statusMap[statusValue] + : { + label: statusValue ?? "Loading...", + color: "#C84C0E" + }; + + if (apiLoading) { + return ( + + + + ); + } + + // Show error alert if API call fails + if (apiError) { + const errorMessage = + 'status' in apiError + ? `Error: ${apiError.status}` + : apiError.message || 'Failed to load applications'; + return ( + + {errorMessage} + + ); + } + + // Main page layout and content + return ( + + + {/* Jurisdiction dropdown at the top */} + + + + + {/* Main content area with property info, actions, map, and tabs */} + + + + + {applicationData?.data.Property.ComplexName ?? 'Loading...'}
+
+ + {applicationData?.data.ApplicationNo?? 'Loading address...'} + +
+ + + + {statusInfo.label} + + + {/* Action dropdown for Accept, Assign, Reassign */} + {applicationData?.data.Status !== "AUDIT_VERIFIED" && ( + + )} + + + {/* Dialog for reassigning application */} + setDialogOpen(false)} + PaperProps={{ + sx: { + minWidth: 500, + borderRadius: '20px', + } + }} + > + + setDialogOpen(false)} + /> + + + + {/* Dialog for assigning application */} + setAssignDialogOpen(false)} + PaperProps={{ + sx: { + minWidth: 500, + borderRadius: '20px', + } + }} + > + + setAssignDialogOpen(false)} + ward={applicationData?.data.Property.Address.WardNo || ""} + /> + + + + {/* Property map component */} + {applicationData?.data?.Property ? ( + + ) : ( + Loading map... + )} + {/* Tabbed selector for property, documents, services, change log */} + +
+
+
+
+ ); +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/SearchPropertyDocuments.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/SearchPropertyDocuments.tsx new file mode 100644 index 0000000..565d0ae --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/SearchPropertyDocuments.tsx @@ -0,0 +1,358 @@ +/** + * SearchPropertyDocuments.tsx + * + * This file provides a React component for displaying and managing property-related documents. + * It allows users to view, download, and update the status (verify/reject) of documents associated with a property. + * Documents can be filtered by uploader role (All, Citizen, Agent). + * Integrates with backend APIs for fetching documents and updating their status. + */ +import React, { useState } from "react"; +import { Box, Typography, IconButton, Button, FormControl, Select, MenuItem, Menu } from "@mui/material"; +import taskSvg from "../../Assets/documentSectionIcon/task.svg"; +import searchActivitySvg from "../../Assets/documentSectionIcon/search_activity.svg"; +import FileDownloadOutlinedIcon from '@mui/icons-material/FileDownloadOutlined'; +import VisibilityOutlinedIcon from '@mui/icons-material/VisibilityOutlined'; +import CheckIcon from '@mui/icons-material/Check'; +import CancelTwoToneIcon from '@mui/icons-material/CancelTwoTone'; +import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown'; +import { + documentsCardOuterStyle, + documentsCardHeaderStyle, + documentsTitleStyle, + documentsSubtitleStyle, + documentsListStyle, + documentRowStyle, + documentIconBoxStyle, + documentTextBoxStyle, + documentTitleStyle, + documentMetaStyle, + verifiedContainerStyle, + verifiedTextStyle, + verifiedIconBoxStyle, + documentIconButtonStyle, + SelectButtonStyle, + RightIconStyle, + EachDocumentRowStyle, + DropdownStyle, + PendingTextStyle, + rejectedTextStyle, + CancelIconBoxStyle, + rejectedContainerStyle, + PendingContainerStyle, + PendingIconBoxStyle +} from "../../Styles/searchPropertyStyles/DocumentsCardStyle"; +import { useGetApplicationByApplicationIdQuery } from "../../api/applicationApi"; +import { useGetUserByIdQuery } from '../../api/documentsApi'; +import { useGetFileFromFilestoreQuery } from "../../api/fileStoreApi"; +import { useUpdateDocumentActionMutation } from "../../api/documentsApi"; +// ...existing code... + +// Renders a single document row with actions (view, download, verify, reject) and status display. +function DocumentRow({ doc, isLastRow, assesseeUser }: { doc: any; isLastRow: boolean; assesseeUser?: any }) { + // Extract file store ID for fetching the document file + const fileStoreId = doc.FileStoreID; + // Fetch the file blob from the backend using the file store ID + const { data: fileBlob, isSuccess } = useGetFileFromFilestoreQuery( + typeof fileStoreId === "string" || typeof fileStoreId === "number" + ? { fileStoreId: fileStoreId.toString() } + : { fileStoreId: "" }, + { skip: !fileStoreId } + ); + // Local state for the object URL to view/download the file + const [fileUrl, setFileUrl] = React.useState(null); + + // RTK mutation for updating document action (verify/reject) + const [updateDocumentAction, { isLoading: isUpdating }] = useUpdateDocumentActionMutation(); + + // Local action state: reflects the current status of the document (pending, verified, rejected) + const [localAction, setLocalAction] = React.useState( + doc.action ? doc.action.trim().toUpperCase() : "PENDING" + ); + // State for managing the action menu anchor + const [anchorEl, setAnchorEl] = React.useState(null); + + // Effect: create an object URL for the file blob when available, and clean up on unmount + React.useEffect(() => { + let objectUrl: string | null = null; + if (fileBlob && isSuccess) { + objectUrl = URL.createObjectURL(fileBlob); + setFileUrl(objectUrl); + } + return () => { + if (objectUrl) URL.revokeObjectURL(objectUrl); + setFileUrl(null); + }; + }, [fileBlob, isSuccess]); + + // Prefer backend field for uploader, try common variations + const uploadedBy = doc.UploadedBy ?? doc.uploadedBy ?? doc.uploader ?? null; + + // Normalize assesseeUser shape: some onboarding responses wrap user under `data`, others may return user directly. + const userObj = assesseeUser?.data ?? assesseeUser ?? null; + + // Resolve role and name from userObj first, then fall back to document fields + const uploaderRole = userObj?.role ?? (doc.UploadedByRole ?? doc.uploadedByRole ?? doc.uploaderRole ?? null); + const uploaderName = ( + userObj?.profile?.fullName ?? userObj?.fullName ?? userObj?.username ?? + doc.UploadedByName ?? doc.uploadedByName ?? doc.uploaderName ?? uploadedBy ?? '' + ).toString(); + + // Extract and format the file size for display + const rawSize = doc.Size ?? doc.size ?? doc.SizeInBytes ?? doc.sizeInBytes ?? doc.FileSize ?? null; + // Helper to format bytes as human-readable string + const formatBytes = (bytes: number) => { + if (!Number.isFinite(bytes)) return ''; + if (bytes < 1024) return `${bytes} B`; + const kb = bytes / 1024; + if (kb < 1024) return `${kb.toFixed(1)} KB`; + return `${(kb / 1024).toFixed(2)} MB`; + }; + // Compute the display string for file size + const sizeDisplay = (() => { + if (rawSize == null || rawSize === '') return ''; + if (typeof rawSize === 'string') { + const n = Number(rawSize); + if (!Number.isNaN(n)) return formatBytes(n); // string containing bytes number + return rawSize; // already a human-readable string like "12 KB" + } + return formatBytes(Number(rawSize)); + })(); + + + // Format the upload date as DD/MM/YY + const formattedDate = (() => { + const raw = doc?.UploadDate?.split("T")?.[0]; + if (!raw) return ""; + const parts = raw.split("-"); + if (parts.length === 3) { + const yyyy = parts[0]; + const mm = parts[1]; + const dd = parts[2]; + return `${dd}/${mm}/${yyyy.slice(-2)}`; + } + return raw; + })(); + + // Handle verify/reject actions: update UI optimistically, call API, revert on error + const handleActionSelect = async (action: "VERIFIED" | "REJECTED") => { + try { + setAnchorEl(null); + // Optimistically update UI first + setLocalAction(action); + // Call API to persist the change + await updateDocumentAction({ + documentId: doc.ID, + action: action + }).unwrap(); + // Success - localAction already updated optimistically + console.log(`Document ${doc.ID} action updated to ${action}`); + } catch (error) { + // Revert optimistic update on error + setLocalAction(doc.action ? doc.action.trim().toUpperCase() : "PENDING"); + console.error('Failed to update document action:', error); + // You could add toast notification here + } + }; + + return ( + + + + + + + {doc.DocumentType} + {doc.DocumentName} + + {sizeDisplay ? `${sizeDisplay} · ` : ''} + Date : {formattedDate} + + + {uploaderRole ? `${uploaderRole} - ` : ''} + Uploaded by - {(uploaderName && uploaderName.trim()) ? uploaderName : (uploadedBy ?? '—')} + + + + + + {/* Act button: always visible, fixed spacing so status won't push it */} + <> + + setAnchorEl(null)} + anchorOrigin={{ vertical: 'bottom', horizontal: 'right' }} + transformOrigin={{ vertical: 'top', horizontal: 'right' }} + > + handleActionSelect("VERIFIED")}>Verify + handleActionSelect("REJECTED")}>Reject + + + + {/* Status: always rendered after Act so it doesn't swap places */} + {localAction === "VERIFIED" ? ( + + Verified + + + + + ) : localAction === "REJECTED" ? ( + + Rejected + + + + + ) : ( + + + + Pending + + + + + + + )} + + + + fileUrl && window.open(fileUrl, "_blank")} + > + + + { + if (fileUrl) { + const link = document.createElement("a"); + link.href = fileUrl; + link.download = doc.DocumentName || "document"; + document.body.appendChild(link); + link.click(); + document.body.removeChild(link); + } + }} + > + + + + + + + ); +} + +// Main component for displaying and managing the list of property documents +export default function DocumentsCard({propertyId, assesseeId}: {propertyId: string|undefined, assesseeId: string|undefined}) { + // State for filtering documents by uploader role + const [role, setRole] = useState<"All" | "Citizen" | "Agent">("All"); + // Fetch property application data by property ID + const { data: application, error, isLoading } = useGetApplicationByApplicationIdQuery(`${propertyId}`); + // fetch assessee user once (if assesseeId provided) + const { data: assesseeUser } = useGetUserByIdQuery(assesseeId ?? '', { skip: !assesseeId }); + + // Show loading, error, or empty state as appropriate + if (isLoading) + return Loading...; + + if (error) + return Error: {error.toString()}; + + if (!application) + return No property found.; + + // Extract documents array from application data + const documents = application.data.Property.Documents || []; + + // Filter documents by role selection: if Agent selected, show only docs uploaded by AGENT; if Citizen, show only docs uploaded by CITIZEN. + const filteredDocuments = role === 'All' + ? documents + : documents.filter((d: any) => { + const roleField = (d.UploadedByRole ?? d.uploadedByRole ?? d.uploaderRole ?? '').toString().toUpperCase(); + const uploadedByField = (d.UploadedBy ?? d.uploadedBy ?? d.uploader ?? '').toString().toUpperCase(); + if (role === 'Agent') return roleField === 'AGENT' || uploadedByField === 'AGENT'; + if (role === 'Citizen') return roleField === 'CITIZEN' || uploadedByField === 'CITIZEN'; + return true; + }); + + // Render the documents card UI, including filter, list, and empty state + return ( + + + + + Documents + + + + All Documents in chronological order + + + + + + + + + + + + {filteredDocuments.length === 0 ? ( + + + No Documents Uploaded. + + + ) : ( + filteredDocuments.map((doc, i) => ( + + )) + )} + + + ); +} diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/addRequestPopUp/addRequestPopUp.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/addRequestPopUp/addRequestPopUp.tsx new file mode 100644 index 0000000..5b29bb2 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/addRequestPopUp/addRequestPopUp.tsx @@ -0,0 +1,253 @@ + +// Popup dialog component for submitting a request or comment, with optional file upload. +import React, { useState, useRef } from "react"; + import { + Dialog, + DialogContent, + Typography, + TextField, + Button, + IconButton, + Box, + } from "@mui/material"; + import UploadIcon from '@mui/icons-material/Upload'; + import CloseIcon from "@mui/icons-material/Close"; + import DownloadIcon from "@mui/icons-material/Download"; + import { + dialogPaperStyle, + dialogTitleStyle, + closeButtonStyle, + labelStyle, + textFieldStyle, + fileInputRoot, + buttonBarStyle, + cancelBtnStyle, + submitBtnStyle, + } from "../../../Styles/addRequestStyles/addRequestPopUpStyle"; + + +// Props for the RequestDialog component +type RequestDialogProps = { + open: boolean; // Whether the dialog is open + onClose: () => void; // Handler to close the dialog + onSubmit: (comment: string, file?: File) => void; // Handler for submitting the request + }; + + + export default function RequestDialog({ + open, + onClose, + onSubmit, + }: RequestDialogProps) { + // State for the comment input + const [comment, setComment] = useState(""); + // State for the uploaded file + const [file, setFile] = useState(null); + // Ref for the file input element + const inputRef = useRef(null); + + // Handler for file input change + const handleFileChange = (e: React.ChangeEvent) => { + if (e.target.files && e.target.files.length > 0) { + setFile(e.target.files[0]); + e.target.value = ""; + } + }; + + // Handler to remove the selected file + const handleRemoveFile = () => { + setFile(null); + if (inputRef.current) inputRef.current.value = ""; + }; + + // Handler to download the selected file + const handleDownloadFile = () => { + if (file) { + const url = URL.createObjectURL(file); + const a = document.createElement("a"); + a.href = url; + a.download = file.name; + a.click(); + URL.revokeObjectURL(url); + } + }; + + // Handler for submitting the request/comment and file + const handleSubmit = () => { + console.log("Submitting file:", file); + onSubmit(comment, file ?? undefined); + setComment(""); + setFile(null); + if (inputRef.current) inputRef.current.value = ""; + }; + + return ( + + {/* Close button at the top right */} + + + + + {/* Dialog title */} + Request/Comment + + {/* Label for the comment input */} + Enter Request and Comment + {/* + Enter Request or Comment + Please add the updated Building Permission, + the new Sale Deed to update the document and for verification. + */} + setComment(e.target.value)} + sx={textFieldStyle} + inputProps={{ + style: { + fontSize: "15px", + resize: "vertical", + padding: "15px", + }, + }} + /> + {/* File upload area */} + + + + + + + + Click or drag file to upload (PDF, DOC, PNG etc.) + + + + + {/* Uploaded file display section */} + {file && ( + + {/* PDF File Icon and Name */} + + {/* Custom PDF icon with label */} + + + .pdf + + + + {file.name} + + + {/* Download button for the uploaded file */} + + {/* Remove (close) icon for the uploaded file */} + + + + + )} + {/* Action buttons for cancel and submit */} + + + + + + + + ); + } \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/addRequestPopUp/confirmationPopUp.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/addRequestPopUp/confirmationPopUp.tsx new file mode 100644 index 0000000..eddcaca --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/addRequestPopUp/confirmationPopUp.tsx @@ -0,0 +1,77 @@ + +// Confirmation dialog popup for confirming or rejecting a request/comment action. +import React from "react"; +import { Dialog, DialogContent, Typography, Button, IconButton, Box } from "@mui/material"; +import CloseIcon from "@mui/icons-material/Close"; +import { + confirmDialogPaperStyle, + confirmTitleStyle, + confirmDescStyle, + confirmNoteStyle, + confirmButtonBar, + rejectBtn, + confirmBtn, + closeButtonStyle, +} from "../../../Styles/addRequestStyles/confirmationPopUp"; + + +// Props for the ConfirmationDialog component +type ConfirmationDialogProps = { + open: boolean; // Whether the dialog is open + onReject: () => void; // Handler for rejecting the action + onConfirm: () => void; // Handler for confirming the action + onClose?: () => void; // Optional handler for closing the dialog +}; + + +/** + * ConfirmationDialog component displays a modal dialog for confirming or rejecting an action. + * Used to confirm irreversible actions such as submitting a request or comment. + */ +const ConfirmationDialog: React.FC = ({ + open, + onReject, + onConfirm, + onClose, +}) => ( + + {/* Close button at the top right */} + + + + + {/* Dialog title */} + Confirm Comment + {/* Confirmation message */} + + Are you sure you want to Confirm this request? + + {/* Note about irreversibility */} + + This action is irreversible. + + {/* Action buttons for reject and confirm */} + + + + + + +); + +export default ConfirmationDialog; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/cardLabels/cardLabels.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/cardLabels/cardLabels.ts new file mode 100644 index 0000000..0617f87 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/cardLabels/cardLabels.ts @@ -0,0 +1,106 @@ + +// Label mappings for displaying user-friendly field names in property application cards. + +// Labels for owner-related fields +export const ownerLabels: { [key: string]: string } = { + Name: "Owner Name ", + ContactNo: "Mobile Number ", + Email: "Email Address ", + Gender: "Gender ", + AdhaarNo: "Aadhaar No. " +}; + + +// Labels for amenities fields +export const amenitiesLabels: { [key: string]: string } = { + type: "Amenities Type", +}; + + +// Labels for additional property details (e.g., parking) +export const additionalDetailsLabels: { [key: string]: string } = { + covered: "Covered Parking", + monthly_fee: "Monthly Fee", + reserved_spaces: "Reserved Spaces", + spaces: "Total Spaces", + type: "Parking Type", + revenueDocumentNo: "Revenue Document No", + serialNo: "Serial No", + +}; + + + +// Labels for address-related fields +export const addressLabels: { [key: string]: string } = { + Locality: "Locality ", + ZoneNo: "Zone No ", + WardNo: "Ward No ", + BlockNo: "Block No ", + Street: "Street ", + ElectionWard: "Election Ward ", + SecretariatWard: "Secretariat Ward ", + PinCode: "Pin Code ", + correspondenceAddress1: "Correspondence Address 1", + correspondenceAddress2: "Correspondence Address 2", + correspondenceAddress3: "Correspondence Address 3" +}; + + +// Labels for property main details +export const propertyLabels: { [key: string]: string } = { + PropertyNo: "Property No", + OwnershipType: "Ownership Type", + PropertyType: "Property Type", + ComplexName: "Complex Name" +}; + + +// Labels for assessment-related fields +export const assessmentLabels: { [key: string]: string } = { + ReasonOfCreation: "Reason of Creation ", + OccupancyCertificateNumber: "Occupancy Certificate Number ", + OccupancyCertificateDate: "Occupancy Certificate Date ", + ExtentOfSite: "Extent Of Site (sq ft) " +}; + + +// Labels for IGRS (stamp duty/registration) related fields +export const igsrLabels: { [key: string]: string } = { + igrsWard: "IGRS Ward", + igrsBlock: "IGRS Block", + igrsClassification: "IGRS Classification", + builtUpAreaPct: "Built-Up Area (%)", + totalPlinthArea: "Total Plinth Area (m²)", + habitation: "Habitation", + frontSetback: "Front Setback (ft)", + rearSetback: "Rear Setback (ft)", + sideSetback: "Side Setback (ft)", + doorNoFrom: "Door No. From", + doorNoTo: "Door No. To", + igrsLocality: "IGRS Locality" +}; + + +// Labels for construction-related fields +export const constructionLabels: { [key: string]: string } = { + FloorType: "Floor Type ", + WallType: "Wall Type ", + RoofType: "Roof Type ", + WoodType: "Wood Type " +}; + + +// Labels for floor-related fields +export const floorLabels: { [key: string]: string } = { + FloorNo: "Floor No ", + Classification: "Classification ", + NatureOfUsage: "Nature of Usage ", + FirmName: "Firm Name", + PlinthAreaSqFt: "Plinth Area (sqft)", + OccupancyName: "Occupancy Name", + OccupancyType: "Occupancy Type", + BuildingPermissionNo: "Building Permission No", + BreadthFt: "Breadth (ft)", + LengthFt: "Length (ft)" +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/cards.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/cards.tsx new file mode 100644 index 0000000..e9e15ef --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/cards.tsx @@ -0,0 +1,1197 @@ +import { useState, useEffect } from 'react'; +import { + Box, Button, Typography +} from '@mui/material'; +import { useEditAddressMutation } from '../../../api/edit-application-apis/editApplicationApi'; +import EditSquareIcon from '../../../Assets/edit_square.svg'; +import { + propertyDetailsGridStyle, + cardStyle, + cardHeaderLabelStyle, + cardLabelStyle, + cardContentStyle, + cardRowStyle, + noteCardGridStyle, + noteHeaderStyle, + noteLabelStyle, + noteDateStyle, + noteContentTextStyle, + trackCardStyle +} from "../../../Styles/searchPropertyStyles/cardsStyle"; +import { + ownerLabels, + addressLabels, + propertyLabels, + assessmentLabels, + igsrLabels, + constructionLabels, + floorLabels, + additionalDetailsLabels, + amenitiesLabels +} from "./cardLabels/cardLabels"; + +import EditOwnerPopover from './editCardPopup/editOwnerPopup'; +import type { OwnerEditInput } from './editCardPopup/editOwnerPopup'; +import EditAddressPopover from './editCardPopup/editAddressPopup'; +import type { AddressEditInput } from './editCardPopup/editAddressPopup'; +import EditPropertyPopover from './editCardPopup/editPropertypopup'; +// // import type { Property } from './editCardPopup/editPropertypopup'; +import EditAssessmentPopover from './editCardPopup/editAssessmentDetailsPopup'; +import type { AssessmentEditInput } from './editCardPopup/editAssessmentDetailsPopup'; +import EditIGSRPopover from './editCardPopup/editIgrsPopup'; +import type { IGRSEditInput } from './editCardPopup/editIgrsPopup'; +import EditConstructionPopover from './editCardPopup/editConstructionDetailsPopup'; +import type { ConstructionEditInput } from './editCardPopup/editConstructionDetailsPopup'; +import EditFloorPopover from './editCardPopup/editFloorDetailsPopup'; +import type { FloorEditInput } from './editCardPopup/editFloorDetailsPopup'; +import EditAmenitiesPopover from './editCardPopup/editAmenitiesPopup'; +import type { AmenitiesEditInput } from './editCardPopup/editAmenitiesPopup'; +import EditAdditionalDetailsPopover from './editCardPopup/editadditionalDetailspopup'; +import type { AdditionalDetailsEditInput } from './editCardPopup/editadditionalDetailspopup'; +import { usePostApplicationLogMutation } from '../../../api/applicationApi'; +import { + useEditOwnerMutation, + useEditAssessmentMutation, + useEditIGRSMutation, + useEditConstructionMutation, + useEditFloorMutation, + useEditAmenitiesMutation, + useEditAdditionalDetailsMutation +} from '../../../api/edit-application-apis/editApplicationApi'; +import { useGetOwnerByPropertyIdQuery, useEditApplicationMutation, useGetApplicationByApplicationIdQuery } from '../../../api/applicationApi'; + +import { + ownerSchema, + addressSchema, + propertySchema, + assessmentSchema, + igsrSchema, + constructionSchema, + floorSchema +} from "../../../zod/validationSchemas"; +import ApplicationTrack from '../../Application_Log/ApplicationTrack'; +import z from 'zod'; +import type { Property } from '../../../model/applicationByIdModel'; +import { useGetMdmsEnumerationQuery } from '../../../api/mdmsService/mdmsApi'; +import { useAuth } from '../../../../../login-signup/provider/AuthProvider'; +import { useSelector } from "react-redux"; +import type { RootState } from "../../../../../../../store/index"; + + +function pickFields(obj: Record, keys: readonly (keyof T)[]): Partial { + if (!obj) return {}; + const result: Partial = {}; + keys.forEach(k => { + result[k] = obj[k as string] !== null && obj[k as string] !== undefined ? obj[k as string] : ""; + }); + return result; +} + +function getChangedFields(original: Partial, updated: Partial): Partial { + const changes: Partial = {}; + Object.keys(updated).forEach(key => { + const k = key as keyof T; + if (updated[k] !== undefined && updated[k] !== original[k]) { + changes[k] = updated[k]; + } + }); + return changes; +} + +interface CardsProps { + applicationID: string; +} + +export default function Cards({ applicationID }: CardsProps) { + + const { user } = useAuth(); + const userName= user?.username + const currentUserRole = useSelector((state: RootState) => state.user.currentUser?.role); + // console.log("New User from Hook: ", currentUserRole); + + const { data: application, error: apiError, isLoading: apiLoading } = useGetApplicationByApplicationIdQuery(applicationID); + console.log("Application data :", application); + const status = application?.data.Status; + + const isEditDisabled = status === "AUDIT_VERIFIED"; + const shouldHideEditButton = currentUserRole === "COMMISSIONER" || status === "APPROVED"; + const [editOwner] = useEditOwnerMutation(); + const [editAssessment] = useEditAssessmentMutation(); + const [editIGRS] = useEditIGRSMutation(); + const [editConstruction] = useEditConstructionMutation(); + const [editFloor] = useEditFloorMutation(); + const [editApplication] = useEditApplicationMutation(); + const [editAmenities] = useEditAmenitiesMutation(); + const [editAdditionalDetails] = useEditAdditionalDetailsMutation(); + const [editAddress] = useEditAddressMutation(); + + const propertyId = application?.data?.Property?.ID ?? ''; + const { data: ownerData, isLoading: ownerLoading, error: ownerError } = useGetOwnerByPropertyIdQuery( + propertyId, + { skip: !propertyId } + ); + + const [owners, setOwners] = useState([]); + const [editingOwnerIndex, setEditingOwnerIndex] = useState(null); + const [openOwnerPopover, setOpenOwnerPopover] = useState(false); + + const [address, setAddress] = useState>({}); + const [openAddressPopover, setOpenAddressPopover] = useState(false); + + const [property, setProperty] = useState>({}); + const [openPropertyPopover, setOpenPropertyPopover] = useState(false); + + const [assessment, setAssessment] = useState>({}); + const [openAssessmentPopover, setOpenAssessmentPopover] = useState(false); + + const [igsr, setIgsr] = useState>({}); + const [openIGSRPopover, setOpenIGSRPopover] = useState(false); + + const [construction, setConstruction] = useState>({}); + const [openConstructionPopover, setOpenConstructionPopover] = useState(false); + + const [floors, setFloors] = useState>>([]); + const [editingFloorIndex, setEditingFloorIndex] = useState(null); + const [openFloorPopover, setOpenFloorPopover] = useState(false); + + const [amenities, setAmenities] = useState({ property_id: "", type: [] }); + const [openAmenitiesPopover, setOpenAmenitiesPopover] = useState(false); + + const [additionalDetails, setAdditionalDetails] = useState>({}); + const [openAdditionalDetailsPopover, setOpenAdditionalDetailsPopover] = useState(false); + + const { data: mdmsData } = useGetMdmsEnumerationQuery(); + // console.log("MDMS DATA: ",mdmsData); + + const [postApplicationLog] = usePostApplicationLogMutation(); + useEffect(() => { + if (Array.isArray(ownerData?.data)) { + setOwners(ownerData.data); + } + }, [ownerData]); + + useEffect(() => { + if (application?.data?.Property) { + setAddress(pickFields(application.data.Property.Address ?? {}, Object.keys(addressLabels) as (keyof AddressEditInput)[])); + setProperty(pickFields(application.data.Property ?? {}, Object.keys(propertyLabels) as (keyof Property)[])); + setAssessment(pickFields(application.data.Property.AssessmentDetails ?? {}, Object.keys(assessmentLabels) as (keyof AssessmentEditInput)[])); + setIgsr(pickFields(application.data.Property.IGRS ?? {}, Object.keys(igsrLabels) as (keyof IGRSEditInput)[])); + setConstruction(pickFields(application.data.Property.ConstructionDetails ?? {}, Object.keys(constructionLabels) as (keyof ConstructionEditInput)[])); + setFloors(Array.isArray(application.data.Property.ConstructionDetails?.FloorDetails) + ? application.data.Property.ConstructionDetails.FloorDetails.map((fl: any) => + pickFields(fl, Object.keys(floorLabels) as (keyof FloorEditInput)[]) + ) + : []); + setAmenities({ + property_id: application.data.Property.Amenities?.PropertyID ?? propertyId ?? "", + type: application.data.Property.Amenities?.type ?? [] + }); + const adObj = application.data.Property.AdditionalDetails; + if (adObj) { + setAdditionalDetails({ + fieldName: adObj.FieldName ?? "", + fieldValue: adObj.fieldValue ?? {}, + propertyId: adObj.PropertyID ?? "" + }); + } else { + setAdditionalDetails({}); + } + } + }, [application, propertyId]); + + // handle owner save + const handleOwnerPopoverSave = async (fields: Partial) => { + const idx = editingOwnerIndex; + if (idx === null) return; + + const ownerObj = owners[idx]; + const ownerId = fields.ID || ownerObj?.ID || ownerObj?.id; + + if (!ownerId) { + alert("Cannot edit owner: owner ID missing."); + setOpenOwnerPopover(false); + return; + } + + // Log changed fields before editing + const changedFields = getChangedFields(ownerObj, fields); + // Object.entries(changedFields).forEach(([key, value]) => { + // console.log(`${key} changed from ${ownerObj[key]} to ${value}`); + // }); + + const mergedOwner = { + ...ownerObj, + ...fields, + AdhaarNo: fields.AdhaarNo !== undefined ? Number(fields.AdhaarNo) : ownerObj.AdhaarNo, + propertyId: ownerObj.propertyId || application?.data?.Property?.ID, + }; + + const { ID, ...ownerPayload } = mergedOwner; + const payload = { + id: String(ownerId), + owner: ownerPayload, + }; + + try { + const response = await editOwner(payload).unwrap(); + setOwners(prev => { + const updated = [...prev]; + updated[idx] = response.data; + return updated; + }); + setOpenOwnerPopover(false); + } catch (err) { + // console.error("editOwner mutation error:", err); + } + + // Prepare log entries + const logEntries = Object.entries(changedFields).map( + ([key, value]) => + `${ownerLabels[key] || key} changed from ${ownerObj[key]} to ${value}` + ); + const comments = logEntries.join("; "); + + // Build log payload + const logPayload = { + applicationId: application?.data?.ID || '', + propertyId: propertyId, + ownerId: ownerId, + action: "EDIT_OWNER", + performedBy: userName || "No data found", + actor: currentUserRole || " No data found", + comments: comments, + timestamp: new Date().toISOString(), + metadata: {} + }; + // console.log("Log Payload : ",logPayload); + + + // Post the log + try { + await postApplicationLog(logPayload).unwrap(); + } catch (err) { + // console.error("Failed to post application log:", err); + } + }; + +// handle address save + const handleAddressPopoverSave = async (fields: Partial) => { + setAddress(fields); + const addressId = application?.data?.Property?.Address?.ID; + if (!addressId) { + alert("Cannot edit address: ID missing."); + setOpenAddressPopover(false); + return; + } + + // Log changed fields before editing + const changedFields = getChangedFields(address, fields); + // Object.entries(changedFields).forEach(([key, value]) => { + // console.log(`${addressLabels[key] || key} changed from ${address[key as keyof AddressEditInput]} to ${value}`); + // }); + + const updatedAddress = { + propertyId: application?.data?.Property?.ID ?? "", + PinCode: fields.PinCode !== undefined ? Number(fields.PinCode) : 0, + locality: fields.Locality ?? "", + zoneNo: fields.ZoneNo ?? "", + wardNo: fields.WardNo ?? "", + blockNo: fields.BlockNo ?? "", + street: fields.Street ?? "", + correspondenceAddress1: fields.CorrespondenceAddress1 ?? "", + correspondenceAddress2: fields.CorrespondenceAddress2 ?? "", + correspondenceAddress3: fields.CorrespondenceAddress3 ?? "", + electionWard: fields.ElectionWard ?? "", + secretariatWard: fields.SecretariatWard ?? "", + differentCorrespondenceAddress: fields.DifferentCorrespondenceAddress ?? false, + }; + + try { + await editAddress({ id: addressId, body: updatedAddress }).unwrap(); + setOpenAddressPopover(false); + } catch (err) { + // console.error("Edit address error:", err); + } + + // Prepare log entries in the required format + const logEntries = Object.entries(changedFields).map( + ([key, value]) => + `${addressLabels[key] || key} changed from ${address[key as keyof AddressEditInput]} to ${value}` + ); + const comments = logEntries.join("; "); + + // Build log payload + const logPayload = { + applicationId: application?.data?.ID || '', + propertyId: application?.data?.Property?.ID || '', + addressId: addressId, + action: "EDIT_ADDRESS", + performedBy: userName || "No data found", + actor: currentUserRole || " No data found", + comments: comments, + timestamp: new Date().toISOString(), + metadata: {} + }; + // console.log("Address Log Payload : ", logPayload); + + // Post the log + try { + await postApplicationLog(logPayload).unwrap(); + } catch (err) { + console.error("Failed to post address application log:", err); + } +}; + +const handlePropertyPopoverSave = async (fields: Partial) => { + // Log the rendered property state before update + // console.log("Rendered property before update:", property); + + setProperty(fields); +// console.log("Rendered property after update (from fields):", fields); + + if (!application?.data?.Property) { + alert("Cannot edit property: Property data missing."); + setOpenPropertyPopover(false); + return; + } + + // Log changed fields before editing + const changedFields = getChangedFields(property, fields); + // Object.entries(changedFields).forEach(([key, value]) => { + // console.log(`${propertyLabels[key] || key} changed from ${property[key as keyof Property]} to ${value}`); + // }); + + const updatedProperty: Property = { + ...application.data.Property, + ...fields, + applicationId: application.data.ID + } as Property; + + try { + await editApplication({ property: updatedProperty, applicationId: application.data.ID }).unwrap(); + setOpenPropertyPopover(false); + // Log the rendered property state after update + setTimeout(() => { + // console.log("Rendered property after update:", property); + }, 0); + } catch (err) { + // console.error("Edit property error:", err); + } + + // Prepare log entries in the required format + const logEntries = Object.entries(changedFields).map( + ([key, value]) => + `${propertyLabels[key] || key} changed from ${property[key as keyof Property]} to ${value}` + ); + const comments = logEntries.join("; "); + + // Build log payload + const logPayload = { + applicationId: application?.data?.ID || '', + propertyId: application?.data?.Property?.ID || '', + action: "EDIT_PROPERTY", + performedBy: userName || "No data found", + actor: currentUserRole || " No data found", + comments: comments, + timestamp: new Date().toISOString(), + metadata: {} + }; + // console.log("Property Log Payload : ", logPayload); + + // Post the log + try { + await postApplicationLog(logPayload).unwrap(); + } catch (err) { + console.error("Failed to post property application log:", err); + } +}; + + const handleAssessmentPopoverSave = async (fields: Partial) => { + setAssessment(fields); + const assessmentId = application?.data?.Property?.AssessmentDetails?.ID; + const propertyId = application?.data?.Property?.ID; + if (!assessmentId || !propertyId) { + alert("Cannot edit assessment: ID or property ID missing."); + setOpenAssessmentPopover(false); + return; + } + if (!fields.ExtentOfSite || fields.ExtentOfSite.trim() === "") { + alert("Extent of site is required."); + return; + } + + // Log changed fields before editing + const changedFields = getChangedFields(assessment, fields); + // Object.entries(changedFields).forEach(([key, value]) => { + // console.log(`${assessmentLabels[key] || key} changed from ${assessment[key as keyof AssessmentEditInput]} to ${value}`); + // }); + + const payload = { + id: String(assessmentId), + body: { + ReasonOfCreation: fields.ReasonOfCreation ?? "", + OccupancyCertificateNumber: fields.OccupancyCertificateNumber ?? "", + OccupancyCertificateDate: fields.OccupancyCertificateDate ?? "", + ExtentOfSite: fields.ExtentOfSite ?? "", + IsLandUnderneathBuilding: String(fields.isLandUnderneathBuilding ?? ""), + IsUnspecifiedShare: fields.isUnspecifiedShare ?? false, + PropertyID: String(propertyId ?? ""), + } + }; + + try { + await editAssessment(payload).unwrap(); + setOpenAssessmentPopover(false); + } catch (err) { + console.error("Edit assessment error:", err); + } + + // Prepare log entries in the required format + const logEntries = Object.entries(changedFields).map( + ([key, value]) => + `${assessmentLabels[key] || key} changed from ${assessment[key as keyof AssessmentEditInput]} to ${value}` + ); + const comments = logEntries.join("; "); + + // Build log payload + const logPayload = { + applicationId: application?.data?.ID || '', + propertyId: propertyId, + assessmentId: assessmentId, + action: "EDIT_ASSESSMENT", + performedBy: userName || "No data found", + actor: currentUserRole || " No data found", + comments: comments, + timestamp: new Date().toISOString(), + metadata: {} + }; + // console.log("Assessment Log Payload : ", logPayload); + + // Post the log + try { + await postApplicationLog(logPayload).unwrap(); + } catch (err) { + console.error("Failed to post assessment application log:", err); + } + }; + + const handleIGSRPopoverSave = async (fields: Partial) => { + setIgsr(fields); + + if (!application?.data?.Property?.IGRS) { + alert("Cannot edit IGRS: IGRS data missing."); + setOpenIGSRPopover(false); + return; + } + + const id = application.data.Property.IGRS.id; + if (!propertyId || !id) { + alert("Cannot edit IGRS: ID missing."); + setOpenIGSRPopover(false); + return; + } + + // Log changed fields before editing + const changedFields = getChangedFields(igsr, fields); + // Object.entries(changedFields).forEach(([key, value]) => { + // console.log(`${igsrLabels[key] || key} changed from ${igsr[key as keyof IGRSEditInput]} to ${value}`); + // }); + + const body = { + propertyId: application.data.Property.ID, + habitation: fields.habitation ?? "", + igrsWard: fields.igrsWard ?? "", + igrsLocality: fields.igrsLocality ?? "", + builtUpAreaPct: fields.builtUpAreaPct ?? 0, + totalPlinthArea: fields.totalPlinthArea ?? 0, + igrsBlock: fields.igrsBlock ?? "", + doorNoFrom: fields.doorNoFrom ?? "", + doorNoTo: fields.doorNoTo ?? "", + igrsClassification: fields.igrsClassification ?? "", + frontSetback: fields.frontSetback ?? 0, + rearSetback: fields.rearSetback ?? 0, + sideSetback: fields.sideSetback ?? 0, + }; + + try { + await editIGRS({ + id, + body, + }).unwrap(); + setOpenIGSRPopover(false); + } catch (err) { + console.error("Edit IGRS error:", err); + } + + // Prepare log entries in the required format + const logEntries = Object.entries(changedFields).map( + ([key, value]) => + `${igsrLabels[key] || key} changed from ${igsr[key as keyof IGRSEditInput]} to ${value}` + ); + const comments = logEntries.join("; "); + + // Build log payload + const logPayload = { + applicationId: application?.data?.ID || '', + propertyId: propertyId, + igrsId: id, + action: "EDIT_IGRS", + performedBy: userName || "No data found", + actor: currentUserRole || " No data found", + comments: comments, + timestamp: new Date().toISOString(), + metadata: {} + }; + // console.log("IGRS Log Payload : ", logPayload); + + // Post the log + try { + await postApplicationLog(logPayload).unwrap(); + } catch (err) { + console.error("Failed to post IGRS application log:", err); + } +}; + + const handleConstructionPopoverSave = async (fields: Partial) => { + setConstruction(fields); + const constructionId = application?.data.Property.ConstructionDetails.ID; + + // Log changed fields before editing + const changedFields = getChangedFields(construction, fields); + // Object.entries(changedFields).forEach(([key, value]) => { + // console.log(`${constructionLabels[key] || key} changed from ${construction[key as keyof ConstructionEditInput]} to ${value}`); + // }); + + const Putbody = { + ...fields as any, + propertyId: application?.data.Property.ID + }; + + try { + await editConstruction({ + id: constructionId ?? "", + body: Putbody + }).unwrap(); + setOpenConstructionPopover(false); + } catch (err) { + console.error("Construction edit error:", err); + } + + // Prepare log entries in the required format + const logEntries = Object.entries(changedFields).map( + ([key, value]) => + `${constructionLabels[key] || key} changed from ${construction[key as keyof ConstructionEditInput]} to ${value}` + ); + const comments = logEntries.join("; "); + + // Build log payload + const logPayload = { + applicationId: application?.data?.ID || '', + propertyId: application?.data?.Property?.ID || '', + constructionId: constructionId, + action: "EDIT_CONSTRUCTION", + performedBy: userName || "No data found", + actor: currentUserRole || " No data found", + comments: comments, + timestamp: new Date().toISOString(), + metadata: {} + }; + // console.log("Construction Log Payload : ", logPayload); + + // Post the log + try { + await postApplicationLog(logPayload).unwrap(); + } catch (err) { + console.error("Failed to post construction application log:", err); + } + }; + + const handleFloorPopoverSave = async (fields: Partial) => { + const idx = editingFloorIndex; + + if (idx === null) return; + setFloors(prev => { + const updated = [...prev]; + updated[idx] = { ...floors[idx], ...fields }; + return updated; + }); + const originalFloorData = application?.data?.Property?.ConstructionDetails?.FloorDetails?.[idx]; + const floorId = originalFloorData?.ID; + const constructionDetailsId = originalFloorData?.ConstructionDetailsID; + if (!floorId) { + alert("Cannot edit floor: ID missing."); + setOpenFloorPopover(false); + return; + } + + // Log changed fields before editing + const changedFields = getChangedFields(floors[idx], fields); + // Object.entries(changedFields).forEach(([key, value]) => { + // console.log(`${floorLabels[key] || key} changed from ${floors[idx][key as keyof FloorEditInput]} to ${value}`); + // }); + + const floorBody = { + FloorNo: fields.FloorNo ? Number(fields.FloorNo) : 0, + Classification: fields.Classification ?? "", + NatureOfUsage: fields.NatureOfUsage ?? "", + FirmName: fields.FirmName ?? "", + OccupancyType: fields.OccupancyType ?? "", + OccupancyName: fields.OccupancyName ?? "", + ConstructionDate: fields.ConstructionDate ?? "", + EffectiveFromDate: fields.EffectiveFromDate ?? "", + UnstructuredLand: fields.UnstructuredLand ?? "", + LengthFt: fields.LengthFt ? Number(fields.LengthFt) : 0, + BreadthFt: fields.BreadthFt ? Number(fields.BreadthFt) : 0, + PlinthAreaSqFt: fields.PlinthAreaSqFt ? Number(fields.PlinthAreaSqFt) : 0, + BuildingPermissionNo: fields.BuildingPermissionNo ?? "", + FloorDetailsEntered: fields.FloorDetailsEntered ?? false, + ConstructionDetailsID: constructionDetailsId ?? "", + }; + + try { + await editFloor({ + id: floorId, + body: floorBody + }).unwrap(); + setOpenFloorPopover(false); + } catch (err) { + console.error("Floor edit error:", err); + } + + // Prepare log entries in the required format + const logEntries = Object.entries(changedFields).map( + ([key, value]) => + `${floorLabels[key] || key} changed from ${floors[idx][key as keyof FloorEditInput]} to ${value}` + ); + const comments = logEntries.join("; "); + + // Build log payload + const logPayload = { + applicationId: application?.data?.ID || '', + propertyId: application?.data?.Property?.ID || '', + floorId: floorId, + action: "EDIT_FLOOR", + performedBy: userName || "No data found", + actor: currentUserRole || " No data found", + comments: comments, + timestamp: new Date().toISOString(), + metadata: {} + }; + // console.log("Floor Log Payload : ", logPayload); + + // Post the log + try { + await postApplicationLog(logPayload).unwrap(); + } catch (err) { + console.error("Failed to post floor application log:", err); + } + }; + + const handleAmenitiesPopoverSave = async (fields: Partial) => { + const property_id = fields.property_id ?? propertyId ?? ""; + const type = Array.isArray(fields.type) ? fields.type : []; + const amenitiesId = application?.data.Property.Amenities?.ID; + + if (!amenitiesId || !property_id) { + alert("Amenities ID or Property ID missing!"); + return; + } + + // Log changed fields before editing + const changedFields = getChangedFields(amenities, fields); + // Object.entries(changedFields).forEach(([key, value]) => { + // console.log(`${amenitiesLabels?.[key] || key} changed from ${amenities[key as keyof AmenitiesEditInput]} to ${value}`); + // }); + + setAmenities({ property_id, type }); + try { + await editAmenities({ + id: amenitiesId, + propertyId: property_id, + amenities: { property_id, type } + }).unwrap(); + } catch (err) { + console.error("Amenities edit error:", err); + } + + setOpenAmenitiesPopover(false); + + // Prepare log entries in the required format + const logEntries = Object.entries(changedFields).map( + ([key, value]) => + `${amenitiesLabels?.[key] || key} changed from ${amenities[key as keyof AmenitiesEditInput]} to ${value}` + ); + const comments = logEntries.join("; "); + + // Build log payload + const logPayload = { + applicationId: application?.data?.ID || '', + propertyId: property_id, + amenitiesId: amenitiesId, + action: "EDIT_AMENITIES", + performedBy: userName || "No data found", + actor: currentUserRole || " No data found", + comments: comments, + timestamp: new Date().toISOString(), + metadata: {} + }; + // console.log("Amenities Log Payload : ", logPayload); + + // Post the log + try { + await postApplicationLog(logPayload).unwrap(); + } catch (err) { + console.error("Failed to post amenities application log:", err); + } +}; + +const handleAdditionalDetailsPopoverSave = async (fields: Partial) => { + setAdditionalDetails(fields); + const additionalDetailsObj = application?.data.Property.AdditionalDetails; + if (!additionalDetailsObj?.ID) { + alert("Cannot edit additional details: ID missing."); + setOpenAdditionalDetailsPopover(false); + return; + } + + // Log changed fields before editing + const changedFields = getChangedFields(additionalDetails, fields); + // Object.entries(changedFields).forEach(([key, value]) => { + // console.log(`${additionalDetailsLabels[key] || key} changed from ${additionalDetails[key as keyof AdditionalDetailsEditInput]} to ${value}`); + // }); + + const payload = { + id: additionalDetailsObj.ID, + propertyId: additionalDetailsObj.PropertyID, + additionalDetails: { + fieldName: fields.fieldName ?? additionalDetailsObj.FieldName, + fieldValue: fields.fieldValue ?? additionalDetailsObj.fieldValue, + propertyId: additionalDetailsObj.PropertyID, + } + }; + + try { + await editAdditionalDetails(payload).unwrap(); + setOpenAdditionalDetailsPopover(false); + } catch (err) { + console.error("Additional details edit error:", err); + } + + // Prepare log entries in the required format + // const logEntries = Object.entries(changedFields).map( + // ([key, value]) => + // `${additionalDetailsLabels[key] || key} changed from ${additionalDetails[key as keyof AdditionalDetailsEditInput]} to ${value}` + // ); + const logEntries = Object.entries(changedFields).flatMap(([key, value]) => { + if (key === "fieldValue" && typeof value === "object" && value !== null) { + const oldValRaw = additionalDetails[key as keyof AdditionalDetailsEditInput] || {}; + const oldVal: Record = typeof oldValRaw === "object" && oldValRaw !== null ? oldValRaw : {}; + + const newVal = value as Record; + // Only log changed pairs + return Object.keys(newVal).filter(k => oldVal[k] !== newVal[k]).map(k => + `${additionalDetailsLabels[k] || k} changed from ${oldVal[k] ?? ""} to ${newVal[k] ?? ""}` + ); + } + return `${additionalDetailsLabels[key] || key} changed from ${additionalDetails[key as keyof AdditionalDetailsEditInput]} to ${value}`; + }); + const comments = logEntries.join("; "); + + // Build log payload + const logPayload = { + applicationId: application?.data?.ID || '', + propertyId: additionalDetailsObj.PropertyID, + additionalDetailsId: additionalDetailsObj.ID, + action: "EDIT_ADDITIONAL_DETAILS", + performedBy: userName || "SERVICE_MANAGER", + actor: "SERVICE_MANAGER", + comments: comments, + timestamp: new Date().toISOString(), + metadata: {} + }; + // console.log("Additional Details Log Payload : ", logPayload); + + // Post the log + try { + await postApplicationLog(logPayload).unwrap(); + } catch (err) { + console.error("Failed to post additional details application log:", err); + } +}; + + // Popover togglers + const handleOwnerEditClick = (idx: number) => { + setEditingOwnerIndex(idx); + setOpenOwnerPopover(true); + }; + const handleOwnerPopoverClose = () => setOpenOwnerPopover(false); + + const handleAddressEditClick = () => setOpenAddressPopover(true); + const handleAddressPopoverClose = () => setOpenAddressPopover(false); + + const handlePropertyEditClick = () => setOpenPropertyPopover(true); + const handlePropertyPopoverClose = () => setOpenPropertyPopover(false); + + const handleAssessmentEditClick = () => setOpenAssessmentPopover(true); + const handleAssessmentPopoverClose = () => setOpenAssessmentPopover(false); + + const handleIGSREditClick = () => setOpenIGSRPopover(true); + const handleIGSRPopoverClose = () => setOpenIGSRPopover(false); + + const handleConstructionEditClick = () => setOpenConstructionPopover(true); + const handleConstructionPopoverClose = () => setOpenConstructionPopover(false); + + const handleFloorEditClick = (e: React.MouseEvent, idx: number) => { + setEditingFloorIndex(idx); + setOpenFloorPopover(true); + e.stopPropagation(); + }; + const handleFloorPopoverClose = () => setOpenFloorPopover(false); + + const handleAmenitiesEditClick = () => setOpenAmenitiesPopover(true); + const handleAmenitiesPopoverClose = () => setOpenAmenitiesPopover(false); + + const handleAdditionalDetailsEditClick = () => setOpenAdditionalDetailsPopover(true); + const handleAdditionalDetailsPopoverClose = () => setOpenAdditionalDetailsPopover(false); + + if (apiLoading || ownerLoading) + return Loading...; + if (apiError || ownerError) + return Error: {(apiError || ownerError)?.toString()}; + if (!application) + return No property found.; + + return ( + + {/* Owner Information */} + {owners.length > 0 && owners.map((ownerObj, idx) => { + const ownerFormFields = pickFields(ownerObj, Object.keys(ownerLabels) as (keyof OwnerEditInput)[]); + return ( + + + + Owner Information{owners.length > 1 ? ` (${idx + 1})` : ""} + + + {!shouldHideEditButton && ( + + )} + + {Object.entries(ownerFormFields).map(([key, value]) => ( + + {ownerLabels[key] || key}: + {value !== undefined && value !== null ? String(value) : ""} + + ))} + {openOwnerPopover && editingOwnerIndex === idx && ( + + )} + + ); + })} + + {/* Address Details card */} + + + Address Details + {!shouldHideEditButton && ( + + )} + + {Object.entries(address) + .filter(([_, value]) => value !== undefined && value !== null && value !== "") + .map(([key, value]) => ( + + {addressLabels[key] || key}: + {String(value)} + + ))} + {openAddressPopover && ( + + )} + + + {/* Property Details card */} + + + Property Info + {!shouldHideEditButton && ( + + )} + + {Object.entries(property).map(([key, value]) => ( + + {propertyLabels[key] || key}: + {value !== undefined && value !== null ? String(value) : ""} + + ))} + {openPropertyPopover && ( + + )} + + + {/* Assessment card */} + + + Assessment Details + {!shouldHideEditButton && ( + + )} + + {Object.entries(assessment).map(([key, value]) => ( + + {assessmentLabels[key] || key}: + {value !== undefined && value !== null ? String(value) : ""} + + ))} + {openAssessmentPopover && ( + + )} + + + {/* IGSR card */} + + + IGSR Details + {!shouldHideEditButton && ( + + )} + + {Object.keys(igsrLabels).map(key => { + const typedKey = key as keyof IGRSEditInput; + return ( + + {igsrLabels[key] || key}: + + {igsr[typedKey] !== undefined && igsr[typedKey] !== null ? String(igsr[typedKey]) : ""} + + + ); + })} + {openIGSRPopover && ( + + )} + + + {/* Construction details card */} + + + Construction Details + {!shouldHideEditButton && ( + + )} + + {Object.entries(construction).map(([key, value]) => ( + + {constructionLabels[key] || key}: + {value !== undefined && value !== null ? String(value) : ""} + + ))} + {openConstructionPopover && ( + + )} + + + {/* Floor Details cards */} + {floors.length > 0 && + floors.map((floor: any, idx) => { + const floorFields = { ...floor }; + return ( + + + + Floor Details {floors.length > 1 ? idx + 1 : ""} + + {!shouldHideEditButton && ( + + )} + + {Object.entries(floorFields).map(([key, value]) => ( + + {floorLabels[key] || key}: + {value !== undefined && value !== null ? String(value) : ""} + + ))} + {openFloorPopover && editingFloorIndex === idx && ( + + )} + + ); + })} + + {/* Amenities card */} + + + Amenities Details + {!shouldHideEditButton && ( + + )} + + {Array.isArray(amenities.type) && amenities.type.length > 0 + ? amenities.type.map((amen, idx) => ( + + {amen} + + )) + : No amenities available + } + {openAmenitiesPopover && ( + + )} + + + {/* Additional Details card */} + + + Additional Details + {!shouldHideEditButton && ( + + )} + + {additionalDetails.fieldName && ( + + Field Name: + {additionalDetails.fieldName} + + )} + {additionalDetails.fieldValue && Object.keys(additionalDetails.fieldValue).length > 0 + ? Object.entries(additionalDetails.fieldValue).map(([key, value]) => + value !== undefined && value !== null && value !== "" && ( + + {additionalDetailsLabels[key] || key.replace(/_/g, " ")}: + {typeof value === "boolean" ? (value ? "Yes" : "No") : String(value)} + + ) + ) + : No additional details available + } + {openAdditionalDetailsPopover && ( + + )} + + + {/* Note Card */} + + + Important Note: + {application.data.CreatedAt?.split("T")[0]} + + + + + {application?.data.importantNote? application.data.importantNote: "No data found"} + + + + + {/* Track Application */} + + + + + ); +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editAddressPopup.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editAddressPopup.tsx new file mode 100644 index 0000000..e23c078 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editAddressPopup.tsx @@ -0,0 +1,240 @@ +import React, { useState, useEffect } from 'react'; +import { Box, Typography, Button, TextField, FormControlLabel, Checkbox, MenuItem, Dialog } from '@mui/material'; +import { ZodType } from "zod"; + +// Editable fields for PUT address-details API +export type AddressEditInput = { + Locality: string; + ZoneNo: string; + WardNo: string; + BlockNo: string; + Street: string; + ElectionWard: string; + SecretariatWard: string; + PinCode: number; + DifferentCorrespondenceAddress: boolean; + PropertyId: string; + CorrespondenceAddress1: string; + CorrespondenceAddress2: string; + CorrespondenceAddress3: string; +}; + +interface EditAddressPopoverProps { + open: boolean; + onClose: () => void; + fields: Partial; + labels: { [key in keyof AddressEditInput]?: string }; + onSave: (fields: Partial) => void; + schema: ZodType; + blockNoOptions: Array<{ id: string; name: string }>; + wardNoOptions: Array<{ id: string; name: string }>; + electionWardOptions: Array<{ id: string; name: string }>; + secretariatWardOptions: Array<{ id: string; name: string }>; +} + +const EditAddressPopover: React.FC = ({ + open, + onClose, + fields, + labels, + onSave, + schema, + blockNoOptions, + wardNoOptions, + electionWardOptions, + secretariatWardOptions, +}) => { + const [localFields, setLocalFields] = useState(fields); + const [errors, setErrors] = useState<{ [key: string]: string }>({}); + + useEffect(() => { + setLocalFields(fields); + setErrors({}); + }, [fields, open]); + + const handleChange = (key: keyof AddressEditInput) => (e: React.ChangeEvent) => { + let value: string | number | boolean = e.target.value; + if (key === "PinCode") value = Number(value); + if (key === "DifferentCorrespondenceAddress") value = (e.target as HTMLInputElement).checked; + + setLocalFields({ + ...localFields, + [key]: value, + }); + + const result = schema.safeParse({ + ...localFields, + [key]: value + }); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors(Object.fromEntries(Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]))); + } else { + setErrors({}); + } + }; + + const handleSave = () => { + const result = schema.safeParse(localFields); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors(Object.fromEntries(Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]))); + return; + } + setErrors({}); + onSave(localFields); + onClose(); + }; + + return ( + + + Edit Address Details + + + {Object.entries(localFields).map(([key, value]) => { + // Skip CorrespondenceAddress fields if not present in backend + if ( + key === "correspondenceAddress1" || + key === "correspondenceAddress2" || + key === "correspondenceAddress3" + ) { + return null; + } + + if (key === "DifferentCorrespondenceAddress") { + return ( + + } + /> + ); + } + + // Dropdowns for MDMS options + if (key === "BlockNo") { + return ( + + + Select Block + + {blockNoOptions.map(opt => ( + {opt.name} + ))} + + ); + } + if (key === "WardNo") { + return ( + + + Select Ward + + {wardNoOptions.map(opt => ( + {opt.name} + ))} + + ); + } + if (key === "ElectionWard") { + return ( + + + Select Election Ward + + {electionWardOptions.map(opt => ( + {opt.name} + ))} + + ); + } + if (key === "SecretariatWard") { + return ( + + + Select Secretariat Ward + + {secretariatWardOptions.map(opt => ( + {opt.name} + ))} + + ); + } + + // Default text field for other fields + return ( + + ); + })} + + + + + + ); +}; + +export default EditAddressPopover; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editAmenitiesPopup.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editAmenitiesPopup.tsx new file mode 100644 index 0000000..5ec1df9 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editAmenitiesPopup.tsx @@ -0,0 +1,119 @@ + +// Popup dialog component for editing property amenities, with validation and checkbox selection. +import React, { useState, useEffect } from 'react'; +import { Dialog, Box, Typography, Button, FormGroup, FormControlLabel, Checkbox } from '@mui/material'; +import { ZodType } from "zod"; + + +// Editable fields for PUT amenities API +export type AmenitiesEditInput = { + property_id: string; // Property ID + type: string[]; // List of selected amenity types +}; + + +// Props for the EditAmenitiesPopover component +interface EditAmenitiesPopoverProps { + open: boolean; + onClose: () => void; + fields: Partial; + onSave: (fields: Partial) => void; + schema: ZodType; + options: Array<{ key: string; label: string }>; +} + + +const EditAmenitiesPopover: React.FC = ({ + open, + onClose, + fields, + onSave, + schema, + options, +}) => { + // State for amenity checkbox selections + const [amenityCheckboxes, setAmenityCheckboxes] = useState<{ [key: string]: boolean }>({}); + + // Reset amenity checkboxes when dialog opens or fields/options change + useEffect(() => { + const checkedArr = Array.isArray(fields.type) ? fields.type : []; + setAmenityCheckboxes( + Object.fromEntries(options.map(opt => [opt.label, checkedArr.includes(opt.label)])) + ); + }, [fields, open, options]); + + const handleCheckboxChange = (label: string) => ( + event: React.ChangeEvent + ) => { + setAmenityCheckboxes(prev => ({ + ...prev, + [label]: event.target.checked + })); + }; + + // Handler for saving the selected amenities + const handleSave = () => { + const checkedAmenities = Object.entries(amenityCheckboxes) + .filter(([_, checked]) => checked) + .map(([label]) => label); + + const property_id = fields.property_id ?? ""; + const dataToValidate: Partial = { + property_id, + type: checkedAmenities, + }; + + // Validate the selected amenities using the schema + const result = schema.safeParse(dataToValidate); + if (!result.success) { + return; + } + + onSave(dataToValidate); + onClose(); + }; + + + return ( + + {/* Dialog title */} + + Edit Amenities + + {/* Checkbox group for amenity options */} + + {options.map(opt => ( + + } + label={opt.label} + /> + ))} + + {/* Save button */} + + + + + ); +}; + +export default EditAmenitiesPopover; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editAssessmentDetailsPopup.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editAssessmentDetailsPopup.tsx new file mode 100644 index 0000000..f90b612 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editAssessmentDetailsPopup.tsx @@ -0,0 +1,191 @@ + +// This component provides a popover dialog for editing assessment details of a property. +// It supports form validation using a Zod schema and allows users to edit and save assessment fields. +// The component is reusable and receives its field configuration, labels, and validation schema via props. +import React, { useState, useEffect } from 'react'; +import { Box, Typography, Button, TextField, FormControlLabel, Checkbox, MenuItem, Dialog } from '@mui/material'; +import { ZodType } from "zod"; + +// Editable fields for PUT assessment-details API (matches your request body) + +// Type for the editable assessment fields, matching the expected API request body +export type AssessmentEditInput = { + ReasonOfCreation: string; + OccupancyCertificateNumber: string; + OccupancyCertificateDate: string; + ExtentOfSite: string; + isLandUnderneathBuilding: string; + isUnspecifiedShare: boolean; + propertyId: string; +}; + + +// Props for the EditAssessmentPopover component +interface EditAssessmentPopoverProps { + open: boolean; + onClose: () => void; + fields: Partial; + labels: { [key in keyof AssessmentEditInput]?: string }; + onSave: (fields: Partial) => void; + schema: ZodType; + reasonOptions: Array<{ id: string; label: string }>; +} + + +const EditAssessmentPopover: React.FC = ({ + open, + onClose, + fields, + labels, + onSave, + schema, + reasonOptions, +}) => { + // Local state for the editable fields in the form + const [localFields, setLocalFields] = useState(fields); + // Local state for validation errors + const [errors, setErrors] = useState<{ [key: string]: string }>({}); + + // Reset local fields and errors when the popover is opened or fields change + useEffect(() => { + setLocalFields(fields); + setErrors({}); + }, [fields, open]); + + useEffect(() => { + console.log("Reason of Creation options:", reasonOptions); + }, [reasonOptions]); + + const handleChange = (key: keyof AssessmentEditInput) => (e: React.ChangeEvent) => { + let value: string | boolean = e.target.value; + // Special handling for checkbox (boolean field) + if (key === "isUnspecifiedShare") { + value = (e.target as HTMLInputElement).checked; + } + setLocalFields({ + ...localFields, + [key]: value + }); + + // Validate the updated field using the Zod schema + const result = schema.safeParse({ + ...localFields, + [key]: value + }); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors( + Object.fromEntries( + Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]) + ) + ); + } else { + setErrors({}); + } + }; + + // Save edited fields to parent if valid + const handleSave = () => { + const result = schema.safeParse(localFields); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors( + Object.fromEntries( + Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]) + ) + ); + return; + } + setErrors({}); + onSave(localFields); + onClose(); + }; + + return ( + + {/* Title for the popover dialog */} + + Edit Assessment Details + + + {/* Render editable assessment fields dynamically based on localFields */} + {Object.entries(localFields).map(([key, value]) => + key === "isUnspecifiedShare" ? ( + // Render a checkbox for boolean field + + } + /> + ) : key === "ReasonOfCreation" ? ( + opt.label === localFields.ReasonOfCreation) + ? localFields.ReasonOfCreation + : "" + } + onChange={handleChange("ReasonOfCreation")} + fullWidth + error={!!errors[key]} + helperText={errors[key]} + > + + Select Reason + + {reasonOptions.map(opt => ( + {opt.label} + ))} + + ) : ( + // Render a text field for string fields + + ) + )} + {/* Save button to submit the form */} + + + + + + ); +}; + + +// Export the popover component for use in parent components +export default EditAssessmentPopover; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editConstructionDetailsPopup.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editConstructionDetailsPopup.tsx new file mode 100644 index 0000000..c864623 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editConstructionDetailsPopup.tsx @@ -0,0 +1,211 @@ +import React, { useState, useEffect } from 'react'; +import { Box, Typography, Button, TextField, MenuItem, Dialog } from '@mui/material'; +import { ZodType } from "zod"; + +// Editable fields for PUT construction-details API (matches your request body) +export type ConstructionEditInput = { + floorType: string; + wallType: string; + roofType: string; + woodType: string; + propertyId: string; +}; + +interface EditConstructionPopoverProps { + open: boolean; + onClose: () => void; + fields: Partial; + labels: { [key in keyof ConstructionEditInput]?: string }; + onSave: (fields: Partial) => void; + schema: ZodType; + floorTypeOptions: Array<{ id: string; label: string }>; + wallTypeOptions: Array<{ id: string; label: string }>; + roofTypeOptions: Array<{ id: string; label: string }>; + woodTypeOptions: Array<{ id: string; label: string }>; +} + +const EditConstructionPopover: React.FC = ({ + open, + onClose, + fields, + labels, + onSave, + schema, + floorTypeOptions, + wallTypeOptions, + roofTypeOptions, + woodTypeOptions, +}) => { + const [localFields, setLocalFields] = useState(fields); + const [errors, setErrors] = useState<{ [key: string]: string }>({}); + + useEffect(() => { + setLocalFields(fields); + setErrors({}); + }, [fields, open]); + + const handleChange = (key: keyof ConstructionEditInput) => (e: React.ChangeEvent) => { + let value: string = e.target.value; + setLocalFields({ + ...localFields, + [key]: value, + }); + + // Live validation + const result = schema.safeParse({ + ...localFields, + [key]: value + }); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors(Object.fromEntries(Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]))); + } else { + setErrors({}); + } + }; + + const handleSave = () => { + const result = schema.safeParse(localFields); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors(Object.fromEntries(Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]))); + return; + } + setErrors({}); + onSave(localFields); + onClose(); + }; + + return ( + + + Edit Construction Details + + + {/* Only the editable construction fields for PUT */} + {Object.entries(localFields).map(([key, value]) => { + if (key === "FloorType") { + return ( + + + Select Floor Type + + {floorTypeOptions.map(opt => ( + {opt.label} + ))} + + ); + } + if (key === "WallType") { + return ( + + + Select Wall Type + + {wallTypeOptions.map(opt => ( + {opt.label} + ))} + + ); + } + if (key === "RoofType") { + return ( + + + Select Roof Type + + {roofTypeOptions.map(opt => ( + {opt.label} + ))} + + ); + } + if (key === "WoodType") { + return ( + + + Select Wood Type + + {woodTypeOptions.map(opt => ( + {opt.label} + ))} + + ); + } + // Default text field for other fields + return ( + + ); + })} + + + + + + ); +}; + +export default EditConstructionPopover; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editFloorDetailsPopup.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editFloorDetailsPopup.tsx new file mode 100644 index 0000000..7affa14 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editFloorDetailsPopup.tsx @@ -0,0 +1,258 @@ +import React, { useState, useEffect } from 'react'; +import {Box, Typography, Button, TextField, FormControlLabel, Checkbox, MenuItem, Dialog } from '@mui/material'; +import { floorSchema } from '../../../../zod/validationSchemas'; + +// Editable fields for PUT floor-details, matches request schema +export type FloorEditInput = { + FloorNo: number; + Classification: string; + NatureOfUsage: string; + FirmName: string; + OccupancyType: string; + OccupancyName: string; + ConstructionDate: string; + EffectiveFromDate: string; + UnstructuredLand: string; + LengthFt: number; + BreadthFt: number; + PlinthAreaSqFt: number; + BuildingPermissionNo: string; + FloorDetailsEntered: boolean; + ConstructionDetailsID: string; +}; + +interface EditFloorPopoverProps { + open: boolean; + onClose: () => void; + fields: FloorEditInput; + labels: { [key in keyof FloorEditInput]?: string }; + onSave: (fields: FloorEditInput) => void; + schema: typeof floorSchema + buildingClassificationOptions: Array<{ id: string; label: string }>; + natureOfUsageOptions: Array<{ id: string; label: string }>; + occupancyOptions: Array<{ id: string; label: string }>; + unstructuredLandOptions: Array<{ id: string; label: string }>; +} + +const EditFloorPopover: React.FC = ({ + open, + onClose, + fields, + labels, + onSave, + schema, + buildingClassificationOptions, + natureOfUsageOptions, + occupancyOptions, + unstructuredLandOptions, +}) => { + const [localFields, setLocalFields] = useState(fields); + const [errors, setErrors] = useState<{ [key: string]: string }>({}); + + useEffect(() => { + console.log("Incoming floor data from cards.tsx:", fields); + setLocalFields(fields); + setErrors({}); + }, [fields, open]); + + const handleChange = (key: keyof FloorEditInput) => (e: React.ChangeEvent) => { + let value: string | boolean | number = e.target.value; + if (key === "FloorDetailsEntered") value = (e.target as HTMLInputElement).checked; + if (key === "LengthFt") value = Number(value); + if (key === "BreadthFt") value = Number(value); + if (key === "PlinthAreaSqFt") value = Number(value); + if (key === "FloorNo") value = Number(value); + + setLocalFields({ + ...localFields, + [key]: value + }); + + const result = schema.safeParse({ + ...localFields, + [key]: value + }); + + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors( + Object.fromEntries( + Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]) + ) + ); + } else { + setErrors({}); + } +}; + + + const handleSave = () => { + const result = schema.safeParse(localFields); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors( + Object.fromEntries( + Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]) + ) + ); + return; + } + setErrors({}); + console.log("Loccal Fields of Floor :", localFields); + + onSave(localFields); + onClose(); +}; + + return ( + + + Edit Floor Details + + + {Object.entries(localFields).map(([key, value]) => { + if (key === "Classification") { + return ( + + + Select Classification + + {buildingClassificationOptions.map(opt => ( + {opt.label} + ))} + + ); + } + if (key === "NatureOfUsage") { + return ( + + + Select Nature of Usage + + {natureOfUsageOptions.map(opt => ( + {opt.label} + ))} + + ); + } + if (key === "OccupancyType") { + return ( + + + Select Occupancy + + {occupancyOptions.map(opt => ( + {opt.label} + ))} + + ); + } + if (key === "UnstructuredLand") { + return ( + + + Select Unstructured Land + + {unstructuredLandOptions.map(opt => ( + {opt.label} + ))} + + ); + } + // Checkbox for FloorDetailsEntered + if (key === "FloorDetailsEntered") { + return ( + + } + /> + ); + } + // Default text/number field for other fields + return ( + + ); +})} + + + + + + ); +}; + +export default EditFloorPopover; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editIgrsPopup.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editIgrsPopup.tsx new file mode 100644 index 0000000..45efa72 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editIgrsPopup.tsx @@ -0,0 +1,243 @@ +import React, { useState, useEffect } from 'react'; +import { Box, Typography, Button, TextField, MenuItem, Dialog } from '@mui/material'; +import { ZodType } from "zod"; + +// Only the editable fields for IGRS PUT (based on request example) +export type IGRSEditInput = { + propertyId: string; + habitation: string; + igrsWard: string; + igrsLocality: string; + igrsBlock?: string; + doorNoFrom?: string; + doorNoTo?: string; + igrsClassification?: string; + builtUpAreaPct: number; + frontSetback?: number; + rearSetback?: number; + sideSetback?: number; + totalPlinthArea: number; +}; + +interface EditIGSRPopoverProps { + open: boolean; + onClose: () => void; + fields: Partial; + labels: { [key in keyof IGRSEditInput]?: string }; + onSave: (fields: Partial) => void; + schema: ZodType; + igrsBlockOptions: Array<{ id: string; label: string }>; + igrsWardOptions: Array<{ id: string; label: string }>; + igrsClassificationOptions: Array<{ id: string; label: string }>; + igrsLocalityOptions: Array<{ id: string; label: string }>; +} + +const EditIGSRPopover: React.FC = ({ + open, + onClose, + fields, + labels, + onSave, + schema, + igrsBlockOptions, + igrsWardOptions, + igrsClassificationOptions, + igrsLocalityOptions, +}) => { + const [localFields, setLocalFields] = useState(fields); + const [errors, setErrors] = useState<{ [key: string]: string }>({}); + + useEffect(() => { + setLocalFields(fields); + setErrors({}); + }, [fields, open]); + + const handleChange = (key: keyof IGRSEditInput) => (e: React.ChangeEvent) => { + let value: string | number = e.target.value; + if ( + key === "builtUpAreaPct" || + key === "totalPlinthArea" || + key === "frontSetback" || + key === "rearSetback" || + key === "sideSetback" + ) { + value = Number(value); + } + setLocalFields({ + ...localFields, + [key]: value + }); + + const result = schema.safeParse({ + ...localFields, + [key]: value + }); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors( + Object.fromEntries( + Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]) + ) + ); + } else { + setErrors({}); + } + }; + + const handleSave = () => { + const result = schema.safeParse(localFields); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors( + Object.fromEntries( + Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]) + ) + ); + return; + } + setErrors({}); + onSave(localFields); + onClose(); + }; + + return ( + + + Edit IGSR Details + + + {/* Render only editable IGSR fields for PUT request */} + {Object.entries(localFields).map(([key, value]) => { + if (key === "igrsBlock") { + return ( + + + Select Block + + {igrsBlockOptions.map(opt => ( + {opt.label} + ))} + + ); + } + if (key === "igrsWard") { + return ( + + + Select Ward + + {igrsWardOptions.map(opt => ( + {opt.label} + ))} + + ); + } + if (key === "igrsClassification") { + return ( + + + Select Classification + + {igrsClassificationOptions.map(opt => ( + {opt.label} + ))} + + ); + } + if (key === "igrsLocality") { + return ( + + + Select Locality + + {igrsLocalityOptions.map(opt => ( + {opt.label} + ))} + + ); + } + // Default text/number field for other fields + return ( + + ); + })} + + + + + + ); +}; + +export default EditIGSRPopover; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editOwnerPopup.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editOwnerPopup.tsx new file mode 100644 index 0000000..deb135a --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editOwnerPopup.tsx @@ -0,0 +1,184 @@ + +// This component provides a dialog for editing owner details of a property. +// It supports form validation using a Zod schema and allows users to edit and save owner-related fields. +// The component is reusable and receives its field configuration, labels, and validation schema via props. +import React, { useState, useEffect } from 'react'; +import { Dialog, Box, Typography, Button, TextField, FormControlLabel, Checkbox, MenuItem } from '@mui/material'; +// import { ZodType } from "zod"; +import { ownerSchema } from "../../../../zod/validationSchemas"; // adjust path if needed + +// Type for the editable owner fields, matching the expected API request body +export type OwnerEditInput = { + ID: string; + name: string; + contactNo: string; + email: string; + gender: string; + guardian: string; + guardianType: string; + relationshipToProperty: string; + ownershipShare: number; + isPrimaryOwner: boolean; + AdhaarNo: number; +}; + + +// Props for the EditOwnerPopover component +interface EditOwnerPopoverProps { + open: boolean; // Whether the dialog is open + onClose: () => void; // Function to close the dialog + fields: Partial; // Initial values for the editable fields + labels: { [key in keyof OwnerEditInput]?: string }; // Field labels for display + onSave: (fields: Partial) => void; // Callback to save the edited fields + schema: typeof ownerSchema; // Zod schema for validation + genderOptions: Array<{ id: string; name: string }>; +} + + +const EditOwnerPopover: React.FC = ({ + open, + onClose, + fields, + labels, + onSave, + schema, + genderOptions, +}) => { + // Local state for the editable fields in the form + const [localFields, setLocalFields] = useState(fields); + // Local state for validation errors + const [errors, setErrors] = useState<{ [key: string]: string }>({}); + + // Reset local fields and errors when the dialog is opened or fields change + useEffect(() => { + setLocalFields(fields); + setErrors({}); + }, [fields, open]); + + // Handle changes to any field in the form + const handleChange = (key: keyof OwnerEditInput) => (e: React.ChangeEvent) => { + let value: string | number | boolean = e.target.value; + + // Convert numeric and boolean fields appropriately + if (key === "ownershipShare") value = Number(value); + if (key === "isPrimaryOwner") value = (e.target as HTMLInputElement).checked; + if (key === "AdhaarNo") value = Number(value); + setLocalFields({ + ...localFields, + [key]: value, + }); + + // Immediate validation as user types using the Zod schema + const result = schema.safeParse({ + ...localFields, + [key]: value, + }); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors(Object.fromEntries(Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]))); + } else { + setErrors({}); + } + }; + + // Save the edited fields if validation passes, otherwise show errors + const handleSave = () => { + console.log("EditOwnerPopover handleSave localFields:", localFields); + const result = schema.safeParse(localFields); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors(Object.fromEntries(Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]))); + console.log("Validation errors:", fieldErrors); + return; + } + setErrors({}); + console.log("Calling onSave from EditOwnerPopover with:", localFields); + onSave(localFields); + onClose(); + }; + + + return ( + + {/* Title for the dialog */} + + Edit Owner Details + + + {/* Render editable owner fields dynamically based on localFields */} + {Object.entries(localFields).map(([key, value]) => + key === "isPrimaryOwner" ? ( + // Render a checkbox for the boolean field + + } + /> + ) : key === "Gender" ? ( + + + Select Gender + + {genderOptions.map(option => ( + + {option.name} + + ))} + + ) : ( + // Render a text or number field for other owner details + + ) + )} + {/* Save button to submit the form */} + + + + + + ); +}; + + +// Export the popover component for use in parent components +export default EditOwnerPopover; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editPropertypopup.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editPropertypopup.tsx new file mode 100644 index 0000000..53f96a5 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editPropertypopup.tsx @@ -0,0 +1,184 @@ + +// This component provides a dialog for editing basic property details (not nested objects) of a property. +// It supports form validation using a Zod schema and allows users to edit and save property-related fields. +// The component is reusable and receives its field configuration, labels, and validation schema via props. +import React, { useState, useEffect } from 'react'; +import { Dialog, Box, Typography, Button, TextField, MenuItem } from '@mui/material'; +import { ZodType } from "zod"; + +export type Property = { + ID: string; + PropertyNo: string; + OwnershipType: string; + PropertyType: string; + ComplexName: string; +}; + + +// Props for the EditPropertyPopover component +interface EditPropertyPopoverProps { + open: boolean; + onClose: () => void; + fields: Partial; + labels: { [key in keyof Property]?: string }; + onSave: (fields: Partial) => void; + schema: ZodType; + ownershipOptions: Array<{ id: string; name: string }>; + propertyTypeOptions: Array<{ id: string; name: string }>; +} + + +const EditPropertyPopover: React.FC = ({ + open, + onClose, + fields, + labels, + onSave, + schema, + ownershipOptions, + propertyTypeOptions, +}) => { + // Local state for the editable fields in the form + const [localFields, setLocalFields] = useState(fields); + // Local state for validation errors + const [errors, setErrors] = useState<{ [key: string]: string }>({}); + + // Reset local fields and errors when the dialog is opened or fields change + useEffect(() => { + setLocalFields(fields); + setErrors({}); + }, [fields, open]); + + // Handle changes to any field in the form + const handleChange = (key: keyof Property) => (e: React.ChangeEvent) => { + setLocalFields({ + ...localFields, + [key]: e.target.value + }); + + // Validate the updated field using the Zod schema + const result = schema.safeParse({ + ...localFields, + [key]: e.target.value + }); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors( + Object.fromEntries( + Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]) + ) + ); + } else { + setErrors({}); + } + }; + + // Save the edited fields if validation passes, otherwise show errors + const handleSave = () => { + const result = schema.safeParse(localFields); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors( + Object.fromEntries( + Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]) + ) + ); + return; + } + setErrors({}); + onSave(localFields); + onClose(); + }; + + // Only render editable string fields, not nested objects. + return ( + + {/* Title for the dialog */} + + Edit Property Details + + + {/* Render editable property fields dynamically based on localFields */} + {Object.entries(localFields).map(([key, value]) => + key === "OwnershipType" ? ( + + + Select Ownership Type + + {ownershipOptions.map(option => ( + + {option.name} + + ))} + + ) : key === "PropertyType" ? ( + + + Select Property Type + + {propertyTypeOptions.map(option => ( + + {option.name} + + ))} + + ) : ( + // Render a text field for each property detail + + ) + )} + {/* Save button to submit the form */} + + + + + + ); +}; + + +// Export the popover component for use in parent components +export default EditPropertyPopover; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editadditionalDetailspopup.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editadditionalDetailspopup.tsx new file mode 100644 index 0000000..991b784 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/components/property details/property_cards/editCardPopup/editadditionalDetailspopup.tsx @@ -0,0 +1,286 @@ + +// Popup dialog component for editing additional property details, with validation. +import React, { useState, useEffect } from 'react'; +import { Dialog, Box, Typography, Button, TextField, FormControlLabel, Checkbox, MenuItem } from '@mui/material'; +import { ZodType } from "zod"; + + +// Shape of the additional details field values +export type AdditionalDetailsFieldValue = { + spaces?: number; + covered?: boolean; + type?: string; + monthly_fee?: number; + reserved_spaces?: number; + reasonForCreation?: string; + documentType?: string; + [key: string]: string | number | boolean | undefined; +}; + + +// Editable fields for PUT additional-property-details API +export type AdditionalDetailsEditInput = { + fieldName: string; // Name of the field being edited + fieldValue: AdditionalDetailsFieldValue; // Values for the additional details + propertyId: string; // Associated property ID +}; + + +// Props for the EditAdditionalDetailsPopover component +interface EditAdditionalDetailsPopoverProps { + open: boolean; // Whether the dialog is open + onClose: () => void; // Handler to close the dialog + fields: Partial; // Initial field values + labels: { [key: string]: string }; // Field labels for display + onSave: (fields: Partial) => void; // Handler for saving the changes + schema: ZodType; // Zod schema for validation + reasonOptions?: Array<{ code: string; name: string }>; + documentTypes: Array<{ id: number; name: string }>; +} + + +const EditAdditionalDetailsPopover: React.FC = ({ + open, + onClose, + fields, + labels, + onSave, + schema, + reasonOptions = [], + documentTypes = [], +}) => { + // Extract nested fieldValue from fields + const fieldValue = fields.fieldValue || {}; + + // Local state for the editable fields + const [localFields, setLocalFields] = useState({ + fieldName: fields.fieldName ?? "", + fieldValue: { ...fieldValue }, + propertyId: fields.propertyId ?? "", + }); + // Local state for validation errors + const [errors, setErrors] = useState<{ [key: string]: string }>({}); + + // Reset local fields and errors when dialog opens or fields change + useEffect(() => { + setLocalFields({ + fieldName: fields.fieldName ?? "", + fieldValue: { ...fieldValue }, + propertyId: fields.propertyId ?? "", + }); + setErrors({}); + // eslint-disable-next-line + }, [fields, open]); + + // Handle change for nested fieldValue properties + const handleFieldValueChange = (key: string) => (e: React.ChangeEvent) => { + let value: string | number | boolean = e.target.value; + // Convert to number for numeric fields + if (key === "spaces" || key === "monthly_fee" || key === "reserved_spaces") value = Number(value); + // Convert to boolean for checkbox + if (key === "covered") value = (e.target as HTMLInputElement).checked; + setLocalFields(prev => ({ + ...prev, + fieldValue: { + ...prev.fieldValue, + [key]: value, + }, + })); + + // Validate the updated input using the schema + const result = schema.safeParse({ + ...localFields, + fieldValue: { + ...localFields.fieldValue, + [key]: value, + }, + }); + + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors(Object.fromEntries(Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]))); + } else { + setErrors({}); + } + }; + + // Handle change for top-level fields (fieldName, propertyId) + const handleChange = (key: "fieldName" | "propertyId") => (e: React.ChangeEvent) => { + const value = e.target.value; + setLocalFields(prev => ({ + ...prev, + [key]: value, + })); + + // Validate the updated input using the schema + const result = schema.safeParse({ + ...localFields, + [key]: value, + }); + + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors(Object.fromEntries(Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]))); + } else { + setErrors({}); + } + }; + + // Handler for saving the edited details + const handleSave = () => { + const result = schema.safeParse(localFields); + if (!result.success) { + const fieldErrors = result.error.flatten().fieldErrors; + setErrors(Object.fromEntries(Object.entries(fieldErrors).map(([k, v]) => [k, v?.[0] || ""]))); + return; + } + setErrors({}); + onSave(localFields); + onClose(); + }; + + + return ( + + + {/* Dialog title */} + + Edit Additional Details + + + {/* Top level inputs for field name and property ID */} + + {/* */} + {/* Section for editing nested field values */} + + Field Values + + {/* Render each fieldValue input, using checkbox for boolean fields */} + {Object.entries(localFields.fieldValue).map(([key, value]) => { + // Dropdown for reasonForCreation + if (key === "reasonForCreation" && reasonOptions.length > 0) { + return ( + + {reasonOptions.map(option => ( + + {option.name} + + ))} + + ); + } + // Dropdown for documentType + if (key === "DocumentType" && documentTypes.length > 0) { + return ( + + Select Document Type + {documentTypes.map(opt => ( + {opt.name} + ))} + + ); +} + // Checkbox for covered + if (key === "covered") { + return ( + + } + /> + ); + } + // Default text/number input + return ( + + ); + })} + {/* Save button */} + + + + + + + ); +}; + +export default EditAdditionalDetailsPopover; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/Cmodel/Cmodel.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/Cmodel/Cmodel.tsx new file mode 100644 index 0000000..c04d4fd --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/Cmodel/Cmodel.tsx @@ -0,0 +1,244 @@ +// // Centralized models for all edit requests & responses for property application modules + +// // =================== Additional Details =================== +// export type AdditionalDetailsFieldValue = { +// spaces?: number; +// covered?: boolean; +// type?: string; +// monthly_fee?: number; +// reserved_spaces?: number; +// [key: string]: string | number | boolean | undefined; +// }; + +// export interface EditAdditionalDetailsRequest { +// fieldName: string; +// fieldValue: AdditionalDetailsFieldValue; +// propertyId: string; +// } + +// export interface EditAdditionalDetailsResponse { +// success: boolean; +// message: string; +// data: { +// ID: string; +// FieldName: string; +// fieldValue: AdditionalDetailsFieldValue; +// PropertyID: string; +// CreatedAt: string; +// UpdatedAt: string; +// }; +// } + +// // =================== Amenities =================== +// export interface EditAmenitiesRequest { +// property_id: string; +// type: string[]; +// } + +// export interface EditAmenitiesResponse { +// message: string; +// data: { +// ID: string; +// type: string[]; +// Description: string; +// ExpiryDate: string | null; +// PropertyID: string; +// CreatedAt: string; +// UpdatedAt: string; +// }; +// } + +// // =================== Owner =================== +// export interface EditOwnerRequest { +// name: string; +// contactNo: string; +// email: string; +// gender: string; +// guardian: string; +// guardianType: string; +// relationshipToProperty: string; +// ownershipShare: number; +// isPrimaryOwner: boolean; +// propertyId?: string; +// } + +// export interface EditOwnerResponse { +// success: boolean; +// message: string; +// data: { +// ID: string; +// Name: string; +// ContactNo: string; +// Email: string; +// Gender: string; +// Guardian: string; +// GuardianType: string; +// RelationshipToProperty: string; +// OwnershipShare: number; +// IsPrimaryOwner: boolean; +// PropertyID: string; +// CreatedAt: string; +// UpdatedAt: string; +// }; +// } + +// // =================== Assessment =================== +// export interface EditAssessmentRequest { +// reasonOfCreation: string; +// occupancyCertificateNumber: string; +// occupancyCertificateDate: string; +// extendOfSite: string; +// isLandUnderneathBuilding: string; +// isUnspecifiedShare: boolean; +// propertyId: string; +// } + +// export interface EditAssessmentResponse { +// success: boolean; +// message: string; +// data: { +// ID: string; +// ReasonOfCreation: string; +// OccupancyCertificateNumber: string; +// OccupancyCertificateDate: string; +// ExtendOfSite: string; +// IsLandUnderneathBuilding: string; +// IsUnspecifiedShare: boolean; +// PropertyID: string; +// CreatedAt: string; +// UpdatedAt: string; +// }; +// } + +// // =================== IGRS =================== +// export interface EditIGRSRequest { +// propertyId: string; +// habitation: string; +// igrsWard: string; +// igrsLocality: string; +// builtUpAreaPct: number; +// totalPlinthArea: number; +// } + +// export interface EditIGRSResponse { +// success?: boolean; +// message?: string; +// data: { +// id: string; +// habitation: string; +// igrsWard: string; +// igrsLocality: string; +// igrsBlock?: string; +// doorNoFrom?: string; +// doorNoTo?: string; +// igrsClassification?: string; +// builtUpAreaPct: number; +// frontSetback?: number; +// rearSetback?: number; +// sideSetback?: number; +// totalPlinthArea: number; +// createdAt: string; +// updatedAt: string; +// PropertyID: string; +// }; +// } + +// // =================== Construction =================== +// export interface EditConstructionRequest { +// floorType: string; +// wallType: string; +// roofType: string; +// woodType: string; +// propertyId: string; +// } + +// export interface EditConstructionResponse { +// success: boolean; +// message: string; +// data: { +// ID: string; +// FloorType: string; +// WallType: string; +// RoofType: string; +// WoodType: string; +// PropertyID: string; +// FloorDetails?: any; +// CreatedAt: string; +// UpdatedAt: string; +// }; +// } + +// // =================== Floor =================== +// export interface EditFloorRequest { +// floorNo: number; +// classification: string; +// natureOfUsage: string; +// firmName: string; +// occupancyType: string; +// occupancyName: string; +// constructionDate: string; +// effectiveFromDate: string; +// unstructuredLand: string; +// lengthFt: number; +// breadthFt: number; +// plinthAreaSqFt: number; +// buildingPermissionNo: string; +// floorDetailsEntered: boolean; +// constructionDetailsId: string; +// propertyId?: string; +// } + +// export interface EditFloorResponse { +// success: boolean; +// message: string; +// data: { +// ID: string; +// FloorNo: number; +// Classification: string; +// NatureOfUsage: string; +// FirmName: string; +// OccupancyType: string; +// OccupancyName: string; +// ConstructionDate: string; +// EffectiveFromDate: string; +// UnstructuredLand: string; +// LengthFt: number; +// BreadthFt: number; +// PlinthAreaSqFt: number; +// BuildingPermissionNo: string; +// FloorDetailsEntered: boolean; +// ConstructionDetailsID: string; +// CreatedAt: string; +// UpdatedAt: string; +// }; +// } + +// // =================== Editable Field Types For Popovers =================== +// export type AdditionalDetailsEditInput = EditAdditionalDetailsRequest; +// export type AddressEditInput = { +// locality: string; +// zoneNo: string; +// wardNo: string; +// blockNo: string; +// street: string; +// electionWard: string; +// secretariatWard: string; +// pinCode: number; +// differentCorrespondenceAddress: boolean; +// propertyId: string; +// }; +// export type AmenitiesEditInput = EditAmenitiesRequest; +// export type AssessmentEditInput = EditAssessmentRequest; +// export type ConstructionEditInput = EditConstructionRequest; +// export type FloorEditInput = EditFloorRequest; +// export type IGRSEditInput = EditIGRSRequest; +// export type OwnerEditInput = EditOwnerRequest; + +// // =================== Property (Summary) =================== +// export type Property = { +// ID: string; +// PropertyNo: string; +// OwnershipType: string; +// PropertyType: string; +// ComplexName: string; +// }; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/acceptApplicationModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/acceptApplicationModel.ts new file mode 100644 index 0000000..7933b73 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/acceptApplicationModel.ts @@ -0,0 +1,25 @@ + +// This file defines types for accept and edit application API requests and responses. +import type { Property } from '../model/applicationByIdModel'; + + +// Response type for accepting an application +export type AcceptApplicationResponse = { + message: string; // Response message from the API + success: boolean; // Indicates if the operation was successful +}; + + + +// Response type for editing an application +export type EditApplicationResponse = { + message: string; // Response message from the API + success: boolean; // Indicates if the operation was successful + data: Property; // The updated property data +} + + +// Request type for editing an application +export type EditApplicationRequest = { + property: Property; // The property object to update +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/actOnApplicationModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/actOnApplicationModel.ts new file mode 100644 index 0000000..baafd50 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/actOnApplicationModel.ts @@ -0,0 +1,15 @@ + +// Request payload for acting on an application (e.g., approve, reject, etc.) +export interface ActOnApplicationRequest { + action : string; // The action to perform (e.g., 'approve', 'reject') + applicationId: string; // The ID of the application to act on + propertyId: string; // The ID of the related property + comments: string; // Any comments or notes for the action +} + + +// Response payload for acting on an application +export interface ActOnApplicationResponse { + success: boolean; // Indicates if the action was successful + message: string; // Response message from the API +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/applicationByIdModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/applicationByIdModel.ts new file mode 100644 index 0000000..74e9a97 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/applicationByIdModel.ts @@ -0,0 +1,215 @@ + +// This file defines strict TypeScript models for the property management application. +// Each type represents a section of the property or application data as returned by the backend. + +// Address section: represents the address details of a property +export type AddressDetails = { + ID: string; + Locality: string; + ZoneNo: string; + WardNo: string; + BlockNo: string; + Street: string; + ElectionWard: string; + SecretariatWard: string; + PinCode: number; + DifferentCorrespondenceAddress: boolean; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; + CororespondenceAddress1: string; + CororespondenceAddress2: string; + CororespondenceAddress3: string; +}; + +// Assessment details: property assessment and certification info +export type AssessmentDetails = { + ID: string; + ReasonOfCreation: string; + OccupancyCertificateNumber: string; + OccupancyCertificateDate: string; + ExtentOfSite: string; + IsLandUnderneathBuilding: string; + IsUnspecifiedShare: boolean; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; +}; + +// Amenities section: property amenities and features +export type AmenitiesDetails = { + ID: string; + type: string[]; + Description: string; + ExpiryDate: string | null; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; +}; + +// Construction section: construction details and floor breakdown +export type ConstructionDetails = { + ID: string; + FloorType: string; + WallType: string; + RoofType: string; + WoodType: string; + PropertyID: string; + FloorDetails: FloorDetails[]; // see below + CreatedAt: string; + UpdatedAt: string; +}; + +// Individual floor details: details for each floor in the property +export type FloorDetails = { + ID: string; + FloorNo: number; + Classification: string; + NatureOfUsage: string; + FirmName: string; + OccupancyType: string; + OccupancyName: string; + constructionDate: string; + effectiveFromDate: string; + UnstructuredLand: string; + LengthFt: number; + BreadthFt: number; + PlinthAreaSqFt: number; + BuildingPermissionNo: string; + FloorDetailsEntered: boolean; + ConstructionDetailsID: string; + CreatedAt: string; + UpdatedAt: string; +}; + +// Additional property details, like parking or custom fields +export type AdditionalDetails = { + ID: string; + FieldName: string; + fieldValue: { + covered: boolean; + monthly_fee: number; + reserved_spaces: number; + spaces: number; + type: string; + [key: string]: string | number | boolean | undefined; + }; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; +}; + +// GIS Data for property location: geospatial info and coordinates +export type GISData = { + ID: string; + Source: string; + Type: string; + EntityType: string; + PropertyID: string; + Latitude: number; + Longitude: number; + Coordinates: GISCoordinate[]; + CreatedAt: string; + UpdatedAt: string; +}; + +// Individual GIS coordinate (for polygons, etc.) +export type GISCoordinate = { + ID: string; + Latitude: number; + Longitude: number; + GISDataID: string; + CreatedAt: string; +}; + +// Document details: property document metadata +export type DocumentDetails = { + ID: string; + PropertyID: string; + DocumentType: string; + DocumentName: string; + FileStoreID: string; + UploadDate: string; + action: string; +}; + +// IGRS section: registration and legal details +export type IGRSDetails = { + id: string; + habitation: string; + igrsWard: string; + igrsLocality: string; + igrsBlock: string; + doorNoFrom: string; + doorNoTo: string; + igrsClassification: string; + builtUpAreaPct: number; + frontSetback: number; + rearSetback: number; + sideSetback: number; + totalPlinthArea: number; + createdAt: string; + updatedAt: string; + PropertyID: string; +}; + +// Main property object with all sections referenced +export type Property = { + ID: string; + PropertyNo: string; + OwnershipType: string; + PropertyType: string; + ComplexName: string; + Address: AddressDetails; + AssessmentDetails: AssessmentDetails; + Amenities: AmenitiesDetails; + ConstructionDetails: ConstructionDetails; + AdditionalDetails: AdditionalDetails; + GISData: GISData; + Documents: DocumentDetails[]; + IGRS: IGRSDetails; + CreatedAt: string; + UpdatedAt: string; +}; + +// Application log for history/tracking: records actions taken on the application +export type ApplicationLog = { + ID: string; + Actor: string; + Action: string; + PerformedBy: string; + PerformedDate: string; + Comments: string; + Metadata: string; + FileStoreID: string | null; + ApplicationID: string; + CreatedAt: string; +}; + +// The root application data object: represents a full property application +export type ApplicationData = { + ID: string; + ApplicationNo: string; + PropertyID: string; + Priority: string; + TenantID: string; + DueDate: string; + AssignedAgent: string; + Status: string; + WorkflowInstanceID: string; + AppliedBy: string; + AssesseeID: string; + Property: Property; + ApplicationLogs: ApplicationLog[]; + IsDraft: boolean; + CreatedAt: string; + UpdatedAt: string; + importantNote: string; +}; + +// Full response shape from your backend for a property application +export type ApplicationResponse = { + data: ApplicationData; + message: string; + success: boolean; +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/applicationLogModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/applicationLogModel.ts new file mode 100644 index 0000000..0f4efd7 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/applicationLogModel.ts @@ -0,0 +1,30 @@ + +// Request body for creating a new application log entry (POST) +export interface PostApplicationLogRequest { + action: string; + performedBy: string; + comments: string; + metadata?: object | null; + fileStoreId?: string | null; + applicationId: string; + actor: string; +} + + +// Response body for creating a new application log entry (POST) +export interface PostApplicationLogResponse { + data: { + ID: string; + Action: string; + PerformedBy: string; + PerformedDate: string; + Comments: string; + Metadata: string; + FileStoreID: string | null; + ApplicationID: string; + CreatedAt: string; + Actor: string; + }; + message: string; // Response message from the API + success: boolean; // Indicates if the operation was successful +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/assignAgentModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/assignAgentModel.ts new file mode 100644 index 0000000..65b8c61 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/assignAgentModel.ts @@ -0,0 +1,16 @@ + +// Request payload for assigning or reassigning an agent to an application +export interface AssignApplicationRequest { + action: string; // The action to perform (e.g., 'assign', 'reassign') + reasonForReassignment: string; // Reason for (re)assignment + informViaSMS: boolean; // Whether to notify the agent via SMS + applicationId: string; // The ID of the application + agentId: string; // The ID of the agent to assign +} + + +// Response payload for assigning or reassigning an agent +export interface AssignApplicationResponse { + success: boolean; // Indicates if the operation was successful + message: string; // Response message from the API +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/documentsModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/documentsModel.ts new file mode 100644 index 0000000..9099b2d --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/documentsModel.ts @@ -0,0 +1,21 @@ + +// Request payload for updating a document's status (verify or reject) +export interface UpdateDocumentRequest { + documentId: string; // The ID of the document to update + action: "VERIFIED" | "REJECTED"; // The action to perform on the document +} + + +// Response payload for updating a document's status +export interface UpdateDocumentResponse { + message: string; // Response message from the API + data: { + ID: string; // Document ID + PropertyID: string; // Associated property ID + DocumentType: string; // Type of document + DocumentName: string; // Name of the document + FileStoreID: string; // File store identifier + UploadDate: string; // Date the document was uploaded + action: string; // Current action/status (e.g., VERIFIED, REJECTED) + }; +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/editAplicaiton-models/editApplicaitonModles.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/editAplicaiton-models/editApplicaitonModles.ts new file mode 100644 index 0000000..30f145a --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/editAplicaiton-models/editApplicaitonModles.ts @@ -0,0 +1,277 @@ +// Represents the value object for additional property details fields +export type AdditionalDetailsFieldValue = { + spaces?: number; // Number of spaces (e.g., parking) + covered?: boolean; // Whether the space is covered + type?: string; // Type of detail (e.g., amenity type) + monthly_fee?: number; // Monthly fee for the amenity + reserved_spaces?: number; // Number of reserved spaces + [key: string]: string | number | boolean | undefined; // Allow additional dynamic fields +}; + + +// Request payload for editing additional property details +export interface EditAdditionalDetailsRequest { + fieldName: string; // Name of the additional detail field + fieldValue: AdditionalDetailsFieldValue; // Value object for the field + propertyId: string; // Associated property ID +} + +// Response payload for editing additional property details +export interface EditAdditionalDetailsResponse { + success: boolean; + message: string; + data: { + ID: string; + FieldName: string; + fieldValue: AdditionalDetailsFieldValue; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; + }; +} + +// --- Amenities --- +// Request payload for editing property amenities +export interface EditAmenitiesRequest { + property_id: string; // Property ID + type: string[]; // List of amenity types +} + +// Response payload for editing property amenities +export interface EditAmenitiesResponse { + success: boolean; + message: string; + data: { + ID: string; + type: string[]; + Description?: string; + ExpiryDate?: string | null; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; + }; +} + +// --- Owner Models --- +// Request payload for editing owner details +export interface EditOwnerRequest { + name: string; + contactNo: string; + email: string; + gender: string; + guardian: string; + guardianType: string; + relationshipToProperty: string; + ownershipShare: number; + isPrimaryOwner: boolean; + propertyId: string; + AdhaarNo: number; +} + +// Response payload for editing owner details +export interface EditOwnerResponse { + success: boolean; + message: string; + data: { + ID: string; + Name: string; + ContactNo: string; + Email: string; + Gender: string; + Guardian: string; + GuardianType: string; + RelationshipToProperty: string; + OwnershipShare: number; + IsPrimaryOwner: boolean; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; + }; +} + +// --- Assessment Models --- +// Request payload for editing property assessment details +export interface EditAssessmentRequest { + ReasonOfCreation: string; + OccupancyCertificateNumber: string; + OccupancyCertificateDate: string; + ExtentOfSite: string; + IsLandUnderneathBuilding: string; + IsUnspecifiedShare: boolean; + PropertyID: string; +} + +// Response payload for editing property assessment details +export interface EditAssessmentResponse { + success: boolean; + message: string; + data: { + ID: string; + ReasonOfCreation: string; + OccupancyCertificateNumber: string; + OccupancyCertificateDate: string; + ExtentOfSite: string; + IsLandUnderneathBuilding: string; + IsUnspecifiedShare: boolean; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; + }; +} + +// --- IGRS Models --- +// Request payload for editing IGRS (registration) details +export interface EditIGRSRequest { + propertyId: string; + habitation: string; + igrsWard: string; + igrsLocality: string; + igrsBlock?: string; + doorNoFrom?: string; + doorNoTo?: string; + igrsClassification?: string; + builtUpAreaPct: number; + frontSetback?: number; + rearSetback?: number; + sideSetback?: number; + totalPlinthArea: number; +} + +// Response payload for editing IGRS details +export interface EditIGRSResponse { + success: boolean; + message: string; + data: { + id: string; + habitation: string; + igrsWard: string; + igrsLocality: string; + igrsBlock?: string; + doorNoFrom?: string; + doorNoTo?: string; + igrsClassification?: string; + builtUpAreaPct: number; + frontSetback?: number; + rearSetback?: number; + sideSetback?: number; + totalPlinthArea: number; + createdAt: string; + updatedAt: string; + PropertyID: string; + }; +} + +// --- Construction Models --- +// Request payload for editing construction details +export interface EditConstructionRequest { + floorType: string; + wallType: string; + roofType: string; + woodType: string; + propertyId: string; +} + +// Response payload for editing construction details +export interface EditConstructionResponse { + success: boolean; + message: string; + data: { + ID: string; + FloorType: string; + WallType: string; + RoofType: string; + WoodType: string; + PropertyID: string; + FloorDetails?: any; // Can be expanded with full model if needed + CreatedAt: string; + UpdatedAt: string; + }; +} + +// --- Floor Models --- +// Request payload for editing floor details +export interface EditFloorRequest { + FloorNo: number; + Classification: string; + NatureOfUsage: string; + FirmName: string; + OccupancyType: string; + OccupancyName: string; + ConstructionDate: string; + EffectiveFromDate: string; + UnstructuredLand: string; + LengthFt: number; + BreadthFt: number; + PlinthAreaSqFt: number; + BuildingPermissionNo: string; + FloorDetailsEntered: boolean; + ConstructionDetailsID: string; + propertyId?: string; +} + +// Request payload for editing address details +export interface EditAddressRequest { + locality: string; + zoneNo: string; + wardNo: string; + blockNo: string; + street: string; + electionWard: string; + secretariatWard: string; + PinCode: number; + differentCorrespondenceAddress: boolean; + propertyId: string; + correspondenceAddress1: string; + correspondenceAddress2: string; + correspondenceAddress3: string; +} + +// Response payload for editing address details +export interface EditAddressResponse { + success: boolean; + message: string; + data: { + ID: string; + Locality: string; + ZoneNo: string; + WardNo: string; + BlockNo: string; + Street: string; + ElectionWard: string; + SecretariatWard: string; + PinCode: number; + DifferentCorrespondenceAddress: boolean; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; + correspondenceAddress1: string; + correspondenceAddress2: string; + correspondenceAddress3: string; + }; +} + +// Response payload for editing floor details +export interface EditFloorResponse { + success: boolean; + message: string; + data: { + ID: string; + floorNo: number; + classification: string; + natureOfUsage: string; + firmName: string; + occupancyType: string; + occupancyName: string; + constructionDate: string; + effectiveFromDate: string; + unstructuredLand: string; + lengthFt: number; + breadthFt: number; + plinthAreaSqFt: number; + buildingPermissionNo: string; + floorDetailsEntered: boolean; + constructionDetailsID: string; + CreatedAt: string; + UpdatedAt: string; + }; +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/fileStoreModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/fileStoreModel.ts new file mode 100644 index 0000000..f437de8 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/fileStoreModel.ts @@ -0,0 +1,8 @@ + +// Response payload for a file upload operation +export interface UploadResult { + files: { + fileStoreId: string; // Unique identifier for the uploaded file in the file store + tenantId: string; // Tenant ID associated with the file + }[]; +} diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/ownerDetailsModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/ownerDetailsModel.ts new file mode 100644 index 0000000..0092da1 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/model/ownerDetailsModel.ts @@ -0,0 +1,26 @@ + +// Represents a property owner and their details +export interface Owner { + ID: string; // Unique owner ID + PropertyID: string; // Associated property ID + AdhaarNo: number; // Aadhaar number (national ID) + Name: string; // Owner's name + ContactNo: string; // Contact number + Email: string; // Email address + Gender: 'MALE' | 'FEMALE' | 'OTHER'; // Gender + Guardian: string; // Guardian's name + GuardianType: 'FATHER' | 'MOTHER' | 'HUSBAND' | 'WIFE' | 'OTHER'; // Guardian relationship + RelationshipToProperty: 'OWNER' | 'CO_OWNER' | 'TENANT' | 'OTHER'; // Relationship to property + OwnershipShare: number; // Percentage share of ownership + IsPrimaryOwner: boolean; // Whether this is the primary owner + CreatedAt: string; // Record creation timestamp + UpdatedAt: string; // Record update timestamp +} + + +// Response payload for fetching owner details +export interface OwnerResponse { + data: Owner[]; // Array of owner records + message: string; // Response message from the API + success: boolean; // Indicates if the operation was successful +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/redux/apiSlice.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/redux/apiSlice.ts new file mode 100644 index 0000000..2f92f11 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/redux/apiSlice.ts @@ -0,0 +1,51 @@ +import { createSlice } from '@reduxjs/toolkit'; +import type { PayloadAction } from '@reduxjs/toolkit'; + + +// Defines the shape of the application state in Redux +interface ApplicationState { + data: any; // The application data (property, etc.) + isLoading: boolean;// Loading state for async operations + error: any; // Error object or message +} + + +// Initial state for the application slice +const initialState: ApplicationState = { + data: null, + isLoading: false, + error: null, +}; + + +// Redux slice for managing application data, loading, and error state +const applicationSlice = createSlice({ + name: 'application', + initialState, + reducers: { + // Set the application data in state + setApplicationData(state, action: PayloadAction) { + state.data = action.payload; + }, + // Set the loading state (true/false) + setApplicationLoading(state, action: PayloadAction) { + state.isLoading = action.payload; + }, + // Set the error object or message + setApplicationError(state, action: PayloadAction) { + state.error = action.payload; + }, + }, +}); + + +// Export actions for use in components and thunks +export const { setApplicationData, setApplicationLoading, setApplicationError } = applicationSlice.actions; + +// Export the reducer to be included in the Redux store +export default applicationSlice.reducer; + +// Selectors for accessing application state from the Redux store +export const selectApplication = (state: any) => state.application.data; +export const selectApplicationLoading = (state: any) => state.application.isLoading; +export const selectApplicationError = (state: any) => state.application.error; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/redux/mdmsData.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/redux/mdmsData.ts new file mode 100644 index 0000000..db8b7bf --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/redux/mdmsData.ts @@ -0,0 +1,19 @@ +// import React, { useEffect } from 'react' +// import { useGetMdmsEnumerationQuery } from '../api/mdmsService/mdmsApi' + +// const MdmsDataLogger: React.FC = () => { +// const { data, error } = useGetMdmsEnumerationQuery() + +// useEffect(() => { +// if (data) { +// console.log('MDMS response:', data) +// } +// if (error) { +// console.error('MDMS error:', error) +// } +// }, [data, error]) + +// return null +// } + +// export default MdmsDataLogger \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/application-view/zod/validationSchemas.ts b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/zod/validationSchemas.ts new file mode 100644 index 0000000..2d96d7c --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/application-view/zod/validationSchemas.ts @@ -0,0 +1,109 @@ + +// This file defines Zod validation schemas for various forms and cards in the property application view. +// Each exported schema validates the structure and rules for a specific form section (owner, address, property, etc). +import { z } from "zod"; + +// Helper regex for validation +const onlyDigits = /^\d+$/; // Matches only digits +const onlyAlpha = /^[A-Za-z\s]+$/; // Matches only letters and spaces + +// Validation schema for the Owner Card section +export const ownerSchema = z.object({ + Name: z.string() + .min(1, "Owner Name is required") + .regex(onlyAlpha, "Name must contain only letters and spaces"), + ContactNo: z.string() + .length(10, "Mobile Number must be exactly 10 digits") + .regex(onlyDigits, "Mobile Number must be digits only"), + Email: z.string().email("Invalid email address"), + AdhaarNo: z.number().refine(n => n.toString().length === 12, "Aadhaar number must be exactly 12 digits"), +}); + +// Validation schema for the Address Card section +export const addressSchema = z.object({ + Locality: z.string().min(1, "Locality is required"), + // ZoneNo: z.string().min(1, "Zone No is required"), + ZoneNo: z.string().regex(/^Zone-\d+$/, "ZoneNo must be in format Zone-0"), + WardNo: z.string().min(1, "Ward No is required"), + BlockNo: z.string().min(1, "Block No is required"), + Street: z.string().min(1, "Street is required"), + ElectionWard: z.string().min(1, "Election Ward is required"), + SecretariatWard: z.string().min(1, "Secretariat Ward is required"), + PinCode: z.number() + .refine(n => n.toString().length === 6, "Pin Code must be exactly 6 digits") +}); + +// Validation schema for the Property Card section +export const propertySchema = z.object({ + PropertyNo: z.string().min(1, "Property No is required"), + OwnershipType: z.string().min(1, "Ownership Type is required"), + PropertyType: z.string().min(1, "Property Type is required"), + ComplexName: z.string().min(1, "Complex Name is required"), +}); + +// Validation schema for the Assessment Card section +export const assessmentSchema = z.object({ + ReasonOfCreation: z.string().min(1, "Reason of Creation is required"), + OccupancyCertificateNumber: z.string() + .regex(/^OC-\d{4}-\d{3}(-REVISED)?$/, "Occupancy Certificate Number must be in format OC-0000-000"), + OccupancyCertificateDate: z.string() + .regex(/^\d{4}-\d{2}-\d{2}$/, "Date must be in YYYY-MM-DD format"), + ExtentOfSite: z.string().min(1, "Extent of site is required"), +}); + +// Validation schema for the IGSR Card section +export const igsrSchema = z.object({ + igrsWard: z.string().min(1, "IGRS Ward is required"), + igrsBlock: z.string().min(1, "IGRS Block is required"), + igrsClassification: z.string().min(1, "IGRS Classification is required"), + builtUpAreaPct: z.number() + .min(0, "Must be positive") + .max(100, "Cannot be more than 100"), + totalPlinthArea: z.number().min(0, "Must be positive"), + habitation: z.string().min(1, "Habitation is required"), + igrsLocality: z.string().min(1, "IGRS Locality is required"), + frontSetback: z.number().min(0, "Front Setback must be positive"), + rearSetback: z.number().min(0, "Rear Setback must be positive"), + sideSetback: z.number().min(0, "Side Setback must be positive"), +doorNoFrom: z.string() + .regex(/^\d+$/, "Door No From must be digits only") + .min(1, "Door No From is required"), +doorNoTo: z.string() + .regex(/^\d+$/, "Door No To must be digits only") + .min(1, "Door No To is required"), +}); + +// Validation schema for the Construction Card section +export const constructionSchema = z.object({ + FloorType: z.string().min(1, "Floor Type is required"), + WallType: z.string().min(1, "Wall Type is required"), + RoofType: z.string().min(1, "Roof Type is required"), + WoodType: z.string().min(1, "Wood Type is required"), +}); + +// Validation schema for the Floor details section +export const floorSchema = z.object({ + FloorNo: z.number().min(0, "Floor No must be a positive number"), + Classification: z.string().min(1, "Classification is required"), + NatureOfUsage: z.string().min(1, "Nature of Usage is required"), + FirmName: z.string().optional(), + PlinthAreaSqFt: z.number().min(0, "Plinth Area (sqft) must be a positive number"), + OccupancyName: z.string().regex(/^$|^[A-Za-z\s]+$/, "Occupancy Name must be letters only"), + OccupancyType: z.string().optional(), + BuildingPermissionNo: z.string().optional(), + BreadthFt: z.number().min(0, "Breadth (ft) must be a positive number"), + LengthFt: z.number().min(0, "Length (ft) must be a positive number"), +}); + +// export const floorSchema = z.object({ +// FloorNo: z.number().min(0, "Floor No must be a positive number"), +// Classification: z.string().min(1, "Classification is required"), +// NatureOfUsage: z.string().min(1, "Nature of Usage is required"), +// FirmName: z.string().optional(), +// PlinthAreaSqFt: z.number().min(0, "Plinth Area (sqft) must be a positive number").optional(), +// OccupancyName: z.string().regex(/^$|^[A-Za-z\s]+$/, "Occupancy Name must be letters only").optional(), +// OccupancyType: z.string().optional(), +// BuildingPermissionNo: z.string().optional(), +// BreadthFt: z.number().min(0, "Breadth (ft) must be a positive number").optional(), +// LengthFt: z.number().min(0, "Length (ft) must be a positive number").optional(), +// }); \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/assign-agent-to-application/api/assignAgentApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/assign-agent-to-application/api/assignAgentApi.ts new file mode 100644 index 0000000..043b2bf --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/assign-agent-to-application/api/assignAgentApi.ts @@ -0,0 +1,83 @@ +// This file defines API slices and endpoints for agent assignment and reassignment in the application. +// It uses RTK Query to create endpoints for fetching agents and assigning/reassigning applications to agents. +import { onboardingApiSlice } from '../../../../../store/onboardingApiSlice' +import { apiSlice } from '../../../../../store/apiSlice'; +import { TAG_TYPES } from '../../../../../store/tagTypes'; + +// Types for agent API responses +import type { + GetAgentByIdResponse, + GetAgentsByWardResponse, +} from '../../application-inbox/models/getAndReassignAgentModel'; + +// Response type for assign/reassign application API calls +interface AssignReassignApplicationResponse { + success: boolean; + message: string; +} + +// API slice for agent-related queries (fetching agents by ward and by ID) +export const agentsApi = onboardingApiSlice.injectEndpoints({ + endpoints: (builder) => ({ + // Endpoint to fetch agents by ward + getAgents: builder.query({ + query: ({ ward }) => ({ + url: `/api/v1/users?role=AGENT&isActive=true&ward=${ward}&limit=20&offset=0`, + method: 'GET', + }), + providesTags: [TAG_TYPES.AGENTS], + }), + // Endpoint to fetch a single agent by their ID + getAgentById: builder.query({ + query: (id) => ({ + url: `/api/v1/users/${id}`, + method: 'GET', + }), + providesTags: [TAG_TYPES.AGENTS], + }), + }), +}); +// Hooks for agent queries +export const { useGetAgentsQuery, useGetAgentByIdQuery } = agentsApi; + +// API slice for assigning or reassigning an application to an agent +export const assignOrReassignApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + // Endpoint to reassign an application to a different agent + reassignApplication: builder.mutation({ + query: ({ applicationId, agentId, comments }) => ({ + url: `/v1/applications/${applicationId}`, + method: 'PATCH', + body: { + "action": "re-assign", + "agentId": `${agentId}`, + "comments": `${comments}`, + }, + }), + invalidatesTags: (_result, _error, arg) => [ + { type: TAG_TYPES.APPLICATION, id: arg.applicationId }, + TAG_TYPES.APPLICATIONS, + TAG_TYPES.AGENTS + ] + }), + // Endpoint to assign an application to an agent + assignApplication: builder.mutation({ + query: ({ applicationId, agentId, comments }) => ({ + url: `/v1/applications/${applicationId}`, + method: 'PATCH', + body: { + "action": "assign", + "agentId": `${agentId}`, + "comments": `${comments}`, + }, + }), + invalidatesTags: (_result, _error, arg) => [ + { type: TAG_TYPES.APPLICATION, id: arg.applicationId }, + TAG_TYPES.APPLICATIONS, + TAG_TYPES.AGENTS + ] + }), + }), +}); +// Hooks for assign/reassign mutations +export const { useReassignApplicationMutation, useAssignApplicationMutation } = assignOrReassignApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/assign-agent-to-application/components/ApplicationInboxAssignmentModal.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/assign-agent-to-application/components/ApplicationInboxAssignmentModal.tsx new file mode 100644 index 0000000..8fc9450 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/assign-agent-to-application/components/ApplicationInboxAssignmentModal.tsx @@ -0,0 +1,188 @@ +// ApplicationInboxAssignmentModal component allows assigning or reassigning an agent to an application. +// It displays a modal dialog with agent selection, reason input, SMS notification toggle, and an action button. +import Box from "@mui/material/Box"; +import TextField from "@mui/material/TextField"; +import Typography from "@mui/material/Typography"; +import MenuItem from "@mui/material/MenuItem"; +import Modal from "@mui/material/Modal"; +import { useState } from "react"; +import { useGetAgentsQuery } from "../../application-inbox/api/getAndReassignAgentApi"; +import { + agentFieldSx, + fieldLabelSx, + reasonFieldSx, + reassignmentBoxSx, + titleSx, + toggleRowSx, + modalBoxSx, +} from "../styles/AssignAgentBoxStyle"; +import ApplicationInboxToggleButton from "../../application-inbox/components/ApplicationInboxButtons/ApplicationInboxToggleButton"; +import ApplicationInboxReassignButton from "../../application-inbox/components/ApplicationInboxButtons/ApplicationInboxReassignButton"; +import { useAssignApplicationMutation, useReassignApplicationMutation } from "../api/assignAgentApi"; + +// Props for the ApplicationInboxAssignmentModal component +interface ApplicationInboxAssignmentModalProps { + open: boolean; + ward?: string; + applicationId: string; + onClose: () => void; + assignedAgentId?: string | null; + isAssigned?: boolean; + assignedAgentName?: string; +} + +// Main functional component for the assignment/reassignment modal +export const ApplicationInboxAssignmentModal = ({ + open, + applicationId, + onClose, + assignedAgentId, + isAssigned, + ward, + // assignedAgentName +}: ApplicationInboxAssignmentModalProps) => { + const { data: agentsData, isLoading } = useGetAgentsQuery({ ward: ward || "" }); + // Fetch agents data for the dropdown (empty ward fetches all) + const [selectedAgent, setSelectedAgent] = useState(""); + const [reason, setReason] = useState(""); + const [notifySMS, setNotifySMS] = useState(false); + + // State for selected agent, reason input, and SMS notification toggle + const filteredAgents = (agentsData?.data.users || []).filter( + (agent) => agent.id !== assignedAgentId + ); + + // RTK Query mutation hook for reassigning an application + const [reassignApplication, { isLoading: isReassigning }] = + useReassignApplicationMutation(); + + // Handler for reassigning the application to a new agent + const handleReassign = async () => { + if (!selectedAgent || (assignedAgentId && !reason)) return; + + try { + await reassignApplication({ + applicationId, + agentId: selectedAgent, + comments: reason, + // notifySMS, + }); + onClose(); + } catch (error) { + console.error("Reassignment failed:", error); + } + }; + + // RTK Query mutation hook for assigning an application + const [assignApplication, {isLoading: isAssigning}] = useAssignApplicationMutation(); + + // Handler for assigning the application to an agent + const handleAssign = async () => { + if (!selectedAgent) return; + + try { + await assignApplication({ + applicationId, + agentId: selectedAgent, + comments: reason, + // notifySMS, + }); + onClose(); + } catch (error) { + console.error("Assignment failed:", error); + } + }; + + // Determine if the modal is for reassignment (already assigned) or initial assignment + const isReassignment = !!isAssigned; + + // Render the modal dialog with agent selection, reason input, SMS toggle, and action button + return ( + + + + + {isReassignment ? "Reassignment Details" : "Assignment Details"} + + + {/* Agent Selection */} + + + {isReassignment ? "Select New Agent:" : "Select Agent:"} + + setSelectedAgent(e.target.value)} + placeholder="Choose an agent" + > + {isLoading ? ( + Loading agents... + ) : filteredAgents.length === 0 ? ( + No agents available for the ward + ) : ( + filteredAgents.map((agent) => ( + + {agent.profile?.fullName || agent.username} + + )) + )} + + + + {/* Reason Field */} + + + {isReassignment + ? "Reason for Reassignment:" + : "Assignment Notes (Optional):"} + + setReason(e.target.value)} + placeholder={ + isReassignment + ? "Enter reason for reassignment..." + : "Add any notes for the agent..." + } + /> + + + {/* Notify SMS Toggle */} + + Notify Agent via SMS + setNotifySMS(val)} + /> + + + {/* Action Button */} + + + + + + + ); +}; + +export default ApplicationInboxAssignmentModal; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/assign-agent-to-application/models/AssignAgentModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/assign-agent-to-application/models/AssignAgentModel.ts new file mode 100644 index 0000000..b0b494f --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/assign-agent-to-application/models/AssignAgentModel.ts @@ -0,0 +1,21 @@ +// This file defines TypeScript interfaces for agent assignment and reassignment models. // Used for API requests and responses related to assigning or reassigning agents to applications. +import type { Agent } from "../../application-inbox/models/getAndReassignAgentModel"; + +export interface GetAgentsResponse { // Response structure for fetching a list of agents + success: boolean; // Indicates if the API call was successful + data: Agent[]; // Array of agent objects returned from the API + message?: string; // Optional message from the API (e.g., error or status) +} + +export interface ReassignApplicationRequest { // Request structure for reassigning an application to a different agent + action: string; // Action type (e.g., 're-assign') + reasonForReassignment: string; // Reason for the reassignment + informViaSMS: boolean; // Whether to inform the agent via SMS + applicationId: string; // ID of the application being reassigned + agentId: string; // ID of the agent to assign +} + +export interface ReassignApplicationResponse { // Response structure for a reassign application API call + success: boolean; // Indicates if the reassignment was successful + message: string; // Message from the API (e.g., success or error message) +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/assign-agent-to-application/styles/AssignAgentBoxStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/assign-agent-to-application/styles/AssignAgentBoxStyle.ts new file mode 100644 index 0000000..d3b2827 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/assign-agent-to-application/styles/AssignAgentBoxStyle.ts @@ -0,0 +1,76 @@ +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the modal dialog box +export const modalBoxSx: SxProps = { + position: "absolute", + top: "50%", + left: "50%", + transform: "translate(-50%, -50%)", + outline: 0, + bgcolor: "background.paper", + boxShadow: 24, + p: 4, + borderRadius: 2, + minWidth: 340, + maxWidth: 420, + width: "100%", +}; + +// Styles for the main container box of the reassignment section +export const reassignmentBoxSx: SxProps = { + background: "#ffffff", + borderRadius: "10px", + px: 1, + py: 1, + height: "auto", + alignSelf: "flex-start", +}; + +// Styles for the title text in the reassignment box +export const titleSx: SxProps = { + fontSize: 20, + fontWeight: 300, + letterSpacing: 0.5, + color: "black", + mb: 2, +}; + +// Styles for the labels of form fields +export const fieldLabelSx: SxProps = { + fontSize: 16, + fontWeight: 300, +}; + +// Styles for the agent selection input field +export const agentFieldSx: SxProps = { + background: "#f1f1f1", + borderRadius: "8px", + height: "40px", + width: "100%", + "& .MuiOutlinedInput-input": { + padding: "10px 14px", + lineHeight: "20px", + }, + "& .MuiOutlinedInput-notchedOutline": { + border: "none", + }, +}; + +// Styles for the reason input field +export const reasonFieldSx: SxProps = { + background: "#f1f1f1", + borderRadius: "8px", + width: "100%", + "& .MuiOutlinedInput-notchedOutline": { + border: "none", + }, +}; + +// Styles for the row containing toggle switches or actions +export const toggleRowSx: SxProps = { + display: "flex", + alignItems: "center", + justifyContent: "flex-end", + mt: 1, + mb: 2, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/priority-modal/components/PriorityModal.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/priority-modal/components/PriorityModal.tsx new file mode 100644 index 0000000..1ea82ee --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/priority-modal/components/PriorityModal.tsx @@ -0,0 +1,117 @@ +// PriorityModal component allows users to set the priority (High, Medium, Low) for an application. +// It displays a modal dialog with radio buttons for priority selection and a confirm button to update the priority. +import React, { useState } from "react"; +import { Modal, Box, Radio, RadioGroup, FormControlLabel, Typography, Button, CircularProgress, Alert } from "@mui/material"; +import { useUpdateApplicationPriorityMutation } from "../../all-applications/api/allApplicationApi"; + +// Props for the PriorityModal component +interface PriorityModalProps { + applicationID: string; + open: boolean; + onClose: () => void; + onConfirm: (priority: string) => void; + defaultValue?: string; +} + +// Styles for the modal dialog box +const modalStyle = { + position: "absolute" as const, + top: "50%", + left: "50%", + transform: "translate(-50%, -50%)", + height: 300, + width: 300, + bgcolor: "#fff", + borderRadius: 4, + boxShadow: 24, + zIndex: 600, + display: "flex", + flexDirection: "column", + justifyContent: "center", + alignItems: "center", +}; + +// PriorityModal functional component definition +export const PriorityModal: React.FC = ({ + applicationID, + open, + onClose, + onConfirm, + defaultValue = "High", +}) => { + // State to track the selected priority value + const [priority, setPriority] = useState(defaultValue); + + // RTK Query mutation hook for updating application priority + const [updatePriority, { isLoading, isSuccess, error }] = useUpdateApplicationPriorityMutation(); + + // Handler for confirming the priority selection and updating it via API + const handleConfirm = async () => { + try { + await updatePriority({ id: applicationID, priority }).unwrap(); + console.log(isSuccess); + console.log(applicationID); + onConfirm(priority); + onClose(); + } catch (err) { + // handle error (show error message if desired) + } + }; + + // Handler for changing the selected priority value + const handleChange = (_: React.ChangeEvent, value: string) => { + setPriority(value); + }; + + // Render the modal dialog with radio buttons for priority selection and a confirm button + return ( + + + + {["HIGH", "MEDIUM", "LOW"].map(opt => ( + } + label={ + {opt} + } + sx={{ mb: 2, ml: 4, mr: 4 }} + /> + ))} + + + {!!error && ( + + Failed to update priority. Please try again. + + )} + + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/api/getAllAgentsApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/api/getAllAgentsApi.ts new file mode 100644 index 0000000..df17c39 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/api/getAllAgentsApi.ts @@ -0,0 +1,19 @@ +// This file defines an RTK Query API slice for fetching all agents with the AGENT role from the backend. +import { onboardingApiSlice } from '../../../../../store/onboardingApiSlice' +import type { GetAgentsResponse } from '../models/agentModel'; + + +// Defines an API slice for fetching all agents using RTK Query +export const allAgentsApi = onboardingApiSlice.injectEndpoints({ + endpoints: (builder) => ({ + // Endpoint to fetch all users with the AGENT role + getAllAgents: builder.query({ + query: () => ({ + url: `/api/v1/users?role=AGENT`, + method: 'GET', + }), + }), + }), +}); +// Hook for fetching all agents +export const { useGetAllAgentsQuery } = allAgentsApi; diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/api/getAllPropertiesApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/api/getAllPropertiesApi.ts new file mode 100644 index 0000000..74252a2 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/api/getAllPropertiesApi.ts @@ -0,0 +1,43 @@ +// This file defines an RTK Query API slice for fetching property application data for service managers. +import { apiSlice } from '../../../../../store/apiSlice' +import { TAG_TYPES } from '../../../../../store/tagTypes' +import type { GetAllPropertiesResponse } from '../models/GetAllProperties' +// import { buildJurisdictionQuery } from '../utils/buildJurisdictionQuery' + +// API slice for property application queries (all properties and by jurisdiction) +export const applicationInboxApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + // Endpoint to fetch all property applications with pagination + // getAllProperties: builder.query({ + // query: ({ page = 0, size = 20 } = {}) => ({ + // url: `/v1/applications?page=${page}&size=${size}`, + // method: 'GET', + // headers: { + // 'X-User-Role': 'SERVICE_MANAGER', + // }, + // }), + // providesTags: [TAG_TYPES.APPLICATIONS], + // }), + + // Endpoint to fetch all property applications under a specific jurisdiction (zone and wards) + getAllPropertiesUnderJurisdiction: builder.query({ + query: ({ page = 0, size = 20, zoneNo, wardNos }) => { + const zoneParam = `zoneNo=${encodeURIComponent(zoneNo)}`; + const wardParams = wardNos.map(w => `wardNo=${encodeURIComponent(w)}`).join('&'); + const url = `/v1/applications/search?${zoneParam}&${wardParams}&page=${page}&size=${size}`; + console.log('Built jurisdiction query', url); + return { + url, + method: 'GET', + headers: { + 'X-User-Role': 'SERVICE_MANAGER', + }, + }; + }, + providesTags: [TAG_TYPES.APPLICATIONS], + }), + }), +}) + +// Hooks for property application queries +export const { useGetAllPropertiesUnderJurisdictionQuery } = applicationInboxApi \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/api/getFileFromFilestore.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/api/getFileFromFilestore.ts new file mode 100644 index 0000000..768c1e5 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/api/getFileFromFilestore.ts @@ -0,0 +1,24 @@ +// This file defines an RTK Query API slice for fetching files as blobs from the filestore service. +import { filestoreApiSlice } from '../../../../../store/filestoreApiSlice'; +// import { TAG_TYPES } from '../../../../store/tagTypes'; + +// Response type can be Blob +// API slice for filestore-related queries (fetching files as blobs) +export const filestoreApi = filestoreApiSlice.injectEndpoints({ + endpoints: (builder) => ({ + // Add the endpoint for fetching blob from filestore + // Endpoint to fetch a file as a Blob from the filestore by fileStoreId and tenantId + getFileFromFilestore: builder.query({ + query: ({ fileStoreId, tenantId = "pg" }) => ({ + url: `/filestore/v1/files/${fileStoreId}?tenantId=${tenantId}`, + method: 'GET', + responseHandler: (response) => response.blob(), + }), + // Optionally: tags if you cache blobs + // providesTags: [TAG_TYPES.FILESTORE], + }), + }), +}); + +// Hook for fetching a file as a Blob from the filestore +export const { useGetFileFromFilestoreQuery } = filestoreApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/api/searchFilterApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/api/searchFilterApi.ts new file mode 100644 index 0000000..7c4a07c --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/api/searchFilterApi.ts @@ -0,0 +1,53 @@ +// This file defines an RTK Query API slice for searching property applications with filters for service managers. +import { apiSlice } from '../../../../../store/apiSlice' +import { TAG_TYPES } from '../../../../../store/tagTypes' +import type { GetAllPropertiesResponse } from '../models/GetAllProperties'; + +// API slice for searching property applications with various filters +export const allApplicationApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + // Endpoint to search property applications by text, value, zone, wards, with pagination + getApplicationsBySearch: builder.query< + GetAllPropertiesResponse, + { searchText: string; searchValue: string; zoneNo: string; wardNos: string[]; page?: number; size?: number } + >({ + query: ({ searchText, searchValue, zoneNo, wardNos, page = 0, size = 15 }) => { + const zoneParam = zoneNo ? `zoneNo=${encodeURIComponent(zoneNo)}` : ''; + const wardParams = wardNos.length > 0 + ? wardNos.map(w => `wardNo=${encodeURIComponent(w)}`).join('&') + : ''; + const pageParam = `page=${page}`; + const sizeParam = `size=${size}`; + + // Build query params + const params = [ + zoneParam, + wardParams, + `${searchText}=${encodeURIComponent(searchValue)}`, + pageParam, + sizeParam + ] + .filter(Boolean) + .join('&'); + + const url = `/v1/applications/search?${params}`; + // console.log('Search API URL:', url); + // console.log('Zone:', zoneNo, 'Wards:', wardNos, 'Page:', page, 'Size:', size); + + return { + url, + method: 'GET', + headers: { + 'X-User-Role': 'SERVICE_MANAGER', + }, + }; + }, + providesTags: [TAG_TYPES.APPLICATIONS], + }), + }), +}) + +// Hook for searching property applications with filters +export const { + useGetApplicationsBySearchQuery, +} = allApplicationApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/assets/Proptery one.svg b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/assets/Proptery one.svg new file mode 100644 index 0000000..76bd35e --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/assets/Proptery one.svg @@ -0,0 +1,4 @@ + + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/assets/Rectangle 103.svg b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/assets/Rectangle 103.svg new file mode 100644 index 0000000..50059a6 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/assets/Rectangle 103.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/assets/property_pointer_dark.svg b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/assets/property_pointer_dark.svg new file mode 100644 index 0000000..7d0889f --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/assets/property_pointer_dark.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchProperty.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchProperty.tsx new file mode 100644 index 0000000..9642573 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchProperty.tsx @@ -0,0 +1,60 @@ +// This file defines the SearchProperty component, which serves as the main container for the property search page. +// It manages filter, search, and sort state, and renders the header, map, and property card list. + +import { Box } from '@mui/material'; +import SearchPropertyHeader from './SearchPropertyHeader/SearchPropertyHeader'; +import PropertyCardList from './SearchPropertyCards/PropertyCardList'; +import { searchPropertyContainerSx, searchPropertySpacerSx } from '../styles/SearchPropertyStyle'; +// import SearchPropertyMap from './SearchPropertyMap/SearchPropertyMap'; +import { JurisdictionDropdown } from '../../../../components/JurisdictionDropdown/JurisdictionDropdown'; +import { jurisdictionDropdownStyles } from '../../../../styles/HomePageStyle/HomePageStyle'; +import { useState } from 'react'; +import MapView from '../../../comissioner-app-features/property-approval/components/mapview'; + +const DEFAULT_FILTER = "Property No."; +const DEFAULT_SORT = "New - Old"; + +// Main component for the property search page +const SearchProperty = () => { + // State for the selected filter option + const [selectedFilter, setSelectedFilter] = useState(DEFAULT_FILTER); + // State for the search input value + const [searchValue, setSearchValue] = useState(""); + // State for the selected sort option + const [selectedSort, setSelectedSort] = useState(DEFAULT_SORT); + + return ( + + {/* Dropdown for selecting jurisdiction (zone/ward) */} + + + + + {/* Header with filter, search, and sort controls */} + + + {/* Map preview section */} + + {/* */} + + + + + {/* List of property cards based on current filter/search/sort */} + + + ); +}; + +export default SearchProperty; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyButtons/AgentButton.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyButtons/AgentButton.tsx new file mode 100644 index 0000000..bcb5112 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyButtons/AgentButton.tsx @@ -0,0 +1,32 @@ +// This file defines the AgentButton component, which displays an agent's name and username in a styled button. +import React from "react"; +import { Button, Box } from "@mui/material"; +import AssignmentIndOutlinedIcon from '@mui/icons-material/AssignmentIndOutlined'; +import { agentButtonSx, agentIconSx } from "../../styles/SearchPropertyButtons/AgentButtonStyle"; + +// Props for the AgentButton component +interface AgentButtonProps { + agentName: string; + agentUsername: string; +} + +// Functional component for displaying an agent as a button with name and username +const AgentButton: React.FC = ({ agentName, agentUsername }) => ( + +); + +// Export the AgentButton component as default +export default AgentButton; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyButtons/CustomDropdown.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyButtons/CustomDropdown.tsx new file mode 100644 index 0000000..251d5f2 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyButtons/CustomDropdown.tsx @@ -0,0 +1,94 @@ +// This file defines the CustomDropdown component, which renders a customizable dropdown menu +// using Material-UI components. It allows users to select an option from a list and supports +// custom styles and button variants. + +import React from "react"; +import { Button, Menu, MenuItem, type SxProps, type Theme } from "@mui/material"; +import KeyboardArrowDownIcon from "@mui/icons-material/KeyboardArrowDown"; + +interface CustomDropdownProps { + options: string[]; // List of options to display in the dropdown + selectedValue: string; // The currently selected value + onChange: (value: string) => void; // Callback when a new option is selected + buttonSx?: SxProps; // Optional custom styles for the button + paperSx?: SxProps; // Optional custom styles for the dropdown menu + menuItemSx?: SxProps; // Optional custom styles for each menu item + variant?: "contained" | "outlined"; // Button style variant + minWidth?: string | number; // Minimum width for the button and menu +} + +// Functional component for displaying a dropdown menu with custom options and styles +const CustomDropdown: React.FC = ({ + options, + selectedValue, + onChange, + buttonSx, + paperSx, + menuItemSx, + variant = "contained", + minWidth, +}) => { + // State to keep track of the anchor element for the dropdown menu + const [anchorEl, setAnchorEl] = React.useState(null); + // Boolean to determine if the menu is open + const isOpen = Boolean(anchorEl); + + // Handle button click to open the dropdown menu + const handleButtonClick = (event: React.MouseEvent) => { + setAnchorEl(event.currentTarget); + }; + + // Handle menu close and trigger onChange if a new value is selected + const handleMenuClose = (value?: string) => { + if (value && value !== selectedValue) { + onChange(value); + } + setAnchorEl(null); + }; + + return ( + <> + {/* Button that shows the selected value and opens the dropdown menu */} + + + {/* Dropdown menu with selectable options */} + handleMenuClose()} + anchorOrigin={{ vertical: "bottom", horizontal: "left" }} + transformOrigin={{ vertical: "top", horizontal: "left" }} + slotProps={{ + paper: { + sx: { + ...paperSx, + // Ensure the menu width matches the button width + minWidth: anchorEl ? anchorEl.offsetWidth : minWidth, + }, + }, + }} + > + {options.map((option) => ( + handleMenuClose(option)} + sx={menuItemSx} + > + {option} + + ))} + + + ); +}; + +// Export the CustomDropdown component as default +export default CustomDropdown; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyButtons/TextButton.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyButtons/TextButton.tsx new file mode 100644 index 0000000..210becd --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyButtons/TextButton.tsx @@ -0,0 +1,29 @@ +// This file defines the TextButton component, a reusable button for displaying text with custom styles and click handling. +import type { SxProps, Theme } from "@mui/material"; +import React from "react"; +import Button from "@mui/material/Button"; + +// Props for the TextButton component +interface TextButtonProps { + text: string; + sx?: SxProps; + onClick?: () => void; +} + +// Functional component for rendering a styled text button +const TextButton: React.FC = ({ + text, + sx, + onClick, +}) => ( + +); + +// Export the TextButton component as default +export default TextButton; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyButtons/ViewLocationButton.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyButtons/ViewLocationButton.tsx new file mode 100644 index 0000000..820063d --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyButtons/ViewLocationButton.tsx @@ -0,0 +1,37 @@ +// This file defines the ViewLocationButton component, which displays a styled button +// with an icon and the label "View Location". It is typically used to trigger a location view action. + +import React from "react"; +import { Button } from "@mui/material"; +import OpenInNewIcon from "@mui/icons-material/OpenInNew"; +import { viewLocationButtonSx, viewLocationIconSx } from "../../styles/SearchPropertyButtons/ViewLocationButtonStyle"; + + +// Props for the ViewLocationButton component +// onClick: Optional callback function to handle button click events +interface ViewLocationButtonProps { + onClick?: () => void; +} + + +/** + * ViewLocationButton Component + * + * Renders a styled button with an "open in new" icon and the label "View Location". + * When clicked, it triggers the optional onClick callback provided via props. + * Styling is applied using custom style objects for both the button and the icon. + */ +const ViewLocationButton: React.FC = ({ onClick }) => ( + +); + + +// Export the ViewLocationButton component as default +export default ViewLocationButton; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyCards/DocumentPreview.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyCards/DocumentPreview.tsx new file mode 100644 index 0000000..cd68cb2 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyCards/DocumentPreview.tsx @@ -0,0 +1,83 @@ +// This file defines the DocumentPreview component, which displays a preview for a document or image +// fetched from a filestore. It handles loading, error, and preview states for both images and other files. + +import React, { useEffect, useState } from "react"; +import { Box, CircularProgress, IconButton, type SxProps, type Theme } from "@mui/material"; +// import ArticleOutlinedIcon from '@mui/icons-material/ArticleOutlined'; +import ImageOutlinedIcon from "@mui/icons-material/ImageOutlined"; +import { useGetFileFromFilestoreQuery } from '../../api/getFileFromFilestore' + + +// Props for the DocumentPreview component +interface DocumentPreviewProps { + fileStoreId: string; // ID of the file in the filestore + fileName: string; // Name of the file to display as alt text + isImage: boolean; // Whether the file is an image + sx?: SxProps; // Optional custom styles +} + +// Functional component for displaying a document or image preview +const DocumentPreview: React.FC = ({ + fileStoreId, + fileName, + isImage, + sx, +}) => { + // Fetch the file blob from the filestore using a custom hook + const { data: blob, isLoading, isError } = useGetFileFromFilestoreQuery({ fileStoreId }); + // State to store the generated object URL for the blob + const [blobUrl, setBlobUrl] = useState(null); + + // When the blob changes, create a new object URL and clean up the old one + useEffect(() => { + if (blob) { + const url = URL.createObjectURL(blob); + setBlobUrl(url); + return () => { URL.revokeObjectURL(url); }; + } + }, [blob]); + + // Show a loading spinner while the file is being fetched + if (isLoading) return ; + // Show a fallback icon if there is an error or no blob URL + if (!blobUrl || isError) return isImage ? : ; + + // If the file is an image, display it with preview and click-to-open functionality + if (isImage) { + return { + e.stopPropagation(); + if (blobUrl) { + window.open(blobUrl, "_blank", "noopener"); + } + }} + /> + } + // For non-image files, show an icon button that opens the file in a new tab + return ( + e.stopPropagation()} + > + + + // + // + // + ); +}; + +export default DocumentPreview; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyCards/PropertyCard.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyCards/PropertyCard.tsx new file mode 100644 index 0000000..966a2a9 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyCards/PropertyCard.tsx @@ -0,0 +1,178 @@ +// This file defines the PropertyCard component, which displays a summary card for a property +// including its name, ID, address, agent, images, and a map preview. It is used in property search results. + +import React from "react"; +import { Box, Typography } from "@mui/material"; +// import ImageOutlinedIcon from "@mui/icons-material/ImageOutlined"; +// import AddPhotoAlternateOutlinedIcon from "@mui/icons-material/AddPhotoAlternateOutlined"; +import ArticleOutlinedIcon from '@mui/icons-material/ArticleOutlined'; +import AgentButton from "../SearchPropertyButtons/AgentButton"; +// import ViewLocationButton from "../SearchPropertyButtons/ViewLocationButton"; +import { + cardBoxSx, + detailsBoxSx, + articleIconSx, + propertyNameSx, + propertyIdSx, + addressSx, + agentButtonBoxSx, + imagesBoxSx, + imageItemSx, + imageIconSx, + mapStyleSx, + statusTextSx, + // dateStyleSx, +} from "../../styles/SearchPropertyCards/PropertyCardStyle"; + +import { mapBox } from "../../styles/SearchPropertyMap/PropertyMapPreviewStyle"; +import type { Document, GISData } from "../../models/GetAllProperties"; +import DocumentPreview from "./DocumentPreview"; +import { isImage } from "../../utils/isImage"; +import { useNavigate } from "react-router-dom"; +import TextButton from "../SearchPropertyButtons/TextButton"; +import { MapLibreMap } from "../SearchPropertyMap/SearchPropertyMapComponent"; + +// Props for the PropertyCard component +interface PropertyCardProps { + propertyName: string; // Name of the property + propertyId: string; // Unique property identifier + address: string; // Property address + ward: string; // Ward name or number + zone: string; // Zone name or number + agentId: string; // ID of the assigned agent + agentName?: string; // Name of the assigned agent (optional) + agentUsername?: string; // Username of the agent (optional) + images?: Document[]; // Array of document/image objects (optional) + location: GISData; // Location data for the property + createdDate: string; // Date the property was created + uniqueId: string; // Unique ID for navigation + status: string; // Current status of the property + onClick?: (propertyId: string) => void; // Optional click handler +} + +// Functional component for displaying a property card with details, agent, images, and map +const PropertyCard: React.FC = ({ + uniqueId, + propertyName, + propertyId, + address, + ward, + zone, + agentName = "Unassigned", + agentUsername = "", + images = [], + location, + status, + // createdDate, +}) => { + // Only preview the first two documents/images if available + const docsToPreview = images ? images.slice(0, 2) : []; + // React Router navigation hook + const navigate = useNavigate(); + + /** + * Determine map location with fallback priority: + * 1. location.Coordinates[0] if available + * 2. location.Latitude and location.Longitude if available + * 3. Default to Bangalore coordinates + */ + const mapLocation = React.useMemo(() => { + // Check Coordinates array first + if ( + location?.Coordinates && + Array.isArray(location.Coordinates) && + location.Coordinates.length > 0 && + location.Coordinates[0]?.Latitude != null && + location.Coordinates[0]?.Longitude != null + ) { + return { + lat: location.Coordinates[0].Latitude, + lng: location.Coordinates[0].Longitude, + }; + } + + // Check direct Latitude/Longitude properties + if ( + location?.Latitude != null && + location?.Longitude != null + ) { + return { + lat: location.Latitude, + lng: location.Longitude, + }; + } + + // Default to Bangalore + return { lat: 12.9141, lng: 77.6387 }; + }, [location]); + + return ( + + {/* Article icon for visual indication */} + + + + + {/* Property details section (clickable for navigation) */} + navigate(`/service-manager/property-details/${uniqueId}`)} + sx={detailsBoxSx} + > + + {propertyName} + + + + {propertyId} + + {/* Status button */} + + + + {address}  ·  {ward}  ·  {zone} + + {/* Agent button section */} + + + + + + {/* Images and map preview section */} + + {/* Preview up to two document images */} + {docsToPreview.length > 0 && docsToPreview.map((doc, idx) => ( + + + + ))} + + {/* Map preview for the property location */} + {/* + + */} + + + + + + ); +}; + +export default PropertyCard; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyCards/PropertyCardList.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyCards/PropertyCardList.tsx new file mode 100644 index 0000000..a4c6d75 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyCards/PropertyCardList.tsx @@ -0,0 +1,266 @@ +// This file defines the PropertyCardList component, which displays a paginated list of property cards +// with filtering, searching, sorting, and agent enrichment. It fetches property and agent data, +// applies search and sort logic, and renders each property using the PropertyCard component. + +import React, { useState, useEffect, useMemo } from "react"; +import { Alert, Box } from "@mui/material"; +import PaginationControls from "../../../../../components/Pagination/PaginationControls"; +import { useGetAllPropertiesUnderJurisdictionQuery } from "../../api/getAllPropertiesApi"; +import { propertyCardListSx } from "../../styles/SearchPropertyCards/PropertyCardListStyle"; +import PropertyCard from "./PropertyCard"; +import { useDebouncedValue } from "../../utils/debounce"; +import { useGetAllAgentsQuery } from "../../api/getAllAgentsApi"; +import { useNavigate } from "react-router-dom"; +import { useGetApplicationsBySearchQuery } from "../../api/searchFilterApi"; +import { FILTER_PARAM_MAP } from "../../utils/constants"; +import { sortProperties } from "../../utils/sortProperties"; +import type { RootState } from "../../../../../../store"; +import { useSelector } from "react-redux"; + +const PAGE_SIZE = 5; // Number of properties per page + +// Props for the PropertyCardList component +interface PropertyCardListProps { + selectedFilter: string; // The current filter type (e.g., Zone, Ward) + searchValue: string; // The current search input value + selectedSort: string; // The current sort option +} + +// Functional component for displaying a paginated, searchable, and sortable list of property cards +const PropertyCardList: React.FC = ({ + selectedFilter, + searchValue, + selectedSort, +}) => { + const [page, setPage] = useState(1); // Current page number + const navigate = useNavigate(); // React Router navigation hook + + // Debounce the search value to avoid rapid API calls + const debouncedSearchValue = useDebouncedValue(searchValue, 500); + const getSearchValue = debouncedSearchValue; + + // Get the currently selected zone and wards from Redux store + const selectedZone = useSelector( + (state: RootState) => state.user.selectedZone + ); + + // Fetch all agents for enrichment + const { data: agentsData, isLoading: agentsLoading } = useGetAllAgentsQuery(); + + // Fetch properties under the selected jurisdiction (zone/wards) + const { + data: zoneBasedData, + isError: isZoneError, + isLoading: isZoneLoading, + isFetching: isZoneFetching, + } = useGetAllPropertiesUnderJurisdictionQuery({ + page: page -1, + size: PAGE_SIZE, + zoneNo: selectedZone?.zoneNumber ?? "", + wardNos: selectedZone?.wards ?? [], + }); + + // Extract assigned zone and wards for filtering + const assignedZoneNo = selectedZone?.zoneNumber ?? ""; + const assignedWards = selectedZone?.wards ?? []; + + let filteredZoneNo = assignedZoneNo; + let filteredWardNos = assignedWards; + + // If searching by Ward, only include the searched ward if assigned + if (selectedFilter === "Ward" && getSearchValue.trim() !== "") { + filteredWardNos = assignedWards.filter((w) => w === getSearchValue.trim()); + } + + // If searching by Zone, check if it's the assigned zone + if (selectedFilter === "Zone" && getSearchValue.trim() !== "") { + if (assignedZoneNo === getSearchValue.trim()) { + filteredZoneNo = getSearchValue.trim(); + filteredWardNos = assignedWards; + } else { + filteredZoneNo = ""; + filteredWardNos = []; + } + } + + // Determine if search API should be used based on filter and input + let shouldUseSearch = getSearchValue.trim() !== ""; + + if (selectedFilter === "Zone" && getSearchValue.trim() !== "") { + shouldUseSearch = filteredZoneNo !== "" && filteredWardNos.length > 0; + } + + if (selectedFilter === "Ward" && getSearchValue.trim() !== "") { + shouldUseSearch = filteredWardNos.length > 0; + } + + let apiSearchValue = getSearchValue; +if (selectedFilter === "Agent name" && getSearchValue.trim() !== "" && agentsData?.data?.users) { + const agent = agentsData.data.users.find( + (a) => a.profile?.fullName?.toLowerCase() === getSearchValue.trim().toLowerCase() + ); + apiSearchValue = agent ? agent.id : ""; // Pass agent ID or empty string if not found +} + + // Map filter type to API parameter + const searchText = FILTER_PARAM_MAP[selectedFilter] || "propertyNo"; + + // Fetch properties using the search API if needed + const { + data: searchData, + isLoading: isSearchLoading, + isError: isSearchError, + isFetching: isSearchFetching, + } = useGetApplicationsBySearchQuery( + { + searchText, + searchValue: apiSearchValue, + zoneNo: filteredZoneNo, + wardNos: filteredWardNos, + page: page - 1, // backend is usually 0-indexed + size: PAGE_SIZE, + }, + { skip: !shouldUseSearch } + ); + + // Choose which data to display: search results or zone-based data + const data = shouldUseSearch ? searchData : zoneBasedData; + const isLoading = shouldUseSearch ? isSearchLoading : isZoneLoading; + const isError = shouldUseSearch ? isSearchError : isZoneError; + const isFetching = shouldUseSearch ? isSearchFetching : isZoneFetching; + + // Create a mapping from agent ID to agent name for quick lookup + const agentIdToName = useMemo(() => { + const map: Record = {}; + if (agentsData?.data?.users) { + agentsData.data.users.forEach((agent) => { + map[agent.id] = agent.profile?.fullName || "Unassigned"; + }); + } + return map; + }, [agentsData]); + + // Create a mapping from agent ID to agent username + const agentIdToUsername = useMemo(() => { + const map: Record = {}; + if (agentsData?.data?.users) { + agentsData.data.users.forEach((agent) => { + map[agent.id] = agent?.username || ""; + }); + } + return map; + }, [agentsData]); + + // Enrich each property with agent name and username + const enrichedProperties = useMemo(() => { + return (data?.data || []).map((property) => ({ + ...property, + AgentName: agentIdToName[property.AssignedAgent ?? ""] || "Unassigned", + AgentUsername: agentIdToUsername[property.AssignedAgent ?? ""] || "", + })); + }, [data, agentIdToName, agentIdToUsername]); + + // Apply sorting to the enriched properties + const sortedProperties = useMemo(() => { + return sortProperties(enrichedProperties, selectedSort); + }, [enrichedProperties, selectedSort]); + + const totalPages = data?.pagination?.totalPages || 1; + // Get the data for the current page (no slicing for search) + const paginatedData = sortedProperties; + + // Reset to first page when filter, search, or sort changes + useEffect(() => { + setPage(1); + }, [selectedFilter, debouncedSearchValue, selectedSort]); + + // Show loading or error alerts as needed + if (isFetching || agentsLoading) + return ( + + Loading page... + + ); + if (isLoading) + return ( + + Loading... + + ); + if (isError) + return ( + + Error loading properties. + + ); + + // Handle card click to navigate to property details + const handleCardClick = (applicationId: string) => { + navigate(`/service-manager/property-details/${applicationId}`); + }; + + return ( + + {/* List of property cards or a message if none found */} + + {paginatedData.length === 0 ? ( + + No properties found. + + ) : ( + paginatedData.map((property) => ( + handleCardClick(property.ID)} + /> + )) + )} + + + {/* Pagination controls for navigating pages */} + {totalPages > 1 && + + } + + ); +}; + +export default PropertyCardList; diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyHeader/SearchBar/FilterDropdown.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyHeader/SearchBar/FilterDropdown.tsx new file mode 100644 index 0000000..af227ac --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyHeader/SearchBar/FilterDropdown.tsx @@ -0,0 +1,36 @@ +// This file defines the FilterDropdown component, which renders a dropdown for selecting a filter option +// in the property search bar. It uses the CustomDropdown component and passes filter options and styles. + +import React from "react"; +import CustomDropdown from "../../SearchPropertyButtons/CustomDropdown"; +import { + filterButtonSx, + filterMenuPaperSx, + filterMenuItemSx, +} from "../../../styles/SearchPropertyHeader/SearchBar/FilterDropdownStyle"; +import { FILTER_OPTIONS } from "../../../utils/constants"; + +// Props for the FilterDropdown component +interface FilterDropdownProps { + selectedFilter: string; // Currently selected filter value + onFilterChange: (filter: string) => void; // Callback when filter changes +} + +// Functional component for displaying a filter dropdown in the search bar +const FilterDropdown: React.FC = ({ + selectedFilter, + onFilterChange, +}) => ( + +); + +export default FilterDropdown; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyHeader/SearchBar/SearchBar.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyHeader/SearchBar/SearchBar.tsx new file mode 100644 index 0000000..c8aecde --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyHeader/SearchBar/SearchBar.tsx @@ -0,0 +1,72 @@ +// This file defines the SearchBar component, which provides a filter dropdown, search input, and sort dropdown +// for searching and sorting properties in the property search UI. + +import { Box, TextField, InputAdornment } from "@mui/material"; +import SearchIcon from "@mui/icons-material/Search"; +import React from "react"; +import FilterDropdown from "./FilterDropdown"; +import SortDropdown from "./SortDropdown"; +import { + searchBarContainerSx, + searchFieldSx, + iconSx +} from "../../../styles/SearchPropertyHeader/SearchBar/SearchBarStyle"; + +// Props for the SearchBar component +interface SearchBarProps { + selectedFilter: string; // Currently selected filter value + onFilterChange: (filter: string) => void; // Callback when filter changes + searchValue: string; // Current search input value + onSearchChange: (value: string) => void; // Callback when search input changes + selectedSort: string; // Currently selected sort value + onSortChange: (sort: string) => void; // Callback when sort option changes +} + +// Functional component for displaying the search bar with filter, search, and sort controls +const SearchBar: React.FC = ({ + selectedFilter, + onFilterChange, + searchValue, + onSearchChange, + selectedSort, + onSortChange, +}) => { + // Handle changes in the search input field + const handleSearchChange = (event: React.ChangeEvent) => { + onSearchChange(event.target.value); + }; + + return ( + + {/* Dropdown for selecting the filter type */} + + {/* Search input field with search icon */} + + + + ), + "aria-label": "property search" + }} + /> + {/* Dropdown for selecting the sort option */} + + + ); +}; + +export default SearchBar; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyHeader/SearchBar/SortDropdown.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyHeader/SearchBar/SortDropdown.tsx new file mode 100644 index 0000000..c83c2b6 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyHeader/SearchBar/SortDropdown.tsx @@ -0,0 +1,37 @@ +// This file defines the SortDropdown component, which renders a dropdown for selecting the sort order +// in the property search bar. It uses the CustomDropdown component and passes sort options and styles. + +import React from "react"; +import CustomDropdown from "../../SearchPropertyButtons/CustomDropdown"; +import { sortButtonSx } from "../../../styles/SearchPropertyHeader/SearchBar/SortDropdownStyle"; + +// List of available sort options +const SORT_OPTIONS = [ + "New - Old", + "Old - New" +]; + +// Props for the SortDropdown component +interface SortDropdownProps { + selectedSort: string; // Currently selected sort value + onSortChange: (sort: string) => void; // Callback when sort option changes +} + +// Functional component for displaying a sort dropdown in the search bar +const SortDropdown: React.FC = ({ + selectedSort, + onSortChange +}) => { + return ( + + ); +}; + +export default SortDropdown; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyHeader/SearchPropertyHeader.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyHeader/SearchPropertyHeader.tsx new file mode 100644 index 0000000..db44867 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyHeader/SearchPropertyHeader.tsx @@ -0,0 +1,53 @@ +// This file defines the SearchPropertyHeader component, which displays the title, subtitle, +// and the search bar for searching and filtering properties in the UI. + +import { Box, Typography } from "@mui/material"; +import SearchBar from "./SearchBar/SearchBar"; +import React from "react"; +import { + containerSx, + titleSx, + subtitleSx, +} from "../../styles/SearchPropertyHeader/SearchPropertyHeaderStyle"; + +// Props for the SearchPropertyHeader component +interface Props { + selectedFilter: string; // Currently selected filter value + onFilterChange: (filter: string) => void; // Callback when filter changes + searchValue: string; // Current search input value + onSearchChange: (text: string) => void; // Callback when search input changes + selectedSort: string; // Currently selected sort value + onSortChange: (sort: string) => void; // Callback when sort option changes +} + +// Functional component for displaying the property search header with title, subtitle, and search bar +const SearchPropertyHeader: React.FC = ({ + selectedFilter, + onFilterChange, + searchValue, + onSearchChange, + selectedSort, + onSortChange, +}) => { + return ( + + {/* Main title for the property search section */} + Search Property + {/* Subtitle for additional context */} + Search and filter properties + {/* Spacer for layout */} + + {/* Search bar with filter, search, and sort controls */} + + + ); +}; + +export default SearchPropertyHeader; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyMap/PropertyMapPreview.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyMap/PropertyMapPreview.tsx new file mode 100644 index 0000000..6d538de --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyMap/PropertyMapPreview.tsx @@ -0,0 +1,55 @@ +// This file defines the PropertyMapPreview component, which displays a static map preview +// with a marker at the given property location using react-leaflet and OpenStreetMap tiles. + +import { MapContainer, TileLayer, Marker } from "react-leaflet"; +import L from "leaflet"; +import pointer from '../../assets/Proptery one.svg'; +import { v4 as uuidv4 } from 'uuid'; + +// Props for the PropertyMapPreview component +interface PropertyMapPreviewProps { + location: { + lat: number; // Latitude of the property + lng: number; // Longitude of the property + }; + style?: React.CSSProperties; // Optional custom styles for the map container + mapkey?: string; // Optional unique key for the map instance +} + +// Custom marker icon for the property location +const markerIcon = new L.Icon({ + iconUrl: pointer, + iconSize: [32, 32], + iconAnchor: [16, 32], + popupAnchor: [0, -32], +}); + +// Functional component for displaying a static map preview with a marker +const PropertyMapPreview: React.FC = ({ location, style }) => { + return( + + {/* OpenStreetMap tile layer for map background */} + + {/* Marker at the property location */} + + + ); +}; + +export default PropertyMapPreview; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyMap/SearchPropertyMap.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyMap/SearchPropertyMap.tsx new file mode 100644 index 0000000..ab3bfeb --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyMap/SearchPropertyMap.tsx @@ -0,0 +1,142 @@ +// This file defines the SearchPropertyMap component, which displays a Leaflet map preview +// with a marker at a fixed location. The map can be toggled between interactive and static modes. + +import { useRef, useEffect, useState } from 'react'; +import { Box } from '@mui/material'; +import L from "leaflet"; +import 'leaflet/dist/leaflet.css'; +import markerIcon2x from 'leaflet/dist/images/marker-icon-2x.png'; +import markerIcon from 'leaflet/dist/images/marker-icon.png'; +import markerShadow from 'leaflet/dist/images/marker-shadow.png'; +import { + mapComponentOuterStyle, + mapWrapperContainerStyle, + mapDivStyle, + mapOverlayStyle +} from '../../styles/SearchPropertyMap/SearchPropertyMapStyle'; +import propertyMarkerIcon from '../../assets/Proptery one.svg'; + +const customIcon = L.icon({ + iconUrl: propertyMarkerIcon, + iconSize: [40, 40], // Adjust size as needed + iconAnchor: [20, 40], // Adjust anchor so the tip points to the location + popupAnchor: [0, -40], +}); + +// Configure default marker icons for Leaflet +delete (L.Icon.Default.prototype as any)._getIconUrl; +L.Icon.Default.mergeOptions({ + iconRetinaUrl: markerIcon2x, + iconUrl: markerIcon, + shadowUrl: markerShadow, +}); + +// MapWrapper renders the actual Leaflet map and manages its interactivity +function MapWrapper({ interactive }: { interactive: boolean }) { + const mapRef = useRef(null); // Ref to the map container div + const mapInstance = useRef(null); // Ref to the Leaflet map instance + + useEffect(() => { + if (!mapRef.current) return; + + // Clean up existing map instance if present + if (mapInstance.current) { + mapInstance.current.remove(); + mapInstance.current = null; + } + + // Clear the map container + mapRef.current.innerHTML = ''; + + const center: [number, number] = [12.9141, 77.6387]; // Default center (Bangalore) + + // Create the Leaflet map + const map = L.map(mapRef.current, { + zoomControl: false, + attributionControl: false, + preferCanvas: false, + renderer: L.svg() + }).setView(center, 15); + + mapInstance.current = map; + + // Add OpenStreetMap tile layer + L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { + attribution: '© OpenStreetMap contributors', + maxZoom: 19, + tileSize: 256, + zoomOffset: 0, + detectRetina: true + }).addTo(map); + + // Add a marker at the center + L.marker(center, { icon: customIcon }).addTo(map);L.marker(center, { icon: customIcon }).addTo(map).bindPopup('Gandhi Nagar Complex'); + + // Enable or disable map interactions based on the prop + if (!interactive) { + map.dragging.disable(); + map.scrollWheelZoom.disable(); + map.doubleClickZoom.disable(); + map.boxZoom.disable(); + map.keyboard.disable(); + map.touchZoom.disable(); + if ((map as any).tap) (map as any).tap.disable(); + } else { + map.dragging.enable(); + map.scrollWheelZoom.enable(); + map.doubleClickZoom.enable(); + map.boxZoom.enable(); + map.keyboard.enable(); + map.touchZoom.enable(); + if ((map as any).tap) (map as any).tap.enable(); + } + + // Force map to resize and re-render after mount/layout changes + const resizeMap = () => { + if (mapInstance.current) { + mapInstance.current.invalidateSize(true); + } + }; + setTimeout(resizeMap, 50); + setTimeout(resizeMap, 200); + setTimeout(resizeMap, 500); + + // Cleanup on unmount + return () => { + if (mapInstance.current) { + mapInstance.current.remove(); + mapInstance.current = null; + } + }; + }, [interactive]); + + return ( + + ); +} + +// Main component for displaying the map with an overlay to toggle interactivity +const SearchPropertyMap = () => { + const [interactive, setInteractive] = useState(false); // State to control map interactivity + + return ( + + + + {/* Overlay to activate map interactivity on click */} + {!interactive && ( + setInteractive(true)} + title="Click to activate map" + /> + )} + + + ); +}; + +export default SearchPropertyMap; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyMap/SearchPropertyMapComponent.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyMap/SearchPropertyMapComponent.tsx new file mode 100644 index 0000000..61fc522 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/components/SearchPropertyMap/SearchPropertyMapComponent.tsx @@ -0,0 +1,154 @@ +import React, { useEffect, useRef, useState } from 'react'; +import maplibregl from 'maplibre-gl'; +import 'maplibre-gl/dist/maplibre-gl.css'; +import { Box, CircularProgress, type SxProps } from '@mui/material'; +import type { Theme } from '@emotion/react'; + +interface MapLibreMapProps { + latitude: number; + longitude: number; + width?: string; + height?: string; + borderRadius?: string; + zoom?: number; + style?: SxProps; +} + +export const MapLibreMap: React.FC = ({ + latitude, + longitude, + width = '96px', + height = '74px', + borderRadius = '8px', + zoom = 24, + style, +}) => { + const containerRef = useRef(null); + const mapInstanceRef = useRef(null); + const markerRef = useRef(null); // Added marker ref + const [isLoaded, setIsLoaded] = useState(false); + const [isInView, setIsInView] = useState(false); + + // Intersection Observer to detect when the map is in the viewport + useEffect(() => { + if (!containerRef.current) return; + + const observer = new IntersectionObserver( + (entries) => { + entries.forEach((entry) => { + if (entry.isIntersecting) { + setIsInView(true); + } + }); + }, + { threshold: 0.1 } + ); + + observer.observe(containerRef.current); + + return () => { + observer.disconnect(); + }; + }, []); + + // Initialize the map when it is in view + useEffect(() => { + if (!containerRef.current || !isInView || mapInstanceRef.current) return; + + const mapInstance = new maplibregl.Map({ + container: containerRef.current!, + center: [longitude, latitude], + zoom: zoom, + interactive: false, + attributionControl: false, + style: { + version: 8, + sources: { + 'raster-tiles': { + type: 'raster', + tiles: ['https://tile.openstreetmap.org/{z}/{x}/{y}.png'], + tileSize: 256, + attribution: '© OpenStreetMap contributors', + }, + }, + layers: [ + { + id: 'simple-tiles', + type: 'raster', + source: 'raster-tiles', + minzoom: 0, + maxzoom: 24, + }, + ], + }, + }); + + mapInstanceRef.current = mapInstance; + + mapInstance.on('load', () => { + // Add marker when map loads + const marker = new maplibregl.Marker({ + color: '#000000', // Black marker (you can customize the color) + scale: 0.65, + }) + .setLngLat([longitude, latitude]) + .addTo(mapInstance); + + markerRef.current = marker; + setIsLoaded(true); + }); + + return () => { + // Clean up marker + if (markerRef.current) { + markerRef.current.remove(); + markerRef.current = null; + } + // Clean up map + if (mapInstanceRef.current) { + mapInstanceRef.current.remove(); + mapInstanceRef.current = null; + } + }; + }, [isInView, latitude, longitude, zoom]); + + // Update marker position when coordinates change + useEffect(() => { + if (mapInstanceRef.current && markerRef.current) { + mapInstanceRef.current.setCenter([longitude, latitude]); + markerRef.current.setLngLat([longitude, latitude]); + } + }, [latitude, longitude]); + + return ( + +
+ {!isLoaded && ( + + + + )} + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/models/GetAllProperties.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/models/GetAllProperties.ts new file mode 100644 index 0000000..6a493b3 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/models/GetAllProperties.ts @@ -0,0 +1,195 @@ +// This file defines TypeScript interfaces for property, application, and related data models +// used in the property search and management features. + +// Represents details of a single floor in a property +export interface FloorDetail { + ID: string; + FloorNo: number; + Classification: string; + NatureOfUsage: string; + FirmName: string; + OccupancyType: string; + OccupancyName: string; + constructionDate: string; + effectiveFromDate: string; + UnstructuredLand: string; + LengthFt: number; + BreadthFt: number; + PlinthAreaSqFt: number; + BuildingPermissionNo: string; + FloorDetailsEntered: boolean; + ConstructionDetailsID: string; + CreatedAt: string; + UpdatedAt: string; +} + +// Represents construction details for a property, including all floors +export interface ConstructionDetails { + ID: string; + FloorType: string; + WallType: string; + RoofType: string; + WoodType: string; + PropertyID: string; + FloorDetails: FloorDetail[]; + CreatedAt: string; + UpdatedAt: string; +} + +// Represents a single GIS coordinate (latitude/longitude) +export interface GISCoordinate { + ID: string; + Latitude: number; + Longitude: number; + GISDataID: string; + CreatedAt: string; +} + +// Represents GIS data for a property, including all coordinates +export interface GISData { + ID: string; + Source: string; + Type: string; + EntityType: string; + PropertyID: string; + Coordinates: GISCoordinate[]; + CreatedAt: string; + UpdatedAt: string; + Latitude: number; + Longitude:number; +} + +// Represents a document associated with a property +export interface Document { + ID: string; + PropertyID: string; + DocumentType: string; + DocumentName: string; + FileStoreID: string | null; + UploadDate: string; +} + +// Represents the address details of a property +export interface Address { + ID: string; + Locality: string; + ZoneNo: string; + WardNo: string; + BlockNo: string; + Street: string; + ElectionWard: string; + SecretariatWard: string; + PinCode: number; + DifferentCorrespondenceAddress: boolean; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; +} + +// Represents assessment details for a property +export interface AssessmentDetails { + ID: string; + PropertyID: string; + ExtentOfSite: string; + IsLandUnderneathBuilding: string; + IsUnspecifiedShare: boolean; + OccupancyCertificateDate: string; + OccupancyCertificateNumber: string; + ReasonOfCreation: string; + CreatedAt: string; + UpdatedAt: string; +} + +// Represents an amenity available at a property +export interface Amenity { + ID: string; + Type: string; + Description: string; + ExpiryDate: string; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; +} + +// Represents additional details for a property, including amenities, certifications, and security +export interface AdditionalDetails { + ID: string; + FieldName: string; + fieldValue: { + amenities: string[]; + certification: { + earthquake_resistant: boolean; + fire_safety: string; + green_building: boolean; + }; + construction_year: number; + elevator: boolean; + floors: number; + security: { + access_control: string; + cctv: boolean; + guard: string; + }; + units_per_floor: number; + }; + PropertyID: string; + CreatedAt: string; + UpdatedAt: string; +} + +// Represents all property details, including address, amenities, construction, and documents +export interface PropertyDetails { + ID: string; + PropertyNo: string; + OwnershipType: string; + PropertyType: string; + ComplexName: string; + Address: Address | null; + AssessmentDetails: AssessmentDetails | null; + Amenities: Amenity[]; + ConstructionDetails: ConstructionDetails | null; + AdditionalDetails: AdditionalDetails | null; + GISData: GISData | null; + CreatedAt: string; + UpdatedAt: string; + Documents: Document[]; +} + +// Represents a single property application (used in lists) +export interface AllApplicationModel { + ID: string; + ApplicationNo: string; + PropertyID: string; + Priority: string; + TenantID: string; + DueDate: string; + AssignedAgent: string | null; + Status: string; + WorkflowInstanceID: string; + AppliedBy: string; + AssesseeID: string | null; + Property: PropertyDetails; + ApplicationLogs: any[]; + IsDraft: boolean; + CreatedAt: string; + UpdatedAt: string; +} + +// Request structure for fetching all properties (with pagination) +export interface GetAllPropertiesRequest { + page?: number; + size?: number; +} + +// Response structure for fetching all properties (with pagination and metadata) +export interface GetAllPropertiesResponse { + data: AllApplicationModel[]; + message: string; + pagination: { + page: number; + size: number; + totalItems: number; + totalPages: number; + }; + success: boolean; +} diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/models/PropertyModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/models/PropertyModel.ts new file mode 100644 index 0000000..5da4313 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/models/PropertyModel.ts @@ -0,0 +1,20 @@ +// This file defines the Property interface, representing a simplified property model +// used for displaying property cards or lists in the UI. + +// Represents a property with basic details for display +export interface Property { + id: number; + propertyName: string; + propertyId: string; + address: string; + ward: string; + zone: string; + agentName: string; + images: string[]; + mapImageUrl?: string; + // Geographic location of the property (latitude/longitude) + location: { + lat: number, + lng: number + } +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/models/agentModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/models/agentModel.ts new file mode 100644 index 0000000..f7d4102 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/models/agentModel.ts @@ -0,0 +1,60 @@ +// This file defines TypeScript interfaces for agent-related data models used in the property search feature. + +// Represents the address details of an agent +export interface AgentAddress { + addressLine1: string; + addressLine2: string; + city: string; + state: string; + pinCode: string; +} + +// Represents the profile information of an agent +export interface AgentProfile { + firstName: string; + lastName: string; + fullName: string; + phoneNumber: string; + adhaarNo: number; + gender: string; + guardian: string; + guardianType: string; + dateOfBirth: string; + address: AgentAddress; + department: string; + designation: string; + workLocation: string; + profilePicture: string; + relationshipToProperty: string; + ownershipShare: number; + isPrimaryOwner: boolean; + isVerified: boolean; +} + +// Represents a user who is an agent +export interface AgentUser { + id: string; + username: string; + email: string; + role: string; + isActive: boolean; + ward: string; + preferred_language: string; + createdDate: string; + updatedDate: string; + createdBy?: string; + updatedBy?: string; + profile: AgentProfile; +} + +// Represents the response structure for fetching agents +export interface GetAgentsResponse { + success: boolean; + message?: string; + data: { + users: AgentUser[]; + TotalCount: number; + Limit: number; + Offset: number; + }; +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyButtons/AgentButtonStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyButtons/AgentButtonStyle.ts new file mode 100644 index 0000000..88029a2 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyButtons/AgentButtonStyle.ts @@ -0,0 +1,24 @@ +// This file defines style objects for the AgentButton and its icon +// used in the property search feature for consistent appearance. + +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the AgentButton component +export const agentButtonSx: SxProps = { + background: "#FBEEE8", + color: "#222", + fontWeight: 500, + fontSize: 12, + borderRadius: "10px", + px: 2, + py: 0.5, + textTransform: "none", + boxShadow: "none", + minWidth: 0, + border: "1px solid black", +}; + +// Styles for the agent icon inside the button +export const agentIconSx: SxProps = { + fontSize: 20, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyButtons/TextButtonStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyButtons/TextButtonStyle.ts new file mode 100644 index 0000000..e75edbd --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyButtons/TextButtonStyle.ts @@ -0,0 +1,23 @@ +// This file defines the style object for the created date text button +// used in the property search feature for consistent button appearance. + +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the created date button +export const createdDateButtonSx: SxProps = { + width:"100px", + backgroundColor: "#ffffff", + color: "black", + borderRadius: "10px", + height: "20px", + fontSize: 14, + fontWeight: 500, + textTransform: "none", + border: "1.5px solid #222", + boxShadow: "none", + px: 2, + "&:hover": { + backgroundColor: "#f5f5f5", + borderColor: "#222", + }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyButtons/ViewLocationButtonStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyButtons/ViewLocationButtonStyle.ts new file mode 100644 index 0000000..54b35aa --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyButtons/ViewLocationButtonStyle.ts @@ -0,0 +1,24 @@ +// This file defines style objects for the ViewLocationButton and its icon +// used in the property search feature for consistent button appearance. + +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the View Location button +export const viewLocationButtonSx: SxProps = { + background: "#FBEEE8", + color: "#222", + fontWeight: 500, + fontSize: 15, + borderRadius: "10px", + border: "none", + px: 2, + py: 0.5, + textTransform: "none", + boxShadow: "none", + minWidth: 0, +}; + +// Styles for the icon inside the View Location button +export const viewLocationIconSx: SxProps = { + fontSize: 18, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyCards/PropertyCardListStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyCards/PropertyCardListStyle.ts new file mode 100644 index 0000000..164f768 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyCards/PropertyCardListStyle.ts @@ -0,0 +1,30 @@ +// This file defines the style object for the property card list container +// used to style the list of property cards in the property search feature. + +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the property card list container +export const propertyCardListSx: SxProps = { + height: "auto", + overflowY: "auto", + background: "#E5E5E5", + borderRadius: "0", + py: 0, + pl: 0, + pr: 0, + // mx: 4, + display: "flex", + flexDirection: "column", + gap: 3, + '&::-webkit-scrollbar': { + width: '6px', + background: 'transparent', + }, + '&::-webkit-scrollbar-thumb': { + background: '#c84c03', + borderRadius: '10px', + }, + '&::-webkit-scrollbar-button': { + display: 'none', + }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyCards/PropertyCardStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyCards/PropertyCardStyle.ts new file mode 100644 index 0000000..5a97232 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyCards/PropertyCardStyle.ts @@ -0,0 +1,134 @@ +// This file defines style objects for the property card and its subcomponents +// used to style the property card UI in the property search feature. + +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the main property card container +export const cardBoxSx: SxProps = { + position: "relative", + background: "#f5f5f5", + borderRadius: "20px", + border: "1px solid rgba(0,0,0,0.2)", + px: 3, + py: 2, + // minHeight: 170, + display: "grid", + gridTemplateColumns: "auto 1fr 1fr", +}; + +// Styles for the details section of the card +export const detailsBoxSx: SxProps = { + display: "flex", + flexDirection: "column", + justifyContent: "flex-start", + ml: 2, +}; + +// Styles for the title row (property name and status) +export const titleRowSx: SxProps = { + display: "flex", + alignItems: "center", + gap: 1, + mb: 0, + pb: 0, +}; + +// Styles for the article icon on the card +export const articleIconSx: SxProps = { + fontSize: 28, + color: "black", + mr: 0.5, + pb: 0, +}; + +// Styles for the property name text +export const propertyNameSx: SxProps = { + fontSize: 20, + fontWeight: 600, + color: "rgba(0, 0, 0, 0.6)", +}; + +// Styles for the property ID text +export const propertyIdSx: SxProps = { + fontSize: 16, + color: "rgba(0, 0, 0)", + mb: 0.5, + fontWeight: 300, + pt: 0, +}; + +// Styles for the address text +export const addressSx: SxProps = { + fontSize: 14, + color: "rgba(0, 0, 0)", + fontWeight: 500, + mb: 0, +}; + +// Styles for the agent button container +export const agentButtonBoxSx: SxProps = { + mt: 0.5, +}; + +// Styles for each image/document preview item +export const imageItemSx: SxProps = { + width: 115, + // height: "75%", + height: 100, + background: "rgba(217,217,217,0.2)", + borderRadius: "0", + display: "flex", + alignItems: "center", + justifyContent: "center", + boxShadow: "0 1px 4px rgba(0,0,0,0.05)", +}; + +// Styles for the icon shown in image/document preview +export const imageIconSx: SxProps = { + fontSize: 36, + color: "#888", +}; + +// Styles for the map preview box +export const mapStyleSx = { + width: '150px', + height: '100%', + borderRadius: '8px', +}; + +// Styles for the date text +export const dateStyleSx = { + p:0, + m:0, + fontSize:12, + fontWeight:400, +} + +// Styles for the images/documents container +export const imagesBoxSx: SxProps = { + display:"flex", + flexDirection:"row", + alignItems:"end", + justifyContent:"flex-end", + gap:2 +}; + +// Styles for the status text/button +export const statusTextSx: SxProps = { + backgroundColor: "#ffffff", + color: "#c84c03", + borderRadius: "30px", + height: "15px", + fontSize: 10, + fontWeight: 400, + textTransform: "none", + border: "1.5px solid #c84c03", + boxShadow: "none", + px: 2, + py: 1, + mb:0.5, + "&:hover": { + backgroundColor: "#f5f5f5", + borderColor: "#c84c03", + }, +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyHeader/SearchBar/FilterDropdownStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyHeader/SearchBar/FilterDropdownStyle.ts new file mode 100644 index 0000000..0c6ec6c --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyHeader/SearchBar/FilterDropdownStyle.ts @@ -0,0 +1,42 @@ +// This file defines style objects for the filter dropdown button and menu +// used in the property search bar for consistent appearance and behavior. + +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the filter dropdown button +export const filterButtonSx: SxProps = { + borderRadius: "20px", + backgroundColor: "#a3c7d7", + color: "#222", + textTransform: "none", + fontWeight: 500, + fontSize: 18, + padding: "8px 32px", + minWidth: "180px", + height: "48px", + border: "none", + cursor: "pointer", + "&:hover": { + backgroundColor: "#90b4c6", + }, +}; + +// Styles for the dropdown menu paper (container) +export const filterMenuPaperSx: SxProps = { + borderRadius: "16px", + boxShadow: "0 2px 8px rgba(0,0,0,0.07)", + minWidth: "180px", + background: "#f7f7f7", +}; + +// Styles for each menu item in the dropdown +export const filterMenuItemSx: SxProps = { + fontSize: 16, + color: "#222", + padding: "10px 24px", + fontWeight: 400, + "&:hover": { + backgroundColor: "#e3e3e3", + color: "#0b4b66", + }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyHeader/SearchBar/SearchBarStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyHeader/SearchBar/SearchBarStyle.ts new file mode 100644 index 0000000..49f59b8 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyHeader/SearchBar/SearchBarStyle.ts @@ -0,0 +1,38 @@ +// This file defines style objects for the search bar, search field, and search icon +// used in the property search header for consistent appearance and layout. + +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the search bar container +export const searchBarContainerSx: SxProps = { + display: "flex", + alignItems: "center", + gap: "24px", +}; + +// Styles for the search input field +export const searchFieldSx: SxProps = { + flex: 1, + "& .MuiOutlinedInput-root": { + borderRadius: "40px", + background: "#fafafa", + fontSize: "22px", + height: "48px", + boxShadow: "0 2px 8px rgba(0,0,0,0.07)", + paddingLeft: "4px", + }, + "& .MuiOutlinedInput-input": { + fontSize: "18px", + padding: "10px 16px", + }, + "& .MuiOutlinedInput-notchedOutline": { + border: "none", + }, +}; + +// Styles for the search icon +export const iconSx: SxProps = { + color: "#222", + cursor: "pointer", + fontSize: 24, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyHeader/SearchBar/SortDropdownStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyHeader/SearchBar/SortDropdownStyle.ts new file mode 100644 index 0000000..36359aa --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyHeader/SearchBar/SortDropdownStyle.ts @@ -0,0 +1,27 @@ +// This file defines the style object for the sort dropdown button +// used in the property search bar for consistent appearance and behavior. + +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the sort dropdown button +export const sortButtonSx: SxProps = { + borderRadius: "240px", + border: "1.5px solid #d97b3e", + backgroundColor: "#fff", + color: "#222", + textTransform: "none", + fontWeight: 500, + fontSize: "18px", + padding: "8px 32px", + minWidth: "160px", + height: "48px", + cursor: "pointer", + boxShadow: "none", + display: "flex", + alignItems: "center", + justifyContent: "center", + "&:hover": { + backgroundColor: "#f5f5f5", + borderColor: "#d97b3e", + }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyHeader/SearchPropertyHeaderStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyHeader/SearchPropertyHeaderStyle.ts new file mode 100644 index 0000000..40816a2 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyHeader/SearchPropertyHeaderStyle.ts @@ -0,0 +1,26 @@ +// This file defines style objects for the search property header container, title, and subtitle +// used in the property search UI for consistent layout and typography. + +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the main container of the search property header +export const containerSx: SxProps = { + display: "flex", + flexDirection: "column", + width: "100%", + flex: 1, +}; + +// Styles for the main title text +export const titleSx: SxProps = { + fontSize: "32px", + fontWeight: 500, + color: "black", +}; + +// Styles for the subtitle text +export const subtitleSx: SxProps = { + fontSize: "20px", + fontWeight: 300, + color: "black", +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyMap/PropertyMapPreviewStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyMap/PropertyMapPreviewStyle.ts new file mode 100644 index 0000000..b9eb567 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyMap/PropertyMapPreviewStyle.ts @@ -0,0 +1,15 @@ +// This file defines the style object for the map box container +// used to style the map preview in the property search feature. + +export const mapBox = { + // width: '100%', + height: '100%', + borderRadius: '10px', + overflow: 'hidden', + border: 'none', + bgcolor: '#F5F5F5', + display: 'flex', + flexDirection: 'column', + alignItems: 'flex-end', + justifyContent: 'center', +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyMap/SearchPropertyMapStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyMap/SearchPropertyMapStyle.ts new file mode 100644 index 0000000..f408b74 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyMap/SearchPropertyMapStyle.ts @@ -0,0 +1,47 @@ +// This file defines style objects for the map component, wrapper, map div, and overlay +// used to style the interactive/static map in the property search feature. + +export const mapComponentOuterStyle = { + width: '100%', + height: '262px', + minHeight: '262px', + border: '1px solid #ccc', + borderRadius: '8px', + overflow: 'hidden', + margin: '20px 0', + display: 'flex', + flexDirection: 'column' as const +}; + +// Styles for the map wrapper container +export const mapWrapperContainerStyle = { + position: 'relative' as const, + width: '100%', + height: '100%', + minHeight: '262px', + flex: 1 +}; + +// Styles for the map div (Leaflet map container) +export const mapDivStyle = { + width: '100%', + height: '100%', + minHeight: '262px', + zIndex: 1, + '& .leaflet-container': { + height: '100%', + width: '100%' + } +}; + +// Styles for the overlay that toggles map interactivity +export const mapOverlayStyle = { + position: 'absolute' as const, + top: 0, + left: 0, + right: 0, + bottom: 0, + backgroundColor: 'transparent', + cursor: 'pointer', + zIndex: 1000 +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyStyle.ts new file mode 100644 index 0000000..d06d10c --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/styles/SearchPropertyStyle.ts @@ -0,0 +1,17 @@ +// This file defines style objects for the main search property container and spacer +// used to style the layout of the property search page. + +import type { SxProps, Theme } from "@mui/material"; + +// Styles for the main container of the property search page +export const searchPropertyContainerSx: SxProps = { + px:5, + mt:8, + // width:"100%", + background:"#E5E5E5", +}; + +// Styles for the spacer box used for vertical spacing +export const searchPropertySpacerSx: SxProps = { + my: 5, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/buildJurisdictionQuery.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/buildJurisdictionQuery.ts new file mode 100644 index 0000000..85a784c --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/buildJurisdictionQuery.ts @@ -0,0 +1,14 @@ +// This file provides a utility function to build a query URL for searching applications +// by zone, wards, and pagination in the property search feature. + +// Builds a query string for searching applications by zone, wards, page, and size +export function buildJurisdictionQuery(zoneNo: string, wardNos: string[], page: number, size: number) { + // Encode the zone number as a query parameter + const zoneParam = `zoneNo=${encodeURIComponent(zoneNo)}`; + // Encode each ward number as a separate query parameter and join them + const wardParams = wardNos.map(w => `wardNo=${encodeURIComponent(w)}`).join('&'); + // Construct the full URL with all parameters + const url = `/v1/applications/search?${zoneParam}&${wardParams}&page=${page}&size=${size}`; + console.log('Built jurisdiction query', url); + return url; +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/constants.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/constants.ts new file mode 100644 index 0000000..ea45089 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/constants.ts @@ -0,0 +1,21 @@ +// This file defines constants used for filtering and mapping filter options +// in the property search feature. + +// List of available filter options for property search +export const FILTER_OPTIONS: string[] = [ + "Property No.", + "Agent name", + "Zone", + "Ward", +]; + +// Default filter option +export const DEFAULT_FILTER = "Property No."; + +// Maps filter option labels to their corresponding API parameter names +export const FILTER_PARAM_MAP: Record = { + "Property No.": "propertyNo", + "Agent name": "assignedAgent", + "Ward": "wardNo", + "Zone": "zoneNo", +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/debounce.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/debounce.ts new file mode 100644 index 0000000..cd2c502 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/debounce.ts @@ -0,0 +1,16 @@ +// This file provides a custom React hook for debouncing a value +// Useful for delaying updates (e.g., search input) until the user stops typing. + +import { useState, useEffect } from "react"; + +// Custom hook that returns a debounced version of the input value +export function useDebouncedValue(value: T, delay: number): T { + const [debounced, setDebounced] = useState(value); + useEffect(() => { + // Set a timeout to update the debounced value after the specified delay + const handler = setTimeout(() => setDebounced(value), delay); + // Clear the timeout if value or delay changes, or on unmount + return () => clearTimeout(handler); + }, [value, delay]); + return debounced; +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/filterMap.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/filterMap.ts new file mode 100644 index 0000000..570894d --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/filterMap.ts @@ -0,0 +1,10 @@ +// This file defines a mapping from filter option labels to functions +// that extract the corresponding value from a property object. + +// Maps filter option labels to functions that extract the relevant property field +export const PROPERTY_FILTER_MAP: Record string> = { + "Property No.": property => property.Property.PropertyNo ?? "", + "Agent name": property => property.AgentName ?? "", + "Zone": property => property.Property.Address?.ZoneNo ?? "", + "Ward": property => property.Property.Address?.WardNo ?? "", +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/filterProperties.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/filterProperties.ts new file mode 100644 index 0000000..d05a1aa --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/filterProperties.ts @@ -0,0 +1,23 @@ +// This file provides a utility function to filter a list of properties +// based on a selected filter and search value. + +import { PROPERTY_FILTER_MAP } from "./filterMap"; + +// Filters the properties array based on the selected filter and search value +export function filterProperties( + properties: any[], + selectedFilter: string, + searchValue: string +): any[] { + // Get the filter function for the selected filter + const filterFn = PROPERTY_FILTER_MAP[selectedFilter] || (() => ""); + // If search value is empty, return all properties + if (!searchValue.trim()) return properties; + // Convert search value to lowercase for case-insensitive comparison + const searchLower = searchValue.trim().toLowerCase(); + // Filter properties where the filter value includes the search value + return properties.filter(property => { + const val = filterFn(property)?.toString().toLowerCase(); + return val.includes(searchLower); + }); +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/isImage.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/isImage.ts new file mode 100644 index 0000000..20df88d --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/isImage.ts @@ -0,0 +1,13 @@ +// This file provides a utility function to check if a document is an image +// based on its file extension. + +import type { Document } from "../models/GetAllProperties"; + +// Returns true if the document's name has an image file extension +export function isImage(doc: Document) { + if (!doc?.DocumentName) return false; // Return false if no document name + // Extract the file extension and convert to lowercase + const ext = doc.DocumentName.split('.').pop()?.toLowerCase(); + // Check if the extension is one of the common image types + return ['jpg', 'jpeg', 'png', 'gif', 'bmp', 'webp'].includes(ext || ''); +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/sortProperties.ts b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/sortProperties.ts new file mode 100644 index 0000000..b2af21c --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/search-property/utils/sortProperties.ts @@ -0,0 +1,24 @@ +// This file provides a utility function to sort a list of properties +// based on the selected sort order (by creation date). + +export function sortProperties(properties: any[], selectedSort: string) { + console.log("Sorting properties called....."); + console.log(properties); + + if (selectedSort === "New - Old") { + // Sort descending by application created date (newest first) + return properties.sort((a, b) => + new Date(b.CreatedAt).getTime() - new Date(a.CreatedAt).getTime() + ); + } + + if (selectedSort === "Old - New") { + // Sort ascending by application created date (oldest first) + return properties.sort((a, b) => + new Date(a.CreatedAt).getTime() - new Date(b.CreatedAt).getTime() + ); + } + + // If no recognized sort option, return properties as is + return properties; +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/api/dashboardAgentsApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/api/dashboardAgentsApi.ts new file mode 100644 index 0000000..6611d88 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/api/dashboardAgentsApi.ts @@ -0,0 +1,41 @@ +// This file defines API endpoints for fetching agent data for the service manager dashboard +// using RTK Query and onboardingApiSlice. + +import { onboardingApiSlice } from '../../../../../store/onboardingApiSlice' +// import { useGetAgentByIdQuery } from '../../application-inbox/api/getAndReassignAgentApi'; +import type { AgentModel } from "../models/ServiceManagerDashboard/Agent_Model"; + +// Response structure for fetching all agents +interface GetAllAgentsResponse { + data: { + users: AgentModel[]; + TotalCount: number; + Limit: number; + Offset: number; + }; + message: string; + success: boolean; +} + +// Inject endpoints for agent-related API calls into the onboardingApiSlice +export const allAgentsApi = onboardingApiSlice.injectEndpoints({ + endpoints: (builder) => ({ + // Endpoint to fetch all agents + getAllAgents: builder.query({ + query: () => ({ + url: `/api/v1/users?role=AGENT`, + method: 'GET', + }), + }), + // Endpoint to fetch a single agent by ID + getAgentById: builder.query({ + query: (id: string) => ({ + url: `/api/v1/users/${id}`, + method: 'GET', + }), + }), + }), +}); + +// Export hooks for using the agent API endpoints in components +export const { useGetAllAgentsQuery, useGetAgentByIdQuery } = allAgentsApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/api/dashboardApi.ts b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/api/dashboardApi.ts new file mode 100644 index 0000000..ff89c0f --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/api/dashboardApi.ts @@ -0,0 +1,87 @@ +// API slice for Service Manager Dashboard related endpoints +// Provides queries for fetching property applications and applications by agent ID + +import apiSlice from '../../../../../store/apiSlice'; +import { TAG_TYPES } from '../../../../../store/tagTypes'; +import type { AllApplicationModel } from '../models/ServiceManagerDashboard/PropertyApplicationModel'; + +// Request payload for fetching applications by agent ID +interface GetApplicationsByAgentIdRequest { + agent_id: string; +} + +// Response structure for dashboard property applications +interface GetDashboardPropertiesResponse { + data: AllApplicationModel[]; // List of application data + message: string; // Response message + pagination: { + page: number; // Current page number + size: number; // Number of items per page + totalItems: number; // Total number of items + totalPages: number; // Total number of pages + }; + success: boolean; // Indicates if the request was successful +} + +// Inject endpoints into the main API slice for dashboard features +export const serviceManagerDashboardApi = apiSlice.injectEndpoints({ + endpoints: (builder) => ({ + // Query to fetch all property applications, optionally filtered by zone and ward + getAllPropertyApplications: builder.query({ + query: ({ page, size, zoneNo, wardNos }) => { + let url = `/v1/applications/search?sortBy=DESC&page=${page}&size=${size}`; + + if (zoneNo && wardNos && wardNos.length > 0) { + const zoneParam = `zoneNo=${encodeURIComponent(zoneNo)}`; + + // Generate ward parameters with both formats (ward-2 and ward 2) + const wardParams = wardNos.flatMap(w => { + const params = [`wardNo=${encodeURIComponent(w)}`]; + + // If ward contains a hyphen (e.g., "ward-2"), add the space version ("ward 2") + if (w.includes('-')) { + const spaceVersion = w.replace('-', ' '); + params.push(`wardNo=${encodeURIComponent(spaceVersion)}`); + } + // If ward contains a space (e.g., "ward 2"), add the hyphen version ("ward-2") + else if (w.includes(' ')) { + const hyphenVersion = w.replace(' ', '-'); + params.push(`wardNo=${encodeURIComponent(hyphenVersion)}`); + } + + return params; + }).join('&'); + + url = `/v1/applications/search?sortBy=DESC&${zoneParam}&${wardParams}&page=${page}&size=${size}`; + } + + return { + url, + method: 'GET', + headers: { + 'X-User-Role': 'SERVICE_MANAGER', + }, + }; + }, + providesTags: [TAG_TYPES.APPLICATIONS, TAG_TYPES.AGENTS], + }), + // Query to fetch all applications assigned to a specific agent + getAllApplicationsByAgentId: builder.query({ + query: ({ agent_id }) => ({ + url: `/v1/applications/search?assignedAgent=${agent_id}`, + method: 'GET', + headers: { + 'X-User-Role': 'SERVICE_MANAGER', + 'X-Tenant-ID': 'pb.amritsar' + }, + }), + providesTags: [TAG_TYPES.APPLICATIONS, TAG_TYPES.AGENTS], + }), + }), +}) + +// Export hooks for using the queries in React components +export const { + useGetAllPropertyApplicationsQuery, + useGetAllApplicationsByAgentIdQuery +} = serviceManagerDashboardApi; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/assets/application_icon.svg b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/assets/application_icon.svg new file mode 100644 index 0000000..7180b1c --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/assets/application_icon.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/components/AgentSearchBar/AgentSearchBar.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/components/AgentSearchBar/AgentSearchBar.tsx new file mode 100644 index 0000000..4e28a34 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/components/AgentSearchBar/AgentSearchBar.tsx @@ -0,0 +1,94 @@ +// Search bar component with optional filter label for agent search functionality +// Used in the Service Manager Dashboard to search and filter agents + +import React from "react"; +import { Box, TextField, InputAdornment, Typography } from "@mui/material"; +import SearchIcon from "@mui/icons-material/Search"; +import FilterListIcon from "@mui/icons-material/FilterList"; +import { + searchBarStyle, + inputPropsStyle, + filterRowStyle, + filterLabelStyle, +} from "../../styles/AgentSearchBar/AgentSearchBarStyle"; + + +// Props for the SearchBarWithFilter component +interface SearchBarWithFilterProps { + searchValue: string; // Current value of the search input + onSearchChange: (value: string) => void; // Handler for search input changes + filterLabel?: string; // Optional label for the filter row + _filterValue?: string; // (Unused) Value for the filter chip + _onFilterRemove?: () => void; // (Unused) Handler to remove the filter +} + +// SearchBarWithFilter component definition +export const SearchBarWithFilter: React.FC = ({ + searchValue, + onSearchChange, + filterLabel = "Filter", +}) => { + return ( + + {/* Search Bar: allows users to type and search for agents */} + onSearchChange(e.target.value)} + placeholder="Search Agents" + sx={searchBarStyle} + InputProps={{ + sx: inputPropsStyle, // Style for the input root + endAdornment: ( + + + + ), + }} + inputProps={{ + style: { + borderRadius: "24px", + paddingLeft: "18px", + background: "transparent", + fontFamily: "Roboto, sans-serif", + fontSize: "17px", + color: "#5b5752", + fontWeight: 400, + }, + }} + /> + + {/* Filter Row: displays a filter icon and label */} + + + + {filterLabel} + + + + {/* Filter Chip: (currently commented out) would show active filter and allow removal */} + {/* {filterValue && ( + + + {filterValue} + + + + + + } + sx={chipStyle} + onDelete={onFilterRemove} + /> + )} */} + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/components/ServiceManagerDashboard/AgentCard.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/components/ServiceManagerDashboard/AgentCard.tsx new file mode 100644 index 0000000..18efa8b --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/components/ServiceManagerDashboard/AgentCard.tsx @@ -0,0 +1,162 @@ + +// Card component to display agent details and their assigned cases +// Used in the Service Manager Dashboard to show agent info, availability, and case count + + +import React from 'react'; +import { Box, Typography } from '@mui/material'; +import PersonOutlineIcon from '@mui/icons-material/PersonOutline'; +import AssignmentIndOutlinedIcon from '@mui/icons-material/AssignmentIndOutlined'; +import CheckCircleOutlineIcon from '@mui/icons-material/CheckCircleOutline'; +import type { AgentModel } from '../../models/ServiceManagerDashboard/Agent_Model'; +import { useGetAllApplicationsByAgentIdQuery } from '../../api/dashboardApi'; + + +// Props for the AgentCard component +interface AgentCardProps { + agent: AgentModel; // Agent data to display + onClick?: (agent: AgentModel) => void; // Optional click handler for the card + onAssign?: (agent: AgentModel) => void; // (Unused) Optional handler to assign agent + showActions?: boolean; // (Unused) Whether to show action buttons + // totalCases?: number; +} + +// AgentCard component definition +export const AgentCard: React.FC = ({ + agent, + onClick, +}) => { + // Style constants for card appearance + const BORDER_COLOR = "#D4D4D4"; + const ONLINE_COLOR = "#E5FFDE"; + const CASE_BG = "#E4E4E5"; + const ONLINE_TXT_COLOR = "#00703C"; + const OFFLINE_TXT_COLOR = "#A80000"; + + // Fetch all applications assigned to this agent + const {data: applicationsByAgent, + // isLoading: applicationsByAgentLoading, + // error: applicationsByAgentError + } = useGetAllApplicationsByAgentIdQuery({ agent_id: agent.id }); + + // Calculate total number of cases assigned to the agent + let totalCases = applicationsByAgent?.data.length || 0; + + + // Determine agent's availability status + const isAvailable = agent.isActive === true; + const availabilityText = isAvailable ? "Available" : "Not available"; + +// Helper function to display wards as a comma-separated string +const getWardsDisplay = (wards: string | string[] | undefined) => { + if (!wards) return 'N/A'; + + // If it's already an array + if (Array.isArray(wards)) { + return wards.join(', '); + } + + // If it's a string, split and format + if (typeof wards === 'string') { + return wards + .split('Ward-') + .filter(Boolean) + .map(w => `Ward-${w}`) + .join(', '); + } + + return 'N/A'; +} + + return ( + onClick?.(agent)} + sx={{ + border: `1.5px solid ${BORDER_COLOR}`, + borderRadius: '18px', + background: "#fff", + display: 'flex', + flexDirection: 'column', + p: 2.5, + my: 1.5, + boxSizing: 'border-box', + cursor: onClick ? 'pointer' : 'default', + transition: 'box-shadow 0.2s', + "&:hover": { + boxShadow: onClick ? "0 4px 12px rgba(0,0,0,0.06)" : undefined, + }, + }} + > + {/* Header row: Icon + Name + Availability */} + + + + + {/* Agent's full name */} + + {agent.profile.firstName} {agent.profile.lastName} + + {/* Wards assigned to the agent */} + + Wards: {getWardsDisplay(agent.zoneData?.flatMap(z => z.wards))} + + + + {/* Availability status */} + + + {availabilityText} + + {isAvailable && ( + + )} + + + + {/* Cases Row & Status */} + + {/* Case count chip: shows total cases assigned to the agent */} + + + + {totalCases + ` `} + total cases + + + + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/components/ServiceManagerDashboard/ApplicationCard.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/components/ServiceManagerDashboard/ApplicationCard.tsx new file mode 100644 index 0000000..d46fada --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/components/ServiceManagerDashboard/ApplicationCard.tsx @@ -0,0 +1,338 @@ +// Card component to display property application details in the Service Manager Dashboard +// Shows property info, application number, due date, priority, assigned agent, and allows agent assignment + + +import React, { useMemo, useState } from 'react'; +import { Box, Typography, Button, Chip } from '@mui/material'; +import OpenInNewIcon from '@mui/icons-material/OpenInNew'; +import { type AllApplicationModel } from '../../models/ServiceManagerDashboard/PropertyApplicationModel'; +import propertyIcon from '../../assets/application_icon.svg'; +import { useNavigate } from 'react-router-dom'; +import ApplicationInboxAssignmentModal from '../../../assign-agent-to-application/components/ApplicationInboxAssignmentModal'; +// import { useReassignApplicationMutation } from '../../../assign-agent-to-application/api/assignAgentApi'; + + +// Props for the ApplicationCard component +interface ApplicationCardProps { + application: AllApplicationModel; // Application data to display + onClick?: (application: AllApplicationModel) => void; // Optional click handler for the card + onViewLocation?: (application: AllApplicationModel) => void; // Optional handler to view property location + onAssignAgent?: (application: AllApplicationModel) => void; // Optional handler to assign agent + // showActions?: boolean; + agentsData?: { + data?: { + users?: Array<{ id: string; profile?: { fullName?: string }; username?: string }> + } + }; +} + +// ApplicationCard component definition +export const ApplicationCard: React.FC = ({ + application, + agentsData, +}) => { + // Style constants for card appearance + const PRIMARY_ORANGE = "#C84C0E"; + const BORDER_COLOR = "#D4D4D4"; + const VIEW_LOCATION_BG = "#FCEDE3"; + const PRIORITY_BG: Record = { + HIGH: "#FFDADA", + MEDIUM: "#F6F2CF", + LOW: "#B4D0AC", + }; + + const getStatusColor = (status: string): { bgColor: string; textColor: string; borderColor: string } => { + switch (status.toLowerCase()) { + case 'assigned': + return { bgColor: '#FFF3CD', textColor: '#856404', borderColor: '#FFC107' }; + case 'verified': + return { bgColor: '#D1E7DD', textColor: '#0F5132', borderColor: '#4CAF50' }; + case 'audit_verified': + return { bgColor: '#D1ECF1', textColor: '#0C5460', borderColor: '#2196F3' }; + case 'rejected': + return { bgColor: '#F8D7DA', textColor: '#721C24', borderColor: '#F44336' }; + case 'approved': + return { bgColor: '#D1E7DD', textColor: '#0F5132', borderColor: '#4CAF50' }; + case 'initiated': + return { bgColor: '#E2E3E5', textColor: '#383D41', borderColor: '#9E9E9E' }; + default: + return { bgColor: '#E2E3E5', textColor: '#383D41', borderColor: '#9E9E9E' }; + } + }; + + let applicationStatus = application.Status || ''; + if (applicationStatus.toLowerCase() === 'assigned') { + applicationStatus = 'Assigned'; + } else if (applicationStatus.toLowerCase() === 'verified') { + applicationStatus = 'Verified'; + } else if (applicationStatus.toLowerCase() === 'audit_verified') { + applicationStatus = 'Audit Verified'; + } else if (applicationStatus.toLowerCase() === 'rejected') { + applicationStatus = 'Rejected'; + } else if (applicationStatus.toLowerCase() === 'approved') { + applicationStatus = 'Approved'; + } else if (applicationStatus.toLowerCase() === 'initiated') { + applicationStatus = 'Initiated'; + } + + const statusColors = getStatusColor(application.Status || ''); + + // Memoize agent id to full name mapping for quick lookup + const agentIdToName = useMemo(() => { + const map: Record = {}; + if (agentsData?.data?.users) { + agentsData.data.users.forEach(agent => { + map[agent.id] = agent.profile?.fullName || "N/A"; + }); + } + return map; + }, [agentsData]); + + // Get the assigned agent's name for this application + const AgentName = application.AssignedAgent + ? agentIdToName[application.AssignedAgent] || 'Unassigned' + : 'Unassigned'; + + // Flag to check if the application is assigned to an agent + const isAssigned = AgentName !== 'Unassigned'; + + // State to control the assignment modal + const [assignModalOpen, setAssignModalOpen] = useState(false); + + // Navigation hook for routing to property details + const navigate = useNavigate(); + const handlePropertyCardClick = (applicationID: string) => { + // Navigate to the property details page for this application + navigate(`/service-manager/property-details/${applicationID}`); + }; + + // Format the due date for display + function formatDueDate(dateString: string): string { + if (!dateString) return ''; + const date = new Date(dateString); + const day = date.getDate(); + const monthNames = [ + "Jan", "Feb", "Mar", "Apr", "May", "Jun", + "Jul", "Aug", "Sept", "Oct", "Nov", "Dec" + ]; + const month = monthNames[date.getMonth()]; + const year = date.getFullYear(); + let hours = date.getHours(); + let mins = date.getMinutes(); + + // Add leading zeros if needed + const hourStr = hours < 10 ? `0${hours}` : hours; + const minStr = mins < 10 ? `0${mins}` : mins; + + return `${day} ${month} ${year} ${hourStr}:${minStr}`; + } + + return ( + + {/* Left: Icon and Details */} + handlePropertyCardClick(application.ID)} + sx={{ display: 'flex', flexDirection: 'column', flex: 1, justifyContent: 'start', alignItems: 'flex-start' }}> + + {/* Property icon */} + + + {/* Property complex name */} + + {application.Property.ComplexName} + + {/* Application number */} + + {application.ApplicationNo} + + {/* View Location button (currently does nothing) */} + + + + + + + + + + + {/* Right: Status, Date and Actions */} + + {/* Date and Priority */} + + {/* Due date of the application */} + + {formatDueDate(application.DueDate)} + + {/* Priority chip */} + + {application.Priority} + + + + {/* Assign/Reassign Agent button */} + {(application.Status === 'ASSIGNED' || application.Status === 'INITIATED') ? ( + + ) : ( + + + )} + + {/* Modal for assigning agent to the application */} + setAssignModalOpen(false)} + isAssigned={isAssigned} + /> + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/components/ServiceManagerDashboard/ServiceManagerDashboard.tsx b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/components/ServiceManagerDashboard/ServiceManagerDashboard.tsx new file mode 100644 index 0000000..bb730b6 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/components/ServiceManagerDashboard/ServiceManagerDashboard.tsx @@ -0,0 +1,180 @@ +// Service Manager Dashboard main component +// Displays recent property applications and agent directory with search/filter functionality + +import React, { useState, useMemo } from 'react'; +import { Box, Container, Typography, CircularProgress, Button } from '@mui/material'; +import { ApplicationCard } from './ApplicationCard'; +import { AgentCard } from './AgentCard'; +import { cardSection, dashboardContainer, dashboardHeader, dashboardLoadingContainer, mainContentGrid, scrollableAgentsContainer, sectionTitle, subtitleText, titleText } from '../../styles/ServiceManagerDashboard/ServiceManagerDashboardStyle'; +import { SearchBarWithFilter } from '../AgentSearchBar/AgentSearchBar'; +import { JurisdictionDropdown } from '../../../../../components/JurisdictionDropdown/JurisdictionDropdown'; +import { jurisdictionDropdownStyles } from '../../../../../styles/HomePageStyle/HomePageStyle'; +import { useGetAllPropertyApplicationsQuery } from '../../api/dashboardApi'; +import { useGetAllAgentsQuery } from '../../api/dashboardAgentsApi'; +import { useSidebar } from '../../../../../components/Sidebar/provider/SMSideBarProvider'; +import type { RootState } from '../../../../../../store'; +import { useSelector } from 'react-redux'; + +// Props for the ServiceManagerDashboard component +interface ServiceManagerDashboardProps { + sideBarOpen?: boolean; // (Optional) Whether the sidebar is open + setSelectedNav?: (nav: string) => void; // (Optional) Handler to set selected navigation +} + +const ServiceManagerDashboard: React.FC = () => { + // Get selected zone from Redux store + const selectedZone = useSelector((state: RootState) => state.user.selectedZone); + // Only fetch applications if a zone and wards are selected + const shouldFetch = !!selectedZone && !!selectedZone.zoneNumber && selectedZone.wards.length > 0; + + // Fetch recent property applications for the selected zone/wards + const { + data: dashboardApplicationsData, + isLoading: applicationsLoading, + error: dashboardError, + } = useGetAllPropertyApplicationsQuery({ + page: 0, + size: 5, + zoneNo: selectedZone?.zoneNumber, + wardNos: selectedZone?.wards + }, { skip: !shouldFetch }); + + // Sidebar navigation handler from context + const { + handleNavSelection, + } = useSidebar(); + + // Fetch all agents for the directory (for ApplicationCard props) + const { data: agentsData } = useGetAllAgentsQuery(); + + // Fetch all agents with loading and error state (for Agent Directory) + const { + data: dashboardAgentsData, + isLoading: agentsLoading, + error: agentsError, + } = useGetAllAgentsQuery(); + + // State for agent search input + const [searchValue, setSearchValue] = useState(''); + const handleSearchChange = (val: string) => setSearchValue(val); + + // All agents from API response + const allAgents = dashboardAgentsData?.data?.users || []; + + // Filter agents based on search input + const filteredAgents = useMemo(() => { + if (!searchValue.trim()) return allAgents; + const q = searchValue.toLowerCase(); + return allAgents.filter(agent => + [ + agent.id, + agent.username, + agent.profile?.firstName, + agent.profile?.lastName, + agent.profile?.fullName, + ].some(field => field && field.toLowerCase().includes(q)) + ); + }, [allAgents, searchValue]); + + // Render dashboard layout + return ( + + {/* Jurisdiction dropdown for selecting zone/ward */} + + + + + {/* Dashboard header with title and subtitle */} + + + + Service Manager Dashboard + + + Property Verification Management System + + + + + {/* Main content grid: Applications and Agent Directory */} + + {/* Recent Applications section */} + + + Recent Applications + + {/* Show loading, error, empty, or list of applications */} + {applicationsLoading ? ( + + + + ) : dashboardError ? ( + Error loading applications + ) : !dashboardApplicationsData?.data || dashboardApplicationsData.data.length === 0 ? ( + No applications found + ) : ( + dashboardApplicationsData.data.map(app => ( + + )) + )} + {/* Button to view all applications */} + + + + + + {/* Agent Directory section */} + + + Agent Directory + + {/* Search bar for filtering agents */} + + + {/* Show loading, error, empty, or list of agents */} + {agentsLoading ? ( + + + + ) : agentsError ? ( + Error loading agents + ) : filteredAgents.length === 0 ? ( + No agents found + ) : ( + filteredAgents.map(agent => agent.zoneData && agent.zoneData.length > 0 ? : null) + )} + + + + + ); +}; + +export default ServiceManagerDashboard; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/custom-hooks/ServiceManagerDashboard/useDashBoard.ts b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/custom-hooks/ServiceManagerDashboard/useDashBoard.ts new file mode 100644 index 0000000..193c004 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/custom-hooks/ServiceManagerDashboard/useDashBoard.ts @@ -0,0 +1,94 @@ +// import { useState, useEffect, useCallback } from 'react'; +// import { DashboardService, type DashboardData } from '../../services/ServiceManagerDashboardService'; +// import type { ApplicationModel } from '../../models/ServiceManagerDashboard/PropertyApplicationModel'; +// import type { AgentModel } from '../../models/ServiceManagerDashboard/Agent_Model'; +// import type { Zone, Jurisdiction } from '../../services/ServiceManagerDashboardService'; + +// interface DashboardStats { +// totalApplications: number; +// highPriorityApplications: number; +// totalAgents: number; +// onlineAgents: number; +// availableAgents: number; +// totalCases: number; +// averageCases: number; +// } + +// export const useDashboard = (zoneFilter?: string) => { +// const [applications, setApplications] = useState([]); +// const [agents, setAgents] = useState([]); +// const [zones, setZones] = useState([]); +// const [jurisdiction, setJurisdiction] = useState(null); +// const [stats, setStats] = useState(null); +// const [loading, setLoading] = useState(true); +// const [error, setError] = useState(null); +// const [refreshing, setRefreshing] = useState(false); + +// // Fetch dashboard data +// const fetchDashboardData = useCallback(async () => { +// try { +// setLoading(true); +// setError(null); + +// const [dashboardData, dashboardStats] = await Promise.all([ +// DashboardService.getDashboardData(zoneFilter), +// DashboardService.getDashboardStats(), +// ]); + +// setApplications(dashboardData.applications); +// setAgents(dashboardData.agents); +// setZones(dashboardData.zones); +// setJurisdiction(dashboardData.jurisdiction); +// setStats(dashboardStats); +// } catch (err) { +// setError(err instanceof Error ? err.message : 'Failed to fetch dashboard data'); +// } finally { +// setLoading(false); +// } +// }, [zoneFilter]); + +// // Refresh dashboard data +// const refresh = useCallback(async () => { +// try { +// setRefreshing(true); +// setError(null); + +// const [dashboardData, dashboardStats] = await Promise.all([ +// DashboardService.refreshDashboard(zoneFilter), +// DashboardService.getDashboardStats(), +// ]); + +// setApplications(dashboardData.applications); +// setAgents(dashboardData.agents); +// setZones(dashboardData.zones); +// setJurisdiction(dashboardData.jurisdiction); +// setStats(dashboardStats); +// } catch (err) { +// setError(err instanceof Error ? err.message : 'Failed to refresh dashboard data'); +// } finally { +// setRefreshing(false); +// } +// }, [zoneFilter]); + +// // Initial fetch +// useEffect(() => { +// fetchDashboardData(); +// }, [fetchDashboardData]); + +// return { +// // Data +// applications, +// agents, +// zones, +// jurisdiction, +// stats, + +// // States +// loading, +// error, +// refreshing, + +// // Actions +// refresh, +// }; +// }; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/models/ServiceManagerDashboard/Agent_Model.ts b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/models/ServiceManagerDashboard/Agent_Model.ts new file mode 100644 index 0000000..538a99b --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/models/ServiceManagerDashboard/Agent_Model.ts @@ -0,0 +1,57 @@ +// Interfaces for representing agent data, profile, and zone information in the Service Manager Dashboard + +// Information about a zone and its wards assigned to an agent +export interface AgentZoneInfo { + zoneNumber: string; + wards: string[]; +} + +// Address details for an agent's profile +export interface AgentProfileAddress { + addressLine1: string; + addressLine2: string | null; + city: string; + state: string; + pinCode: string; +} + +// Profile information for an agent, including personal and work details +export interface AgentProfile { + firstName: string; + lastName: string; + fullName: string; + phoneNumber: string; + adhaarNo: number; + gender: string; + address: AgentProfileAddress; + department: string; + designation: string; + relationshipToProperty: string; + ownershipShare: number; + isPrimaryOwner: boolean; + isVerified: boolean; + guardian?: string; + guardianType?: string; + dateOfBirth?: string; + workLocation?: string; + profilePicture?: string; +} + +// Main agent model used throughout the dashboard +export interface AgentModel { + id: string; + username: string; + email: string; + role: string; + name?: string; + ward?: string; + preferred_language?: string; + isActive: boolean; + zoneData: AgentZoneInfo[]; + preferredLanguage: string; + createdDate: string; + updatedDate: string; + createdBy: string; + updatedBy: string; + profile: AgentProfile; +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/models/ServiceManagerDashboard/PropertyApplicationModel.ts b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/models/ServiceManagerDashboard/PropertyApplicationModel.ts new file mode 100644 index 0000000..5462836 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/models/ServiceManagerDashboard/PropertyApplicationModel.ts @@ -0,0 +1,59 @@ +// Types and interfaces for property applications and related data in the Service Manager Dashboard + +// Priority levels for applications +export type Priority = 'High' | 'Medium' | 'Low'; + +// Geographic location with latitude and longitude +export interface Location { + lat: number; + lng: number; +} + +// Details about a property associated with an application +export interface PropertyDetails { + ID: string; + PropertyNo: string; + OwnershipType: string; + PropertyType: string; + ComplexName: string; + Address: any | null; + AssessmentDetails: any | null; + Amenities: any[]; + ConstructionDetails: any | null; + AdditionalDetails: any | null; + GISData: any | null; + CreatedAt: string; + UpdatedAt: string; + Documents: any[]; +} + +// Model representing a property application in the dashboard +export interface AllApplicationModel { + ID: string; + ApplicationNo: string; + PropertyID: string; + Priority: string; + TenantID: string; + DueDate: string; + AssignedAgent: string | null; + Status: string; + WorkflowInstanceID: string; + AppliedBy: string; + AssesseeID: string | null; + Property: PropertyDetails; + ApplicationLogs: any[]; + IsDraft: boolean; + CreatedAt: string; + UpdatedAt: string; +} + +// Simplified application interface for internal use +export interface Application { + id: string; + propertyName: string; + propertyId: string; + date: string; // ISO 8601 format + priority: Priority; + month: string; + location: Location; +} diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/services/ServiceManagerDashboardService.ts b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/services/ServiceManagerDashboardService.ts new file mode 100644 index 0000000..79e5f6d --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/services/ServiceManagerDashboardService.ts @@ -0,0 +1,340 @@ +// import { type Application, ApplicationModel } from '../models/ServiceManagerDashboard/PropertyApplicationModel'; +// import { type AgentModel } from '../models/ServiceManagerDashboard/Agent_Model'; + +// // Base URL for the API +// const API_BASE_URL = 'http://localhost:3002'; + + +// // Custom error class for API errors +// export class ApiError extends Error { +// status?: number; +// data?: any; + +// constructor(message: string, status?: number, data?: any) { +// super(message); +// this.name = 'ApiError'; +// this.status = status; +// this.data = data; +// } +// } + +// // Generic fetch wrapper with error handling +// async function fetchWithErrorHandling( +// url: string, +// options?: RequestInit +// ): Promise { +// try { +// const response = await fetch(url, { +// ...options, +// headers: { +// 'Content-Type': 'application/json', +// ...options?.headers, +// }, +// }); + +// if (!response.ok) { +// throw new ApiError( +// `HTTP error! status: ${response.status}`, +// response.status +// ); +// } + +// const data = await response.json(); +// return data; +// } catch (error) { +// if (error instanceof ApiError) { +// throw error; +// } +// throw new ApiError( +// error instanceof Error ? error.message : 'An unknown error occurred' +// ); +// } +// } + +// // Application Services +// export class ApplicationService { +// // Get all recent applications +// static async getAllApplications(): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/recentApplications` +// ); +// return data.map(app => new ApplicationModel(app)); +// } + +// // Get application by ID +// static async getApplicationById(id: string): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/recentApplications/${id}` +// ); +// return new ApplicationModel(data); +// } + +// // Get applications by month +// static async getApplicationsByMonth(month: string): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/recentApplications?month=${month}` +// ); +// return data.map(app => new ApplicationModel(app)); +// } + +// // Get applications by priority +// static async getApplicationsByPriority(priority: 'High' | 'Medium' | 'Low'): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/recentApplications?priority=${priority}` +// ); +// return data.map(app => new ApplicationModel(app)); +// } + +// // Create new application +// static async createApplication(application: Partial): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/recentApplications`, +// { +// method: 'POST', +// body: JSON.stringify(application), +// } +// ); +// return new ApplicationModel(data); +// } + +// // Update application +// static async updateApplication(id: string, application: Partial): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/recentApplications/${id}`, +// { +// method: 'PATCH', +// body: JSON.stringify(application), +// } +// ); +// return new ApplicationModel(data); +// } + +// // Delete application +// static async deleteApplication(id: string): Promise { +// await fetchWithErrorHandling( +// `${API_BASE_URL}/recentApplications/${id}`, +// { +// method: 'DELETE', +// } +// ); +// } + +// // Search applications +// static async searchApplications(query: string): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/recentApplications?q=${encodeURIComponent(query)}` +// ); +// return data.map(app => new ApplicationModel(app)); +// } +// } + +// // Agent Services +// export class AgentService { +// // Get all agents +// static async getAllAgents(): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/agents` +// ); +// return data; +// } + +// // Get agent by ID +// static async getAgentById(id: string): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/agents/${id}` +// ); +// return data; +// } + +// // Get agents by zone +// static async getAgentsByZone(zone: string): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/agents?zone=${encodeURIComponent(zone)}` +// ); +// return data; +// } + +// // Get agents by status +// static async getAgentsByStatus(status: 'Online' | 'Offline' | 'On Leave'): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/agents?status=${status}` +// ); +// return data; +// } + +// // Get available agents +// static async getAvailableAgents(): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/agents?availability=Available&status=Online` +// ); +// return data; +// } + +// // Update agent +// static async updateAgent(id: string, agent: Partial): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/agents/${id}`, +// { +// method: 'PATCH', +// body: JSON.stringify(agent), +// } +// ); +// return data; +// } + +// // Update agent status +// static async updateAgentStatus( +// id: string, +// status: 'Online' | 'Offline' | 'On Leave' +// ): Promise { +// return this.updateAgent(id, { status } as any); +// } + +// // Update agent availability +// static async updateAgentAvailability( +// id: string, +// availability: 'Available' | 'Not available' +// ): Promise { +// return this.updateAgent(id, { availability } as any); +// } + +// // Assign agent to ward +// static async assignAgentToWard(id: string, ward: string): Promise { +// return this.updateAgent(id, { ward }); +// } + +// // Search agents +// static async searchAgents(query: string): Promise { +// const data = await fetchWithErrorHandling( +// `${API_BASE_URL}/agents?q=${encodeURIComponent(query)}` +// ); +// return data; +// } +// } + +// // Zone Services +// export interface Zone { +// id: string; +// name: string; +// wards: string[]; +// } + +// export class ZoneService { +// // Get all zones +// static async getAllZones(): Promise { +// return await fetchWithErrorHandling( +// `${API_BASE_URL}/zones` +// ); +// } + +// // Get zone by ID +// static async getZoneById(id: string): Promise { +// return await fetchWithErrorHandling( +// `${API_BASE_URL}/zones/${id}` +// ); +// } + +// // Get zone by name +// static async getZoneByName(name: string): Promise { +// const zones = await this.getAllZones(); +// return zones.find(zone => zone.name === name) || null; +// } +// } + +// // Jurisdiction Services +// export interface Jurisdiction { +// current: string; +// available: string[]; +// } + +// export class JurisdictionService { +// // Get jurisdiction data +// static async getJurisdiction(): Promise { +// return await fetchWithErrorHandling( +// `${API_BASE_URL}/jurisdiction` +// ); +// } + +// // Update current jurisdiction +// static async updateCurrentJurisdiction(jurisdiction: string): Promise { +// return await fetchWithErrorHandling( +// `${API_BASE_URL}/jurisdiction`, +// { +// method: 'PATCH', +// body: JSON.stringify({ current: jurisdiction }), +// } +// ); +// } +// } + +// // Dashboard Service - Combines all data needed for dashboard +// export interface DashboardData { +// applications: ApplicationModel[]; +// agents: AgentModel[]; +// zones: Zone[]; +// jurisdiction: Jurisdiction; +// } + +// export class DashboardService { +// // Get all dashboard data in a single call +// static async getDashboardData(zoneFilter?: string): Promise { +// try { +// // Fetch all data in parallel for better performance +// const [applications, agents, zones, jurisdiction] = await Promise.all([ +// ApplicationService.getAllApplications(), +// zoneFilter +// ? AgentService.getAgentsByZone(zoneFilter) +// : AgentService.getAllAgents(), +// ZoneService.getAllZones(), +// JurisdictionService.getJurisdiction(), +// ]); + +// return { +// applications, +// agents, +// zones, +// jurisdiction, +// }; +// } catch (error) { +// throw new ApiError( +// 'Failed to fetch dashboard data', +// undefined, +// error +// ); +// } +// } + +// // Get dashboard statistics +// static async getDashboardStats() { +// const [applications, agents] = await Promise.all([ +// ApplicationService.getAllApplications(), +// AgentService.getAllAgents(), +// ]); + +// const highPriorityCount = applications.filter(app => app.isHighPriority()).length; +// const onlineAgentsCount = agents.filter(agent => agent.isActive === true).length; +// const availableAgentsCount = agents.filter(agent => agent.isActive === true).length; + +// return { +// totalApplications: applications.length, +// highPriorityApplications: highPriorityCount, +// totalAgents: agents.length, +// onlineAgents: onlineAgentsCount, +// availableAgents: availableAgentsCount, +// }; +// } + +// // Refresh dashboard data +// static async refreshDashboard(zoneFilter?: string): Promise { +// return this.getDashboardData(zoneFilter); +// } +// } + +// // Export all services +// export default { +// ApplicationService, +// AgentService, +// ZoneService, +// JurisdictionService, +// DashboardService, +// }; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/styles/AgentSearchBar/AgentSearchBarStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/styles/AgentSearchBar/AgentSearchBarStyle.ts new file mode 100644 index 0000000..aafc554 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/styles/AgentSearchBar/AgentSearchBarStyle.ts @@ -0,0 +1,58 @@ +// Style objects for Agent Search Bar and related UI elements in the Service Manager Dashboard + +// Style for the main search bar container +export const searchBarStyle = { + background: "#f9ebe3", + borderRadius: "24px", + height: "48px", + mb: 2, + fontFamily: "Roboto, sans-serif", +}; + +// Style for the input element inside the search bar +export const inputPropsStyle = { + borderRadius: "24px", + height: "48px", + fontSize: "17px", + fontWeight: 400, + color: "#5b5752", + background: "transparent", + border: "none", + boxShadow: "none", + paddingRight: "12px", +}; + +// Style for the row containing the filter icon and label +export const filterRowStyle = { + display: "flex", + alignItems: "center", + mt: 0.5, +}; + +// Style for the filter label text +export const filterLabelStyle = { + fontFamily: "Roboto, sans-serif", + fontSize: "18px", + color: "#5b5752", + fontWeight: 400 +}; + +// Style for the filter chip element +export const chipStyle = { + mt: 2, + borderRadius: "13px", + bgcolor: "#f9f4ef", + border: "1.5px solid #eaddcf", + height: "32px", + px: 2, + boxSizing: "border-box", +}; + +// Style for the label inside the filter chip +export const chipLabelStyle = { + fontFamily: "Roboto, sans-serif", + fontSize: "16px", + color: "#5b5752", + fontWeight: 500, + mr: 0.5 +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/styles/ServiceManagerDashboard/ServiceManagerDashboardStyle.ts b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/styles/ServiceManagerDashboard/ServiceManagerDashboardStyle.ts new file mode 100644 index 0000000..d0f1415 --- /dev/null +++ b/frontend/web-ui/src/app/features/service-manager-app-features/service-manager-dashboard/styles/ServiceManagerDashboard/ServiceManagerDashboardStyle.ts @@ -0,0 +1,105 @@ +// Style objects for Service Manager Dashboard layout and UI elements + +// Container for the entire dashboard page +export const dashboardContainer = { + pt: 3 , + width: '80vw', +}; + +// Header section of the dashboard +export const dashboardHeader = { + mb: 4, + display: 'flex', + justifyContent: 'space-between', + alignItems: 'center', +}; + +// Style for the main dashboard title text +export const titleText = { + fontWeight: 600, + mb: 0.5, + fontFamily: 'Roboto, sans-serif', +}; + +// Style for subtitle text under the main title +export const subtitleText = { + fontFamily: 'Roboto, sans-serif', + color: 'text.secondary', +}; + +// Grid layout for main content (applications and agents) +export const mainContentGrid = { + display: 'grid', + // width: '100%', + gridTemplateColumns: { + xs: '1fr 0.73fr', + lg: '1fr 0.73fr' + }, + gap: 3, +}; + +// Section container for cards (applications, agents) +export const cardSection = { + backgroundColor: '#fff', + borderRadius: 3, + p: 3, + boxShadow: '0 2px 8px rgba(0,0,0,0.1)', +}; + +// Style for section titles (e.g., 'Recent Applications', 'Agent Directory') +export const sectionTitle = { + mb: 2, + fontWeight: 400, + fontFamily: 'Roboto, sans-serif', +}; + +// Scrollable container for agent cards +export const scrollableAgentsContainer = { + maxHeight: '720px', // Adjust height as needed + overflowY: 'auto', + overflowX: 'hidden', + + // Hide scrollbar for WebKit browsers (Chrome, Safari, Edge) + '&::-webkit-scrollbar': { + display: 'none', + }, + + // Hide scrollbar for Firefox + scrollbarWidth: 'none', + + // For IE (if needed) + '-ms-overflow-style': 'none', + + // Optional: Add subtle padding for better spacing + pr: 1, +}; + +// Style for text when no content is available +export const noContentText = { + color: 'text.secondary', + fontFamily: 'Roboto, sans-serif', +}; + +// Container for loading spinner in the dashboard +export const dashboardLoadingContainer = { + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + minHeight: '100vh', +}; + +// Container for error messages in the dashboard +export const dashboardErrorContainer = { + py: 4, +}; + +// Style for error alert box +export const dashboardErrorAlert = { + mb: 2, +}; + +// Style for refresh icon alignment +export const refreshIconStyle = { + display: 'flex', + justifyContent: 'center' +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/global.css b/frontend/web-ui/src/app/global.css new file mode 100644 index 0000000..e69de29 diff --git a/frontend/web-ui/src/app/pages/Login-SignUp/Login-SignUp.tsx b/frontend/web-ui/src/app/pages/Login-SignUp/Login-SignUp.tsx new file mode 100644 index 0000000..a0974be --- /dev/null +++ b/frontend/web-ui/src/app/pages/Login-SignUp/Login-SignUp.tsx @@ -0,0 +1,416 @@ +// Login and Sign-Up page for the property tax web UI +// Handles user authentication, language selection, and error display + +import { useState } from "react"; +import { LanguageSettingsModal } from "../../features/login-signup/components/LoginSignUp/LanguageSettingsModal"; +import { LoginHeaderWithLanguage } from "../../features/login-signup/components/LoginSignUp/LoginHeaderWithLanguage"; +import { Box, Container, IconButton, Paper, Typography, Link as MuiLink, Alert, Button } from "@mui/material"; +import { useNavigate } from "react-router-dom"; +import InfoOutlinedIcon from "@mui/icons-material/InfoOutlined"; +import VisibilityOutlinedIcon from '@mui/icons-material/VisibilityOutlined'; +import VisibilityOffOutlinedIcon from '@mui/icons-material/VisibilityOffOutlined'; +import "../../styles/Login-SignUpStyle/login-signup.css" +import authService from "../../features/login-signup/services/AuthService"; + +import loginBG from '../../features/login-signup/assets/LoginPageAssets/LoginBG.svg'; +import propertyTaxLogo from '../../features/login-signup/assets/LoginPageAssets/LoginPropertyTaxText.svg'; +import { getUserByUsername } from "../../features/login-signup/models/ProfileService"; +import { setUser } from "../../../store/userSlice"; +import { useDispatch } from "react-redux"; + +const PRIMARY_ORANGE = "#C84C0E"; +const PAGE_BG = "#E5E5E5"; +const CONTAINER_BG = "#FFFFFF"; + +// Props for the login form (callback on successful login) +interface LoginFormProps { + onLoginSuccess: () => void; +} + +// Utility function to validate username format +function isValidUsername(username: string) { + if (username.length < 2) return false; + return /^[A-Za-z][A-Za-z0-9._-]*[A-Za-z0-9]$/.test(username); +} + +// Main login screen component +export default function LoginScreen(onLoginSuccess: LoginFormProps) { + const navigate = useNavigate(); + const dispatch = useDispatch(); + + // State for username and password inputs + const [username, setUsername] = useState(""); + const [password, setPassword] = useState(""); + + // State for error and UI feedback + const [error, setError] = useState(""); + const [showAlert, setShowAlert] = useState(false); + const [langModalOpen, setLangModalOpen] = useState(false); + const [selectedLanguage, setSelectedLanguage] = useState("en"); + const [showPassword, setShowPassword] = useState(false); + const [showUsernameError, setShowUsernameError] = useState(false); + + // Handler for login button click + const handleLogin = async () => { + try { + const credentials = { + username: username, + password: password, + }; + const success = await authService.loginWithPassword(credentials); + console.log("Login success status:", success); + + if (success) { + try { + const user = await getUserByUsername(username); + // console.log(user); + if (user) { + dispatch(setUser(user)); + } + } catch (userError) { + console.error("Failed to fetch user profile:", userError); + } + + // Redirect based on user role + const userRole = authService.getPrimaryRole(); + if (userRole === 'SERVICE_MANAGER') { + navigate("/service-manager/home"); + } else if (userRole === 'COMMISSIONER') { + navigate("/commissioner/home"); + } else if (userRole === 'ADMIN') { + navigate("/admin/home"); + } + else { + navigate("/login"); + } + + setShowAlert(false); + setError(""); + onLoginSuccess.onLoginSuccess(); + } else { + setError("Login failed. Please check your credentials."); + setShowAlert(true); + } + } catch { + setError("An error occurred during login."); + setShowAlert(true); + } + }; + + return ( + + {/* SVG Background image for the login page */} + + + {/* Logo at top right corner */} + + + + + + {/* Log In - Sign Up Container */} + + + {/* Log In Header with language selection */} + setLangModalOpen(true) }} /> + setLangModalOpen(false)} + onConfirm={() => setLangModalOpen(false)} + /> + + + + User Name + + + * + + + + + + {/* Username Input field */} + { + setUsername(e.target.value); + setShowUsernameError(false); + }} + onBlur={e => { + if (e.target.value && !isValidUsername(e.target.value)) { + setShowUsernameError(true); + } + }} + style={{ + width: '100%', + padding: '8.5px 14px', + marginBottom: '2px', + fontFamily: 'Roboto, sans-serif', + fontSize: '14px', + borderRadius: '15px', + minHeight: '48px', + border: showUsernameError ? '1px solid #D32F2F' : '1px solid rgba(0, 0, 0, 0.23)', + outline: 'none', + boxSizing: 'border-box', + transition: 'border-color 0.2s', + }} + onFocus={e => { + if (!showUsernameError) { + e.target.style.borderColor = '#C84C0E'; + } + }} + onBlurCapture={e => { + if (!showUsernameError) { + e.target.style.borderColor = 'rgba(0, 0, 0, 0.23)'; + } + }} + /> + + {showUsernameError + ? "Username must start with an alphabet and end with a letter/number." + : "Enter username to login"} + + + {/* Password input section */} + + + Password + + + * + + + + {/* Password Input with visibility toggle */} +
+ setPassword(e.target.value)} + className="no-password-reveal" + style={{ + width: '100%', + padding: '8.5px 40px 8.5px 14px', + fontFamily: 'Roboto, sans-serif', + fontSize: '14px', + borderRadius: '15px', + minHeight: '48px', + border: '1px solid rgba(0, 0, 0, 0.23)', + outline: 'none', + boxSizing: 'border-box', + transition: 'border-color 0.2s', + }} + onFocus={e => { + e.target.style.borderColor = '#C84C0E'; + }} + onBlur={e => { + e.target.style.borderColor = 'rgba(0, 0, 0, 0.23)'; + }} + /> + +
+ + {/* Forgot password link */} + + + Forgot Password + + + + {/* Error or warning alert for login issues */} + {showAlert && ( + + +
+ } + severity="warning" + sx={{ + background: "#FFEFD8", + color: "#444", + mt: 2, + mb: 2, + fontFamily: "Roboto, sans-serif", + borderRadius: "12px", + px: 2, + py: 1, + fontSize: 15, + alignItems: "center", + }} + > + {error ? error + : "Incorrect Username or Password. Please try again."} + + )} + + {/* Login button */} + + + +
+ + +
+ ); +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/pages/admin-pages/AdminHomePage.tsx b/frontend/web-ui/src/app/pages/admin-pages/AdminHomePage.tsx new file mode 100644 index 0000000..c938b21 --- /dev/null +++ b/frontend/web-ui/src/app/pages/admin-pages/AdminHomePage.tsx @@ -0,0 +1,91 @@ +import React from 'react'; +import { Box, Container } from '@mui/material'; +import { AdminSidebar } from '../../components/Sidebar/Admin_Sidebar'; +import { adminPrimaryItems } from '../../components/Sidebar/sidebarConfig'; +import { useAdminSidebar } from '../../components/Sidebar/provider/AdminSidebarProvider'; +import ProfileModal from '../../components/profile-modal/components/ProfileModal'; +import { mainContainerStyle, renderingContent } from '../../styles/HomePageStyle/HomePageStyle'; +import { AdminDashboard } from '../../features/it-admin-app-features/admin-dashboard/AdminDashboard'; +import { UserManagement } from '../../features/it-admin-app-features/user-management/UserManagement'; +import { DemandGeneration } from '../../features/it-admin-app-features/demand-generation/DemandGeneration'; +import MapConfiguration from '../../features/it-admin-app-features/map-configuration/Components/MapConfiguration'; +import NotificationManagement from '../../features/it-admin-app-features/notification-management/Components/NotificationManagement'; +import { AccessControl } from '../../features/it-admin-app-features/access-control/AccessControl'; +import UnderConstruction from '../../components/under-construction/UnderConstruction'; + +export const AdminHomePage: React.FC = () => { + const { + sideBarOpen, + toggleSideBar, + selectedNav, + handleNavSelection, + profileModalAnchor, + setProfileModalAnchor, + } = useAdminSidebar(); + + const handleCloseProfileModal = () => setProfileModalAnchor(null); + + // Render content based on selected nav item + const renderContent = () => { + switch (selectedNav) { + case 'dashboard': + return ; + case 'userManagement': + return ; + case 'demandGeneration': + return ; + case 'mapConfiguration': + return ; + case 'localization': + return ; + case 'accessControl': + return ; + case 'notificationManagement': + return ; + default: + return Dashboard Content; + } + }; + + return ( +
+ {/* Sidebar */} + + + {/* Main Content Area */} + + {/* Content */} + + {renderContent()} + + + +
+ ); +}; diff --git a/frontend/web-ui/src/app/pages/commisioner-pages/CommisionerHomePage.tsx b/frontend/web-ui/src/app/pages/commisioner-pages/CommisionerHomePage.tsx new file mode 100644 index 0000000..e71b7a8 --- /dev/null +++ b/frontend/web-ui/src/app/pages/commisioner-pages/CommisionerHomePage.tsx @@ -0,0 +1,91 @@ +// Commissioner Home Page for the property tax web UI +// Handles sidebar navigation and renders dashboard, application inbox, search, and profile modal + +import React from 'react'; +import { Box, Container } from '@mui/material'; +import { commissionerPrimaryItems } from '../../components/Sidebar/sidebarConfig'; +import { mainContainerStyle, renderingContent } from "../../styles/HomePageStyle/HomePageStyle"; +import ApplicationInbox from '../../features/service-manager-app-features/application-inbox/components/ApplicationInbox'; +import SearchProperty from '../../features/service-manager-app-features/search-property/components/SearchProperty'; +import AllApplications from '../../features/comissioner-app-features/all-applications/components/AllApplications'; +import { CommissionerSidebar } from '../../components/Sidebar/CM_Sidebar'; +import { useCommissionerSidebar } from '../../components/Sidebar/provider/CMSideBarProvider'; +import ProfileModal from '../../components/profile-modal/components/ProfileModal'; +import CommissionerDashBoard from '../../features/comissioner-app-features/Com_DashBoard/Components/Coms_DashBoardLayout'; + +export // Main content component for the Commissioner Home Page +const CommisionerHomePage: React.FC = () => { + // Sidebar and navigation state from context + const { + sideBarOpen, + toggleSideBar, + selectedNav, + handleNavSelection, + allApplicationsToggle, + setAllApplicationsToggle, + profileModalAnchor, + setProfileModalAnchor, + } = useCommissionerSidebar(); + + // Handler to close the profile modal + const handleCloseProfileModal = () => setProfileModalAnchor(null); + + // Render content based on selected navigation item + const renderContent = () => { + switch (selectedNav) { + case 'dashboard': + return ; + case 'applicationApproval': + return ; + case 'searchProperty': + return ; + case 'allApplications': + return ; + default: + return
Dashboard Content
; + } + }; + + return ( +
+ {/* Sidebar navigation for the commissioner */} + + + {/* Main content area, adjusts width based on sidebar state */} + + {/* Renders the selected page content */} + + {renderContent()} + + + {/* Profile modal for user account actions */} + +
+ ); +}; diff --git a/frontend/web-ui/src/app/pages/commisioner-pages/CommissionerPropertyDetailsPage.tsx b/frontend/web-ui/src/app/pages/commisioner-pages/CommissionerPropertyDetailsPage.tsx new file mode 100644 index 0000000..ad88492 --- /dev/null +++ b/frontend/web-ui/src/app/pages/commisioner-pages/CommissionerPropertyDetailsPage.tsx @@ -0,0 +1,79 @@ +// Commissioner Property Details Page for viewing details of a specific property application +// Includes sidebar navigation, property details, and profile modal + +import { commissionerPrimaryItems } from "../../components/Sidebar/sidebarConfig"; +import { Box, Container } from "@mui/material"; +import { mainContainerStyle, renderingContent } from "../../styles/HomePageStyle/HomePageStyle"; +import ProfileModal from "../../components/profile-modal/components/ProfileModal"; +import { useParams } from "react-router-dom"; +import { CommissionerProperties } from "../../features/comissioner-app-features/property-approval/components/properties"; +import { CommissionerSidebar } from "../../components/Sidebar/CM_Sidebar"; +import { useCommissionerSidebar } from "../../components/Sidebar/provider/CMSideBarProvider"; + +// Props for the property details page (optional propertyId) +interface PropertyDetailsPageProps { + propertyId?: string; +} + +// Main component for the Commissioner Property Details Page +export const CommissionerPropertyDetailsPage: React.FC = () => { + + const { + sideBarOpen, + toggleSideBar, + selectedNav, + handleNavSelection, + allApplicationsToggle, + setAllApplicationsToggle, + profileModalAnchor, + setProfileModalAnchor, + } = useCommissionerSidebar(); + + + // Handler to close the profile modal + const handleCloseProfileModal = () => setProfileModalAnchor(null); + + // Get application ID from route parameters + const { applicationID } = useParams<{ applicationID: string }>(); + + return ( +
+ {/* Sidebar navigation for the commissioner */} + + + {/* Main content area, adjusts width based on sidebar state */} + + {/* Renders the property details for the selected application */} + + + + + + {/* Profile Modal anchored to the Profile button */} + +
+ ) +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/pages/loading-page/LoadingPage.tsx b/frontend/web-ui/src/app/pages/loading-page/LoadingPage.tsx new file mode 100644 index 0000000..2096577 --- /dev/null +++ b/frontend/web-ui/src/app/pages/loading-page/LoadingPage.tsx @@ -0,0 +1,66 @@ +import React from 'react'; +import { Box, styled, keyframes, Typography } from '@mui/material'; + +// Keyframes for the wave animation +const wave = keyframes` + 0%, 100% { + transform: translateY(0); + } + 50% { + transform: translateY(-20px); + } +`; + +// Styled component for each dot +const Dot = styled(Box)(({ theme }) => ({ + width: '16px', + height: '16px', + borderRadius: '50%', + backgroundColor: theme.palette.primary.main, + animation: `${wave} 1.2s ease-in-out infinite`, + '&:nth-of-type(2)': { + animationDelay: '0.2s', + }, + '&:nth-of-type(3)': { + animationDelay: '0.4s', + }, +})); + +// Container for the dots +const LoaderContainer = styled(Box)({ + display: 'flex', + flexDirection: 'column', + justifyContent: 'center', + alignItems: 'center', + gap: '24px', + height: '100vh', + backgroundColor: '#f5f5f5', +}); + +interface LoadingPageProps { + message?: string; +} + +const LoadingPage: React.FC = ({ message = 'Loading...' }) => { + return ( + + + + + + + + {message} + + + ); +}; + +export default LoadingPage; \ No newline at end of file diff --git a/frontend/web-ui/src/app/pages/map-pages/mapviewzones.tsx b/frontend/web-ui/src/app/pages/map-pages/mapviewzones.tsx new file mode 100644 index 0000000..e7218f8 --- /dev/null +++ b/frontend/web-ui/src/app/pages/map-pages/mapviewzones.tsx @@ -0,0 +1,190 @@ +// Map View Zones page for the property tax web UI +// Displays a map with property zones, sidebar navigation, and zone selection logic + +import React, { useState, useEffect } from 'react' +import MapView from '../../features/comissioner-app-features/property-approval/components/mapview' +import SearchInfo from '../../features/comissioner-app-features/property-approval/components/SearchInfo' +import MapHeading from '../../features/comissioner-app-features/property-approval/components/MapHeading' +import { jurisdictionDropdownStyles } from '../../styles/HomePageStyle/HomePageStyle' +import Box from '@mui/material/Box' +import { JurisdictionDropdown } from '../../components/JurisdictionDropdown/JurisdictionDropdown' + +type ZoneData = { + zoneName: string + wardNumber: string + totalProperties: number + compliance: number + backgroundColor?: string +} + +// Main component for viewing property zones on a map +const MapViewZones: React.FC = () => { + // State for selected zone, list of zones, loading, and sidebar + const [selectedZone, setSelectedZone] = useState(null) + const [zones, setZones] = useState([]) + const [loading, setLoading] = useState(true) + + // Safe-cast MapView to allow passing an optional prop + const MapViewAny = MapView as unknown as React.ComponentType<{ selectedZone?: string | null }> + + useEffect(() => { + const fetchZonesFromGeoJSON = async () => { + try { + const response = await fetch('/wards.geojson') + const geoJsonData = await response.json() + + const getComplianceColor = (compliance: number) => { + if (compliance >= 90) return '#D4EDDA' // Light green for 90% and above + if (compliance >= 70) return '#FFF3CD' // Light yellow for 70-89% + return '#F8D7DA' // Light red for below 70% + } + + // Group wards by Corporatio (zone) + const zoneMap = new Map() + + geoJsonData.features.forEach((feature: any) => { + const zoneName = feature.properties.Corporatio + if (zoneName) { + zoneMap.set(zoneName, (zoneMap.get(zoneName) || 0) + 1) + } + }) + + // Hardcoded compliance and total properties data for each zone + const zoneDataMap: Record = { + 'Central': { totalProperties: 1256, compliance: 78 }, + 'East': { totalProperties: 1425, compliance: 65 }, + 'West': { totalProperties: 982, compliance: 85 }, + 'South': { totalProperties: 1678, compliance: 92 }, + 'North': { totalProperties: 1123, compliance: 58 } + } + + // Create zones array with fetched zone names and ward counts + const zonesArray: ZoneData[] = Array.from(zoneMap.entries()).map(([zoneName, wardCount]) => { + const data = zoneDataMap[zoneName] || { totalProperties: 1000, compliance: 70 } + return { + zoneName: `${zoneName} Zone`, + wardNumber: `${wardCount} Ward${wardCount > 1 ? 's' : ''}`, + totalProperties: data.totalProperties, + compliance: data.compliance, + backgroundColor: getComplianceColor(data.compliance) + } + }) + + setZones(zonesArray) + setLoading(false) + } catch (error) { + console.error('Error loading GeoJSON:', error) + setLoading(false) + } + } + + fetchZonesFromGeoJSON() + }, []) + + // Handler for selecting a zone + const handleZoneSelect = (zoneName: string) => { + setSelectedZone(zoneName) + // Notify MapView (or any listener) via window event + window.dispatchEvent(new CustomEvent('zoneSelected', { detail: { zoneName } })) + } + + // Handler for clearing zone selection + const handleBack = () => { + setSelectedZone(null) + window.dispatchEvent(new CustomEvent('zoneSelectionCleared')) + } + + + const fullHeightMapWrapperStyle: React.CSSProperties = { + width: '100%', + height: '100%', + position: 'relative', + flex: 1, + display: 'flex', + flexDirection: 'column', + } + + // Show loading state while fetching zones + if (loading) { + return ( + + {/* Jurisdiction Dropdown - Fixed at top right */} + + + + + {/* Topbar */} + + + {/* Main content area - Map */} + +
+ + +
+
+
+ ) + } + + // Render the main map view with zones and sidebar + return ( + + {/* Jurisdiction Dropdown - Fixed at top right */} + + + + + {/* Topbar */} + + + {/* Main content area - Map */} + +
+ + +
+
+
+ ) +} + +export default MapViewZones \ No newline at end of file diff --git a/frontend/web-ui/src/app/pages/service-manager-pages/PropertyDetailsPage.tsx b/frontend/web-ui/src/app/pages/service-manager-pages/PropertyDetailsPage.tsx new file mode 100644 index 0000000..db505a2 --- /dev/null +++ b/frontend/web-ui/src/app/pages/service-manager-pages/PropertyDetailsPage.tsx @@ -0,0 +1,74 @@ +// Property Details Page for the Service Manager role +// Displays property details for a specific application, with sidebar navigation and profile modal + +import { useParams } from "react-router-dom"; +import { Container, Box } from "@mui/material"; +import { serviceManagerPrimaryItems } from "../../components/Sidebar/sidebarConfig"; +import ProfileModal from "../../components/profile-modal/components/ProfileModal"; +import * as HomePageStyle from "../../styles/HomePageStyle/HomePageStyle"; +import { useSidebar } from "../../components/Sidebar/provider/SMSideBarProvider"; +import { Sidebar } from "../../components/Sidebar/SM_Sidebar"; +import { Properties } from "../../features/service-manager-app-features/application-view/components/properties"; + +// Main component for the Service Manager's property details page +export const PropertyDetailsPage: React.FC = () => { + // Get application ID from route parameters + const { applicationID } = useParams<{ applicationID: string }>(); + + // Sidebar and navigation state from context + const { + sideBarOpen, + toggleSideBar, + selectedNav, + handleNavSelection, + allApplicationsToggle, + setAllApplicationsToggle, + profileModalAnchor, + setProfileModalAnchor + } = useSidebar(); + + // Handler to close the profile modal + const handleCloseProfileModal = () => setProfileModalAnchor(null); + + return ( + <> + {/* Sidebar navigation for the service manager */} + + {/* Main content area, adjusts width based on sidebar state */} + + + {/* Renders the property details for the selected application */} + + + + {/* Profile Modal anchored to the Profile button */} + + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/pages/service-manager-pages/ServiceHomePage.tsx b/frontend/web-ui/src/app/pages/service-manager-pages/ServiceHomePage.tsx new file mode 100644 index 0000000..c1ea70a --- /dev/null +++ b/frontend/web-ui/src/app/pages/service-manager-pages/ServiceHomePage.tsx @@ -0,0 +1,93 @@ +// Service Home Page for the Service Manager role +// Handles sidebar navigation and renders dashboard, application inbox, search, map, and profile modal + +import React from "react"; +import { Container, Box } from "@mui/material"; +import { serviceManagerPrimaryItems } from '../../components/Sidebar/sidebarConfig' +import * as HomePageStyle from "../../styles/HomePageStyle/HomePageStyle"; +import ServiceManagerDashboard from "../../features/service-manager-app-features/service-manager-dashboard/components/ServiceManagerDashboard/ServiceManagerDashboard"; +import ProfileModal from '../../components/profile-modal/components/ProfileModal'; +import MapViewZones from '../map-pages/mapviewzones'; +import { useSidebar } from "../../components/Sidebar/provider/SMSideBarProvider"; +import ApplicationInbox from "../../features/service-manager-app-features/application-inbox/components/ApplicationInbox"; +import SearchProperty from "../../features/service-manager-app-features/search-property/components/SearchProperty"; +import AllApplications from "../../features/service-manager-app-features/all-applications/components/AllApplications"; +import { Sidebar } from "../../components/Sidebar/SM_Sidebar"; + +// Main component for the Service Manager's home page +export const ServiceHomePage: React.FC = () => { + // Sidebar and navigation state from context + const { + sideBarOpen, + toggleSideBar, + selectedNav, + handleNavSelection, + allApplicationsToggle, + setAllApplicationsToggle, + profileModalAnchor, + setProfileModalAnchor + } = useSidebar(); + + // Handler to close the profile modal + const handleCloseProfileModal = () => setProfileModalAnchor(null); + + // Render content based on selected navigation item + const renderContent = () => { + switch (selectedNav) { + case 'dashboard': + return ; + case 'applicationInbox': + return ; + case 'searchProperty': + return ; + case 'allApplications': + return ; + case 'mapView': + return + default: + return ; + } + }; + + return ( + <> + {/* Sidebar navigation for the service manager */} + + {/* Main content area, adjusts width based on sidebar state */} + + + {/* Renders the selected page content */} + {renderContent()} + + + {/* Profile Modal anchored to the Profile button */} + + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/routes/AdminRoutes.tsx b/frontend/web-ui/src/app/routes/AdminRoutes.tsx new file mode 100644 index 0000000..6f6ed0e --- /dev/null +++ b/frontend/web-ui/src/app/routes/AdminRoutes.tsx @@ -0,0 +1,11 @@ +import { Routes, Route } from 'react-router-dom'; +import { AdminHomePage } from '../pages/admin-pages/AdminHomePage'; + +export const AdminRoutes = () => { + return ( + + } /> + } /> + + ); +}; diff --git a/frontend/web-ui/src/app/routes/CommissionerRoutes.tsx b/frontend/web-ui/src/app/routes/CommissionerRoutes.tsx new file mode 100644 index 0000000..c52140b --- /dev/null +++ b/frontend/web-ui/src/app/routes/CommissionerRoutes.tsx @@ -0,0 +1,19 @@ +// Route definitions for the Commissioner section of the property tax web UI +// Maps commissioner URLs to their respective page components + +import { Routes, Route } from 'react-router-dom'; +import { CommisionerHomePage } from '../pages/commisioner-pages/CommisionerHomePage'; +import { CommissionerPropertyDetailsPage } from '../pages/commisioner-pages/CommissionerPropertyDetailsPage'; + +// Main route component for commissioner pages +export const CommissionerRoutes = () => { + return ( + + {/* Home page route for commissioner (default and /home) */} + } /> + } /> + {/* Property details page for a specific application */} + } /> + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/routes/ServiceManagerRoutes.tsx b/frontend/web-ui/src/app/routes/ServiceManagerRoutes.tsx new file mode 100644 index 0000000..c686d21 --- /dev/null +++ b/frontend/web-ui/src/app/routes/ServiceManagerRoutes.tsx @@ -0,0 +1,19 @@ +// Route definitions for the Service Manager section of the property tax web UI +// Maps service manager URLs to their respective page components + +import { Routes, Route } from 'react-router-dom'; +import { PropertyDetailsPage } from '../pages/service-manager-pages/PropertyDetailsPage'; +import { ServiceHomePage } from '../pages/service-manager-pages/ServiceHomePage'; + +// Main route component for service manager pages +export const ServiceManagerRoutes = () => { + return ( + + {/* Home page route for service manager (default and /home) */} + } /> + } /> + {/* Property details page for a specific application */} + } /> + + ); +}; \ No newline at end of file diff --git a/frontend/web-ui/src/app/styles/HomePageStyle/HomePageStyle.ts b/frontend/web-ui/src/app/styles/HomePageStyle/HomePageStyle.ts new file mode 100644 index 0000000..a7a36bf --- /dev/null +++ b/frontend/web-ui/src/app/styles/HomePageStyle/HomePageStyle.ts @@ -0,0 +1,27 @@ +// Style objects for main layout and UI elements on the home page + +// Main container style for the page, adjusts width and margin based on sidebar state +export const mainContainerStyle = { + marginLeft: (open: boolean) => (open ? '18vw' : '5vw'), + width: (open: boolean) => open ? '82vw' : '95vw', + transition: 'margin-left 0.25s ease', + height: '100vh', + overflowX: 'hidden', + overflowY: 'auto', + scrollbarWidth: 'none', + position: 'relative', +}; + +// Style for the jurisdiction dropdown, fixed at the top right +export const jurisdictionDropdownStyles = { + position: 'absolute', + top: '20px', + right: '24px', + zIndex: 200, + boxShadow: '0 4px 10px rgba(15,23,42,0.04)', +}; + +// Style for the main content area, adjusts width based on sidebar state +export const renderingContent = { + width: (open: boolean) => open ? '82vw' : '95vw', +}; diff --git a/frontend/web-ui/src/app/styles/JurisdictionDropdownStyle/JurisdictionDropdownStyle.ts b/frontend/web-ui/src/app/styles/JurisdictionDropdownStyle/JurisdictionDropdownStyle.ts new file mode 100644 index 0000000..0da30c9 --- /dev/null +++ b/frontend/web-ui/src/app/styles/JurisdictionDropdownStyle/JurisdictionDropdownStyle.ts @@ -0,0 +1,92 @@ +// Style objects and functions for the Jurisdiction Dropdown component +// Used for styling the dropdown, menu, and items in the UI + +// Style for the main dropdown box, with dynamic background and hover color +export const jurisdictionDropdownBox = (backgroundColor: string, hoverBackgroundColor: string) => ({ + width: '260px', + height: '60px', + backgroundColor: backgroundColor, + borderRadius: '12px', + display: 'flex', + alignItems: 'center', + justifyContent: 'space-between', + padding: '0 16px', + cursor: 'pointer', + transition: 'all 0.2s ease', + '&:hover': { + backgroundColor: hoverBackgroundColor, + boxShadow: '0 2px 8px rgba(0, 0, 0, 0.1)', + }, +}); + +// Style for the row containing jurisdiction info and icon +export const jurisdictionInfoRow = { + display: 'flex', + alignItems: 'center', + gap: 1.5, +}; + +// Style for the location icon in the dropdown +export const locationIcon = { + fontSize: 28, + color: '#333', +}; + +// Style for the jurisdiction label text +export const jurisdictionLabel = { + fontSize: '11px', + color: '#666', + fontFamily: 'Roboto, sans-serif', + fontWeight: 400, + lineHeight: 1.2, + mb: 0.3, +}; + +// Style for the jurisdiction name text +export const jurisdictionName = { + fontSize: '12px', + color: '#222', + fontFamily: 'Roboto, sans-serif', + fontWeight: 500, + lineHeight: 1.2, +}; + +// Style for the dropdown arrow icon, rotates when open +export const dropdownArrow = (open: boolean) => ({ + fontSize: 22, + color: '#333', + transform: open ? 'rotate(180deg)' : 'rotate(0deg)', + transition: 'transform 0.2s ease', +}); + +// Style for the dropdown menu container +export const dropdownMenu = { + mt: 1, + '& .MuiPaper-root': { + width: '260px', + borderRadius: '12px', + boxShadow: '0 4px 12px rgba(0, 0, 0, 0.15)', + backgroundColor: '#fff', + }, +}; + +// Style for each dropdown menu item, with dynamic selection and hover colors +export const dropdownMenuItem = ( + selected: boolean, + selectedBackgroundColor: string, + hoverBackgroundColor: string +) => ({ + fontFamily: 'Roboto, sans-serif', + fontSize: '12px', + py: 1.5, + px: 2, + '&.Mui-selected': { + backgroundColor: `${selectedBackgroundColor} !important`, + '&:hover': { + backgroundColor: `${hoverBackgroundColor} !important`, + }, + }, + '&:hover': { + backgroundColor: selected ? undefined : hoverBackgroundColor, + }, +}); \ No newline at end of file diff --git a/frontend/web-ui/src/app/styles/Login-SignUpStyle/login-signup.css b/frontend/web-ui/src/app/styles/Login-SignUpStyle/login-signup.css new file mode 100644 index 0000000..e5c0905 --- /dev/null +++ b/frontend/web-ui/src/app/styles/Login-SignUpStyle/login-signup.css @@ -0,0 +1,18 @@ +/* Hide browser's default password reveal button */ + +/* 1. Hide the "reveal password" eye icon in Internet Explorer and Edge (legacy) */ +input.no-password-reveal::-ms-reveal, +/* 2. Hide the "clear input" X button in Internet Explorer and Edge (legacy) */ +input.no-password-reveal::-ms-clear { + display: none; /* Completely removes these buttons from view */ +} + +/* 3. Hide the autofill credentials button in Chrome/Safari/Edge (Chromium) */ +input.no-password-reveal::-webkit-credentials-auto-fill-button, +/* 4. Hide the autofill contacts button in Chrome/Safari/Edge (Chromium) */ +input.no-password-reveal::-webkit-contacts-auto-fill-button { + visibility: hidden; /* Makes the button invisible but still takes up space */ + pointer-events: none; /* Disables all mouse interactions (clicks, hovers, etc.) */ + position: absolute; /* Takes it out of normal document flow */ + right: 0; /* Positions it at the right edge (though it's already hidden) */ +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/styles/PaginationStyle/PaginationControlsStyle.ts b/frontend/web-ui/src/app/styles/PaginationStyle/PaginationControlsStyle.ts new file mode 100644 index 0000000..2458d8f --- /dev/null +++ b/frontend/web-ui/src/app/styles/PaginationStyle/PaginationControlsStyle.ts @@ -0,0 +1,28 @@ +// Style object for pagination controls in the UI +// Customizes the appearance of pagination items and selected state + +import type { SxProps, Theme } from "@mui/material"; + +// Style for the pagination component and its items +export const paginationStyleSx: SxProps = { + "& .MuiPaginationItem-root": { + color: "#c84c03", + borderColor: "#c84c03", + "&:hover": { + backgroundColor: "rgba(200, 76, 3, 0.08)", + color: "#c84c03", + }, + }, + "& .MuiPaginationItem-root.Mui-selected": { + backgroundColor: "#c84c03", + color: "#fff", + "&:hover": { + backgroundColor: "#a23c02", + color: "#fff", + }, + }, + "& .Mui-selected": { + backgroundColor: "#c84c03", + color: "#fff", + }, +} \ No newline at end of file diff --git a/frontend/web-ui/src/app/styles/SideBar/SidebarStyle.ts b/frontend/web-ui/src/app/styles/SideBar/SidebarStyle.ts new file mode 100644 index 0000000..0fb3e85 --- /dev/null +++ b/frontend/web-ui/src/app/styles/SideBar/SidebarStyle.ts @@ -0,0 +1,132 @@ +export const sidebarNavBox = (open: boolean, primaryColor: string = '#FBEEE8') => ({ + position: 'fixed', + display: 'flex', + flexDirection: 'column', + height: '100vh', + width: open ? '18vw' : '5vw', + flexShrink: 0, + bgcolor: primaryColor, + borderRight: '1px solid #e0cfc7', + transition: 'width 0.25s ease', + overflowX: 'hidden', + overflow: 'hidden', + boxSizing: 'border-box', + paddingTop: 2, + paddingBottom: 2, + zIndex: 1200, +}); + +// Style for the row containing the sidebar toggle button +export const sidebarToggleRow = (open: boolean) => ({ + display: 'flex', + alignItems: 'center', + justifyContent: open ? 'flex-start' : 'center', + px: open ? 2 : 0, + mb: 2, +}); + +export const sidebarToggleButton = (secondaryColor: string = '#F4D5C6') => ({ + bgcolor: secondaryColor, + border: `1px solid ${secondaryColor}`, + '&:hover': { bgcolor: secondaryColor }, + transition: 'transform 0.25s', +}); + +// Style for the navigation list container +export const navList = { + px: 0, +}; + +// Style for primary navigation list items +export const primaryListItem = (open: boolean) => ({ + display: 'block', + mb: open ? 1.5 : 2, +}); + +export const navListItemButton = (isSelected: boolean, open: boolean, secondaryColor: string = '#F4D5C6') => ({ + mx: open ? 2 : 1, + justifyContent: open ? 'flex-start' : 'center', + borderRadius: 28, + height: 38, + // px: open ? 2 : 0, + transition: 'background-color 0.15s ease, color 0.15s ease, padding 0.25s', + ...(isSelected + ? { + bgcolor: secondaryColor, + '&:hover': { bgcolor: secondaryColor }, + } + : { + '&:hover': { bgcolor: secondaryColor }, + }), +}); + +// Style for the icon in navigation list items (primary) +export const listItemIcon = (open: boolean) => ({ + minWidth: 0, + mr: open ? 1.5 : 0, + color: '#1a1a1a', + display: 'flex', + justifyContent: 'center', +}); + +// Style for the text in navigation list items +export const listItemText = (_isSelected: boolean) => ({ + // whiteSpace: 'nowrap', + color: '#000', + fontSize: 13, + fontWeight: 600, +}); + +// Style for secondary navigation list items +export const secondaryListItem = (open: boolean) => ({ + display: 'block', + mb: open ? 1.5 : 2, +}); + +export const navListItemButtonSecondary = (isSelected: boolean, open: boolean, secondaryColor: string = '#F4D5C6') => ({ + mx: open ? 2 : 1, + justifyContent: open ? 'flex-start' : 'center', + borderRadius: 28, + height: 38, + // px: open ? 2 : 0, + transition: 'background-color 0.15s ease, color 0.15s ease, padding 0.25s', + ...(isSelected + ? { + bgcolor: secondaryColor, + '&:hover': { bgcolor: secondaryColor }, + } + : { + '&:hover': { bgcolor: secondaryColor }, + }), +}); + +// Style for the icon in navigation list items (secondary) +export const listItemIconSecondary = (open: boolean) => ({ + minWidth: 0, + mr: open ? 1.5 : 0, + display: 'flex', + justifyContent: 'center', + color: '#1a1a1a', +}); + +export const languageIconBox = (secondaryColor: string = '#F4D5C6') => ({ + width: 32, + height: 32, + borderRadius: '50%', + bgcolor: secondaryColor, + display: 'flex', + alignItems: 'center', + justifyContent: 'center', + color: '#fff', + fontSize: 22, +}); + +// Style for the divider between sections in the sidebar +export const dividerStyle = (open: boolean) => ({ + mx: open ? 2 : 0, + my: 1, + borderColor: '#e6d5ce', +}); + +// Spacer to push content to the top of the sidebar +export const bottomSpacer = { flexGrow: 1 }; \ No newline at end of file diff --git a/frontend/web-ui/src/index.css b/frontend/web-ui/src/index.css new file mode 100644 index 0000000..95fab1d --- /dev/null +++ b/frontend/web-ui/src/index.css @@ -0,0 +1,26 @@ + +:root { + font-family: 'Roboto', system-ui, sans-serif; + font-synthesis: none; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + width: 100vw; + height: 100vh; + background: #E5E5E5; + /* min-width: 768px; */ +} + + +/* Enable this to lock screen only till for Tablet view */ +/* html { + min-width: 768px; /*asdf +} */ + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + + diff --git a/frontend/web-ui/src/lib/i18n.ts b/frontend/web-ui/src/lib/i18n.ts new file mode 100644 index 0000000..e69de29 diff --git a/frontend/web-ui/src/lib/lodash.ts b/frontend/web-ui/src/lib/lodash.ts new file mode 100644 index 0000000..e69de29 diff --git a/frontend/web-ui/src/lib/utils.ts b/frontend/web-ui/src/lib/utils.ts new file mode 100644 index 0000000..e69de29 diff --git a/frontend/web-ui/src/main.tsx b/frontend/web-ui/src/main.tsx new file mode 100644 index 0000000..41f4936 --- /dev/null +++ b/frontend/web-ui/src/main.tsx @@ -0,0 +1,34 @@ +// Main entry point for the React application +// Sets up global providers, Redux store, persistence, and authentication context + +import { StrictMode } from 'react' +import { createRoot } from 'react-dom/client' +import './index.css' +import 'leaflet/dist/leaflet.css' +import App from './App.tsx' +import '@fontsource/roboto/300.css'; +import '@fontsource/roboto/400.css'; +import '@fontsource/roboto/500.css'; +import '@fontsource/roboto/700.css'; +import { AuthProvider } from './app/features/login-signup/provider/AuthProvider.tsx'; +import { Provider } from 'react-redux'; +import { PersistGate } from 'redux-persist/integration/react'; +import { store, persistor } from './store'; + +// Render the root React component into the DOM +createRoot(document.getElementById('root')!).render( + // StrictMode helps with highlighting potential problems in development + + {/* Redux Provider makes the store available to all components */} + + {/* PersistGate delays rendering until persisted state is loaded */} + + {/* AuthProvider supplies authentication context to the app */} + + {/* Main App component containing routes and UI */} + + + + + +) \ No newline at end of file diff --git a/frontend/web-ui/src/store/apiSlice.ts b/frontend/web-ui/src/store/apiSlice.ts new file mode 100644 index 0000000..5a7e38c --- /dev/null +++ b/frontend/web-ui/src/store/apiSlice.ts @@ -0,0 +1,45 @@ +// Redux Toolkit API slice for making server requests and managing API state +// Sets up base query, authentication headers, and global tag types for cache management + +import authService from '../app/features/login-signup/services/AuthService'; + +import { ALL_TAG_TYPES } from './tagTypes' +import { SERVER_URL } from '../utils/constants' + +import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react' + +// Define a service using a base URL and expected endpoints +export const apiSlice = createApi({ + reducerPath: 'api', + // Configure the base query for all API requests + baseQuery: fetchBaseQuery({ + baseUrl: SERVER_URL, + + // Prepare headers for each request, including authentication + prepareHeaders: async (headers, { getState: _getState }) => { + // Add auth token if available + // const state = getState() as RootState + // const token = state.auth.token + + // Get token directly from localStorage + // const token = localStorage.getItem('access_token'); + + // Use AuthService to get a valid token (handles refresh automatically) + headers.set('content-type', 'application/json') + headers.set('X-Tenant-ID', 'pb.amritsar') + headers.set('X-User-Role', 'SERVICE_MANAGER') + const token = await authService.getValidToken(); + // console.log("token added"); + if (token) { + headers.set('authorization', `Bearer ${token}`) + } + return headers + }, + }), + // Global tags for cache invalidation + tagTypes: ALL_TAG_TYPES, + // Define endpoints in feature-specific API slices that extend this base + endpoints: () => ({}), +}) + +export default apiSlice diff --git a/frontend/web-ui/src/store/filestoreApiSlice.ts b/frontend/web-ui/src/store/filestoreApiSlice.ts new file mode 100644 index 0000000..62d0351 --- /dev/null +++ b/frontend/web-ui/src/store/filestoreApiSlice.ts @@ -0,0 +1,22 @@ +// Redux Toolkit API slice for file storage operations +// Sets up base query for file upload/download and manages API state for filestore + +import { ALL_TAG_TYPES } from './tagTypes' +import { FILESTORE_URL } from '../utils/constants' + +import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react' + +// Define a service for file storage using a base URL and expected endpoints +export const filestoreApiSlice = createApi({ + reducerPath: 'filestoreApi', + // Configure the base query for all filestore API requests + baseQuery: fetchBaseQuery({ + baseUrl: FILESTORE_URL, + }), + // Global tags for cache invalidation + tagTypes: ALL_TAG_TYPES, + // Define endpoints in feature-specific API slices that extend this base + endpoints: () => ({}), +}) + +export default filestoreApiSlice diff --git a/frontend/web-ui/src/store/index.ts b/frontend/web-ui/src/store/index.ts new file mode 100644 index 0000000..236830c --- /dev/null +++ b/frontend/web-ui/src/store/index.ts @@ -0,0 +1,57 @@ +// Redux store setup for the property tax web UI +// Configures reducers, middleware, persistence, and API slices + +import { configureStore } from '@reduxjs/toolkit'; +import { setupListeners } from '@reduxjs/toolkit/query/react'; +import { persistStore, persistReducer } from 'redux-persist'; +import storage from 'redux-persist/lib/storage'; +import { apiSlice } from './apiSlice'; +import { filestoreApiSlice } from './filestoreApiSlice'; +import applicationReducer from '../app/features/service-manager-app-features/application-view/redux/apiSlice'; +import { onboardingApiSlice } from './onboardingApiSlice'; +import filterReducer from '../app/features/service-manager-app-features/application-inbox/store/filterSlice'; +import userReducer from './userSlice'; +import { mdmsApi } from '../app/features/service-manager-app-features/application-view/api/mdmsService/mdmsApi'; + +// Configuration for persistence of user state +const userPersistConfig = { + key: 'userState', + storage: storage, + whitelist: ['currentUser'], // specify which parts of user state to persist +}; + +// Wrap user reducer with persistence +const persistedUserReducer = persistReducer(userPersistConfig, userReducer); + +// Main Redux store configuration +export const store = configureStore({ + reducer: { + [apiSlice.reducerPath]: apiSlice.reducer, + application: applicationReducer, + [onboardingApiSlice.reducerPath]: onboardingApiSlice.reducer, + [filestoreApiSlice.reducerPath]: filestoreApiSlice.reducer, + [mdmsApi.reducerPath]: mdmsApi.reducer, + filter: filterReducer, + user: persistedUserReducer, + }, + middleware: (getDefaultMiddleware) => + getDefaultMiddleware({ + serializableCheck: { + ignoredActions: ['persist/PERSIST'], + }, + }) + .concat(apiSlice.middleware) + .concat(filestoreApiSlice.middleware) + .concat(onboardingApiSlice.middleware) + .concat(mdmsApi.middleware) +}); + +// Enable refetchOnFocus/refetchOnReconnect behaviors for RTK Query +setupListeners(store.dispatch); + +// Persistor for redux-persist +export const persistor = persistStore(store); +// RootState and AppDispatch types for use throughout the app +export type RootState = ReturnType; +export type AppDispatch = typeof store.dispatch; + diff --git a/frontend/web-ui/src/store/mdmsApiSlice.ts b/frontend/web-ui/src/store/mdmsApiSlice.ts new file mode 100644 index 0000000..13da827 --- /dev/null +++ b/frontend/web-ui/src/store/mdmsApiSlice.ts @@ -0,0 +1,28 @@ +import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react' +import { ALL_TAG_TYPES } from './tagTypes' +// import { MDMS_URL } from '../utils/constants' +import { authService } from '../app/features/login-signup/services/AuthService' + +// MDMS base URL +export const MDMS_BASE_URL = `${import.meta.env.VITE_MDMS_HOST}/mdms-v2/v2` + +export const mdmsApiSlice = createApi({ + reducerPath: 'mdmsApi', + baseQuery: fetchBaseQuery({ + baseUrl: MDMS_BASE_URL, + prepareHeaders: async (headers) => { + headers.set('content-type', 'application/json') + headers.set('X-Tenant-ID', 'pb.amritsar') + headers.set('X-Client-Id', 'test-client') + const token = await authService.getValidToken?.() + if (token) { + headers.set('authorization', `Bearer ${token}`) + } + return headers + }, + }), + tagTypes: ALL_TAG_TYPES, + endpoints: () => ({}), +}) + +export default mdmsApiSlice \ No newline at end of file diff --git a/frontend/web-ui/src/store/onboardingApiSlice.ts b/frontend/web-ui/src/store/onboardingApiSlice.ts new file mode 100644 index 0000000..5cc9bc8 --- /dev/null +++ b/frontend/web-ui/src/store/onboardingApiSlice.ts @@ -0,0 +1,44 @@ +// Redux Toolkit API slice for onboarding-related server requests +// Sets up base query, authentication headers, and global tag types for onboarding features + +// import type { RootState } from './index' +import authService from '../app/features/login-signup/services/AuthService'; + +import { ALL_TAG_TYPES } from './tagTypes' +import { ONBOARDING_URL } from '../utils/constants' + +import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react' + +// Define a service using a base URL and expected endpoints +export const onboardingApiSlice = createApi({ + reducerPath: 'onboardingApi', + // Configure the base query for all onboarding API requests + baseQuery: fetchBaseQuery({ + baseUrl: ONBOARDING_URL, + + // Prepare headers for each request, including authentication + prepareHeaders: async (headers, { getState: _getState }) => { + // Add auth token if available + // const state = getState() as RootState + // const token = state.auth.token + + // Get token directly from localStorage + // const token = localStorage.getItem('access_token'); + + // Use AuthService to get a valid token (handles refresh automatically) + const token = await authService.getValidToken(); + console.log("token added"); + if (token) { + headers.set('authorization', `Bearer ${token}`) + } + headers.set('content-type', 'application/json') + return headers + }, + }), + // Global tags for cache invalidation + tagTypes: ALL_TAG_TYPES, + // Define endpoints in feature-specific API slices that extend this base + endpoints: () => ({}), +}) + +export default onboardingApiSlice diff --git a/frontend/web-ui/src/store/tagTypes.ts b/frontend/web-ui/src/store/tagTypes.ts new file mode 100644 index 0000000..2e57a1d --- /dev/null +++ b/frontend/web-ui/src/store/tagTypes.ts @@ -0,0 +1,53 @@ +// Tag types and helpers for RTK Query cache invalidation +// Used to manage cache and refetch logic for different data entities in the app + +/** + * RTK Query Tag Types for Cache Invalidation + * + * These tag types are used across all API slices for intelligent cache invalidation. + * Add new tag types here when creating new features. + */ +export const TAG_TYPES = { + AUTH: 'Auth', + USER: 'User', + ACCOUNT: 'Account', + APPLICATION_LOGS: 'APPLICATION_LOGS', + APPLICATIONS: 'Applications', + APPLICATION: 'Application', + PROPERTY: 'Property', + AMENITIES: 'Amenities', + ADDITIONAL_DETAILS: 'AdditionalDetails', + AGENTS: 'Agents', + ASSIGNMENTS: 'Assignments', + COMMISSIONERS: 'Commissioners', + SERVICE_MANAGERS: 'ServiceManagers', + PRIORITIES: 'Priorities', + APPROVALS: 'Approvals', + INBOX: 'Inbox', + ZONES: 'Zones', + WARDS: 'Wards', + JURISDICTION: 'Jurisdiction', + DOCUMENTS: 'Documents', + FILESTORE: 'FileStore', + NOTIFICATIONS: 'Notifications', + DASHBOARD: 'Dashboard', + FILTERS: 'Filters', + PROPERTY_DETAILS: 'PropertyDetails', + SEARCH: 'Search', + GIS_DATA: 'GisData', + OWNERSHIP: 'Ownership', +} as const; + +// Export as array for use in createApi tagTypes +export const ALL_TAG_TYPES = Object.values(TAG_TYPES); + +// Type helper for TypeScript to get all tag types +export type TagType = (typeof TAG_TYPES)[keyof typeof TAG_TYPES]; + +// Helper function to create a tag object for a single entity or a list +export const createTag = (type: TagType, id?: string | number) => + id ? { type, id } : { type, id: 'LIST' }; + +// Helper function to create tag objects for multiple entities +export const createTags = (type: TagType, items?: { id: string | number }[]) => + items ? [...items.map((item) => ({ type, id: item.id })), { type, id: 'LIST' }] : [{ type, id: 'LIST' }]; \ No newline at end of file diff --git a/frontend/web-ui/src/store/userSlice.ts b/frontend/web-ui/src/store/userSlice.ts new file mode 100644 index 0000000..285ef94 --- /dev/null +++ b/frontend/web-ui/src/store/userSlice.ts @@ -0,0 +1,50 @@ +// Redux slice for managing user authentication and profile state +// Handles current user info, authentication status, and selected zone + +import { createSlice } from '@reduxjs/toolkit'; +import type { PayloadAction } from '@reduxjs/toolkit'; +import type { User, ZoneData } from '../app/features/login-signup/models/ProfileService'; + +// State structure for user-related data in Redux +interface UserState { + currentUser: User | null; // Stores the logged-in user's profile, or null if not logged in + isAuthenticated: boolean; // Indicates if a user is authenticated + selectedZone: ZoneData | null; // The currently selected zone for the user +} + +// Initial state for the user slice +const initialState: UserState = { + currentUser: null, + isAuthenticated: false, + selectedZone: null, +}; + +// Redux Toolkit slice for user state management +const userSlice = createSlice({ + name: 'user', // Name of the slice + initialState, + reducers: { + // Set the current user and mark as authenticated + setUser: (state, action: PayloadAction) => { + state.currentUser = action.payload; + state.isAuthenticated = true; + // Set the selected zone to the first zone in user's zoneData, if available + state.selectedZone = action.payload.zoneData?.length ? action.payload.zoneData[0] : null; + }, + // Clear user data and authentication status + clearUser: (state) => { + state.currentUser = null; + state.isAuthenticated = false; + state.selectedZone = null; + }, + // Set the selected zone for the user + setSelectedZone: (state, action: PayloadAction) => { + state.selectedZone = action.payload; + } + }, +}); + +// Export actions for use in components and thunks +export const { setUser, clearUser, setSelectedZone } = userSlice.actions; +// Export the reducer to be included in the Redux store +export default userSlice.reducer; \ No newline at end of file diff --git a/frontend/web-ui/src/stories/AgentDirectory.stories.tsx b/frontend/web-ui/src/stories/AgentDirectory.stories.tsx new file mode 100644 index 0000000..abea2c5 --- /dev/null +++ b/frontend/web-ui/src/stories/AgentDirectory.stories.tsx @@ -0,0 +1,142 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import React from 'react'; +import { Box, Container, Typography } from '@mui/material'; +import { MemoryRouter } from 'react-router-dom'; + +import { dashboardContainer, dashboardHeader, mainContentGrid, cardSection, sectionTitle, subtitleText, titleText } from '../app/features/service-manager-app-features/service-manager-dashboard/styles/ServiceManagerDashboard/ServiceManagerDashboardStyle'; +import { AgentCard } from '../app/features/service-manager-app-features/service-manager-dashboard/components/ServiceManagerDashboard/AgentCard'; +import type { AgentModel } from '../app/features/service-manager-app-features/service-manager-dashboard/models/ServiceManagerDashboard/Agent_Model'; + +// Example populated data (adjust as needed) +const agents: AgentModel[] = [ + { + id: 'A-1', + username: 'agent1', + email: 'agent1@example.com', + role: 'field-officer', + name: 'Agent One', + ward: 'Ward-1', + preferred_language: 'en', + preferredLanguage: 'en', + isActive: true, + zoneData: [ + { zoneNumber: 'Z-1', wards: ['Ward-1', 'Ward-3'] }, + { zoneNumber: 'Z-2', wards: ['Ward-5'] } + ], + createdDate: new Date().toISOString(), + updatedDate: new Date().toISOString(), + createdBy: 'system', + updatedBy: 'system', + profile: { + firstName: 'Agent', + lastName: 'One', + fullName: 'Agent One', + phoneNumber: '9999999999', + adhaarNo: 123456789012, + gender: 'Male', + guardian: 'N/A', + guardianType: 'N/A', + dateOfBirth: '1990-05-12', + workLocation: 'Ward-1 Field Office', + profilePicture: 'https://example.com/img/agent1.png', + address: { + addressLine1: '12 Survey Lane', + addressLine2: null, + city: 'Sample City', + state: 'Sample State', + pinCode: '123456' + }, + department: 'Property Tax', + designation: 'Field Officer', + relationshipToProperty: 'Enumerator', + ownershipShare: 0, + isPrimaryOwner: false, + isVerified: true + } + }, + { + id: 'A-2', + username: 'agent2', + email: 'agent2@example.com', + role: 'field-officer', + name: 'Agent Two', + ward: 'Ward-2', + preferred_language: 'en', + preferredLanguage: 'en', + isActive: false, + zoneData: [ + { zoneNumber: 'Z-3', wards: ['Ward-2', 'Ward-4'] } + ], + createdDate: new Date().toISOString(), + updatedDate: new Date().toISOString(), + createdBy: 'system', + updatedBy: 'system', + profile: { + firstName: 'Agent', + lastName: 'Two', + fullName: 'Agent Two', + phoneNumber: '8888888888', + adhaarNo: 987654321098, + gender: 'Female', + guardian: 'N/A', + guardianType: 'N/A', + dateOfBirth: '1992-11-03', + workLocation: 'Ward-2 Field Office', + profilePicture: 'https://example.com/img/agent2.png', + address: { + addressLine1: '45 Mapping Street', + addressLine2: 'Suite 7', + city: 'Sample City', + state: 'Sample State', + pinCode: '654321' + }, + department: 'Property Tax', + designation: 'Field Officer', + relationshipToProperty: 'Verifier', + ownershipShare: 0, + isPrimaryOwner: false, + isVerified: false + } + } +]; + +const AgentDirectory: React.FC = () => { + return ( + + + + Agent Directory + Field Agent Listing + + + + + + Agents + {agents.map((a) => ( + + ))} + + + + ); +}; + +const meta: Meta = { + title: 'Pages/AgentDirectory', + component: AgentDirectory, + decorators: [ + (Story) => ( + + + + + + ), + ], +}; + +export default meta; +type Story = StoryObj; + +export const Default: Story = {}; diff --git a/frontend/web-ui/src/stories/AllApplications.stories.tsx b/frontend/web-ui/src/stories/AllApplications.stories.tsx new file mode 100644 index 0000000..07f6446 --- /dev/null +++ b/frontend/web-ui/src/stories/AllApplications.stories.tsx @@ -0,0 +1,447 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import React from 'react'; +import { Box, Container, Typography, CircularProgress } from '@mui/material'; +import { MemoryRouter } from 'react-router-dom'; +import { Provider } from 'react-redux'; +import { store } from '../store'; + +import { ApplicationCard } from '../app/features/service-manager-app-features/all-applications/components/ApplicationCard'; +import { pageContainer, headerSection, titleText, subtitleText, applicationsContainer, loadingContainer, filterRow, filterDropdown, searchField, sortDropdown } from '../app/features/service-manager-app-features/all-applications/styles/AllApplicationStyle'; +import { JurisdictionDropdown } from '../app/components/JurisdictionDropdown/JurisdictionDropdown'; +import { jurisdictionDropdownStyles } from '../app/styles/HomePageStyle/HomePageStyle'; +import TextField from '@mui/material/TextField'; +import InputAdornment from '@mui/material/InputAdornment'; +import MenuItem from '@mui/material/MenuItem'; +import Select from '@mui/material/Select'; +import FormControl from '@mui/material/FormControl'; +import SearchIcon from '@mui/icons-material/Search'; +import KeyboardArrowDownIcon from '@mui/icons-material/KeyboardArrowDown'; +import type { AllApplicationModel } from '../app/features/service-manager-app-features/all-applications/models/PropertyApplicationModel'; + +const mockApplications: AllApplicationModel[] = [ + { + ID: 'APP-101', + ApplicationNo: 'APP-101', + PropertyID: 'P-101', + Priority: 'High', + TenantID: 'T1', + DueDate: new Date().toISOString(), + AssignedAgent: null, + Status: 'NEW_CONSTRUCTION', + WorkflowInstanceID: 'WF-101', + AppliedBy: 'Ramesh', + AssesseeID: null, + Property: { + ID: 'P-101', + PropertyNo: '101', + OwnershipType: 'Private', + PropertyType: 'Residential', + ComplexName: '101 MG Road', + Address: { + ID: 'ADDR-101', + Locality: 'Central', + ZoneNo: 'Zone-03', + WardNo: 'Ward-1', + BlockNo: 'B-05', + Street: 'MG Road', + ElectionWard: 'EW-07', + SecretariatWard: 'SW-02', + PinCode: 560001, + DifferentCorrespondenceAddress: false, + PropertyID: 'P-101', + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + CorrespondenceAddress1: '', + CorrespondenceAddress2: '', + CorrespondenceAddress3: '', + }, + AssessmentDetails: { + ID: 'ASSESS-101', + ReasonOfCreation: 'New Construction', + OccupancyCertificateNumber: 'OC-2024-101', + OccupancyCertificateDate: '2024-01-15', + ExtentOfSite: '1200', + IsLandUnderneathBuilding: '1100', + IsUnspecifiedShare: false, + PropertyID: 'P-101', + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + Amenities: { + ID: 'AMEN-101', + type: ['Lift', 'Parking', 'Generator'], + Description: 'Modern amenities available', + ExpiryDate: null, + PropertyID: 'P-101', + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + ConstructionDetails: { + ID: 'CONST-101', + FloorType: 'Marble', + WallType: 'Brick', + RoofType: 'RCC', + WoodType: 'Teak', + PropertyID: 'P-101', + FloorDetails: [ + { + ID: 'FLOOR-101-1', + FloorNo: 1, + Classification: 'A', + NatureOfUsage: 'Residential', + FirmName: 'MG Builders', + OccupancyType: 'Owner', + OccupancyName: 'Ramesh Kumar', + constructionDate: '2023-12-01', + effectiveFromDate: '2024-01-01', + UnstructuredLand: 'No', + LengthFt: 40, + BreadthFt: 30, + PlinthAreaSqFt: 1200, + BuildingPermissionNo: 'BP-2023-101', + FloorDetailsEntered: true, + ConstructionDetailsID: 'CONST-101', + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + ], + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + AdditionalDetails: { + ID: 'ADD-101', + FieldName: 'DocumentInfo', + fieldValue: { + DocumentType: 1, + revenueDocumentNo: 12345, + serialNo: 67890, + }, + PropertyID: 'P-101', + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + GISData: { + ID: 'GIS-101', + Source: 'GPS', + Type: 'POLYGON', + EntityType: 'Property', + PropertyID: 'P-101', + Latitude: 12.9716, + Longitude: 77.5946, + Coordinates: [ + { + ID: 'COORD-101-1', + Latitude: 12.9716, + Longitude: 77.5946, + GISDataID: 'GIS-101', + CreatedAt: new Date().toISOString(), + }, + { + ID: 'COORD-101-2', + Latitude: 12.9720, + Longitude: 77.5950, + GISDataID: 'GIS-101', + CreatedAt: new Date().toISOString(), + }, + { + ID: 'COORD-101-3', + Latitude: 12.9715, + Longitude: 77.5955, + GISDataID: 'GIS-101', + CreatedAt: new Date().toISOString(), + }, + { + ID: 'COORD-101-4', + Latitude: 12.9710, + Longitude: 77.5948, + GISDataID: 'GIS-101', + CreatedAt: new Date().toISOString(), + }, + ], + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + Documents: [ + { + ID: 'DOC-101', + PropertyID: 'P-101', + DocumentType: 'Ownership Proof', + DocumentName: 'sale_deed.pdf', + FileStoreID: 'FS-101', + UploadDate: new Date().toISOString(), + action: 'APPROVED', + }, + ], + IGRS: { + id: 'IGRS-101', + habitation: 'MG Road Area', + igrsWard: 'Ward-1', + igrsLocality: 'Central', + igrsBlock: 'B-05', + doorNoFrom: '101', + doorNoTo: '105', + igrsClassification: 'A', + builtUpAreaPct: 75, + frontSetback: 10, + rearSetback: 8, + sideSetback: 5, + totalPlinthArea: 1200, + createdAt: new Date().toISOString(), + updatedAt: new Date().toISOString(), + PropertyID: 'P-101', + }, + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + ApplicationLogs: [], + IsDraft: false, + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + AgentName: 'John Doe', + AgentUsername: 'john.doe', + }, + { + ID: 'APP-102', + ApplicationNo: 'APP-102', + PropertyID: 'P-102', + Priority: 'Low', + TenantID: 'T1', + DueDate: new Date().toISOString(), + AssignedAgent: 'AGENT-202', + Status: 'NEW_PROPERTY', + WorkflowInstanceID: 'WF-102', + AppliedBy: 'Sita', + AssesseeID: 'ASS-102', + Property: { + ID: 'P-102', + PropertyNo: '102', + OwnershipType: 'Private', + PropertyType: 'Residential', + ComplexName: '102 Park Avenue', + Address: { + ID: 'ADDR-102', + Locality: 'North', + ZoneNo: 'Zone-01', + WardNo: 'Ward-2', + BlockNo: 'B-10', + Street: 'Park Ave', + ElectionWard: 'EW-03', + SecretariatWard: 'SW-05', + PinCode: 560002, + DifferentCorrespondenceAddress: false, + PropertyID: 'P-102', + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + CorrespondenceAddress1: '', + CorrespondenceAddress2: '', + CorrespondenceAddress3: '', + }, + AssessmentDetails: { + ID: 'ASSESS-102', + ReasonOfCreation: 'Renovation', + OccupancyCertificateNumber: 'OC-2024-102', + OccupancyCertificateDate: '2024-02-20', + ExtentOfSite: '800', + IsLandUnderneathBuilding: '750', + IsUnspecifiedShare: false, + PropertyID: 'P-102', + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + Amenities: { + ID: 'AMEN-102', + type: ['Parking'], + Description: 'Basic parking facility', + ExpiryDate: null, + PropertyID: 'P-102', + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + ConstructionDetails: { + ID: 'CONST-102', + FloorType: 'Tiles', + WallType: 'Concrete', + RoofType: 'RCC', + WoodType: 'Pine', + PropertyID: 'P-102', + FloorDetails: [], + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + AdditionalDetails: { + ID: 'ADD-102', + FieldName: 'ParkingInfo', + fieldValue: { + covered: true, + spaces: 2, + type: 'Indoor', + }, + PropertyID: 'P-102', + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + GISData: { + ID: 'GIS-102', + Source: 'Manual', + Type: 'POINT', + EntityType: 'Property', + PropertyID: 'P-102', + Latitude: 13.0827, + Longitude: 80.2707, + Coordinates: [ + { + ID: 'COORD-102-1', + Latitude: 13.0827, + Longitude: 80.2707, + GISDataID: 'GIS-102', + CreatedAt: new Date().toISOString(), + }, + ], + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + Documents: [], + IGRS: { + id: 'IGRS-102', + habitation: 'Park Avenue Colony', + igrsWard: 'Ward-2', + igrsLocality: 'North', + igrsBlock: 'B-10', + doorNoFrom: '102', + doorNoTo: '108', + igrsClassification: 'B', + builtUpAreaPct: 60, + frontSetback: 8, + rearSetback: 6, + sideSetback: 4, + totalPlinthArea: 800, + createdAt: new Date().toISOString(), + updatedAt: new Date().toISOString(), + PropertyID: 'P-102', + }, + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + ApplicationLogs: [], + IsDraft: false, + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + AgentName: 'Jane Smith', + AgentUsername: 'jane.smith', + }, +]; + +const AllApplicationsStory: React.FC<{ apps?: AllApplicationModel[]; loading?: boolean; error?: string | null }> = ({ apps = mockApplications, loading = false, error = null }) => { + if (loading) return ( + + + + ); + + if (error) return ( + + {error} + + ); + + return ( + + + + + + All Applications + Manage properties under enumeration and verification + + + {/* Filter Row */} + + + + + + + + + ), + }} + /> + + + + + + + + {(!apps || apps.length === 0) ? ( + No applications found + ) : ( + apps.map(a => ) + )} + + + ); +}; + +const meta: Meta = { + title: 'Pages/AllApplications', + component: AllApplicationsStory, + decorators: [ + (Story) => ( + + + + + + + + ), + ], +}; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { render: () => }; +export const Loading: Story = { render: () => }; +export const Empty: Story = { render: () => }; +export const Error: Story = { render: () => }; diff --git a/frontend/web-ui/src/stories/Configure.mdx b/frontend/web-ui/src/stories/Configure.mdx new file mode 100644 index 0000000..948e410 --- /dev/null +++ b/frontend/web-ui/src/stories/Configure.mdx @@ -0,0 +1,364 @@ +import { Meta } from "@storybook/addon-docs/blocks"; + +import Github from "./assets/github.svg"; +import Discord from "./assets/discord.svg"; +import Youtube from "./assets/youtube.svg"; +import Tutorials from "./assets/tutorials.svg"; +import Styling from "./assets/styling.png"; +import Context from "./assets/context.png"; +import Assets from "./assets/assets.png"; +import Docs from "./assets/docs.png"; +import Share from "./assets/share.png"; +import FigmaPlugin from "./assets/figma-plugin.png"; +import Testing from "./assets/testing.png"; +import Accessibility from "./assets/accessibility.png"; +import Theming from "./assets/theming.png"; +import AddonLibrary from "./assets/addon-library.png"; + +export const RightArrow = () => + + + + + +
+
+ # Configure your project + + Because Storybook works separately from your app, you'll need to configure it for your specific stack and setup. Below, explore guides for configuring Storybook with popular frameworks and tools. If you get stuck, learn how you can ask for help from our community. +
+
+
+ A wall of logos representing different styling technologies +

Add styling and CSS

+

Like with web applications, there are many ways to include CSS within Storybook. Learn more about setting up styling within Storybook.

+ Learn more +
+
+ An abstraction representing the composition of data for a component +

Provide context and mocking

+

Often when a story doesn't render, it's because your component is expecting a specific environment or context (like a theme provider) to be available.

+ Learn more +
+
+ A representation of typography and image assets +
+

Load assets and resources

+

To link static files (like fonts) to your projects and stories, use the + `staticDirs` configuration option to specify folders to load when + starting Storybook.

+ Learn more +
+
+
+
+
+
+ # Do more with Storybook + + Now that you know the basics, let's explore other parts of Storybook that will improve your experience. This list is just to get you started. You can customise Storybook in many ways to fit your needs. +
+ +
+
+
+ A screenshot showing the autodocs tag being set, pointing a docs page being generated +

Autodocs

+

Auto-generate living, + interactive reference documentation from your components and stories.

+ Learn more +
+
+ A browser window showing a Storybook being published to a chromatic.com URL +

Publish to Chromatic

+

Publish your Storybook to review and collaborate with your entire team.

+ Learn more +
+
+ Windows showing the Storybook plugin in Figma +

Figma Plugin

+

Embed your stories into Figma to cross-reference the design and live + implementation in one place.

+ Learn more +
+
+ Screenshot of tests passing and failing +

Testing

+

Use stories to test a component in all its variations, no matter how + complex.

+ Learn more +
+
+ Screenshot of accessibility tests passing and failing +

Accessibility

+

Automatically test your components for a11y issues as you develop.

+ Learn more +
+
+ Screenshot of Storybook in light and dark mode +

Theming

+

Theme Storybook's UI to personalize it to your project.

+ Learn more +
+
+
+
+
+
+

Addons

+

Integrate your tools with Storybook to connect workflows.

+ Discover all addons +
+
+ Integrate your tools with Storybook to connect workflows. +
+
+ +
+
+ Github logo + Join our contributors building the future of UI development. + + Star on GitHub +
+
+ Discord logo +
+ Get support and chat with frontend developers. + + Join Discord server +
+
+
+ Youtube logo +
+ Watch tutorials, feature previews and interviews. + + Watch on YouTube +
+
+
+ A book +

Follow guided walkthroughs on for key workflows.

+ + Discover tutorials +
+
+ + diff --git a/frontend/web-ui/src/stories/Dashboard.stories.tsx b/frontend/web-ui/src/stories/Dashboard.stories.tsx new file mode 100644 index 0000000..d391f76 --- /dev/null +++ b/frontend/web-ui/src/stories/Dashboard.stories.tsx @@ -0,0 +1,172 @@ + +import type { Meta, StoryObj } from '@storybook/react'; +import React from 'react'; + +import { Box, Container, Typography, Button, CircularProgress } from '@mui/material'; +import { MemoryRouter } from 'react-router-dom'; + +import { dashboardContainer, dashboardHeader, mainContentGrid, cardSection, sectionTitle, subtitleText, titleText, dashboardLoadingContainer, dashboardErrorContainer, dashboardErrorAlert } from '../app/features/service-manager-app-features/service-manager-dashboard/styles/ServiceManagerDashboard/ServiceManagerDashboardStyle'; +import { ApplicationCard } from '../app/features/service-manager-app-features/service-manager-dashboard/components/ServiceManagerDashboard/ApplicationCard'; + +type Props = { sideBarOpen?: boolean; setSelectedNav?: (nav: string) => void }; + +const MockDashboard: React.FC = ({ setSelectedNav }) => { + const applications = [ + { + ID: 'APP-1', + ApplicationNo: 'APP-2025-0001', + PropertyID: 'PROP-1', + Priority: 'High', + TenantID: 'T1', + DueDate: new Date().toISOString(), + AssignedAgent: null, + Status: 'NEW_CONSTRUCTION', + WorkflowInstanceID: '', + AppliedBy: 'Ramesh Kumar', + AssesseeID: null, + Property: { ID: 'P-1', PropertyNo: '12', OwnershipType: 'Private', PropertyType: 'Residential', ComplexName: '12 MG Road', Address: null, AssessmentDetails: null, Amenities: [], ConstructionDetails: null, AdditionalDetails: null, GISData: null, CreatedAt: new Date().toISOString(), UpdatedAt: new Date().toISOString(), Documents: [] }, + ApplicationLogs: [], + IsDraft: false, + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + { + ID: 'APP-2', + ApplicationNo: 'APP-2025-0002', + PropertyID: 'PROP-2', + Priority: 'Medium', + TenantID: 'T1', + DueDate: new Date().toISOString(), + AssignedAgent: null, + Status: 'NEW_PROPERTY', + WorkflowInstanceID: '', + AppliedBy: 'Sita Devi', + AssesseeID: null, + Property: { ID: 'P-2', PropertyNo: '45', OwnershipType: 'Private', PropertyType: 'Residential', ComplexName: '45 Park Avenue', Address: null, AssessmentDetails: null, Amenities: [], ConstructionDetails: null, AdditionalDetails: null, GISData: null, CreatedAt: new Date().toISOString(), UpdatedAt: new Date().toISOString(), Documents: [] }, + ApplicationLogs: [], + IsDraft: false, + CreatedAt: new Date().toISOString(), + UpdatedAt: new Date().toISOString(), + }, + ]; + + + + return ( + + + + Service Manager Dashboard + Property Verification Management System + + + + + + Recent Applications + {applications.map((app) => ( + + ))} + + + + + + + + + ); +}; + +const meta: Meta = { + title: 'Pages/ServiceManagerDashboard', + component: MockDashboard, + decorators: [ + (Story) => ( + + + + + + ), + ], +}; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { args: { sideBarOpen: true, setSelectedNav: (nav: string) => console.log('nav', nav) } }; + +export const LoadingState: Story = { + render: () => ( + + + + Service Manager Dashboard + Property Verification Management System + + + + + + + ), +}; + +export const EmptyState: Story = { + render: () => ( + + + + Service Manager Dashboard + Property Verification Management System + + + + + Recent Applications + No applications found + + + + ), +}; + +export const ErrorState: Story = { + render: () => ( + + + + Service Manager Dashboard + Property Verification Management System + + + + Error loading applications + + + + Recent Applications + Error loading applications + + + + ), +}; \ No newline at end of file diff --git a/frontend/web-ui/src/stories/Dropdown.stories.tsx b/frontend/web-ui/src/stories/Dropdown.stories.tsx new file mode 100644 index 0000000..081a136 --- /dev/null +++ b/frontend/web-ui/src/stories/Dropdown.stories.tsx @@ -0,0 +1,62 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { JurisdictionDropdown } from '../app/components/JurisdictionDropdown/JurisdictionDropdown'; +import { Box, Paper } from '@mui/material'; + +const meta: Meta = { + title: 'Components/JurisdictionDropdown', + component: JurisdictionDropdown, + parameters: { + layout: 'padded', + docs: { + description: { + component: 'A dropdown component for selecting jurisdiction areas. Features location icon, jurisdiction label, and dropdown menu with ward selections.', + }, + }, + }, + argTypes: { + backgroundColor: { + control: 'color', + description: 'Background color of the dropdown button', + defaultValue: '#f5f5f5', + }, + hoverBackgroundColor: { + control: 'color', + description: 'Background color when hovering over dropdown items', + defaultValue: '#e0e0e0', + }, + }, + decorators: [ + (Story) => ( + + + + + + ), + ], +}; + +export default meta; +type Story = StoryObj; + +// Default story +export const Default: Story = { + args: { + backgroundColor: '#f5f5f5', + hoverBackgroundColor: '#e0e0e0', + }, + parameters: { + docs: { + description: { + story: 'Default jurisdiction dropdown with standard gray colors. Shows Ward Nos. 24 & 38 of BBMP as the default selection.', + }, + }, + }, +}; diff --git a/frontend/web-ui/src/stories/FilterButton.stories.tsx b/frontend/web-ui/src/stories/FilterButton.stories.tsx new file mode 100644 index 0000000..2ed8bc8 --- /dev/null +++ b/frontend/web-ui/src/stories/FilterButton.stories.tsx @@ -0,0 +1,135 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { Provider } from 'react-redux'; +import { configureStore } from '@reduxjs/toolkit'; +import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react'; +import ApplicationInboxFilterButton from '../app/features/service-manager-app-features/application-inbox/components/ApplicationInboxButtons/ApplicationInboxFilterButton'; +import filterSlice from '../app/features/service-manager-app-features/application-inbox/store/filterSlice'; +import { Box } from '@mui/material'; + +// Mock API for Storybook +const mockOnboardingApi = createApi({ + reducerPath: 'onboardingApi', + baseQuery: fetchBaseQuery({ baseUrl: '/api' }), + endpoints: (builder) => ({ + getAllAgents: builder.query({ + // Return mocked data directly via queryFn to avoid duplicate 'query' keys + queryFn: async () => ({ + data: { + data: { + users: [ + { id: '1', profile: { fullName: 'John Smith' } }, + { id: '2', profile: { fullName: 'Sarah Johnson' } }, + { id: '3', profile: { fullName: 'Michael Brown' } }, + { id: '4', profile: { fullName: 'Emma Davis' } }, + { id: '5', profile: { fullName: 'Robert Wilson' } }, + ], + }, + }, + }), + }), + }), +}); + +// Create mock store with RTK Query middleware +const createMockStore = (initialFilterState = {}) => { + return configureStore({ + reducer: { + filter: filterSlice, + [mockOnboardingApi.reducerPath]: mockOnboardingApi.reducer, + }, + middleware: (getDefaultMiddleware) => + getDefaultMiddleware().concat(mockOnboardingApi.middleware), + preloadedState: { + filter: { + agents: [], + wards: [], + statuses: [], + zones:[], + priority: '', + sort: '', + searchValue: '', + ...initialFilterState, + }, + }, + }); +}; + +const meta: Meta = { + title: 'Components/ApplicationInboxFilterButton', + component: ApplicationInboxFilterButton, + parameters: { + layout: 'padded', + docs: { + description: { + component: 'Filter button component that opens a dialog with advanced filtering options for property applications. Includes agent selection, status filtering, and sorting options.', + }, + }, + }, + decorators: [ + (Story) => { + const store = createMockStore(); + return ( + + + + + + ); + }, + ], +}; + +export default meta; +type Story = StoryObj; + +// Default story +export const Default: Story = { + parameters: { + docs: { + description: { + story: 'Default filter button with filter icon. Click to open the filter dialog with various filtering options.', + }, + }, + }, +}; + +// With active filters +export const WithActiveFilters: Story = { + decorators: [ + (Story) => { + const store = createMockStore({ + agents: ['John Smith', 'Sarah Johnson'], + statuses: ['NEW_CONSTRUCTION'], + searchValue: 'Prestige' + }); + return ( + + + + + + ); + }, + ], + parameters: { + docs: { + description: { + story: 'Filter button when filters are already applied. The Redux store contains pre-selected agents and status filters.', + }, + }, + }, +}; diff --git a/frontend/web-ui/src/stories/NavigationTabs.stories.tsx b/frontend/web-ui/src/stories/NavigationTabs.stories.tsx new file mode 100644 index 0000000..1f14fe2 --- /dev/null +++ b/frontend/web-ui/src/stories/NavigationTabs.stories.tsx @@ -0,0 +1,151 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import React, { useState } from 'react'; +import { + Box, + Tabs, + Tab +} from '@mui/material'; + +// Navigation Tab interface +interface NavigationTabItem { + id: string; + label: string; + value: string; +} + +interface NavigationTabsProps { + tabs?: NavigationTabItem[]; + defaultValue?: string; + onTabChange?: (value: string) => void; +} + +const NavigationTabs: React.FC = ({ + tabs = [], + defaultValue, + onTabChange +}) => { + const [selectedTab, setSelectedTab] = useState(defaultValue || tabs[0]?.value || ''); + + const handleChange = (_event: React.SyntheticEvent, newValue: string) => { + setSelectedTab(newValue); + onTabChange?.(newValue); + }; + + return ( + + tab.value === selectedTab)?.value + ? '#0B4B66' + : '#e2e8f0', + }, + transition: 'all 0.2s ease-in-out', + } + }} + > + {tabs.map((tab) => ( + + ))} + + + ); +}; + +const mockNavigationTabs: NavigationTabItem[] = [ + { + id: '1', + label: 'Demand Collection', + value: 'demand-collection' + }, + { + id: '2', + label: 'Coverage', + value: 'coverage' + }, + { + id: '3', + label: 'KPI Dashboard', + value: 'kpi-dashboard' + }, + { + id: '4', + label: 'Reports', + value: 'reports' + } +]; + + +const meta: Meta = { + title: 'Commissioner Dashboard/NavigationTabs', + component: NavigationTabs, + parameters: { + layout: 'padded', + docs: { + description: { + component: 'Navigation Tabs component for switching between different dashboard sections with Material-UI styling.' + } + } + }, + argTypes: { + tabs: { + description: 'Array of tab items to display', + }, + defaultValue: { + description: 'Default selected tab value', + }, + onTabChange: { + action: 'tab changed', + description: 'Callback function called when tab is changed', + } + } +}; + +export default meta; +type Story = StoryObj; + +// Basic Tab Stories +export const DefaultTabs: Story = { + args: { + tabs: mockNavigationTabs, + defaultValue: 'demand-collection' + } +}; + diff --git a/frontend/web-ui/src/stories/PropertyApplications.stories.tsx b/frontend/web-ui/src/stories/PropertyApplications.stories.tsx new file mode 100644 index 0000000..06d6f91 --- /dev/null +++ b/frontend/web-ui/src/stories/PropertyApplications.stories.tsx @@ -0,0 +1,112 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import React from 'react'; +import { Box, Button, Card, CardContent, Chip, Container, Typography } from '@mui/material'; +import ArticleIcon from '@mui/icons-material/Article'; +import InfoOutlinedIcon from '@mui/icons-material/InfoOutlined'; +import SourceIcon from '@mui/icons-material/Source'; + +interface PropertyApplication { + id: string; + title: string; + applicationId: string; + location: string; + date: string; + time: string; + tags: { label: string; variant: 'outlined' | 'filled' }[]; + hasInfo?: boolean; +} + +const PropertyApplicationCard: React.FC<{ application: PropertyApplication; onViewApplication?: (id: string) => void }> = ({ application, onViewApplication }) => ( + + + + + + + + + {application.title} + + {application.hasInfo && } + + + {application.applicationId} + + + + + + + + + + {application.location} + + + {application.tags.map((tag, i) => ( + + + {tag.label} + + ) : ( + tag.label + ) + } + variant={tag.variant} + size="small" + sx={{ + fontSize: '11px', + height: 24, + borderRadius: '12px', + border: '1px solid #000000', + color: '#000000', + backgroundColor: 'white', + '& .MuiChip-label': { padding: '0 8px' } + }} + /> + ))} + + + + + + + + + + + +); + +const mockApplications: PropertyApplication[] = [ + { id: '1', title: 'Gandhi Nagar Complex', applicationId: 'PRP-2024-045', location: 'MG Road • Ward 108 • Zone 3 - Central', date: '14 Sept 2025', time: '10:30', tags: [{ label: 'Commercial', variant: 'outlined' }, { label: 'Enumeration', variant: 'outlined' }], hasInfo: true }, + { id: '2', title: 'Brodipet Commercial', applicationId: 'PRP-2024-044', location: 'Indiranagar • Ward 85 • Zone 5 - East', date: '20 Sept 2025', time: '09:15', tags: [{ label: 'Commercial', variant: 'outlined' }, { label: 'Enumeration', variant: 'outlined' }], hasInfo: true } +]; + +const PropertyApplicationsList: React.FC<{ applications?: PropertyApplication[]; title?: string }> = ({ applications = mockApplications, title = 'Property Applications' }) => ( + + {title} + + {applications.map((app) => ( + console.log('View', id)} /> + ))} + + +); + +const meta: Meta = { + title: 'Commissioner Dashboard/PropertyApplications', + component: PropertyApplicationCard +}; + +export default meta; +type Story = StoryObj; + +export const DefaultCard: Story = { args: { application: mockApplications[0] } }; +export const ApplicationsListStory: StoryObj = { render: () => }; \ No newline at end of file diff --git a/frontend/web-ui/src/stories/PropertyTaxCalculator.stories.tsx b/frontend/web-ui/src/stories/PropertyTaxCalculator.stories.tsx new file mode 100644 index 0000000..39633e5 --- /dev/null +++ b/frontend/web-ui/src/stories/PropertyTaxCalculator.stories.tsx @@ -0,0 +1,289 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import React from 'react'; +import { + Box, + Card, + CardContent, + Typography, + Button, + Container +} from '@mui/material'; +import LaunchIcon from '@mui/icons-material/Launch'; + +// Property Tax Calculator Card interface +interface PropertyTaxCalculatorCard { + id: string; + propertyName: string; + applicationId: string; + potentialDues: number; + currency?: string; + onCalculatorClick?: (id: string) => void; +} + +interface PropertyTaxCalculatorProps { + property: PropertyTaxCalculatorCard; +} + +const PropertyTaxCalculator: React.FC = ({ property }) => { + const formatCurrency = (amount: number, currency: string = '₹') => { + return `${currency} ${amount.toLocaleString('en-IN', { minimumFractionDigits: 2, maximumFractionDigits: 2 })}`; + }; + + return ( + + + {/* Header Section */} + + + {property.propertyName} + + + {property.applicationId} + + + + + + + Potential Dues: + + + {formatCurrency(property.potentialDues, property.currency)} + + + {/* Property Tax Calculator Button: "Property tax" on first line, "calculator" on second line */} + + + + + ); +}; + +interface PropertyTaxCalculatorListProps { + properties?: PropertyTaxCalculatorCard[]; + title?: string; + onCalculatorClick?: (id: string) => void; +} + + + + +const PropertyTaxCalculatorList: React.FC = ({ + properties = [], + title = "Property Tax Calculator", + onCalculatorClick +}) => { + return ( + + + {title} + + + + {properties.map((property) => ( + + ))} + + {properties.length === 0 && ( + + + No properties available for tax calculation + + + )} + + + ); +}; +// Mock data +const mockPropertyTaxCalculators: PropertyTaxCalculatorCard[] = [ + { + id: '1', + propertyName: 'Gandhi Nagar Complex', + applicationId: 'BLR-2024-001', + potentialDues: 10000.00, + currency: '₹' + }, + { + id: '2', + propertyName: 'Residential Villa', + applicationId: 'BLR-2024-002', + potentialDues: 25000.00, + currency: '₹' + }, + { + id: '3', + propertyName: 'Commercial Complex', + applicationId: 'BLR-2024-003', + potentialDues: 75000.00, + currency: '₹' + }, + { + id: '4', + propertyName: 'Apartment Building', + applicationId: 'BLR-2024-004', + potentialDues: 45000.00, + currency: '₹' + } +]; + +// Storybook Meta +const meta: Meta = { + title: 'Commissioner Dashboard/PropertyTaxCalculator', + component: PropertyTaxCalculator, + parameters: { + layout: 'padded', + docs: { + description: { + component: 'Property Tax Calculator component showing property details, potential dues amount, and calculator access button using Material-UI styling.' + } + } + }, + argTypes: { + property: { + description: 'Property tax calculator data object', + } + } +}; + +export default meta; +type Story = StoryObj; + +// Individual Card Stories +export const GandhiNagarComplex: Story = { + args: { + property: mockPropertyTaxCalculators[0] + } +}; + +export const ResidentialVilla: Story = { + args: { + property: mockPropertyTaxCalculators[1] + } +}; + + + +// List Stories +export const PropertyCalculatorsList: StoryObj = { + render: (args) => , + args: { + properties: mockPropertyTaxCalculators, + title: "Property Tax Calculators", + onCalculatorClick: (id: string) => console.log('Calculate tax for property:', id) + } +}; diff --git a/frontend/web-ui/src/stories/QuickActionsPage.stories.tsx b/frontend/web-ui/src/stories/QuickActionsPage.stories.tsx new file mode 100644 index 0000000..3122455 --- /dev/null +++ b/frontend/web-ui/src/stories/QuickActionsPage.stories.tsx @@ -0,0 +1,189 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import React from 'react'; +import AnalyticsIcon from '@mui/icons-material/Analytics'; + +import { + Box, + Card, + CardContent, + Typography, + Button, + Container +} from '@mui/material'; +import CheckCircleOutlineIcon from '@mui/icons-material/CheckCircleOutline'; +import PlaceIcon from '@mui/icons-material/Place'; +import ChatBubbleOutlineIcon from '@mui/icons-material/ChatBubbleOutline'; + +// QuickActions Component +interface QuickActionItem { + id: string; + label: string; + icon: React.ReactNode; + variant?: 'contained' | 'outlined'; + onClick?: () => void; +} + +interface QuickActionsProps { + actions?: QuickActionItem[]; + title?: string; +} + +const QuickActions: React.FC = ({ + actions = [], + title = "Quick Actions" +}) => { + return ( + + + + {title} + + + + {actions.map((action) => ( + + ))} + + + + ); +}; + +// QuickActions Dashboard Component +interface QuickActionsDashboardProps { + actions?: QuickActionItem[]; +} + +const QuickActionsDashboard: React.FC = ({ + actions = [] +}) => { + return ( + + + + + + ); +}; + +// Mock data +const mockActions: QuickActionItem[] = [ + { + id: 'review-applications', + label: 'Review Applications', + icon: , + variant: 'contained' + }, + { + id: 'view-jurisdiction', + label: 'View Jurisdiction', + icon: , + variant: 'outlined' + }, + { + id: 'send-message', + label: 'Send Message', + icon: , + variant: 'outlined' + }, + { + id: 'generate-report', + label: 'Generate Report', + icon: , + variant: 'outlined' + } +]; + +// Storybook Meta +const meta: Meta = { + title: 'Commissioner Dashboard/QuickActions', + component: QuickActions, + parameters: { + layout: 'padded', + docs: { + description: { + component: 'QuickActions component showing actionable buttons for commissioner tasks with Material-UI styling.' + } + } + }, + argTypes: { + title: { + control: 'text', + description: 'Title displayed at the top of the quick actions panel', + }, + actions: { + description: 'Array of action items with icons, labels, and styling options', + } + } +}; + +export default meta; + + +// Dashboard Stories +export const CompleteDashboard: StoryObj = { + render: (args) => , + args: { + actions: mockActions + } +}; diff --git a/frontend/web-ui/src/stories/ScheduleDemandGeneration.stories.tsx b/frontend/web-ui/src/stories/ScheduleDemandGeneration.stories.tsx new file mode 100644 index 0000000..17ad127 --- /dev/null +++ b/frontend/web-ui/src/stories/ScheduleDemandGeneration.stories.tsx @@ -0,0 +1,209 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import React from 'react'; + +import { + Box, + Card, + CardContent, + Typography, + TextField, + Button, + InputAdornment, + IconButton +} from '@mui/material'; +import SearchIcon from '@mui/icons-material/Search'; + +// Schedule Demand Generation Component +interface ScheduleDemandGenerationProps { + title?: string; + searchPlaceholder?: string; + buttonText?: string; + onSearch?: (value: string) => void; + onGenerate?: () => void; +} + +const ScheduleDemandGeneration: React.FC = ({ + title = "Schedule Demand Generation", + searchPlaceholder = "Search Jurisdiction", + buttonText = "Generate", + onSearch, + onGenerate +}) => { + const [searchValue, setSearchValue] = React.useState(''); + + const handleSearchChange = (event: React.ChangeEvent) => { + const value = event.target.value; + setSearchValue(value); + onSearch?.(value); + }; + + + + return ( + + + + {title} + + + + {/* Search Field */} + + + {/* */} + + + + + + ), + }} + /> + + {/* Generate Button */} + + + + + ); +}; + +// Storybook Meta +const meta: Meta = { + title: 'Commissioner Dashboard/ScheduleDemandGeneration', + component: ScheduleDemandGeneration, + parameters: { + layout: 'padded', + docs: { + description: { + component: 'Schedule Demand Generation component with search input and generate button using Material-UI styling.' + } + } + }, + argTypes: { + title: { + control: 'text', + description: 'Title displayed at the top of the component', + }, + searchPlaceholder: { + control: 'text', + description: 'Placeholder text for the search input field', + }, + buttonText: { + control: 'text', + description: 'Text displayed on the generate button', + }, + onSearch: { + action: 'searched', + description: 'Callback function called when search input changes', + }, + onGenerate: { + action: 'generated', + description: 'Callback function called when generate button is clicked', + } + } +}; + +export default meta; +type Story = StoryObj; + +// Individual Component Stories +export const Default: Story = { + args: { + title: "Schedule Demand Generation", + searchPlaceholder: "Search Jurisdiction", + buttonText: "Generate" + } +}; diff --git a/frontend/web-ui/src/stories/SearchHeader.stories.tsx b/frontend/web-ui/src/stories/SearchHeader.stories.tsx new file mode 100644 index 0000000..af2d339 --- /dev/null +++ b/frontend/web-ui/src/stories/SearchHeader.stories.tsx @@ -0,0 +1,108 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { Provider } from 'react-redux'; +import { configureStore } from '@reduxjs/toolkit'; +import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react'; +import ApplicationInboxSearchHeader from '../app/features/service-manager-app-features/application-inbox/components/ApplicationInboxHeader/ApplicationInboxSearchHeader'; +import filterReducer from '../app/features/service-manager-app-features/application-inbox/store/filterSlice'; +import { Box } from '@mui/material'; + +// Mock RTK Query API that mimics the onboardingApiSlice +const mockOnboardingApi = createApi({ + reducerPath: 'onboardingApi', + baseQuery: fetchBaseQuery({ + baseUrl: '/mock/', + // Mock the prepareHeaders to avoid auth errors + prepareHeaders: (headers) => { + headers.set('content-type', 'application/json'); + return headers; + }, + }), + tagTypes: ['Agent', 'Property'], + endpoints: (builder) => ({ + getAllAgents: builder.query({ + query: () => '/api/v1/users?role=AGENT', + // Mock response data + transformResponse: () => ({ + data: { + users: [ + { id: '1', profile: { fullName: 'John Doe Agent' } }, + { id: '2', profile: { fullName: 'Jane Smith Agent' } }, + { id: '3', profile: { fullName: 'Mike Johnson Agent' } }, + ] + } + }), + }), + }), +}); + +// Mock Redux store for Storybook with proper RTK Query setup +const createMockStore = (initialFilterState = {}) => { + return configureStore({ + reducer: { + filter: filterReducer, + [mockOnboardingApi.reducerPath]: mockOnboardingApi.reducer, + }, + middleware: (getDefaultMiddleware) => + getDefaultMiddleware().concat(mockOnboardingApi.middleware), + preloadedState: { + filter: { + agents: [], + wards: [], + statuses: [], + sort: '', + priority: '', + zones: [], + searchValue: '', + ...initialFilterState, + }, + }, + }); +}; + +const meta: Meta = { + title: 'Components/ApplicationInboxSearchHeader', + component: ApplicationInboxSearchHeader, + parameters: { + layout: 'padded', + docs: { + description: { + component: 'Application inbox search header with search bar and filter button. Used for searching and filtering properties in the application inbox.', + }, + }, + }, + decorators: [ + (Story) => { + const store = createMockStore(); + return ( + + + + + + + + ); + }, + ], +}; + +export default meta; +type Story = StoryObj; + +// Default story +export const Default: Story = { + parameters: { + docs: { + description: { + story: 'Default application inbox search header with search bar and filter button.', + }, + }, + }, +}; diff --git a/frontend/web-ui/src/stories/SelectorTab.stories.tsx b/frontend/web-ui/src/stories/SelectorTab.stories.tsx new file mode 100644 index 0000000..32004d4 --- /dev/null +++ b/frontend/web-ui/src/stories/SelectorTab.stories.tsx @@ -0,0 +1,202 @@ +import React from 'react'; +import type { Meta, StoryObj } from '@storybook/react'; +import { Box, Button, Container } from '@mui/material'; +import { Provider } from 'react-redux'; +import { configureStore } from '@reduxjs/toolkit'; +import { createApi, fetchBaseQuery } from '@reduxjs/toolkit/query/react'; + +// Import the actual SelectorTab component - we'll create a version that handles dependencies +type TabType = 'property' | 'documents' | 'services' | 'change'; + +interface SelectorTabProps { + activeTab: TabType; + onTabChange: (tab: TabType) => void; +} + +// Mock child components +const MockCards = () => ( + +

Property Details Content

+

This would show property information cards, owner details, and property specifications.

+
+); + +const MockSearchPropertyDocuments = () => ( + +

Documents Content

+

This would show uploaded documents, property papers, and legal documents.

+
+); + +const MockSearchPropertyChangeLog = () => ( + +

Change Log Content

+

This would show property modification history and audit trail.

+
+); + +// SelectorTab component that matches the original styling +const SelectorTab: React.FC = ({ activeTab, onTabChange }) => { + const tabConfig: { + label: string; + value: TabType; + disabled?: boolean; + }[] = [ + { label: 'Property Details', value: 'property' }, + { label: 'Documents', value: 'documents' }, + { label: 'Services and Utilities', value: 'services', disabled: true }, + { label: 'Change Log', value: 'change' }, + ]; + + // Use the original styling from selectorTabsStyle.ts + const tabBarWrapperStyle = { + display: 'flex', + padding: '2px', + px: '4px', + m: '18px 0 12px 0', + alignItems: 'start', + justifyContent: 'space-between', + background: '#ffffff', + borderRadius: '10px', + boxShadow: '0 4px 10px rgba(15,23,42,0.04)', + border: '1px solid #f1f5f9', + }; + + const tabButtonStyle = (active: boolean, disabled: boolean) => ({ + minWidth: 'auto', + textTransform: 'none', + fontSize: 14, + color: disabled + ? '#bcbcbc' + : active + ? '#054e58' + : '#6b7280', + margin: '10px', + fontWeight: active ? 700 : 500, + bgcolor: active ? '#dff6f9' : 'transparent', + borderRadius: '10px', + transition: 'background-color 120ms ease, color 120ms ease, transform 120ms ease', + '&:focus': { + outlineOffset: 1, + }, + }); + + function handleTabClick(tab: TabType) { + if (!tabConfig.find(t => t.value === tab)?.disabled) { + onTabChange(tab); + } + } + + return ( + + + {tabConfig.map(tab => ( + + ))} + + {/* Panel */} + + {activeTab === 'property' && } + {activeTab === 'documents' && } + {activeTab === 'services' && ""} + {activeTab === 'change' && } + + + ); +}; + +// Mock Redux store for child components +const createMockStore = () => { + const mockApi = createApi({ + reducerPath: 'mockApi', + baseQuery: fetchBaseQuery({ baseUrl: '/api' }), + endpoints: () => ({}), + }); + + return configureStore({ + reducer: { + applicationView: (state = { + application: null, + loading: false, + error: null + }) => state, + [mockApi.reducerPath]: mockApi.reducer, + }, + middleware: (getDefaultMiddleware) => + getDefaultMiddleware().concat(mockApi.middleware), + }); +}; + +const meta: Meta = { + title: 'Components/SelectorTab', + component: SelectorTab, + parameters: { + layout: 'padded', + docs: { + description: { + component: 'Tabbed navigation component for property details with sections for Property Details, Documents, Services & Utilities, and Change Log. Features pill-shaped tab styling and disabled state support.', + }, + }, + }, + argTypes: { + activeTab: { + control: 'select', + options: ['property', 'documents', 'services', 'change'], + description: 'Currently active tab', + }, + onTabChange: { + description: 'Callback function when tab is clicked', + }, + }, + decorators: [ + (Story) => { + const store = createMockStore(); + return ( + + + + + + + + ); + }, + ], +}; + +export default meta; +type Story = StoryObj; + +// Default story - Property Details tab active +export const Default: Story = { + args: { + activeTab: 'property', + onTabChange: (tab: string) => console.log('tab-changed:', tab), + }, + parameters: { + docs: { + description: { + story: 'Default state with Property Details tab active. Shows pill-shaped tab navigation with property content.', + }, + }, + }, +}; diff --git a/frontend/web-ui/src/stories/Sidebar.stories.tsx b/frontend/web-ui/src/stories/Sidebar.stories.tsx new file mode 100644 index 0000000..f25cde1 --- /dev/null +++ b/frontend/web-ui/src/stories/Sidebar.stories.tsx @@ -0,0 +1,97 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { Sidebar } from '../app/components/Sidebar/SM_Sidebar'; +import { serviceManagerPrimaryItems } from '../app/components/Sidebar/sidebarConfig'; +import { Box } from '@mui/material'; + +const meta: Meta = { + title: 'Components/Sidebar', + component: Sidebar, + parameters: { + layout: 'fullscreen', + docs: { + description: { + component: 'The main navigation sidebar component with primary and secondary navigation items.', + }, + }, + }, + argTypes: { + open: { + control: 'boolean', + description: 'Whether the sidebar is expanded or collapsed', + onClick : {action : 'clicked'} + }, + selectedNav: { + control: 'select', + options: ['dashboard', 'applicationInbox', 'searchProperty', 'allApplications', 'mapView'], + description: 'Currently selected navigation item' + }, + onToggle: { action: 'toggled' }, + onSelectNav: { action: 'nav-selected' }, + onProfileClick: { action: 'profile-clicked' }, + allApplicationsToggle: { + control: 'boolean', + description: 'Toggle state for all applications section' + }, + }, + decorators: [ + (Story) => ( + + + +

Main Content Area

+

This is where the main application content would be displayed.

+
+
+ ), + ], +}; + +export default meta; +type Story = StoryObj; + +// Default story - sidebar expanded +export const Default: Story = { + args: { + open: false, + selectedNav: 'dashboard', + primaryItems: serviceManagerPrimaryItems, + onToggle: () => console.log('toggle-sidebar'), + onSelectNav: (nav: string) => console.log('select-nav:', nav), + onProfileClick: (el: HTMLElement | null) => console.log('profile-click:', el), + allApplicationsToggle: false, + setAllApplicationsToggle: (toggle: boolean) => console.log('set-all-applications-toggle:', toggle), + }, +}; + +// Collapsed sidebar story +export const Collapsed: Story = { + args: { + ...Default.args, + open: false, + }, + parameters: { + docs: { + description: { + story: 'Sidebar in collapsed state showing only icons.', + }, + }, + }, +}; + + +// All Applications toggle story +export const AllApplicationsToggle: Story = { + args: { + ...Default.args, + selectedNav: 'allApplications', + allApplicationsToggle: false, + }, + parameters: { + docs: { + description: { + story: 'Testing the All Applications toggle functionality.', + }, + }, + }, +}; + diff --git a/frontend/web-ui/src/stories/WardStatistics.stories.tsx b/frontend/web-ui/src/stories/WardStatistics.stories.tsx new file mode 100644 index 0000000..d4205dc --- /dev/null +++ b/frontend/web-ui/src/stories/WardStatistics.stories.tsx @@ -0,0 +1,312 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import React from 'react'; +import { + Box, + Card, + CardContent, + Typography, + Container, + Divider +} from '@mui/material'; + +// Ward Statistics interface +interface WardStatistics { + wardNumber: number; + zoneName: string; + zoneCode: string; + zoneLocation: string; + pending: number; + approved: number; + rejected: number; + avgTime: string; +} + +interface WardStatisticsCardProps { + ward: WardStatistics; +} + + +const WardStatisticsCard: React.FC = ({ ward }) => { + return ( + + + {/* Top row: header (left) and stats (right) */} + + + + Ward {ward.wardNumber} - {ward.zoneName} + + + {ward.zoneCode} {ward.zoneLocation} + + + + {/* Right-aligned statistics */} + + {/* Pending */} + + + {ward.pending} + + + Pending + + + + {/* Approved */} + + + {ward.approved} + + + Approved + + + + {/* Rejected */} + + + {ward.rejected} + + + Rejected + + + + {/* Average Time */} + + + {ward.avgTime} + + + Avg. Time + + + + + + {/* Orange divider line below header + stats */} + + + {/* keep any additional content below divider if needed */} + + + ); +}; +interface WardStatisticsListProps { + wards?: WardStatistics[]; + title?: string; +} + +const WardStatisticsDashboard: React.FC = ({ + wards = [], + title = "Ward Statistics" +}) => { + return ( + + + {title} + + + + {wards.map((ward) => ( + + ))} + + {wards.length === 0 && ( + + No ward statistics available + + )} + + + ); +}; + +// Mock data based on your attachment +const mockWardStatistics: WardStatistics[] = [ + { + wardNumber: 24, + zoneName: 'Rajajinagar Zone', + zoneCode: 'BBMP', + zoneLocation: 'Zone 3 - West', + pending: 5, + approved: 19, + rejected: 3, + avgTime: '6 days' + }, + { + wardNumber: 38, + zoneName: 'Bommanahalli Zone', + zoneCode: 'BBMP', + zoneLocation: 'Zone 6 - South', + pending: 7, + approved: 20, + rejected: 2, + avgTime: '4.6 days' + }, + { + wardNumber: 87, + zoneName: 'Yelahanka Zone', + zoneCode: 'BBMP', + zoneLocation: 'Zone 2 - North', + pending: 4, + approved: 22, + rejected: 2, + avgTime: '4.8 days' + } +]; + + +// Storybook Meta +const meta: Meta = { + title: 'Commissioner Dashboard/WardStatistics', + component: WardStatisticsCard, + parameters: { + layout: 'padded', + docs: { + description: { + component: 'Ward Statistics component showing ward-level application statistics with pending, approved, rejected counts and average processing time using Material-UI styling.' + } + } + }, + argTypes: { + ward: { + description: 'Ward statistics data object', + } + } +}; + +export default meta; + +// List Stories +export const WardStatisticsList: StoryObj = { + render: (args) => , + args: { + wards: mockWardStatistics, + title: "Jurisdiction" + } +}; diff --git a/frontend/web-ui/src/stories/ZoneCollectionCard.stories.tsx b/frontend/web-ui/src/stories/ZoneCollectionCard.stories.tsx new file mode 100644 index 0000000..8c5d0bc --- /dev/null +++ b/frontend/web-ui/src/stories/ZoneCollectionCard.stories.tsx @@ -0,0 +1,307 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import React from 'react'; +import { + Box, + Card, + CardContent, + Typography, + LinearProgress, + Container, + TextField, + InputAdornment, + IconButton +} from '@mui/material'; +import { Search } from '@mui/icons-material'; + +// Mock Zone Collection Card Component based on Figma design +interface ZoneData { + zoneName: string; + ward: string; + totalProperties: number; + compliance: number; // percentage +} + +interface ZoneCollectionCardProps { + zone: ZoneData; +} + +const ZoneCollectionCard: React.FC = ({ zone }) => { + // Determine card color based on compliance percentage + const getCardColor = (compliance: number) => { + if (compliance >= 80) return '#E8F5E8'; + if (compliance >= 60) return '#FFF3E0'; + return '#FFEBEE'; + }; + + const getProgressColor = (compliance: number) => { + if (compliance >= 80) return '#4CAF50'; + if (compliance >= 60) return '#FF9800'; + return '#F44336'; + }; + + return ( + + + + {zone.zoneName} + + + + {zone.ward} + + + + + + Total Properties: + + + {zone.totalProperties} + + + + + + Compliance + + + {zone.compliance}% + + + + + + + + ); +}; + +// Zone Collection Dashboard Component +interface ZoneCollectionDashboardProps { + zones?: ZoneData[]; + searchTerm?: string; + onSearchChange?: (value: string) => void; +} + +const ZoneCollectionDashboard: React.FC = ({ + zones = [], + searchTerm = '', + onSearchChange +}) => { + const filteredZones = zones.filter(zone => + zone.zoneName.toLowerCase().includes(searchTerm.toLowerCase()) || + zone.ward.toLowerCase().includes(searchTerm.toLowerCase()) + ); + + return ( + + {/* Header */} + + Zone Collection Information + + + {/* Search Bar */} + onSearchChange?.(e.target.value)} + sx={{ + mb: 3, + '& .MuiOutlinedInput-root': { + borderRadius: '25px', + backgroundColor: '#F8F9FA' + } + }} + InputProps={{ + startAdornment: ( + + + + + + ), + }} + /> + + {/* Zone Cards */} + + {filteredZones.map((zone, index) => ( + + ))} + + {filteredZones.length === 0 && searchTerm && ( + + No zones found matching "{searchTerm}" + + )} + + + ); +}; + +// Mock data based on the Figma design +const mockZones: ZoneData[] = [ + { + zoneName: "Model Town Zone", + ward: "Ward 40-64", + totalProperties: 765, + compliance: 65 + }, + { + zoneName: "Rama Mandi Zone", + ward: "Ward 75-90", + totalProperties: 1056, + compliance: 90 + }, + { + zoneName: "Urban Estate Zone", + ward: "Ward 27-45", + totalProperties: 1615, + compliance: 75 + }, + { + zoneName: "Mithapur Zone", + ward: "Ward 103-95", + totalProperties: 1258, + compliance: 78 + }, + { + zoneName: "Lajpat Nagar Zone", + ward: "Ward 64-70", + totalProperties: 736, + compliance: 58 + }, + { + zoneName: "Dayal Nagar Zone", + ward: "Ward 08-18", + totalProperties: 834, + compliance: 45 + } +]; + +// Storybook Meta +const meta: Meta = { + title: 'Commissioner Dashboard/ZoneCollectionCard', + component: ZoneCollectionCard, + parameters: { + layout: 'padded', + docs: { + description: { + component: 'Zone Collection Card component showing zone information, property counts, and compliance data with color-coded progress bars.' + } + } + }, + argTypes: { + zone: { + description: 'Zone data object containing name, ward, properties count, and compliance percentage', + } + } +}; + +export default meta; +type Story = StoryObj; + +// Individual Card Stories +export const HighCompliance: Story = { + args: { + zone: { + zoneName: "Rama Mandi Zone", + ward: "Ward 75-90", + totalProperties: 1056, + compliance: 90 + } + } +}; + +export const MediumCompliance: Story = { + args: { + zone: { + zoneName: "Urban Estate Zone", + ward: "Ward 27-45", + totalProperties: 1615, + compliance: 75 + } + } +}; + +export const LowCompliance: Story = { + args: { + zone: { + zoneName: "Lajpat Nagar Zone", + ward: "Ward 64-70", + totalProperties: 736, + compliance: 58 + } + } +}; + +export const CompleteDashboard: StoryObj = { + render: (args) => , + args: { + zones: mockZones, + searchTerm: '' + } +}; diff --git a/frontend/web-ui/src/stories/assets/accessibility.png b/frontend/web-ui/src/stories/assets/accessibility.png new file mode 100644 index 0000000..6ffe6fe Binary files /dev/null and b/frontend/web-ui/src/stories/assets/accessibility.png differ diff --git a/frontend/web-ui/src/stories/assets/accessibility.svg b/frontend/web-ui/src/stories/assets/accessibility.svg new file mode 100644 index 0000000..107e93f --- /dev/null +++ b/frontend/web-ui/src/stories/assets/accessibility.svg @@ -0,0 +1 @@ +Accessibility \ No newline at end of file diff --git a/frontend/web-ui/src/stories/assets/addon-library.png b/frontend/web-ui/src/stories/assets/addon-library.png new file mode 100644 index 0000000..95deb38 Binary files /dev/null and b/frontend/web-ui/src/stories/assets/addon-library.png differ diff --git a/frontend/web-ui/src/stories/assets/assets.png b/frontend/web-ui/src/stories/assets/assets.png new file mode 100644 index 0000000..cfba681 Binary files /dev/null and b/frontend/web-ui/src/stories/assets/assets.png differ diff --git a/frontend/web-ui/src/stories/assets/avif-test-image.avif b/frontend/web-ui/src/stories/assets/avif-test-image.avif new file mode 100644 index 0000000..530709b Binary files /dev/null and b/frontend/web-ui/src/stories/assets/avif-test-image.avif differ diff --git a/frontend/web-ui/src/stories/assets/context.png b/frontend/web-ui/src/stories/assets/context.png new file mode 100644 index 0000000..e5cd249 Binary files /dev/null and b/frontend/web-ui/src/stories/assets/context.png differ diff --git a/frontend/web-ui/src/stories/assets/discord.svg b/frontend/web-ui/src/stories/assets/discord.svg new file mode 100644 index 0000000..d638958 --- /dev/null +++ b/frontend/web-ui/src/stories/assets/discord.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/web-ui/src/stories/assets/docs.png b/frontend/web-ui/src/stories/assets/docs.png new file mode 100644 index 0000000..a749629 Binary files /dev/null and b/frontend/web-ui/src/stories/assets/docs.png differ diff --git a/frontend/web-ui/src/stories/assets/figma-plugin.png b/frontend/web-ui/src/stories/assets/figma-plugin.png new file mode 100644 index 0000000..8f79b08 Binary files /dev/null and b/frontend/web-ui/src/stories/assets/figma-plugin.png differ diff --git a/frontend/web-ui/src/stories/assets/github.svg b/frontend/web-ui/src/stories/assets/github.svg new file mode 100644 index 0000000..dc51352 --- /dev/null +++ b/frontend/web-ui/src/stories/assets/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/web-ui/src/stories/assets/share.png b/frontend/web-ui/src/stories/assets/share.png new file mode 100644 index 0000000..8097a37 Binary files /dev/null and b/frontend/web-ui/src/stories/assets/share.png differ diff --git a/frontend/web-ui/src/stories/assets/styling.png b/frontend/web-ui/src/stories/assets/styling.png new file mode 100644 index 0000000..d341e82 Binary files /dev/null and b/frontend/web-ui/src/stories/assets/styling.png differ diff --git a/frontend/web-ui/src/stories/assets/testing.png b/frontend/web-ui/src/stories/assets/testing.png new file mode 100644 index 0000000..d4ac39a Binary files /dev/null and b/frontend/web-ui/src/stories/assets/testing.png differ diff --git a/frontend/web-ui/src/stories/assets/theming.png b/frontend/web-ui/src/stories/assets/theming.png new file mode 100644 index 0000000..1535eb9 Binary files /dev/null and b/frontend/web-ui/src/stories/assets/theming.png differ diff --git a/frontend/web-ui/src/stories/assets/tutorials.svg b/frontend/web-ui/src/stories/assets/tutorials.svg new file mode 100644 index 0000000..b492a9c --- /dev/null +++ b/frontend/web-ui/src/stories/assets/tutorials.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/web-ui/src/stories/assets/youtube.svg b/frontend/web-ui/src/stories/assets/youtube.svg new file mode 100644 index 0000000..a7515d7 --- /dev/null +++ b/frontend/web-ui/src/stories/assets/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/web-ui/src/stories/button.css b/frontend/web-ui/src/stories/button.css new file mode 100644 index 0000000..4e3620b --- /dev/null +++ b/frontend/web-ui/src/stories/button.css @@ -0,0 +1,30 @@ +.storybook-button { + display: inline-block; + cursor: pointer; + border: 0; + border-radius: 3em; + font-weight: 700; + line-height: 1; + font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} +.storybook-button--primary { + background-color: #555ab9; + color: white; +} +.storybook-button--secondary { + box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 0px 1px inset; + background-color: transparent; + color: #333; +} +.storybook-button--small { + padding: 10px 16px; + font-size: 12px; +} +.storybook-button--medium { + padding: 11px 20px; + font-size: 14px; +} +.storybook-button--large { + padding: 12px 24px; + font-size: 16px; +} diff --git a/frontend/web-ui/src/stories/header.css b/frontend/web-ui/src/stories/header.css new file mode 100644 index 0000000..5efd46c --- /dev/null +++ b/frontend/web-ui/src/stories/header.css @@ -0,0 +1,32 @@ +.storybook-header { + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 1px solid rgba(0, 0, 0, 0.1); + padding: 15px 20px; + font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +.storybook-header svg { + display: inline-block; + vertical-align: top; +} + +.storybook-header h1 { + display: inline-block; + vertical-align: top; + margin: 6px 0 6px 10px; + font-weight: 700; + font-size: 20px; + line-height: 1; +} + +.storybook-header button + button { + margin-left: 10px; +} + +.storybook-header .welcome { + margin-right: 10px; + color: #333; + font-size: 14px; +} diff --git a/frontend/web-ui/src/stories/itadmin/Sidebar1.stories.tsx b/frontend/web-ui/src/stories/itadmin/Sidebar1.stories.tsx new file mode 100644 index 0000000..d29a2a8 --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/Sidebar1.stories.tsx @@ -0,0 +1,252 @@ +import type { Meta, StoryObj } from "@storybook/react"; +import { Sidebar } from "../../app/features/it-admin-app-features/components/Sidebar"; +import DashboardOutlinedIcon from '@mui/icons-material/DashboardOutlined'; +import TaskAltOutlinedIcon from '@mui/icons-material/TaskAltOutlined'; +import SearchOutlinedIcon from '@mui/icons-material/SearchOutlined'; +import StorageRoundedIcon from '@mui/icons-material/StorageRounded'; +import MapOutlinedIcon from '@mui/icons-material/MapOutlined'; +import MenuBookRoundedIcon from '@mui/icons-material/MenuBookRounded'; +import ShieldOutlinedIcon from '@mui/icons-material/ShieldOutlined'; +import NotificationsOutlinedIcon from '@mui/icons-material/NotificationsOutlined'; +import ErrorOutlineOutlinedIcon from '@mui/icons-material/ErrorOutlineOutlined'; +import hindiEnglishIcon from '../../app/components/Sidebar/assets/hindi_english_icon.svg'; + +const HindiEnglishIcon = () => ( + Language +); +import AccountCircleOutlinedIcon from '@mui/icons-material/AccountCircleOutlined'; +import SettingsOutlinedIcon from '@mui/icons-material/SettingsOutlined'; +import type { SidebarProps } from "../../app/features/it-admin-app-features/components/Sidebar"; +import type { StoryContext } from "@storybook/react"; + + +// Immutable originals for label/state preservation +const topItemsOriginal = [ + { label: "Dashboard", icon: DashboardOutlinedIcon, originalLabel: "Dashboard" }, + { label: "User Management", icon: TaskAltOutlinedIcon, originalLabel: "User Management" }, + { label: "Demand Generation", icon: SearchOutlinedIcon, originalLabel: "Demand Generation" }, + { label: "Master Data", icon: StorageRoundedIcon, originalLabel: "Master Data" }, + { label: "Map Configuration", icon: MapOutlinedIcon, originalLabel: "Map Configuration" }, + { label: "Localisation", icon: MenuBookRoundedIcon, originalLabel: "Localisation" }, + { label: "Access Control", icon: ShieldOutlinedIcon, originalLabel: "Access Control" }, + { label: "Notifications", icon: NotificationsOutlinedIcon, originalLabel: "Notifications" }, +]; +const bottomItemsOriginal = [ + { label: "Help Desk", icon: ErrorOutlineOutlinedIcon, originalLabel: "Help Desk" }, + { key: 'language', label: 'Language', icon: HindiEnglishIcon, group: 'secondary', originalLabel: "Language" }, + { label: "Profile", icon: AccountCircleOutlinedIcon, originalLabel: "Profile" }, + { label: "Settings", icon: SettingsOutlinedIcon, originalLabel: "Settings" }, +]; + +const NAV_OPTIONS = [ + "Dashboard", + "User Management", + "Demand Generation", + "Master Data", + "Map Configuration", + "Localisation", + "Access Control", + "Notifications", + "Help Desk", + "Language", + "Profile", + "Settings" +]; + +const getSidebarItems = ( + selectedNav: string, + setSelectedNav: (label: string) => void +) => { + return { + topWithClick: topItemsOriginal.map((item) => ({ + ...item, + label: item.originalLabel, + isActive: selectedNav === item.originalLabel, + onClick: () => setSelectedNav(item.originalLabel), + })), + bottomWithClick: bottomItemsOriginal.map((item) => ({ + ...item, + label: item.originalLabel, + isActive: selectedNav === item.originalLabel, + onClick: () => setSelectedNav(item.originalLabel), + })) + }; +}; + +const meta: Meta = { + title: "ITAdmin/Sidebar", + component: Sidebar, + parameters: { + layout: "fullscreen" + }, + argTypes: { + selectedNav: { + control: "select", + options: NAV_OPTIONS, + description: "Currently selected navigation item", + defaultValue: "Dashboard" + } + } +}; +export default meta; + +type Story = StoryObj; + +export const Default: Story = { + render: ( + args: SidebarProps & { selectedNav?: string }, + context: StoryContext + ) => { + const updateArgs = context.updateArgs!; + const selectedNav = args.selectedNav ?? "Dashboard"; + const width = args.width || 280; + const { topWithClick, bottomWithClick } = getSidebarItems( + selectedNav, + (label) => updateArgs({ selectedNav: label }) + ); + return ( +
+
+ +
+

{selectedNav}

+

Click navigation items or use controls section.

+
+
+
+ ); + }, + args: { + width: 280, + backgroundColor: "#a9c8d6", + position: "fixed", + top: "0", + left: "0", + selectedNav: "Dashboard" + }, + parameters: { + controls: { expanded: true } + } +}; + + +export const ActiveDashboard: Story = { + render: ( + args: SidebarProps & { open?: boolean; selectedNav?: string }, + context: StoryContext + ) => { + const updateArgs = context.updateArgs!; + const open = args.open ?? true; + const selectedNav = "Dashboard"; + const width = open ? args.width || 280 : 76; + const { topWithClick, bottomWithClick } = getSidebarItems(selectedNav, (label) => updateArgs({ selectedNav: label })); + return ( +
+ +
+ +

{selectedNav}

+

Click navigation items or use controls section.

+
+
+ ); + }, + args: { + width: 280, + backgroundColor: "#a9c8d6", + position: "relative", + top: "0", + left: "0", + // open: true, + selectedNav: "Dashboard" + }, + parameters: { + controls: { expanded: true }, + docs: { + description: { + story: 'Sidebar with Dashboard navigation item highlighted as active.', + }, + }, + }, +}; + +export const DarkTheme: Story = { + render: ( + args: SidebarProps & { open?: boolean; selectedNav?: string }, + context: StoryContext + ) => { + const updateArgs = context.updateArgs!; + const open = args.open ?? true; + const selectedNav = args.selectedNav ?? "Dashboard"; + const width = open ? args.width || 280 : 76; + const { topWithClick, bottomWithClick } = getSidebarItems(selectedNav, (label) => updateArgs({ selectedNav: label })); + return ( +
+ +
+ +

{selectedNav}

+

Click navigation items or use controls section.

+
+
+ ); + }, + args: { + width: 280, + backgroundColor: "#2c3e50", + position: "relative", + top: "0", + left: "0", + // open: true, + selectedNav: "Dashboard" + }, + parameters: { + controls: { expanded: true }, + docs: { + description: { + story: 'Sidebar with dark theme background color.', + }, + }, + }, +}; \ No newline at end of file diff --git a/frontend/web-ui/src/stories/itadmin/access-control/RoleCard.stories.tsx b/frontend/web-ui/src/stories/itadmin/access-control/RoleCard.stories.tsx new file mode 100644 index 0000000..5d1c658 --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/access-control/RoleCard.stories.tsx @@ -0,0 +1,73 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { RoleCard } from '../../../app/features/it-admin-app-features/components/RoleCard'; + +const meta: Meta = { + title: 'ITAdmin/AccessControl/RoleCard', + component: RoleCard, + tags: ['autodocs'], + argTypes: { + role: { control: 'text' }, + description: { control: 'text' }, + userCount: { control: 'number' }, + userLabel: { control: 'text' }, + levelTag: { control: 'text' }, + requestCount: { control: 'number' }, + requestLabel: { control: 'text' }, + selected: { control: 'boolean' }, + onEdit: { action: 'edit-clicked' }, + }, +}; +export default meta; +type Story = StoryObj; + +export const SuperAdmin: Story = { + args: { + role: 'Super Admin', + description: 'Full system access', + userCount: 5, + userLabel: 'users', + levelTag: 'city level', + requestCount: 1, + requestLabel: 'Request', + selected: true, + }, +}; + +export const FieldAgent: Story = { + args: { + role: 'Field Agent', + description: 'Property verification', + userCount: 890, + userLabel: 'users', + levelTag: 'ward level', + requestCount: 7, + requestLabel: 'Requests', + selected: false, + }, +}; + +export const ServiceManager: Story = { + args: { + role: 'Service Manager', + description: 'Property tax management', + userCount: 15, + userLabel: 'users', + levelTag: 'city level', + requestCount: 1, + requestLabel: 'Request', + selected: false, + }, +}; + +export const GISAdmin: Story = { + args: { + role: 'GIS Admin', + description: 'Map data management', + userCount: 5, + userLabel: 'users', + levelTag: 'city level', + requestCount: 4, + requestLabel: 'Requests', + selected: false, + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/access-control/RoleCardList.stories.tsx b/frontend/web-ui/src/stories/itadmin/access-control/RoleCardList.stories.tsx new file mode 100644 index 0000000..4d30787 --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/access-control/RoleCardList.stories.tsx @@ -0,0 +1,69 @@ +import { useState } from 'react'; +import type { Meta, StoryObj } from '@storybook/react'; +import { RoleCard, type RoleCardProps } from '../../../app/features/it-admin-app-features/components/RoleCard'; + +const meta: Meta = { + title: 'ITAdmin/AccessControl/RoleCardList', + component: RoleCard, + tags: ['autodocs'], +}; +export default meta; +type Story = StoryObj; + +const roles: RoleCardProps[] = [ + { + role: 'Super Admin', + description: 'Full system access', + userCount: 5, + userLabel: 'users', + levelTag: 'city level', + requestCount: 1, + requestLabel: 'Request', + onEdit: () => {}, + }, + { + role: 'Field Agent', + description: 'Property verification', + userCount: 890, + userLabel: 'users', + levelTag: 'ward level', + requestCount: 7, + requestLabel: 'Requests', + onEdit: () => {}, + }, + { + role: 'Service Manager', + description: 'Property tax management', + userCount: 15, + userLabel: 'users', + levelTag: 'city level', + requestCount: 1, + requestLabel: 'Request', + onEdit: () => {}, + }, + { + role: 'GIS Admin', + description: 'Map data management', + userCount: 5, + userLabel: 'users', + levelTag: 'city level', + requestCount: 4, + requestLabel: 'Requests', + onEdit: () => {}, + }, +]; + +export const InteractiveList: Story = { + render: () => { + const [selectedIdx, setSelectedIdx] = useState(0); + return ( +
+ {roles.map((props, idx) => ( +
setSelectedIdx(idx)} style={{ cursor: 'pointer' }}> + +
+ ))} +
+ ); + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/dashboard/MapOverview.stories.tsx b/frontend/web-ui/src/stories/itadmin/dashboard/MapOverview.stories.tsx new file mode 100644 index 0000000..5268f21 --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/dashboard/MapOverview.stories.tsx @@ -0,0 +1,30 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { MapOverview } from '../../../app/features/it-admin-app-features/components/MapOverview'; + +const meta: Meta = { + title: 'ITAdmin/Dashboard/MapOverview', + component: MapOverview, + tags: ['autodocs'], + argTypes: { + selectedZone: { + control: 'select', + options: ['Zone A', 'Zone B', 'Zone C'], + description: 'Currently selected zone', + defaultValue: 'Zone A', + }, + mapImageUrl: { control: 'text' }, + searchValue: { control: 'text' }, + onViewMore: { action: 'view-more-clicked' }, + onSearchChange: { action: 'search-changed' }, + }, +}; +export default meta; +type Story = StoryObj; + +export const Default: Story = { + args: { + selectedZone: 'Zone A', + mapImageUrl: '', + searchValue: '', + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/dashboard/RecentActivityItem.stories.tsx b/frontend/web-ui/src/stories/itadmin/dashboard/RecentActivityItem.stories.tsx new file mode 100644 index 0000000..b4dd9a5 --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/dashboard/RecentActivityItem.stories.tsx @@ -0,0 +1,36 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { RecentActivityItem } from '../../../app/features/it-admin-app-features/components/RecentActivityItem'; +import { FaUserAlt, FaMapMarkerAlt } from 'react-icons/fa'; + +const meta: Meta = { + title: 'ITAdmin/Dashboard/RecentActivityItem', + component: RecentActivityItem, + tags: ['autodocs'], + argTypes: { + icon: { control: false }, + label: { control: 'text' }, + subtext: { control: 'text' }, + }, +}; +export default meta; +type Story = StoryObj; + + +export const UserActivity: Story = { + args: { + icon: , + label: 'User Registered', + subtext: 'Rajesh Kumar registered as Field Agent', + hoursAgo: '2 hours ago', + }, +}; + + +export const MapActivity: Story = { + args: { + icon: , + label: 'Zone Updated', + subtext: 'Zone B boundaries updated', + hoursAgo: '1 hour ago', + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/dashboard/StatsCard.stories.tsx b/frontend/web-ui/src/stories/itadmin/dashboard/StatsCard.stories.tsx new file mode 100644 index 0000000..0714ba4 --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/dashboard/StatsCard.stories.tsx @@ -0,0 +1,48 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { StatsCard } from '../../../app/features/it-admin-app-features/components/StatsCard'; +// import type { StatsCardProps } from './StatsCard'; + +const meta: Meta = { + title: 'ITAdmin/Dashboard/StatsCard', + component: StatsCard, + tags: ['autodocs'], + argTypes: { + title: { control: 'text' }, + value: { control: 'text' }, + subtext: { control: 'text' }, + highlightColor: { control: 'color' }, + }, +}; +export default meta; +type Story = StoryObj; + +export const TotalProperties: Story = { + args: { + title: 'Total Properties', + value: '45,231', + subtext: '+2.17% this week', + highlightColor: '#C84C0E', + }, +}; + +export const MappedProperties: Story = { + args: { + title: 'Mapped Properties', + value: '42,891', + subtext: '94.8% coverage', + highlightColor: '#C84C0E', + }, +}; + +export const ActiveUsers: Story = { + args: { + title: 'Active Users', + substats: [ + { value: '87,065', label: 'Citizens Registered' }, + { value: '890', label: 'Field Agents' }, + { value: '48', label: 'Service Managers' }, + ], + highlightColor: '#C84C0E', + width: 420, + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/dashboard/ZoneCard.stories.tsx b/frontend/web-ui/src/stories/itadmin/dashboard/ZoneCard.stories.tsx new file mode 100644 index 0000000..d706690 --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/dashboard/ZoneCard.stories.tsx @@ -0,0 +1,36 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { ZoneCard } from '../../../app/features/it-admin-app-features/components/ZoneCard'; + +const meta: Meta = { + title: 'ITAdmin/Dashboard/ZoneCard', + component: ZoneCard, + tags: ['autodocs'], + argTypes: { + zoneName: { control: 'text' }, + count: { control: 'text' }, + onViewDetails: { action: 'view-details-clicked' }, + }, +}; +export default meta; +type Story = StoryObj; + +export const ZoneA: Story = { + args: { + zoneName: 'Zone A', + count: '12,450', + }, +}; + +export const ZoneB: Story = { + args: { + zoneName: 'Zone B', + count: '15,320', + }, +}; + +export const ZoneC: Story = { + args: { + zoneName: 'Zone C', + count: '10,180', + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/demand-generation/ActionButton.stories.tsx b/frontend/web-ui/src/stories/itadmin/demand-generation/ActionButton.stories.tsx new file mode 100644 index 0000000..826991b --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/demand-generation/ActionButton.stories.tsx @@ -0,0 +1,44 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { ActionButton } from '../../../app/features/it-admin-app-features/components/ActionButton'; +import { FiPlus } from 'react-icons/fi'; + +const meta: Meta = { + title: 'ITAdmin/DemandGeneration/ActionButton', + component: ActionButton, + tags: ['autodocs'], + argTypes: { + label: { control: 'text' }, + color: { control: 'color' }, + background: { control: 'color' }, + onClick: { action: 'clicked' }, + icon: { control: false }, + style: { control: false }, + }, +}; +export default meta; +type Story = StoryObj; + +export const AddRuleButton: Story = { + args: { + label: 'Add New Rule', + background: '#fff', + color: '#F26B1A', + icon: , // icon left, orange + style: { + border: '1.5px solid #eb5e07ff', + fontWeight: 500, + fontSize: 14, + padding: '6px 14px', + boxShadow: 'none', + }, + }, +}; + +export const TriggerButton: Story = { + args: { + label: 'Trigger Recalibration', + background: '#eb5e07ff', + color: '#fff', + icon: , + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/demand-generation/CalculationRuleCard.stories.tsx b/frontend/web-ui/src/stories/itadmin/demand-generation/CalculationRuleCard.stories.tsx new file mode 100644 index 0000000..746158c --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/demand-generation/CalculationRuleCard.stories.tsx @@ -0,0 +1,40 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { CalculationRuleCard } from '../../../app/features/it-admin-app-features/components/CalculationRuleCard'; + +const meta: Meta = { + title: 'ITAdmin/DemandGeneration/CalculationRuleCard', + component: CalculationRuleCard, + tags: ['autodocs'], + argTypes: { + title: { control: 'text' }, + formula: { control: 'text' }, + date: { control: 'text' }, + onEdit: { action: 'edit-clicked' }, + }, +}; +export default meta; +type Story = StoryObj; + +export const AnnualPropertyTax: Story = { + args: { + title: 'Annual Property Tax Rate', + formula: 'Formula: Base Rate × Area × Usage Factor + rebate - arrears\nBase Rate: ₹25/sq.ft, Usage Factor: 1.0-2.5', + date: '20 Sept 2025 16:45', + }, +}; + +export const QuarterlyInflation: Story = { + args: { + title: 'Quarterly Inflation Adjustment', + formula: 'Formula: Previous Tax × (1 + Inflation Rate)\nInflation Rate: 6.5% annually', + date: '20 Sept 2025 16:45', + }, +}; + +export const PriorityManagement: Story = { + args: { + title: 'Priority Management - Enumeration', + formula: 'Formula: >0 days from SLA date - Breach, <5\ndays to SLA - High, <15 days to SLA - Else - Low', + date: '20 Sept 2025 16:45', + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/demand-generation/RecalibrationHistoryCard.stories.tsx b/frontend/web-ui/src/stories/itadmin/demand-generation/RecalibrationHistoryCard.stories.tsx new file mode 100644 index 0000000..fdd2704 --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/demand-generation/RecalibrationHistoryCard.stories.tsx @@ -0,0 +1,51 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { RecalibrationHistoryCard } from '../../../app/features/it-admin-app-features/components/RecalibrationHistoryCard'; + +const meta: Meta = { + title: 'ITAdmin/DemandGeneration/RecalibrationHistoryCard', + component: RecalibrationHistoryCard, + tags: ['autodocs'], + argTypes: { + period: { control: 'text' }, + triggeredBy: { control: 'text' }, + date: { control: 'text' }, + properties: { control: 'text' }, + avgChange: { control: 'text' }, + duration: { control: 'text' }, + }, +}; +export default meta; +type Story = StoryObj; + +export const Q42024: Story = { + args: { + period: 'Q4 2024', + triggeredBy: 'Rajesh Kumar', + date: '2024-10-01', + properties: '45,231', + avgChange: '+8.5%', + duration: '2h 34m', + }, +}; + +export const Q32024: Story = { + args: { + period: 'Q3 2024', + triggeredBy: 'System Auto', + date: '2024-07-01', + properties: '44,890', + avgChange: '+6.2%', + duration: '2h 18m', + }, +}; + +export const Q22024: Story = { + args: { + period: 'Q2 2024', + triggeredBy: 'Priya Sharma', + date: '2024-04-01', + properties: '44,890', + avgChange: '+6.2%', + duration: '2h 45m', + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/demand-generation/RecalibrationStatsCard.stories.tsx b/frontend/web-ui/src/stories/itadmin/demand-generation/RecalibrationStatsCard.stories.tsx new file mode 100644 index 0000000..f47230c --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/demand-generation/RecalibrationStatsCard.stories.tsx @@ -0,0 +1,48 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { RecalibrationStatsCard } from '../../../app/features/it-admin-app-features/components/RecalibrationStatsCard'; + +const meta: Meta = { + title: 'ITAdmin/DemandGeneration/RecalibrationStatsCard', + component: RecalibrationStatsCard, + tags: ['autodocs'], + argTypes: { + title: { control: 'text' }, + value: { control: 'text' }, + subtext: { control: 'text' }, + highlightColor: { control: 'color' }, + }, +}; +export default meta; +type Story = StoryObj; + +export const TotalRecalibrations: Story = { + args: { + title: 'Total Recalibrations', + value: '12', + highlightColor: '#00', + }, +}; + +export const LastRecalibration: Story = { + args: { + title: 'Last Recalibration', + value: 'Oct 1, 2024', + highlightColor: '#000', + }, +}; + +export const ActiveRules: Story = { + args: { + title: 'Active Rules', + value: '3', + highlightColor: '#000', + }, +}; + +export const AvgProcessingTime: Story = { + args: { + title: 'Avg. Processing Time', + value: '2h 28m', + highlightColor: '#000', + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/maps/LayerVisibilityToggle.stories.tsx b/frontend/web-ui/src/stories/itadmin/maps/LayerVisibilityToggle.stories.tsx new file mode 100644 index 0000000..24b1cec --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/maps/LayerVisibilityToggle.stories.tsx @@ -0,0 +1,43 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { useState } from 'react'; +import { LayerVisibilityToggle } from '../../../app/features/it-admin-app-features/components/LayerVisibilityToggle'; + +const meta: Meta = { + title: 'ITAdmin/MapConfiguration/LayerVisibilityToggle', + component: LayerVisibilityToggle, + tags: ['autodocs'], + argTypes: { + checked: { control: 'boolean' }, + disabled: { control: 'boolean' }, + onChange: { action: 'toggled' }, + }, +}; +export default meta; +type Story = StoryObj; + +export const Default: Story = { + render: (args) => { + const [checked, setChecked] = useState(args.checked ?? false); + return ( + { + setChecked(val); + args.onChange?.(val); + }} + /> + ); + }, + args: { + checked: true, + disabled: false, + }, +}; + +export const Disabled: Story = { + args: { + checked: false, + disabled: true, + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/maps/MapStatsCard.stories.tsx b/frontend/web-ui/src/stories/itadmin/maps/MapStatsCard.stories.tsx new file mode 100644 index 0000000..da4934f --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/maps/MapStatsCard.stories.tsx @@ -0,0 +1,42 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { MapStatsCard } from '../../../app/features/it-admin-app-features/components/MapStatsCard'; + +const meta: Meta = { + title: 'ITAdmin/MapConfiguration/MapStatsCard', + component: MapStatsCard, + tags: ['autodocs'], + argTypes: { + title: { control: 'text' }, + value: { control: 'text' }, + }, +}; +export default meta; +type Story = StoryObj; + +export const TotalPropertiesMapped: Story = { + args: { + title: 'Total Properties Mapped', + value: '42,891', + }, +}; + +export const PropertiesWithPolygons: Story = { + args: { + title: 'Properties with Polygons', + value: '38,245', + }, +}; + +export const BoundaryCoverage: Story = { + args: { + title: 'Boundary Coverage', + value: '198', + }, +}; + +export const CoordinateAccuracy: Story = { + args: { + title: 'Coordinate Accuracy', + value: '95.2%', + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/maps/TabSwitcher.stories.tsx b/frontend/web-ui/src/stories/itadmin/maps/TabSwitcher.stories.tsx new file mode 100644 index 0000000..933049f --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/maps/TabSwitcher.stories.tsx @@ -0,0 +1,53 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { TabSwitcher } from '../../../app/features/it-admin-app-features/components/TabSwitcher'; +import React from 'react'; + +const meta: Meta = { + title: 'ITAdmin/MapConfiguration/TabSwitcher', + component: TabSwitcher, + tags: ['autodocs'], + argTypes: { + tabs: { control: 'object' }, + // Removed isManageMaps, not a prop of TabSwitcher + onTabChange: { action: 'tab-changed' }, + style: { control: false }, + activeTab: { table: { disable: true } }, + }, +}; +export default meta; +type Story = StoryObj; + + +import type { TabSwitcherProps } from '../../../app/features/it-admin-app-features/components/TabSwitcher'; +const TabSwitcherStoryWrapper = (args: TabSwitcherProps) => { + const tabs = ['Manage Maps', 'View Map Options']; + const [showManageMaps, setShowManageMaps] = React.useState(true); + const activeTab = showManageMaps ? tabs[0] : tabs[1]; + return ( +
+ + +
+ ); +}; + +export const Default: Story = { + render: (args) => , + args: { + tabs: ['Manage Maps', 'View Map Options'], + activeTab: 'Manage Maps', + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/user-management/FilterDropdown.stories.tsx b/frontend/web-ui/src/stories/itadmin/user-management/FilterDropdown.stories.tsx new file mode 100644 index 0000000..5f6ab77 --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/user-management/FilterDropdown.stories.tsx @@ -0,0 +1,32 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { FilterDropdown } from '../../../app/features/it-admin-app-features/components/FilterDropdown'; + +const meta: Meta = { + title: 'ITAdmin/UserManagement/FilterDropdown', + component: FilterDropdown, + tags: ['autodocs'], + argTypes: { + label: { control: 'text' }, + options: { control: 'object' }, + value: { control: 'text' }, + onChange: { action: 'filter-changed' }, + }, +}; +export default meta; +type Story = StoryObj; + +export const Status: Story = { + args: { + label: 'Status', + options: ['All Status', 'Active', 'Inactive'], + value: 'All Status', + }, +}; + +export const Roles: Story = { + args: { + label: 'Role', + options: ['All Roles', 'Tax Officer', 'GIS Admin', 'Verifier', 'Data Entry'], + value: 'All Roles', + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/user-management/SearchBar.stories.tsx b/frontend/web-ui/src/stories/itadmin/user-management/SearchBar.stories.tsx new file mode 100644 index 0000000..b9ff84a --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/user-management/SearchBar.stories.tsx @@ -0,0 +1,22 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { SearchBar } from '../../../app/features/it-admin-app-features/components/SearchBar'; + +const meta: Meta = { + title: 'ITAdmin/UserManagement/SearchBar', + component: SearchBar, + tags: ['autodocs'], + argTypes: { + value: { control: 'text' }, + placeholder: { control: 'text' }, + onChange: { action: 'search-changed' }, + }, +}; +export default meta; +type Story = StoryObj; + +export const Default: Story = { + args: { + value: '', + placeholder: 'Search by name, ID, or email', + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/user-management/UserStatsCard.stories.tsx b/frontend/web-ui/src/stories/itadmin/user-management/UserStatsCard.stories.tsx new file mode 100644 index 0000000..e022401 --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/user-management/UserStatsCard.stories.tsx @@ -0,0 +1,39 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { UserStatsCard } from '../../../app/features/it-admin-app-features/components/UserStatsCard'; + +const meta: Meta = { + title: 'ITAdmin/UserManagement/UserStatsCard', + component: UserStatsCard, + tags: ['autodocs'], + argTypes: { + title: { control: 'text' }, + value: { control: 'text' }, + highlightColor: { control: 'color' }, + }, +}; +export default meta; +type Story = StoryObj; + +export const TotalUsers: Story = { + args: { + title: 'Total Users', + value: '1,018', + highlightColor: '#000', + }, +}; + +export const ActiveUsers: Story = { + args: { + title: 'Active Users', + value: '945', + highlightColor: '#000', + }, +}; + +export const FieldAgents: Story = { + args: { + title: 'Field Agents', + value: '890', + highlightColor: '#000', + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/user-management/UserTable.stories.tsx b/frontend/web-ui/src/stories/itadmin/user-management/UserTable.stories.tsx new file mode 100644 index 0000000..a1da86d --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/user-management/UserTable.stories.tsx @@ -0,0 +1,61 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { UserTable } from '../../../app/features/it-admin-app-features/components/UserTable'; +import type { UserTableRowProps } from '../../../app/features/it-admin-app-features/components/UserTableRow'; + +const meta: Meta<{ rows: UserTableRowProps[] }> = { + title: 'ITAdmin/UserManagement/UserTable', + tags: ['autodocs'], + argTypes: { + rows: { control: 'object', description: 'Array of user row data' }, + }, +}; +export default meta; +type Story = StoryObj<{ rows: UserTableRowProps[] }>; + +export const Default: Story = { + render: (args) => , + args: { + rows: [ + { + user: 'Rajesh Kumar', + officialId: 'BBMP/PTO/2024/001', + designation: 'Property Tax Officer', + role: 'Tax Officer', + jurisdiction: 'Ward 24 (BBMP)', + status: 'Active', + }, + { + user: 'Priya Sharma', + officialId: 'BBMP/GIS/2024/012', + designation: 'GIS Officer', + role: 'GIS Admin', + jurisdiction: 'City Level (BBMP)', + status: 'Active', + }, + { + user: 'Anil Reddy', + officialId: 'BBMP/FA/2024/089', + designation: 'Field Agent', + role: 'Verifier', + jurisdiction: 'Ward 38 (BBMP)', + status: 'Active', + }, + { + user: 'Lakshmi Menon', + officialId: 'BBMP/DEO/2024/023', + designation: 'Data Entry Operator', + role: 'Data Entry', + jurisdiction: 'Zone 3 (BBMP)', + status: 'Active', + }, + { + user: 'Rohan Kumar', + officialId: 'BBMP/PTO/2024/014', + designation: 'Property Tax Officer', + role: 'Tax Officer', + jurisdiction: 'Ward 56(BBMP)', + status: 'Active', + }, + ], + }, +}; diff --git a/frontend/web-ui/src/stories/itadmin/user-management/UserTableRow.stories.tsx b/frontend/web-ui/src/stories/itadmin/user-management/UserTableRow.stories.tsx new file mode 100644 index 0000000..873d82c --- /dev/null +++ b/frontend/web-ui/src/stories/itadmin/user-management/UserTableRow.stories.tsx @@ -0,0 +1,46 @@ +import type { Meta, StoryObj } from '@storybook/react'; +import { UserTableRow } from '../../../app/features/it-admin-app-features/components/UserTableRow'; +import type { UserTableRowProps } from '../../../app/features/it-admin-app-features/components/UserTableRow'; + +const meta: Meta<{ rows: UserTableRowProps[] }> = { + title: 'ITAdmin/UserManagement/UserTableRow', + tags: ['autodocs'], + argTypes: { + rows: { control: 'object', description: 'Array of user row data' }, + // onEdit/onDelete handled per row + }, +}; +export default meta; +type Story = StoryObj<{ rows: UserTableRowProps[] }>; + +export const MultipleRows: Story = { + render: (args) => ( + + + {args.rows.map((row, idx) => ( + + ))} + +
+ ), + args: { + rows: [ + { + user: 'Rajesh Kumar', + officialId: 'BBMP/PTO/2024/001', + designation: 'Property Tax Officer', + role: 'Tax Officer', + jurisdiction: 'Ward 24 (BBMP)', + status: 'Active', + }, + { + user: 'Priya Sharma', + officialId: 'BBMP/GIS/2024/012', + designation: 'GIS Officer', + role: 'GIS Admin', + jurisdiction: 'City Level (BBMP)', + status: 'Active', + }, + ], + }, +}; diff --git a/frontend/web-ui/src/stories/page.css b/frontend/web-ui/src/stories/page.css new file mode 100644 index 0000000..77c81d2 --- /dev/null +++ b/frontend/web-ui/src/stories/page.css @@ -0,0 +1,68 @@ +.storybook-page { + margin: 0 auto; + padding: 48px 20px; + max-width: 600px; + color: #333; + font-size: 14px; + line-height: 24px; + font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; +} + +.storybook-page h2 { + display: inline-block; + vertical-align: top; + margin: 0 0 4px; + font-weight: 700; + font-size: 32px; + line-height: 1; +} + +.storybook-page p { + margin: 1em 0; +} + +.storybook-page a { + color: inherit; +} + +.storybook-page ul { + margin: 1em 0; + padding-left: 30px; +} + +.storybook-page li { + margin-bottom: 8px; +} + +.storybook-page .tip { + display: inline-block; + vertical-align: top; + margin-right: 10px; + border-radius: 1em; + background: #e7fdd8; + padding: 4px 12px; + color: #357a14; + font-weight: 700; + font-size: 11px; + line-height: 12px; +} + +.storybook-page .tip-wrapper { + margin-top: 40px; + margin-bottom: 40px; + font-size: 13px; + line-height: 20px; +} + +.storybook-page .tip-wrapper svg { + display: inline-block; + vertical-align: top; + margin-top: 3px; + margin-right: 4px; + width: 12px; + height: 12px; +} + +.storybook-page .tip-wrapper svg path { + fill: #1ea7fd; +} diff --git a/frontend/web-ui/src/types/mui-icons.d.ts b/frontend/web-ui/src/types/mui-icons.d.ts new file mode 100644 index 0000000..cea6766 --- /dev/null +++ b/frontend/web-ui/src/types/mui-icons.d.ts @@ -0,0 +1,11 @@ +// Ambient module declarations for MUI icon submodules that may not have +// individual type declaration files in some registries or bundlers. +// This file tells TypeScript to accept imports like +// import VisibilityOutlinedIcon from '@mui/icons-material/VisibilityOutlined' +// without raising "Could not find a declaration file for module" errors. + +declare module '@mui/icons-material/*' { + import { SvgIconComponent } from '@mui/material/SvgIcon'; + const content: SvgIconComponent; + export default content; +} diff --git a/frontend/web-ui/src/types/react-map-gl.d.ts b/frontend/web-ui/src/types/react-map-gl.d.ts new file mode 100644 index 0000000..2b09732 --- /dev/null +++ b/frontend/web-ui/src/types/react-map-gl.d.ts @@ -0,0 +1,19 @@ +declare module 'react-map-gl' { + import * as React from 'react' + import type { MapboxOptions, Map as MapboxMap } from 'mapbox-gl' + + export interface MapProps extends React.HTMLAttributes { + initialViewState?: any + mapLib?: any + mapStyle?: string | object + onLoad?: (event: any) => void + style?: React.CSSProperties + interactiveLayerIds?: string[] + children?: React.ReactNode + } + + export const Map: React.ComponentType + + export const Source: React.ComponentType + export const Layer: React.ComponentType +} diff --git a/frontend/web-ui/src/utils/constants.ts b/frontend/web-ui/src/utils/constants.ts new file mode 100644 index 0000000..486b38c --- /dev/null +++ b/frontend/web-ui/src/utils/constants.ts @@ -0,0 +1,23 @@ +// Application-wide constants for backend service URLs +// Update these URLs as per your environment or deployment + +export const SERVER_URL = import.meta.env.VITE_ENUMERATION_HOST; + +// URL for the file storage service +export const FILESTORE_URL = import.meta.env.VITE_FILESTORE_HOST; + +// URL for the onboarding service +export const ONBOARDING_URL = import.meta.env.VITE_ONBOARDING_HOST; + +// URL for MDMS service +export const MDMS_URL = import.meta.env.VITE_MDMS_HOST; + +export const FILTER_TYPES = { + APPLICATION_NO: 'Application No.', + WARD: 'Ward', + ZONE: 'Zone', + DUE_DATE: 'Due Date', +} as const; + +export const DEFAULT_SORT_ORDER = 'New - Old'; +export const DEBOUNCE_DELAY = 150; \ No newline at end of file diff --git a/frontend/web-ui/tsconfig.app.json b/frontend/web-ui/tsconfig.app.json new file mode 100644 index 0000000..589dc87 --- /dev/null +++ b/frontend/web-ui/tsconfig.app.json @@ -0,0 +1,29 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "target": "ES2022", + "useDefineForClassFields": true, + "lib": ["ES2022", "DOM", "DOM.Iterable"], + "module": "ESNext", + "types": ["vite/client"], + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + "jsx": "react-jsx", + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["src"] +} + \ No newline at end of file diff --git a/frontend/web-ui/tsconfig.json b/frontend/web-ui/tsconfig.json new file mode 100644 index 0000000..1ffef60 --- /dev/null +++ b/frontend/web-ui/tsconfig.json @@ -0,0 +1,7 @@ +{ + "files": [], + "references": [ + { "path": "./tsconfig.app.json" }, + { "path": "./tsconfig.node.json" } + ] +} diff --git a/frontend/web-ui/tsconfig.node.json b/frontend/web-ui/tsconfig.node.json new file mode 100644 index 0000000..8a67f62 --- /dev/null +++ b/frontend/web-ui/tsconfig.node.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", + "target": "ES2023", + "lib": ["ES2023"], + "module": "ESNext", + "types": ["node"], + "skipLibCheck": true, + + /* Bundler mode */ + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "moduleDetection": "force", + "noEmit": true, + + /* Linting */ + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "erasableSyntaxOnly": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedSideEffectImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/frontend/web-ui/vite.config.ts b/frontend/web-ui/vite.config.ts new file mode 100644 index 0000000..8b0f57b --- /dev/null +++ b/frontend/web-ui/vite.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +// https://vite.dev/config/ +export default defineConfig({ + plugins: [react()], +})