-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
36 lines (34 loc) · 1.14 KB
/
index.js
File metadata and controls
36 lines (34 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//Copyright 2023, Slpy, all rights reserved.
//Check out https://github.com/Spy-API/Slpy-JS and https://www.slpy.com/legal for licensing and terms
import { addressAutocomplete } from './src/addressAutocomplete.js';
import { addAerialImagery } from './src/aerialImagery.js';
import { addAutocomplete } from './src/autocomplete.js';
import { addMarkers, highlightMarker, dehighlightMarker, removeMarker, createMarker, setMarkerOpen, quickMarkersCenter } from './src/markers.js';
import { mapState, settings, openlayersParts, mapLibraries } from './src/globals.js';
import { addMapillary } from './src/streetLevel.js';
import { isWebGL2Supported, loadScript,setInteractionOnFocus, setTransform, flyTo, toRad, distanceInKM, distanceInMI } from './src/utils.js';
export default {
addressAutocomplete,
addAerialImagery,
addAutocomplete,
addMarkers,
highlightMarker,
dehighlightMarker,
removeMarker,
createMarker,
setMarkerOpen,
quickMarkersCenter,
addMapillary,
isWebGL2Supported,
loadScript,
setInteractionOnFocus,
setTransform,
flyTo,
toRad,
distanceInKM,
distanceInMI,
mapState,
settings,
openlayersParts,
mapLibraries
};