google-maps

is this Map API key Problem in Android?

Hi folks, I am using 2 map Activities. do i want to register multiple Map APi key for each? Now I am getting this exception: 06-16 18:49:41.498: INFO/MapActivity(11067): Handling network change notification:CONNECTED 06-16 18:49:41.498: ERROR/MapActivity(11067): Couldn't get connection factory client I googled about this exception. I...

Will I be able to embed google maps on a website that has markers without the API key?

Will I be able to embed google maps on a website that has markers without the API key? thanks ...

Google maps Street View with custom view

I'm curious whether it's possible to use Google Maps Street View as a platform along with custom views. To be more clear, I'd like to build a seating chart for a venue, where seats would have uniques views. As the user scrolls around or clicks on different seats, they'd be taken around the venue, just like in a Street View on Google Ma...

Google Maps marker as a link

Hello, I am using Google Maps for my website and I wander how can I use the Markers as links? I mean when I click a marker to open a particular link. Thank you in advance! ...

Android Maps Back Button

I'm developing an application that shows a path on a map, determined by a KML file. Specifically, in the MapActivity that is starting the map: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); MapView mapView = (MapView) findViewById(R.id.mapview); mapVi...

Is there a way to have a dynamic google map that opens links in _blank?

I came up with a good solution for a client showing a google map iFrame using the normal google maps embed. Only problem? They want the links inside the iFrame to open in a new window instead of there on the page. So, I used the static API to come up with a static image of a map and have that link to the google maps site with target="...

Google Maps JS API v3 - Simple Multiple Marker Example

Fairly new to the Google Maps Api. I've got an array of data that I want to cycle through and plot on a map. Seems fairly simple, but all the multi-marker tutorials I have found are quite complex. Lets use the data array from google's site for an example: var locations = [ ['Bondi Beach', -33.890542, 151.274856, 4], ['Coogee Beach'...

How to remove carriage returns from output of string ?

I am using wordpress as a CMS and trying to allow user fields to be input to populate the info windows in a Google Map script. I am using this to select the id and pull in the content from a custom field. It works fine unless there is any html in the custom-field which breaks the script. I looked at htmlspcialchar and htmlentities but ...

Google maps Unirgy_StoreLocator extension for Magento

hi,has anyone used Unirgy_StoreLocator extension for Magento? i've got the Google map showing up but how can i change the default map location and zoom value? thanks. ...

Google Maps API vs Multimap/Bing Maps API

I want to know if anyone who has experience of using both the Google Maps API and the Multimap API can give a good reason as to why one is better than the other - or maybe a list of pros and cons? I will be working on a complete re-development of a site which currently uses the Multimap (Classic) API and want to consider the possibility...

How are Google maps formed?

How are Google maps formed? Are they based on satellite image solely? How are locations and places named? I sometimes see very minute details; gathering them doesn't look like an easy task. ...

Android Map Itemized Overlay

In the android developer's webpage there's an example on how to show an alert dialog when the user taps on an item in the map. What I want to do is show the default bubble the maps App shows when you tap on a POI. Is there a way to do this? Am I missing something here? ...

ipad page curl control for customisation

I have noticed that on the iPad the google maps app has a very cool page curl control that sits in the bottom right hand corner that allows the user to change configuration settings. Is this control accessible for everyday developers, or was in built specifically for google maps on the iPad? Thanks ...

Is there a ways to make google store coordinates in the android map?

Hi. I'm in the middle of developing android app using google map. My question is - how to store coordinates with google map and display them later on? I know how to use canvas, how to draw it etc. but I want to store those coordinates with google map - just like with the google maps feature on internet. When I log in I can see points I'v...

GMap in iframe gets off-center

I have a Google Map (API 2) that used to work fine as a standalone page. However, when I load the map page within an iframe (with Thickbox), the map gets off-center: normally it's centered over Germany and in the iframe it centers on Iran, instead. How to make the map center correctly? My guesses: The problem can result from the if...

How to detect if a marker is inside a polygon in google maps

I've got loads of coordinates for a polygon in a database. I also have coordinates for an marker in my database. How do i detect if the marker is inside this polyon. Note: I use a cronjob to move the marker, and in this cronjob it needs to detect this. So javascript isn't involved! Shape of polygon is not just a circle or square. It c...

I am new to google maps..Need some help in printing the google maps with numbered markers.

Link to the map : http://2dynamic.com.au/glebe/maps-aamp-guides.html I am new to I am new to google maps..Need some help in printing the google maps with numbered markers. In the above mentioned link..we have dynamic markers in maps view..When i click on the print current map view..I need the map to be loaded with dynamically numbered...

Google map API 3 . Container div does not fill fully.

Hello. I have next problem: There is jquery accordion control. One of tab have div which contains google map. And map does not fill all div. If replace map div out of accordion all work coorectly. How i can fill all div ? Thanks. ...

How to move a marker 100 meters with coordinates

I have 2 coordinates. Coordinate 1 is a 'person'. Coordinate 2 is a destination. How do I move coordinate 1 100 meters closer to coordinate 2? This would be used in a cron job, so only php and mysql included. For example: Person is at: 51.26667, 3.45417 Destination is: 51.575001, 4.83889 How would i calculate the new coordi...

How to draw line connecting route between several points on Google Map?

Hi, I have real-time GPS data stored in a database and I'm currently pulling the lat/lon from this data and dynamically displaying them as markers on a Google Map. What I'm trying to accomplish is to use these lat/lon points to draw a path connecting them. I looked at GDirections, but that seems like it's only used to connect two point...