<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Add_WMS</title>
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no"/>
<style>
body {
margin: 0;
padding: 0;
}
#map {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
}
</style>
<script src="https://delivery.mapmost.com/cdn/sdk/webgl/v9.2.0/mapmost-webgl-min.js"></script>
</head>
<body>
<div id="map"></div>
<script>
let map = new mapmost.Map({
container: 'map',
style: "<your style url>",
center: [119.68834837062712, 31.689902977777223],
zoom: 16,
pitch:0,
userId: '***',
});
map.on('load', function () {
map.addSource('wms-test-source', {
'type': 'raster',
'tiles': [
"<your tiles url>"
],
'tileSize': 256
});
map.addLayer(
{
'id': 'wms-test-layer',
'type': 'raster',
'source': 'wms-test-source'
}
);
})
</script>
</body>
</html>