Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Multiple Pinpoint for Google Map using Java Script Map Api

Featured Replies

  • Newbies

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

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.