blob: 8a22296272c9c84c4c735da8839b68abffc06f70 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
import {CommonModule} from "@angular/common";
import {NgModule} from "@angular/core";
import {ActionButtonModule} from "../../layout/action-button";
import {LeafletModule} from "../../layout/leaflet";
import {MapSelectComponent} from "./components";
@NgModule({
imports: [
CommonModule,
LeafletModule,
ActionButtonModule
],
declarations: [
MapSelectComponent
],
exports: [
MapSelectComponent
]
})
export class MapSelectModule {
}