@inlog/inlog-maps 1.0.0 → 1.1.0-test
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DOCUMENTATION.md +1813 -0
- package/README.md +46 -591
- package/_bundles/inlog-maps.js +3 -0
- package/_bundles/inlog-maps.js.LICENSE.txt +20 -0
- package/_bundles/inlog-maps.js.map +1 -0
- package/_bundles/inlog-maps.min.js +3 -0
- package/_bundles/inlog-maps.min.js.LICENSE.txt +20 -0
- package/_bundles/inlog-maps.min.js.map +1 -0
- package/bower.json +23 -0
- package/lib/index.d.ts +46 -0
- package/lib/index.js +47 -0
- package/lib/index.js.map +1 -0
- package/lib/map.d.ts +519 -0
- package/lib/map.js +1137 -0
- package/lib/map.js.map +1 -0
- package/lib/models/apis/google/google-circles.d.ts +18 -0
- package/lib/models/apis/google/google-circles.js +134 -0
- package/lib/models/apis/google/google-circles.js.map +1 -0
- package/lib/models/apis/google/google-geojson.d.ts +9 -0
- package/lib/models/apis/google/google-geojson.js +73 -0
- package/lib/models/apis/google/google-geojson.js.map +1 -0
- package/lib/models/apis/google/google-map.d.ts +16 -0
- package/lib/models/apis/google/google-map.js +174 -0
- package/lib/models/apis/google/google-map.js.map +1 -0
- package/lib/models/apis/google/google-markers.d.ts +29 -0
- package/lib/models/apis/google/google-markers.js +325 -0
- package/lib/models/apis/google/google-markers.js.map +1 -0
- package/lib/models/apis/google/google-overlay.d.ts +11 -0
- package/lib/models/apis/google/google-overlay.js +102 -0
- package/lib/models/apis/google/google-overlay.js.map +1 -0
- package/lib/models/apis/google/google-polygons.d.ts +29 -0
- package/lib/models/apis/google/google-polygons.js +301 -0
- package/lib/models/apis/google/google-polygons.js.map +1 -0
- package/lib/models/apis/google/google-polylines.d.ts +55 -0
- package/lib/models/apis/google/google-polylines.js +707 -0
- package/lib/models/apis/google/google-polylines.js.map +1 -0
- package/lib/models/apis/google/google-popup.d.ts +10 -0
- package/lib/models/apis/google/google-popup.js +59 -0
- package/lib/models/apis/google/google-popup.js.map +1 -0
- package/lib/models/apis/googleMaps.d.ts +97 -0
- package/lib/models/apis/googleMaps.js +449 -0
- package/lib/models/apis/googleMaps.js.map +1 -0
- package/lib/models/apis/leaflet/leaflet-circle.d.ts +18 -0
- package/lib/models/apis/leaflet/leaflet-circle.js +163 -0
- package/lib/models/apis/leaflet/leaflet-circle.js.map +1 -0
- package/lib/models/apis/leaflet/leaflet-geojson.d.ts +9 -0
- package/lib/models/apis/leaflet/leaflet-geojson.js +73 -0
- package/lib/models/apis/leaflet/leaflet-geojson.js.map +1 -0
- package/lib/models/apis/leaflet/leaflet-map.d.ts +16 -0
- package/lib/models/apis/leaflet/leaflet-map.js +140 -0
- package/lib/models/apis/leaflet/leaflet-map.js.map +1 -0
- package/lib/models/apis/leaflet/leaflet-markers.d.ts +29 -0
- package/lib/models/apis/leaflet/leaflet-markers.js +294 -0
- package/lib/models/apis/leaflet/leaflet-markers.js.map +1 -0
- package/lib/models/apis/leaflet/leaflet-overlay.d.ts +10 -0
- package/lib/models/apis/leaflet/leaflet-overlay.js +35 -0
- package/lib/models/apis/leaflet/leaflet-overlay.js.map +1 -0
- package/lib/models/apis/leaflet/leaflet-polygons.d.ts +23 -0
- package/lib/models/apis/leaflet/leaflet-polygons.js +211 -0
- package/lib/models/apis/leaflet/leaflet-polygons.js.map +1 -0
- package/lib/models/apis/leaflet/leaflet-polylines.d.ts +55 -0
- package/lib/models/apis/leaflet/leaflet-polylines.js +721 -0
- package/lib/models/apis/leaflet/leaflet-polylines.js.map +1 -0
- package/lib/models/apis/leaflet/leaflet-popup.d.ts +11 -0
- package/lib/models/apis/leaflet/leaflet-popup.js +74 -0
- package/lib/models/apis/leaflet/leaflet-popup.js.map +1 -0
- package/lib/models/apis/leaflet.d.ts +99 -0
- package/lib/models/apis/leaflet.js +464 -0
- package/lib/models/apis/leaflet.js.map +1 -0
- package/lib/models/apis/mapFunctions.d.ts +85 -0
- package/lib/models/apis/mapFunctions.js +2 -0
- package/lib/models/apis/mapFunctions.js.map +1 -0
- package/lib/models/dto/event-type.d.ts +33 -0
- package/lib/models/dto/event-type.js +39 -0
- package/lib/models/dto/event-type.js.map +1 -0
- package/lib/models/dto/map-type.d.ts +4 -0
- package/lib/models/dto/map-type.js +6 -0
- package/lib/models/dto/map-type.js.map +1 -0
- package/lib/models/dto/polyline-type.d.ts +5 -0
- package/lib/models/dto/polyline-type.js +7 -0
- package/lib/models/dto/polyline-type.js.map +1 -0
- package/lib/models/features/circle/circle-alter-options.d.ts +12 -0
- package/lib/models/features/circle/circle-alter-options.js +14 -0
- package/lib/models/features/circle/circle-alter-options.js.map +1 -0
- package/lib/models/features/circle/circle-options.d.ts +15 -0
- package/lib/models/features/circle/circle-options.js +19 -0
- package/lib/models/features/circle/circle-options.js.map +1 -0
- package/lib/models/features/events/event-return.d.ts +4 -0
- package/lib/models/features/events/event-return.js +8 -0
- package/lib/models/features/events/event-return.js.map +1 -0
- package/lib/models/features/geojson/geojson-options.d.ts +5 -0
- package/lib/models/features/geojson/geojson-options.js +9 -0
- package/lib/models/features/geojson/geojson-options.js.map +1 -0
- package/lib/models/features/marker/circle-marker-options.d.ts +9 -0
- package/lib/models/features/marker/circle-marker-options.js +12 -0
- package/lib/models/features/marker/circle-marker-options.js.map +1 -0
- package/lib/models/features/marker/circle-marker-style.d.ts +8 -0
- package/lib/models/features/marker/circle-marker-style.js +12 -0
- package/lib/models/features/marker/circle-marker-style.js.map +1 -0
- package/lib/models/features/marker/marker-alter-options.d.ts +8 -0
- package/lib/models/features/marker/marker-alter-options.js +10 -0
- package/lib/models/features/marker/marker-alter-options.js.map +1 -0
- package/lib/models/features/marker/marker-icon.d.ts +6 -0
- package/lib/models/features/marker/marker-icon.js +10 -0
- package/lib/models/features/marker/marker-icon.js.map +1 -0
- package/lib/models/features/marker/marker-options.d.ts +11 -0
- package/lib/models/features/marker/marker-options.js +18 -0
- package/lib/models/features/marker/marker-options.js.map +1 -0
- package/lib/models/features/marker-clusterer/marker-clusterer-config.d.ts +6 -0
- package/lib/models/features/marker-clusterer/marker-clusterer-config.js +10 -0
- package/lib/models/features/marker-clusterer/marker-clusterer-config.js.map +1 -0
- package/lib/models/features/overlay/overlay-options.d.ts +11 -0
- package/lib/models/features/overlay/overlay-options.js +15 -0
- package/lib/models/features/overlay/overlay-options.js.map +1 -0
- package/lib/models/features/polygons/polygon-alter-options.d.ts +13 -0
- package/lib/models/features/polygons/polygon-alter-options.js +14 -0
- package/lib/models/features/polygons/polygon-alter-options.js.map +1 -0
- package/lib/models/features/polygons/polygon-options.d.ts +15 -0
- package/lib/models/features/polygons/polygon-options.js +19 -0
- package/lib/models/features/polygons/polygon-options.js.map +1 -0
- package/lib/models/features/polyline/navigations-options.d.ts +11 -0
- package/lib/models/features/polyline/navigations-options.js +16 -0
- package/lib/models/features/polyline/navigations-options.js.map +1 -0
- package/lib/models/features/polyline/polyline-options.d.ts +18 -0
- package/lib/models/features/polyline/polyline-options.js +20 -0
- package/lib/models/features/polyline/polyline-options.js.map +1 -0
- package/lib/models/features/popup/popup-options.d.ts +9 -0
- package/lib/models/features/popup/popup-options.js +13 -0
- package/lib/models/features/popup/popup-options.js.map +1 -0
- package/lib/utils/maps-api-loader.service.d.ts +14 -0
- package/lib/utils/maps-api-loader.service.js +89 -0
- package/lib/utils/maps-api-loader.service.js.map +1 -0
- package/lib/utils/url-builder.d.ts +20 -0
- package/lib/utils/url-builder.js +44 -0
- package/lib/utils/url-builder.js.map +1 -0
- package/lib-esm/index.d.ts +46 -0
- package/lib-esm/index.js +47 -0
- package/lib-esm/index.js.map +1 -0
- package/lib-esm/map.d.ts +519 -0
- package/lib-esm/map.js +1137 -0
- package/lib-esm/map.js.map +1 -0
- package/lib-esm/models/apis/google/google-circles.d.ts +18 -0
- package/lib-esm/models/apis/google/google-circles.js +134 -0
- package/lib-esm/models/apis/google/google-circles.js.map +1 -0
- package/lib-esm/models/apis/google/google-geojson.d.ts +9 -0
- package/lib-esm/models/apis/google/google-geojson.js +73 -0
- package/lib-esm/models/apis/google/google-geojson.js.map +1 -0
- package/lib-esm/models/apis/google/google-map.d.ts +16 -0
- package/lib-esm/models/apis/google/google-map.js +174 -0
- package/lib-esm/models/apis/google/google-map.js.map +1 -0
- package/lib-esm/models/apis/google/google-markers.d.ts +29 -0
- package/lib-esm/models/apis/google/google-markers.js +325 -0
- package/lib-esm/models/apis/google/google-markers.js.map +1 -0
- package/lib-esm/models/apis/google/google-overlay.d.ts +11 -0
- package/lib-esm/models/apis/google/google-overlay.js +102 -0
- package/lib-esm/models/apis/google/google-overlay.js.map +1 -0
- package/lib-esm/models/apis/google/google-polygons.d.ts +29 -0
- package/lib-esm/models/apis/google/google-polygons.js +301 -0
- package/lib-esm/models/apis/google/google-polygons.js.map +1 -0
- package/lib-esm/models/apis/google/google-polylines.d.ts +55 -0
- package/lib-esm/models/apis/google/google-polylines.js +707 -0
- package/lib-esm/models/apis/google/google-polylines.js.map +1 -0
- package/lib-esm/models/apis/google/google-popup.d.ts +10 -0
- package/lib-esm/models/apis/google/google-popup.js +59 -0
- package/lib-esm/models/apis/google/google-popup.js.map +1 -0
- package/lib-esm/models/apis/googleMaps.d.ts +97 -0
- package/lib-esm/models/apis/googleMaps.js +449 -0
- package/lib-esm/models/apis/googleMaps.js.map +1 -0
- package/lib-esm/models/apis/leaflet/leaflet-circle.d.ts +18 -0
- package/lib-esm/models/apis/leaflet/leaflet-circle.js +163 -0
- package/lib-esm/models/apis/leaflet/leaflet-circle.js.map +1 -0
- package/lib-esm/models/apis/leaflet/leaflet-geojson.d.ts +9 -0
- package/lib-esm/models/apis/leaflet/leaflet-geojson.js +73 -0
- package/lib-esm/models/apis/leaflet/leaflet-geojson.js.map +1 -0
- package/lib-esm/models/apis/leaflet/leaflet-map.d.ts +16 -0
- package/lib-esm/models/apis/leaflet/leaflet-map.js +140 -0
- package/lib-esm/models/apis/leaflet/leaflet-map.js.map +1 -0
- package/lib-esm/models/apis/leaflet/leaflet-markers.d.ts +29 -0
- package/lib-esm/models/apis/leaflet/leaflet-markers.js +294 -0
- package/lib-esm/models/apis/leaflet/leaflet-markers.js.map +1 -0
- package/lib-esm/models/apis/leaflet/leaflet-overlay.d.ts +10 -0
- package/lib-esm/models/apis/leaflet/leaflet-overlay.js +35 -0
- package/lib-esm/models/apis/leaflet/leaflet-overlay.js.map +1 -0
- package/lib-esm/models/apis/leaflet/leaflet-polygons.d.ts +23 -0
- package/lib-esm/models/apis/leaflet/leaflet-polygons.js +211 -0
- package/lib-esm/models/apis/leaflet/leaflet-polygons.js.map +1 -0
- package/lib-esm/models/apis/leaflet/leaflet-polylines.d.ts +55 -0
- package/lib-esm/models/apis/leaflet/leaflet-polylines.js +721 -0
- package/lib-esm/models/apis/leaflet/leaflet-polylines.js.map +1 -0
- package/lib-esm/models/apis/leaflet/leaflet-popup.d.ts +11 -0
- package/lib-esm/models/apis/leaflet/leaflet-popup.js +74 -0
- package/lib-esm/models/apis/leaflet/leaflet-popup.js.map +1 -0
- package/lib-esm/models/apis/leaflet.d.ts +99 -0
- package/lib-esm/models/apis/leaflet.js +464 -0
- package/lib-esm/models/apis/leaflet.js.map +1 -0
- package/lib-esm/models/apis/mapFunctions.d.ts +85 -0
- package/lib-esm/models/apis/mapFunctions.js +2 -0
- package/lib-esm/models/apis/mapFunctions.js.map +1 -0
- package/lib-esm/models/dto/event-type.d.ts +33 -0
- package/lib-esm/models/dto/event-type.js +39 -0
- package/lib-esm/models/dto/event-type.js.map +1 -0
- package/lib-esm/models/dto/map-type.d.ts +4 -0
- package/lib-esm/models/dto/map-type.js +6 -0
- package/lib-esm/models/dto/map-type.js.map +1 -0
- package/lib-esm/models/dto/polyline-type.d.ts +5 -0
- package/lib-esm/models/dto/polyline-type.js +7 -0
- package/lib-esm/models/dto/polyline-type.js.map +1 -0
- package/lib-esm/models/features/circle/circle-alter-options.d.ts +12 -0
- package/lib-esm/models/features/circle/circle-alter-options.js +14 -0
- package/lib-esm/models/features/circle/circle-alter-options.js.map +1 -0
- package/lib-esm/models/features/circle/circle-options.d.ts +15 -0
- package/{src → lib-esm/models/features}/circle/circle-options.js +6 -4
- package/lib-esm/models/features/circle/circle-options.js.map +1 -0
- package/lib-esm/models/features/events/event-return.d.ts +4 -0
- package/lib-esm/models/features/events/event-return.js +8 -0
- package/lib-esm/models/features/events/event-return.js.map +1 -0
- package/lib-esm/models/features/geojson/geojson-options.d.ts +5 -0
- package/lib-esm/models/features/geojson/geojson-options.js +9 -0
- package/lib-esm/models/features/geojson/geojson-options.js.map +1 -0
- package/lib-esm/models/features/marker/circle-marker-options.d.ts +9 -0
- package/lib-esm/models/features/marker/circle-marker-options.js +12 -0
- package/lib-esm/models/features/marker/circle-marker-options.js.map +1 -0
- package/lib-esm/models/features/marker/circle-marker-style.d.ts +8 -0
- package/lib-esm/models/features/marker/circle-marker-style.js +12 -0
- package/lib-esm/models/features/marker/circle-marker-style.js.map +1 -0
- package/lib-esm/models/features/marker/marker-alter-options.d.ts +8 -0
- package/lib-esm/models/features/marker/marker-alter-options.js +10 -0
- package/lib-esm/models/features/marker/marker-alter-options.js.map +1 -0
- package/lib-esm/models/features/marker/marker-icon.d.ts +6 -0
- package/lib-esm/models/features/marker/marker-icon.js +10 -0
- package/lib-esm/models/features/marker/marker-icon.js.map +1 -0
- package/lib-esm/models/features/marker/marker-options.d.ts +11 -0
- package/lib-esm/models/features/marker/marker-options.js +18 -0
- package/lib-esm/models/features/marker/marker-options.js.map +1 -0
- package/lib-esm/models/features/marker-clusterer/marker-clusterer-config.d.ts +6 -0
- package/lib-esm/models/features/marker-clusterer/marker-clusterer-config.js +10 -0
- package/lib-esm/models/features/marker-clusterer/marker-clusterer-config.js.map +1 -0
- package/lib-esm/models/features/overlay/overlay-options.d.ts +11 -0
- package/lib-esm/models/features/overlay/overlay-options.js +15 -0
- package/lib-esm/models/features/overlay/overlay-options.js.map +1 -0
- package/lib-esm/models/features/polygons/polygon-alter-options.d.ts +13 -0
- package/lib-esm/models/features/polygons/polygon-alter-options.js +14 -0
- package/lib-esm/models/features/polygons/polygon-alter-options.js.map +1 -0
- package/lib-esm/models/features/polygons/polygon-options.d.ts +15 -0
- package/{src → lib-esm/models/features}/polygons/polygon-options.js +7 -5
- package/lib-esm/models/features/polygons/polygon-options.js.map +1 -0
- package/lib-esm/models/features/polyline/navigations-options.d.ts +11 -0
- package/lib-esm/models/features/polyline/navigations-options.js +16 -0
- package/lib-esm/models/features/polyline/navigations-options.js.map +1 -0
- package/lib-esm/models/features/polyline/polyline-options.d.ts +18 -0
- package/lib-esm/models/features/polyline/polyline-options.js +20 -0
- package/lib-esm/models/features/polyline/polyline-options.js.map +1 -0
- package/lib-esm/models/features/popup/popup-options.d.ts +9 -0
- package/lib-esm/models/features/popup/popup-options.js +13 -0
- package/lib-esm/models/features/popup/popup-options.js.map +1 -0
- package/lib-esm/utils/maps-api-loader.service.d.ts +14 -0
- package/lib-esm/utils/maps-api-loader.service.js +89 -0
- package/lib-esm/utils/maps-api-loader.service.js.map +1 -0
- package/lib-esm/utils/url-builder.d.ts +20 -0
- package/lib-esm/utils/url-builder.js +44 -0
- package/lib-esm/utils/url-builder.js.map +1 -0
- package/package.json +69 -53
- package/test/test.js +11 -0
- package/tslint.json +24 -0
- package/typings.json +5 -0
- package/.babelrc +0 -4
- package/.editorconfig +0 -12
- package/.eslintrc +0 -291
- package/.nvmrc +0 -1
- package/.travis.yml +0 -5
- package/demo/demo.js +0 -432
- package/demo/images/cursor_locate.png +0 -0
- package/demo/images/inicio_rota.png +0 -0
- package/demo/index.html +0 -58
- package/demo/style.css +0 -45
- package/lib/inlogMaps.js +0 -16326
- package/lib/inlogMaps.js.map +0 -1
- package/lib/inlogMaps.min.js +0 -5
- package/src/circle/circle-alter-options.js +0 -9
- package/src/events/event-return.js +0 -5
- package/src/google-maps.js +0 -722
- package/src/index.js +0 -36
- package/src/leaflet.js +0 -638
- package/src/map.js +0 -306
- package/src/marker/circle-marker-options.js +0 -9
- package/src/marker/circle-marker-style.js +0 -9
- package/src/marker/marker-alter-options.js +0 -7
- package/src/marker/marker-icon.js +0 -6
- package/src/marker/marker-options.js +0 -10
- package/src/polygons/polygon-alter-options.js +0 -9
- package/src/polyline/navigations-options.js +0 -6
- package/src/polyline/polyline-alter-options.js +0 -9
- package/src/polyline/polyline-navigation-options.js +0 -15
- package/src/polyline/polyline-options.js +0 -12
- package/src/popup/popup-options.js +0 -7
- package/test/index.spec.js +0 -32
- package/webpack.config.js +0 -50
- package/yarn.lock +0 -3403
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"map-type.js","sourceRoot":"","sources":["../../../src/models/dto/map-type.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,OAGX;AAHD,WAAY,OAAO;IACf,yCAAM,CAAA;IACN,2CAAO,CAAA;AACX,CAAC,EAHW,OAAO,KAAP,OAAO,QAGlB"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export var PolylineType;
|
|
2
|
+
(function (PolylineType) {
|
|
3
|
+
PolylineType[PolylineType["Dashed"] = 0] = "Dashed";
|
|
4
|
+
PolylineType[PolylineType["Dotted"] = 1] = "Dotted";
|
|
5
|
+
PolylineType[PolylineType["Arrow"] = 2] = "Arrow";
|
|
6
|
+
})(PolylineType || (PolylineType = {}));
|
|
7
|
+
//# sourceMappingURL=polyline-type.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"polyline-type.js","sourceRoot":"","sources":["../../../src/models/dto/polyline-type.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,YAIX;AAJD,WAAY,YAAY;IACpB,mDAAM,CAAA;IACN,mDAAM,CAAA;IACN,iDAAK,CAAA;AACT,CAAC,EAJW,YAAY,KAAZ,YAAY,QAIvB"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export default class CircleAlterOptions {
|
|
2
|
+
center: number[];
|
|
3
|
+
radius: number;
|
|
4
|
+
weight: number;
|
|
5
|
+
fillOpacity?: number;
|
|
6
|
+
fillColor?: string;
|
|
7
|
+
color?: string;
|
|
8
|
+
opacity?: number;
|
|
9
|
+
editable?: boolean;
|
|
10
|
+
draggable?: boolean;
|
|
11
|
+
constructor(center: number[], radius: number, weight: number, fillOpacity?: number, fillColor?: string, color?: string, opacity?: number);
|
|
12
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
var CircleAlterOptions = /** @class */ (function () {
|
|
2
|
+
function CircleAlterOptions(center, radius, weight, fillOpacity, fillColor, color, opacity) {
|
|
3
|
+
this.center = center;
|
|
4
|
+
this.radius = radius;
|
|
5
|
+
this.weight = weight;
|
|
6
|
+
this.fillOpacity = fillOpacity;
|
|
7
|
+
this.fillColor = fillColor;
|
|
8
|
+
this.color = color;
|
|
9
|
+
this.opacity = opacity;
|
|
10
|
+
}
|
|
11
|
+
return CircleAlterOptions;
|
|
12
|
+
}());
|
|
13
|
+
export default CircleAlterOptions;
|
|
14
|
+
//# sourceMappingURL=circle-alter-options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"circle-alter-options.js","sourceRoot":"","sources":["../../../../src/models/features/circle/circle-alter-options.ts"],"names":[],"mappings":"AAAA;IAWI,4BAAY,MAAgB,EAAE,MAAc,EAAE,MAAc,EAAE,WAAoB,EAC9E,SAAkB,EAAE,KAAc,EAAE,OAAgB;QAEpD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IAC3B,CAAC;IACL,yBAAC;AAAD,CAAC,AAtBD,IAsBC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export default class CircleOptions {
|
|
2
|
+
center: number[];
|
|
3
|
+
radius: number;
|
|
4
|
+
weight: number;
|
|
5
|
+
addToMap?: boolean;
|
|
6
|
+
fillOpacity?: number;
|
|
7
|
+
fillColor?: string;
|
|
8
|
+
color?: string;
|
|
9
|
+
opacity?: number;
|
|
10
|
+
draggable?: boolean;
|
|
11
|
+
editable?: boolean;
|
|
12
|
+
fitBounds?: boolean;
|
|
13
|
+
object?: object;
|
|
14
|
+
constructor(center: number[], radius: number, weight: number, addToMap?: boolean, fillOpacity?: number, fillColor?: string, color?: string, opacity?: number, draggable?: boolean, editable?: boolean, fitBounds?: boolean, object?: object);
|
|
15
|
+
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
draggable, editable, fitBounds, object) {
|
|
1
|
+
var CircleOptions = /** @class */ (function () {
|
|
2
|
+
function CircleOptions(center, radius, weight, addToMap, fillOpacity, fillColor, color, opacity, draggable, editable, fitBounds, object) {
|
|
4
3
|
this.center = center;
|
|
5
4
|
this.radius = radius;
|
|
6
5
|
this.weight = weight;
|
|
@@ -14,4 +13,7 @@ export default class CircleOptions {
|
|
|
14
13
|
this.fitBounds = fitBounds;
|
|
15
14
|
this.object = object;
|
|
16
15
|
}
|
|
17
|
-
|
|
16
|
+
return CircleOptions;
|
|
17
|
+
}());
|
|
18
|
+
export default CircleOptions;
|
|
19
|
+
//# sourceMappingURL=circle-options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"circle-options.js","sourceRoot":"","sources":["../../../../src/models/features/circle/circle-options.ts"],"names":[],"mappings":"AAAA;IAcI,uBAAY,MAAgB,EAAE,MAAc,EAAE,MAAc,EAAE,QAAkB,EAAE,WAAoB,EAClG,SAAkB,EAAE,KAAc,EAAE,OAAgB,EAAE,SAAmB,EAAE,QAAkB,EAC7F,SAAmB,EAAE,MAAe;QAEpC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACzB,CAAC;IACL,oBAAC;AAAD,CAAC,AA/BD,IA+BC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"event-return.js","sourceRoot":"","sources":["../../../../src/models/features/events/event-return.ts"],"names":[],"mappings":"AAAA;IAGI,qBAAY,MAAgB;QACxB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACzB,CAAC;IACL,kBAAC;AAAD,CAAC,AAND,IAMC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
var GeoJsonOptions = /** @class */ (function () {
|
|
2
|
+
function GeoJsonOptions(draggable, editable) {
|
|
3
|
+
this.draggable = draggable;
|
|
4
|
+
this.editable = editable;
|
|
5
|
+
}
|
|
6
|
+
return GeoJsonOptions;
|
|
7
|
+
}());
|
|
8
|
+
export default GeoJsonOptions;
|
|
9
|
+
//# sourceMappingURL=geojson-options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"geojson-options.js","sourceRoot":"","sources":["../../../../src/models/features/geojson/geojson-options.ts"],"names":[],"mappings":"AACA;IAII,wBAAY,SAAmB,EAAE,QAAkB;QAC/C,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAC7B,CAAC;IACL,qBAAC;AAAD,CAAC,AARD,IAQC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import CircleMarkerStyle from './circle-marker-style';
|
|
2
|
+
export default class CircleMarkerOptions {
|
|
3
|
+
latlng: number[];
|
|
4
|
+
addToMap?: boolean;
|
|
5
|
+
style: CircleMarkerStyle;
|
|
6
|
+
fitBounds?: boolean;
|
|
7
|
+
object?: object;
|
|
8
|
+
constructor(latlng: number[], style: CircleMarkerStyle, addToMap?: boolean, fitBounds?: boolean, object?: object);
|
|
9
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
var CircleMarkerOptions = /** @class */ (function () {
|
|
2
|
+
function CircleMarkerOptions(latlng, style, addToMap, fitBounds, object) {
|
|
3
|
+
this.latlng = latlng;
|
|
4
|
+
this.addToMap = addToMap;
|
|
5
|
+
this.style = style;
|
|
6
|
+
this.fitBounds = fitBounds;
|
|
7
|
+
this.object = object;
|
|
8
|
+
}
|
|
9
|
+
return CircleMarkerOptions;
|
|
10
|
+
}());
|
|
11
|
+
export default CircleMarkerOptions;
|
|
12
|
+
//# sourceMappingURL=circle-marker-options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"circle-marker-options.js","sourceRoot":"","sources":["../../../../src/models/features/marker/circle-marker-options.ts"],"names":[],"mappings":"AAEA;IAOI,6BAAY,MAAgB,EAAE,KAAwB,EAAE,QAAkB,EAAE,SAAmB,EAAE,MAAe;QAC5G,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACzB,CAAC;IACL,0BAAC;AAAD,CAAC,AAdD,IAcC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
var CircleMarkerStyle = /** @class */ (function () {
|
|
2
|
+
function CircleMarkerStyle(radius, weight, color, fillColor, fillOpacity) {
|
|
3
|
+
this.radius = radius;
|
|
4
|
+
this.weight = weight;
|
|
5
|
+
this.color = color;
|
|
6
|
+
this.fillColor = fillColor;
|
|
7
|
+
this.fillOpacity = fillOpacity;
|
|
8
|
+
}
|
|
9
|
+
return CircleMarkerStyle;
|
|
10
|
+
}());
|
|
11
|
+
export default CircleMarkerStyle;
|
|
12
|
+
//# sourceMappingURL=circle-marker-style.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"circle-marker-style.js","sourceRoot":"","sources":["../../../../src/models/features/marker/circle-marker-style.ts"],"names":[],"mappings":"AAAA;IAOI,2BAAY,MAAc,EAAE,MAAe,EAAE,KAAc,EAAE,SAAkB,EAAE,WAAoB;QACjG,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;IACnC,CAAC;IACL,wBAAC;AAAD,CAAC,AAdD,IAcC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import CircleMarkerStyle from './circle-marker-style';
|
|
2
|
+
import MarkerIcon from './marker-icon';
|
|
3
|
+
export default class MarkerAlterOptions {
|
|
4
|
+
latlng?: number[];
|
|
5
|
+
icon?: MarkerIcon;
|
|
6
|
+
style?: CircleMarkerStyle;
|
|
7
|
+
constructor(latlng?: number[], icon?: MarkerIcon, style?: CircleMarkerStyle);
|
|
8
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var MarkerAlterOptions = /** @class */ (function () {
|
|
2
|
+
function MarkerAlterOptions(latlng, icon, style) {
|
|
3
|
+
this.latlng = latlng;
|
|
4
|
+
this.icon = icon;
|
|
5
|
+
this.style = style;
|
|
6
|
+
}
|
|
7
|
+
return MarkerAlterOptions;
|
|
8
|
+
}());
|
|
9
|
+
export default MarkerAlterOptions;
|
|
10
|
+
//# sourceMappingURL=marker-alter-options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"marker-alter-options.js","sourceRoot":"","sources":["../../../../src/models/features/marker/marker-alter-options.ts"],"names":[],"mappings":"AAGA;IAKI,4BAAY,MAAiB,EAAE,IAAiB,EAAE,KAAyB;QACvE,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;IACvB,CAAC;IACL,yBAAC;AAAD,CAAC,AAVD,IAUC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var MarkerIcon = /** @class */ (function () {
|
|
2
|
+
function MarkerIcon(url, size, scaledSize) {
|
|
3
|
+
this.url = url;
|
|
4
|
+
this.size = size;
|
|
5
|
+
this.scaledSize = scaledSize;
|
|
6
|
+
}
|
|
7
|
+
return MarkerIcon;
|
|
8
|
+
}());
|
|
9
|
+
export default MarkerIcon;
|
|
10
|
+
//# sourceMappingURL=marker-icon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"marker-icon.js","sourceRoot":"","sources":["../../../../src/models/features/marker/marker-icon.ts"],"names":[],"mappings":"AAAA;IAKI,oBAAY,GAAW,EAAE,IAAe,EAAE,UAAqB;QAC3D,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;QACf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;IACjC,CAAC;IACL,iBAAC;AAAD,CAAC,AAVD,IAUC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import MarkerIcon from './marker-icon';
|
|
2
|
+
export default class MarkerOptions {
|
|
3
|
+
latlng: number[];
|
|
4
|
+
addToMap?: boolean;
|
|
5
|
+
draggable?: boolean;
|
|
6
|
+
icon?: MarkerIcon;
|
|
7
|
+
fitBounds?: boolean;
|
|
8
|
+
object?: object;
|
|
9
|
+
addClusterer?: boolean;
|
|
10
|
+
constructor(latlng: number[], addToMap?: boolean, draggable?: boolean, icon?: MarkerIcon, fitBounds?: boolean, object?: object, addClusterer?: boolean);
|
|
11
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
var MarkerOptions = /** @class */ (function () {
|
|
2
|
+
function MarkerOptions(latlng, addToMap, draggable, icon, fitBounds, object, addClusterer) {
|
|
3
|
+
if (addToMap === void 0) { addToMap = false; }
|
|
4
|
+
if (draggable === void 0) { draggable = false; }
|
|
5
|
+
if (fitBounds === void 0) { fitBounds = false; }
|
|
6
|
+
if (addClusterer === void 0) { addClusterer = false; }
|
|
7
|
+
this.latlng = latlng;
|
|
8
|
+
this.addToMap = addToMap;
|
|
9
|
+
this.draggable = draggable;
|
|
10
|
+
this.icon = icon;
|
|
11
|
+
this.fitBounds = fitBounds;
|
|
12
|
+
this.object = object;
|
|
13
|
+
this.addClusterer = addClusterer;
|
|
14
|
+
}
|
|
15
|
+
return MarkerOptions;
|
|
16
|
+
}());
|
|
17
|
+
export default MarkerOptions;
|
|
18
|
+
//# sourceMappingURL=marker-options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"marker-options.js","sourceRoot":"","sources":["../../../../src/models/features/marker/marker-options.ts"],"names":[],"mappings":"AAEA;IASI,uBAAY,MAAgB,EAAE,QAAyB,EAAE,SAA0B,EAAE,IAAiB,EAClG,SAA0B,EAAE,MAAe,EAAE,YAAoB;QADvC,yBAAA,EAAA,gBAAyB;QAAE,0BAAA,EAAA,iBAA0B;QAC/E,0BAAA,EAAA,iBAA0B;QAAmB,6BAAA,EAAA,oBAAoB;QAEjE,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;IACrC,CAAC;IACL,oBAAC;AAAD,CAAC,AApBD,IAoBC"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
var MarkerClustererConfig = /** @class */ (function () {
|
|
2
|
+
function MarkerClustererConfig(clusterZoomOnClick, clusterMinSize, clusterMaxZoom) {
|
|
3
|
+
this.clusterZoomOnClick = clusterZoomOnClick;
|
|
4
|
+
this.clusterMinSize = clusterMinSize;
|
|
5
|
+
this.clusterMaxZoom = clusterMaxZoom;
|
|
6
|
+
}
|
|
7
|
+
return MarkerClustererConfig;
|
|
8
|
+
}());
|
|
9
|
+
export default MarkerClustererConfig;
|
|
10
|
+
//# sourceMappingURL=marker-clusterer-config.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"marker-clusterer-config.js","sourceRoot":"","sources":["../../../../src/models/features/marker-clusterer/marker-clusterer-config.ts"],"names":[],"mappings":"AAAA;IAKI,+BAAY,kBAA2B,EAAE,cAAsB,EAAE,cAAsB;QACnF,IAAI,CAAC,kBAAkB,GAAG,kBAAkB,CAAC;QAC7C,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QACrC,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;IACzC,CAAC;IACL,4BAAC;AAAD,CAAC,AAVD,IAUC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export default class OverlayOptions {
|
|
2
|
+
position?: number[];
|
|
3
|
+
divElement: HTMLDivElement;
|
|
4
|
+
addToMap: boolean;
|
|
5
|
+
object: any;
|
|
6
|
+
polygon?: string;
|
|
7
|
+
conditionPolygon?: any;
|
|
8
|
+
draggable?: boolean;
|
|
9
|
+
afterEventDragHandler: any;
|
|
10
|
+
constructor(divElement: HTMLDivElement, addToMap: boolean, position?: number[], object?: any, polygon?: string, conditionPolygon?: any, draggable?: boolean);
|
|
11
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
var OverlayOptions = /** @class */ (function () {
|
|
2
|
+
function OverlayOptions(divElement, addToMap, position, object, polygon, conditionPolygon, draggable) {
|
|
3
|
+
if (draggable === void 0) { draggable = false; }
|
|
4
|
+
this.position = position;
|
|
5
|
+
this.divElement = divElement;
|
|
6
|
+
this.addToMap = addToMap;
|
|
7
|
+
this.object = object;
|
|
8
|
+
this.polygon = polygon;
|
|
9
|
+
this.conditionPolygon = conditionPolygon;
|
|
10
|
+
this.draggable = draggable;
|
|
11
|
+
}
|
|
12
|
+
return OverlayOptions;
|
|
13
|
+
}());
|
|
14
|
+
export default OverlayOptions;
|
|
15
|
+
//# sourceMappingURL=overlay-options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"overlay-options.js","sourceRoot":"","sources":["../../../../src/models/features/overlay/overlay-options.ts"],"names":[],"mappings":"AAAA;IAUI,wBAAY,UAA0B,EAAE,QAAiB,EAAE,QAAmB,EAAE,MAAY,EACxF,OAAgB,EAAE,gBAAsB,EAAE,SAA0B;QAA1B,0BAAA,EAAA,iBAA0B;QACpE,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAC;QAC7B,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,gBAAgB,GAAG,gBAAgB,CAAC;QACzC,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;IAC/B,CAAC;IACL,qBAAC;AAAD,CAAC,AApBD,IAoBC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export default class PolygonAlterOptions {
|
|
2
|
+
weight?: number;
|
|
3
|
+
color?: string;
|
|
4
|
+
opacity?: number;
|
|
5
|
+
fillColor?: string;
|
|
6
|
+
fillOpacity?: number;
|
|
7
|
+
addToMap: boolean;
|
|
8
|
+
object: any;
|
|
9
|
+
path: number[][];
|
|
10
|
+
editable?: boolean;
|
|
11
|
+
draggable?: boolean;
|
|
12
|
+
constructor(addToMap: boolean, color?: string, opacity?: number, fillColor?: string, fillOpacity?: number, weight?: number);
|
|
13
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
var PolygonAlterOptions = /** @class */ (function () {
|
|
2
|
+
function PolygonAlterOptions(addToMap, color, opacity, fillColor, fillOpacity, weight) {
|
|
3
|
+
this.addToMap = addToMap;
|
|
4
|
+
this.color = color;
|
|
5
|
+
this.opacity = opacity;
|
|
6
|
+
this.fillColor = fillColor;
|
|
7
|
+
this.fillOpacity = fillOpacity;
|
|
8
|
+
this.weight = weight;
|
|
9
|
+
this.path = [];
|
|
10
|
+
}
|
|
11
|
+
return PolygonAlterOptions;
|
|
12
|
+
}());
|
|
13
|
+
export default PolygonAlterOptions;
|
|
14
|
+
//# sourceMappingURL=polygon-alter-options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"polygon-alter-options.js","sourceRoot":"","sources":["../../../../src/models/features/polygons/polygon-alter-options.ts"],"names":[],"mappings":"AAAA;IAYI,6BAAY,QAAiB,EAAE,KAAc,EAAE,OAAgB,EAAE,SAAkB,EAAE,WAAoB,EACrG,MAAe;QACf,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,IAAI,GAAG,EAAE,CAAC;IACnB,CAAC;IACL,0BAAC;AAAD,CAAC,AAtBD,IAsBC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export default class PolygonOptions {
|
|
2
|
+
path: number[][];
|
|
3
|
+
weight: number;
|
|
4
|
+
addToMap?: boolean;
|
|
5
|
+
color?: string;
|
|
6
|
+
opacity?: number;
|
|
7
|
+
fillColor?: string;
|
|
8
|
+
fillOpacity?: number;
|
|
9
|
+
draggable?: boolean;
|
|
10
|
+
editable?: boolean;
|
|
11
|
+
fitBounds?: boolean;
|
|
12
|
+
object?: object;
|
|
13
|
+
zIndex: number;
|
|
14
|
+
constructor(path: number[][], weight: number, addToMap?: boolean, color?: string, opacity?: number, fillColor?: string, fillOpacity?: number, draggable?: boolean, editable?: boolean, fitBounds?: boolean, object?: object);
|
|
15
|
+
}
|
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
editable, fitBounds, object) {
|
|
4
|
-
|
|
1
|
+
var PolygonOptions = /** @class */ (function () {
|
|
2
|
+
function PolygonOptions(path, weight, addToMap, color, opacity, fillColor, fillOpacity, draggable, editable, fitBounds, object) {
|
|
5
3
|
this.path = path;
|
|
6
4
|
this.weight = weight;
|
|
7
5
|
this.addToMap = addToMap;
|
|
@@ -13,5 +11,9 @@ export default class PolygonOptions {
|
|
|
13
11
|
this.editable = editable;
|
|
14
12
|
this.fitBounds = fitBounds;
|
|
15
13
|
this.object = object;
|
|
14
|
+
this.zIndex = 0;
|
|
16
15
|
}
|
|
17
|
-
|
|
16
|
+
return PolygonOptions;
|
|
17
|
+
}());
|
|
18
|
+
export default PolygonOptions;
|
|
19
|
+
//# sourceMappingURL=polygon-options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"polygon-options.js","sourceRoot":"","sources":["../../../../src/models/features/polygons/polygon-options.ts"],"names":[],"mappings":"AAAA;IAcI,wBAAY,IAAgB,EAAE,MAAc,EAAE,QAAkB,EAAE,KAAc,EAAE,OAAgB,EAC9F,SAAkB,EAAE,WAAoB,EAAE,SAAmB,EAAE,QAAkB,EAAE,SAAmB,EACtG,MAAe;QAEf,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,CAAC,CAAA;IACnB,CAAC;IACL,qBAAC;AAAD,CAAC,AA/BD,IA+BC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PolylineType } from '../../dto/polyline-type';
|
|
2
|
+
export default class NavigationOptions {
|
|
3
|
+
color?: string;
|
|
4
|
+
weight?: number;
|
|
5
|
+
opacity?: number;
|
|
6
|
+
navigateByPoint: boolean;
|
|
7
|
+
style: PolylineType | any;
|
|
8
|
+
editable: boolean;
|
|
9
|
+
navegateOnKeyPress: boolean;
|
|
10
|
+
constructor(color?: string, weight?: number, navigateByPoint?: boolean, opacity?: number);
|
|
11
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
var NavigationOptions = /** @class */ (function () {
|
|
2
|
+
function NavigationOptions(color, weight, navigateByPoint, opacity) {
|
|
3
|
+
if (navigateByPoint === void 0) { navigateByPoint = true; }
|
|
4
|
+
if (opacity === void 0) { opacity = 1; }
|
|
5
|
+
this.style = undefined;
|
|
6
|
+
this.editable = false;
|
|
7
|
+
this.color = color;
|
|
8
|
+
this.weight = weight;
|
|
9
|
+
this.opacity = opacity;
|
|
10
|
+
this.navigateByPoint = navigateByPoint;
|
|
11
|
+
this.navegateOnKeyPress = false;
|
|
12
|
+
}
|
|
13
|
+
return NavigationOptions;
|
|
14
|
+
}());
|
|
15
|
+
export default NavigationOptions;
|
|
16
|
+
//# sourceMappingURL=navigations-options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"navigations-options.js","sourceRoot":"","sources":["../../../../src/models/features/polyline/navigations-options.ts"],"names":[],"mappings":"AAEA;IASI,2BAAY,KAAc,EAAE,MAAe,EAAE,eAA+B,EAAE,OAAW;QAA5C,gCAAA,EAAA,sBAA+B;QAAE,wBAAA,EAAA,WAAW;QAJlF,UAAK,GAAuB,SAAS,CAAC;QACtC,aAAQ,GAAY,KAAK,CAAC;QAI7B,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC;QACvC,IAAI,CAAC,kBAAkB,GAAG,KAAK,CAAA;IACnC,CAAC;IACL,wBAAC;AAAD,CAAC,AAhBD,IAgBC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import NavigationOptions from "./navigations-options";
|
|
2
|
+
import { PolylineType } from "../../dto/polyline-type";
|
|
3
|
+
export default class PolylineOptions {
|
|
4
|
+
path?: number[][] | null;
|
|
5
|
+
weight?: number | null;
|
|
6
|
+
opacity?: number | null;
|
|
7
|
+
zIndex?: number | null;
|
|
8
|
+
addToMap?: boolean;
|
|
9
|
+
fitBounds?: boolean;
|
|
10
|
+
editable?: boolean;
|
|
11
|
+
draggable?: boolean;
|
|
12
|
+
color?: string;
|
|
13
|
+
object?: object;
|
|
14
|
+
infowindows?: string[];
|
|
15
|
+
style?: PolylineType;
|
|
16
|
+
navigateOptions?: NavigationOptions;
|
|
17
|
+
constructor(path?: number[][] | null, weight?: number | null, opacity?: number | null, zIndex?: number, addToMap?: boolean, fitBounds?: boolean, editable?: boolean, draggable?: boolean, color?: string, object?: object, infowindows?: string[], navigateOptions?: NavigationOptions, style?: PolylineType);
|
|
18
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
var PolylineOptions = /** @class */ (function () {
|
|
2
|
+
function PolylineOptions(path, weight, opacity, zIndex, addToMap, fitBounds, editable, draggable, color, object, infowindows, navigateOptions, style) {
|
|
3
|
+
this.path = path;
|
|
4
|
+
this.addToMap = addToMap;
|
|
5
|
+
this.fitBounds = fitBounds;
|
|
6
|
+
this.editable = editable;
|
|
7
|
+
this.draggable = draggable;
|
|
8
|
+
this.color = color;
|
|
9
|
+
this.weight = weight;
|
|
10
|
+
this.object = object;
|
|
11
|
+
this.infowindows = infowindows;
|
|
12
|
+
this.navigateOptions = navigateOptions;
|
|
13
|
+
this.style = style;
|
|
14
|
+
this.opacity = opacity;
|
|
15
|
+
this.zIndex = zIndex;
|
|
16
|
+
}
|
|
17
|
+
return PolylineOptions;
|
|
18
|
+
}());
|
|
19
|
+
export default PolylineOptions;
|
|
20
|
+
//# sourceMappingURL=polyline-options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"polyline-options.js","sourceRoot":"","sources":["../../../../src/models/features/polyline/polyline-options.ts"],"names":[],"mappings":"AAGA;IAeI,yBACI,IAAwB,EACxB,MAAsB,EACtB,OAAuB,EACvB,MAAe,EACf,QAAkB,EAClB,SAAmB,EACnB,QAAkB,EAClB,SAAmB,EACnB,KAAc,EACd,MAAe,EACf,WAAsB,EACtB,eAAmC,EACnC,KAAoB;QAEpB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,QAAQ,GAAG,QAAQ,CAAC;QACzB,IAAI,CAAC,SAAS,GAAG,SAAS,CAAC;QAC3B,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC;QACvC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACzB,CAAC;IACL,sBAAC;AAAD,CAAC,AA5CD,IA4CC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export default class PopupOptions {
|
|
2
|
+
latlng: number[];
|
|
3
|
+
content: string;
|
|
4
|
+
marker?: string;
|
|
5
|
+
conditionMarker?: any;
|
|
6
|
+
notCalledByMap?: boolean;
|
|
7
|
+
object?: object;
|
|
8
|
+
constructor(latlng: number[], content: string, marker?: string, conditionMarker?: any, notCalledByMap?: boolean, object?: object);
|
|
9
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
var PopupOptions = /** @class */ (function () {
|
|
2
|
+
function PopupOptions(latlng, content, marker, conditionMarker, notCalledByMap, object) {
|
|
3
|
+
this.latlng = latlng;
|
|
4
|
+
this.content = content;
|
|
5
|
+
this.marker = marker;
|
|
6
|
+
this.conditionMarker = conditionMarker;
|
|
7
|
+
this.notCalledByMap = notCalledByMap;
|
|
8
|
+
this.object = object;
|
|
9
|
+
}
|
|
10
|
+
return PopupOptions;
|
|
11
|
+
}());
|
|
12
|
+
export default PopupOptions;
|
|
13
|
+
//# sourceMappingURL=popup-options.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"popup-options.js","sourceRoot":"","sources":["../../../../src/models/features/popup/popup-options.ts"],"names":[],"mappings":"AAAA;IAQI,sBAAY,MAAgB,EAAE,OAAe,EAAE,MAAe,EAAE,eAAqB,EACjF,cAAwB,EAAE,MAAe;QACzC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,IAAI,CAAC,eAAe,GAAG,eAAe,CAAC;QACvC,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QACrC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACzB,CAAC;IACL,mBAAC;AAAD,CAAC,AAjBD,IAiBC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { MapType } from "../models/dto/map-type";
|
|
2
|
+
export declare class MapsApiLoaderService {
|
|
3
|
+
static loadGoogleAPI(params: {
|
|
4
|
+
apiKey: any;
|
|
5
|
+
client: any;
|
|
6
|
+
language: any;
|
|
7
|
+
libraries: any;
|
|
8
|
+
}): void;
|
|
9
|
+
static loadLeafletAPI(params: any): void;
|
|
10
|
+
private static windowRef;
|
|
11
|
+
private static mapsApi;
|
|
12
|
+
constructor();
|
|
13
|
+
loadApi(mapType: MapType, params: any): Promise<any>;
|
|
14
|
+
}
|