marker Questions
2
I am trying to display users on a map, I have already implemented the map in the app, but now I am trying to make custom markers that display a user's photo inside the pin something like this:
An...
2
i got the map showing in the modal working. now i have a new problem. i have different objects and i will store the coordinates for the marker in the id.
like this:
<a href="#eintrag" id="[48....
Obryan asked 5/12, 2013 at 15:38
1
I am currently building a google map api using react-google-maps and I would like to create multiple markers to display info of cities around the world on the info window. But since they are all fr...
Veronique asked 25/10, 2017 at 15:46
1
Solved
I have drawn path with marker in google map. So the path is static but marker needs to change their positions. How can I remove all markers without using mapview.clear(), because it will clear my p...
Reluct asked 11/10, 2017 at 10:14
1
I have used xml layout to make marker .In that layout there is five buttons 'A','B','C','D','E'. I follow this link.I want to show different toast message click on different button like if user cli...
Twotone asked 7/10, 2017 at 16:16
2
As you see in the following code, the Markers are draggable. In some cases, If a marker is dropped in a wrong area(polygon) I would like to cancel the drop event and consequently the marker come ba...
Copt asked 26/2, 2011 at 23:32
2
Solved
I use Leaflet to draw an OpenStreetMap and attach it with a custom icon marker
var mymap = L.map('mapid').setView([x, y], 13);
L.tileLayer('https://api.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?a...
Trillion asked 27/4, 2016 at 5:19
1
Solved
I was trying to resize my custom icons when zooming in leaflet. I came up with two solutions for this. One using the L.Icon tag, the other one using L.divIcon. In both examples I only set 1 marker ...
4
Solved
I am currently trying to change the color of an existent marker.
Here is my javascript code:
$(".etablissement").mouseenter(function() {
var currentMarker = oMarkers[$(this).data("type")+"-"+$(t...
Bream asked 10/2, 2015 at 11:29
1
hey i am trying to add overlay marker which stays in center of the screen like this even if we scroll or zoom the screen
i tried moving marker from its initial position but it lags behind when w...
Outgrowth asked 21/7, 2016 at 9:49
1
Solved
Marker marker = mMap.addMarker(markerOptions);
marker.setTag(poi.getKey());
marker.hideInfoWindow();
builder.include(marker.getPosition());
This code works properly because I put as manuel. ...
Sporogonium asked 16/3, 2017 at 18:34
1
Is there a simple way to make a marker in Leaflet map blinking ? I mean animated blinking - something like a loop of transition from opacity 1.0 to opacity 0.5 in 1 second and then reverse, end of ...
2
Solved
How can I add a mouse over pop up on leaflet.js marker . the pop up data will be dynamic.
I have a service which returns a lat & lon positions which will mark on a map.
I would require a popu...
4
Solved
Trying to get a app using angular-google-maps with:
- multiple markers via the markers directive
- a single infowindow via the window directive
I've been through the API and multiple closed issues...
Sinistrality asked 3/2, 2015 at 5:31
3
Solved
I know there are a few threads around on this topic but i havent yet found a good enough solution.
I NEED to place a marker over the top of all other markers. How do i do this?
I have tried addin...
Nga asked 8/2, 2013 at 11:30
4
Solved
I want to fire dragend event of a marker in another event say click event on the map. how can I do that?
google.maps.event.addListener(map,'click',function(pt){
posSelectMarker.setPosition(pt.la...
Drummer asked 26/6, 2010 at 8:15
5
Solved
How do I move marker on Google maps api V2 ? I am using below code but it does not move marker on the map. What am I doing wrong here ? This should work when location changes, so I have added onLoc...
Unseasonable asked 1/5, 2013 at 4:30
1
I started a new project with the Google Maps template of Android Studio and just added a marker to the map.
LatLng location = new LatLng(lat, lng);
Marker marker = mMap.addMarker(new MarkerOptions...
Valine asked 7/2, 2015 at 2:17
2
In our application, a lot of markers are drawn in different locations and in certain cases at a certain zoom level, markers overlap each other. So when I click on the marker, I expect the top marke...
Diannediannne asked 7/2, 2014 at 6:9
0
I have followed one link which has the code to make map which we can drag and get the current location. Here is the link.
How to Implement draggable map like uber android, Update with change locat...
Monteiro asked 29/11, 2015 at 18:36
1
Solved
I have a project with leafletJS.
For example, I have 2 points (A, B) in map. I display it as 2 Markers
I must draw a polyline from A to B.
I moved marker A and I want to the head of polyline of mar...
1
Solved
I want to show something like
I am able to show all the markers on the map but I want to show info window on every markers whenever all the markers are populated.
I've tried this so far but it s...
Miscalculate asked 7/10, 2015 at 5:0
0
I wonder if it is be possible to animate Google Maps markers rotations along x- and y-axis like how we'd rotate an ImageView using ObjectAnimator around x-axis and/or y-axis. Apparently, one can ro...
1
Solved
I realized that setting the icon on a marker, it positions the LatLng center on the bottom of the icon drawable. I Set the marker like this:
BitmapDescriptor icon = BitmapDescriptorFactory.fromRes...
Knott asked 19/8, 2015 at 14:19
2
CODE :-
/**
* Update marker position and icon
*/
private void setMarker() {
synchronized (OBJ_LOCK) {
if (mLatitude != 0.0 || mLongitude != 0.0) {
mRotatedBitmap = rotateBitmap(mOriginalMar...
Northerner asked 3/2, 2014 at 9:2
© 2022 - 2024 — McMap. All rights reserved.