-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
export Leaflet object, public components and toLatLng macro (#141)
* export Leaflet classes from addon * changelog: add entry for #141
- Loading branch information
1 parent
e04c3d2
commit ad5611f
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
const L = window.L || {}; | ||
export { L, L as Leaflet }; | ||
|
||
export { default as CircleLayer } from 'ember-leaflet/components/circle-layer'; | ||
|
||
export { default as CircleMarkerLayer } from 'ember-leaflet/components/circle-marker-layer'; | ||
|
||
export { default as GeojsonLayer } from 'ember-leaflet/components/geojson-layer'; | ||
|
||
export { default as ImageLayer } from 'ember-leaflet/components/image-layer'; | ||
|
||
export { default as LeafletMap } from 'ember-leaflet/components/leaflet-map'; | ||
|
||
export { default as MarkerLayer } from 'ember-leaflet/components/marker-layer'; | ||
|
||
export { default as PolygonLayer } from 'ember-leaflet/components/polygon-layer'; | ||
|
||
export { default as PolylineLayer } from 'ember-leaflet/components/polyline-layer'; | ||
|
||
export { default as PopupLayer } from 'ember-leaflet/components/popup-layer'; | ||
|
||
export { default as TileLayer } from 'ember-leaflet/components/tile-layer'; | ||
|
||
export { default as TooltipLayer } from 'ember-leaflet/components/tooltip-layer'; | ||
|
||
export { default as WmsTileLayer } from 'ember-leaflet/components/wms-tile-layer'; | ||
|
||
export { default as toLatLng } from 'ember-leaflet/macros/to-lat-lng'; |