Posted by Anonymous Thu 8th Mar 2007 12:45 - Syntax is HTML (4.0.1) - 101 views
Download | New Post | Modify | Hide line numbers
Download | New Post | Modify | Hide line numbers
-
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-
type="text/javascript">
-
//<![CDATA[
-
-
function load() {
-
if (GBrowserIsCompatible()) {
-
var map = new GMap2(document.getElementById("map"));
-
map.addControl(new GSmallMapControl());
-
map.addControl(new GMapTypeControl());
-
map.setCenter(new GLatLng(52, 0), 6);
-
-
var bounds = map.getBounds();
-
var southWest = bounds.getSouthWest();
-
var northEast = bounds.getNorthEast();
-
var lngSpan = northEast.lng() - southWest.lng();
-
var latSpan = northEast.lat() - southWest.lat();
-
var point = new GLatLng(53.386, -2.359);
-
map.addOverlay(new GMarker(point));
-
-
-
}
-
}
-
-
//]]>
-
-
-
-
-
-
PermaLink to this entry https://pastebin.co.uk/11560
Posted by Anonymous Thu 8th Mar 2007 12:45 - Syntax is HTML (4.0.1) - 101 views
Download | New Post | Modify | Hide line numbers
Download | New Post | Modify | Hide line numbers
Comments: 0