Jump to content

Recommended Posts

  • Newbies
Posted

Hello, Just wanna ask about my script in web viewer I'm having trouble making this script having multiple pinpoint in one map
Here is my script:

"data:text/html,
<html>
<head>
  <meta name='viewport' content='initial-scale=1.0'>
  <meta charset='utf-8'>
  <style> #map { height:100%; width:100%; } html, body { height:100%; margin:0; padding:0; } </style>
</head>
<body>
  <div id='map'></div>
  <script src='https://maps.googleapis.com/maps/api/js?key="I have my api i just remove it"'></script>
  <script>
    function initMap() {
      var map = new google.maps.Map(document.getElementById('map'), { zoom: 10, center: {lat:13.41, lng:122.56} });
      var geocoder = new google.maps.Geocoder();
      var addresses = [" & Quote ( Substitute ( List ( Addresses::Full Address ) ; ¶ ; "\",\"" ) ) & "];
      addresses.forEach(function(addr) {
        geocoder.geocode({'address': addr}, function(results, status) {
          if (status === 'OK') {
            var marker = new google.maps.Marker({ map: map, position: results[0].geometry.location });
          }
        });
      });
    }
    initMap();
  </script>
</body>
</html>
 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.