Salta el contingut

2.12 Afegir logo

Exemple

.addLogo(options)

See the Pen Exemple AddMarker by unitatgeostart (@unitatgeostart) on CodePen.

CodePen

Codi

<html>
  <head>
    <meta charset="utf-8" />
    <title>Exemple mapicgc-gl-js: Afegir logo</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%;
      }
      #logos {
        display: flex;
        flex-direction: row;
        bottom: 40%;
        position: absolute;
        right: 50%;
      }
    </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.TOPO,
          center: [2.1464, 41.306],
          zoom: 7.4,
          maxZoom: 19,
          hash: true,
          pitch: 0,
        });
        let options = {
          id: "icgcColorLogo",
          url: "https://eines.icgc.cat/recursos/images/grumpyCatTest.png",
          href: "https://www.icgc.cat",
          height: "100px",
        };
        map.on("load", () => {
          map.addFullscreenControl();
          map.addLogo(options); //pots canviar la posició del/s logo/s al css
        });
      }
      initMap();
    </script>
  </body>
</html>