From Imperial Minerals Wiki
|
|
(2 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 coordinates = '{{{GPS}}}';
| |
| coordinates = coordinates.split(',').map(function(coord) {
| |
| return parseFloat(coord.trim());
| |
| });
| |
| | |
| var mapOptions = {
| |
| center: { lat: coordinates[0], lng: coordinates[1] },
| |
| zoom: 15
| |
| };
| |
| var map = new google.maps.Map(document.getElementById('map'), mapOptions);
| |
| | |
| var marker = new google.maps.Marker({
| |
| position: { lat: coordinates[0], lng: coordinates[1] },
| |
| 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