Hello All,
I would like to implement google walking/cycle directions into an Android app im creating but I'm struggling to get my head around how to do this. I've recognised that the most accepted way is to query google via http to retrieve a kml file, which is translated back into the android app. owever since I've been java/android pr...
Hey Guys,
I'm new to Google maps and I'm wondering how would I program a Map which would pop out a HTML form when the user clicked a location on the map? I'd like the form to "pop out" of the map on screen. is this possible?
I've got the following...
<script>
var contentString = '<div id="content">
<form actio...
I've embedded Google Maps via an iframe in my website. I can't use the API at this point which is why I'm using the iframe.
Is there a way to scroll the iframe so that the upper part of the Google Maps page (search bar, etc.) are no longer visible to the user?
...
I've been asked if i could create a website like these:
http://www.trackdollarbills.com/tour/
http://www.wheresgeorge.com/hits_by_county.php/
http://www.wherehaveibeen.com/
I'm curious as to how i would be able to calculate distance between places. For example if i were to enter a dollar bill in the system form Minneapolis, and that ...
New to the Google Maps API, so this may be a simple question.
I've got a Flex application that uses the Google Maps component. Is it possible to configure the component to use the v3 API (no maps api key)? If not, is there a workaround to use the Javascript API? Or a timeline for providing swc using v3?
I currently perform client-si...
A local real estate agent is wanting to add Google maps to his web site that display his listings. However, rather than just showing map markers to all his properties, he wants the web site visitor to be able to draw an arbitrary polygon on the map, click a button, and then display all his houses within those bounds.
My understanding i...
Hello, I've just started to learn development for the android.
I set up a test app with a basic textview that when you clicked on it, changed text. that worked fine. So I decided I wanted to do something interesting with google maps using mapview.
I've followed the instructions in the documentation, and looked around at the demomaps de...
Hey Guys,
I've got the following onClick function...
GEvent.addListener(map, "click", function(overlay, latLng)
{
if (latLng) {
marker = new GMarker(latLng, {draggable:true});
marker.openInfoWindowHtml(mes);
}
// display the lat/lng in your form's lat/lng fields
document.getElementById("lat").value = latLng.lat();
...
Hi,
google map, ip location etc etc working good.
but none of service pointing our computer exactly where we are in map
anyone know any api which locate our computer on map without user inputs.
or any api service there . since im tired of ip location its not at all exact pointing some where in the earth and ma client scolding a lot ...
I have successfully implemented code to plot multiple locations on google maps dynamically.
Solution: (link)
I am trying to create customized labels, like this:
http://www.codeproject.com/KB/scripting/Use_of_Google_Map/ex7.JPG
using Tom Morgan's marker:
http://abhi2434.googlepages.com/tlabel.2.05.js
adapted with this code below. (!...
I have a shared infoWindow for all my markers. It works good if I use jquery's $().each(function(){}), but if I change it to JavaScrips's native for or while loop, it's not working as expected.
Whenever I click a marker, it will open the last populated marker's infoWindow, instead of the clicked marker's infoWindow.
This works:
$(sto...
I want to make a google map on the iPhone and show the user's location when they first open the site.
But i can't find this method on Google Maps v3 api. So i think maybe the iPhone has the function to do this. Does it?
...
I have read up on GPS Real time tracking and found out several things about it, mostly requiring PHP, zope and a database to store the incoming data. Some other methods uses ajax with relations to PHP.
As regards to my question, is it possible to do so with just html and JS, using markers or anything else to populate the Google Map whe...
I am using google map in my application. I have an application regarding to property sales and purchase for that I have used google map.
But now I have to add Bird's Eye view in it. Since there is no such a concept in google map api, I have decided to use Bing map.
But when I implemented a bing map in it, It affected the functionality ...
On my website I would like to include a radius search for user profiles, similar to what Twitter is doing on their advanced search with "Near this places" http://search.twitter.com/advanced
I currently have a US zip code database with lat & lon data, but the site is now expanding globally. What's the best approach to adding local proxim...
I want to implement Google Maps in my web page, but I struck with one problem. I want to implement the Google popup info window that is clickable, i.e. the control in the below function.
The xml file having the following fields:
marker lat="43.65654" lng="-79.90138" html="university" label="university" control="http://www.google.com...
What is the best/easiest way to integrate google maps and silverlight? I would like to display a google map within a silverlight canvas, where the canvas will be surrounded by other silverlight controls that drive the map.
...
I created a public map using my Google Map. I want to set a default zoom level, but it is not saved. Is this possible?
Also, is it possible to change the list of place markers?
...
I wish to develop a mobile app (probably on Android) that plots disabled parking spots block by block on Google Maps. Given that the appropriate city/government agencies will most likely provide this data in some sort of paper printout of maps, how do I migrate this to a overlay/layer for Google Maps?
Any kind of help would be greatly a...
I have found several V2 examples of how to pan the map while a marker is being dragged. For example: http://www.putyourlightson.net/projects/coordinates
// create map and add controls
var map = new GMap2(document.getElementById("map"));
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
// set ...