summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/index.html b/index.html
index 0279d5a..1d09166 100644
--- a/index.html
+++ b/index.html
@@ -15,18 +15,18 @@
// this function ripped almost verbatim from the docs. including the boring-ass starting place.
function initialize() {
- var fenway = new google.maps.LatLng(42.345573,-71.098326);
+ var viewpoint = new google.maps.LatLng(47.646157,-122.333799);
var mapOptions = {
- center: fenway,
+ center: viewpoint,
zoom: 14,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(
document.getElementById('map_canvas'), mapOptions);
var panoramaOptions = {
- position: fenway,
+ position: viewpoint,
pov: {
- heading: 34,
+ heading: 180,
pitch: 10,
zoom: 1
}