Skip to content

Overview

The map module includes basic features to create web mapping applications: geocoding, data catalog, dynamic feature layers, 2D visualisation, 3D visualisation.

3D web mapping application built with the KDK

In order to avoid loading too much resources on the client side, the map client module is internally broken into 2 different parts.

  • 2D mapping API to be used within the browser and imported like this:

import { xxx } from '@kalisio/kdk/map.client.map'

  • 3D mapping API (i.e. virtual globe) API to be used within the browser and imported like this:

import { xxx } from '@kalisio/kdk/map.client.globe'

If you use the standard way of importing the client API within the browser like the following you will load both 2D and 3D mapping API:

import { xxx } from '@kalisio/kdk/map.client'

API

Client