Base Map Settings

You can set Google, BingMap, OpenStreetMap, ArcMap, MapBox, Naver, Daum, and SKYMap maps as your background map.

1. Setting up GoogleMap

Supports normal, terrain, vectorhybrid, satellitehybrid, and satellite layers.

var google = Module.GoogleMap();

Setting Options

// Change layer
google.layername = "satellitehybrid";

// Change image quality
google.quality = "middle";

// Change image LOD
google.zerolevelOffset = 1;

2. Setting up BingMap

Supports normal, satellitehybrid, and satellite layers.

var bing = Module.BingMap();

Setting Options

3. Setting up OpenStreetMap

Supports normal and terrain layers.

Setting Options

4. Setting up ArcMap

Supports normal, terrain, vectorhybrid, and satellite layers.

Setting Options

5. Setting up MapBox

Supports the satellite layer.

Setting Options

6. Setting up Naver Map

Supports normal and satellite layers.

Setting Options

7. Setting up Daum Map

Supports normal and satellite layers.

Setting Options

8. Setting up SKYMap

Supports layers from 2012 to 2018, and 2020.

Setting Options

9. Layer Type Names

List of .layername Tag setting names.

Name
Type
Description

nomal

string

Standard map.

terrain

string

Terrain contour map.

vectorhybrid

string

Vector hybrid map.

satellitehybrid

string

Satellite hybrid map.

satellite

string

Satellite map.

Last updated