mickmel
  • Blog
  • About
    • Tools
  • Speaking
  • Podcast
  • Contact
  • Search

More about StreetView privacy

September 24, 2007 by mickmel Leave a Comment

Reading Time: < 1 minute

Google has just put up a post on their LatLong blog

buy synthroid

with some of their thoughts about privacy expectations in StreetView.

It’s kind of a rambling post (paragraph break, anyone?) and there’s nothing too exciting in there, but here are some snippets:

  • “…we designed a simple process for anyone to contact us and have their image removed.” (note: When viewing an image, click on “Street View Help” at the top and you’ll find a link to report the image.
  • “…people don’t have the same expectations of privacy as they do in their homes.”
  • “…Street View will respect local laws…” (repeated a few more times with different wording)
purchase zoloft online

It seems like kind of a random post, but maybe they felt they should put up an official stance on the privacy issues surrounding StreetView.  Prior to this, I don’t think they’ve done anything but respond to criticism against it (example 1, 2).

Filed Under: Google Earth/Maps Tagged With: google maps, privacy, streetview

3D Red Bull Air Races

September 21, 2007 by mickmel Leave a Comment

Reading Time: < 1 minute

Red Bull Air RacesGoogle Earth Blog has a great post about some 3D models showing the Red Bull Air Races

purchase tamiflu without prescription

using time-lapse animations.

They were created by Joey Wade over at the Keyhole BBS.  A great suggestion from the post is to use the flight sim mode and try it yourself.  I’ve not tried yet, but it can’t be easy.

The post on GEB has all of the details.

Filed Under: Google Earth/Maps Tagged With: Google Earth, red bull air races

Digital Globe launching first of two new satellites today

September 18, 2007 by mickmel Leave a Comment

Reading Time: < 1 minute

As reported on the Google Earth Blog, Digital Globe is launching a new satellite today, named WorldView I.  A similar satellite, WorldView II, will be launching late next year.

Digital Globe is a leading provider of imagery for Google Earth/Maps, so this is a great thing for those products.

It will be a while before we see any new imagery from this satellite (testing, etc), but once it’s live DG says it will be able to acquire data at about seven times the normal rate.  This will hopefully mean much more frequent updates in the future.

Read the article on GEB

elavil

for the rest of the details.

Filed Under: Google Earth/Maps Tagged With: digital globe, imagery, satellites

Neat way to waste some time with Google Maps

September 14, 2007 by mickmel Leave a Comment

Reading Time: < 1 minute

Here is an interesting take on the idea behind sites like Google Earthing.  This one is called PlaceSpotting.  It shows you a zoomed in map via Google Maps and you have to figure out where it is.  A few cool things they’ve done, though:

  • You solve it by adjusting a world map (zooming, panning, etc) until it matches the clue, not just leaving a comment with your answer
  • You’re given up to four clues for each one.
  • You’re told the zoom level you need to be at.  To solve it, you only need to get the lat/lon “close”.
  • Best of all, you can create your own!

I know there are a lot of different games out there for the various digital earth products, but I couldn’t begin to summarize them all.  Instead, leave us a comment to show off some your favorites!

Filed Under: Google Earth/Maps Tagged With: google earthing, google maps, placespotting

EPA chooses Virtual Earth

September 13, 2007 by mickmel Leave a Comment

Reading Time: < 1 minute

The Environmental Protection Agency in the U.S.  has a large number of geospacial apps for things such as oil spills, beach water quality, etc.

Today they announced that they’ll be using Virtual Earth as the platform for these applications.  The reasons for choosing Virtual Earth over Google Earth weren’t clear, but two things stuck out:

  1. “Virtual Earth is the only existing platform that offers developers and end users the ability to work with and view satellite, aerial, oblique and 3-D imagery of the Earth.” — Is the Bird’s Eye view that important for something like this?
  2. “Before we selected Microsoft’s Web-based Virtual Earth, the EPA relied on more expensive and cumbersome desktop applications” — That almost sounds like a shot at Google Earth, but I don’t think it is.

I’m still not sure why they chose VE over GE, but it seems that for this type of application either platform would do the job.  It might just be a matter of preference, rather than a specific need that was filled, but I’d be curious to know for sure.

Filed Under: Google Earth/Maps Tagged With: epa, Virtual Earth / Live Maps

Making cool maps on your site with Google Maps

August 30, 2007 by mickmel Leave a Comment

Reading Time: 4 minutes

Today at Mt. Bethel we launched a Google Map that shows all of our upcoming events, with each one being clickable to the details for that event. Here I’ll explain how it was done.

First, take a look at the source code on the map page. All we’ll do here is create an iframe to show the map. This is the line in question:

<iframe align=”center” name=”mapframe” src=”http://www.mtbethel.org/mapiframeevents.php” frameborder=”0″ width=”560″ scrolling=”no” height=”710″></iframe>

I’ll point out a few things. The most important is the “src”. That’s pointing to the file that does the grunt work. Also notice the height and width. I make each of those 10 pixels larger than the map itself, because if you make them exactly the same it tends to cut off the edges a little bit.

That page is pretty easy. Now let’s look at the code used to generate the map. It’s somewhat confusing, but you’re free to copy and paste my code and only have to worry about making a few changes. Start by looking at the source code on the iframed map page. I would suggest copying it exactly and creating the file on your server. Now I’ll show you what you need to change.

First, take a look at the title, which is currently:

arimidex

<title>Mt. Bethel United Methodist Church – Upcoming Events</title>

You’ll obviously want to change that to your church.

The next line is the most important on in there. This includes the API key, which is different for every site. If you don’t change that to match your URL, this won’t work at all. Fortunately, it’s free and easy to get your own key. Just visit this page, agree to their terms, provide your URL and you’ll get the key. Then, just change everything after the “key=” part of that line to your own key.

Next up, a few lines down are the definitions for the size of the map:

<div id=”map” style=”width: 550px; height: 700px; border:1px solid black;”></div>

As I said before, I typically make the width and height about 10 pixels smaller than the sizes in the iframe code on the other page.

The next 11 or so lines define how the map looks, in terms of zoom bars and stuff. The only one you need to mess with is this line:

map.centerAndZoom(new GPoint(-96.677013, 24.159677), 13);

That tells it where to center the map when it first comes up. Typically you’d have it center around your church, but I have it center south of our church so people can see the events south of the US. The “13” is what zoom level you want the map to start with. “1” is zoomed all the way in — “19” is zoomed all the way out. Our “13” tells it to start zoomed out pretty far, but not all the way.

Next, you’ll see three functions, named “createMarker”, “createMarker2” and “createMarker3”. These are used to generate the pushpins on the map. You typically only need one, but the three of them do different things.

createMarker is used to create a normal marker on the site

createMarker2 is used to create our church icon on the site

createMarker3 is almost identical to createMarker, but it has a line in it to put an icon inside the information bubble of the pushpins.

To start with, ignore 2 and 3 and just use the normal “createMarker”. I’ll explain what I mean in a minute.

After that, you’ll see a whole bunch of three line chunks, such as this:

var point = new GPoint(-82.459259,27.976211);
var marker = createMarker(point, “Middle School Choir Tour”, “February 16-19, 2008”, “939”, “Middle-School-Choir-Tour”);
map.addOverlay(marker);

These are what actually creates each pushpin. You’ll notice the second line tells it which “createMarker” to use.

The first line is the latitude and longitude of the pushpin. To get that information:

  • Go to Google Maps.
  • Search for the address you want to find.
  • Once you have it, click on the “Link to this page” link just above the map on the right edge.
  • Copy and paste that code into Notepad (or Word, or some text editing software).
  • It looks something like this:
  • http://maps.google.com/maps?f=q&hl=en&geocode=&
    q=4385+Lower+Roswell+Rd+SE,+Marietta,+GA+30068
    &sll=37.0625,-95.677068&sspn=48.240201,82.265625&
    ie=UTF8&z=16&iwloc=addr&om=1
  • Don’t let it freak you out. Just look for the numbers that look like coordinates. In this case they’re “37.0625” and “-95.677068”.
  • I can never keep track of which one is lat and which one is lon, so try them in both orders and see which one works. 🙂

The middle line is where you pass your text to the point. In my case, we send “point” (which contains the coordinates you just entered), then the event name, event date, event id, and event name to link. You can tweak the “createMarker” to handle that information any way you want. In our case, we use use the event name as the name of the pushpin, then show the event date in italics, then use the event id and event name to link to build the URL of that page.

That’s really about it. Just keep making more of those event groupings at the bottom for as many events as you want. If you have the information in a database, you can use PHP to loop and keep spitting those out.

I know this is a lot to digest, so try just copying our code, changing the API key and seeing if it works. From there, play around and see what you can do. If you have questions, just leave a comment and I’ll be happy to help.

Mickey

Filed Under: Google Earth/Maps

Easily embed Google Maps on your site

August 22, 2007 by mickmel Leave a Comment

Reading Time: < 1 minuteYou can now embed a Google Map on your site in a similar manner as a YouTube video, rather than having to deal with the API.  For novice webmasters, this will likely become a very popular thing to have.

Full details and screenshots can be found on Google Maps Mania.

buy elavil

Filed Under: Google Earth/Maps Tagged With: embed, google maps, youtube

Real-time traffic now in Google Earth

August 21, 2007 by mickmel Leave a Comment

Reading Time: < 1 minuteGoogle Earth Real-time trafficAs reported on the Google Latlong blog, Google Earth now has a new “traffic” layer which uses the same real-time traffic data that is used in Google Maps.

It’s not especially fancy, but that’s probably a good thing.  Sometimes simple is better.  The traffic is shown as a series of dots along the highway.  Green=fast, yellow=ok, red=slow.  The dots are clickable and provide you with the current speed read from that radar.

If I still had a highway commute, I could see myself checking this as I stepped out the door each morning.  Nice work, Google!

Filed Under: Google Earth/Maps Tagged With: Google Earth, traffic

Google Maps StreetView … in 1907?

August 17, 2007 by mickmel Leave a Comment

Reading Time: < 1 minute1907 StreetViewThis is a neat little find by Gadling.  In 1907, Rand McNally produced some “Photo Auto-maps” that they gave to drivers, which included photos with arrows to show which way to go.

The rest of their article has a few more pictures from it.   Very cool.

Filed Under: Google Earth/Maps Tagged With: google maps, streetview

Great collection of storm tracking and weather tools for Google Earth

August 16, 2007 by mickmel Leave a Comment

Reading Time: < 1 minuteFrank Taylor at the Google Earth Blog has posted a great round-up of the best weather-related tools for Google Earth.

The best piece of this post is the huge weather and storm tracking tools collection network link.  It contains a handful of folders with various kinds of data, which includes:

  • two global hurricane tracking tools
  • global cloud maps
  • current global lightning strikes animation
  • severe weather warning data and radar data for the US
  • a large collection of weather image overlays from TropicalAtlantic
  • weather observations for the US from WeatherBonk
  • a real-time day/night viewing tool
  • the global annual lightning flash rate map from NASA

If you enjoy following the weather, this is well worth checking out.

Filed Under: Google Earth/Maps Tagged With: Google Earth, weather

  • « Previous Page
  • 1
  • …
  • 11
  • 12
  • 13
  • 14
  • 15
  • …
  • 17
  • Next Page »
mickmel-white
Facebook LinkedIn Feed Youtube

© 2025 Mickey Mellen. All Rights Reserved.
Accessibility Statement | Privacy Policy