The Interactive Mapping IDE in Your Browser
geo!space is a powerful web application built on the app!space platform that provides professional mapping capabilities in your browser. Create interactive maps, work with geospatial data, and transform maps into cross-platform Progressive Web Apps - all without installing any software, directly in your browser.
- β¨ Key Features
- π Browser Compatibility
- π Use Cases
- π Getting Started
- π¨βπ» Development
- π‘ Examples
- π§ Troubleshooting
- β FAQ
- ποΈ Technical Architecture
- π€ Trusted by
- β‘ Quick Start
- Interactive Map Editor: Create and edit maps using the custom
.geospaceformat - Multiple Data Sources: Support for OSM, XYZ tiles, GeoJSON, KML, GeoTIFF, GPX, Features, BM (basemap.de), WMS, WMTS, and Overpass API
- Satellite Imagery: Built-in access to Esri World Imagery and Sentinel-2 satellite imagery
- Layer Management: Vector layers, tile layers, and layer groups with full styling control
- OpenLayers Integration: Built on the industry-standard OpenLayers mapping library
- Advanced Styling: Dynamic style loading and management system
- PWA Transformation: Convert
.geospacefiles into cross-platform Progressive Web Apps
- PWA Builder: Transform
.geospacefiles into cross-platform Progressive Web Apps - Custom Controls: Create interactive UI components using JavaScript modules
- Module System: Import and share custom map controls within your workspace
- β Fully Supported: Chrome and Opera
β οΈ Limited Support: Firefox and Safari (partial File System Access API support)
For more details, see File System API
- Data Analysts: Create interactive maps for data visualization
- Urban Planners: Design and prototype mapping applications
- Developers: Build geospatial applications without complex setup
- Researchers: Prototype location-based applications quickly
- Educators: Teach mapping and geospatial concepts interactively
- App Creators: Transform maps into cross-platform PWAs for mobile, desktop, and web deployment
- In the Workspace tab, click the folder icon "Load workspace folder"
- Choose a local folder to use as your workspace
- This folder will be saved and restored when you reload geo!space
.geospacefiles: Map files that open in the interactive map editor- Other files: Open in the appropriate editor based on file type
- Double-click
.geospacefiles to open them in the map editor - Use the map editor's UI to interact with layers, features, and styling
- Add data sources: OSM tiles, GeoJSON files, KML, GeoTIFF, GPX, or custom features
- Build PWA: Use the "Build map" button to transform your
.geospacefile into a cross-platform Progressive Web App
- Browse the catalog view for curated maps, datasets, icons, and controls
- Select items from catalog categories (datasets, maps, overlays, controls, icons)
- Use the "Checkout" button to download items directly to your workspace
- Access pre-built basemaps (OpenStreetMap, basemap.de) and sample datasets
geo!space provides a powerful development environment for creating custom map controls and overlays using JavaScript modules.
Create interactive UI components for your maps using JavaScript modules. geo!space uses Lit for templating and Web Awesome for UI components - both are provided by default and based on browser standards only, so no build tools are required.
Key Features:
- No Build Tools: Write plain JavaScript modules that run directly in the browser
- Lit Templating: Use Lit's HTML template literals for reactive UI
- Web Awesome Components: Access to a full library of web-standard UI components
- OpenLayers API: Full access to OpenLayers through the
olnamespace object - Module System: Import and share modules within your workspace using relative paths or bare specifiers
Getting Started:
- Create a JavaScript file in your workspace (e.g.,
my-control.js) - Export a default function that receives APIs via destructuring
- Return a Lit template from your function
- Add your module to a map's
controlsoroverlaysarray in the.geospacefile
Example:
export default function ({html, style, events, map}) {
style({
position: "absolute",
bottom: "0",
left: "0",
right: "0"
});
return () => html`
<div style="display: grid; grid-template-columns: 1fr 1fr 1fr;">
<wa-button @click=${() => events("drawer/openMenu")}>
Menu
</wa-button>
</div>
`;
}Learn More:
- π See the User Modules Guide for complete documentation
- π¨ Browse Web Awesome components: https://webawesome.com
- πΊοΈ Explore OpenLayers API: https://openlayers.org/
1. Create a new .geospace file
2. Add OpenStreetMap as base layer
3. Add GeoJSON layers for buildings and trees
4. Use the "Build map" button to create a deployable PWA
1. Create a JavaScript module for custom map controls
2. Use Lit and WebAwesome components for UI
3. Add your module to a map's controls array
4. Build the map as a PWA for deployment
File Not Found
- If you don't see expected files, try reloading the workspace
- Ensure the workspace folder is properly connected
Browser Compatibility Issues
- Use Chrome or Opera for full functionality
- Firefox and Safari have limited File System Access API support
Map Not Loading
- Check that
.geospacefiles contain valid JSON - Verify data source URLs are accessible
- Ensure required resources (icons, styles) are available
Q: Do I need to install anything? A: No! geo!space runs entirely in your browser. Just open it in Chrome or Opera.
Q: Is my data secure? A: Yes. All data stays in your browser and local workspace. No data is sent to external servers.
Q: Can I use geo!space offline? A: Yes, for basic mapping features. Some features may require internet connection for data sources.
Q: How do I share my maps? A: Use the "Build map" button to create a PWA that can be deployed anywhere or shared as a standalone app.
Q: What file formats are supported?
A: Maps: .geospace (JSON), Data: GeoJSON, KML, GPX, GeoTIFF, Features. Tile sources: OSM, XYZ, WMS, WMTS, BM (basemap.de), Satellite imagery (Esri, Sentinel-2).
Q: Can I customize maps? A: Yes! Create custom controls using JavaScript modules with Lit and WebAwesome components.
geo!space is built on the app!space platform, which provides the core IDE infrastructure.
geo!space-Specific Stack:
- OpenLayers: Professional mapping library
- Custom Runtime: Map-to-OpenLayers conversion system (
gs-lib) - Style Loader: Dynamic style loading for geospatial data
- PWA Builder: Transform
.geospacefiles into cross-platform Progressive Web Apps - Lit & WebAwesome: Available for creating custom map controls and overlays
- Kiosk Scout: A cross-platform PWA for finding nearby vending machines
- Want your geo!space app listed here? Contact us!
Get up and running in 3 minutes:
- Open geo!space in Chrome or Opera
- Connect workspace - Click folder icon and select a local directory
- Create your first map - Create a new
.geospacefile or open existing files - Add data layers - Import GeoJSON, KML, or add tile sources
- Build your app - Use the "Build map" button to create a deployable PWA
- Start mapping immediately - No configuration required
- Add data sources - Import your geospatial data or use built-in tile sources
- Customize maps - Create custom controls using JavaScript modules
- Load the app in Chrome or Opera
- Connect a workspace folder
- Create your first map or open an existing
.geospacefile - Add layers and customize your map
- Build and share your interactive maps as PWAs
Happy mapping! πΊοΈβ¨