Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to Fix a Google Maps Marker to the Center of its Map always?

To be more precise, what I try to accomplish is that while I Drag a Google Map there's a Google Maps Marker that stays fixed at the center of the map at all times. This will improve User experience in my opinion, This is how I'm doing it now:

var map, marker, options;  options = {   center: new google.maps.LatLng(latitude, longitude),   zoom: 15,   mapTypeId: google.maps.MapTypeId.ROADMAP,   mapTypeControl: false,   overviewMapControl: false,   zoomControl: true,   draggable: true };  map = new google.maps.Map(mapContainer, options);  marker = new google.maps.Marker({   position: new google.maps.LatLng(latitude, longitude),   map: map,   animation: google.maps.Animation.DROP });  //This line is what makes the Marker stick to the center of the map marker.bindTo('position', map, 'center'); 

The problem I have with the code above is that.. When I drag the map underneath the Marker it's not smooth enough, ie. the Marker makes a wierd jump from the 'last' center to the 'new' center when dragging ends. (this is more noticeable on mobile devices), Therefore what I need is that the Marker is Really permanently fixed to the Center of its Map.

Is there a way to get this done? (I think I've seen this in a web-site once)

Let me know If you guys can help me.

Thank you.

like image 713
jlstr Avatar asked Oct 11 '13 21:10

jlstr


People also ask

How do I move a marker smoothly on Google Maps?

The transition() and moveMarker() are used to move marker smoothly on click on the Google map.

How do you customize a marker in maps?

For adding a custom marker to Google Maps navigate to the app > res > drawable > Right-Click on it > New > Vector Assets and select the icon which we have to show on your Map. You can change the color according to our requirements. After creating this icon now we will move towards adding this marker to our Map.


2 Answers

Rather than injecting an HTML component as suggested in @Dr.Molle's answer, why don't you use a CSS only solution.

It is simpler, more efficient and doesn't require you to even touch the DOM (so there won't be any problems if Google changes their implementation).

Also since Google Maps doesn't apply any styles on the container element (#map) the solution is pretty safe.

#map {     position: relative; }  #map:after {     width: 22px;     height: 40px;     display: block;     content: ' ';     position: absolute;     top: 50%; left: 50%;     margin: -40px 0 0 -11px;     background: url('https://maps.gstatic.com/mapfiles/api-3/images/spotlight-poi_hdpi.png');     background-size: 22px 40px; /* Since I used the HiDPI marker version this compensates for the 2x size */     pointer-events: none; /* This disables clicks on the marker. Not fully supported by all major browsers, though */ } 

Here is a jsFiddle.

like image 101
Itay Grudev Avatar answered Sep 22 '22 15:09

Itay Grudev


A different approach, that did not use a real google.maps.Marker:

after the map has been initialized, inject a div into the map-container, give it a className(e.g. centerMarker), the further things will be done via CSS:

.centerMarker{   position:absolute;   /*url of the marker*/   background:url(http://maps.gstatic.com/mapfiles/markers2/marker.png) no-repeat;   /*center the marker*/   top:50%;left:50%;    z-index:1;   /*fix offset when needed*/   margin-left:-10px;   margin-top:-34px;   /*size of the image*/   height:34px;   width:20px;    cursor:pointer; } 

Demo: http://jsfiddle.net/doktormolle/jcHqt/

like image 26
Dr.Molle Avatar answered Sep 20 '22 15:09

Dr.Molle