August 29, 2025Aug 29 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