How do I take shapefiles and extract lat/lng coords so I can plot polygons on Google Maps?
http://www2.census.gov/cgi-bin/shapefiles/national-files
I asked this question here:
http://groups.google.com/group/Google-Maps-API/browse%5Fthread/thread/18763b4b0cb996c7
and they told me WHAT to do, but not HOW to do it =P
Thx!
...
I am looking for a reference on how custom map like gothere.sg is built. As far as I can figure out from understanding their architecture, they are using their own map server (their visual map looks so beautiful). On geocoding and much other functionalities, they're still reliant on Google Maps API.
Please post what you understand from ...
Hello,
Is there a way to only show the "3D" style panning control in Google maps, i.e. don't show the zoom controls.
Regards,
Jonathan
...
I am writing an app that will use Reverse Geocoding to translate the user's current location into something like a Street Address or City. It seems the only way to get this kind of information is via MapKit (specifically the Placemark class).
Can I use this without having to display a map to the user?
The reason I am asking this is bec...
Using Google Maps, I am trying to have an info window open with tabs in it, each tab showing a different city for the selected country. The problem is that the city names don't always fit into a tab so they make the design break. How can I change the dimensions of the tabs considering that I have to pass a string as tab label (not a node...
Is it possible to get the trip ETA (in number of minutes) and traffic data from the google maps API between two address points? Does anyone know if the ETA value reflects traffic conditions?
...
I have developed an application in which the data About Schools are stored in ASP.NET Web Server.
The database has following values.
=>School Name => Longitude of School => Latitude of School.
Now, I retrieve all the data in iPhone through web-service & NSURLRequest.
Now, Following is my Problem.
When user Clicks on a school ( in ta...
I've experimented with Simile's exhibit and see the usefulness of the graphical display via a prototype implementation on machines which have access to the internet. We have need to migrate the prototype from the open internet to a closed intranet, where only internal servers are available.
The timeline seems feasible, but maps depende...
Hi!
I was wondering if there's any way to check whether or not a polyline in Google Maps goes through a particular coordinate or a geographic location.
I'd like to find out, for example, if a polyline goes through a particular road marked by latitude/longitude, or if it goes through New York.
Thanks!
...
Hi,
I'm new to jQuery Thickbox. I've implemented the following code:
HTML:
<a class="thickbox" href="javascript:void(0);" onclick="javascript:initMap(lat,lng,'htmlmsg',1);" >map</a>
<div id="show_map" style="display:none">
<div id="map_canvas"></div>
</div>
JS:
function initMap(x,y,msg,flg){
var map = new GMap2(document.g...
Hello all. Today I am trying to make a store locator using google maps' api.
The store locator is to be set up like so:
two areas, one with a map containing all the stores in a given area (measured in a selectable radius from a center point), and one area with a list of all the stores on the map, their information, and of course a link t...
I'm working with the google maps API, and testing a section which geocodes all the addresses in a database which do not have coordinates, then generates a report of which were successful, and which failed.
If any of the locations couldn't be found, it should put a form at the top of the page to allow the user to either modify the addres...
I've installed the Google Maps Java 2 ME app on my Nokia N73 which supports the Location API (JSR 179), but does not have an in-built GPS sensor. The "My Location" features works correctly, and is able to pinpoint my position within the city.
When I tried to access the CellID, LAC and other related data, I got nulls. So how is Maps abl...
I am using Google Maps API to get the distance between 2 UK postcodes.
var yourPostcode = $("#YourPostcode").val();
var restaurantPostcode = $("#Postcode").val();
var point1 = GetPointFromPostcode(yourPostcode);
var point2 = GetPointFromPostcode(restaurantPostcode);
var distance = point1.distanceFrom(po...
Hello Code Wizards,
I am a total NOOB in programming (but this is only my second question on stackoverflow :-) ).
By a foreach function I get 5 different string values for $Loncoord, $Latcoord, $gui;
this I can see with the print_r in the code written below:
"-5.68166666667","+24.6513888889","IMG_3308",
But I now want to create 5 di...
I'm displaying a small Google map on a web page using the Google Maps Static API.
I have a set of 15 co-ordinates, which I'd like to represent as points on the map.
Due to the map being fairly small (184 x 90 pixels) and the upper limit of 2000 characters on a Google Maps URL, I can't represent every point on the map.
So instead I'd l...
I need to display a set of markers on a google map. In addition, I need to show additional markers, loaded dynamically, when the user pans the maps.
The number of markers could be in thousands, out of which 30-50 need to be displayed initially. Other markers need to be loaded and displayed only when user pans over an area that contains ...
Hey
I got some problems loading google map into a jquery $.post...
the output is correct in firebug.. but it wont show the map :-/
Any idea how to fix?
$.post('/ajax/index.php', {action:somedata}, function(data){
$(div).slideDown(500,function(){
$(div).html(data);
});
},'html');
and then I load the data via...
Hi,
I'm not an expert but i know a little about HTML forms, here is my problem
i want to create a simple html page with form for my customers to enter a gps values to maps.google.com and get back the result page embedded in the same html
here is the exact format of my string
as an example : 32 06 12.66N, 20 12 22.65E notes that th...
We're using the Google Maps API for an application to determine distance and driving directions for a set of addresses in a database. Overall, we're dealing with around a 1000 addresses and some have typos, abbreviations,... that are causing some problems with returning the proper address hit (lat/long).
For addresses that don't return...