google-maps

how to convert the nsstring value of text into CLLocationCoordinate2D in objective-c for google map

i want to give option to user to put the location name what he want to search in google map from iphone. when user put the location name that particular map should come. for now i am doing this by fixing the value of the of coordiante in its object latitude and longitude. CLLocationCoordinate2D location=mapView.userLocation.coordinate;...

How do you enable full horizontal scrolling on Mapkit?

I've added MapKit to an app I've been working on. However, there appears to be a wall between Asia and America that you can't scroll past horizontally, to the right or to the left. Is there an option to enable infinite horizontal scrolling, such that the map wraps around? ...

Google Map GEO Results

Hey All I'm getting really frustrated with google geo results and hope someone can advise me the best was to go. I have created a AutoSuggest feature where you can start typing the address and google will repspond with suggestions. User then selects and address to move on. But before I want them to continue on the next page I want to ...

How do I change the color of a GMarker in Google Maps?

Pretty simple request, but there doesn't seem to be a way to do it. I just want my GMarkers to be green instead of red. Do I really have to make my own icons? ...

Google Map Deployement Or Publishing Problem in Android?

dear friends, i created google map test application on two difference computers A, B i created two MD5 finger prints on both and obtained two different keys from google for Computer A and B. Key of Computer A does not show google map on Computer B and vise versa. Key of computer A only shows google map on Computer a only and same ca...

InfoWindow replacement for Google Maps v3

I'm looking for an InfoWindow replacement for Google Maps v3. I want to use it for popping up on marker mouseover. The standard InfoWindow is wholly unusable because it pans and makes itself a nuisance. Google Maps v2 had the excellent GxMarker (doesn't work with the new API): http://code.toeat.com/gxmarker.html Does anyone know of a si...

is it possible to get back to my application after clicking google maps?

the title says it all. We have made an application for a city in the netherlands that wants tourists to visit their lovely museums. when they reach the page fo a museum we have a little icon that they press and they get transported to google maps which shows them where they are and how to get to the museum. What we would need is a bac...

Strange problem with Google Maps and Ajax in Google Chrome and Safari

I am developing web-application using Google Maps API and ASP.NET Ajax. Here is my JavaScript-code for PageLoad: map.openInfoWindowHtml(map.getCenter(),'Hello, <b>world</b>!'); First run is successful. But after execution some ASP.NET Ajax-function we have strange effect: In Internet Explorer, Mozilla Firefox and Opera everything is g...

Weird Google Map sizing behaviour

I've got a map in a GWT app up at http://corn.appspot.com - I want the map to cover 100% of the height and width of its container. I'm doing this by adding it into a layout panel and not assigning a size, like so: public void loadMap() { LatLng cawkerCity = LatLng.newInstance(39.509, -98.434); MapOptions options = MapOpt...

Google infowindow is not displaying correctly using their API

I am using the Google map API to integrate the map into my website, I am using custom markers and infowindows. I have used this previously with no worries but now, when I click on my marker, the infowindow displays incorrectly. I have tried to many different things to try and fix it but I just can't seem to figure out whats going on. h...

How to center map on marker and open marker's InfoWindow in one method

I'm using Google Map APIv2. On my webpage I've a sidebar containing a list of markers with onclick event executing showDetails method, that looks like: GMarker.prototype.showDetails=function() { map.panTo(this.getLatLng()); this.openInfoWindowHtml(this.details); }; The problem is that i cannot both panTo and openInfoWindowHtml ...

how to set the annotation to many place of search result in objective-c for iphone

I want to set the annotation to the all place of search result of google map. but i am getting the only single annotation at single point of search result. - (IBAction) showAddress { [addressField resignFirstResponder]; MKCoordinateRegion region; MKCoordinateSpan span; span.latitudeDelta=1; span.longitudeDelta=1; CLLoc...

Getting Region Data of geolocation using Google Maps API

Is there an easy way to determine a point's region in the world based on it's latitude and longitude? I have an entry form that a user enters in their address (city, state, and country). I then geocode this into a point that I can use on a Google Map. However, I'd like to have it store the region of the point as well so I can use it f...

Google Maps: How to add HTML elements to specific coordinates ?

I would like to know how and if I can add standard HTML elements (div, button) to a specific set of coordinates on the map ? For example I have a set of coordinates and I would like to attach a custom balloon notification to them and when I pan away from the coordinates the element should disappear and when I pan back to them, the el...

Solutions for many markers in the same coordinate, Google Map mashup

I am making a mashup where thumbnails will be shown over a google map. The problem is that many thumbnails will share the same coordinate. So if I plot them like markers, they will be one on top of the other. Have you seen any creative solution for this problem? Thanks ...

Draw polygon x meters around a point

How can I create a polygon(only a square in my case) around a given point(lat/lang) x meters around the given point. It's just a visual representation of a geofence but I dont need all the calculations whether a point is outside a geofence or not. I tried using the code below but its creating a rectangle instead of a square and I'm not e...

Overlay on Google map using KML

Hi,i want to put overlay like http://www.estately.com/CA/Cathedral_City#map this search in google map but I need to have .kml file for that area or region or city which is I don't have.so,if anybody know how can we get .kml file for particular location then please let me know. ...

Highlighting whole street with some maps API

Hello, Is there any way to highlight/display on Google/Bing/(any other map provider) Maps whole street (from the beginning of the street to the end of)? I know the existence of Polyline in Google Maps API, but it's just connecting two latitude points, and there is no way of making it automatic so I could display any street in some city...

How to actually query Chinese address in Googlemap API geocoding??

I'm following the demo code from article of phpsqlgeocode.html In the db, I inserted some Chinese addresses, which is utf8 encode. I found after urlencode the Chinese address, the output of the address will be wrong.Like this one: http://maps.google.com.tw/maps/geo?output=csv&amp;key=ABQIAAAAfG3KxFZXjEslq8VNxMBpKRR08snBovzCxLQZ9DWwpnzx...

Strange speed problem with GoogleMaps in IE

I have simple WebSite with GoogleMaps. My GoogleMaps have mouseMove-event. All browsers everything is ok, except for IE. When I move the mouse cursor over the map - IE very much uses cpu. mouseMove-event very important for my WebSite, but because of IE it works very slowly. I google it and find same problem (Jun 26, 2006): gmap2 mousemov...