Flask-GoogleMaps
Flask-GoogleMaps copied to clipboard
Easy way to add GoogleMaps to Flask applications. maintainer: @getcake
**Describe the bug** A clear and concise description of what the bug is. All the described ways of showing a map in this repo don't work. **To Reproduce** Steps to...
Not an issue but I think it'd be cool to have a heatmap feature! Looking at the [heatmap overlay example](https://developers.google.com/maps/documentation/javascript/examples/layer-heatmap) from the visualization library, would this be possible? I've looked...
I have a map populated very densely with markers. Zoomed all the way in it is still clustering. Is it possible to prevent clustering at a zoom level or lower?
When run the examples i get the following error: **(index):49 Uncaught SyntaxError: Unexpected identifier**, in the last line of following code: ``` gmap = new google.maps.Map( document.getElementById('gmap'), { center: new...
I can't get the example maps to load to the page 'example.html'. When I go to my API metrics page on the Google Cloud Platform the number of calls to...
Hello, as the title says the latest version of the library is not on pypi and cannot be installed with pip. The latest version on there has a bug in...
It will be nice to be able to filter by type of markers, example Display: - [ ] Blue markers - [ ] Red markers - [x] Green markers
Hello, I cannot figure out how to add a label on my marker as [here](https://developers.google.com/maps/documentation/javascript/examples/marker-labels) Is this possible? I tried adding an `icon` property but with no results ``` icon...
I am trying to record the lat/long data from user click. JS can do it with something like: google.maps.event.addListener(map, 'click', function(event) {placeMarker(map, event.latLng, marker);}); How can i pass the this...
I would like to add a feature in the map object so that the user can turn on or off the bicycle layer in map. A representation is given at...