GIS & Analytics
Spatial data, analysis, maps, dashboards, and embeddable location intelligence.
Publish governed geospatial data, run spatial operations, build thematic views, and embed interactive dashboards. The mGIS and Insight families cover both API-first analysis and long-lived workspaces containing datasets, layers, styles, maps, permissions, and shares.
Capabilities
Available platforms
Keep business identifiers and server-side policy portable; use the native surface where device integration or long-lived state matters.
Workspace and resource-scoped access
Keep immutable source data separate from derived layers; authorize reads and writes at workspace, dataset, and share boundaries.
- Use separate projects for development, staging, and production.
- Apply the narrowest domain, IP, platform, product, and resource scopes available.
- Never ship a server secret in a browser bundle, mobile binary, prompt, or public repository.
Quickstart
Replace placeholders with credentials from the developer console. Examples include the lifecycle and failure-handling context that short snippets usually omit.
import requests
response = requests.post(
f"{MAPPLS_GIS_BASE_URL}/analysis/point-in-polygon",
headers={"Authorization": f"Bearer {token}"},
json={
"pointsDatasetId": "deliveries_2026_08",
"polygonDatasetId": "service_zones_v4",
"include": ["zone_id", "manager", "sla_minutes"],
},
timeout=30,
)
response.raise_for_status()
job = response.json() # Poll or subscribe to the returned analysis job.
From raw data to governed decision layer
Large analyses are asynchronous, reproducible resources with lineage.
validatingIngest
Upload or connect a source and validate its schema and coordinate system.
dataset.createdpublishedPublish
Version the dataset, define access, and expose a queryable layer.
dataset.publishedprocessingAnalyze
Run a spatial job with explicit inputs, parameters, and output ownership.
analysis.startedreadyVisualize
Style the derived layer and assemble a map or dashboard.
analysis.completedsharedShare
Embed or grant access with expiry, audience, and export controls.
share.createdOperate the complete lifecycle
These blueprints name every state, actor, command, event, invariant, durable record, retry boundary, failure recovery, source contract, and operational signal.
Browse all stateful journey blueprintsSource repositories
Reference content is reconciled against these public and private source families. Version, authentication generation, and maturity are recorded before content is promoted.
mapmyindia-mgis-apisREST API · legacy →mapmyindia-mgis-librariesGuide · legacy →mappls-insight-sdkSDK · current →migist-completeFind source evidence →