2.3 Afegir estil ORTO3D
Exemple
.Map({style: mapicgcgl.Styles.ORTO3D})
See the Pen example Map 3D by unitatgeostart (@unitatgeostart) on CodePen.
Codi
<html>
<head>
<meta charset="utf-8" />
<title>Exemple mapicgc-gl-js: estil ORTO3D</title>
<meta
name="viewport"
content="initial-scale=1,maximum-scale=1,user-scalable=no"
/>
<script src="https://eines.icgc.cat/recursos/mapicgc-gl-js/mapicgc-gl.js"></script>
<link
href="https://eines.icgc.cat/recursos/mapicgc-gl-js/mapicgc-gl.css"
rel="stylesheet"
/>
<style>
body {
margin: 0;
padding: 0;
}
#map {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
async function initMap() {
const data = await mapicgcgl.Config.getConfigICGC();
const map = new mapicgcgl.Map({
container: "map",
style: data.Styles.ORTO3D,
center: [2.309, 41.98],
zoom: 18,
maxZoom: 19,
hash: true,
bearing: 45,
});
map.on("load", () => {
map.addFullscreenControl();
});
}
initMap();
</script>
</body>
</html>
Estils ICGC
Styles.{id}
id | Mostra |
---|---|
TOPO | |
ORTO | |
ORTO3D (versió experimental) | |
ORTOHYBRID | |
ADMIN | |
DARK | |
LIGHT | |
GEOLOGY |