Tagged Questions
1
vote
1answer
80 views
passing geocode results object to another file
I'm using a geocoding plugin (Leafet.GeoSearch) on a map and I'd like the results, being the LatLng point coordinates, etc available as a parameter for GeoServer cql filtered calls.
It doesn't seem ...
0
votes
0answers
98 views
jQuery Templates with Leaflet
Is it possible to render a template like jsRender to a div created with Leaflet's .create method as follows?
info.onAdd = function (map) {
this._div = L.DomUtil.create('div', 'info');
...
3
votes
1answer
429 views
Click link inside Leaflet Popup and do javascript
I have a leaflet map up and running. It overlays a series of polygons (via GeoJSON) on the map and attaches popups to each polygon. Each of the popups display information about that polygon.
I'd ...
5
votes
2answers
2k views
Adding/Removing Leaflet GeoJSON layers
I'm trying to show different GeoJSON layers at different zoom layers using the Leaflet API. I can load and display all three layers at once (though I don't actually want them all to show at once). I ...