Cercalia Maps

Cercalia GL API

High-performance vector maps for modern web applications. Build interactive, customizable maps with powerful routing and geocoding features.

Why Cercalia GL?

Vector Tiles

Crisp, scalable maps at any zoom level with fast rendering and smooth animations.

Advanced Routing

Calculate routes with multiple waypoints, alternative paths, and real-time traffic data.

3D Visualization

Stunning 3D terrain and building extrusions for immersive map experiences.

Geocoding

Powerful address search and reverse geocoding with high accuracy results.

Custom Styling

Complete control over map appearance with JSON-based style specifications.

Mobile Ready

Optimized for touch interactions and responsive design on all devices.

Simple Integration

Get started in minutes with our intuitive API. Create interactive maps with just a few lines of code. Add markers, draw shapes, and build powerful location-based applications.

Read the Docs
// Create a map in the div #map
const map = new cercaliagl.Map({ 
  target: 'map' 
});

const initialPos = new cercaliagl.LonLat(
  -3.715090655, 
  40.426123994
);

map.whenReady(function() {
  const marker = new cercaliagl.Marker({
    position: initialPos,
    simpleLabel: new cercaliagl.SimpleLabel({
      text: "Hello World!"
    })
  });
  
  map.addMarkers([marker]);
  map.centerToMarkers([marker]);
});

Get Your API Key

Ready to build amazing maps? Register to get your API key and start integrating Cercalia GL into your applications today.

Register Now