Last updated:
0 purchases
nitrite spatial
Nitrite Spatial #
Nitrite Spatial is a spatial indexing and search module for Nitrite database. It uses JTS Topology Suite port of the dart package dart_jts for spatial indexing and search.
Getting started #
To use Nitrite Spatial, add the following dependency in your project:
dart pub add nitrite_spatial
copied to clipboard
Usage #
To use Nitrite Spatial, you need to create a SpatialModule and pass it to Nitrite builder.
// create a spatial module
var spatialModule = SpatialModule();
// initialization using builder
var db = await Nitrite.builder()
.loadModule(spatialModule)
.openOrCreate(username: 'user', password: 'pass123');
copied to clipboard
Additional information #
For additional information visit the Spatial module documentation.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.