Edit Label and TextBox's content
index.html
<!DOCTYPE html>
<html>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>User Interactions - Edit Label and TextBox&#x27;s content</title>
  <style type="text/css">
    html,body{margin:0px;height:100%;width:100%}
    .container{width:100%;height:100%}
    .pane{background:#34495e;line-height:28px;color:#fff;z-index:10;position:absolute;top:20px;right:20px}
    .pane a{display:block;color:#fff;text-align:left;padding:0 10px;min-width:28px;min-height:28px;float:left}
  </style>
  <link rel="stylesheet" href="https://unpkg.com/maptalks/dist/maptalks.css">
  <script type="text/javascript" src="https://unpkg.com/maptalks/dist/maptalks.min.js"></script>
  <body>

    <div id="map" class="container"></div>
    <div class="pane"><a href="javascript:startEdit();">Start edit</a><a href="javascript:endEdit();">End edit</a></div>

    <script>

      var map = new maptalks.Map('map', {
        center: [-0.113049,51.498568],
        zoom: 14,
        baseLayer: new maptalks.TileLayer('base', {
          urlTemplate: 'https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}.png',
          subdomains: ["a","b","c","d"],
          attribution: '&copy; <a href="http://osm.org">OpenStreetMap</a> contributors, &copy; <a href="https://carto.com/">CARTO</a>'
        })
      });

      var layer = new maptalks.VectorLayer('v').addTo(map);

      var label = new maptalks.Label('label with box', [-0.117, 51.496], {
        'textSymbol': {
          'textFaceName' : 'sans-serif',
          'textFill' : '#fff',
          'textSize' : 18
        },
        'boxStyle' : {
          'padding' : [12, 8],
          'symbol' : {
            'markerType' : 'square',
            'markerFillOpacity' : 0.9,
            'markerLineColor': '#34495e',
            'markerFill' : '#34495e',
            'markerLineWidth' : 1
          }
        }
      }).addTo(layer);

      startEdit();

      function startEdit() {
        label.startEditText();
      }

      function endEdit() {
        label.endEditText();
      }

    </script>
  </body>
</html>
Copied!