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."

442 comments

  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 ackthpt · · Score: 2, Interesting
      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.

      While I've fiddled with it and found the interface to have it's up-sides and down-sides (not really very big considering it's a web app.) I think you're looking for functionality at a whole other level, i.e. competing with Delorme or such, which could prove a challenge. I've got the Delorme package on my PC at home and the volume of information its processing to produce things would kill Google's servers. Besides, Delorme is Topo and Google's isn't, and Topo information is actually very useful when travelling. When I moved west I drove a truck, pulling a trailer with my car on it, up a road I never should have taken. Perhaps the squiggly road on a decent map would have given the appropriate clue, not to take that road because of the high pass. Google could at least include some elevation data in their images as an option.

      --

      A feeling of having made the same mistake before: Deja Foobar
    4. Re:what about plotting waypoints on the map? by Ucklak · · Score: 1

      Good point about elevation but remember;
      a) It's beta
      b) Google want to target local search instead of cross country travel

      Type pizza or consignment and you'll see what Google is after.

      Pretty awesome app.

      --
      if you steal from one source, that is plagiarism, if you steal from many, well, that's just research.
    5. Re:what about plotting waypoints on the map? by parkrrrr · · Score: 1
      GPS Visualizer piggybacks on MSN Terraserver for some of their imagery. For some reason I can't see MSN taking too kindly to Google doing the same thing.

      According to the FA, the route information is transmitted to the client in some encoded form, then sent back to Google to request a PNG file. If someone could reverse-engineer that encoded form, and if it actually contained usable information, you could probably find someone who'd be willing to write a module for GPSBabel to handle it.

    6. 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.

    7. Re:what about plotting waypoints on the map? by AviLazar · · Score: 2, Funny

      t would be awesome if Google could completely take over the commercial mapping software application market

      So what you are saying is that you want Google to have a monopoly?

      Well since it's Google - they can be fully trusted - lets give it to them.............

      --

      I mod down so you can mod up. Your welcome.
    8. 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";
      }
    9. 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.

    10. Re:what about plotting waypoints on the map? by parkrrrr · · Score: 2, Interesting

      And of course it has bugs (mine, not theirs.) The two places where it says (1-$Fa) should say (-1-$Fa).

    11. Re:what about plotting waypoints on the map? by Anonymous Coward · · Score: 0

      there is already software out there that allows you to map out like this and then apply a GIS filter over it. But that cost money. If they were to offer this for free (well somewhere they be making money) that would be nice

    12. Re:what about plotting waypoints on the map? by robertjw · · Score: 1

      Actually I've thought of this. Someone should setup a site where we can all submit pictures of our houses/streets. Aggregate it all together and you can get a picture of any street in the world. That would be slick.

      Of course, then I started calculating bandwidth, storage and maintenance costs and decided it wasn't worth it to me.

    13. Re:what about plotting waypoints on the map? by Edzor · · Score: 1

      Real men dont use Google Maps.

    14. Re:what about plotting waypoints on the map? by Dolly_Llama · · Score: 2, Funny

      Shit, that code practically debugs itself, doesn't it?

      --

      Somewhere, something incredible is waiting to be known. -- Carl Sagan

    15. Re:what about plotting waypoints on the map? by ArsonSmith · · Score: 1

      Until they abuse it I'm all for it.

      --
      Paying taxes to buy civilization is like paying a hooker to buy love.
    16. Re:what about plotting waypoints on the map? by fishicist · · Score: 3, Informative

      Multimap here in the UK does a good job of combining maps with aerial photographs. It even overlays a transparancy of the map.

      The photos are at least a few years old, but it's still pretty, if not particularly useful.

    17. Re:what about plotting waypoints on the map? by LakeSolon · · Score: 1

      Thanks man. I was hoping someone would volunteer some code to decode that, though I was thinking maybe code that was at least as readable points data. Do I live with the kludge of calling an external perl script, or try to turn that into equivalent java? ugh.

      ~Lake

    18. Re:what about plotting waypoints on the map? by LakeSolon · · Score: 1

      Here are two things on my todolist:

      Convert Long/Lat into Tile X Y to download specific image tiles.

      Associate steps in directions with a long / lat.

      Anyone managed either of those yet?

      ~Lake

    19. Re:what about plotting waypoints on the map? by Big+Sean+O · · Score: 1

      Competition is good.

      I used to use Mapquest for maps (because they had aerial photos) but when they cheaped out, I tried maps.yahoo.com and got hooked.

      Another reason I switched is I felt that Mapquest seemed to only feature its partners (like holiday inn hotels). Yahoo also features its partners, but at least that includes Marriott hotels (and that's where my points accumulate).

      It seems that the Google Maps beta already looks nicer than Yahoo and Mapquest. If they can avoid icky ad placement (which I have complete faith they will), then they've got another winner, IMHO.

      The only problem I found so far: I searched for an address in "Des Planes, Illinois" and got no results. Turns out that it's spelled "Des Plaines". It's a minor quibble, but Google seems to know when I misspell ever other fcuking word.

      --
      My father is a blogger.
    20. Re:what about plotting waypoints on the map? by macshit · · Score: 1

      Yes! That seems sooooo much better than Google's attempt (though Google's interface is very elegant). Please mod the parent up.

      My main complaint with maps.google.com is that the maps seem so "dead" -- they contain roads, major bodies of water, "parks", and bugger-all else. I don't feel like I'm looking at a real place, and many of the cues I apparently use when looking at paper maps aren't being triggered.

      Granted Google's just starting out, and something as incredible as what map.search.ch does might not be easy for the entire U.S., but I certainly hope Google can do better than they are.

      [My worry is that Google will deem such a "roads and directions only" approach acceptable because their main market is the car-obsessed U.S.]

      --
      We live, as we dream -- alone....
    21. Re:what about plotting waypoints on the map? by Anonymous Coward · · Score: 0

      Do you know how one would go about encoding a list of X,Y's? (or is it even possible?) I've tried to muck around with the decoding function for about an hour but I'm not good with all the bitwise operations going on.

    22. Re:what about plotting waypoints on the map? by dazza101 · · Score: 1

      Another free and previously /.'d program is Worldwind. Which not only gives you the USGS 1m b&w images, but high res ortho 30cm resolution images in the US and worldwide Landsat imagery in 3D!
      Oh, and version 1.2e has just been released!

    23. Re:what about plotting waypoints on the map? by Sheriff+of+Rockridge · · Score: 1

      The "car obsessed US" IS google's target market, and they have succeeded once again in simplifying another facet of the cluttered internet app market. It it fast, sleek, and effective. And you can bet that Mapquest, Yahoo!, and Microsoft are frantically trying to come up with something similar.

      If terrain maps and satelite images are what you are looking for (similar to http://map.search.ch/), try Keyhole. It's wonderful.

    24. Re:what about plotting waypoints on the map? by Anonymous Coward · · Score: 0

      while($pb=32);

      Jesus Christ, that crap looks like a cross between FORTRAN and Perl! It's no wonder that folks consider Perl a write-only language if people refuse to use variable names that are longer than 2 characters or do the sensible thing by not declaring variables until they are needed. I swear it looks like you intentionally avoided any sensible programming style.

    25. Re:what about plotting waypoints on the map? by Anonymous Coward · · Score: 0

      Or my program, viking, for both Linux & Windows... Only terraserver for now, but I'm working out street maps, and I'm definitely going to implement this when I find the time and figure out the tiles thing. This is great stuff, tiled maps without ads, a lot better than this method I have with expedia maps and cutting off the advertisements...

    26. Re:what about plotting waypoints on the map? by Anonymous Coward · · Score: 0

      erm... I didn't sleep much last night... that should be viking.sf.net ... and it's GPL'd

    27. Re:what about plotting waypoints on the map? by Anonymous Coward · · Score: 0

      And that invariably someone would feel the need to submit the goatse image repeatedly. Then you'd need to have people review images before they could go live. Then you'd have people sign up under different names and spam all sorts of stuff. In short it's probably easier to just have someone hire a whole bunch of other people to drive around and take pictures like amazon does with a9 or whatever it's called.

    28. Re:what about plotting waypoints on the map? by parkrrrr · · Score: 1

      Well, it is THEIR variable names, other than $XX, which is my fault. I assume they used short ones to minimize download time.

    29. Re:what about plotting waypoints on the map? by parkrrrr · · Score: 2, Informative

      Yes, it's possible.

      First, multiply all your lats and lons by 1e5.

      Now, take the first lat, and encode it (encode function to be specified later.) Append that to the string. Do the same with the first lon.

      Now, take the DIFFERENCE between the second lat and the first one, and encode that. Append that to the string. Again, do the same with the second lon.

      For each additional lat/lon, encode the difference from the previous one.

      Now, the encoding:

      If the number you have is negative, multiply by two and take the logical not. Otherwise, just multiply by two. Notice that this makes the least significant bit the sign bit.

      Now break the number into 5-bit chunks. Encode the least significant chunk first, by casting to a byte, adding 32 if there are more nonzero chunks to come, and then adding 63. Repeat for each 5-bit chunk. Skip trailing (MSB) zero chunks, but always output at least one chunk for each number. (That's why there are so many ? symbols: it encodes a difference of zero from the previous lat or lon. Note that this means you'll also never see three ? symbols in a row.)

      I haven't played with the 'levels' string yet; I assume it's used for removing details as you zoom out, and based on the characters that appear in it it may use the same encoding method except without the delta compression. The rest of the XML looks self-explanatory.

    30. Re:what about plotting waypoints on the map? by Anonymous Coward · · Score: 0

      Awesome - thanks a lot.. besides the obfuscation all the bitwise manipulation was really mind-bending -- at least for me!

    31. Re:what about plotting waypoints on the map? by parkrrrr · · Score: 1
      Here ya go, rewritten with some proper spacing and good variable names. The variable scope, even in the original code, was about as small as was reasonable. That is, "not declaring variables until they are needed" was already handled. Again, the lack of proper indention is Slashdot's fault.
      my $strLen = length( $encoded );
      my $index = 0;
      my @coords;
      my $lat = 0;
      my $lon = 0;

      while( $index < $strLen ) {
      my $chunk = 0;
      my $shift = 0;
      my $delta = 0;
      do {
      $chunk = ord(substr($encoded,$index++,1))-63;
      $delta |= ( $chunk & 31) << $shift;
      $shift += 5;
      } while ( $chunk >= 32 );

      $lat = $lat + (($delta & 1) ? ((-1 - $delta) / 2):($delta >> 1));
      push @coords, $lat;
      $shift = 0;
      $delta = 0;
      do {
      $chunk = ord(substr($encoded, $index++, 1))-63;
      $delta |= ($chunk & 31) << $shift;
      $shift += 5;
      } while( $chunk >= 32);
      $lon = $lon + (($delta & 1) ? ((-1 - $delta) / 2) : ($delta >> 1));
      push @coords, $lon;
      }

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

      Click on the dynamically updated "Link to this page"

      sample link:
      http://maps.google.com/maps?ll=48.051331%2C -122.55 3038&spn=0.042908%2C0.078309

      Latitude:48.051331
      Longitude:-122.553038

      Isn't that a little simpler? You can also plug in your own GPS coords into the URL, and load it up

    33. Re:what about plotting waypoints on the map? by parkrrrr · · Score: 1

      Yes, but this code isn't actually about putting waypoints on the map, regardless of what the subject might say. This code is about taking the computed route and putting it in a form that can be used with a GPS receiver or other mapping software.

      For what it's worth, I've actually taken the output from that Perl script and fed it to Street Atlas 2003. It lined up well enough with the streets that whatever differences there were are probably due to either the age of the data or the compression that DeLorme applies.

    34. Re:what about plotting waypoints on the map? by Anonymous Coward · · Score: 0

      Funny, the same thing happened to Condoleezza...

    35. Re:what about plotting waypoints on the map? by gfreeman · · Score: 1

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

      From the US perspective, pretty much everything is to the left.

      --
      Ceci n'est pas un sig.
  2. Still doesn't work with Safari by Anonymous Coward · · Score: 2, Interesting

    I find this interesting because Google's response, if you load maps.google.com in safari, isn't "we don't care about your platform, bugger off", it's a short, apologetic note saying that they don't work in Safari yet but you can try one of these other browsers. This seems to indicate the problem isn't with Google's javascript, it's with Safari, Google's javascript is more than Safari can handle.

    Hell if I were a browser company I'd pay Google a small consulting fee just to find bugs in my browser. You know, give them some cash and say "have your javascript fellows write the most fucked up thing you can, i am paying you to break my browser".

    1. Re:Still doesn't work with Safari by jdwest · · Score: 1

      A similar message was posted for Safari users when gmail was first coming online in its earlier beta versions.

      I do remember a Google spokesperson expressing in a news story that Mac/Safari users were very important to Google, and gmail would be working with Safari soon (at that time).

      A month or so later, all was well with Apple's browser and gmail.

      --

      Lorem ipsum dolor sit amet ...
    2. Re:Still doesn't work with Safari by fishyfool · · Score: 1

      seems to be a konqueror issue. and since Safari is based on konqueror it has the issue as well?

      --
      Enjoy Every Sandwich
    3. Re:Still doesn't work with Safari by LEgregius · · Score: 2, Informative

      Actually, it works fairly well in safari. There is a link at the bottom of the page that allows you to open the page anyway, and the it seems to function already.

    4. Re:Still doesn't work with Safari by Anonymous Coward · · Score: 0

      Safari is based on the khtml component, not konq per se. It has gradually drifted away from khtml, and even renders some sites differently now. Supporting one doesn't automatically mean supporting the other.

    5. Re:Still doesn't work with Safari by Anonymous Coward · · Score: 0

      It's funny. Five years ago, people said "Everyone uses Internet Explorer, so you Netscape users should kindly upgrade your browser." Today, it's "Everyone uses Internet Explorer or Firefox, so you Safari / Konqueror / Opera / lynx / OmniWeb / Amaya / w3m / telnet users can go download something else."

      If this were any other company than Google doing this "your browser is not welcome" routine, Slashdot would have raked them over the coals months ago.

    6. Re:Still doesn't work with Safari by Anonymous Coward · · Score: 0

      If this were any other company than Google doing this "your browser is not welcome" routine, Slashdot would have raked them over the coals months ago.

      You mean if any other company created a first-release, free beta product, but didn't support one of the minority browsers for about a month after release?

      No. You are on crack. No one would care.

    7. Re:Still doesn't work with Safari by Anonymous Coward · · Score: 0

      Google maps is still in Beta. Give 'em time to work it out. Getting it to work with Safari isn't as high a priority as Firefox (and of course, IE.) Why not have Firefox as a second browser, anyway?

      While Safari is a great browser this is far from the only page it has trouble with.

    8. Re:Still doesn't work with Safari by Anonymous Coward · · Score: 0

      Google never releases anything beyond beta any more, so your point is moot.

      Now please go stand outside the Cathedral and wait for more of Google's table scraps.

    9. Re:Still doesn't work with Safari by Anonymous Coward · · Score: 0

      Only to a point. I'm messing with it and it has some issues, i can't get it to search for a specific street location, and if i try to zoom in past a certain point everything just goes blue.

    10. Re:Still doesn't work with Safari by Anonymous Coward · · Score: 0

      Google's definition of Beta is that they haven't figured out how to make money from it yet.

      But Google Maps is definitely beta quality at best, there are plenty of bugs with it.

    11. Re:Still doesn't work with Safari by Em+Adespoton · · Score: 3, Informative

      The problem isn't with javascript, it's with XSLT. If you read the article, you'll notice that the XML transforms are done using XSLT -- and Safari is currently the only browser I've used that doesn't support XSLT. Supposedly it will be in the next version of Safari, so it looks like Google has decided to use it now, and let the browser catch up, instead of using an older technology hack. I hope this provides some incentive for the Safari team to get XSLT working soon, as I have a number of projects that depend on it. http://www.plattiblog.com/2004/08/16.html seems to hint that there has been some progress.

    12. Re:Still doesn't work with Safari by jp10558 · · Score: 1

      Opera seems to be the other browser that doesn't support XSLT. I'm not sure why Opera doesn't support it, but given the response to GMail, I figure Opera will implement it soon.

      --
      Opera, Proxomitron-Grypen,GPG 0x0A1C6EE3
    13. Re:Still doesn't work with Safari by smokestacklightning · · Score: 1

      Correct - this isn't a fault of the app - but is a fault of the browser - if Safari had gone with Gecko, this ( and the numerous previously mentioned incompatibilities ) wouldn't be an issue. Granted, hindsight is 20/20, I didn't think that mozilla would have the traction it does now ... Personally, I still get pissy when CapitalOne says that Firefox is not a secure "trusted" platform to log into my account with.

  3. 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 Anonymous Coward · · Score: 0

      It's because client-side javascript is a TOY language that no one wants to sully themselves with, remember?

    2. 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.
    3. 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?

    4. Re:Google + DOM = Mozilla Juggernaut by realdpk · · Score: 1

      Cute, but it needs something to carry over into the results.

    5. Re:Google + DOM = Mozilla Juggernaut by arkanes · · Score: 1

      IE actually had this functionality before, via the DHTML download behavior. They implemented the XMLHttpRequest for a compatible API.

    6. Re:Google + DOM = Mozilla Juggernaut by aaron240 · · Score: 1

      Ah, you're right. Thank you Microsoft for your great work in promoting standards.

    7. Re:Google + DOM = Mozilla Juggernaut by Anonymous Coward · · Score: 0

      Err?

      XMLHttpRequest is part of Javascript and is supported in mozilla and safari and Opera. You might be thinking of the Microsoft.XMLHTTP ActiveX object that has been repeatedly nerfed for exploitable bugs?

    8. Re:Google + DOM = Mozilla Juggernaut by drew · · Score: 1

      XmlHttpRequest is not an official part of JavaScript, and is not covered by any existing standard. Yes, it is supported by all of the major browsers *now*, but as far as I'm aware it was implemented by Microsoft first, and copied by the rest later. (In fact, as far as I'm aware, XmlHttpRequest is still not supporeted in any release version of Opera, unless Opera has released a new version with ~the last month. It was only added to the beta versions fairly recently.)

      Unless you can show which W3C (or other) standard applies to XmlHttpRequest? The page you linked to says nothing of standards- only how to use it.

      --
      If I don't put anything here, will anyone recognize me anymore?
    9. Re:Google + DOM = Mozilla Juggernaut by drew · · Score: 1

      And which standard are they promoting with XmlHttpRequest?

      --
      If I don't put anything here, will anyone recognize me anymore?
    10. Re:Google + DOM = Mozilla Juggernaut by hey! · · Score: 3, Interesting

      Yeah, javascript might be a toy, although there's a bit more there than meets the eye, but DOM is definitely not a toy.

      Languages are important, but even more important is the runtime environment they have access to. If the environment has the basic stuff you need, then even a crappy language would be pretty powerful. Think of a templating language like velocity -- it's not designed to be powerful by itself, but to be very convenient to integrate with a context that supplies it with everything it needs to do powerful things.

      Years ago, in the era of of the 16MHz microprocessor, I had the problem of writing an Exel spreadsheet that required lookups from huge tables. Using VLOOKUP took hours. So I implemented a double hash algorithm in the Excel macro language. Mind you, this wasn't VB for apps, this was the nasty old lotus-y macro language. It turned out to be easy, because the spreadsheet environment provided most of the lumber I needed, I just had to snap it together.

      --
      Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
    11. Re:Google + DOM = Mozilla Juggernaut by bcmm · · Score: 2, Funny

      Absolutely.
      However, I take this as a sign they are at least considering something more interesting.


      Unless it is just part of their well-known secret plan to produce a Google-branded Firefox, operating system and fast-food chain, of course...

      --
      # cat /dev/mem | strings | grep -i llama
      Damn, my RAM is full of llamas.
    12. Re:Google + DOM = Mozilla Juggernaut by Bitsy+Boffin · · Score: 1

      javascript might be a toy

      Javascript is no toy. It's a really flexible and powerful language which I find very well suited to event-driven systems.

      As you say though, the runtime environment is more important and unfortunatly JS is for the most part (but not always) limited to running in browsers.

      --
      NZ Electronics Enthusiasts: Check out my Trade Me Listings
    13. Re:Google + DOM = Mozilla Juggernaut by ashot · · Score: 1



      but.. I thought that they were infallible..

      --
      -ashot
    14. Re:Google + DOM = Mozilla Juggernaut by ashot · · Score: 1
      preview first..preview first..
      <!-- Why does onkeyup, check for 13, seem like a really dumb thing? -->
      <textbox id="q" persiste="value" maxlength="200"
      onkeypress="if (event.which == 13) { doSearch('') }"/>
      <button id="btnG" label="Google Search" default="true"
      --
      -ashot
    15. Re:Google + DOM = Mozilla Juggernaut by ikkonoishi · · Score: 1

      CHR(13) = Carriage Return = ENTER

    16. Re:Google + DOM = Mozilla Juggernaut by Baloo+Ursidae · · Score: 1
      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!

      Vendor lock-in is a Bad Thing. Did you learn nothing from the Microsoft Dynasty, which is starting to wind down as we speak thanks to vendor lock-in?

      --
      Help us build a better map!
    17. Re:Google + DOM = Mozilla Juggernaut by NutscrapeSucks · · Score: 1

      Yes, but common Javascript actions like Alert boxes and popup windows are not part of any official standard. Even for common HTML/Form stuff, the W3C DOM spec is not very complete.

      --
      Whenever I hear the word 'Innovation', I reach for my pistol.
  4. backflips? by Quasar1999 · · Score: 2, Insightful

    Either the browser supports it, or doesn't... stop personifying software... it does what it designed to do. Just because other pages out there don't use certain features doesn't mean the browser is doing some amazing task by supporting features.

    --

    ---
    Programming is like sex... Make one mistake and support it the rest of your life.
    1. 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?
    2. 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
    3. Re:backflips? by Bandman · · Score: 1

      wow, someone's being a little bit crabby today, huh?

      What's the matter? Feeling left out of the fun?

      By the way, complaining that people are being clever really just implies that you happen to lack that quality.

    4. Re:backflips? by Anonymous Coward · · Score: 0

      Yes it does. The wow factor comes not just in the features, but how awesome they look. They're approaching regular application functionality in a web app. That's something special. They didn't even need java or .NET so it's even snazzier.

      Let us be amazed and go worry about word-choice elsewhere.

    5. Re:backflips? by therevolution · · Score: 1

      Sheesh... chill out. It's natural for people to personify non-human things. In order to understand foreign concepts, we have to put it at a level we already understand.

      While "backflips" might not have been the best analogy, I'm sure what he means is that Google is once again using Javascript in unusual and/or advanced ways to do what it's doing.

    6. Re:backflips? by m50d · · Score: 1

      Only some browsers do. It won't work in konqueror. So it's sort of impressive that they've persuaded IE and gecko to behave in the same way when it's a non-standard thing they're doing.

      --
      I am trolling
    7. Re:backflips? by tesmako · · Score: 1

      It has been well-documented and well-known for ages how to do PNG alpha channels in IE. The stereotypical slashdot whine is about it not being done automatically with just the standard tag (not a huge complaint for the ambitious, the extra piece of code needed to make IE work with it does not interfere with other browsers that worked already).

    8. Re:backflips? by snorklewacker · · Score: 0, Offtopic

      Ooh, new sig idea. Thanks.

      --
      I am no longer wasting my time with slashdot
    9. Re:backflips? by Rakshasa+Taisab · · Score: 1

      But I like the OS-tan's and I'm in love with Firefox-ko. Why do you want to kill those cute girls?

      --
      - These characters were randomly selected.
    10. Re:backflips? by Anonymous Coward · · Score: 0

      Friendly suggestion, "My computer hates being anthropomorphized." would flow better, and just be funnier all around ;)

    11. Re:backflips? by timster · · Score: 0, Offtopic

      Change that to "she doesn't like it" and you're set.

      --
      I have seen the future, and it is inconvenient.
    12. Re:backflips? by Shadow+Wrought · · Score: 2, Funny
      Anytime;-)

      One of my wife's friends is a retired physics professor. We had a talk once in which he was railing against the anthropomorphization of everyday objects. Since objects aren't supposed to have feelings one way or the other, it got me thinking about how many things in my own life that I anthropomorphize. So given a choice between (a) changing my tendencies to anthropomorphize, or (b) accept that I anthropomorphize and be done with it. Instead I chose (c). I realized that since anthropomorphized objects behave better than non-anthropomorphized objects, that they were the ones wanting to be anthropomorphized. Who was I to argue?

      --
      If brevity is the soul of wit, then how does one explain Twitter?
    13. Re:backflips? by Anonymous Coward · · Score: 0

      post link, pls, so whiney n00bz such as myself can find out how. thanks!

    14. Re:backflips? by timeOday · · Score: 1
      Either the browser supports it, or doesn't... it does what it designed to do.
      What planet do you live on, where software does just what it was intended to do, and nothing more?

      If that were true, first off, there would be no security vulnerabilities.

      And you wouldn't have people in an online strategy game stacking dozens of chairs to get to the top of a tower instead fighting their way up the staircase as they were meant to do.

      The original designers of HTML never foresaw all the crazy tricks people would use TABLE tags to accomplish.

      Anytime you have more than a simple mechanism, the possible outcomes become unforseeable. That's the fun of it!

    15. Re:backflips? by Mitchell+Mebane · · Score: 1

      You could just use IE7.

      --

      The roots of education are bitter, but the fruit is sweet.
      --Aristotle
    16. Re:backflips? by hey! · · Score: 2, Insightful

      Well, sure, but that's just one point among many.

      You put everything together, and creating a consistent cross browser experience with something that plays so many tricks with the browser is like jumping into a pool full of crap, swimming a lap, and coming out smelling like a rose.

      Looked at one way, the application's features are rudimentary. Looked at another, the means used are pretty extraordinary.

      --
      Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
    17. Re:backflips? by UserGoogol · · Score: 1

      The Jargon File seems to suggest that personifying software is a common tendency in Geek/Hacker culture. I imagine it has ESR's debatable fingerprints all over it, but it seems like a valid argument.

      --
      "Never attribute to malice that which can be adequately explained by stupidity." -- Hanlon's Razor
    18. Re:backflips? by davegust · · Score: 1

      Here.

      It's a fairly nice solution. Add one .HTC file to your server, and add one style for IMG tags to your style sheet.

    19. Re:backflips? by Anonymous Coward · · Score: 0

      You don't really understand the definition of that word, do you?

    20. Re:backflips? by p3d0 · · Score: 1

      There's nothing worse than debatable fingerprints.

      --
      Patrick Doyle
      I mod down every jackass who puts his moderation policy in his sig. Oh, wait a sec....
    21. Re:backflips? by paskal · · Score: 1

      Even easier - a JavaScript solution - just add this one file at the beginning of your HTML page, and you're done.

      http://homepage.ntlworld.com/bobosola/

    22. Re:backflips? by TedTschopp · · Score: 1

      I know there are several ways to do this, but when taken with everything else, it's impressive. The thing that I think is cool is that at any other company a web project of this size would have been killed in its concept stage or changed radically to be done mostly on the server tier as opposed to the presentation tier because it is built of many of these 'tricks.' No normal manager would approve of such a 'risk'.

      --
      Fantasy remains a human right; we make in our measure and in our derivative mode... -- JRR Tolkien
    23. Re:backflips? by davegust · · Score: 1
      That solution has some problems.
      • It requires each page to be modified - the CSS solution can be added to an external style sheet, which most well designed sites already have.
      • It doesn't handle dynamic updates to the SRC attribute of the IMG tag.
      • It rewrites the IMG tag so that attributes not explicitly handled by the script are lost (alt?)
  5. Combination by augustz · · Score: 2, Interesting

    Google:

    - Nice company
    - Cool services
    - Sweet interfaces

    That is a rocking combination.

    The fact that they seem to be making stuff available under Firefox as well is also great.

    1. Re:Combination by lucabrasi999 · · Score: 1

      While I'll give you the last two, I do have to question the term "nice company". The "niceness" of a corporation depends upon your point of view.

    2. Re:Combination by waynelorentz · · Score: 1

      Damned straight. Corporations like the World Wildlife Fund and The United Way and the Salvation Army and Goodwill Industries are going to ruin the Earth. We should outlaw all corporations! That will fix everything. If we get rid of corporations, everyone will have jobs and food and there will be world peace and all the happy little nerds can read Slashdot in their parents' basement while drinking Free Beer(tm).

    3. Re:Combination by identity0 · · Score: 1

      Kinda makes you wonder, though, how much cool stuff could be produced if all the geeks in the other companies were allowed to do side-projects that get released. Too often managers look at geek projects and think "Why are you wasting company time/resources on this?" instead of trying to leverage it for their company.

      Microsoft Research sounds like they have some smart people, but very little of it seems to actually get out to the public...

      Too bad other companies have dismantled their R&D arms completely as "cost cutting".

  6. Old info by suprchunk · · Score: 1

    Pretty neat, but the info they have on some of that stuff is pretty dated.

    1. Re:Old info by networkBoy · · Score: 3, Informative

      It fairly successfully mapped Folsom, CA to Wilsey, KS which is not on many maps. It even has the friggen farm roads in it's database!

      I love how you can clock on a waypoint in the directions and it pops up a bubble window in the main map with a closeup detail!
      -nB

      --
      whois gawk date unzip strip find touch finger mount join nice man top fsck grep eject more yes exit umount sleep dump
    2. Re:Old info by lowrydr310 · · Score: 1

      Google maps is the first online map service that I used that accurately displays my hometown! A+ to Google, but where did they get their detailed maps from?

    3. 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!
    4. Re:Old info by superpulpsicle · · Score: 1

      As long as you mention M$ Streets and Trips. This is the only app I give M$ their credit. Since it's bugfree, affordable, updated very nicely every year. It's also a cut above any web mapquest wannabe.

      If google can rival M$ Streets and Trips, I'd like to see it. Google maps already do look better cleaner and neater than mapquest that's for sure. But that doesn't say enough.

    5. Re:Old info by Chundra · · Score: 1

      In my area the helicopters are bright blue, red, yellow and green.

    6. Re:Old info by Leatherman · · Score: 2, Interesting

      Strangly the map of my hometown is a mix of outdated and new info. There is a street on the map that was put in about 3 years ago, but a road around an entire man made island is missing. The island has been there at least 20 years.

      --
      I thought I made a mistake once, but I was wrong.
    7. Re:Old info by carninja · · Score: 0

      Streets & Trips also uses GPS (The more expensive version even comes with a nifty lil USB GPS reciever) It really is an excellent program, only Microsoft's own MapPoint beats it. I highly suggest checking it out.

    8. Re:Old info by kd5ujz · · Score: 1

      Probably from Keyhole.com, which they acquired not too long ago.

      --
      -William
      God is everything science has yet to explain.
    9. Re:Old info by Anonymous Coward · · Score: 0

      That's really clever and funny and cute how you write M$ instead of MS.

  7. Safari support by Staplerh · · Score: 1, Interesting

    Hmm, I wonder if this is why I can't use Google Maps with Safari:

    I also think it bears noting that Google is pulling out all the stops to build rich web apps, no matter how weirdly they have to hack the browser to make them go. And I strongly believe that this is a trend that is here to stay -- XHTML Strict/CSS/etc be damned. At the end of the day, what really matters to users is compelling apps that let them get their work done quickly.

    I'm not necessarily complaining, as I can use Firefox, but it is too bad that even Google can't get a webpage to render properly on any modern browser, such as Safari.

    Oh well, I don't know that much about any of these 'browser hacks' that Google is doing, but hopefully their promised Safari support will come soon.

    --
    "There's no success like failure, and failure's no success at all."
    - Bob Dylan
    1. Re:Safari support by nojomofo · · Score: 2, Insightful

      Does anybody else think that this behavior sounds like Microsoft? The "standards be damned, we're going to do something cool our way". Now granted, it's not their browser, so they're stuck with what browsers can do, but it does suck that this isn't truly cross-platform.

    2. Re:Safari support by garcia · · Score: 2, Insightful

      I'm not necessarily complaining, as I can use Firefox, but it is too bad that even Google can't get a webpage to render properly on any modern browser, such as Safari.

      I assume you are saying that Firefox isn't modern? I really don't see how your complaint is any different than those posting yesterday from outside of the US (and lower .ca) that Google Maps didn't support their countries.

      This is a BETA. They are going to target the largest group of surfers possible. In order to do that they are going to program the software to interface with the browsers that are most widely used (thus IE and Firefox). Yeah, Safari is great and all and I try to use it daily but Mac users (and nevermind those using Safari) are in the minority.

      Just hold on tight and wait for Google to get to you. They will get around to it (just like they did for GMail) but you just have to be patient while they work through the Beta.

    3. Re:Safari support by Anonymous Coward · · Score: 1, Informative

      I am not the author of the grandparent post, but if I am not mistaken you have misinterpreted them.

      I believe when they said "any modern browser" they were expressing shock that there are any modern browsers which experience problems with Google Maps, rather than expressing shock that there do not exist any modern browsers which do not experience problems with Google Maps.

    4. Re:Safari support by Haydn+Fenton · · Score: 1

      If you've ever tried to make a webpage look correct in all browsers, you'll realise it's not as easy as opening up your fav WYSIWYG editor and making a page. Heck, even if you use plain old notepad and code the whole thing yourself, XHTML and CSS compliant, chances are (well it depends on the complexity of course) it still won't look the same in all browsers.
      Then add the fact they use a heck of a lot of client-side scripting and technology that not all browsers currently support, and it's pretty amazing that they have it working in the majority of widely used browsers. If it doesn't work in a browser with (sorry, I don't know the stats for Sarafi, I'm assuming it's) around 1% or lower market share, trying to get it to work in that too would most likely break it for one of the more popular browsers.

      As a web developer, you try to aim for compatability with the top browser or 2, maybe 3. Trying to get it working in them all would be more work than it's worth.

    5. Re:Safari support by Anonymous Coward · · Score: 0

      Agreed -- it's pretty clear that that's what he meant.

    6. Re:Safari support by cakoose · · Score: 1

      Sometimes it's not difficult to provide equivalent functionality in a standards-compliant way (for example, the MSN portal). In such cases, it is best to stick to standards.

      Given the relative complexity of Google's Maps website, I think it's fair to give them the benefit of the doubt and accept the possibility that it is extremely hard to do this in a standards-compliant way. I think they may have chosen the option of giving each browser a slightly modified page and they just haven't gotten around to some of the other browsers yet.

    7. Re:Safari support by Grey+Ninja · · Score: 2, Informative

      Well, I've never developed this sort of stuff with Safari/Konqueror in mind. But I have written some pretty strong DHTML stuff... (A phone directory that worked entirely on the client is what I am immediately referring to.).

      And I can see where Google is coming from. Sometimes, to make the cleanest interface possible, you have to use some really powerful tricks. Gmail uses the same sort of setup that I used in my phone directory... I haven't looked into the specs of Safari too much, but I do know that I couldn't find a way of making my phone directory work with Opera. Reason being that the browser just didn't have the capability that I needed (extra strength XML support). To the best of my knowledge at the time, only IE and Mozilla were sufficiently evolved to allow what I was doing.

      It's true that it's not entirely standard... but it's powerful enough that Mozilla decided to break tradition and include support for doing such things. And by the time I finished my phone directory, I did make the code mostly standard... but it still didn't work in Opera.

      And if you are curious, I developed it for a corporate Intranet, so the code is not available for viewing. (And I don't own the code, so I don't have a personal copy).

    8. Re:Safari support by 2nd+Post! · · Score: 1

      Of course the difference is that Microsoft rarely does something 'cool'

      It's just, "standards be damned, we're going to do something to benefit us first."

    9. Re:Safari support by gmcgath · · Score: 1

      If they're saying, "We're going to conform to standards in the final version, even though we're using non-standard techniques in the beta," they're using sloppy design techniques and painting themselves into a corner. If they're saying, "Standards be damned," then they can go their own way, and I'm not going to waste any effort making my browser compatible with their bad code.

    10. Re:Safari support by mcc · · Score: 2, Funny

      The "standards be damned, we're going to do something cool our way".

      I really have trouble seeing it as in any way Google's fault that the standards have failed to deliver browser compatibility.

    11. Re:Safari support by arkanes · · Score: 1

      The thing, of course, is that the standard doesn't adress stuff like rich client content. It's not a matter of implementing something in a non-standard way, it's a matter of implementing something for which there is no standard. Add to that the need to overcome less than perfect standards support in the real world (no browser 100% perfect, all imperfect in various ways, IE most important to support but also least compliant).

    12. Re:Safari support by samtihen · · Score: 1

      I'm actually pretty sure the reason Google keeps ignoring Safari is that the XML Http method in javascript only works on Mozilla and as an ActiveX method in IE.

      http://jibbering.com/2002/4/httprequest.html

    13. Re:Safari support by shayne321 · · Score: 1
      I dunno, I have to defend google here. Yesterday I was working on revamping a small user management app used by our department on our intranet.. Since I wasn't under a deadline I decided as a learning experience to abandoned my normal table based layout (since I'm constantly hearing "using tables for layout is evil!") and implement the design in CSS. Well, after spending over 10 hours for what SHOULD have been a two hour design, I finally got something that looked halfway decent, but only after having to learn the particular rendering quirks of each specific browser I wanted to support.

      What especially bit my ass was mozilla decides to be standards-compliant and render css boxes based on the width you specify and add padding and borders to that. Ok, fair enough. IE decides to be NOT standards complient and render boxes at the width you specify and deduct padding and borders from that. Ok, I can see that. So, to work around the issue you either implement other "container" boxes, or use a *non-standard* css element mozilla provides: -moz-box-sizing: border-box. WTF? They support the standard for rendering, but can't support the standard "box-sizing" attibute for changing the rendering behavior?

      It's crap like this that makes folks like me that don't design high-profile cutting-edge sites everyday go back to the dark ages of table based layouts and crappy CSS hacks. My point is that CCS just isn't THERE yet. Blame microsoft if you want, but moz and other browsers have their share of CSS bugs, too. The best anyone can do TODAY is exploint rending hacks in various browsers.

      --
      Today I didn't even have to use my AK; I got to say it was a good day -- Icecube
    14. Re:Safari support by Anonymous Coward · · Score: 0

      KHTML (Konqueror version, don't know about Safari) supports XmlHttpRequest, but it still doesn't work in it.

    15. Re:Safari support by molnarcs · · Score: 2, Insightful
      No, you are talking about beta software. Safari support will be there, and what they do doesn't screw anyone. What do you have in mind when talking about "not exactly cross platform"? Not exactly cross browser would be more accurate, were it not for the fact that we are talking about beta software that promises support for all major browsers.

      This is nothing like MS not supporting png for instance, (or did not for a long time) forcing me to use crappy gif images for transparent logos and such. Therefore, MS screws me. It also screws many users, even without them noticing it. I have no problem with windows (I think it's not a bad desktop OS), I have a problem with the price tag, which is unrealistic IMHO. Part of the strategy of keeping that price tag is vendor lockin, which goes hand in hand with disregarding standards. GoogleMaps, a free service, supporting multiple browsers (and therefore: multiple platforms) is nothing like that. Who is exactly the victim of Google's practices?

    16. 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.

    17. Re:Safari support by Fulcrum+of+Evil · · Score: 1

      did you add the HTML strict (or whatever) declaration for IE? If you don't, it assumes that you want broken behavior.

      --
      "We returned the General to El Salvador, or maybe Guatemala, it's difficult to tell from 10,000 feet"
    18. Re:Safari support by sootman · · Score: 1

      I obviously don't know the specifics of your job, but you can safely ignore the "tables are evil" guys most of the time. Try to avoid them for page layout, sure, but for tabular data, they are fine (hence the name.) Even the most vehement CSS addict will admit that, eventually. Since most of what I put up on a page comes out of a database, tables are a quick-n-easy, and good, and proper way to do things.

      --
      Dear Slashdot: next time you want to mess with the site, add a rich-text editor for comments.
    19. Re:Safari support by babyrat · · Score: 1

      but it does suck that this isn't truly cross-platform.

      Does OSX support Firefox (or Firefox support OSX)? Google Maps works on my Firefox browser on XP.

    20. Re:Safari support by waynelorentz · · Score: 1

      I'm just waiting for all the faux cranky old men Slashdotters to come out of the woodwork and inform us all that "maps aren't what the internet is for" and preach that Google is bad because they can't view the maps in Lynx, so it's a violation of some 1970's edict they heard about when they were kids in the 90's.

    21. Re:Safari support by happypork · · Score: 2, Informative

      "Safari doesn't support XSLT."

      Fortunately, Dave Hyatt, one of the lead Safari developers, said in August that it's coming. http://weblogs.mozillazine.org/hyatt/archives/2004 _08.html/

    22. Re:Safari support by drsquare · · Score: 1

      HTML Strict/CSS/etc be damned. At the end of the day, what really matters to users is compelling apps that let them get their work done quickly.

      Funny, when most sites use non-standard html/css/javascript or flash etc., people criticise them for it, but when google do it, it's fine. This shameless google cock-sucking HAS to stop.

  8. Usage... by Avyakata · · Score: 1, Interesting

    I think another, non-technical, issue is popularity. Online maps are a good idea, but most people who find them useful are already accustomed to Mapquest. Is there anything groundbreaking enough with Google Maps to persuade them to switch?

    1. Re:Usage... by Twench · · Score: 3, Insightful

      Have you tried it out yet? I liked Mapquest but have begun finding their implementation clunky. This service is incredibly fast, incredibly accurate, incredibly versatile. The ability to drag the map around changing the center is fun and much more convenient then waiting for Mapquest to reload the page. The simple "find pizzas near my house" type search is incredible too. So, the answer to your question is yes. This app IS groundbreaking enough to persuade people to switch.

      --
      There are 10 kinds of people in the world: Those who understand binary and those who don't
    2. Re:Usage... by 9mind · · Score: 1
      I'm technical and Yes, I have switched... and all the non-technical users I have sent the link to... told them a few things to try... have switched.

      The overall consesus on 50 people I have sent it to... is WOW this is SWEET!

    3. Re:Usage... by Mercaptan · · Score: 1

      Did you not look closely at this? Check ut the tour http://www.google.com/help/maps/tour/!

      The whole push-pins on business search results thing is pretty cool (although they need to beef up their database a bit), as is the detailed view of each turn and curve in the driving directions. And the ability to use keyboard shortcuts to move and zoom are pure geek-o-licious.

      The things that really blew my hair back were the instant pop-up bubbles with detail information that appeared when you clicked on the individual business listings or the flag on the map.

      --
      -- "Sucks to your ass-mar"
    4. Re:Usage... by 787style · · Score: 2, Funny

      Groundbreaking? You obviously haven't tried it yet; I would consider this a bigger blow to Mapquest than them hiring Carly Fiorina as CEO.

    5. Re:Usage... by Anonymous Coward · · Score: 0

      i don't know about accurate. it's trying to tell me to make a left turn at an intersection i know you can't make a legal left turn at. this is probably the map vendors fault, but still questions the accuracy.

    6. Re:Usage... by Anonymous Coward · · Score: 0

      Certain links on maps.google.com send you to Mapquest. ;)

    7. Re:Usage... by Anonymous Coward · · Score: 0


      Mapquest has been the worst map provider for quite some time. They lost their lead long ago. Try any other map provider and you'll see, the data is bad and the interface is clunky. Even MSN Maps (based on Mapblast I believe) is many times better. I know, you're used to it, but its not the best.

  9. Quick review by G3ckoG33k · · Score: 0, Flamebait

    It's old news... I tested it two days ago, but the service is not good enough for my use. First, and above all, it does not give you coordinates. Second, Map24 is more complete and more detailed.

    1. Re:Quick review by iocat · · Score: 1

      A lot of google features are nice (the calculator) but not really a replacement for dedicated services. Personally I prefer Rand McNally maps, because they are hella up-to-date.

      --

      Dude, I think I can see my house from here.

    2. Re:Quick review by lindsay+rose · · Score: 2, Funny

      It's definitely still got some bugs! My school, Clarkson University, isn't on the map, and a neigboring school, SUNY Potsdam, is mislabled as Clarkson College. Clarkson College of Technology hasn't existed since the 1980s!

      --
      01001100 01101001 01101110 01100100 01110011 01100001 01111001
    3. Re:Quick review by Coneasfast · · Score: 1

      Second, Map24 is more complete and more detailed.

      let me elaborate, map24 has detailed canada maps, google has none and thus is not (or rarely) useful for us canadians.

      OTOH, map24 takes a little longer to load, and is a bit slower in panning around

      --
      Marge, get me your address book, 4 beers, and my conversation hat.
    4. Re:Quick review by Anonymous Coward · · Score: 1, Insightful

      Ick, Map24 could not have a more bloated layout. I'd rather use Maquest.

    5. Re:Quick review by DoorFrame · · Score: 2, Interesting

      Yuck, just tried map24 for the first time and was not happy with the EXTREME load times. I don't want to sit around while silly java applets load up. Also, it didn't actually pinpoint my home address, just gave me the street. Google maps is better.

    6. Re:Quick review by Proney · · Score: 2, Interesting

      While on the continent view in google maps Canada isn't marked at all, but if you zoom in on it the streets are just as finely marked as their American counterparts. The directions functionality also works just fine with Canadian addresses, although it did choke a little coming up with directions from my native Toronto to my current Seattle... ;)

      --
      require "something.clever";
    7. Re:Quick review by lucabrasi999 · · Score: 1
      the EXTREME load times

      In the OP's defense, I think map24 has just been slashdotted...

    8. Re:Quick review by jaguar5150 · · Score: 1

      Yes, Complete-ly able to crash my FF browser up on load. Perhaps this isn't the fault of Map24, and moreso the problem of my JRE. This brings up another point, though, since this is Java enabled, I would think that there would be JRE version problems?

    9. Re:Quick review by jaguar5150 · · Score: 1

      Good point!

    10. Re:Quick review by geoffspear · · Score: 1
      Only if by "none" you mean "enough to show detail of the cities where about 1/3 of the population lives."

      British Columbia, Ontario, and Quebec all seem to have maps as detailed in the maximum zoom as US cities. Winnipeg also has street-level detail. Oddly, Edmonton and Calgary don't. But it's still a beta.

      --
      Don't blame me; I'm never given mod points.
    11. Re:Quick review by Anonymous Coward · · Score: 1, Interesting

      Sorry, map24 is nonsense. A poor interface and poor quality data - even for canada. It looks like a front-end to an ESRI ArcIMS server - and from my dev experience with it, I know that that technology is a beastly dinosaur. Google's solution is more elegant and effective - AND, from what I can see (as a Canadian) hosts more accurate maps.

    12. Re:Quick review by athakur999 · · Score: 1

      Google Maps can't find my street address for some reason. I put it and Google shows my complete address and zip code but just shows a blank map. If I use a nearby intersection though, that map shows up and I can pan over to where I am. Map24 doesn't have this problem. Google Maps is definately faster for me though.

      Map24 has a neat distance measuring thingy where you can measure the distance between two points by clicking between arbitrary waypoints. Google Maps doesn't seem to have this. Hopefully they'll implement something like this soon though.

      --
      "People that quote themselves in their signatures bother me" - athakur999
    13. Re:Quick review by worst_name_ever · · Score: 1
      For applications like this, it's important to differentiate between problems in the software and problems in the map data. I design firmware for GPS devices for a living, and we're constantly getting "bug reports" about things that are missing/outdated/incorrect in our map data. The problem is that no (or at least very few) GPS manufacturers or onling mapping providers actually create their own map data content; we just create the hardware and software that renders and lets you interact with map data (which is a heap of work in itself) but pretty much everyone licenses the same raw data from the same commercial source. So, every application that uses that data will exhibit the same errors in the original source material.

      In some cases I believe that there are even contractural obligations that prevent the licensee from doing anything other than presenting the data as it's received from the vendor, so even if a company had the resources to answer every user complaint about the data (which they don't) they can't make changes to it anyway. It's a frustrating arrangement.

      Disclaimer: The above applies only to road mapping data for the U.S. - Data for other countries or applications (aviation, boating, etc.) comes from different governmental and commercial sources, depending on the provider.

      --

      In Soviet Rush, today's Tom Sawyer gets high on you.
    14. Re:Quick review by OverlordQ · · Score: 1

      It doesn't outlike Rivers very well either.

      Take Great Bend, KS for example. Named for being situated at the side of the great South Easterly turn of the Arkansas River. Looking at the Google Map . . . now where's the river?

      --
      Your hair look like poop, Bob! - Wanker.
    15. Re:Quick review by Anonymous Coward · · Score: 0

      Maybe more detailed, but not more accurate. Map24 thinks the Willow Grove Joint Reserve Base in Horsham PA and the Naval Air Development Center (now defunct and being converted for private use) several miles away in Warminster have magically become one entity called the "Willow Grove Naval Air Center", located in Warminster.

    16. Re:Quick review by NoMoreNicksLeft · · Score: 2, Funny

      I find it difficult to believe anything is better or more accurate. It has my grandfather's indiana driveway in it... I about sprayed mtndew all over my new laptop when I saw that.

    17. Re:Quick review by christiangosselin · · Score: 1

      I'm often using ca.maps.yahoo.com whenever I need detailed maps or driving directions and so far I haven't been impressed by google service. It just couldn't find most of the locations (in montreal city) I'm usually looking for. On the counterpart it still in beta mode so hopefully we'll see improvement soon.

    18. Re:Quick review by VoiceOfRaisin · · Score: 1

      why is it that every piece of mapping software i try that has a "avoid highways" feature NEVER work? i want to ride my bicycle to places, i dont want to ride on highways. why is this feature there when it never works?

    19. Re:Quick review by Hack'n'Slash · · Score: 1

      Actually, Navteq appears to have a form you can use to submit errors in the map data:

      http://update.navteq.com/

      (Probably outsourced to India.) :)

    20. Re:Quick review by PIBM · · Score: 1

      have you tried using it for anywhere else than the US ?

      At least GMaps, as a beta, already have a very good quality representation of Canada :)

    21. Re:Quick review by iocat · · Score: 1
      There are places outside the US? You mean, other than those places we bomb, or Cancun? I don't understand...

      Good point. When I travel over the border though, I usually prepare by having a printed map. Besides, Canadians are so friendly you can just ask directions.

      --

      Dude, I think I can see my house from here.

  10. 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 DataPath · · Score: 1

      Ok... that's just spooky.

      --
      Inconceivable!
    2. Re:Whoa! by JerkBoB · · Score: 1

      Find: insufferable whiners in Washington, DC

      Damn! And I just lost my mod points. That is funny stuff, man.

      --
      A host is a host from coast to coast...
      Unless it's down, or slow, or fails to POST!
    3. Re:Whoa! by meringuoid · · Score: 3, Funny
      insufferable whiners

      That's just beautiful. It also works wonderfully well with the old Slashdot favourite, 'miserable failures'.

      --
      Real Daleks don't climb stairs - they level the building.
    4. Re:Whoa! by jaguar5150 · · Score: 1

      Check the first result under:

      free money in Las Vegas

    5. Re:Whoa! by Gob+Blesh+It · · Score: 1

      Don't forget Beleaguered in Cupertino. :)

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

      And of course, try this:

      litigious bastards in salt lake city

      One hit. Guess who...

    7. Re:Whoa! by Kraemahz · · Score: 1

      Not to mention
      Satan in Washington, DC (B) and
      Antichrist in Washinton, DC
      They're both there I guess.

    8. Re:Whoa! by MosesJones · · Score: 1


      "Expensive crap in New York" Well worth a look.

      This is a flaw with Google Maps, we can't paste the URL!

      --
      An Eye for an Eye will make the whole world blind - Gandhi
    9. Re:Whoa! by kajoob · · Score: 3, Funny

      you might be on to something...

      "liberal wacko in Washington, DC" comes up with CNN, PBS, and the Washington Post. Spot on!

      --
      Quidquid latine dictum sit, altum viditur
    10. Re:Whoa! by arkanes · · Score: 1

      That's fantastic... and check the URL in the ballon popup over it.

    11. Re:Whoa! by Anonymous Coward · · Score: 0

      try "liberal elites in Washington, DC". I guess they go both ways...

    12. Re:Whoa! by theancient2 · · Score: 1

      There is a "link to this page" link in the upper-right corner of the results screen. You can grab the page link from that.

    13. Re:Whoa! by Anonymous Coward · · Score: 0

      Try "liars in Washington, DC"

      Hello, George.

      Now *that's* funny.

    14. Re:Whoa! by Anonymous Coward · · Score: 0

      Uh, check the sidebar on the map... there's a link that says "Link to this map". Copy it's location...

    15. Re:Whoa! by Peyna · · Score: 1

      The amusing thing about the other phrases used is that they don't contain a direct identifying phrase like "liberal." Instead they use seemingly generic adjectives to achieve an (unexpected) and amusing result.

      --
      What?
    16. Re:Whoa! by Peyna · · Score: 1

      Try "conservative elites in Washington, DC" and you get almost identical results. What's your point?

      --
      What?
    17. Re:Whoa! by ozbird · · Score: 1

      That's fine if you're familiar with US cities, but I couldn't find the bastards:
      "litigious bastards" returned "Your search - litigious bastards - did not match any locations."
      "litigious bastards in utah" returned "We could not understand the location utah."

    18. Re:Whoa! by Anonymous Coward · · Score: 0

      Heh. Try searching for "insufferable assholes in Washington, DC".

      One result. Hello, RIAA!

    19. Re:Whoa! by Jonavin · · Score: 1

      Nice find. Where are my mod points when I need it.

      Surprisingly, "litigious bastards in New York" has no hits.

    20. Re:Whoa! by bushidocoder · · Score: 1

      My favorite part about that search is that if you click on the "Recording Industry Association of America" response, the URL is shows as their website is "http://boycott-riaa.com"

    21. Re:Whoa! by nandhp · · Score: 1

      It also works wonderfully well with the old Slashdot favourite, 'miserable failures'. Yes, but who is Aquino John Esquire and why is *he* the #1 miserable failure?

    22. Re:Whoa! by Anonymous Coward · · Score: 0

      Well it makes sense he's first, but only 10 results for "liars in Washington DC"? That thing needs some fine tuning...

    23. Re:Whoa! by Anonymous Coward · · Score: 0

      you must be a lot of fun at parties

    24. Re:Whoa! by daveschroeder · · Score: 1

      I think the point is: what's the fucking point of these lame searches at all?

      It's just melding its conventional search results - especially from the myriad articles on leftist blogs - into the map search.

      So you search for "evil liars in Washionton, DC" and Bush comes back! Yay! OMG, let's post to slashdot about at all day long and laugh and pat each other on the back about how clever we are! Better include "Santorum", too!

      The point is that it proves nothing except that the insufferable whining bloggers with too much time on their hands can pack search results with mis- and dis-information, and that their unfortunate impact on the internet at large has overflowed into an otherwise useful service (aka Google Maps).

      *That* is the point.

    25. Re:Whoa! by Anonymous Coward · · Score: 0

      Apparently that is all that matters. At least, if one were to observe the current climate of higher education they might come to such a conclusion. We don't care if you're able to use logic and reason solve problems, so long as your are fun at parties, well gosh darnit, you're gonna be okay.

    26. Re:Whoa! by Baloo+Ursidae · · Score: 1

      Umm, PBS is neutral (they piss off hardcore progressives as badly as hardcore conservatives), CNN is conservative (ted turner owns it, he's conservative, there's no reason for them to cover anything that isn't far right of the middle). And Washington Post is cheap, effective toilet paper and not a real journal of review. Go read the Portland Tribune.

      --
      Help us build a better map!
    27. Re:Whoa! by Anonymous Coward · · Score: 0

      Interestingly Google maps can find the "iPod Maker in Cupertino" but has no clue about the "Evil Empire in Redmond".

    28. Re:Whoa! by cashman73 · · Score: 1
      Searching for, "rich overpaid dorks in washington, dc" also leads you to the Recording Industry Association of America. I guess we know what google really thinks of the RIAA,... ;-)


    29. Re:Whoa! by Anonymous Coward · · Score: 0

      CNN is conservative (ted turner owns it, he's conservative, there's no reason for them to cover anything that isn't far right of the middle)

      You could use that bit of reasoning for any company. I've sen people try to say that MTV must be conservative because one of the higher-ups is a staunch Republican, and that's obviously a bunch of crap. You simply can't point to one individual in a company and use him/her to conclude that the company's message is conservative or liberal. No, not even the owner or the CEO.

    30. Re:Whoa! by Baloo+Ursidae · · Score: 1
      You simply can't point to one individual in a company and use him/her to conclude that the company's message is conservative or liberal. No, not even the owner or the CEO.

      So it's just a coincidence CNN only tells the conservative side of the story, avoids anything left of center, opting to fill it in with live music and soft-news bullshit, right?

      --
      Help us build a better map!
    31. Re:Whoa! by macshit · · Score: 1

      And unfortunately we can't forget:

      insecure buggy software in redmond

      --
      We live, as we dream -- alone....
  11. keyhole by Adrilla · · Score: 1

    When will we see this merged with Keyhole, they're just begging to be smashed together.

    --

    "Plans are for fools! Oglethorpe, the plutonian (Aqua Teen Hunger Force)
  12. No trying to troll but is safari ever better? by Mustang+Matt · · Score: 1

    I'm not a mac user but I do know that on my linux boxes I always choose firefox over konquerer.

    Is there anything that safari does better than firefox?

    Are users simply using safari because it ships on their mac?

    --
    The man who trades freedom for security does not deserve nor will he ever receive either. - Benjamin Franklin
    1. Re:No trying to troll but is safari ever better? by carlossch · · Score: 1

      Are users simply using safari because it ships on their mac?

      Are users simply using IE because it ships on their Windows boxes?

    2. Re:No trying to troll but is safari ever better? by Quattro+Vezina · · Score: 1

      Well, I don't know much about Safari specifically, but KHTML is a kickass HTML renderer. Konqueror feels so much more responsive than Firefox, and I think it's just down to KHTML being lighter and faster.

      There are only two reasons why I still use Firefox:

      1) Konqueror's JavaScript engine blows. It's great for HTML, but not JS. I believe Safari has a better JS engine, but it's not been backported to Konqueror yet.

      2) I like AdBlock too much to give it up. I've tried Privoxy, but it tends to slow things down.

      --
      I support the Center for Consumer Freedom
    3. Re:No trying to troll but is safari ever better? by bsharitt · · Score: 1

      Is there anything that safari does better than firefox?

      Safari fits in better. Firefox sticks out like a sore thumb. It doesn't integrate with thing like the system wide spell checker for text boxes. It's just a bunch of little things that end up making it feel very out of place. Firefox 1.1 is supposed to fix some o the integration problems, and 2.0 should feel pretty native.

    4. Re:No trying to troll but is safari ever better? by generic-man · · Score: 1

      Camino is better than both.

      It lacks the "Mozilla in Mac OS X clothing" look of Firefox, instead using Cocoa for the front-end and Gecko for rendering. The resultant program is fast, good-looking, and feels like a native application instead of a XUL executable.

      Even though it's only at 0.8b (thus putting it at the same code maturity level as most Google services) it has become my default browser in OS X.

      The only caveat is that it doesn't support any of the fancy extensions that Firefox does, but I'd rather look at ads than at Firefox for Mac.

      --
      For more information, click here.
    5. Re:No trying to troll but is safari ever better? by LWATCDR · · Score: 1

      "Well, I don't know much about Safari specifically, but KHTML is a kickass HTML renderer. Konqueror feels so much more responsive than Firefox, and I think it's just down to KHTML being lighter and faster."
      Actually Gecko is pretty fast and light. Firefox feels slow because of the XUL framework. I think there is even a hack to get Konqueror to use Gecko.

      --
      See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
    6. Re:No trying to troll but is safari ever better? by 99BottlesOfBeerInMyF · · Score: 1

      Is there anything that safari does better than firefox?

      Yes. Safari has a few nice features that have not been pulled into Firefox, as far as I know. The page snap-back feature is one. It simplifies backing out of a series of links, to main index page. On Slashdot, it will take you back to the main article, or the main page depending upon how it is used. It is a bit hard to explain, but it is nice. Firefox also falls down on support for system services. It supports some services, but for some reason my spell checking, grammar checking, and online dictionary services all fail to work in it. They function just fine in Safari and most other applications. I have not checked but they may work in the "Camino" Firefox fork. Aside from that, it is just a matter of preference. Firefox uses more memory per page, but seems to use less CPU time. Both are good browsers and each has pages that it renders better than the other.

    7. Re:No trying to troll but is safari ever better? by Gob+Blesh+It · · Score: 1

      Have you tried PithHelmet for adblocking in Safari? I don't use it myself, but I've heard it's fast and effective.

      I'll also add that in terms of interface, Firefox is ugly everywhere Safari is beautiful. Opening Firefox reminds me of the travesty that was Word 6.0 for Mac.

    8. Re:No trying to troll but is safari ever better? by arkanes · · Score: 1

      Gecko is tied very tightly to XUL. If anyone has managed to bind Gecko to anything without an XUL layer for that platform, I'd be really interested in hearing about it. Gecko is also dependent on XPCOM, which is it's own brand of heavy weight. KHTML is quite a bit smaller and faster than Gecko. However, it's not the sort of thing you'd see in the applications. I agree that Firefox vs Safari speed differences are probably due to XUL.

    9. Re:No trying to troll but is safari ever better? by LWATCDR · · Score: 1

      Look at Epiphany and Kmeleon. They are both lightweight browsers based on Gecko with native widgets.
      I would use Kmeleon except it lacks a spell checker.

      --
      See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
    10. Re:No trying to troll but is safari ever better? by arkanes · · Score: 1

      Kmeleon still relies on XUL (just take a look in it's application directory), it simply modifies XUL to generate native widgets. Although I'm actually not too sure of that anymore, the recent version of Kmeleon I looked at did *not* use native menus or toolbars. I'm not aware of any project that manages to totally divorce Gecko from XUL, although I'll take a look at Epiphany.

  13. Maybe "v" is the version number (.1 for the beta) by Rescate · · Score: 1

    From the article:

    Each tile URL is of the following form:
    http://mt.google.com/mt?v=.1&x={x tile index}&{y tile index}=2&zoom={zoom level}
    I'm not sure what the 'v' argument specifies, but it never seems to change.


    Maybe "v" is the version number, which is why it never changes. Version .1 makes sense for a beta.

  14. 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.
    1. Re:Scrolling only partially works by pranay · · Score: 0

      use bigger paper.

    2. Re:Scrolling only partially works by 955301 · · Score: 1


      And cup your hands beside your head. You should be able to scroll again.

      --
      You are checking your backups, aren't you?
    3. Re:Scrolling only partially works by m50d · · Score: 1

      Well, in konqueror I can't see any map at all, unfortunately. So no use to me for the time being.

      --
      I am trolling
    4. Re:Scrolling only partially works by heyitsme · · Score: 1, Informative

      SEXTON! Er, I mean Saxton!

      Whats up man? Haven't talked to you in a while and saw this /. post... good stuff :)

    5. Re:Scrolling only partially works by The+Cisco+Kid · · Score: 3, Insightful

      As funny as this may be, it *would* be very handy if they supported a way of first printing the textual directions, and then using their interface to select and zoom views of discrete chunks of the 'directions', and then being able to cleanly print each view that you select (just the map, not the text again each time)

    6. Re:Scrolling only partially works by mobby_6kl · · Score: 1

      I can confirm this, it doesn't work with DeskJet 880c and KonicaMinolta 1300W, no soulution so far :(

    7. Re:Scrolling only partially works by Mr.+Sketch · · Score: 1

      It sounds like your printer is defective. You need a GPrinter with official GInk and GPaper.

    8. Re:Scrolling only partially works by djward · · Score: 1

      It was working in Lynx the other day, but they seem to have broken it since then.

    9. Re:Scrolling only partially works by hobo2k · · Score: 1

      This seems to be a common limitation of modern printers. It works very well with older printing tech. They just don't make 'em like they used to.

  15. Google Search Results by prakslash · · Score: 2, Interesting

    For some reason, if one enters an address in Google Search to find a location on a map, the resulting search results still point to MapQuest and Yahoo!Maps. (See example)

    They need to update that.

    1. Re:Google Search Results by Haydn+Fenton · · Score: 1

      Google Maps is still in beta, it probably won't show up till at least they're fully finished with it.

    2. Re:Google Search Results by Country_hacker · · Score: 1

      I'm guessing that'll be changed as soon as it's out of beta stage.

      --
      Never give any object more potential energy than you want it to have.
    3. Re:Google Search Results by Anonymous Coward · · Score: 0
      Please, do yourself a favor and relax. This is just a beta meaning you shouldn't expect it to be ready for general consumption.

      They need to update that.

      I'm willing to bet a fair amount that they knew that from the onset. what do you think?

    4. Re:Google Search Results by uberdave · · Score: 1
      Well, two things:
      1. Google maps is still beta, ie. not released for genera use yet.
      2. Google searches usually present the most popular link first. Google maps has not had a chance to become popular yet.
  16. let me know by Anonymous Coward · · Score: 1, Informative

    when you have something as good as this.

    1. Re:let me know by halligas · · Score: 1

      A painfully slow loading java app. Loved it.

  17. No graphics by smooth+wombat · · Score: 1

    Too bad the graphics don't appear on that page when using Firefox. I checked the code and the page uses ' rather than " when coded for the image src. For example:

    <img src='http://innuvo.com/users/joel/map.gif'>

    Maybe that's the way XHTML is supposed to be but since I'm not one who does web design for a living I don't know.

    --
    We will bankrupt ourselves in the vain search for absolute security. -- Dwight D. Eisenhower
    1. Re:No graphics by STrinity · · Score: 2, Funny

      The images don't show up in Lynx either! The bastards.

      --
      Les Miserables Volume 1 now up with my reading of
  18. new Google browser (alpha) is intriguing by peter303 · · Score: 2, Interesting

    I'm hoping they decide to ship it. There are several very inventive features. And solves some of the issues mentioned in this thread.

  19. I like it! by __aammuz5019 · · Score: 1, Interesting
    Hello all,

    I am going on travel this afternoon and I had already printed out my maps and directions from "another service (MapQuest).


    Today, I did the same using Google Maps, and I found the interface much easier to use, the maps pretty good and the driving directions less complex and easier to read than the ones I usually get from other services.


    I say "pretty good" on the maps, because of two things: First, several of the maps had slight discontinuities when I printed them, versus the way they looked on screen. At the left edge, there was a vertical seam where the map pieces were shifted with respect to each other. Not a big deal, as this had no great effect, but has anyone else seen this? Second, the shadows from the "start" and "end" push pins obscured some of the map information and blobbed the end of the route a bit. Does anyone know how to turn off the shadows?


    Just my experience, YMMV.


    smp
  20. I still miss the aerial photos that Mapquest had.. by Gadgetfreak · · Score: 1

    but now those are gone, too. I have to use Whirlwind, which doesn't do directions.

    It was nice to map a location, and then check the aerial photo so you had an idea what the location looked like other than just the street.
    Despite not having top notch resolution, it made finding parking lots, street entrances, and buildings quite a bit easier. Not to mention, things like public access boat launches for my kayak.

    It's the icing on the cake, really. I hope the Google Maps folks realize that, and consider a future feature implementation.

    --
    "No fair, you changed the outcome by measuring it!" - Professor Hubert J. Farnsworth
  21. Nice as a video game engine by 192939495969798999 · · Score: 3, Interesting

    I'd like to see a MMORPG ported for this, like a web-enabled version of ultima 1 that shows where everyone's looking, and we can all interact. How awesome would that be? Totally.

    --
    stuff |
  22. crash ... by jasonsfa98 · · Score: 1

    It crashes my Firefox (1.0) everytime I try to map out directions from A to B.

  23. I'll consider using it... by stomv · · Score: 1

    ... when it figures out where I live. Mapquest knows. map24 knows. Google doesn't... and so it doesn't (yet) pass the simplest smell test for my nose.

    I look forward to it getting better.

    1. Re:I'll consider using it... by AceCaseOR · · Score: 1

      Well, where do you live? I plugged my address in, and not only did it find where I live, but that also that my street doesn't go all the way through (there's a some road, a big bunch of trees that you have to go through two intersections for.) I also really dig the little balloon thing that comes up when you click on a particular direction (turn right onto 5th St or whatever). I'm definately going to start using Google Maps over Mapquest.

      --
      Zagreus sits inside your head, Zagreus lives among the dead, Zagreus sees you in your bed and eats you in your sleep.
    2. Re:I'll consider using it... by James+Ojaste · · Score: 1

      I just checked map24 and google with my work address. It's a bit of a tough test, since the city name has changed in the past couple of years, people use two different acronyms for the province, and the postal code is a government-wide one, so no help there.

      Neither found it on the first pass. With a bit of fiddling, I got google to find it (oddly enough, I had to use the old city name to find it, but google displayed it with the new city name). Map24 still has no idea what I was asking for.

      Not to mention that trying different searches with map24 was a real pain - the UI jumps all over the place while the page loads.

    3. Re:I'll consider using it... by ccwaterz · · Score: 1

      My litmus test is an address on a dirt road in upstate ny. Yahoo and Mapquest find it. MSN can't find the specific address but finds the road.

      Google can't find it at all, but the road is correctly labelled if you zoom in on it.

  24. Google not promoting their own map app? by danielcole · · Score: 2, Interesting

    Do a phone number or address search from the main page, and Google suggests you can look at Yahoo! Maps, and MapQuest for directions, but not their own service.

    1. Re:Google not promoting their own map app? by sunrein · · Score: 1

      It's still in beta. They'll probably dump those services once their service leaves beta.

  25. Endless pursuit by Tmack · · Score: 2, Informative
    Kinda like what Endless Pursuit has done? You upload you waypoints/tracks, it overlays them on a topo you view from your browser. Dont think it needs any plugins, as the overlay is done by the server and is output as a normal image.

    I once had an idea of doing this, and might eventually get around to finishing it. I just dont have the map library to do the overlay. All I could do is draw the tracks. Image librarys (like gd) make drawing the tracks easy, and overlaying just as simple. Getting a library of map images that would allow you to use it for this sort of thing would be the hard part.

    tm

    --
    Support TBI Research: http://www.raisinhope.org
    1. Re:Endless pursuit by Tmack · · Score: 1

      ack! meant to reply to a post, not reply to the headline. bleh....

      --
      Support TBI Research: http://www.raisinhope.org
  26. 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?

  27. A stir? by stimpleton · · Score: 0, Troll

    "Google Maps is starting to cause a bit of a stir"

    Really? With US residents only presumably.

    In the absence of international support, the only "stir" I get is what I'm doing with my coffee at the moment.

    --

    In post Patriot Act America, the library books scan you.
    1. Re:A stir? by Anonymous Coward · · Score: 0

      How very perceptive of you. Your powers of deduction are mind-boggling.

    2. Re:A stir? by csimicah · · Score: 1

      Great! We were all *just* wondering whether you, personally, were part of abovementioned stir.

    3. Re:A stir? by Anonymous Coward · · Score: 0

      It works for Canadian locations too, thanks.

    4. Re:A stir? by EpsCylonB · · Score: 1

      I love that daily show line...

      Occasionally newsworthy events happen elsewhere in the world, and periodically we care.

    5. Re:A stir? by Anonymous Coward · · Score: 0

      Who else matters?

    6. Re:A stir? by syrinx · · Score: 1

      US residents only

      Oh, did Canada finally get annexed? I'll be looking forward to some good beer, then.

      --
      Quidquid latine dictum sit, altum sonatur.
    7. Re:A stir? by Frostalicious · · Score: 1

      In the absence of international support, the only "stir" I get is what I'm doing with my coffee at the moment.

      I searched for "Vancouver BC" and it correctly located me in Canada. Try that with mapquest, and it thinks I live somewhere in Kansas!

  28. MOD PARENT UP! by Anonymous Coward · · Score: 1, Informative
    COMEDY GOLD!

    • National Republican Congress (202) 479-7000 - 1.8 mi E
    • Recording Industry Association of America (202) 775-0101 - 0.9 mi N
    • Olsson's Books & Records: Books (301) 652-3336 - 7.1 mi NW
    • Little Theatre of Alexandria (703) 683-0496 - 6.5 mi S
    • Wwlg-Am-Legends 1360: Business Office (410) 580-6800 - 37 mi NE
    • Wjfk (703) 691-1900 - 15 mi W
    • Studley Julien J Inc (703) 442-0145 - 10 mi W
  29. pretty accurate by blew_fantom · · Score: 1

    on a recent trip, i used mapquest, yahoo maps, and other sites to get some directions to places i need to go. needless to say, the directions were not very clear and i'd get lost most of the time... in hindsight of course, the directions given to the same places by google maps seem more "accurate" to me since i actually know where those places are now... but i've put in some locations i know very well, and google maps is actually pretty darn accurate, providing the easiest route possible with easy to follow directions. of course, that could just be the locations i've queried, but, nevertheless, google maps seems to be headed in the right direction.

  30. Who needs maps?!?! by Anonymous Coward · · Score: 0

    Psffft....Maps are for people who get lost...

  31. xml & xslt & css & javascript by smooc · · Score: 1

    Although not a mpping service, I have made something like it (with the map) here. It uses a xml, xslt combination

    http://www.xs4all.nl/~bolke/index.xml

    works best with mozilla, ie works too but the browser has too many bugs

    --
    - In Memoriam: Jeroen de Bruin (1972-2004), bye bro
  32. 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.

    1. Re:What WOULD you call Google's approach? by Anonymous Coward · · Score: 0

      > It isn't really "search."

      I've been very impressed by it as a search engine. I live in Rochester, New York. I got a map of the area, typed in "sushi" and found two places in town that I didn't know even offered sushi.

      It's search in the sense that once you have the map on a geographic area, your searches are scoped by what you're viewing. This integration of mapping (to set context) and location-based searching (to specify what you want) is brilliant.

    2. Re:What WOULD you call Google's approach? by Bleeblah · · Score: 2, Informative

      Google's traditional search features could almost run on Lynx on a green screen. Maybe they can

      Google looks great in Lynx.

    3. Re:What WOULD you call Google's approach? by _xeno_ · · Score: 1

      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.

      Yeah, some of the answers are funny. I did a search for "anime" near my house, and discovered (as I basically already knew) that the closest places are in Boston. (And, no, that's not my house in the center. I actually panned and zoomed there 'cause I was playing with the map first.)

      The fact that WPI, a college in Worcester, came back twice (once for an article on a parking ban as "Worcester City Of: Streets" and once for their Science Fiction Society as WPI: Massachusetts Academy) is kind of... freaky.

      --
      You are in a maze of twisty little relative jumps, all alike.
    4. Re:What WOULD you call Google's approach? by hey! · · Score: 1

      I think of it like those chess playing programs. Yes, it's just another program composed of algorithms, but there's a smart and motivated team that is continually tweaking the system.

      It would be interesting to chararcterize the development model they use.

      --
      Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
    5. Re:What WOULD you call Google's approach? by arbitraryaardvark · · Score: 1

      If they would/could integrate the map with the web sites that originate from points on the map, it would be something like the multiverse in snow crash.

  33. 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.
  34. 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
    1. Re:Where this is going... by Larry+Lightbulb · · Score: 1

      Advertising for the places you would go by has to be the next feature of it [well, if they want to make money from it] - perhaps their usual style, or icons on the map. Having gas stations would be so useful.

    2. Re:Where this is going... by HeighYew · · Score: 1

      Right!

      Cities along your route could even pay a small fee to link to their "visitors brochure" web pages from the results page. So, when you look up a travel route, you could then click on the brochure links to see what attractions may be on the way to your final destination.

      Once again, Genius from Google!

      --
      There are 10 kinds of people in the world, those who understand binary and those who don't...what about the other 8?
    3. Re:Where this is going... by afidel · · Score: 1

      Holly crap thats a good idea! I'm planning a trip from northest Ohio to Yellowstone late this summer and such a feature would absolutly rock. Even with AAA Triptiks (tm) it can still be a bit of a pain to plan such trips, a Google Maps feature that could plan the whole thing including bathroom stops and food stops would be VERY cool.

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order. Starting now.
    4. Re:Where this is going... by Lord_Dweomer · · Score: 1
      Well, I for one have always fantasized about a wearable computer that I could search for things with and it would display those locations as bright pillars of light that would only be visable through the glasses. I think Google will be ready for that.

      On another note, I have to say that this was the first time I tried Google Maps, and holy crap, I will never touch Mapquest EVER again.

      Few things on the internet have blown me away like this has. Not only is it one of the most intuitive things I've ever seen, it just WORKS. And nowhere near as cluttered as Mapquest.

      --
      Buy Steampunk Clothing Online!
    5. Re:Where this is going... by dustinbarbour · · Score: 1

      It seems to me that they haven't linked Maps with local yet. Google Local still has comparatively crappy maps and I didn't find a link to the address over at maps.google.com. Yes.. I know its still a beta and eagerly await the merging of the two.

    6. Re:Where this is going... by illumin8 · · Score: 1

      It already makes Local Search a lot more handy.

      And yet, for some reason, http://local.google.com isn't using the same maps. They are still using the same old tired ones they were using months ago when they launched the local service. I've got to hand it to Google, this new maps service is the best one by far, but what they really need to do is merge the two or else they will dilute each other's brand awareness.
      [/marketroid]

      --
      "When the president does it, that means it's not illegal." - Richard M. Nixon
    7. Re:Where this is going... by cft_128 · · Score: 1
      a Google Maps feature that could plan the whole thing including bathroom stops and food stops

      Man, Google knows everything, even when I will have to go to the bathroom!

      Well, to be honest I know that for my girlfriend too: about every three minutes.

      --

      Underloved Movies and Pub Quiz: donotquestionme.org

  35. Re:I still miss the aerial photos that Mapquest ha by MrP-(at+work) · · Score: 1

    Remember, google purchased keyhole

    so that will probably happen eventually

    --
    [an error occurred while processing this directive]
  36. It's just an expression.. by JPelorat · · Score: 3, Informative

    A metaphor for accomplishing a difficult or complex task that the object or system generally wasn't thought of as capable of doing.

    Settle down, Beavis.

    --
    Hokey statistics and ancient misconceptions are no match for a good thought in your head, kid!
    1. Re:It's just an expression.. by Anonymous Coward · · Score: 0

      It's not that complicated. People tend to think that browsers are very limited programming environments, probably because most web "programmers" barely master enough Javascript to move a div around and hide and show stuff. Javascript is a full featured prototype based object oriented language and the programmer has a very high level rendering engine at his disposal. There's no reason (except browser deficiencies regarding implementation of the standards) why programming powerful user interfaces shouldn't be possible in a browser. It's not that hard, but of course you'll need a little more Javascript than your average web monkey can handle. Put a real programmer on it and you'll get stuff like Google Maps in no time.

    2. Re:It's just an expression.. by JPelorat · · Score: 2

      'Complicated' is relative.

      --
      Hokey statistics and ancient misconceptions are no match for a good thought in your head, kid!
  37. Safari javascript is based on KDE's kjs library by Anonymous Coward · · Score: 2, Informative

    And there are subtle incompatabilities between Mozilla/Firefox's javascript, IE's jscript and KDE's kjs.

  38. Slick, but Wrong by Madcapjack · · Score: 1

    Google's maps has a very slick interface. I like it. ONLY the name of the street I live on is WRONG in the map. My street is Lincoln, and its says Dodge Road. I know that I'm not looking at the wrong location, my location is easily identifiable and the other streets nearbye are correctly named, and when I do a search for my address it goes directly to Dodge Street. (maybe Google knows something I don't?)

    1. Re:Slick, but Wrong by AceCaseOR · · Score: 1

      What street is your mailbox on?

      --
      Zagreus sits inside your head, Zagreus lives among the dead, Zagreus sees you in your bed and eats you in your sleep.
    2. Re:Slick, but Wrong by jimwelch · · Score: 1

      Typical errors for a map app (does that rhyme)?

      The local pizza place (homerun) is located downtown according to google, 3 miles west of its real location. Somehow they got an address that they can't fantom, so they default to downtown instead of an error message!

      The address comes up as "Eastland Shopping Ce" instead of "500 SE Washington Boulevard" which is where switchboard returns, which google links to, right on the ballon!
      http://maps.google.com/maps?q=%22Home%20run%20pizz a%22%20in%20Bartlesville%2C%20OK

      --
      Never trust a man wearing a coat and tie!
    3. Re:Slick, but Wrong by Madcapjack · · Score: 1
      What street is your mailbox on?

      My mailbox is on Lincoln. there has never been to the best of my knowledge any road nearby named Dodge.

      Some here have suggested that errors are introduced for copywrite protection (a rather crude way of doing it, don't you think?). I actually think it was probably an error.

  39. like Endless Pursuit? by Tmack · · Score: 1
    Kinda like what Endless Pursuit has done? You upload you waypoints/tracks, it overlays them on a topo you view from your browser. Dont think it needs any plugins, as the overlay is done by the server and is output as a normal image.

    I once had an idea of doing this, and might eventually get around to finishing it. I just dont have the map library to do the overlay. All I could do is draw the tracks. Image librarys (like gd) make drawing the tracks easy, and overlaying just as simple. Getting a library of map images that would allow you to use it for this sort of thing would be the hard part.

    tm

    --
    Support TBI Research: http://www.raisinhope.org
  40. "I'm not sure what the 'v' argument specifies, but by way2trivial · · Score: 0, Troll
    I'm not sure what the 'v' argument specifies, but it never seems to change

    how hard is it to just make a BS page locally that changes the v variable to a few different results, and looking for the difference?

    --
    every day http://en.wikipedia.org/wiki/Special:Random
  41. Re:link is devoid of any useful content... by TheGavster · · Score: 1

    Um ... the blog entry is comparing the differences in the way the page is programmed, not the layout/appearance. It is interesting that they chose a completely different technique when programming Maps than GMail.

    --
    "Because Science" is one step from "Because old book". Try "Because of my experiment testing my falsifiable assertion".
  42. Why Safari is NOT supported by joestump98 · · Score: 2, Informative

    It doesn't support iframes and (as the article clearly states) iframes are a big part of how this application works.

    --
    "How would this sentence be different if pi equaled 3?"
    1. Re:Why Safari is NOT supported by LakeSolon · · Score: 1

      Well you read the article, but apparently you haven't used Safari much. It most certainly does support iframes. Even the one on google maps.

      ~Lake

  43. Tried the drag functionality... by Sime208 · · Score: 1

    ...but couldn't go very far until I ran out of map. Typical of America to think the world begins and ends there ;-) Where's the rest of the world gone!

  44. Can't get thar from hyar. by Doc+Ruby · · Score: 1

    I took Google Maps up on its offer to take a tour. I found that their example, "Manhattan to Brooklyn" in the "single search box" (or even in their "Get directions:" form field) instead gives me a map of Brooklyn with (a few) businesses there with "Manhattan" in their name. I know it's a beta, but doesn't anyone test these demos before announcing them? The "tour" guide has buried a very interesting app under bad demo instructions.

    --

    --
    make install -not war

  45. Real-time traffic maps... by antdude · · Score: 1

    I would like to see a real-time live traffic map with maps.google.com like Yahoo!'s Maps.

    --
    Ant(Dude) @ Quality Foraged Links (AQFL.net) & The Ant Farm (antfarm.ma.cx / antfarm.home.dhs.org).
  46. The world according to the US =) by doktorstop · · Score: 1

    Looks like the famous cartoon has indeed made it to Google! Have a look at the map... the world is the US (nicely plotted, roads and cities) and ... Canada (full desert). No way to cross the ocean or even get a glimpse of South America existing =)
    Here we go... the logical conclusion that nothing else matters! I mean, I didn't expect a map or, God forbid, even cities names, but CONTINENTS would be fun to have at least. Hey, America, we ARE on the map!

    --
    http://www.automatiq.se
  47. lat/lon is there by mapmaker · · Score: 1
    First, and above all, it does not give you coordinates.

    Not sure if you were complaining that they don't display coordinates on the page, or that they aren't there at all for you to grab. While it is true that the lat/lon coordinates are not displayed on the results page, they are there in the html source. Which the submitter mentioned in his review.

    So any app you might have (like a geocoder) that would like those coordinates can grab them from the html, just like you used to be able to do with Yahoo's map site.

    1. Re:lat/lon is there by cmpalmer · · Score: 1

      I wonder what Google's policy on this will be? On one hand, Google has been quite generous on exposing web services and allowing almost anyone to link to them (except, of course, someone who sets up a web search page that returns Google results without attribution). On the other hand, most data licensing contracts prohibit secondary use of their data (meaning I can't legally write an app that uses MapQuest to do my geocoding or map imaging).

      Google's solution for displaying the maps using client side scripting instead of tons of server side processing and Java clients is fast and elegant, but the downside is that it exposes much of the interfaces required to access the data in other ways. I wonder what their official policy will be?

      --
      -- stream of did I lock the front door consciousness
    2. Re:lat/lon is there by mapmaker · · Score: 1
      I wonder what Google's policy on this will be?...most data licensing contracts prohibit secondary use of their data.

      'Policies' are irrelevant. You and I aren't bound by Google's license with their data provider. If Google doesn't want us to use their service for our own purposes, they can (and will) change how the service works to stop those unwanted uses. For an example of this, see the story posted earlier this week about Microsoft trying to patent how they encode lat/lon coordinates.

      So the guiding rule is: if you can do it, you're allowed to do it.

  48. Note to jgwebber by mzwaterski · · Score: 1

    The v in teh URL most likely stands for version. Here, the version is .1. Just a guess.

  49. Very Nice by michelcultivo · · Score: 1

    It would be nice if there's a way to link the maps into my website, only copying the link that others users can be on another places without problems.

    1. Re:Very Nice by alphakappa · · Score: 1

      The map url is provided on the top right corner under "link to this page".

      --
      "When the only tool you own is a hammer, every problem begins to resemble a nail." - Abraham Maslow (1908-1970)
  50. Re:Why aren't competitors beating Google to market by Anonymous Coward · · Score: 0
    4. Google has been trojan-horsed by Apple??

    That would explain the upcoming Spotlight at least, even if that's not what you initially wanted to know.

  51. You need new ink by dlZ · · Score: 1

    You're probably not using official Google Ink. It's only available by invite currently, though, and I already used all mine up.

    --
    rm -rf ./evidence @ punkcomp
  52. I wished I had safari but from what I saw. by xutopia · · Score: 2, Informative

    The ECMAScript (Javascript) code used for this is pretty standard except for a few else{} to acomodate Internet Explorer (unfortunately you cannot do without). I realize people want things to work in their favorite browser but shouldn't they check that their favorite browser follows standards before blaming Google?

  53. Re:Why aren't competitors beating Google to market by donothingsuccessfull · · Score: 1

    Google is run by hackers and the rest are run by PHBs?
    Obvious answer, I know.

  54. 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?
    2. Re:Will this bother some Privacy Fanatics ? by rsadelle · · Score: 1

      Whoa, freaky. I hadn't noticed that before. On the other hand, it doesn't seem to be integrated with white pages but rather only with business results.

      Oddly enough, if I put in my name and city, it correctly comes up with where I work (which is in a different town), but if I try to get directions from where I live to where I work, it says it "did not match any locations."

    3. Re:Will this bother some Privacy Fanatics ? by DrewCapu · · Score: 1

      Navin (Steve Martin): The new phone book's here! The new phone book's here! This is the kind of spontaneous publicity I need! My name in print! That really makes somebody! Things are going to start happening to me now.

      Of course, later that day, a disgruntled man with a rifle opens one of the new phone books at random seeking a victim. His finger lands on the name of Navin Johnson, and there is his address right beside it.

    4. Re:Will this bother some Privacy Fanatics ? by twistedcubic · · Score: 1

      Notice that they're all businesses, not residential. Try to do a search on yourself and see what happens.

    5. Re:Will this bother some Privacy Fanatics ? by Karma+Star · · Score: 1
      --
      Me email iz skyewalkerluke at microsoft's free email service.
  55. This might be intentional. by Kickasso · · Score: 2, Interesting

    Map publishers often insert small errors in their products to thwart copyright violations.

    1. Re:This might be intentional. by Gob+Blesh+It · · Score: 1

      I thought the errors came in the form of additional streets out in the middle of nowhere, not renaming streets people actually live on. At least, wouldn't that be the smart way to do it?

  56. Made from images? by Anonymous Coward · · Score: 1, Interesting

    I live in a semi-rural area where we have pretty long driveways (.25 mi). My driveway, and some (but not all) of my neighbors show up on this map. Interesting.

  57. In related news.. by sameerdesai · · Score: 1

    ... Google fires the "mapping google" blogger... Oh wait he doesn't work for Google!! darn!!!

  58. no workee for me by gonar · · Score: 1

    is there something I'm doing wrong? no maps come up for me, just a blenk beige space. when I click on one of the waypoint links, I get an empty square with the "broken" icon overlayed on the map.

    firefox 1.0 xp

    --
    The difference between Theory and Practice is greater in Practice than in Theory.
    1. Re:no workee for me by jimwelch · · Score: 1

      works for me on Firefox 1.0+ on W2k
      I'll try linux version tonight

      --
      Never trust a man wearing a coat and tie!
    2. Re:no workee for me by Anonymous Coward · · Score: 0

      Check your JavaScript advanced options in the Preferences. You'll need "Change Images" and "Disable Or Replace Context Menus" checked.

      I had everything unchecked and had the same problem. I still have the broken icon, but the square isn't empty.

  59. I just tried Google Map.. It's FAST! by MrJerryNormandinSir · · Score: 1

    I just looked up my house with Google Map.. It's fast!!!! Now if they can just add GPS information
    and parse GPS info, that would be cool!

    1. Re:I just tried Google Map.. It's FAST! by Stavr0 · · Score: 1
  60. One word: White Pages. by Kickasso · · Score: 1

    Well, that's two words. So sue me.

  61. Just hover over the links by tek_hed · · Score: 1

    Furthermore, they are in the opaque "Link to this page" link. It looks like this:

    http://maps.google.com/maps?ll=37.062500%2C-119. 06 7565&spn=3.859375%2C8.565532

    Looks like geographical coordinates to me.

  62. its killer feature is... by flacco · · Score: 1
    ...maps larger than a fucking postage stamp.

    google does it again. so long mapquest etc.

    --
    pr0n - keeping monitor glass spotless since 1981.
  63. Doesn't comply with W3C-suggestions by DancesWithBlowTorch · · Score: 2, Interesting
    I also think it bears noting that Google is pulling out all the stops to build rich web apps, no matter how weirdly they have to hack the browser to make them go. And I strongly believe that this is a trend that is here to stay -- XHTML Strict/CSS/etc be damned. At the end of the day, what really matters to users is compelling apps that let them get their work done quickly.
    At the end of the day, Google _has_ cared about XHTML Strict/CSS/etc. From the head of googles web app:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd ">
    <html xmlns="http://www.w3.org/1999/xhtml">
    And I'm quite happy about that. There's a reason why the w3c gives out definitions for html et al.
    1. Re:Doesn't comply with W3C-suggestions by Anonymous Coward · · Score: 0
      From http://validator.w3.org/check?uri=http%3A%2F%2Fmap s.google.com%2F

      This page is not Valid XHTML 1.0 Transitional!
    2. Re:Doesn't comply with W3C-suggestions by Kehvarl · · Score: 1

      According to that page, the -only- error is a single value which looks like a MS specific element. In other words, it's perfectly valid except for one element of one tag that's in there so IE doesn't panic.

      other than that it is valid.

  64. Google and Map24 by Anonymous Coward · · Score: 0

    what is the connection between Google Maps and Map24 http://www.us.map24.com/

    Check out the Map24 website and there seems to be some partnership going on...

  65. JS / HTML graphics: iWon Prize Machine by Anonymous+Custard · · Score: 2, Informative

    From TFA:

    Probably the most striking thing about Google Maps is the very impressive (for DHTML, anyway) graphics. Now, I'm sure that many of you old JavaScript hacks out there have known this sort of thing was possible for a long time, but it's very cool to see it (a) actually being used for something real, and (b) where normal users will see it.

    Back in the Summer of 2000 iWon.com released the Prize Machine.

    They didn't want people to need a plugin to use it, so they wrote it in JavaScript.

    It's a slot machine with moving prize images. You click the arm and it pulls down and starts spinning. It talks to the server to see if your spin won a prize or not, and spins the wheels accordingly.

    Nifty little app, actually.

    1. Re:JS / HTML graphics: iWon Prize Machine by Inda · · Score: 1
      There was an error in downloading the iWon Prize Machine...
      The download failed because you are not using Internet Explorer as your Web browser. Only IE is compatible with the iWon Prize Machine.

      Man that sucks big time. Guess which nice browser I'm using? :)

      --
      This post contains benzene, nitrosamines, formaldehyde and hydrogen cyanide.
    2. Re:JS / HTML graphics: iWon Prize Machine by Obiwan+Kenobi · · Score: 1

      Man, I kept waiting for:

      "And then Hacker Dude X hacked the Prize Machine hardcore, got all the prizes he could stand, then sold them on ebay for a fortune!

      He's currently getting "Personal Attention" from Bubba J. Plow in the Oswald State Correctional Facility!"


      But nooOOOooo, you had to be Informative, didn't you. ;)

      Evan
      My CCG Design blog

    3. Re:JS / HTML graphics: iWon Prize Machine by nautical9 · · Score: 2, Interesting
      Although this doesn't talk to a server while it's running, it's still the most impressive DHTML app I've ever seen: DHTML Lemmings.

      Really opened my eyes to the possibilities of what JavaScript/DOM can do. Glad to see Google, iWon, and other sites finally starting to make use of it.

    4. Re:JS / HTML graphics: iWon Prize Machine by Anonymous+Custard · · Score: 1

      It was first built in 2000, when Netscape was down and out and Firefox was very very young. So they didn't worry about non-IE browsers.

    5. Re:JS / HTML graphics: iWon Prize Machine by Anonymous+Custard · · Score: 1

      Based on what I know of the original security, you'd need to be quite an insider to crack it. And it may not even be possible at all - kind of how it's (virtually) impossible to un-hash passwords even though you may have admin access to the table that stores them.

  66. missing tile? by imess · · Score: 1

    is it just me? i keep seeing randomly missing tiles (i'm on school wireless)

  67. no by Anonymous Coward · · Score: 1, Informative

    Safari supports iframes. It doesn't support the fancy javascript (XML and XSL methods). That's because the safari devs really aren't that interested in de facto standards (they're still catching up with Moz on CSS2 layout to be honest).

    1. Re:no by Carewolf · · Score: 1

      No they are not. KHTML beats Gecko on CSS standards in many areas, at least as many as Gecko beats KHTML in.

      The only KHTML weakness here is the lack of full XML support, such as XSL. Being in both IE6 and Mozilla it is an important feature to support now.

  68. Re:no workee for me - me too. by flyingace · · Score: 1

    I know this is offtopic, but it does not work for me too. Firefox just shows a whitebox in the place of the map that I see in IE :(

  69. Sadly missing one invaluable feature... by Anonymous Coward · · Score: 1, Informative

    I use online map services extensively and I'm exciting to see Google jump in. But one feature is sadly lacking at the present time-- you can't save the map as a JPEG. Often I'll need to grab the map from a serive to drop it into a document for print or e-mail... And you can't do it with google maps unless you do a screen grab or print the page to PDF, but that's a bit of a hassle.

    The "e-mail" feature is also worthless, since you're just sending a link to the maps.google page.

  70. Re:When it supports by Quill_28 · · Score: 1

    You are making little sense, I far as I could tell it worked well in Fl, Tenn, Ky, Il .

    What exactly are you complaining about?

  71. Google uses XUL by fulldecent · · Score: 3, Interesting

    Here's the big secret:

    Google uses XUL to develop all their rich websites. For example: Gmail, Maps, Groups and others on the way. This natively XUL interface is then converted to HTML/CSS/JavaScript that we can see and run. This conversion is done by a program Google wrote a while ago and the conversion is very simple. Of course, it's not perfect and needs to be loked over by hand. This is how Gmail is compatible now with all the other browsers.

    In the future, when they decide it is time, they will publish their XUL interfaces side-by-side with their current interfaces. I'm not trying to give any hints, but this is related to a large push that Google is going to make to support XUL technology and will happen by the end of this year or early 2006.

    --

    -- I was raised on the command line, bitch

    1. Re:Google uses XUL by christopherfinke · · Score: 3, Interesting

      An interesting example of Google XUL was mentioned earlier in the thread: Google XUL search page.

    2. Re:Google uses XUL by Anonymous Coward · · Score: 0

      There is no Dana, only XUL

  72. Re:no workee for me - me too. by Devi0s · · Score: 2, Insightful

    It wasn't working for me until I realized that I'd have to enable Javascript AND allow it to change images.

    --
    - Have you ever noticed that the more you learn about technology, the more stupid you sound trying to explain it?
  73. Re:When it supports by arodland · · Score: 2, Funny
    I did some expert sleuthing, and found that it supports at least four additional regions besides midwest USA. They include:

    • Northeast USA
    • Southeast USA
    • Northwest USA
    • Southwest USA


    • Keep in mind that Southwest USA is where Google is, and I'm sure they have a much easier time getting geographical data. Besides, it would suck if the Google developers did all that work, got the site up, and it couldn't even show them their own offices!
  74. C'mon man! by Lysol · · Score: 1

    You're telling me an Indian, EU or is going to model where they're not from first? Sure, I'm all for the world community just as much as any EU or other worldly person might be, but the service just came out a few days ago! Expecting them to already have mapped the world is a little too much at this point.

    Remember, BETA usually means pre-release and time to work out all the bugs, etc. I'd much rather (and have in the past) work with a smaller data set and then add more after launch. I don't think this is a U.S. issue at all. What's the point of knowing where a Swedish pizza place is to the development/qa team? Or a French cafe? Or Belo Horizonte night club? You test where and what you know and move out from there...

  75. Slight problem with the map..... by MSDos-486 · · Score: 1

    Since when was North America a island

    1. Re:Slight problem with the map..... by Anonymous Coward · · Score: 0

      ...since the Panama Canal was built!

    2. Re:Slight problem with the map..... by /dev/trash · · Score: 1

      aren't all land masses surrounded by water?

  76. USA, THE ONLY COUNTRY IN THE WORLD !! by Anonymous Coward · · Score: 0

    I KNEW IT !!!, zoom out, have a look at the earth, I knew it was a scam all along, like the Moon landings. Trust Google to blow the coverup Wide Open !!!

  77. You're wrong by Anonymous Coward · · Score: 0

    It works just fine in ALL versions of Firefox. Make sure you don't have "allow javascript to change images" disables.

    Moran.

  78. Re:Coffeyville by newrisejohn · · Score: 1

    The real question should be "why is 0,0 on the image tiles centered in a lake near Glen Elder, Kansas?"

    I'd have to assume that it's the "center" of the available data. Why didn't they just use decimal lat/long of varying precisions for the tile numbers?

  79. You're not using AdBlock by any chance? by HeighYew · · Score: 1

    Try listing blockable elements.

    --
    There are 10 kinds of people in the world, those who understand binary and those who don't...what about the other 8?
  80. 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...

    1. Re:In addition to that, by Uthiroid · · Score: 1

      I doubt that the big boys in real estate are letting anyone else as big as google play in thier sandbox... They are currently drafting rules to limit "discount" MLS access, but congress is watching!

      A more likely play is to create a new coalition to replace or subvert the MLS system.

    2. Re:In addition to that, by pipingguy · · Score: 1


      Yeah. I founded a "love money"-funded startup called Homeplans Inc. (Ontario corporation) about 20 years ago and the goal was to provide pretty much exactly this type of service with the added option of having a draftsman create floor plans of the house to be sold. It would have cost about $250 and would have been incorporated into the real estate agent's fee.

      Ready market in Toronto at that time, big bucks exchanging hands with rapidly-increasing house prices possibly due to the Anglo head office exodus from Montreal. I think Remax was just starting up in Hogtown then.

      Now, back then, computers were still quite expensive (and, plus, I had an onion tied to my belt), so the whole idea was based on manual drafting (I.E., photocopying and then modifying commercial maps for driving directions as well as providing hand-drawn floor plans created by drafting students or unemployed draftsmen). The payoff for this seemingly labour-intensive element would eventually come as a big enough collection of similar house layouts was established and most work could be simple revisions to existing plans. With an appropriately-equipped cube van, all work could be done onsite "while-u-wait".

      Then, having knowledge of a house layout, popular add-ons like factory pre-fabricated backyard wooden decks could be offered to the homeowner.

      I recall visiting a mapping company and seeing their 80's-era computers and setup (must have been Intergraph-based at that time) and the end result was that the idea (for the directional maps) was not feasible at the time - I forget the details.

      The technology simply wasn't there then and I was just an innocent young pup with a good idea but no influence/connections/marketing knowledge/schmooze experience.

      Anyway, I have to stop writing now because I've run out of Slashdot's monthy allocation of the use of hyphenated terms.

    3. Re:In addition to that, by adamschneider · · Score: 1

      I keep wanting to add support for MLS search result pages to GPS Visualizer, but since every regional system probably has its own output format, I would need to collect lots of sample files. The only one I can parse at the moment is RMLS (Portland, OR), since that's where we bought our house...

      For now, at least, you can manually compile a list of houses you want to look at (addresses will suffice; GPS Visualizer can try to find the coordinates) and enter them into GPSV's address form.

    4. Re:In addition to that, by Anonymous Coward · · Score: 0

      I agree, I'm shopping for a place right now and the most trouble I'm having is determining the exact location of the properties. The whole MLS system is somewhat antiquated and the realtors just don't know how to create this mapping service that well. If you don't have the time to drive around town all day and be harrassed by a real estate agent then something like this could really save you a headache.

  81. Re:Coffeyville by gnuLNX · · Score: 0

    Yes. This is the exact point of something great big and grand. It is sure oo-maze and stun all people (even the French). I urge you to quickly purchase as much land in this area as yo can possible afford....Las vegas House prices will seem like sweet dreams in comparison to what is about to take place at the center of maps.google.com

    --
    what?
  82. 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.
    1. Re:RTFA by theancient2 · · Score: 1

      Weren't iframes originally a Microsoft-only feature as well? :)

  83. OK, this is... by wowbagger · · Score: 1
    OK, this is an example of a proper use of Javascript!

    Now, among other things:
    1. The ARRL needs to get Google to "know" about amateur radio repeaters and be able to search for them ("2M repeaters near wichita, ks")
    2. The various state highway departments need to feed construction data into here.
    3. Feed the National parks service data in (national parks in US)

    1. Re:OK, this is... by OverlordQ · · Score: 1

      4) Feed in all major waterways.

      Can you find the Arkansas? I sure cant :)

      --
      Your hair look like poop, Bob! - Wanker.
  84. Push down harder with the mouse. by chopper749 · · Score: 1

    If you have an old style mouse with the ball, it won't work. The newer mice should be able to get that map to slide. Also try clearing the area under the printed page on your desk to reduce friction.

  85. Another example of an excellent online map by Bio · · Score: 2, Interesting

    I want to point you to another example of an online map:

    map.search.ch

    This is Switzerland and not the US and it uses aerial photos with an overlay of vector street data. The resolution is amazingly good.

    Furthermore:

    • It is implemented with (D)HTML and Javascript only (like Google)
    • You can move the map holding the mouse button pressed (like Google)
    • You zoom in and out using mouse buttons 2 and 3

    For me it's one of the most fascinating applications of web/html/javascript technique.

    1. Re:Another example of an excellent online map by Bio · · Score: 1

      It's not that I like so much replying to my own postings :-), but I wan't to point out another online map:

      GIS Kanton Zürich

      It's a smaller region (a part of Switzerland), and on older implementation. The scrolling is not so nice, but it is also a Javascript only implementation and has a lot of functionality (e.g. areas can be measured).

      It's a very nice example, what can be done with DHTML.

  86. Yet Another Miserable Failure by CHR1S · · Score: 1

    Has anyone noticed that if you type interesting things in such as "Miserable Failure, Washington DC" It pulls up President Bush and several other humerous results?

    1. Re:Yet Another Miserable Failure by mge · · Score: 1

      AI at work ? I wondered if GWB was the last resort if the search-term failed to reconcile with anything in the database.

      So I tried any old crap, Washington DC. No, it didn't come back with GWB's address, but it was still accurate (See A and F).

  87. Outsourcing by tsmithnj · · Score: 1

    you get what you pay for.......

  88. There are all kinds of errors. by Kickasso · · Score: 1

    Renaming an actual street seems unusual, I agree.

  89. when does info get updated? by Anonymous Coward · · Score: 0

    As a rule of thumb, does anyone know when maps are updated? Grand Rapids had the new Henry Highway open a few weeks before Thanksgiving and it still doesn't show up completed on any online sites i've tried (mapquest, yahoo and now Google). My Dad's directionally challenged and having a map to point out exactly which exit to take would be very helpful.

  90. Not to beat the dead horse, but... by spud603 · · Score: 3, Funny

    "hateful fearmongers in Washington, DC" returns just one, infinitely appropriate result.

    1. Re:Not to beat the dead horse, but... by Xebikr · · Score: 1

      You should try "hateful fear mongers in Washington, DC". The space between the two words make a big difference.

  91. Re:When it supports by Nevenmrgan · · Score: 2, Funny

    You know, this reminds me: I've noticed that my local sub shop does these things called "Philly cheesesteaks." I immediately filed a complaint, explaining that the majority of this planet's population would not know what "Philly" was. Come to think of it, most would not know what "cheese", "steak", or a "cheeseteak" were either. However, it turns out the neighborhood doesn't really care when they go out for food.

  92. Re:"I'm not sure what the 'v' argument specifies, by Anonymous Coward · · Score: 0

    Not hard at all. changing the value for v has no effect on anything that I can discern.

  93. Wrong name for University by durbinshroom · · Score: 1

    I work at the University of Southern Indiana, and the map has it as Indiana State University. Granted, they were affiliated, but that was something like 15 years ago. Other than that, it's awesome

  94. Problem with all map sites. by T-Keith · · Score: 1
    Perhaps this is a problem with data supplier to all the map sites, but the last few addresses I've looked up showed up on the wrong side of the highway. They've all been along highway 169 in Minnesota, and they've all showed a completely wrong location.

    I tried one of them(my work) on google and the results are the same.

  95. SeaDragon / SandCodex by wildsurf · · Score: 1

    If you haven't already, check out the "SeaDragon" mapping technology at SandCodex.

    Click Technology -> Demos to see it in action; liquid-smooth continuous zooming, into thousands of square miles.

    This is the future of mapping software, I think.

    --
    Weeks of coding saves hours of planning.
    1. Re:SeaDragon / SandCodex by slim · · Score: 1

      If you haven't already, check out the "SeaDragon" mapping technology at SandCodex.

      Click Technology -> Demos to see it in action; liquid-smooth continuous zooming, into thousands of square miles.


      W00T. Streaming video of a canned demo running on who knows what hardware. Map24 has an applet based smooth scrolling map application, covering North America (Canada in lower detail than the USA) and Europe which you can use for free, right now.

      If that's what floats your boat.

      Google's is sort of fun though: it's neat that it's in DHTML instead of needing Java. Map24 has the better functionality today.

  96. Re:Coffeyville by darthnoodles · · Score: 1

    Because they are going to Kansas City. Kansas City here I come.

  97. bookmark is broken by jhewitt · · Score: 2, Informative

    I'm blown away by Google Maps but there is one annoying problem that I've noticed: You can't just bookmark a map on Google Maps, you have to first click a "Link to this Page" link to put the state of the map into the URL.

    I've described a simple solution for this problem on my blog just in case the folks at Google read Slashdot and want to make my new favorite mapping website just a little bit better :)

    http://www.joehewitt.com/

  98. Mod parent insightful by Anonymous Coward · · Score: 0

    'nuff said.

  99. It's not easy. by Kickasso · · Score: 2, Interesting

    The map is tiled, so you need to somehow produce a big image from all the pieces and then convert it to JPEG. Coding it in Javascript would be a real mess, and doing it server-side kinda defeats the point.

    You can easily convert PS or PDF to JPEG with ImageMagick (yes I'm a geek).

  100. Where is the rest of the world? by Anonymous Coward · · Score: 0

    does it distress anyone else that the rest of the world is missing?

    1. Re:Where is the rest of the world? by lejerdemayn · · Score: 1

      it's beta for some reason...

  101. Recommendation by smittyoneeach · · Score: 1

    If you zoom out, you only see North America. Right. Here is the plan:
    Since we already have Map Making, obviously, we need to have one of our cities with lots of shields building the Lighthouse. Pick one with copious food on hand, and let it run at a food deficit to speed up production. Check on it every turn, so a riot doesn't interrupt production.
    Get one or two other cities building triremes, and make sure we have some settler and phalanx units handy, so that we can start exploring as soon as the ships are ready.
    If they come rolling in from Asia or Europe or South America with a bunch of chariots, make peace as soon as possible and try to negotiate for technology.
    I think the situation is grave, but, with proper planning and a pinch of luck, we can pull this out.
    <Leslie Nielson voice>I just want you to know that we're all depending on you.</Leslie Nielson voice>

    --
    Get thee glass eyes, and, like a scurvy politician, seem to see things thou dost not.--King Lear
  102. No Scale by Momoru · · Score: 1

    Google Maps is awesome, but i cant believe it doesn't have a scale bar! Its really difficult to tell what mileage things are as the crow flys.

  103. awful by jeif1k · · Score: 1

    It's great that Google put in the hard work to make this work. But, really, the underlying browser technology for this sort of thing is just awful: it just shouldn't be that hard. In part, it's limitations in JavaScript. In part, it's lack of vector graphics and client-side graphics APIs.

  104. Unicode support by vistic · · Score: 1

    Mac OSX has full Unicode support and you can type in all sorts of weird scripts in any program, except Mozilla. If you go to a Chinese or Hindi website, the title bar will display correctly (since this falls under OSX's control) but the page contents will be messed up. Try it in Safari, which is OSX native, and the title bar and all the contents display perfectly.

    1. Re:Unicode support by Dahan · · Score: 0

      Works fine for me... at least Chinese does (and Japanese, and Korean, and Thai, and Arabic, and Hebrew); I don't have any fonts with Devanagari characters, so neither Mozilla nor Safari could display Hindi. Tested with Mozilla 1.7 and Firefox 1.0 on OSX 10.2.8.

  105. bug in the map by Anonymous Coward · · Score: 0

    There's a "unique feature in the map". In Firefox, on Linux at least (in KDE) if you click on the zoom bar with a middle mouse click you get an different web page altogether. The guy behind me somehow managed to get a web page for Canadian nudists...I was not so "fortunate"

  106. Re:Wrong name for Rail Road by Student_Tech · · Score: 1

    Similar thing here. They call the railline through my home town Washington Central, hasn't been called that for years.
    It has been BNSF for about the last 5 or more that I can recall of the top of my head.

    Makes you wonder where they aquired the information if some of these things are that much out of date.

  107. Recent search revealed! by Anonymous Coward · · Score: 0

    Go to a location:
    Mark Jen's flat to unemployment office

  108. Um, WOW by Anonymous Coward · · Score: 0

    I used to live in the backwoods of Idaho on a nasty old road that nobody wants to travel on. We used to always tell people that, once they turned onto our difficult-to-find road, they should travel exactly 6.2 miles.

    Doing a search from my current abode to my old one, I was extremely impressed to see Google Maps telling me to travel 6.2 miles from the start of the road to the destination. A few other locations seem to be accurate, though they favor main roads more than backroads sometime, but that's to be expected, and probably preferred often enough.

    All I can say is, Wow. Even for Google, I'm impressed.

  109. All well and good, but misses the interesting part by nicpottier · · Score: 1


    This misses the really interesting part, where (and how) is the conversion done from lattitude and longitude to the Google scale of x and y?


    That's what is preventing me from doing neato stuff using maps.google and I know it's got to be done in the browser somewhere, but apparently I'm too dumb to figure it out.


    Has anybody figured this out yet? It's completely glossed over here, and I don't think it's because it's obvious..


    -Nic

  110. Re:Why aren't competitors beating Google to market by Anonymous Coward · · Score: 0

    Simple, not every company can acquire ex-Internet Explorer/browser developers who know the rendering engines inside out.

  111. more interesting searches by oldbox · · Score: 1
    try searching for google headquarters. Apparently all this inovation comes from a small town in Oklahoma.

    Seriously, are these results from some sort of web search for an address on the same page as the phrase? I can't imagine them coming from any type of white page.

    mapbox

  112. The center of The United States by oldbox · · Score: 1
    The google map is NOT centerd on the Geographical Center of the United States, but close to the intersection of 2200 and 4300 Rd. in Dearing, Kansas (just zoom in without a search).

    middlebox

  113. It Client Site PostBack by Gambit-x7x · · Score: 1

    three is numerous way to do this... as well as hidden iFrame and imgRequest/reload as well as JavaScript http Fetch.... so no Microsoft just created another way proprietary way...

    --
    Who controls the information, controls the world...
  114. Middle of Nowhere by strider(+corinth+) · · Score: 2, Funny

    Anybody remember the old Macintosh Map CDEV? (Or was it a Desk Utility? I can't remember.) It had a location for "Middle of Nowhere". Looks like Google Maps has one too:

    http://maps.google.com/maps?q=middle%20of%20nowh er e&sll=37.062500%2C-95.677068&sspn=47.687500%2C81.5 64923

    What's really interesting is that it's changed since yesterday, when it was located in northern Idaho.

    --

    Love justice; desire mercy.
  115. easily tied in with GPS by utexaspunk · · Score: 1

    I love how it uses lat/long coordinates for the image requests. It can't be too difficult now to make an app for handhelds w/GPS to automatically pull down info for your current location.

    On a related note, do any of the gps units for pocket PCs have electronic compasses? It would be really sweet if you could have a map that rotated with your current orientation...

  116. We neeg gmessenger by pacoworld · · Score: 1

    When we are going to herard that there is a G-Messenger??

  117. max of only 10 hits with no secondary pages? by cashman73 · · Score: 1
    I have to say that Google Maps is awesome! The user interface is clean and fast (using Mozilla Firefox here), the information is, for the most part, accurate. I also like the easy searchable language options as well. Google is definitely on to something here.



    But it is definitely still in beta.



    One thing that I've noticed is that each search only results in a max of 10 hits, and there are no links for additional pages or hits beyond 10. I noticed this doing a quick search for, "Pizza, Louisville, KY." Being the corporate headquarters of both Pizza Hut (Yum! Brands) and Papa John's, I KNOW there are more than 10 pizza places in the city.



    Granted, I can see why they may not want to put too many hits on one page, but I would expect at least a link to secondary pages. Let's hope that this is in the works, soon.



    On the bright side, they do have a link to the best local brewpub in America. :-)


  118. No, Safari supports XmlHttpRequest by jhurshman · · Score: 1

    No, XmlHttpRequest is not the culprit. Safari (1.2+) supports that just fine.

    --

    Do not speak unless you can improve on the silence.
  119. Still slightly lacking by fluxrad · · Score: 1

    The map is awesome, but I'm sticking with mapquest until Google gets their directions together. I tested getting directions from my house to work and Google tries to send me pretty far out of my way.

    So...either their logic needs updating before it goes 1.0 or they've got a sweet deal going with the 20 extra Starbucks' I'm going to pass on my way to work every morning.

    --
    "It is seldom that liberty of any kind is lost all at once." -David Hume
  120. Just like enemy of the state, dude! by mveloso · · Score: 1

    In a few more months, they'll be able to overlay realtime images across those maps. That'd be handy for a couple of things:

    * traffic maps, for drivers
    * police incidents
    * realtime tactical maps for warfare
    * other, random interdiction efforts (illegal immigrants)
    * forest management
    * wild game management (herd tracking, poaching, etc)

    What's great is if they integrate it in with keyhole (or a bunch of 1 meter resolution sat images that operate in semi-realtime) you could internationalize arms verification by allowing home activists to become monitors.

    Imagine, you could monitor the Iranian nuclear power plants (or the North Korean ones) at home, for the IAEC. That brings privatization to a whole new level. Likewise you can tap into the obsessed hobbyist market and allow individuals to adopt an area of coverage, like a forest, and watch of illegal logging.

    It's fun to speculate, but it's unclear how practical this stuff would be.

  121. Safari is very difficult for JS development by jhurshman · · Score: 1
    I am a big user of Safari, but as a web developer, it's very difficult to develop in.

    The main reason for this is that the JavaScript error notifications are almost 100% useless. You have to turn them on in the "Debug" menu (which you need a little hack to activate), and even then you get helpful things like this: "(event handler):Undefined value"

    No file name, no line number, no context, just a vague message. It's back to the old methods of inserting a zillion alerts and trying to figure out what the problem is. It's quite the let-down after developing for Gecko (using Venkman).

    In addition, there are some irritating JavaScript/DOM bugs which I hope will be zapped in the Tiger version. Some examples:

    • The cellIndex property on TD elements is always 0.
    • The rows collection of a table contains all the TRs, but also all the THs. The rowIndex values are similarly screwed up.
    • The Date.setUTC* methods are seriously screwed up in several ways.
    • Date has the 2038 problem.
    • No rich text editing (à la Midas).
    --

    Do not speak unless you can improve on the silence.
  122. Bravo by Wraithlyn · · Score: 1

    ...and just like that, the sport of 'Funny Map Googling' was born. ;D

    Check out "hippy beatniks in SF", LOL.

    --
    "Mind, as manifested by the capacity to make choices, is to some extent present in every electron." -Freeman Dyson
  123. Re:Why aren't competitors beating Google to market by geirhe · · Score: 1
    Easy. The competitors are squeezing efficiency. Google employees get time to do off-the-marketing horizon stuff.

    Nontrivial innovation doesn't happen while you are on a schedule. Tom DeMarco, "Slack" should be mandatory reading for every PHB.

  124. This is the most impressive one I have seen... by cr0sh · · Score: 1
    Pity you have to pay for the engine to legally develop with it - but man, does it show the possibility (IE only, unfortunately):

    TRIGLAV RPG

    --
    Reason is the Path to God - Anon
  125. Re:Why aren't competitors beating Google to market by Xtian · · Score: 1

    Hmmm, you know, MapQuest and Google are both really primitive. THIS is what a decent mapping system is all about.

  126. Google uses [SVG] by Anonymous Coward · · Score: 0

    They need to make a majour push with SVG as well. That would solve the scaling issue on the server end.

  127. mod parent up.. by Anonymous Coward · · Score: 0

    exactlty the opposite of what grandparent is implying is true

  128. Mod parent Communist by Anonymous Coward · · Score: 0

    There can be only one nation, neal before Zod !

  129. Solution to blank box problem in Firefox by r0j · · Score: 1

    For those having the problem with Firefox just showing a blank box, try the following: - Enable Javascript - Under "Advanced" for Javascript tick "Allow scripts to... Change Images" This worked for me. Dom.

  130. not as effective as by Linwood · · Score: 0

    http://www.map24.com/http://map24.com I found this a while back.. way better than mapquest/google and any not-so-dynamic maps!

  131. They don't have the financial resources... by Wonderkid · · Score: 1

    I saw a fantastic mapping system covering Oxford, England. Alas, I have lost the URL, but it used Java and did everything the latest Google maps do, plus real time rotation AND zooming, plus every single landmark, business, river, stream and whatever. However, chances are the company that developed it didn't have the staff or resources or business acumen to take it global or plug it into a major portal.

    --

    O'WONDERWe're working on it.

  132. Mod parent jealous by Anonymous Coward · · Score: 0

    The poster must be from some 3'rd world country that can only dream of our awesome power.

  133. Re:Why aren't competitors beating Google to market by Anonymous Coward · · Score: 0

    Sure, who doesn't love a slow-loading, not-intuitive, unreadably-busy interface? Who doesn't love three layers of text overlapping each other?

    Mo stuff does not equal mo better.

  134. Wrong address by rleibman · · Score: 1

    I tried it, and while I was impressed with its workings, I was less that impressed with its suggestion that I move. I live in a new subdivision, so my street isn't on the map, so it suggested another street with a different (though similar) name in another zip code.

  135. Re:When it supports by BillsPetMonkey · · Score: 1

    If you're saying that the staff at google are on a par with the people working at your subway on this, then I'm in agreement.

    In fact, a "philly" is probably philadelphia soft cheese? That's fine but the majority of the connected population still doesn't share the same geography as Google. Or you local sandwich shop.

    --
    "It's not your information. It's information about you" - John Ford, Vice President, Equifax
  136. Re:When it supports by Anonymous Coward · · Score: 0

    Like 94% of US citizens, can I guess you don't own a passport?

  137. Re:When it supports by Anonymous Coward · · Score: 0


    # Northeast USA

    # Southeast USA

    # Northwest USA

    # Southwest USA

    Your knowledge of world geography is almost as good as google's. Have you considered applying?

  138. Re:When it supports by Nevenmrgan · · Score: 1

    People at my "subway"? Philadelphia soft cheese? You're not "connected" to the majority of the connected population yourself, bud.

  139. Re:When it supports by BillsPetMonkey · · Score: 1

    The idea that someone should be ridiculed for not being familiar with US culture could be modded funny. Were it not for the fact that I think you actually mean it.

    Thanks, but no thanks, "bud".

    --
    "It's not your information. It's information about you" - John Ford, Vice President, Equifax
  140. Second Order, Please by Anonymous Coward · · Score: 0

    Is there a second-order slashdotting going on here? http://www.sandcodex.com/ is linked from a comment, and it appears to have been /.ed too.

  141. My favorite search so far by halr9000 · · Score: 1

    "brothels near reno" :)

  142. Here is the link: by ImaLamer · · Score: 1

    Yes, it's true!

    A Google Maps search for "litigious bastards in salt lake city" results in this

    1. Re:Here is the link: by ImaLamer · · Score: 1

      Even crazier searching for "whore in salt lake city" gives you these results, which include SCO and the Church or Latter Day Saints.

  143. http://map.search.ch/ rocks! by jpatokal · · Score: 2, Interesting
    I thought Google Maps was spiffy, but this is just insanely cool! Took me less than 1 minute to spot the house where I lived near Geneva over 10 years ago, and the satellite map even shows the community swimming pool and the nearby farm sheds full of stinky fertilizer. I can almost hear the cowbells ringing...

    Note that you can also check the "Strasseskarte" box to switch between the satellite view and the just-the-facts-ma'am road map view.

    Cheers,
    -j.

  144. Google Suggest - Not Ready by Anonymous Coward · · Score: 0

    Slightly OT, but I wonder if Google doing these beta's could hurt more than help.

    For instance, doing a Google Suggest on "Nigeria" displays more than one potentially offensive suggestions when you have the "n-i-g" entered.

    Do you all think this is a liability for them?

    We know that they aren't responsible for the contents of the pages that the search brings up, but what about the suggestions that they offer?

    Cool technology anyway. I think I'll have to play around with XMLHttpRequest a bit myself.

  145. Or security fanatics ;-) by australopith · · Score: 2, Funny
    --
    Just a simple man trying to make his way in the universe, aye.
  146. Too Much Horror Movie Watching by pipingguy · · Score: 1


    That well-known innovation cry, "Brains! We need more brains!" is being misinterpreted by clueless decision-makers as meaning that eating skull contents/stunting normally-creative synapses and remaining cells is the thing to do.

    I'd include a screenshot of Carly chowing down on HP employee plebes' cranium innards, but I think I've said enough already on too many levels of understanding.

  147. Had to try... by Roger+W+Moore · · Score: 1

    "stupid twit in washington DC"

    No prizes for guessing the address of the individual that came top...

  148. Google Directions Bookmarklet by Anonymous Coward · · Score: 0

    Alex King posted a Google Directions bookmarket as a stop-gap until they support saving locations.

  149. Pizza in Detroit??? by Equis · · Score: 1

    Apparently there's still no pizza in Detroit.

    Those bastards in Windsor, Ontario, Canada are hoarding all our pizza.

    With Little Ceasar's, Domino's and Hungry Howies all based out of Detroit, you'd think we'd have some of our own.

    ;-)

  150. Re:no workee for me - me too. by .smoke · · Score: 1

    Thank you! I can finally see the maps now! That was it. I routinely disable all those "extra" things that javascript is allowed to do. Just reenabling the change images option in Firefox did it for me.

  151. Or, Cool Stuff by weston · · Score: 1

    Seemingly, Google actually *wants* to build cool stuff. And they care about making it cool, with these little extra details other companies might overlook as frou-frou.

    In this way, they're a bit like Apple. But priced for just about anyone. :)

  152. OT by Seraphim_72 · · Score: 1

    Where is your sig from? I have to ask because my Boss is named Mark Anderson - I would love to post it to his office door.

    Sera

    --
    Slashdot, where armchair scientists get shouted down and armchair theologians get modded up.
    1. Re:OT by Reducer2001 · · Score: 1

      I was watching C-SPAN one day and this author (Mark Anderson) said it. I think he's also a musician.

      --
      When you get to hell -- tell 'em Itchy sent ya!
  153. Google is fulfilling prophecy by Dracos · · Score: 1

    Didn't Marc Andreesen claim 10 years ago that Netscape would make Windows irrelevant? I don't remember the exact quote.

    Well, its not playing out exactly like that. Web based apps are making the OS irrelevant, and Google is leading the way, opening the doors that MS has tried to keep shut for the past decade. Sure, web technology has matured a lot since 1995, and will continue to do so, regardless of IE, MS Word, J#, .NET, and all the other wheels that MS reinvents when they see potential in an open technology.

  154. Re:When it supports by Quill_28 · · Score: 1

    You are complaining that the maps only work in the US?

    Golly, thats shocking considering it a US company and it's in beta.

    And yes I have traveled outside the US.

  155. GPSBabel now supports Google Maps by parkrrrr · · Score: 1

    I'm sure nobody cares anymore, since this has fallen off the front page, but the current CVS version of GPSBabel now decodes the route information from Google Maps XML files (the stuff the perl code above was supposed to deal with.)

    The code's a lot cleaner, too, for you picky folks.