Closed RicardoMessala closed 2 years ago
Hi, RicardoMessala, this case may help you: https://github.com/python-visualization/folium/issues/520#issuecomment-717825107
Thanks for sharing a link to that comment. I'll close this one in favor of https://github.com/python-visualization/folium/issues/520
Hello everyone! i'm a Python newbie and this is my Python test code PYQt + Folium. I've already searched a lot and i know about the bi-directional question about folium. But as im using PYQt and saving the file, i'd like to know if there is some way to return the coordinates values when i click on the map. In this example i can vizualise the coordinates using LatLng, but as im a Python newbie i dont know if i can get these values.
import sys import io import folium from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout from PyQt5.QtWebEngineWidgets import QWebEngineView
class MyApp(QWidget):
if name == 'main': app = QApplication(sys.argv) myApp = MyApp() myApp.show()