﻿// JScript File

function initialize() {
    var latLng1 = new google.maps.LatLng(-41.300104639362075, 173.2412114858016);

    var map = new google.maps.Map(document.getElementById('map_canvas'), {
        zoom: 16,
        center: latLng1,
        mapTypeId: google.maps.MapTypeId.ROADMAP
    });

    var marker = new google.maps.Marker({
        position: latLng1,
        draggable: false,
        map: map
    });

    /*
    var Filco = new MapLabel({
        text: "Filco",
        align: "center",
        position: latLng1,
        map: map,
        fontSize: 12
    });
    Filco.set('position', latLng1);
    */
}
