Second pass at adding key files

This commit is contained in:
dsainty
2024-06-17 22:24:05 +10:00
parent aa25e9347f
commit b6fc94ff0f
923 changed files with 243184 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<!-- BEGIN GOOGLE MAP HEADER CODE -->
<!-- <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script> // already included in header -->
<script>
function initializeGoogleMap(myLat, myLng) {
var latlng = new google.maps.LatLng(myLat, myLng);
var myOptions = {
zoom: 14,
center: latlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"),
myOptions);
var marker = new google.maps.Marker({
map: map,
position: latlng
});
}
</script>
<!--END GOOGLE MAP HEADER CODE -->