1,144 questions
0
votes
1
answer
111
views
How to remove padding from Google Maps InfoWindow in Vue 3 to make image cover full popup?
I'm building a Google Maps component using vue3-google-map, and I want the image inside the InfoWindow to fully cover the popup — edge to edge, no default padding.
The problem is that Google Maps ...
5
votes
1
answer
1k
views
Google Maps InfoWindow Not Showing on Marker Tap in Flutter
I'm working on a Flutter app that uses the Google Maps plugin. I have implemented a map with markers, and each marker is supposed to display an InfoWindow when tapped. However, the InfoWindow does not ...
0
votes
1
answer
74
views
GMSMarker infoWindow - data not updating
What I am trying to accomplish is to refresh the map every X seconds. When doing so, I want to update the content of info window of selected marker. However, the marker data is updated (tried with lat/...
0
votes
0
answers
43
views
No Info Window for markers
From external file:
const pos=[
[50.739,7.0894,0,9,0],
[50.839,7.1894,10,10,100],
[50.939,7.2894,10,11,50]
];
This is my code:
<script>
function initMap() {
const map = new google.maps.Map(...
1
vote
1
answer
60
views
Trying to use an EditText inside an infoWindow in android studio (Java)
I've recently been trying to place an EditText inside an InfoWindow so that the user can click on the InfoWindow and annotate the field with whatever text they want. I'm aware that InfoWindows are ...
1
vote
1
answer
120
views
How to use angular material data grid in infowindow of @angular/google-maps
I am using @angular/google-maps in Angular17. On click of any marker, I want to display the data inside infowindow using angular material data grid (https://material.angular.io/components/grid-list/...
0
votes
1
answer
106
views
How to show more column from database in google maps infowindow?
Previously I was able to display the infowindow on maps, but it only displayed one value from the database. How do you display more than one database value on the google maps infowindow?
Thanks
This ...
0
votes
1
answer
61
views
Is it possible to add two buttons to an infowindow on Android, each with its own click listener?
i have use a google map. i have added a marker with info windows. if add add two button in the infowindows it is not possible to add clicklistener per buttons. i know that "The info window that ...
1
vote
1
answer
1k
views
Google Maps API - How to display an info window for a Marker Cluster on click using MarkerClustererOptions and onClusterClick?
How do you use MarkerClustererOptions and OnClusterClick (with OnClusterClickHandler) to display an info window when a Marker Cluster is clicked, instead of zooming in (the default behavior)? I'm ...
0
votes
1
answer
168
views
how to create a custom infoWindow for osmdroid Polyline
I'm trying to create a custom infoWindow for a polyline that contains just text and that has to be shown at the center of the polyline "segment". I have created a simple InfoWindow class (...
0
votes
1
answer
111
views
Add image title to infowindow of KML-point in Python
I created a KML point with a corresponding image in an infowindow.
test_point = kml.newpoint(name="test_name", description = '<img src="path/latest_image.jpg" width="500&...
0
votes
1
answer
37
views
formatting infowindow google maps
I am following a google map tutorial on youtube. All is well until I try to display the stored data on the infowindow. In the code below latitude and longitude are displayed in one line concatenated. ...
0
votes
0
answers
57
views
How to get ClusterItem inside InfoWindowClickListener?
Good afternoon!
I have integrated Google Maps into my Android application and I have clustered points on the map. For this I created a separate class:
public class MyClusterItem implements ...
3
votes
1
answer
78
views
(create-react-app) Extra small box in InfoWindow of Google Map API
I am trying to create an InfoWindow with Google Map API, but there is always an extra small box with the same class to the big InfoWindow. Any way I can get rid of the small InfoWindow?
Here's the ...
0
votes
1
answer
760
views
Infowindows on Overlapping Marker Spiderfier
I am using Google Maps API V3 with Marker Clusterer and Overlapping Marker Spiderfier. It is working quite well but I have an issue with the infowindows attached to each marker. When a group of ...