[Solved] What line should I remove from this Google maps script


Looks like you need to remove both of these lines:

<a href="https://www.acadoo.de/de-ghostwriter-bachelorarbeit.html">Ghostwriter Bachelorarbeit</a>
<script type="text/javascript" src="https://embedmaps.com/google-maps-authorization/script.js?id=274228f8880db3e0b587b128af8f2a5a49d26d62"></script>

working code snippet:

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&key=AIzaSyDvV9lr4YTbExSlhYI2e26aTEaoY2peUwE"></script>
<div style="overflow:hidden;height:280px;width:1382px;">
  <div id='gmap_canvas' style="height:280px;width:1382px;"></div>
  <style>
    #gmap_canvas img {
      max-width: none!important;
      background: none!important
    }
  </style>
</div>
<script type="text/javascript">
  function init_map() {
    var myOptions = {
      zoom: 14,
      center: new google.maps.LatLng(47.4464864, 9.526921600000037),
      mapTypeId: google.maps.MapTypeId.HYBRID
    };
    map = new google.maps.Map(document.getElementById('gmap_canvas'), myOptions);
    marker = new google.maps.Marker({
      map: map,
      position: new google.maps.LatLng(47.4464864, 9.526921600000037)
    });
    infowindow = new google.maps.InfoWindow({
      content: '<strong>Klinik Am Rosenberg</strong><br>Hasenbühlstrasse 11<br>9410 Heiden<br>'
    });
    google.maps.event.addListener(marker, 'click', function() {
      infowindow.open(map, marker);
    });
    infowindow.open(map, marker);
  }
  google.maps.event.addDomListener(window, 'load', init_map);
</script>

0

solved What line should I remove from this Google maps script