FeaturesEverything you need to build
Everything you need to build
location-aware apps
Create regions from existing GIS data or edit/create them on the platform, and automatically get an API to find the regions that contain a point.
🗺️
Map Editor
Create polygons, points, and custom regions visually on an interactive map. No code required to define your geographic boundaries.
📦
Data Import
Import GeoJSON files of complex geometry to build APIs that reference your existing GIS data. Seamless integration.
⚡
API-First Design
Query based on addresses or coordinates to enrich your data with location information. RESTful and developer-friendly.
Developer ExperienceBuilt for developers
Built for developers
with a lot going on
Our RESTful API is designed to be intuitive and powerful. Get started in minutes and query any data set you can find.
query-example.js
1// Query features by coordinates
2const params = new URLSearchParams({
3 lat: '47.603',
4 lng: '-122.330',
5});
6
7const response = await fetch(
8 `https://app.regionflex.com/api/v1/query?${params}`,
9 {
10 headers: {
11 'Authorization': 'Bearer YOUR_API_KEY',
12 },
13 }
14);
15
16const { data } = await response.json();
17// [{ name: "Seattle City Council District 7", ... }]