hi, i was wondering if anyone knows of any gps receivers that have a fairly good API..
I am hoping to develop a simple app that will show my location (live) on google maps using the google maps api but of course would need an recevier that i can interface with too whilst on the move.
Cheers.
NB: Work would be done in c#.
...
I've added ability for users to add new point on my google map. My code:
GEvent.addListener(map, "click", function(overlay,point) {
if (point) {
var myHtml = '<div id="addpoint"><form id="formadd" name="formadd_point" enctype="multipart/form-data" method="post" action="pointadd.php"><table><tr><td>Place:</td><td>' + point + ...
Is there a way to determine if a particular address is along a route within x miles? Is there support for this in the Google maps API?
I have a database of addresses and I am trying to figure out which locations lie along a given route as determined by the Google Maps API.
...
I'm working on a GWT app that's using Google Maps. I'm trying to add many lettered markers to my map. Originally, I had:
Marker marker = new Marker(point);
marker.setImage("http://www.google.com/mapfiles/markerA.png");
map.addOverlay(marker);
But that didn't work. The call to setImage caused an exception in the maps API and nothing sh...
Hello, guys.
I`m trying to dynamically represent the changes of coordinates of a groovy domain object via Google Maps API. The object has fields:
Double lat
Double lng
and a method:
void flyTo(lat, lng){
Thread.start(){
while (locked){
changeCoords (this)
this.save()
}
}
and here is a JS to repopulate changes to ...
Hi All
I am having some issues getting tiles to load into my MapView in android development. I have searched and looked at similar problems on here but with no luck so far.
I have looked at the instructions here and have got hold of my debug API key. I have entered this into my MapView.
I have checked that my emulator and my debug dev...
I have been modifying the code here: WhereIsMyMac to try and get a better understanding of CoreLocation for OS X. Unfortunately, I haven't been able to figure out how to modify the template HTML file to force a "Maps" view - my frame defaults to "Satellite View"
Here is the relevant line:
src="http://maps.google.com/maps?ie=UTF8&am...
I have been using a lot of Google Maps's API for getting geocoding and reverse geocoding services.
Do you know if there's a service (through http) that would return a route?
...
Hi All
I have been trying to get this seemingly simple problem fixed for about half a day now. I have a working MapView and I just want to show the default zoom keys and have them there all the time. They do not appear at all - it's not that they appear then go away.
Code:
public void onCreate( Bundle savedInstanceState )
{
super...
How do I add a marker on a particular location in the map?
I saw this code that shows the coordinates of the touched location. And I want a marker to pop or be shown in that same location everytime it is touched. How do I do this?
public boolean onTouchEvent(MotionEvent event, MapView mapView) {
if (event.getAction...
I have a com.google.android.maps.MapView in my application. When using the normal view I do not get any data in Jerusalem and its surroundings. When scrolling to the same location with the Maps app or the maps.google.com webpage the place is rich with mapdata.
Is there a (known) difference between the Map API view and the Google view of...
Is there another way to draw an object on a canvas in android?
This code inside draw() doesn't work:
Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.pushpin);
canvas.drawBitmap(bmp, screenPts.x, screenPts.y-50, null);
Well actually, it's working on my 1st code but when I've transfered this ...
Loving Google Maps API V3, but having difficulty in getting accurate driving directions and manipulating the destination address displayed when using DirectionsRenderer.
Regardless if I pass an address string or a latLng instance as the destination to DirectionsService, when I use the DirectionsRenderer to output step-by-step directions...
I can only post one link so here is a reference page with corresponding links: http://rireal.com/code/index.html
I am using a modified version of extinfowindow for Google Maps v3 (reference link 1)
to display a custom infobox window for my markers. While I
successfully implemented the InfoBox in v3, I ran into an issue with
IE during te...
I'm developing an application in which I need to display a message showing where to turn after user clicks a position on route highlighted with the help of directions on Google map.
There's this Groute class which provides much of the information like distance, duration between two places, but it doesn't give information about direction...
I'm creating a control for Google maps v2. While creating my control I've found a design challenge and want to find an appropriate solution. Here's the goods.
A custom Google control inherits from GControl;
myControl.prototype = new GControl();
Next I need to overload the initializer so here it is.
myControl.prototype.initilize = f...
Hi,
I want to get latitude and longitude from address in one of my asp.net application, i know it s possible using google apis but i want to do it without showing google map. How can i do that?
I also want to get distance between two pairs of latitude and longitude. Please guide me in that regards also.
Thanks
Pankaj
...
Currently, I'm developing an application, in which I have to show an infoWindow on click event on map itself.
My question is I want to show a button as well as a combobox on this infoWindow.
How can I do this?
...
Hello,
I've made an application based on the Google Maps API. The problem is that my application is made to be used in the wild, in places where there is no network.
So I would like to manage the cache in order to ensure that specific tiles are saved and available during the trip (I'd like to redirect them in database but any method ma...
I have a set of GPolygon objects which are attached to objects in my domain model and are added to a map on my page. The domain objects are being shown in a list on the same page and when the user clicks on one of them I want to show the associated polygon.
I want the whole polygon to be showing and ideally I want the map to be centred...