google-maps-markers

Accessing Sqlite3 database using JavaScript

Hi all, I hope someone can help me here. I am developing two apps at the minute, one iPhone, one Mac. Both have maps, the iPhone one has standard map and the Mac one has an embedded webviw that displays the map using a webpage with JavaScript. What I would like to do is to take the core data sqlite3 database from the iphone app and re...

How to animate a marker smoothly with Google Maps?

I've written a small algorithm that animates markers' movement from one point to another. The algorithm looks like this in pseudocode: lat_delta = new_lat - old_lat; lng_delta = new_lng - old_lng; for(alpha=0; alpha < 1; alpha += 0.1) { lat = old_lat + (alpha * lat_delta); lng = old_lng + (alpha * lng_delta); update_marker(lat, l...

google maps custom markers / shadow help needed

Hi all, so I have google maps directions on my website, I have managed to change the icon, although I can't seem to get it to align it with the original marker shadow (which I actually need help removing also, it's just a good point to show that my custom marker is off). I hope this made sense? The url is: http://www.emuholidaypark.com....

google map link with marker (on iphone & android)

I've tried to open Google Map application on iphone & android. From iPhone developer reference website I am able to open the native google map from link. http://maps.google.com/maps?ll=11.5558762589,104.921697935&amp;z=15 However, I have trouble with adding a marker into the map. As in google static map, we can add markers into map. I ...

Google maps Info Window Overlay content just like that in maps.goole.com

I want have the info window content for a marker just a s below My code so far is loadEmbeddedMap : function() { var script = document.createElement("script"); script.type = "text/javascript"; script.src = "http://maps.google.com/maps/api/js?sensor=false&amp;callback=initEmbeddedMap"; document.body.ap...

Use an SVG for a marker in Google Maps?

i know it's possible to add svg overlays to google maps. i'm wondering if you can use svg files as markers. i tried setting it just like you would a png or jpg file, but nothing shows up. let me know if i should post my code, but i think i am probably approaching it in the wrong way. thanks. ...

how to place videos into infowindow of google map

I have written the following code to display images and contents on the google map ,how can i place some sample video in one of the tab. function createMarker(point, name, address, imagepath) { var marker = new GMarker(point, gicons[imagepath]); //var html1 = '<div><a href="#" class="DataHead">' + name + '</b></div> <br...

Google map (v3) infowindow opening on the same marker all the time...

I create several Gmarkers (from JSON data loaded by JQuery "load" function), on all of them I add an event listener to open the infowindow object I created before on the marker, and then I add them all to the map. The issue is that the infowindow always opens on the same marker. I all had this working before, i can't see where the prob...

Timers and Maps Android

I'm having some troubles with displaying ItemizedOverlay(s) on a map. Here I extracted a simplified example of what I need to do. Here's my Map class: import java.util.Timer; import java.util.TimerTask; import android.graphics.drawable.Drawable; import android.os.Bundle; import android.util.Log; import com.google.android.maps.GeoPoint...