From Imperial Minerals Wiki
|
|
(3 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| <div id="map" style="height: 400px;"></div> | | <div id="map" style="height: 400px;" data-src="{{{GPS}}}"></div> |
| <nowiki>
| | {{{GPS}}} |
| <script>
| |
| function initMap() {
| |
| var latitude = parseFloat('{{{latitude}}}');
| |
| var longitude = parseFloat('{{{longitude}}}');
| |
| | |
| var coordinates = { lat: latitude, lng: longitude };
| |
| var mapOptions = {
| |
| center: coordinates,
| |
| zoom: 15
| |
| };
| |
| var map = new google.maps.Map(document.getElementById('map'), mapOptions);
| |
| | |
| var marker = new google.maps.Marker({
| |
| position: coordinates,
| |
| map: map,
| |
| title: 'Marker Title'
| |
| });
| |
| }
| |
| </script>
| |
| | |
| <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBIrgq5dZQ8haJIfKHbGco90OpDwYLiXwA&callback=initMap" async defer></script>
| |
| </nowiki>
| |
Latest revision as of 19:51, 19 February 2024