let map; var InfoObj = []; function initMap() { map = new google.maps.Map(document.getElementById("map"), { center: new google.maps.LatLng('26.3201215', '127.7637247'), zoom: 13, mapID: 'e39d49d5658d4a5c' }); var verifiedIcon = 'https://uploads-ssl.webflow.com/628f0ea507794c6d0edbf965/62d3aff1aa648f67d40cc6ea_school-v-32.png'; var unverifiedIcon = 'https://uploads-ssl.webflow.com/628f0ea507794c6d0edbf965/62d3aff1cb5c40658297daff_school-uv-32.png'; const features = [ { placeName: 'East West Montessori School', link: 'See Profile › ', position: new google.maps.LatLng('26.327271', ' 127.762578'), icon: unverifiedIcon, title: 'East West Montessori School' }, { placeName: 'Ryukyu Montessori', link: 'See Profile › ', position: new google.maps.LatLng('26.3150004', ' 127.7675098'), icon: unverifiedIcon, title: 'Ryukyu Montessori' }, { placeName: 'Okinawa Montessori School International​', link: 'See Profile › ', position: new google.maps.LatLng('26.3280474', ' 127.7473152'), icon: verifiedIcon, title: 'Okinawa Montessori School International​' }, { placeName: 'Golden Mind Achievers International School', link: 'See Profile › ', position: new google.maps.LatLng('26.3120006', ' 127.7657738'), icon: unverifiedIcon, title: 'Golden Mind Achievers International School' }, { placeName: 'Ai International Preschoo', link: 'See Profile › ', position: new google.maps.LatLng('26.3050108', ' 127.7636253'), icon: unverifiedIcon, title: 'Ai International Preschoo' }, { placeName: 'Okinawa Amicus International', link: 'See Profile › ', position: new google.maps.LatLng('26.3981245', ' 127.8266524'), icon: unverifiedIcon, title: 'Okinawa Amicus International' }, { placeName: 'Busy Bee School', link: 'See Profile › ', position: new google.maps.LatLng('26.2969408', ' 127.7782264'), icon: unverifiedIcon, title: 'Busy Bee School' }, { placeName: 'Hope International School', link: 'See Profile › ', position: new google.maps.LatLng('26.3289434', ' 127.7444773'), icon: verifiedIcon, title: 'Hope International School' }, { placeName: 'Sunshine Montessori School', link: 'See Profile › ', position: new google.maps.LatLng('26.298838', ' 127.759463'), icon: unverifiedIcon, title: 'Sunshine Montessori School' }, { placeName: 'Santa Monica International School', link: 'See Profile › ', position: new google.maps.LatLng('26.330204', ' 127.749248'), icon: unverifiedIcon, title: 'Santa Monica International School' }, { placeName: 'Rainbow Montessori Education Center', link: 'See Profile › ', position: new google.maps.LatLng('26.3313623', ' 127.7481787'), icon: unverifiedIcon, title: 'Rainbow Montessori Education Center' }, ]; for (let i = 0; i < features.length; i++) { var contentString = '
' + '

' + features[i].placeName + '

' + '

' + features[i].link + '

' + '
'; const marker = new google.maps.Marker({ position: features[i].position, icon: features[i].icon, title: features[i].title, map: map, }); const infowindow = new google.maps.InfoWindow({ content: contentString }); marker.addListener('click', function () { closeOtherInfo(); infowindow.open(marker.get('map'), marker); InfoObj[0] = infowindow; }); } }; function closeOtherInfo() { if (InfoObj.length > 0) { InfoObj[0].set("marker", null); InfoObj[0].close(); InfoObj[0].lengh = 0; } }; window.initMap = initMap;