ui-leaflet icon indicating copy to clipboard operation
ui-leaflet copied to clipboard

AngularJS directive to embed an interact with maps managed by Leaflet library

Results 100 ui-leaflet issues
Sort by recently updated
recently updated
newest added

Changed $timeout to setTimeout in _modelChangeInDirective function to avoid angular overhead creating a new defer for each marker, when all that is required is a simple delay in execution. The...

_From @cyrilchaponeverysens on September 16, 2015 9:53_ When grouping **labelled** markers in a **markerclusterer** (this requires both [label](https://github.com/Leaflet/Leaflet.label) and [markerclusterer](https://github.com/Leaflet/Leaflet.markercluster) plugins), if one **hides** then **show** the holding `type: 'markerclusterer'`...

bug

_From @JoergPf on December 4, 2014 12:28_ Hi, I have a map in a bootstrap div: ``` ``` Then I use jquery and css animation to change the width of...

I want to display a `popup` (not `label`) on my GeoJSON, so I am adding this: ``` js onEachFeature: function(feature, layer) { layer.bindPopup(formatMessage(row, dimensionsAndMetrics)); } ``` But looking at [_hookUpEvents...

Hi, I added two overlays. The second overlay has paths and points. The onclick event for points is getting fired but onclick of paths is not getting triggered.Event is captured...

Hi, I created my own control which extends L.Control.Draw as follow: ``` js L.Control.Draw.List = L.Control.Draw.extend({ //my code }); ``` And now I'm trying to make ui-leaflet recognize it. Ideally,...

Using marker templates, I'm giving each a scope with `$rootScope.$new()`, and setting the data for each one, but every pin has the same scope in the end. I expected that...

Within a Cordova app, the protocol is "file:///". So the protocol-relative URL pattern for use with tiles does not work: - https://github.com/angular-ui/ui-leaflet/blob/master/src/services/leafletMapDefaults.js#L26 It might be best to whitelist HTTP and...

_From @Onefox on October 14, 2015 16:40_ When i am using my own handled map container the tiles are where they should be, but when iam using the option param...

I noticed on popups and layer controls the zoom and drag property are disabled, so I was wondering if there is any way that I can apply those same functions...

question