I am trying to use places api for google map on my website. As the manual (http://code.google.com/apis/maps/documentation/places/) says it needs registration and the registration needs adsense publisher id. What is the point why should I have adsense to use maps?
...
I have a google map in an iframe and wrapped in a div. Above that div, i have another, which serves to create a recessed shadow effect.
The problem is that this overlayed div will take priority of any mouse events, so it renders the interactive google map below useless. There must be a way I can make the overlayed div ignore mouse even...
I created a custom OverlayItem class so that I could essentially have one kind of OverlayItem whose Drawable marker would set itself depending on the state of some data that I pass into it.
I have attempted to accomplish this by, on my first attempt, utilizing the setMarker method within the OverlayItem class. Once that did not work I ...
Hello,
I am trying to implement a Maps API V3 and Local Search but I seem to be having problems. Somehow, the results in the OnLocalSearch() function is empty.
Here is my complete code:
<script type="text/javascript">
//<![CDATA[
$(document).ready(function() {
// do stuff when DOM is ready
var geocoder = new google.maps.Geoco...
Hey all, im having an issue with Google maps and jQuery appendTo().
Im using the following to create and attach a custom infoWindow to Google markers.
$("#message").appendTo(map.getPane(G_MAP_FLOAT_SHADOW_PANE));
The following would also work ...
$("#message").appendTo(map.getPane(1));
This attaches itself within the right DIV as ...
Hello,
I am trying to implement the MyLocationOverlay class from google maps. However, when I try and use my own locationManager -- I cannot get the overlay to acutally draw on the map. I am wondering if I am doing something wrong.
I don't want to call the super method(enbaleMyLocation) of the MyLocationOverlay class because that requ...
I am using Google Maps API v3 on a website I am developing. I have a drop-down box beneath my map which allows the user to switch between different sets of markers to be displayed on the map. Each marker is displayed using marker.setMap().
My problem is that the map sometimes takes a long time to display the new markers, especially in I...
I am wondering how I can create two markers on a google map (upon click) and have a line drawn between them. Ideally both markers would be draggable after they are initially dropped and the line would readjust accordingly.
...
Hi,
I have a controller (address /Home/Test see below) which definately responds to get request with this:
<?xml version="1.0" encoding="utf-8"?><kml xmlns="http://www.opengis.net/kml/2.2"><Placemark><name>Simple placemark</name><description>Attached to the ground. Intelligently places itself
at the height of ...
Hi,
I am trying to switch from virtual (VE) earth to google map (GM).
It is pretty easy to overlay a georss feed over a map in VE as well as in GM:
var georssLayer = new google.maps.KmlLayer('www.bla.com/kmls/k1');
georssLayer.setMap(map);
Unfortunately, google requires the 'kml address' to be public. What can I do to achieve the s...
Hi all,
I would like to use a map API that allows me manipulating countries subregions like England and Scotland for instance (that are "provinces" of the United Kingdom, ISO-3166-1 code: GB).
All the APIs I've found so far only allow you to work on a ISO country basis (in which England and Scotland aren't accessible).
The Google geom...
I have some Google Maps JS that plots a number of markers on a map. However, when loading the markers I noticed that the images were not loading in time and so the markers were not being placed.
To get around this I modified my function that returned a map marker as follows:
function newGoogleMapPin(type){
var imgpath = "img/gmapico...
Hello,
Sorry for the long title, but I had to make it as descriptive as I could.
Anyway, let's say I have a map on my site. The map is centered using Google's geocoder. I also have LocalSearch "enabled" on the map. So the map has "markers" for each result returned by the LocalSearch.
So my question is, can I make other people add "mar...
I know this is a very noobish question -- but what is the best way to convert a GeoPoint to a Location on the Android platform.
...
I was wondering if it is possible to offset the center of a map in Google maps api v3. I would like to control this offset in pixels, since by lat and lng seems wrong and very difficult to predict.
I just need to place a marker, and then offset the center by 250px so I can place some other content in the middle of the map.
Hope someon...
Hi All,
How to perform Batch Geocoding on google or some other Geocoding service provider. I dont want batch address processing where the application uses a JavaScript to break the address batch into single address in a loop and perform geocoding like the sample provider here (http://onemarco.com/2007/06/03/geocoding-with-the-google-map...
I am using google maps but i can't get map marker for these kind of lat and long values.
Tirunelveli Latitude:8.44 N Longitude:77.44 E. How to convert these to values which can be used by google maps?
I used this but there is no place in the map view area,
function initialize() {
if (GBrowserIsCompatible()) {
var m...
Hi all,
I am turning in circles and are hoping for some clarification by you guys ...
1) I have a site, using jquery and a Goolge Maps Plugin (http://plugins.jquery.com/project/gmap).
This all works perfectly and I get my markers set right and I really like this solution. This is how it looks like:
<script type="text/javascript" src...
I have clickable icons on a map showing a PopupWindow just above the icon when clicked. However, if the icon is on the topmost part of the map the PopupWindow will be hidden under the Android Status Bar.
The PopupWindow will automatically adjust to the right and left edges of the screen, and also to the top edge but doesn't take the sta...
Hi,
I'm moving an app for v2 to v3 of gmaps api and I'm stuck on the following problems :
How to fire an event (onmouseover) from a side bar to open the respective info window and set the icon to rise to the top by increasing it's zindex.
I have pasted my code so far - I have added 10 hash's above the two lines of code (found towards ...