Getting Started¶
This guide will help you get started with Cloud Native GIS, from your first login to creating your first map layer.
Accessing the Platform¶
After installation, access Cloud Native GIS through your web browser:
- Production:
http://your-domain.com/ - Development:
http://localhost:5000/
Django Admin Interface¶
Cloud Native GIS uses Django's admin interface for layer and style management. Access it at:
Logging In¶
- Navigate to the admin URL
- Enter your username and password
- Click "Log in"
Note
Contact your administrator if you don't have credentials.
Creating Your First Layer¶
Step 1: Prepare Your Data¶
Cloud Native GIS supports various geospatial formats:
- Shapefiles (
.shpwith accompanying files) - GeoJSON (
.geojson,.json) - GeoPackage (
.gpkg) - KML (
.kml)
Step 2: Upload the Layer¶
- Go to Cloud Native GIS > Layers in the admin
- Click Add Layer
- Fill in the layer details:
- Name: A descriptive name for your layer
- Description: Optional description
- File: Upload your geospatial file
- Click Save
Step 3: Configure the Layer¶
After upload, the layer will be processed and you can:
- View the layer attributes
- Set the default style
- Configure tile serving options
Viewing Your Layer¶
Once a layer is created, you can:
- Preview in Admin: Click on the layer to see a map preview
- Access via API: Use the REST API to fetch layer data
- Embed in Applications: Use the tile URLs in your mapping application
Next Steps¶
- Working with Layers - Deep dive into layer management
- Styling Your Maps - Learn to style your layers
- API Reference - Integrate with your applications