One Geo Survey DEV
BUILD THE FUTURE
OF GEOSPATIAL DATA
Access high-precision survey data, mapping APIs, and advanced terrain modeling tools. Empowering developers to shape the world with code.
Precision Mapping
Sub-centimeter accuracy for your applications.
Real-time Data
Live stream integration for dynamic environments.
3D Terrain Models
Generate complex topographic meshes instantly.
Seamless Integration
Connect to our global survey network with our APIs. Designed for speed, built for developers.
App.jsx
import Map, { Source, Layer } from 'react-map-gl/maplibre';
export default function App() {
return (
<Map
initialViewState={{
longitude: 100.5018,
latitude: 13.7563,
zoom: 14
}}
mapStyle="https://api.ogs.co/maps/dark-matter"
>
<Source
id="ogs-terrain"
type="raster"
tiles={["https://api.ogs.co/terrain/{z}/{x}/{y}.png"]}
>
<Layer id="hills" type="raster" />
</Source>
</Map>
);
}