Random geekery since 2005.

Husband, father, programmer, speaker, writer, blogger, podcaster, collector, traveler, golfer.

Moving Day!

Written in

by

So, we’re moving. Not my family….my colleagues and I. We’ve officially outgrown our building, and so we’re moving half of our development team to new office space. It’s a lengthy move, so I thought I would show it on a Google Map. We are moving FROM the point on the right, TO the point on the left. It’s easily a 70 second walk. 🙂

var map = new GMap(document.getElementById(“map”));var centerpoint = new GPoint(-82.996925, 40.146500);var point2 = new GPoint(-82.997850, 40.146500);var point = new GPoint(-82.99600, 40.146500);var marker2 = new GMarker(point2);var marker = new GMarker(point);map.addControl(new GSmallMapControl()); map.addControl(new GMapTypeControl());map.centerAndZoom(centerpoint, 0);map.addOverlay(marker2);map.addOverlay(marker);

P.S. Getting a Google Map to show up on this page was a significant pain in my butt. Blogger does NOT make it easy.

Tags

Leave a comment