|
16 | 16 | <script lang="ts"> |
17 | 17 | import Vue from 'nativescript-vue'; |
18 | 18 | import BaseMaps from './BaseMaps'; |
19 | | -import { CartoMap, MapEventData } from 'nativescript-carto/ui'; |
| 19 | +import { CartoMap, MapEventData } from '@nativescript-community/ui-carto/ui'; |
20 | 20 | import { action } from '@nativescript/core/ui/dialogs'; |
21 | 21 | import { Component, Prop } from 'vue-property-decorator'; |
22 | 22 | import { Folder, path, knownFolders } from '@nativescript/core/file-system'; |
23 | 23 | import * as dialogs from '@nativescript/core/ui/dialogs'; |
24 | | -import { CartoOnlineRasterTileLayer, RasterTileLayer } from 'nativescript-carto/layers/raster'; |
25 | | -import { CartoOnlineVectorTileLayer, VectorTileEventData, VectorTileLayer, VectorLayer } from 'nativescript-carto/layers/vector'; |
26 | | -import { CartoMapStyle, MapPos, nativeVectorToArray } from 'nativescript-carto/core'; |
27 | | -import { CartoPackageManager, PackageManagerTileDataSource, PackageStatus, PackageInfo, PackageErrorType } from 'nativescript-carto/packagemanager'; |
28 | | -import { OrderedTileDataSource, MergedMBVTTileDataSource } from 'nativescript-carto/datasources'; |
29 | | -import { PersistentCacheTileDataSource } from 'nativescript-carto/datasources/cache'; |
30 | | -import { CartoOnlineTileDataSource } from 'nativescript-carto/datasources/cartoonline'; |
31 | | -import { MBVectorTileDecoder } from 'nativescript-carto/vectortiles'; |
32 | | -import { HTTPTileDataSource } from 'nativescript-carto/datasources/http'; |
33 | | -import { MarkerStyleBuilder, Marker } from 'nativescript-carto/vectorelements/marker'; |
34 | | -import { LocalVectorDataSource } from 'nativescript-carto/datasources/vector'; |
35 | | -import { Point, PointStyleBuilder } from 'nativescript-carto/vectorelements/point'; |
36 | | -import { LineStyleBuilder, Line, LineJointType, LineEndType } from 'nativescript-carto/vectorelements/line'; |
37 | | -import { MapClickedEvent, MapStableEvent, MapReadyEvent, MapMovedEvent } from 'nativescript-carto/ui'; |
38 | | -import { Projection } from 'nativescript-carto/projections'; |
| 24 | +import { CartoOnlineRasterTileLayer, RasterTileLayer } from '@nativescript-community/ui-carto/layers/raster'; |
| 25 | +import { CartoOnlineVectorTileLayer, VectorTileEventData, VectorTileLayer, VectorLayer } from '@nativescript-community/ui-carto/layers/vector'; |
| 26 | +import { CartoMapStyle, MapPos, nativeVectorToArray } from '@nativescript-community/ui-carto/core'; |
| 27 | +import { CartoPackageManager, PackageManagerTileDataSource, PackageStatus, PackageInfo, PackageErrorType } from '@nativescript-community/ui-carto/packagemanager'; |
| 28 | +import { OrderedTileDataSource, MergedMBVTTileDataSource } from '@nativescript-community/ui-carto/datasources'; |
| 29 | +import { PersistentCacheTileDataSource } from '@nativescript-community/ui-carto/datasources/cache'; |
| 30 | +import { CartoOnlineTileDataSource } from '@nativescript-community/ui-carto/datasources/cartoonline'; |
| 31 | +import { MBVectorTileDecoder } from '@nativescript-community/ui-carto/vectortiles'; |
| 32 | +import { HTTPTileDataSource } from '@nativescript-community/ui-carto/datasources/http'; |
| 33 | +import { MarkerStyleBuilder, Marker } from '@nativescript-community/ui-carto/vectorelements/marker'; |
| 34 | +import { LocalVectorDataSource } from '@nativescript-community/ui-carto/datasources/vector'; |
| 35 | +import { Point, PointStyleBuilder } from '@nativescript-community/ui-carto/vectorelements/point'; |
| 36 | +import { LineStyleBuilder, Line, LineJointType, LineEndType } from '@nativescript-community/ui-carto/vectorelements/line'; |
| 37 | +import { MapClickedEvent, MapStableEvent, MapReadyEvent, MapMovedEvent } from '@nativescript-community/ui-carto/ui'; |
| 38 | +import { Projection } from '@nativescript-community/ui-carto/projections'; |
39 | 39 | import BaseVueComponent from './BaseVueComponent'; |
40 | | -import { setShowDebug, setShowError, setShowInfo, setShowWarn } from 'nativescript-carto/utils'; |
| 40 | +import { setShowDebug, setShowError, setShowInfo, setShowWarn } from '@nativescript-community/ui-carto/utils'; |
41 | 41 |
|
42 | 42 | @Component({}) |
43 | 43 | export default class FragmentBase extends BaseVueComponent { |
|
0 commit comments