List map styles

List map styles

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>List map styles</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<script src="https://unpkg.com/trackasia-gl@1.0.5/dist/trackasia-gl.js"></script>
<link href="https://unpkg.com/trackasia-gl@1.0.5/dist/trackasia-gl.css" rel="stylesheet" />
<style>
body { margin: 0; padding: 0; }
#map { position: absolute; top: 0; bottom: 0; width: 100%; }
</style>
</head>
<body>
<style>
#map-styles-wrapper {
position: absolute;
top: 5px;
right: 5px;
background-color: rgb(88 120 217);
padding: 5px 20px 5px 5px;
color: aliceblue;
}
</style>
<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/v1/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>