We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f515b5 commit 94c5911Copy full SHA for 94c5911
1 file changed
demo/map/map.js
@@ -131,7 +131,7 @@ class LocRecords {
131
this.query_LOC();
132
133
// set timer to re-query LOC records
134
- setInterval(function() { this.query_LOC() }.bind(this), 10000);
+ setInterval(function() { this.query_LOC() }.bind(this), 1000);
135
}
136
137
/// construct a timeable function
@@ -192,6 +192,9 @@ class LocRecords {
192
let popup_text = this.create_popup_text(latitude, longitude);
193
marker.bindPopup(popup_text);
194
195
+ // set tooltip
196
+ marker.bindTooltip(this.domain).openTooltip();
197
+
198
// add to entries
199
this.entries.push(marker);
200
0 commit comments