maps

GWT maps API - Combine several icons and just one marker

I'd like to graphically indicate several status of large collections of lat/lng positions on a map. Once generated the status of each remains static (so no updates required). The idea was to use one icon per dimension (e.g. open/closed, happy hour etc.; a shadow icon is not that important) and to finally overlay them (using anchor points...

Google Maps V2 epoly2 by Mike How to get states xml

I am curious about http://econym.org.uk/gmap/states.xml how did he generate the states i would like to generate it for Canada... but cant figure out where on google he found that xml or how he generated it.. any ideas? ...

android development, implementing google maps

straight from http://code.google.com/android/add-ons/google-apis/mapkey.html it says: To register for a Maps API Key, you need to provide an MD5 fingerprint of the certificate that you will use to sign your application. Before you visit the registration page, use Keytool to generate the fingerprint of the appropriate certificate. First,...

Calculation "Maths" on Directions distance and duration in Google Maps

Hi, at this link http://efreedom.com/Question/1-2472482/Directions-Distance-Google-Maps-API-V3 you did give good answer, my question is After display distance and duration on the screen: How can i get those numbers (meters and seconds) on variables to do some calculation or convert or math base on those figures? thanks, Ben ...

How to map/plot locations like "5000 block of Q ave" or "200 block of 7th St"?

Block sizes vary wildly, so I can't just always round down, but it doesn't seem like the google maps API understands these kinds of locations. I considered trying to go half way: for example, get the location of 5050 Q Ave for the 5000 block of Q, but blocks are not a regular interval either, nor is spacing on a block constant. I'm pre...

How to integrate Yahoo map in ASP.Net website

How to display yahoo static map in gridview if we pass address as query string? Also please tell how to display dynamic yahoo maps also. I have searched about yahoo maps and got the following links http://developer.yahoo.com/flash/maps/examples.html, http://developer.yahoo.com/maps/rest/V1/ and http://developer.yahoo.com/maps/. I did not...

Google maps on mobile device via browser.

Im in a bit of a rut here. I'm trying to get a store locator to work correctly on a mobile device. http://www.trytyku.com/mobile (try NY zipcodes ie. 10023) The problem is, whenever I click a location when i'm on my iPhone it doesn't center to the marker on the phone, yet it seems to work fine in the browser. If anyone has an idea on wha...

Creating Google Maps' interface in Dojo

I am trying to use the ArcGIS 2.1 JS API to create a custom interface that looks similar to Google Maps. What is confusing me (particularly with Dojo's layout scheme) is how Google Maps has a map pane that extends the whole width of the page and has a left search results panel that seems to be floating above the map pane. How does this...

mapping location to a time zone

I need to get the time zone for a given address/location. Assume that the address/location can be reverse geocoded (using google) to a lat/lng if necessary. This means that I may not have a zip code. I was really hoping that google provided some kind of API for this, but it seems that they don't. At a minimum you can google search fo...

Clustering Google Maps API V3

Hi All, Could u plz tell me how to find the pixel co ordinates of a marker in Google Maps API V3? ...

sms to map location

Hey, does anyone know how to strip the location data from a sms? So someones location could be marked on Google maps. Basically they'd text a Google voice number: 'team 1: message'. Then it would email the server with the message and it would pull the lat and long from the sms. All the info I could get was, It's done using Drupal, the...

Display Bing map by specifying an address in an ASP.NET website

How to display Bing map dynamically in an ASP.NET website based on the address provided. I do not have latitude and longitude for the address so I have to pass address directly and display the map. ...

The better way to use Jquery with Google maps API, change InfoWindow style

Hi Guys, I used to work with Jquery and Google maps API, and i've found some answers here, but i didn't found any workable examples. Please if you have one, or just give me a link. ...

Google maps Info Window Overlay content just like that in maps.goole.com

I want have the info window content for a marker just a s below My code so far is loadEmbeddedMap : function() { var script = document.createElement("script"); script.type = "text/javascript"; script.src = "http://maps.google.com/maps/api/js?sensor=false&callback=initEmbeddedMap"; document.body.ap...

Reverse Geocoding all addresses within a radius

Hi, I'm working with the iPhone SDK and am trying to gather and store a list of all addresses within a given radius (the radius will range from .25 to 19.75 miles). understandably the larger radius would produce a large amount of results, but for now I'd like to at least be able to do it for a mile or so. The end result would be to have...

Using Bing Maps REST Services on BlackBerry?

Are there any third party libraries or SDK's - commercial or open source - that would provide a straightforward way to integrate Bing Maps in a BlackBerry application? Now that Bing Maps Mobile is free for use in consumer-facing apps, it's a really compelling choice. Nutiteq provides the only option I've found so far (short of developin...

What SDKs can be used for creating offline maps application for iPad/iPhone ?

Hi, we are developing an offline city map application for iPad, using Cloudmade SDKs. I'm curious, is there are any other SDKs which could be used for offline applications ? ...

Link to location on google map

I have a page which have lots of addresses. I want to have 'locate' link beside all the addresses which will take us to another page and show the location on google map. Since i am a total noob when it comes to google maps, can anyone help me how to do this? I definitely dont want to create separate pages for each address location. Any s...

Converting a list of lists into a map of lists of lists in Clojure

I have a list of lists and would like to get this into a map where the key is one of the common values in the lists (animal name in this example). I know how to use into {} and for to create a map from a list but this is not exactly what I want. I want the key (animal's name) in the map to refer to a list of lists of these values. I've ...

Trouble creating a map with vector as key and custom class as value.

Hey everybody, I have created the abstract class below to evaluate a board position of simple games. The abstract class is overridden by each derived class so that only the evaluate function is defined in game.h I am trying to make my program more efficient by using memoization, but I can't get my map to work correctly. The compiler th...