Hi Guys,
i'm developing a little tool at the moment and i like to convert addresses into long/lat.
Is there any way to do this without using javascript because in my case there is no need to display anything since the conversion is in the background.
Thanks in Advance!
...
I successfully installed epoly.js for V2 and got it working.
However in V3 I get this error in my console:
ReferenceError: Can't find variable: GPolygon
Any ideas?
...
I have multiple addresses recorded in my database and I've used the Google Geocoding service to get their longitude, latitude, etc.
What do I need to do to calculate the proximity of one address from another in miles?
Ideally I want to show an entry and then say below it: "The following recorded addresses are close by."
...
I have an map on jBox on my drupal 6.x site. Now what I want to do is hide/remove the address bar that shows url to kml file and the links at top right and corner as shown in the image below. My issue is I can't seem to override the google map css because apart from few data everything else comes from google map/google. I have attached s...
When I am printing google map; it does not print icons; how can I print complete google map
I am using google maps api v3 for javascript
...
I need a Webcontrol (System.Windows.Forms.WebBrowser) in my Webservice, because I have to calculate distances between coordinates and for that I'll use Google Maps (geocoder). With the Webcontrol I could execute my javascript code to calculate the distance (WebControl.Document.InvokeScript).
Is there any way to get a webcontrol in a web...
I'm using the following code to generate a circle on a map using the Google Maps v3 API:
var postcode_a = new google.maps.Circle({
center: postcode_a_location,
map: map,
radius: 70,
fillColor: "#3da5e1",
fillOpacity: 0.5,
strokeColor: "#2b546b",
strokeWeight: 1
});
What I would like to do is place a text label in the centre of ...
I'm using a google map inside a div.
This div is positioned into another div creating a scrolling pane like so:
<div id="divcontent">
<div id="pane">
<!--here's our google map div-->
<div id="map"></div>
</div>
</div>
Now, the div "divcontent" has not got a z-index. Div "pane" has a z-index of 1.
Loading a map by zip...
i have a demo : http://code.google.com/intl/zh-CN/apis/maps/articles/mvcfun.html
but , i can't understand clearly ,
so has any more demo about it ,
thanks
...
this is my code :
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0px; padding: 0px }
#map_canvas { height: 100% }
</style>
<script type="text/javascript"src="http://maps.google.com/maps/api/js?sensor=fal...
the marker can drag , so the Custom Overlays can drag too ,
so how to make the Custom Overlays draggable ,
thanks
...
I've been trying to create a "Loading Images" message while the tiles of the Google Map are being loaded. My implementation basically goes like this:
When the maptypeid_changed or idle events fire, I display the loading message
The loading message is removed as soon as the tilesloaded event fires
The problems I'm facing are:
When t...
I am getting this exception when trying to start an activity (TestLocationActivity) that is derived from MapActivity, and which is declared inside an Android library project:
09-08 09:29:45.357: ERROR/AndroidRuntime(7502): java.lang.NoClassDefFoundError: msumo.business.testlocation.impl.view.TestLocationActivity
09-08 09:29:45.357: ERRO...
If you have used the Google Maps web app on your iphone or ipad you know what i am talking about. You can't see my fingers in this screen grab, but this is mid-pinch (if you will) zooming out. The detailed area was the initial map viewing area and the blurry bit outside is the extra map that has come into view mid-pinch.
The pinch-to-...
Hi
I want to use this jquery plugin in my rails3 apps
http://gmap.nurtext.de/ (Google Maps Plugin for jQuery)
It seems very easy to use:
$("#map").gMap({ markers: [{ latitude: 47.660937,
longitude: 9.569803,
zoom: 6 });
But i have a question, how i pass the values to this ...
Possible Duplicate:
how to parse xml file using google map api
I have the following code which returns xml output sucessfully but their is problem with parsing xml and displaying output on the map.when i look the request and response output on firebug i am sucessfully getting xml file but problem with parsing that particular f...
How to showActivity which will display route between two points.
This will start installed map application on android phone.
...
I have the following code the searchUrl gives xml output but i am not able to display output on map with markers.
var searchUrl = "http://localhost:1894/blockseek8-9-2010/Block3.xml";
GDownloadUrl(searchUrl, function(data) {
var xml = GXml.parse(data);
var markers = xml.documentElement.getEle...
I'm getting an intermittent problem with a google map (api v2) - "Error: 'G_HYBRID_MAP' is undefined". I'm trying to reference that variable in a function that is called on the document ready event, via jquery, i.e.
<script src="http://maps.google.com/maps?file=api&v=2&key=[key]&sensor=false"
type="text/javascript"><...
I just discovered that the google map on my site is no longer working correctly because all the functions which refer to the deprecated V2 don't work. My source for the google maps api javascript is
"http://maps.google.com/maps?file=api&v=2&sensor=false&key=....."
which, because it says v=2, I assumed would reference V2. A...