Slashdot Mirror


Mapping Google Maps

jgwebber writes "Google Maps is starting to cause a bit of a stir as Google makes the browser do still more backflips than most expected. In the tradition of dissecting Google Suggest and GMail, I've done a little dissecting of this newest service."

24 of 442 comments (clear)

  1. what about plotting waypoints on the map? by garcia · · Score: 5, Interesting

    What I would like to see them add is something like what GPSVisualizer does. It will allow you to upload a GPX or LOC file of waypoints (from your GPS or various other programs) and plot them on a map. Because GPSVisualizer requires the SVG plugin (or native support) it would be nice to have an advanced application like Google has that doesn't require such support yet is as smooth/speedy as Google Maps is.

    It would be awesome if Google could completely take over the commercial mapping software application market (ie Streets and Trips/Mappoint and Street Atlas) by enabling routing/directions between the points on the map. Hell, allow us to then download the planned route back to the GPSs via a GPX and that would really rock. I mean web-based applications such as maps.google.com and maps.yahoo.com have already taken over from older programs like Automap which just gave text directions and simple maps. Why can't they add even more features? I don't know anyone that asks for directions anymore. Everyone just uses the web-based software.

    For now I'm just happy being impressed by the pretty scrolling. I'm excited to see what comes of this after the finish up the Beta.

    1. Re:what about plotting waypoints on the map? by Moby+Cock · · Score: 4, Interesting

      Remember that Google purchased Keyhole a while back. They are a satellite imaging firm. I wonder (or hope) that somehow this technology could be merged with the excellent Google maps. Imagine a "See Photo" button once you have found the location of whatever it was you were looking for. Now that would be cool.

    2. Re:what about plotting waypoints on the map? by Anonymous Coward · · Score: 5, Informative

      Have you tried usaphotomaps from JDMCOX?

      USAPhotoMaps downloads aerial photo and topo map data from Microsoft's free TerraServer Web site, saves it on your hard drive, and creates seamless maps from it. You can:
      1. See the latitude/longitude
      2. Add waypoints, routes, and text
      3. Jump to any waypoint or latitude/longitude in the U.S.A.
      4. Transfer waypoints, tracks, and routes to and from most GPS receivers
      5. See your GPS location
      6. Scroll and zoom

      And it's free.

    3. Re:what about plotting waypoints on the map? by Anonymous Coward · · Score: 4, Funny

      For now I'm just happy being impressed by the pretty scrolling

      I scrolled right for a long time but Europe never came into view.

    4. Re:what about plotting waypoints on the map? by parkrrrr · · Score: 4, Interesting
      And fortunately for us, Google makes it easy by giving us JavaScript code to decrypt the "points" string, and it does indeed contain latitudes and longitudes. Here's the equivalent Perl code, with almost all the same variable names as their JS code, with leading indentation stripped (thanks Slashdot!) Encoded string in $XX, decoded lat/lon pairs to stdout in CSV format. Feed that output to GPSBabel as "arc" format, and you should be able to simplify it and upload it to your GPS receiver.

      my $Ch=length($XX);
      my $pb = 0;
      my @aa;
      my $Ka = 0;
      my $Pa = 0;

      while($pb<$Ch) {
      my $ub;
      my $oc=0;
      my $Fa=0;
      do {
      $ub=ord(substr($XX,$pb++,1))-63;
      $Fa |= ($ub&31)<<$oc;
      $oc+=5;
      } while($ub>=32);

      $Ka=$Ka+(($Fa&1)?((1-$Fa)/2):($Fa>>1));
      push @aa, $Ka;
      $oc=0;
      $Fa=0;
      do {
      $ub=ord(substr($XX, $pb++, 1))-63;
      $Fa |= ($ub&31)<<$oc;
      $oc+=5;
      } while($ub>=32);
      $Pa=$Pa+(($Fa&1)?((1-$Fa)/2):($Fa>>1));
      push @aa, $Pa;
      }

      for (my $i = 0; $i< $#aa; $i++) {
      print $aa[$i]/1e5 . ', ' . $aa[++$i]/1e5 . "\n";
      }
    5. Re:what about plotting waypoints on the map? by Deviate_X · · Score: 4, Interesting

      http://map.search.ch/ is more similar to Keyhole (on the dynamics) and and even more interesting use of dhtml than googles first attempt.

  2. Google + DOM = Mozilla Juggernaut by aaron240 · · Score: 5, Insightful

    Google is bravely doing fantastic thing with client-side programming...something many websites have given up on because of cross-browser incompatibility. My money is definitely on Google being very aggressive with Mozilla/XUL based on this work. That's going to be good times!

    1. Re:Google + DOM = Mozilla Juggernaut by bcmm · · Score: 4, Interesting

      Have you seen this

      --
      # cat /dev/mem | strings | grep -i llama
      Damn, my RAM is full of llamas.
    2. Re:Google + DOM = Mozilla Juggernaut by ad0gg · · Score: 4, Informative

      You forgot to thank Microsoft for going outside of the standards and implementing XMLHttpRequest in IE5.0. Got so popular everyone started copying it. You see how gmail and google maps can change the content page without loading up a new page? Thats XMLHttpRequest, non standardized browser object.

      --

      Have you ever been to a turkish prison?

  3. Whoa! by American+AC+in+Paris · · Score: 5, Funny
    Find: insufferable whiners in Washington, DC

    Not bad, Google!

    --

    Obliteracy: Words with explosions

    1. Re:Whoa! by Anonymous Coward · · Score: 4, Funny

      And of course, try this:

      litigious bastards in salt lake city

      One hit. Guess who...

  4. Scrolling only partially works by Saxton · · Score: 5, Funny

    All you people complaining about Safari compatibility... For some reason I can't get my maps to scroll after they've been printed. I've tried using Epson and Canon printers. If anyone can help let me know.

    --
    My name is Aaron Landry, and I approve this message.
  5. Why aren't competitors beating Google to market? by Anonymous+Cowdog · · Score: 5, Interesting

    Google is hitting a lot of the obvious sweetspots for improving the user experience. Some of them are obvious only in retrospect. But we know their competitors have smart people, and they do UI research, and they have resources. Why does Google come out with innovation after innovation?

    I have three answers. I wonder which ones are valid:

    1. Laziness
    2. Encumberance with legacy political and business issues (is feature x threatening to partner Fooinc, how can we hang ads on this, etc.)
    3. Focus on fancy-pants analysis of numbers (data mining to try to optimise, rather than revolutionize), leading them to be blind to simple measures like using Javascript and caching lots of content in the client.

    What other reasons are there?

  6. Re:backflips? by Shadow+Wrought · · Score: 4, Funny
    ...stop personifying software...

    I agree, software hates being personified.

    --
    If brevity is the soul of wit, then how does one explain Twitter?
  7. What WOULD you call Google's approach? by dpbsmith · · Score: 5, Interesting

    It's not quite AI, yet Google comes closer to realizing the fantasy of Isaac Asimov's Multivac than anything else I've experienced before. It's very weird: the impression that Google gives is that it does NOT understand your question, yet it DOES manage to find the answers you want.

    It's not quite user-interface, in the sense of elegant widgets or consistency or any of that stuff. Google's traditional search features could almost run on Lynx on a green screen. Maybe they can. Google Maps is visually spiffy by comparison to Mapquest, but it's nothing we haven't seen in standalone programs years ago.

    It isn't really "search." Or at least, if it is, with every new thing they roll out, Google does an amazing job of expanding my notion of what "search" means. What does it mean to "search" on "250 pounds in kilograms?"

    Something that Google seems to share with Apple is some sort of courtesy or kindness or service orientation to the end-user. It just works. And unlike Microsoft or Apple, Google's services seem to come with fewer strings attached.

    One of the things that delights me about Google is a certain kind of freshness I haven't seen elsewhere as often as I'd like. They have the characteristic you used to see in innovative software that when you describe the latest Google feature, it doesn't sound all that new, yet when you use it you get that feeling that something unexpected has been revealed.

  8. Re:Why aren't competitors beating Google to market by Ced_Ex · · Score: 5, Interesting

    4. Google allows side projects which likely hold more interest than actual business projects, hence are produced with creativity and passion.

    --
    Live forever, or die trying.
  9. Where this is going... by RCulpepper · · Score: 5, Interesting

    I see some features that will tie in well with this. It already makes Local Search a lot more handy. I could see Google using aggregated GSM phone locator signals to forecast traffic patterns and then, after asking you when you intend to start and end your trip (so it can route you around traffic), estimating when you'll want to eat lunch, etc, so that bricks-and-mortar restaurants, gas stations on the selected route can pay for advertising - it's one segment of the economy Google has not yet touched.

    --
    Always a godfather; never a god. -Gore Vidal
  10. Re:backflips? by TedTschopp · · Score: 4, Informative

    Trust me, getting PNG transparancy / Alpha Channel support in IE is a backflip.

    --
    Fantasy remains a human right; we make in our measure and in our derivative mode... -- JRR Tolkien
  11. Will this bother some Privacy Fanatics ? by brandonp · · Score: 4, Interesting

    Of course, will this bother some people who are fanatical about Privacy issues?

    John Smith in New York City, NY

    Depending on how the results are categorized and obtained, this seems like it could be a hot issue.

    Brandon Petersen

    1. Re:Will this bother some Privacy Fanatics ? by Peyna · · Score: 4, Insightful

      Lord help us if the privacy fanatics ever get their hands on a phonebook and see all the privacy issues there.

      --
      What?
  12. Re:Old info by Reducer2001 · · Score: 4, Funny

    What, you thought those black helicopters belonged to the government?

    --
    When you get to hell -- tell 'em Itchy sent ya!
  13. In addition to that, by jdgreen7 · · Score: 4, Interesting
    Imagine if they started using this for real estate searches, too. Just link all the local back-end MLS listings to whichever region you're searching in and end up with an MLS service that's better than what most realtors pay for. By partnering with some of the larger realty companies (Century 21, Remax, etc.), they could probably take over a good chunk of the industry in a matter of a few years and make it much easier for individuals to shop for houses without the assistance of a realtor...

  14. RTFA by j3thr0 · · Score: 4, Informative

    Google Maps is using a hidden iframe to send messages back and forth

    --
    I'm schizophrenic; no I'm not.
  15. Re:Safari support by prockcore · · Score: 4, Informative

    it is too bad that even Google can't get a webpage to render properly on any modern browser, such as Safari.

    Safari doesn't support XSLT. It's not google's fault that Safari is behind even IE6 in this respect.