google-maps

Ajax Updater in Gmaps v3 divcontrol not firing

Hi, I have moved from v2 my working solution in Gmaps v3. After add a map control using dom and divs elements i'm not able to Update my content calling one Ajax.Update method and passing the id. All elements are in Dom. regards. May be linked to :link text var idname ='s7'; //--> div id='s7' ajax = new Ajax.Updater( idn...

How to start this GMaps demo with keyboard focus on it?

I'm looking at this GMaps example, and I would like it to start with focus of keyboard (so I can navigate using diretional keys and '+' and '-' for zoom), is there a way? The example code is: <!DOCTYPE html> <html> <head> <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> <meta http-equiv="content-type" content=...

Google Maps: How to create a custom InfoWindow?

I just came across http://fwix.com/ I really like how they create the InfoWindow (popup) when you click on a map marker because the corners on their InfoWindow are not as round as the default InfoWindow corners. Question: How do they create their InfoWindow so square, which I like, because the default Google Maps InfoWindow for a map m...

Google map Geolocation formatting address

I'm using Geo location service with Gmap Api and i would like to know ,how do i have to format data address ? i have to format addresses according to local server location. which is the best practice? ...

google map v3 KmlLayer, Geocoder

Hi, I have some problems making a google map that loads XML file that have addresses instead of latlng. XML file holds about 10 records. I can not figure out how to do this. $(document).ready(function(){ var refreshId = setInterval(function(){ var latlng = new google.maps.LatLng(18.156291402835436, 22.2802734375); ...

Internet Explorer 7 Google Map Rendering Problem

Hi I'm having some trouble with IE7 when doing a map. I've made an xml and ajaxed it to grab points based on where the user is on the map. It works well, and in FF, IE8 no problems when they click the points. On IE7 it firstly misses the cross at the top right, has some problems with the border (fixed that with some margin) and more impo...

Google Map marker coordinate string to number

I am trying to create a Google Map with a single coordinate as marker. I use ASP MVC, and the coordinates are saved in the database as a string. <%: Model.LatLng %> outputs something like this: 52.425, 4.938 The problem is, Google Maps cannot read this, probably because it is a string. How do I convert the coordinates to something...

Is it possible to fade in Google Maps v3 Tiles?

I'm using the Google Maps V3 Javascript API. I want the tiles to fade in like they do on an iPhone. Anyone know how to do this? ...

Android app's map pins not appearing until screen is touched

I am experiencing a problem with my app. The 1st screen that appears is a map that displays pins that are located based on an XML file that is loaded from our server. Sometimes the app loads as expected. Other times, the map loads but none of the pins appear until you touch the screen. Any ideas why this may be happening and what can...

google.maps.OverlayView is not a constructor

Hi, Using this Overlay extension i have a problem blocking my phone dev.:google.maps.OverlayView is not a constructor. Any solution in v3. MyOverlay.prototype = new google.maps.OverlayView(); MyOverlay.prototype.onAdd = function() { }; MyOverlay.prototype.onRemove = function() { }; MyOverlay.prototype.draw = function() { }; f...

How to print a non-static google map (v3 api)

Hi, I would like to ask if there is any way to print a google map which is showing a direction overlay? I hv tried http://abcoder.com/google/google-map-api/print-button-for-google-map-api/ with google map javascript api v3, but the map cannot be shown. I hv also tried to use static google map, however Static Maps API URLs can be a max...

Calling map.fitBounds() Multiple Times in Google Maps API v3.0

I've just begun using the Google Maps API (v3.0) and have had a good deal of success so far. I am loading a set of objects with Latitude & Longitude values from a database, passing them into my script, and looping over them in the script in order to add them to the map. I am using the "bounds.extend() / map.fitBounds()" method of settin...

where to download complete google maps api?

as the title where i can download google maps api (javascript) i try to extract it from the browser, but not all of the api i can download. i think it will be easier to develop as we have the code. best regards. ...

Coldfusion + Google Map API v3 — info window and set bounds

Simply, I seem to be able to write code that either creates a clickable marker for a pop-up infoWindow OR gets the bounds of the returned markers and resets the map extent and zoom levels. I can't seem to combine the two. My example below will nicely set the extent of the map to the results of the query. But I don't quite know how to ...

Google Maps API v3

Possible Duplicate: Clustering Google Maps API V3 Could someone plz tell me how do I obtain the pixel coordinates of a marker in Google maps API V3? Thanks in advance. This is one section of the code I'm using: var x=0, y=0; function getLeft(obj) { if ('string' == typeof obj) obj = document.getElementById(obj); whil...

ItemizedOverlay Issues (HelloMapView Tutorial)

I am having trouble with the Hello Map Views tutorial from the Android Developer website: http://developer.android.com/resources/tutorials/views/hello-mapview.html My first problem was that upon clicking the overlay item, the application would crash. This problem was solved by making sure to pass the context to the ItemizedOverlay clas...

google maps custom markers / shadow help needed

Hi all, so I have google maps directions on my website, I have managed to change the icon, although I can't seem to get it to align it with the original marker shadow (which I actually need help removing also, it's just a good point to show that my custom marker is off). I hope this made sense? The url is: http://www.emuholidaypark.com....

How to show a balloon above a marker in a MapActivity? Is there an API to do that?

I worked through http://developer.android.com/resources/tutorials/views/hello-mapview.html and now I want to show a balloon with information, when a marker is clicked. Just like here. (This part of my question seems to be answered by Commonsware. So, dont recognize it.) Honestly, I dont know what that guy is doing in his answer. He is ...

how can I display thumbnail image in spite of bubble in google map API

I am using google map api in my application. How can I show a thumbnail image in place of red bubble for a perticular address on Map. ...

How can I produce a satellite image using a set of coordinates in Google Maps' javascript API?

I'd like to populate the infoWindow of an annotation with an image of the location the pin is on dynamically, producing an aerial photo and stuffing it into the infoWindow. This is what I have now, but it means I have to have an image for each site ready to go in advance, which is a lot of provisioning work for several hundred different...