Tagged Questions
0
votes
0answers
13 views
Google maps markers not displayed in Chrome
Since the latest version of Chrome (27.0.1453.93 m / Windows 7) Google map markers in the Chrome browser will no longer be displayed. In IE10 and Firefox everything works fine.
Example (Google code ...
0
votes
1answer
71 views
Android Google Map - Clicked marker opens new activity or bigger window
I've been searching for help on implementing OnMarkerClickListener but nothing I've found has worked. This is my marker below and when clicked it only changes colour(light blue). I'm looking for it to ...
0
votes
0answers
51 views
Displaying dynamic content in Google Maps API (in the map… NOT infoWindow)
Background: Currently, the code I am working with, displays a custom icon and as data it shows an image file(company image/logo). If I click on the icon, the infowindow popus up and I can see the html ...
0
votes
0answers
9 views
Google maps api, check if a point is under a ground overlay
I've a google maps api with a ground overlay of a network coverage.
Is'it possibile to check if a point in "covered" ?
Thanks
0
votes
0answers
116 views
Google Maps API v3 and jQuery adding multiple markers by mouse
I tried to make a jQuery Mobile test program where the user can add multiple markers to a Google Map by right clicking mouse over the desired marker location. Marker appears to the right location but ...
0
votes
1answer
55 views
How does Google Maps Android API v2 decide the order of coincident markers?
I've looked through all the existing questions on this topic and while many say there is no way of changing the z-order of markers on Google Maps (Android API v2), I was wondering how Google Maps ...
0
votes
0answers
45 views
marker dragend event doesn't work
I have this code:
the code in function() of 'dragend' event doesn't execute and the latFld and llgFld in the document doesn't update
any help ?
var map;
var marker;
function initMap()
...
0
votes
0answers
43 views
Submiting Marker Values Google Maps
Hi i am trying to submit the latlng values of a draggerble marker to the database using a Submit button. However , i can not get the input of the latlng. I have tried to have input type id as ...
0
votes
0answers
17 views
rails marker id link information to index
Hi I'm a bit stuck with a project in rails. I've got a google map with markers, each marker has an id which is being passed into json. everything so far is ok when i look at the console the id is ...
0
votes
2answers
131 views
How to center map on marker click to show whole InfoWindow
Ok, by default on marker click, marker is centred on the map. The problem is, that i have high infoView, inflated from layout, and it show out of map bounds. What can i do, to center pin horizontaly, ...
0
votes
0answers
53 views
Mark country on map based on name Google Maps V2 Android?
I have included google maps v2 in my app and I was wondering is it possible to pinpoint a country on the map by providing the country name? For example I might want to pinpoint France on the map ...
0
votes
0answers
43 views
Google Map API V3 - Marker library issue
I had interesting issue with markers, custom markers were broken on hover event.
I assumed it could be related to google api changes...BUT, I'm using version 3.3 which is frozen.
After few days ...
0
votes
0answers
10 views
Second click to stop action? Google Maps API
I have the following actions attached to a marker that, when clicked, will zoom, open an info window and start the marker bouncing.
google.maps.event.addListener(london, 'click', function() {
...
0
votes
1answer
50 views
google maps add single marker on click don't works
I've googled and searched deeply in stackoverflow with no results.
i have the following code:
<script type="text/javascript">
function initialize() {
var map = new ...
0
votes
0answers
18 views
Link for sharing a map marker with name
I want to convert a point of interest to a link, i.e. I have a pair of coordinates and a name for the marker, and I want to convert these to an url which can be opened in a browser and displays the ...
0
votes
1answer
83 views
Openlayers: markers disappear when zoomming
I'm new with Openlayers, so not sure what is wrong. I can add markers when I change a select drop down and when I click the map. The issue comes when I zoom the map, the markers disappear.
I ...
0
votes
0answers
149 views
Google Maps locations from SQL Server - Error
I want to show differente locations in a Google Map. These data are stored in a SQL Database.
I've create the database named 'MapSample'. The table 'Locations' have the next columns: ID, Longitude, ...
0
votes
2answers
66 views
Marker doesn't show in maps api V3
Why does my marker not appear?
I also tried without the line "marker.show", but the marker just seems not to appear.
<html><head><meta name="viewport" content="initial-scale=1.0, ...
1
vote
0answers
84 views
Dynamic infowindow array from database cat get to work. included show/hide different marker type and marker cluster in one
Im trying go get my map to work for over a month now. I have read many many posts but cant get it to work 100%. I tried all kind of suggentions from here.
So far cluster marker works, show/hide ...
0
votes
0answers
25 views
Map wan't display neither move the Marker
In my small application I want to show the GPS data from a csv file. This works fine and the map changes it's position. But I can't display a marker neither move it's position. The marker shows up ...
3
votes
1answer
107 views
Disable onMarkerClickListener completely in Maps API v2
I want to disable clicking/tapping on map markers. I know you can "disable default behavior" by setting up and empty map.setOnMarkerClickListener and return true; However, this still takes the tap as ...
0
votes
0answers
73 views
Click and save multiple locations on Google Maps panel
So I would really like to have a google maps panel on my page (utilizing PHP) where the user can click on a couple locations and it will then save each location some how so I can upload them to a ...
0
votes
0answers
76 views
add unique id into maps makers infowindow html
I want multiple infowindow in me maps with unique id for use this id. Code work fine but....
I'm trying add unique id in textarea html code into infowindow (localizaciones[4]) but always save same id. ...
0
votes
0answers
68 views
Google maps APIs - clicking marker zooms in on wrong one
This question is similar to that found in this post centering on marker, Google maps api. I'm making a map that has many markers on it, created inside a for loop like so:
var GPS_coords = <? ...
0
votes
0answers
54 views
Google Maps is showing some misbehavior
I'v managed to implement the Google Maps Api which shows multiple marker, but the Maps Div is always showing some misbehavior like in the picture below (shadow is incorrect, there is a wave (?!) under ...
0
votes
0answers
20 views
Markers with text in android maps api 2
I would like to update my android app to Maps API 2. However I didn't found a good way to create markers containing text. In the API1 it was possible to create own views in the ItemizedOverlay. Is ...
0
votes
0answers
85 views
custom google maps marker based on user count
I'm building a web app with a google maps that already tracks users and their location. I want to place custom markers that change in size based on the number of users logged in at a given location.
...
4
votes
1answer
2k views
How to get screen coordinates from marker in google maps v2 android
I have a small android problem (google maps v2 api)
This is my code:
GoogleMaps mMap;
Marker marker = mMap.addMarker(new MarkerOptions().position(new LatLng(20, 20)));
I am trying to find a way ...
3
votes
1answer
1k views
Add Marker function with Google Maps API v2 android
I'm using the new function addMarker googlemaps api for android.
map.addMarker(new MarkerOptions()
.position(new LatLng(40.417325, 40.417325))
.title("Hello!"));
works great, but my ...
0
votes
1answer
158 views
Add marker on map by tap and hold on location
I've managed to create an google API and use maps and read guides, but none of them solves the following feature:
Tap and hold on a certain location to add a marker
In most of existing guides it ...
0
votes
1answer
159 views
Simulate click on marker with KML with Google Maps API v3
I'm using a kml file to create markers on the map.
I need to simulate a click on a marker to open the info window by clicking an external elements (i.s. a div) knowing latitutude and longitude cords.
...
1
vote
1answer
194 views
Can you programatically draw pins (Markers) by distance on a Custom Google Map route
When going to the Google website and signin in you can click on the “Maps” option from the toolbar menu at the top of the page. Click on the “My Places” button and choose “Create Map.”
There you can ...
1
vote
0answers
465 views
Google Maps JavaScript API3 marker.setMap(null) Not Hiding the Marker
The marker.setMap(null) call doesn't remove the marker from the map.
I have confirmed the map and marker vars point to the right place but the setMap(null) call simply leaves the marker visible on ...
0
votes
1answer
88 views
Opening media from google maps custom marker
So I'm working on a custom google maps tour type application and I'm wondering how to get media to popup when I click a link within a google maps marker. Ideally this is what I would like to happen:
...
2
votes
3answers
330 views
Google maps v3 markers disappear when zooming in on the map today
I am running a google maps v3 web site and today markers that are wider than 55 disappear when zooming in and reappear when zooming out. Theese markers have shown allright until today, maybe google ...
1
vote
0answers
45 views
How to move with green marker from Directions Service in real time
I am making project with Geolocation API from Google. When you select Budova(Building in english) and then choose number of budova you will get a way to this building. I want to make realtime ...
0
votes
0answers
53 views
How to stop google maps refreshing?
I have this site with Google maps: http://testepi.kvalitne.cz/mapy/
How can i remove that map reloading every 3 seconds? I just want to update position of marker every 3 seconds, not refresh all map.
...
3
votes
1answer
167 views
Marker Using base64 encoded string
I am trying to use a custom marker on a Google Maps by using a base64 encoded string. Somehow it doesn't work. This is how it is supposed to look.
- used a image
Problem URL
THIS
1
vote
1answer
610 views
Google Maps marker is set draggable, but cannot drag it
API v3
I have a strange issue with a marker:
The marker that I place on the map is set to be draggable, WebInspector reports it as being draggable, but I still can't drag it. The cursor doesn't ...
0
votes
0answers
126 views
Save google map marker in mysql
I'm creating an application where the user can set their address by dropping a marker in a google map. I want to save the marker latlng, so then it can be displayed in a map.
My questions are:
How ...
0
votes
0answers
61 views
change icon on google map KmlPlayer
I've this code that fetches the images from a user on flickr and post them on a map:
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
...
0
votes
0answers
185 views
Google Map Marker from a XML
Using JQuery to get a XML and put markers on google map.
Here is the xml, which consists of more countries then this
XML
<Root>
<Row>
<Longitude> 45.421588 </Longitude>
...
0
votes
1answer
522 views
Add markers to map from SQLite, and center/fit them in zoom (Android)
I really need help populating a map with markers from coordinates stored in my database. I've worked with populating listviews from SQLite, and I can add markers to a map, but I cannot figure out how ...
0
votes
0answers
78 views
Google Maps API Gather information on existing location
I've been looking around and I can't find the answer to my problem.
I want to place markers in random location on Google map. Google maps already have some markers populated by their business. So how ...
0
votes
0answers
175 views
How to hide and show marker based by region on Google Maps (just like category)
I am crazy because thinking of this problem!
Oke, lets talk about the problem :D
I want a button and clickbox to show or hide the marker, I want the marker show when I check the region clickbox and ...
0
votes
0answers
328 views
google map marker overlay listener
I have a circle on map, and I found there is no way to place circles on top of markers, so I come up with this..
In my marker creation loop, I have a function -
function checkcircle(marker, map, ...
0
votes
1answer
308 views
Multiple Marker InfoWindows in Javascript
I'm quite a noob when it comes to Javascript, but I'm trying out something for my website/school project.
On a map I want to display 2 locations, with each a marker and an informationwindow of there ...
1
vote
0answers
382 views
HTML5 Geo Location and draggable marker on Google Map
I am trying to write a geo location webpage which displays the user's approximate location on a map. If they click on the marker they can drag it to their exact location.
I have this code to do the ...
0
votes
2answers
813 views
How to rotate custom marker image on google map v3
after 4-5 hours of googling how to rotate custom marker image on google map v3, i am posting here this question. please suggest any solution with example.
thanks
manish
2
votes
1answer
82 views
Client-side clustering: Could someone explain what this line does?
The following JavaScript function was taken from http://sg.openrice.com/js/en/sdmap.js
(web page that includes this external JS file: ...


