google-maps

Google Map version2 vs Version3. shall we continue with gmap version 2.

Hi, My map project needed an update this month and when i referred gmap i saw the notification requesting to migrate to version3. This is from may 19th 2010. There are three projects live which used gmap extensively. Those projects are for Transportation department in which we have plotted a route for a bus service with many options. ...

How to load google maps using google maps api in iphone ?

Possible Duplicate: Integrate Google Maps API into an iPhone app How to load google maps using google maps api in iphone ? ...

How to show map with the help of the zipcode and with ip using .net framework

I have visual studio 2008. I don't know how to show the map with the help of the zip code and ip addresses. How can i find the zip code and IP addresses of the particular state in all over the world. I am new in this so please help me with an example. ...

Google Maps Api adding label

i'm using the the following function to create my markers from a XML file. i wish to label each market 1,2,3,4,5,6 etc where 'i' is the number. can some please please tell me how to incorporate this. thank you function createMarker(point, name, address, type, i) { var marker = new GMarker(point, customIcons[type]); var html = "<...

How to customize google maps infowindow in rails using ym4r_gm

Hi Friends, I integrated google maps in my rails project using ym4r_gm. I want to customize the infowindow as in trulia.com (http://www.trulia.com/for_sale/New_York … _homes_lt/). I went through the ym4r_gm code to include 'extinfowindow', but no use :( I'm really struggling alot to customize the bubble/infowindow. Can any one expla...

can anyone give me a link that returns kml file for google map?

Can anyone give me a link for google map that returns kml file? ...

How to make a Google mashup, allowing multiple users to pinpoint multiple locations on a map?

I need some inputs on how to show a map (public to all) and allow any user (whose email I should be able to track) to click several points on the map and make appropriate markers (it should just be visible as a point, nothing special). Other users SHOULD see those points as well. I should be able to access data on the backend as to who s...

GWT Maps change infoWindow client height

I'm using http://1.latest.truxmap.appspot.com as my sandbox for trying to figure this out. I want to have the background color of the content in my info window set dynamically. This works fine, but if I place the div inside the infowindow without changing the css, it displays too low within the infowindow. However, if I use css to br...

get latitude and longitude using zipcode

i want to get the latitude and longitude using the zipcode for android application ...

I need to know the predefined point is in the sea or on the land

Hi, I have a system where users put some coordinates (latitude/longitude), I need to check if specified coordinates are in the sea or not. Is there any service that could give me the answer. Or is it possible to do this using google maps. thank you in advance. ...

Address format for Google Maps

I'm trying to make something that parses text for possible addresses and turns them into Google Maps links. Is there any reference for the most general address format that Google Maps will accept as a query? Seems like something they'd want to make public, but I can't find anything in the docs. ...

What is the difference between "marker.setVisible(false)" and "marker.setMap(null)" in Google Maps v3?

I want to clear marker on Google Maps. What is the difference between marker.setVisible(false) and marker.setMap(null)? But i don't know which is right? Thanks ...

setTimeout in loop to check for a change in bounds

This is my code: var b; while(!b){ setTimeout(function(){ alert('sss') b=1; }, 500); } and it will not alert 'sss' What can i do? Updated: I want to get bounds on google maps v3: function get_bounds(){ var bounds_; while(!bounds_){ setTimeout(function(){ ...

how can i check the marker is or isn't in the bounds using google maps v3 .

This is my code,i think it may has some mistakes: var bounds_array; google.maps.event.addListener(map,'bounds_changed', function (){ var bounds_=map.getBounds(); if(bounds_){ var leftBottom=[bounds_.getSouthWest().lat(),bounds_.getSouthWest().lng()] var rightTop=[bo...

Random marker within a rectangular bounds?

this is my code : function getRandom_marker(bounds) { var leftBottom=[bounds.getSouthWest().lat(),bounds.getSouthWest().lng()] var rightTop=[bounds.getNorthEast().lat(),bounds.getNorthEast().lng()] var latlng=[leftBottom[0]+Math.floor(Math.random() * (rightTop[0]-leftBottom[0])), leftBottom[1]+Math.floor(Math.random() * (right...

Any alternaitve to the Google Map mapcurl?

Does anyone know how to mimic the map curl in the Google Map application without using the undocumented mapCurl and mapUncurl API? Ideally I would like to do the same thing as the Google Map application. If this is not possible, is there any way to 'slide' the map image up to show the options? ...

create linked resource for embedding Google map in mail

I have used Google static map and created linked resource and embedded it in email and sending the mail to all users. I send a request to Google server and convert the response as stream and then created linked resource using that stream. The problem is I have used for loop and sent mail to all emailid's present in the Database table, i ...

Google maps info window open() panTo edge of map

Hello i have these two lines map.panTo(respectiveMarker.getPosition());//Center in map the respective marker infoWindow.open(map, respectiveMarker); When infoWindow.open is executed the map pans to the edge. If i remove this line the map pans to the marker as expected. Any ideas? ...

Adding a route to a MKMapView

I'm trying to add a routing feature to an app I'm working on. I found Craig Spitzkoff's article on how to draw lines on an MKMapView which works pretty good. But since I don't have the coordinates of the points on the roads that doesn't help me as expected. Is there any way to determine the coordinates between to given points, say my cur...

Problem with google maps subway stations

I need to find nearby subway station from the specified point in nyc. I am trying to use google maps api, I found some examples how to get nearby streets or place names etc. but can't find stations. I think there can be two ways of doing this: if I find list of subway stations with coordinates (latitude, longitude) I can write script ...