Ryan Blace

Results 38 comments of Ryan Blace

There is a workaround for this. It will work if you explicitly define the task (rather than using the predefined jshint task). Here is an example: ``` groovy task jsHint(type:com.eriwen.gradle.js.tasks.JsHintTask)...

You can also fix this issue by changing your build target (in tsconfig.json) to "es5." Angular CLI 8/9 moving to a target of es2015 seems to have switched the behavior...

Depending on how the sub-plugin works, you should be able to use dependency injection to get a reference to the parent directive for the markercluster. From there, you should be...

Try changing: ``` const newMarker = marker(...).bindPopup(...); this.markers.push(newMarker); ``` to ``` const newMarker = marker(...); newMarker.bindPopup(...); this.markers.push(newMarker); ``` I would assume what's happening is you're adding the popup to the...

I don't understand the description. Can you please provide a working example of the issue?

If you can do it in leaflet, it shouldn't be too hard to make it work with ngx-leaflet. If you have an example of getting it working with vanilla leaflet,...

This looks like it might just be an issue with not being defensive enough with the null checks. I'll take a look.

Do you think you can provide a repo with an example that reproduces the issue? A common issue with multiple maps (or adding/removing maps) is that sometimes the baselayer objects...

Can you provide an example that reproduces the issue? Is this something specific to ngx-leaflet? or can you reproduce the issue with standalone leaflet?

This probably has to do with what is being returned by 'getBounds()'. I'd probably start by inspecting the values in the two examples. Get bounds should define a bounding box....