@xaralabs/geospatial-sdk
v1.0.2
Published
SDK for Xara Geospatial Engine
Downloads
220
Readme
@xaralabs/geospatial-sdk
Official JavaScript SDK for the Xara Geospatial Engine.
This SDK allows developers to interact with the Xara spatial infrastructure platform.
API Endpoint: https://geo.xaralabs.ai
Installation
npm install @xaralabs/geospatial-sdk
Quick Example
import { XaraGeo } from "@xaralabs/geospatial-sdk"
const geo = new XaraGeo({
apiKey: "xara_live_your_key",
baseUrl: "https://geo.xaralabs.ai"
})
const entity = await geo.createEntity({
entity_type: "property",
latitude: 6.428,
longitude: 3.421
})
console.log(entity)