ember-leaflet
ember-leaflet copied to clipboard
Ember + Leaflet = Fun with maps
I was wondering if anyone had any ideas on how to reflect the popup state in the URL. For example, if I had a map with a bunch of POIs...
Ember 1.8-beta removes `_insertElementLater`. It looks like all of the `_insertElementLater` block could be replaced with `this._popupView.constructor.renderer.appendTo(this._popupView, this._popup._contentNode);` I tried to make a pull request but I couldn't figure out...
Not an issue, more a request for help. With leaflet it is possible to pan the map by a specific amount of pixels like this: ``` javascript map.panBy([200 0]); ```...
I was checking Ember 1.10 release post, and stumbled upon an interesting deprecation: http://emberjs.com/blog/2015/02/07/ember-1-10-0-released.html#toc_notable-deprecations > Setting the childViews property on a view definition is deprecated in 1.10. Of course this...
Hi guys, I have a `MapView` with a `MarkerCollectionLayer` as `childLayers`, and that `MarkerCollectionLayer` has a `MarkerLayer` that extends the `DraggableMixin`, so I'm trying to get the location of the...
Hi, I can't find documentation or examples on how to bind icons (reading through the issues shows that it should be possible now). I have an Ember Leaflet map with...
My goal is to have all of the markers that appear frame the bounds of the map. I did this pretty easily on the Rails side via the `leaflet-rails` gem...
Hi, First, thanks for creating this Ember & Leaflet integration. It is been really useful. I was wondering if you have plan to _componentize_ this integration. Something similar as http://googlewebcomponents.github.io/google-map/components/google-map/....
Hi. I use popupContentBinding in popupMixin, but in the case of if popupContent is empty popup will be opened without text. I think it is necessary to add check in...
via @miguelcobain: Actually, there is a problem with icon binding (which is pretty useful): When you change icon in leaflet, you lose the draggability. So you need to restore it....