Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #334 from Bayer-Group/edit
Browse files Browse the repository at this point in the history
Edit and rotate
  • Loading branch information
stazrad authored Oct 27, 2021
2 parents 44344e6 + b0e262f commit a232e21
Show file tree
Hide file tree
Showing 211 changed files with 3,518 additions and 356 deletions.
25 changes: 17 additions & 8 deletions app/demos/world/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import {
TabbedPanelPage,
BasemapContainer,
VectorLayer,
DrawContainer
DrawContainer,
FeatureEditor
} from '@bayer/ol-kit'
import { fromLonLat } from 'ol/proj'
import olFeature from 'ol/Feature'
Expand All @@ -20,33 +21,41 @@ import olSourceVector from 'ol/source/Vector'

import Welcome from '../../Welcome'

const labs = new olFeature({
feature_type: ['1904Labs HQ'],
title: '1904Labs HQ',
name: '1904Labs HQ',
geometry: new olGeomPoint(fromLonLat([-90.24618, 38.636069]))
})

class App extends React.Component {
onMapInit = async (map) => {
// create a vector layer and add to the map
const layer = new VectorLayer({
title: '1904Labs HQ',
source: new olSourceVector({
features: [new olFeature({
feature_type: ['1904Labs HQ'],
title: '1904Labs HQ',
name: '1904Labs HQ',
geometry: new olGeomPoint(fromLonLat([-90.24618, 38.636069]))
})]
features: [labs]
})
})

labs.set('_ol_kit_parent', layer)

map.addLayer(layer)

const dataLayer = await loadDataLayer(map, 'https://data.nasa.gov/api/geospatial/7zbq-j77a?method=export&format=KML')

dataLayer.getSource().getFeatures().forEach(f => f.set('title', f.get('name')))
dataLayer.getSource().getFeatures().forEach(f => {
f.set('_ol_kit_parent', dataLayer)
f.set('title', f.get('name'))
})

window.map = map
}

render () {
return (
<Map onMapInit={this.onMapInit} fullScreen>
<FeatureEditor />
<Popup />
<TabbedPanel>
<TabbedPanelPage tabIcon='Home'>
Expand Down
2 changes: 1 addition & 1 deletion docs/BasemapBingMaps.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/BasemapBlankWhite.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/BasemapContainer.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/BasemapManager.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/BasemapOpenStreetMap.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/BasemapStamenTerrain.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/BasemapStamenTonerDark.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/BasemapStamenTonerLite.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Basemaps_BasemapContainer.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Basemaps_BasemapManager.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Basemaps_BingMaps.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Basemaps_BlankWhite.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Basemaps_OpenStreetMap.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Basemaps_StamenTerrain.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Basemaps_StamenTonerDark.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Basemaps_StamenTonerLite.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Basemaps_utils.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Compass.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ContextMenu.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ContextMenuCoords.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ContextMenuListItem.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ContextMenu_ContextMenu.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ContextMenu_ContextMenuCoords.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ContextMenu_ContextMenuListItem.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ControlGroup.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ControlGroupButton.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Controls.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Controls_Compass.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Controls_ControlGroup.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Controls_ControlGroupButton.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Controls_Controls.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Controls_CurrentLocation.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Controls_ScaleLine.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Controls_ZoomControls.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Controls_ZoomIn.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Controls_ZoomOut.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/CurrentLocation.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/DataLayers_utils.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Draw.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/DrawBox.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/DrawCircle.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/DrawContainer.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/DrawFreehand.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/DrawLine.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/DrawPin.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/DrawPoint.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/DrawPolygon.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Draw_Box.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Draw_Circle.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Draw_Draw.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Draw_DrawContainer.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Draw_Freehand.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Draw_Line.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Draw_Pin.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Draw_Point.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Draw_Polygon.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Draw_utils.js.html

Large diffs are not rendered by default.

495 changes: 495 additions & 0 deletions docs/FeatureEditor.html

Large diffs are not rendered by default.

446 changes: 446 additions & 0 deletions docs/FeatureEditor_FeatureEditor.js.html

Large diffs are not rendered by default.

450 changes: 450 additions & 0 deletions docs/FeatureEditor_styles.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/GoogleDirections.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/GoogleDirections_GoogleDirections.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/GooglePlacesSearch.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/GooglePlacesSearch_GooglePlacesSearch.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/HeatmapControls.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Heatmap_HeatmapControls.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ImageExif_ImageExif.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelActionDuplicate.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelActionExport.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelActionExtent.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelActionHeatmap.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelActionImport.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelActionMerge.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelActionOpacity.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelActionRemove.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelActions.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelBase.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelCheckbox.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelContent.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelHeader.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelLayersPage.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelList.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelListItem.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelMenu.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanelPage.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanel.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelActionDuplicate_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelActionExport_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelActionExport_utils.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelActionExtent_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelActionHeatmap_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelActionHeatmap_utils.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelActionImport_index.js.html

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions docs/LayerPanel_LayerPanelActionImport_utils.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelActionMerge_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelActionMerge_utils.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelActionOpacity_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelActionRemove_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelActions_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelBase_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelCheckbox_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelContent_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelHeader_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelLayersPage_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelListItem_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelList_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelMenu_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerPanel_LayerPanelPage_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerStyler.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerStyler_LayerStyler.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerStyler_StyleManager_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerStyler__AttributesFilter_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerStyler__ColorPicker_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerStyler__LabelStyler_index.js.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerStyler__LayerStyler__StyleGroup_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerStyler__LayerStyler_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerStyler__Popover_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerStyler__SelectTabs_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/LayerStyler__Selector_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Map.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Map_Map.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Map_utils.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Measure_utils.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/MultiMapManager.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/MultiMapManager_MultiMapManager.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/MultiMapManager_SafeParent.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/MultiMapManager_utils.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Pdf_utils.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Popup.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/PopupActionCopyWkt.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/PopupActionGoogleMaps.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/PopupActionGroup.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/PopupActionItem.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/PopupActionLink.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/PopupBase.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/PopupDataList.html

Large diffs are not rendered by default.

17 changes: 14 additions & 3 deletions docs/PopupDefaultInsert.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/PopupDefaultPage.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/PopupPageLayout.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/PopupPageLayoutChild.html

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/PopupTabs.html

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions docs/Popup_Popup.js.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Popup_PopupActions_PopupActionCopyWkt_utils.js.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Popup_PopupBase.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Popup_PopupInsert_PopupActionGroup_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Popup_PopupInsert_PopupActionItem_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Popup_PopupInsert_PopupActionLink_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Popup_PopupInsert_PopupDataList_index.js.html

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions docs/Popup_PopupInsert_PopupDefaultInsert.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Popup_PopupInsert_PopupDefaultPage_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Popup_PopupInsert_PopupPageLayoutChild_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Popup_PopupInsert_PopupPageLayout_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Popup_PopupInsert_PopupTabs_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Popup_PopupInsert__LoadingSpinner_index.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Popup_utils.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ProjectMenu.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Project_Project.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Project_utils.js.html

Large diffs are not rendered by default.

21 changes: 16 additions & 5 deletions docs/Provider.html

Large diffs are not rendered by default.

12 changes: 10 additions & 2 deletions docs/Provider_Provider.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Provider_utils.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/TabbedPanel.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/TabbedPanel_TabbedPanel.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/TimeSlider.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/TimeSliderBase.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/TimeSlider_TimeSlider.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/TimeSlider_TimeSliderBase.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/Toolbar_Toolbar.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ZoomControls.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ZoomIn.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/ZoomOut.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/classes_VectorLayer.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/classes_VectorTileLayer.js.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/docs.html

Large diffs are not rendered by default.

187 changes: 95 additions & 92 deletions docs/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,140 +97,143 @@ reactComponents['DrawPoint'] = Component23;
import Component24 from '../src/Draw/Polygon.js';
reactComponents['DrawPolygon'] = Component24;

import Component25 from '../src/GoogleDirections/GoogleDirections.js';
reactComponents['GoogleDirections'] = Component25;
import Component25 from '../src/FeatureEditor/FeatureEditor.js';
reactComponents['FeatureEditor'] = Component25;

import Component26 from '../src/GooglePlacesSearch/GooglePlacesSearch.js';
reactComponents['GooglePlacesSearch'] = Component26;
import Component26 from '../src/GoogleDirections/GoogleDirections.js';
reactComponents['GoogleDirections'] = Component26;

import Component27 from '../src/Heatmap/HeatmapControls.js';
reactComponents['HeatmapControls'] = Component27;
import Component27 from '../src/GooglePlacesSearch/GooglePlacesSearch.js';
reactComponents['GooglePlacesSearch'] = Component27;

import Component28 from '../src/LayerPanel/LayerPanel.js';
reactComponents['LayerPanel'] = Component28;
import Component28 from '../src/Heatmap/HeatmapControls.js';
reactComponents['HeatmapControls'] = Component28;

import Component29 from '../src/LayerPanel/LayerPanelActionDuplicate/index.js';
reactComponents['LayerPanelActionDuplicate'] = Component29;
import Component29 from '../src/LayerPanel/LayerPanel.js';
reactComponents['LayerPanel'] = Component29;

import Component30 from '../src/LayerPanel/LayerPanelActionExport/index.js';
reactComponents['LayerPanelActionExport'] = Component30;
import Component30 from '../src/LayerPanel/LayerPanelActionDuplicate/index.js';
reactComponents['LayerPanelActionDuplicate'] = Component30;

import Component31 from '../src/LayerPanel/LayerPanelActionExtent/index.js';
reactComponents['LayerPanelActionExtent'] = Component31;
import Component31 from '../src/LayerPanel/LayerPanelActionExport/index.js';
reactComponents['LayerPanelActionExport'] = Component31;

import Component32 from '../src/LayerPanel/LayerPanelActionHeatmap/index.js';
reactComponents['LayerPanelActionHeatmap'] = Component32;
import Component32 from '../src/LayerPanel/LayerPanelActionExtent/index.js';
reactComponents['LayerPanelActionExtent'] = Component32;

import Component33 from '../src/LayerPanel/LayerPanelActionImport/index.js';
reactComponents['LayerPanelActionImport'] = Component33;
import Component33 from '../src/LayerPanel/LayerPanelActionHeatmap/index.js';
reactComponents['LayerPanelActionHeatmap'] = Component33;

import Component34 from '../src/LayerPanel/LayerPanelActionMerge/index.js';
reactComponents['LayerPanelActionMerge'] = Component34;
import Component34 from '../src/LayerPanel/LayerPanelActionImport/index.js';
reactComponents['LayerPanelActionImport'] = Component34;

import Component35 from '../src/LayerPanel/LayerPanelActionOpacity/index.js';
reactComponents['LayerPanelActionOpacity'] = Component35;
import Component35 from '../src/LayerPanel/LayerPanelActionMerge/index.js';
reactComponents['LayerPanelActionMerge'] = Component35;

import Component36 from '../src/LayerPanel/LayerPanelActionRemove/index.js';
reactComponents['LayerPanelActionRemove'] = Component36;
import Component36 from '../src/LayerPanel/LayerPanelActionOpacity/index.js';
reactComponents['LayerPanelActionOpacity'] = Component36;

import Component37 from '../src/LayerPanel/LayerPanelActions/index.js';
reactComponents['LayerPanelActions'] = Component37;
import Component37 from '../src/LayerPanel/LayerPanelActionRemove/index.js';
reactComponents['LayerPanelActionRemove'] = Component37;

import Component38 from '../src/LayerPanel/LayerPanelBase/index.js';
reactComponents['LayerPanelBase'] = Component38;
import Component38 from '../src/LayerPanel/LayerPanelActions/index.js';
reactComponents['LayerPanelActions'] = Component38;

import Component39 from '../src/LayerPanel/LayerPanelCheckbox/index.js';
reactComponents['LayerPanelCheckbox'] = Component39;
import Component39 from '../src/LayerPanel/LayerPanelBase/index.js';
reactComponents['LayerPanelBase'] = Component39;

import Component40 from '../src/LayerPanel/LayerPanelContent/index.js';
reactComponents['LayerPanelContent'] = Component40;
import Component40 from '../src/LayerPanel/LayerPanelCheckbox/index.js';
reactComponents['LayerPanelCheckbox'] = Component40;

import Component41 from '../src/LayerPanel/LayerPanelHeader/index.js';
reactComponents['LayerPanelHeader'] = Component41;
import Component41 from '../src/LayerPanel/LayerPanelContent/index.js';
reactComponents['LayerPanelContent'] = Component41;

import Component42 from '../src/LayerPanel/LayerPanelLayersPage/index.js';
reactComponents['LayerPanelLayersPage'] = Component42;
import Component42 from '../src/LayerPanel/LayerPanelHeader/index.js';
reactComponents['LayerPanelHeader'] = Component42;

import Component43 from '../src/LayerPanel/LayerPanelList/index.js';
reactComponents['LayerPanelList'] = Component43;
import Component43 from '../src/LayerPanel/LayerPanelLayersPage/index.js';
reactComponents['LayerPanelLayersPage'] = Component43;

import Component44 from '../src/LayerPanel/LayerPanelListItem/index.js';
reactComponents['LayerPanelListItem'] = Component44;
import Component44 from '../src/LayerPanel/LayerPanelList/index.js';
reactComponents['LayerPanelList'] = Component44;

import Component45 from '../src/LayerPanel/LayerPanelMenu/index.js';
reactComponents['LayerPanelMenu'] = Component45;
import Component45 from '../src/LayerPanel/LayerPanelListItem/index.js';
reactComponents['LayerPanelListItem'] = Component45;

import Component46 from '../src/LayerPanel/LayerPanelPage/index.js';
reactComponents['LayerPanelPage'] = Component46;
import Component46 from '../src/LayerPanel/LayerPanelMenu/index.js';
reactComponents['LayerPanelMenu'] = Component46;

import Component47 from '../src/LayerStyler/LayerStyler.js';
reactComponents['LayerStyler'] = Component47;
import Component47 from '../src/LayerPanel/LayerPanelPage/index.js';
reactComponents['LayerPanelPage'] = Component47;

import Component48 from '../src/Map/Map.js';
reactComponents['Map'] = Component48;
import Component48 from '../src/LayerStyler/LayerStyler.js';
reactComponents['LayerStyler'] = Component48;

import Component49 from '../src/MultiMapManager/MultiMapManager.js';
reactComponents['MultiMapManager'] = Component49;
import Component49 from '../src/Map/Map.js';
reactComponents['Map'] = Component49;

import Component50 from '../src/Popup/Popup.js';
reactComponents['Popup'] = Component50;
import Component50 from '../src/MultiMapManager/MultiMapManager.js';
reactComponents['MultiMapManager'] = Component50;

import Component51 from '../src/Popup/PopupActions/PopupActionCopyWkt/PopupActionCopyWkt.js';
reactComponents['PopupActionCopyWkt'] = Component51;
import Component51 from '../src/Popup/Popup.js';
reactComponents['Popup'] = Component51;

import Component52 from '../src/Popup/PopupActions/PopupActionGoogleMaps/PopupActionGoogleMaps.js';
reactComponents['PopupActionGoogleMaps'] = Component52;
import Component52 from '../src/Popup/PopupActions/PopupActionCopyWkt/PopupActionCopyWkt.js';
reactComponents['PopupActionCopyWkt'] = Component52;

import Component53 from '../src/Popup/PopupInsert/PopupActionGroup/index.js';
reactComponents['PopupActionGroup'] = Component53;
import Component53 from '../src/Popup/PopupActions/PopupActionGoogleMaps/PopupActionGoogleMaps.js';
reactComponents['PopupActionGoogleMaps'] = Component53;

import Component54 from '../src/Popup/PopupInsert/PopupActionItem/index.js';
reactComponents['PopupActionItem'] = Component54;
import Component54 from '../src/Popup/PopupInsert/PopupActionGroup/index.js';
reactComponents['PopupActionGroup'] = Component54;

import Component55 from '../src/Popup/PopupInsert/PopupActionLink/index.js';
reactComponents['PopupActionLink'] = Component55;
import Component55 from '../src/Popup/PopupInsert/PopupActionItem/index.js';
reactComponents['PopupActionItem'] = Component55;

import Component56 from '../src/Popup/PopupBase.js';
reactComponents['PopupBase'] = Component56;
import Component56 from '../src/Popup/PopupInsert/PopupActionLink/index.js';
reactComponents['PopupActionLink'] = Component56;

import Component57 from '../src/Popup/PopupInsert/PopupDataList/index.js';
reactComponents['PopupDataList'] = Component57;
import Component57 from '../src/Popup/PopupBase.js';
reactComponents['PopupBase'] = Component57;

import Component58 from '../src/Popup/PopupInsert/PopupDefaultInsert.js';
reactComponents['PopupDefaultInsert'] = Component58;
import Component58 from '../src/Popup/PopupInsert/PopupDataList/index.js';
reactComponents['PopupDataList'] = Component58;

import Component59 from '../src/Popup/PopupInsert/PopupDefaultPage/index.js';
reactComponents['PopupDefaultPage'] = Component59;
import Component59 from '../src/Popup/PopupInsert/PopupDefaultInsert.js';
reactComponents['PopupDefaultInsert'] = Component59;

import Component60 from '../src/Popup/PopupInsert/PopupPageLayout/index.js';
reactComponents['PopupPageLayout'] = Component60;
import Component60 from '../src/Popup/PopupInsert/PopupDefaultPage/index.js';
reactComponents['PopupDefaultPage'] = Component60;

import Component61 from '../src/Popup/PopupInsert/PopupPageLayoutChild/index.js';
reactComponents['PopupPageLayoutChild'] = Component61;
import Component61 from '../src/Popup/PopupInsert/PopupPageLayout/index.js';
reactComponents['PopupPageLayout'] = Component61;

import Component62 from '../src/Popup/PopupInsert/PopupTabs/index.js';
reactComponents['PopupTabs'] = Component62;
import Component62 from '../src/Popup/PopupInsert/PopupPageLayoutChild/index.js';
reactComponents['PopupPageLayoutChild'] = Component62;

import Component63 from '../src/Project/Project.js';
reactComponents['ProjectMenu'] = Component63;
import Component63 from '../src/Popup/PopupInsert/PopupTabs/index.js';
reactComponents['PopupTabs'] = Component63;

import Component64 from '../src/Provider/Provider.js';
reactComponents['Provider'] = Component64;
import Component64 from '../src/Project/Project.js';
reactComponents['ProjectMenu'] = Component64;

import Component65 from '../src/TabbedPanel/TabbedPanel.js';
reactComponents['TabbedPanel'] = Component65;
import Component65 from '../src/Provider/Provider.js';
reactComponents['Provider'] = Component65;

import Component66 from '../src/TimeSlider/TimeSlider.js';
reactComponents['TimeSlider'] = Component66;
import Component66 from '../src/TabbedPanel/TabbedPanel.js';
reactComponents['TabbedPanel'] = Component66;

import Component67 from '../src/TimeSlider/TimeSliderBase.js';
reactComponents['TimeSliderBase'] = Component67;
import Component67 from '../src/TimeSlider/TimeSlider.js';
reactComponents['TimeSlider'] = Component67;

import Component68 from '../src/Controls/ZoomControls.js';
reactComponents['ZoomControls'] = Component68;
import Component68 from '../src/TimeSlider/TimeSliderBase.js';
reactComponents['TimeSliderBase'] = Component68;

import Component69 from '../src/Controls/ZoomIn.js';
reactComponents['ZoomIn'] = Component69;
import Component69 from '../src/Controls/ZoomControls.js';
reactComponents['ZoomControls'] = Component69;

import Component70 from '../src/Controls/ZoomOut.js';
reactComponents['ZoomOut'] = Component70;
import Component70 from '../src/Controls/ZoomIn.js';
reactComponents['ZoomIn'] = Component70;

import Component71 from '../src/Controls/ZoomOut.js';
reactComponents['ZoomOut'] = Component71;
Loading

0 comments on commit a232e21

Please sign in to comment.