List map styles
Example list map styles with TrackAsia GL.
<!DOCTYPE html>
<html lang="en">
<head>
<title>List map styles</title>
<meta property="og:description" content="Example list map styles with TrackAsia GL." />
<meta charset="utf-8" >
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/trackasia-gl.css" />
<script src="https://unpkg.com/[email protected]/dist/trackasia-gl.js"></script>
<style>
body { margin: 0; padding: 0; }
html, body, #map { height: 100%; }
#map-styles-wrapper {
position: absolute;
top: 5px;
right: 5px;
background-color: rgb(88 120 217);
padding: 5px 20px 5px 5px;
color: aliceblue;
}
</style>
</head>
<body>
<div id="map"></div>
<div id="map-styles-wrapper">
<label>
<input type="radio" id="night" class="map-style" name="style" checked />
Night
</label>
<label>
<input type="radio" id="streets" class="map-style" name="style" />
Streets </label
><br />
<label>
<input type="radio" id="simple" class="map-style" name="style" />
Simple </label
><br />
</div>
<script>
var styles = {
night: 'https://maps.track-asia.com/styles/v1/night.json?key=public_key',
streets: 'https://maps.track-asia.com/styles/v2/streets.json?key=public_key',
simple: 'https://maps.track-asia.com/styles/v1/simple.json?key=public_key'
};
var map = new trackasiagl.Map({
container: 'map',
style: styles.night,
center: {"lat":10.762622,"lng":106.660172},
zoom: 6
});
document.querySelectorAll('.map-style').forEach(function (input) {
input.addEventListener('change', function () {
map.setStyle(styles[this.id]);
});
});
</script>
</body>
</html>