Markers identify locations on the map. By default, they use a standard icon, though you can set a custom icon. Markers are designed to be interactive and are often used within event listeners to bring up info windows.

learn more… | top users | synonyms

0
votes
1answer
15 views

Google Maps API 3 - Javascript: Markers don't appear if created in function

Here's the problem: if i try to create markers in the initialize() function everything works, but if i try to do it in another function, markers won't appear. GoogleMap.js var map; function ...
0
votes
1answer
17 views

Google maps - custom marker with number

I am currently displaying a marker using the following code: var marker = new google.maps,Marker({ map: maps, position: coordinate, icon: ...
0
votes
0answers
18 views

Android Google Maps v2 add new building labels with markers

I am currently writing an android application and I would like to add some new labels to the buildings. I have successfully add text on top of the buildings by using marks with custom icon/bitmap ...
0
votes
1answer
13 views

Google Maps API marker.setPosition() not working

I'm working with Google Maps API v3 (javascript). I need to put marker on map if coordinates exist in the model (.NET MVC 4). Coordinates are put to view correctly and I know that because map is being ...
0
votes
1answer
22 views

In first click google map info window not opening, its opening on second click only through ajax call, in V3

I am using below code to open up a infowindow in my map through ajax call var openedInfoWindow = null; var infoWindow = new google.maps.InfoWindow(); function profileInitialiser(marker, location) { ...
0
votes
0answers
15 views

Google map infowindow loaded with link, after click that link it will open in Facebox in google maps v3?

The part1 code calls, In google map v3 while click on the marker icon. After clicked the icon, google map info window is opened. In that infowindow contains one link. After click the link the content ...
0
votes
0answers
11 views

Two types of markers in Google Maps using MarkerClusterer

I have two kinds of geolocation informations: one is the exact location, the other is an aproximated, region level geolocation. As I show these informations on a map, I would like to be able to use a ...
0
votes
0answers
18 views

Google Maps areas zoom level stages

I have map with a lot of markers, a part of they must be showed at the country, a part at the state and a part at the city zoom stage, but because the large of the areas is different, I don't know the ...
-1
votes
1answer
26 views

Custom Marker Overlay [closed]

How would I implement a custom overlay similar to the Wikipedia Layer of Google Maps on Android? It seems they are overlaying markers dynamically based on X/Y/Zoom, only showing smaller wiki entries ...
0
votes
0answers
24 views

Ruby on Rails: Adding a local image in a Google Maps marker

I have a page show_map.html.erb that displays a Google Map (currently working great). I want to add an image instead of the pin marker on the map. I have Googled a lot for this question, and found ...
0
votes
1answer
26 views

How to create a marker only drawable into the bounds of the circle area?

I need show a marker only into the bounds of a drawn circle whose area is the precision of the location. The draw of the circle is no problem but the limits of the draggable area is no possible for ...
0
votes
0answers
28 views

Change visbility of markers on a google map taking into account respective attributes

I have a google map on my website that receives all the marker information through makethemap.php Its working all fine and the map is correctly generated. However, I don't know how to change the ...
-2
votes
0answers
34 views

Remove and Add marker on google map after on click event

On google Map, i search one address on click and showing marker. Now i change address and click on the button, showing marker of both address also old and new). that time I want to remove old marker ...
0
votes
2answers
43 views

display issue with markers on google map

I will admit first off that I am very new at this so I may not seem the brightest but I am essentially tying to get data from the database (preferably address locations) to show up with marker pins ...
1
vote
1answer
29 views

Multiple setonInfoWindowClickListener not working

So these are my two loops in the map and when ever i click the setoninfowindow i only get the first.class in the new screen. say if i click one of the marker it has to go to first.class and if i click ...
-1
votes
1answer
19 views

Add a carriage return into a Google Maps Snippet

I'm using google maps apiv2 and I'v added a marker on the map. The marker has a long snippet, so I want to insert some carriage return into the string. I've tried \n, \r and ...
0
votes
1answer
23 views

How to create multiple infowindow in google map api

I create 3 markers in the map whose data comes from a json. but when I click on a marker and try to open the Info window only the last marker will response correctly.. please help me.... this the ...
1
vote
1answer
34 views

Drop marker slowly from top of screen to location on android map V2

I am using android maps v2works fine I can add and remove markers onLong Touch on locations. Problem: I would like to drop the marker slowly into the touched location i.e. I want the user to see the ...
0
votes
0answers
69 views

New Google Maps: How to get marker urls?

There is a new Google Maps UI since Google I/O 2013. It's possible to active it in current JavaScript API 3.12 via google.maps.visualRefresh = true;. Now I'd like to have the urls to the new (much ...
-1
votes
0answers
31 views

How can I Simultaneously load kml file data on Google Maps and Markers from Database on same Map?

<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script> <script> function getUrlVars() { var vars = {}; var parts = ...
0
votes
1answer
32 views

Uncheck dynamical checkbox -> remove marker

I really searched everywhere but I can't find my mistake in my code. I have information that is dynamical loaded into a checkbox (I only have one checkbox on my html) because I do not know at advanced ...
0
votes
1answer
111 views

How to add image into InfoWindow of marker in google maps API V2 Android?

i have this mapa.addMarker(new MarkerOptions() .position(latlng) .title("HI") .snippet("HI;HI") ...
0
votes
1answer
153 views

Driving route from my location to multiple destination in Google Maps Android API V2

can you help me how to draw a driving route from my location ( current location ) to a some locations which we manually enter in the program, so when we taped a marked location, a driving route will ...
0
votes
0answers
37 views

Update the marker with touch the screen

I already finish all the code of update location and upload long and lat to database but I found that when my location change, I need to touch the screen to update the marker(my location)(just like ...
0
votes
1answer
43 views

Want to solve deprecation issues in the Google map API v2

I have a project which is currently using the Google map API v1. Now i need to change it into version two. for that one of my customized itemized-overlay class should replace with Marker class with ...
-1
votes
1answer
44 views

Failed in clear the route of the Direction Service in Google Map API 3

When i click a button to reset the map by clearing the marker and the direction route, i am not sure the user have already created the route or not. My function will be dead if the following codes are ...
0
votes
2answers
40 views

Failed in clear markers in Google Map API3

I have created a function to add the marker when there is no marker on map or remove the original marker and added a new one to replace it. However, i can add the first part of script successfully to ...
0
votes
0answers
19 views

Android: Google Maps: Using an Intent can you send a phone number to Google Maps along with location?

Android: Google Maps: Using an Intent can you send a phone number to Google Maps along with location? Just as you can send a place name that shows up in the marker info window, can you include a phone ...
0
votes
2answers
137 views

Google Maps infowindow doesn't open / display:none

I'm currently working on a store locator for a grocery store. Their website was built in Drupal, but I'm coding the store locator from scratch rather than using Drupal modules. So far, everything ...
0
votes
0answers
8 views

google map with marker doesn't show correctly

i want to ask a question, i want add a google map with marker inside accordion, but it seems that it doesn't show correctly please take a look here, it shows correctlty when it is outside accordion, ...
0
votes
2answers
49 views

Javascript setTimeout with google maps markers

Ok, My page gets some markers from a database via JSON and places them on a google maps map. It works ok, but the problem is to show this markers one by one with a small lag, and not all at the same ...
0
votes
1answer
32 views

google api markers are showed on firefox, not on crome or safari

I am able to show markers froma a json in firefox web browser but crome and safari not. perarps it depend on the form of my jquery script retrives the json? My jquery code is: (function() { ...
1
vote
1answer
23 views

Common closure issues for looping markers in Google Map API

I am a beginner to write a webpage and would like to show some markers in the google map with infowindows. However, i found that the infowindow always show the information of the last records. With ...
3
votes
1answer
58 views

Google Maps Places not working on Android

I am trying to develop a web page that uses the Google Maps API. So, I'm using this library: http://maps.googleapis.com/maps/api/js?sensor=true&libraries=places The page loads fine in a UIWebView ...
0
votes
0answers
66 views

Offset x,y location of D3 markers on Google Map v3

I am trying to overlay multiple markers at the same lat/long using d3.js on Google Maps. The data I am trying to display is weather data so I would like the marker to display temp, dewpoint, relative ...
0
votes
1answer
13 views

Where is my Google map marker?

I'm trying to get my single marker to show on the Google map, my coordinates are right, and the map shows, just I dont know the code for the marker. Can anyone help? Here is a link to the live page ...
1
vote
2answers
42 views

adding Markers on Map, that should not move

I want to add marker on GoogleMap like UI Controls (Zoom controls, Compass, MyLocation Button). so that when i swipe on map screen, those positions not change. ...
1
vote
1answer
87 views

Change marker color in Google Maps V2

I'm trying to change the color of a marker. I have this: private void addMarker(GoogleMap map, double lat, double lon, int title, int snippet) { map.addMarker(new ...
0
votes
0answers
31 views

Put a number inside Marker Google Maps v2 android [duplicate]

I have done a cluster for markers in google maps. And works fine, but, now I want to put the number of markers that have been clusterized in the marker that has all of them. But I don't know how to do ...
0
votes
0answers
14 views

how to get route between 2 markers by adding the markers on click event of google map in javascript

pls help me.I have placed 2 markers on click event of google map but i am not getting how to find the route.i want that on clicking for placing the second marker the route should be automatically ...
0
votes
1answer
62 views

Android - How to add Google Map Marker Label?

I want to add a label to Google Map Marker. I have already added Title to the Marker which is show on tap.That label contains dynamic values and it should be visible always.Just like How can I do ...
0
votes
1answer
49 views

Removing group of markers Google maps API v3

I want to view and remove markers on map depending on user click over location type.. I am using this code to remove markers 1- Define markersArray as global array var markersArray =new Array(); ...
0
votes
0answers
20 views

How does Google Charts dynamic map marker work?

I have to create dynamic markers for google maps. I found the charts API which will create dynamic markers with random colors and letters in it here. But my manager now wants it to be done on a ...
0
votes
1answer
70 views

How to add marker on click event on google map and find the route between them?

function initialize() { var mapOptions = { zoom: 7, center: new google.maps.LatLng(21.7679, 78.8718), mapTypeId: google.maps.MapTypeId.ROADMAP ...
0
votes
1answer
56 views

Google Maps Dynamic Styled Markers

since the V2 markers are depreciated from here. https://developers.google.com/chart/infographics/docs/dynamic_icons#plain_pin Is there an alternative to this for V3? I am really not needing anything ...
0
votes
0answers
69 views

Auto-pan map to fit infoWindow after loading with content from ajax

I use an implementation of google maps that loads markers on the map at locations determined by a php script that allows the user to filter though points of interest based on search criteria ...
0
votes
0answers
35 views

Markers opacity in StyledMarker with google maps

I am using this library to dynamically generate my markers because the dynamic icons are deprecated. Now, in this API there is not the possibility to set the markers opacity..and this is crucial for ...
0
votes
2answers
52 views

How can i capture the click event when a default marker/place is clicked on googlemaps?

I am working with Google Maps API V3. The googlemaps displays markers for some places/location by default, I need to capture the click event when one of them is clicked.. I have tried to use the ...
0
votes
1answer
105 views

jQuery ui map interaction from infoWindow/marker

I am preparing a jQuery/google map to list all houses in my database. All works ok. Now I added a DIV in the content of the marker infoWindow which on mouseouver triggers a Style background-color ...
0
votes
0answers
36 views

Google Maps using MarkerManager to prevent duplicate markers

I have implemented the marker manager on my application to prevent duplicate markers every time i click on a button, however multiple markers still get added to the map. Can some one point out to me ...

1 2 3 4 5 26