Add yet-another-react-lightbox package and update .gitignore to exclude node_modules
This commit is contained in:
22
frontend/node_modules/@react-jvectormap/core/LICENSE
generated
vendored
22
frontend/node_modules/@react-jvectormap/core/LICENSE
generated
vendored
@@ -1,22 +0,0 @@
|
||||
Copyright (c) 2015 Rubbby
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
files (the "Software"), to deal in the Software without
|
||||
restriction, including without limitation the rights to use,
|
||||
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following
|
||||
conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
||||
313
frontend/node_modules/@react-jvectormap/core/README.md
generated
vendored
313
frontend/node_modules/@react-jvectormap/core/README.md
generated
vendored
@@ -1,313 +0,0 @@
|
||||
# @react-jvectormap
|
||||
|
||||

|
||||
|
||||
[](https://badge.fury.io/js/@react-jvectormap%2Fcore)
|
||||
|
||||
## About
|
||||
|
||||
A simple wrapper for [jvectormap](http://jvectormap.com/)
|
||||
|
||||
## Quick Start
|
||||
|
||||
`npm install --save @react-jvectormap/core jquery`
|
||||
|
||||
or
|
||||
|
||||
`yarn add @react-jvectormap/core jquery`
|
||||
|
||||
To see examples, and play with the library, visit the project Storybook:
|
||||
|
||||
https://61685594b935d4003a3a6f2c-fcgvwodumn.chromatic.com/
|
||||
|
||||
# Basic Usage
|
||||
|
||||
## VectorMap
|
||||
|
||||
`VectorMap` is a basic map component. Available props:
|
||||
|
||||
```
|
||||
export interface IVectorMapProps extends IMapComponent {
|
||||
/**
|
||||
* Optional ref for accessing map methods
|
||||
*/
|
||||
mapRef?: MutableRefObject<MapObject | null>;
|
||||
/**
|
||||
* Container class Name
|
||||
*/
|
||||
className?: string;
|
||||
/**
|
||||
* Container inline CSS-in-JS style
|
||||
*/
|
||||
style?: CSSProperties;
|
||||
/**
|
||||
* Map content definition
|
||||
*/
|
||||
map: IVectorMap;
|
||||
/**
|
||||
* Background color of the map in CSS format.
|
||||
*/
|
||||
backgroundColor?: string;
|
||||
/**
|
||||
* Indicates the minimum zoom ratio which could be reached zooming the map. Default value is 1.
|
||||
*/
|
||||
zoomMin?: number;
|
||||
/**
|
||||
* Indicates the maximum zoom ratio which could be reached zooming the map. Default value is 8.
|
||||
*/
|
||||
zoomMax?: number;
|
||||
/**
|
||||
* Indicates the multiplier used to zoom map with +/- buttons. Default value is 1.6.
|
||||
*/
|
||||
zoomStep?: number;
|
||||
/**
|
||||
* When set to true map could be zoomed using mouse scroll. Default value is true.
|
||||
*/
|
||||
zoomOnScroll?: boolean;
|
||||
/**
|
||||
* Indicates whether or not to animate changing of map zoom with zoom buttons.
|
||||
*/
|
||||
zoomAnimate?: boolean;
|
||||
/**
|
||||
* This parameter sets the initial position and scale of the map viewport.
|
||||
*/
|
||||
focusOn?: IFocus;
|
||||
/**
|
||||
* When set to true, the map pans when being dragged. Default value is true.
|
||||
*/
|
||||
panOnDrag?: boolean;
|
||||
/**
|
||||
* When set to true regions of the map could be selected. Default value is false.
|
||||
*/
|
||||
regionsSelectable?: boolean;
|
||||
/**
|
||||
* Allow only one region to be selected at the moment. Default value is false.
|
||||
*/
|
||||
regionsSelectableOne?: boolean;
|
||||
/**
|
||||
* Set of markers to add to the map during initialization. In case of array is provided, codes of markers will be set as string representations of array indexes. Each marker is represented by latLng (array of two numeric values), name (string which will be show on marker's tip) and any marker styles.
|
||||
*/
|
||||
markers?: Marker[];
|
||||
/**
|
||||
* When set to true markers on the map could be selected. Default value is false.
|
||||
*/
|
||||
markersSelectable?: boolean;
|
||||
/**
|
||||
* Allow only one marker to be selected at the moment. Default value is false.
|
||||
*/
|
||||
markersSelectableOne?: boolean;
|
||||
/**
|
||||
* Set the styles for the map's regions. Each region or marker has four states: initial (default state), hover (when the mouse cursor is over the region or marker), selected (when region or marker is selected), selectedHover (when the mouse cursor is over the region or marker and it's selected simultaneously). Styles could be set for each of this states.
|
||||
*/
|
||||
regionStyle?:
|
||||
| ISVGElementStyleAttributes
|
||||
| ((code: string) => ISVGElementStyleAttributes);
|
||||
/**
|
||||
* Set the styles for the regions' labels. Each region or marker has four states: initial (default state), hover (when the mouse cursor is over the region or marker), selected (when region or marker is selected), selectedHover (when the mouse cursor is over the region or marker and it's selected simultaneously). Styles could be set for each of this states.
|
||||
*/
|
||||
regionLabelStyle?: ISVGElementStyleAttributes;
|
||||
/**
|
||||
* Set initially selected markers.
|
||||
*/
|
||||
selectedMarkers?: string[] | { [region: string]: boolean } | string;
|
||||
/**
|
||||
* Set the styles for the map's markers. Any parameter suitable for regionStyle could be used as well as numeric parameter r to set the marker's radius.
|
||||
*/
|
||||
markerStyle?: ISVGElementStyleAttributes | IImageElementStyleAttributes;
|
||||
/**
|
||||
* Will be called on region click event.
|
||||
*/
|
||||
onRegionClick?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called when region is (de)selected. isSelected parameter of the callback indicates whether region is selected or not. selectedRegions contains codes of all currently selected regions.
|
||||
*/
|
||||
onRegionSelected?: (
|
||||
event: JQuery.Event,
|
||||
code: string,
|
||||
isSelected: boolean,
|
||||
selectedRegions: string[],
|
||||
) => void;
|
||||
/**
|
||||
* Will be called right before the region tip is going to be shown.
|
||||
*/
|
||||
onRegionTipShow?: OnRegionTipShow;
|
||||
/**
|
||||
* Will be called on region mouse over event.
|
||||
*/
|
||||
onRegionOver?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called on region mouse out event.
|
||||
*/
|
||||
onRegionOut?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called right before the marker tip is going to be shown.
|
||||
*/
|
||||
onMarkerTipShow?: (event: JQuery.Event, el: Element, code: string) => void;
|
||||
/**
|
||||
* Will be called on marker mouse over event.
|
||||
*/
|
||||
onMarkerOver?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called on marker mouse out event.
|
||||
*/
|
||||
onMarkerOut?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called on marker click event.
|
||||
*/
|
||||
onMarkerClick?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called when marker is (de)selected. isSelected parameter of the callback indicates whether marker is selected or not. selectedMarkers contains codes of all currently selected markers.
|
||||
*/
|
||||
onMarkerSelected?: (
|
||||
event: JQuery.Event,
|
||||
code: string,
|
||||
isSelected: boolean,
|
||||
selectedMarkers: string[],
|
||||
) => void;
|
||||
/**
|
||||
* Triggered when the map's viewport is changed (map was panned or zoomed).
|
||||
*/
|
||||
onViewportChange?: (event: JQuery.Event, scale: number) => void;
|
||||
/**
|
||||
* Set initially selected regions.
|
||||
* examples: ["US-CA"] | { "US-CA": true } | "US-CA"
|
||||
*/
|
||||
selectedRegions?: SelectedEntities;
|
||||
/**
|
||||
* Object with two keys: markers and regions. Each of which is an array of series configs to be applied to the respective map elements.
|
||||
*/
|
||||
series?: ISeries;
|
||||
/**
|
||||
* Object with two keys: markers and regions. Each of which is an array of labels configs to be applied to the respective map elements.
|
||||
*/
|
||||
labels?: ILabels;
|
||||
}
|
||||
```
|
||||
|
||||
## MultiMap
|
||||
|
||||
A `MultiMap` is a map with a drill-down option. For instance, a map of the United States, by which clicking on a state opens it's map.
|
||||
|
||||
Available props:
|
||||
|
||||
```
|
||||
/**
|
||||
* Maximum number of levels user can go through
|
||||
*/
|
||||
maxLevel?: number;
|
||||
/**
|
||||
* Config of the main map.
|
||||
*/
|
||||
main: IMainMap;
|
||||
/**
|
||||
* Function to generate map name by region code. Default value is:
|
||||
*/
|
||||
mapNameByCode?: (code: string) => string;
|
||||
/**
|
||||
* Function to generate map url by region code. Default value is:
|
||||
*/
|
||||
mapUrlByCode?: (code: string) => string;
|
||||
/**
|
||||
* Function to manually retrieve map data
|
||||
* @param code
|
||||
*/
|
||||
getDrillDownMap?: (code: string) => Promise<IVectorMap> | IVectorMap;
|
||||
```
|
||||
|
||||
# Loading Maps
|
||||
|
||||
In order to use a pre-built map, run:
|
||||
|
||||
`npm install --save @react-jvectormap/spain`
|
||||
|
||||
or
|
||||
|
||||
`yarn add @react-jvectormap/spain`
|
||||
|
||||
### Usage
|
||||
|
||||
`import { esMill } from '@react-jvectormap/spain`;
|
||||
|
||||
Or, for bundling optimizations purposes (Recommended!):
|
||||
|
||||
`import esMill from "@react-jvectormap/spain/dist/esMill.json";`
|
||||
|
||||
```
|
||||
<VectorMap map={esMill} ... />
|
||||
```
|
||||
|
||||
### Available Prebuilt Maps
|
||||
|
||||
| Continent/Country/City | Miller | Mercator | Lambert | Albers | Misc | Package Name |
|
||||
| ---------------------- | ------------------ | ------------------ | ------- | ------ | ---------- | ---------------------------------------- |
|
||||
| Africa | africaMill | africaMerc | - | - | - | @react-jvectormap/africa |
|
||||
| Algeria | dzMill | - | - | - | - | @react-jvectormap/algeria |
|
||||
| Argentina | arMill | arMerc | - | - | - | @react-jvectormap/argentina |
|
||||
| Asia | asiaMill | asiaMerc | - | - | - | @react-jvectormap/asia |
|
||||
| Australia | auMill | auMerc | - | - | - | @react-jvectormap/australia |
|
||||
| Austria | atMill | atMerc | - | - | - | @react-jvectormap/austria |
|
||||
| Belgium | beMill | beMerc | - | - | - | @react-jvectormap/belgium |
|
||||
| Brazil | brMill | - | - | - | - | @react-jvectormap/brazil |
|
||||
| Canada | caMill | caMerc | caLcc | - | - | @react-jvectormap/canada |
|
||||
| Chicago | usIlChicagoMill | usIlChicagoMerc | - | - | - | @react-jvectormap/chicago |
|
||||
| China | cnMill | cnMerc | - | - | - | @react-jvectormap/china |
|
||||
| Colombia | coMill | coMerc | - | - | - | @react-jvectormap/colombia |
|
||||
| Continents | continentsMill | continentsMerc | - | - | - | @react-jvectormap/continents |
|
||||
| Denmark | dkMill | dkMerc | - | - | - | @react-jvectormap/denmark |
|
||||
| Europe | europeMill | europeMerc | - | - | - | @react-jvectormap/europe |
|
||||
| France | frMill | frMerc | - | - | - | @react-jvectormap/france |
|
||||
| FranceRegions | frRegionsMill | frRegionsMerc | - | - | - | @react-jvectormap/franceregions |
|
||||
| FranceRegions2016 | frRegions_2016Mill | frRegions_2016Merc | - | - | - | @react-jvectormap/franceregions2016 |
|
||||
| Germany | deMill | deMerc | - | - | - | @react-jvectormap/germany |
|
||||
| India | inMill | inMerc | - | - | - | @react-jvectormap/india |
|
||||
| Iran | iranMill | - | - | - | - | @react-jvectormap/iran |
|
||||
| Italy | itMill | itMerc | - | - | - | @react-jvectormap/italy |
|
||||
| ItalyRegions | itRegionsMill | itRegionsMerc | - | - | - | @react-jvectormap/italyregions |
|
||||
| Netherlands | nlMill | nlMerc | - | - | - | @react-jvectormap/netherlands |
|
||||
| NewYork | usNyNewYorkMill | usNyNewYorkMerc | - | - | - | @react-jvectormap/newyork |
|
||||
| NewZiland | nzMill | nzMerc | - | - | - | @react-jvectormap/newziland |
|
||||
| NorthAmerica | northAmericaMill | northAmericaMerc | - | - | - | @react-jvectormap/northamerica |
|
||||
| Norway | noMill | noMerc | - | - | - | @react-jvectormap/norway |
|
||||
| Oceania | oceaniaMill | oceaniaMerc | - | - | - | @react-jvectormap/oceania |
|
||||
| Poland | plMill | plMerc | - | - | - | @react-jvectormap/poland |
|
||||
| Portugal | ptMill | ptMerc | - | - | - | @react-jvectormap/portugal |
|
||||
| PuertoRico | - | - | - | - | puertoRico | @react-jvectormap/puertorico |
|
||||
| Russia | ruMill | ruMerc | - | - | - | @react-jvectormap/russia |
|
||||
| RussiaFederalDistricts | ruFdMill | ruFdMerc | - | - | - | @react-jvectormap/russiafederaldistricts |
|
||||
| SouthAfrica | zaMill | zaMerc | - | - | - | @react-jvectormap/southafrica |
|
||||
| SouthAmerica | southAmericaMill | southAmericaMerc | - | - | - | @react-jvectormap/southamerica |
|
||||
| SouthKorea | krMill | krMerc | - | - | - | @react-jvectormap/southkorea |
|
||||
| Spain | esMill | esMerc | - | - | - | @react-jvectormap/spain |
|
||||
| Sweden | seMill | seMerc | - | - | - | @react-jvectormap/sweden |
|
||||
| Switzerland | chMill | chMerc | - | - | - | @react-jvectormap/switzerland |
|
||||
| Thailand | thMill | thMerc | - | - | - | @react-jvectormap/thailand |
|
||||
| UkRegions | ukRegionsMill | ukRegionsMerc | - | - | - | @react-jvectormap/ukregions |
|
||||
| UnitedKingdomCountries | ukCountriesMill | ukCountriesMerc | - | - | - | @react-jvectormap/unitedkingdomcountries |
|
||||
| UnitedStates | usAea | usMill | useMerc | usLcc | - | @react-jvectormap/unitedstates |
|
||||
| Venezuela | veMill | veMerc | - | - | - | @react-jvectormap/venezuela |
|
||||
| World | worldMill | worldMerc | - | - | - | @react-jvectormap/world |
|
||||
|
||||
## Custom Maps
|
||||
|
||||
A `@react-jvectormap` map is represented by the following JSON schema:
|
||||
|
||||
```
|
||||
{
|
||||
"name": string,
|
||||
"content": {
|
||||
"paths": {
|
||||
[REGION_CODE]: {
|
||||
path: string (SVG Path)
|
||||
"name": string;
|
||||
}
|
||||
}
|
||||
},
|
||||
"projection(optional)": { "type": string, "centralMeridian": number },
|
||||
"height": number,
|
||||
"width": number
|
||||
}
|
||||
```
|
||||
|
||||
# Prop Builders
|
||||
|
||||
TBD
|
||||
3
frontend/node_modules/@react-jvectormap/core/babel.config.js
generated
vendored
3
frontend/node_modules/@react-jvectormap/core/babel.config.js
generated
vendored
@@ -1,3 +0,0 @@
|
||||
module.exports = {
|
||||
extends: "../../babel.config.js",
|
||||
};
|
||||
@@ -1,8 +0,0 @@
|
||||
import { CSSProperties, FC, Ref } from "react";
|
||||
interface IMapContainerProps {
|
||||
style?: CSSProperties;
|
||||
className?: string;
|
||||
containerRef: Ref<HTMLDivElement>;
|
||||
}
|
||||
export declare const MapContainer: FC<IMapContainerProps>;
|
||||
export {};
|
||||
1
frontend/node_modules/@react-jvectormap/core/dist/components/MapContainer/index.d.ts
generated
vendored
1
frontend/node_modules/@react-jvectormap/core/dist/components/MapContainer/index.d.ts
generated
vendored
@@ -1 +0,0 @@
|
||||
export { MapContainer } from "./MapContainer";
|
||||
3
frontend/node_modules/@react-jvectormap/core/dist/components/MultiMap/MultiMap.d.ts
generated
vendored
3
frontend/node_modules/@react-jvectormap/core/dist/components/MultiMap/MultiMap.d.ts
generated
vendored
@@ -1,3 +0,0 @@
|
||||
import { FC } from "react";
|
||||
import { IMultiMapProps } from "../../types";
|
||||
export declare const MultiMap: FC<IMultiMapProps>;
|
||||
1
frontend/node_modules/@react-jvectormap/core/dist/components/MultiMap/index.d.ts
generated
vendored
1
frontend/node_modules/@react-jvectormap/core/dist/components/MultiMap/index.d.ts
generated
vendored
@@ -1 +0,0 @@
|
||||
export { MultiMap } from "./MultiMap";
|
||||
@@ -1,3 +0,0 @@
|
||||
import { FC } from "react";
|
||||
import { IVectorMapProps } from "../../types";
|
||||
export declare const VectorMap: FC<IVectorMapProps>;
|
||||
1
frontend/node_modules/@react-jvectormap/core/dist/components/VectorMap/index.d.ts
generated
vendored
1
frontend/node_modules/@react-jvectormap/core/dist/components/VectorMap/index.d.ts
generated
vendored
@@ -1 +0,0 @@
|
||||
export { VectorMap } from "./VectorMap";
|
||||
2
frontend/node_modules/@react-jvectormap/core/dist/components/index.d.ts
generated
vendored
2
frontend/node_modules/@react-jvectormap/core/dist/components/index.d.ts
generated
vendored
@@ -1,2 +0,0 @@
|
||||
export * from "./VectorMap";
|
||||
export * from "./MultiMap";
|
||||
2
frontend/node_modules/@react-jvectormap/core/dist/index.d.ts
generated
vendored
2
frontend/node_modules/@react-jvectormap/core/dist/index.d.ts
generated
vendored
@@ -1,2 +0,0 @@
|
||||
export * from "./components";
|
||||
export * from "./utils";
|
||||
534
frontend/node_modules/@react-jvectormap/core/dist/index.js
generated
vendored
534
frontend/node_modules/@react-jvectormap/core/dist/index.js
generated
vendored
File diff suppressed because one or more lines are too long
374
frontend/node_modules/@react-jvectormap/core/dist/types.d.ts
generated
vendored
374
frontend/node_modules/@react-jvectormap/core/dist/types.d.ts
generated
vendored
@@ -1,374 +0,0 @@
|
||||
/// <reference types="jquery" />
|
||||
import { CSSProperties, MutableRefObject } from "react";
|
||||
export declare type Nullable<T> = null | T;
|
||||
interface ISetFocusParams {
|
||||
regions?: string[];
|
||||
region?: string;
|
||||
scale?: number;
|
||||
lat?: number;
|
||||
lng?: number;
|
||||
x?: number;
|
||||
y?: number;
|
||||
animate?: boolean;
|
||||
}
|
||||
export interface IMapObject {
|
||||
/**
|
||||
* Add one marker to the map.
|
||||
* @param key
|
||||
* @param marker
|
||||
* @param seriesData
|
||||
*/
|
||||
addMarker: (key: string, marker: Marker, seriesData: IAttributeSeries[]) => void;
|
||||
/**
|
||||
* Add set of marker to the map.
|
||||
* @param key
|
||||
*/
|
||||
addMarkers: (markers: Marker[], seriesData: IAttributeSeries[]) => void;
|
||||
/**
|
||||
* Remove the selected state from all the currently selected markers.
|
||||
*/
|
||||
clearSelectedMarkers: () => void;
|
||||
/**
|
||||
* Remove the selected state from all the currently selected regions.
|
||||
*/
|
||||
clearSelectedRegions: () => void;
|
||||
/**
|
||||
* Get the name of a region
|
||||
*/
|
||||
getRegionName: (code: string) => void;
|
||||
/**
|
||||
* Return the codes of currently selected markers.
|
||||
*/
|
||||
getSelectedMarkers: () => Marker[];
|
||||
/**
|
||||
* Return the codes of currently selected regions.
|
||||
*/
|
||||
getSelectedRegions: () => IRegion[];
|
||||
/**
|
||||
* Converts coordinates expressed as latitude and longitude to the coordinates in pixels on the map.
|
||||
*/
|
||||
latLngToPoint: (lat: number, lng: number) => number[];
|
||||
/**
|
||||
* Converts cartesian coordinates into coordinates expressed as latitude and longitude.
|
||||
*/
|
||||
pointToLatLng: (x: number, y: number) => number[];
|
||||
/**
|
||||
* Gracefully remove the map and and all its accessories, unbind event handlers.
|
||||
*/
|
||||
remove: () => void;
|
||||
/**
|
||||
* Remove all markers from the map.
|
||||
*/
|
||||
removeAllMarkers: () => void;
|
||||
/**
|
||||
* Remove some markers from the map.
|
||||
*/
|
||||
removeMarkers: () => void;
|
||||
/**
|
||||
* Reset all the series and show the map with the initial zoom.
|
||||
*/
|
||||
reset: () => void;
|
||||
/**
|
||||
* Set background color of the map.
|
||||
*/
|
||||
setBackgroundColor: (backgroundColor: string) => void;
|
||||
/**
|
||||
* Set the map's viewport to the specific point and set zoom of the map to the specific level. Point and zoom level could be defined in two ways: using the code of some region to focus on or a central point and zoom level as numbers.
|
||||
*/
|
||||
setFocus: (params: ISetFocusParams) => void;
|
||||
/**
|
||||
* Set or remove selected state for the markers.
|
||||
* @param keys
|
||||
*/
|
||||
setSelectedMarkers: (keys: string | string[] | {
|
||||
[key: string]: boolean;
|
||||
}) => void;
|
||||
/**
|
||||
* Set or remove selected state for the regions.
|
||||
* @param keys
|
||||
*/
|
||||
setSelectedRegions: (keys: string | string[] | {
|
||||
[key: string]: boolean;
|
||||
}) => void;
|
||||
/**
|
||||
* Synchronize the size of the map with the size of the container. Suitable in situations where the size of the container is changed programmatically or container is shown after it became visible.
|
||||
*/
|
||||
updateSize: () => void;
|
||||
}
|
||||
export declare type MapObject = IMapObject;
|
||||
interface IMapComponent {
|
||||
/**
|
||||
* Optional ref for accessing map methods
|
||||
*/
|
||||
mapRef?: MutableRefObject<MapObject | null>;
|
||||
/**
|
||||
* Container class Name
|
||||
*/
|
||||
className?: string;
|
||||
/**
|
||||
* Container inline CSS-in-JS style
|
||||
*/
|
||||
style?: CSSProperties;
|
||||
}
|
||||
export interface IVectorMapProps extends IMapComponent {
|
||||
/**
|
||||
* Map content definition
|
||||
*/
|
||||
map: IVectorMap;
|
||||
/**
|
||||
* Background color of the map in CSS format.
|
||||
*/
|
||||
backgroundColor?: string;
|
||||
/**
|
||||
* Indicates the minimum zoom ratio which could be reached zooming the map. Default value is 1.
|
||||
*/
|
||||
zoomMin?: number;
|
||||
/**
|
||||
* Indicates the maximum zoom ratio which could be reached zooming the map. Default value is 8.
|
||||
*/
|
||||
zoomMax?: number;
|
||||
/**
|
||||
* Indicates the multiplier used to zoom map with +/- buttons. Default value is 1.6.
|
||||
*/
|
||||
zoomStep?: number;
|
||||
/**
|
||||
* When set to true map could be zoomed using mouse scroll. Default value is true.
|
||||
*/
|
||||
zoomOnScroll?: boolean;
|
||||
/**
|
||||
* Indicates whether or not to animate changing of map zoom with zoom buttons.
|
||||
*/
|
||||
zoomAnimate?: boolean;
|
||||
/**
|
||||
* This parameter sets the initial position and scale of the map viewport.
|
||||
*/
|
||||
focusOn?: IFocus;
|
||||
/**
|
||||
* When set to true, the map pans when being dragged. Default value is true.
|
||||
*/
|
||||
panOnDrag?: boolean;
|
||||
/**
|
||||
* When set to true regions of the map could be selected. Default value is false.
|
||||
*/
|
||||
regionsSelectable?: boolean;
|
||||
/**
|
||||
* Allow only one region to be selected at the moment. Default value is false.
|
||||
*/
|
||||
regionsSelectableOne?: boolean;
|
||||
/**
|
||||
* Set of markers to add to the map during initialization. In case of array is provided, codes of markers will be set as string representations of array indexes. Each marker is represented by latLng (array of two numeric values), name (string which will be show on marker's tip) and any marker styles.
|
||||
*/
|
||||
markers?: Marker[];
|
||||
/**
|
||||
* When set to true markers on the map could be selected. Default value is false.
|
||||
*/
|
||||
markersSelectable?: boolean;
|
||||
/**
|
||||
* Allow only one marker to be selected at the moment. Default value is false.
|
||||
*/
|
||||
markersSelectableOne?: boolean;
|
||||
/**
|
||||
* Set the styles for the map's regions. Each region or marker has four states: initial (default state), hover (when the mouse cursor is over the region or marker), selected (when region or marker is selected), selectedHover (when the mouse cursor is over the region or marker and it's selected simultaneously). Styles could be set for each of this states.
|
||||
*/
|
||||
regionStyle?: ISVGElementStyleAttributes | ((code: string) => ISVGElementStyleAttributes);
|
||||
/**
|
||||
* Set the styles for the regions' labels. Each region or marker has four states: initial (default state), hover (when the mouse cursor is over the region or marker), selected (when region or marker is selected), selectedHover (when the mouse cursor is over the region or marker and it's selected simultaneously). Styles could be set for each of this states.
|
||||
*/
|
||||
regionLabelStyle?: ISVGElementStyleAttributes;
|
||||
/**
|
||||
* Set initially selected markers.
|
||||
*/
|
||||
selectedMarkers?: string[] | {
|
||||
[region: string]: boolean;
|
||||
} | string;
|
||||
/**
|
||||
* Set the styles for the map's markers. Any parameter suitable for regionStyle could be used as well as numeric parameter r to set the marker's radius.
|
||||
*/
|
||||
markerStyle?: ISVGElementStyleAttributes | IImageElementStyleAttributes;
|
||||
/**
|
||||
* Will be called on region click event.
|
||||
*/
|
||||
onRegionClick?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called when region is (de)selected. isSelected parameter of the callback indicates whether region is selected or not. selectedRegions contains codes of all currently selected regions.
|
||||
*/
|
||||
onRegionSelected?: (event: JQuery.Event, code: string, isSelected: boolean, selectedRegions: string[]) => void;
|
||||
/**
|
||||
* Will be called right before the region tip is going to be shown.
|
||||
*/
|
||||
onRegionTipShow?: OnRegionTipShow;
|
||||
/**
|
||||
* Will be called on region mouse over event.
|
||||
*/
|
||||
onRegionOver?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called on region mouse out event.
|
||||
*/
|
||||
onRegionOut?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called right before the marker tip is going to be shown.
|
||||
*/
|
||||
onMarkerTipShow?: (event: JQuery.Event, el: Element, code: string) => void;
|
||||
/**
|
||||
* Will be called on marker mouse over event.
|
||||
*/
|
||||
onMarkerOver?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called on marker mouse out event.
|
||||
*/
|
||||
onMarkerOut?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called on marker click event.
|
||||
*/
|
||||
onMarkerClick?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called when marker is (de)selected. isSelected parameter of the callback indicates whether marker is selected or not. selectedMarkers contains codes of all currently selected markers.
|
||||
*/
|
||||
onMarkerSelected?: (event: JQuery.Event, code: string, isSelected: boolean, selectedMarkers: string[]) => void;
|
||||
/**
|
||||
* Triggered when the map's viewport is changed (map was panned or zoomed).
|
||||
*/
|
||||
onViewportChange?: (event: JQuery.Event, scale: number) => void;
|
||||
/**
|
||||
* Set initially selected regions.
|
||||
* examples: ["US-CA"] | { "US-CA": true } | "US-CA"
|
||||
*/
|
||||
selectedRegions?: SelectedEntities;
|
||||
/**
|
||||
* Object with two keys: markers and regions. Each of which is an array of series configs to be applied to the respective map elements.
|
||||
*/
|
||||
series?: ISeries;
|
||||
/**
|
||||
* Object with two keys: markers and regions. Each of which is an array of labels configs to be applied to the respective map elements.
|
||||
*/
|
||||
labels?: ILabels;
|
||||
}
|
||||
export interface IMainMap {
|
||||
map: IVectorMap;
|
||||
}
|
||||
export interface IMultiMapProps extends IMapComponent {
|
||||
/**
|
||||
* Maximum number of levels user can go through
|
||||
*/
|
||||
maxLevel?: number;
|
||||
/**
|
||||
* Config of the main map.
|
||||
*/
|
||||
main: IMainMap;
|
||||
/**
|
||||
* Function to generate map name by region code. Default value is:
|
||||
*/
|
||||
mapNameByCode?: (code: string) => string;
|
||||
/**
|
||||
* Function to generate map url by region code. Default value is:
|
||||
*/
|
||||
mapUrlByCode?: (code: string) => string;
|
||||
/**
|
||||
* Function to manually retrieve map data
|
||||
* @param code
|
||||
*/
|
||||
getDrillDownMap?: (code: string) => Promise<IVectorMap> | IVectorMap;
|
||||
}
|
||||
interface IBBox {
|
||||
x: number;
|
||||
y: number;
|
||||
}
|
||||
interface IInset {
|
||||
width: number;
|
||||
height: number;
|
||||
top: number;
|
||||
left: number;
|
||||
bbox: IBBox[];
|
||||
}
|
||||
interface IProjection {
|
||||
type: string;
|
||||
centralMeridian: number;
|
||||
}
|
||||
export interface IVectorMap {
|
||||
name: string;
|
||||
content: {
|
||||
insets: IInset[];
|
||||
paths: PathsDefinition;
|
||||
height: number;
|
||||
width: number;
|
||||
projection: IProjection;
|
||||
};
|
||||
}
|
||||
interface IFocus {
|
||||
scale: number;
|
||||
x: number;
|
||||
y: number;
|
||||
region?: string;
|
||||
lat?: number;
|
||||
lng?: number;
|
||||
animate?: boolean;
|
||||
}
|
||||
export interface ISVGElementStyleAttributes {
|
||||
initial?: CSSProperties;
|
||||
hover?: CSSProperties;
|
||||
selected?: CSSProperties;
|
||||
selectedHover?: CSSProperties;
|
||||
}
|
||||
interface IImageElementStyleAttributes {
|
||||
url: string;
|
||||
offset?: number[];
|
||||
}
|
||||
declare type PathsDefinition = {
|
||||
[key: string]: {
|
||||
path: string;
|
||||
name: string;
|
||||
};
|
||||
};
|
||||
export interface ISeries {
|
||||
regions?: IAttributeSeries[];
|
||||
markers?: IAttributeSeries[];
|
||||
}
|
||||
declare type Scale = {
|
||||
[key: string]: string;
|
||||
} | number[] | string[];
|
||||
declare type Values = {
|
||||
[key: string]: string | number;
|
||||
};
|
||||
export declare type NormalizeFunctionType = "linear" | "polynomial";
|
||||
export interface IAttributeSeries {
|
||||
attribute: string;
|
||||
values?: number[] | {
|
||||
[key: string]: number;
|
||||
};
|
||||
scale?: Scale;
|
||||
normalizeFunction?: NormalizeFunctionType | ((value?: number) => string);
|
||||
}
|
||||
export interface IRegion {
|
||||
scale: Scale;
|
||||
values: Values;
|
||||
attribute: string;
|
||||
normalizeFunction?: NormalizeFunctionType | ((value?: number) => string);
|
||||
}
|
||||
interface IMarkerBase {
|
||||
name: string;
|
||||
style?: CSSProperties;
|
||||
}
|
||||
interface IMarkerWithCoords extends IMarkerBase {
|
||||
coords: number[];
|
||||
}
|
||||
interface IMarkerWithLatLng extends IMarkerBase {
|
||||
latLng: number[];
|
||||
}
|
||||
export declare type RenderLabel = (code: string) => void | string;
|
||||
export declare type GetOffsets = (code: string) => {
|
||||
[key: string | number]: number[];
|
||||
};
|
||||
export interface ILabelsProps {
|
||||
render: RenderLabel;
|
||||
offsets: GetOffsets;
|
||||
}
|
||||
export interface ILabels {
|
||||
regions?: ILabelsProps;
|
||||
markers?: ILabelsProps;
|
||||
}
|
||||
export declare type Marker = IMarkerWithCoords | IMarkerWithLatLng;
|
||||
export declare type OnRegionTipShow = (event: JQuery.Event, el: Element, code: string) => void;
|
||||
export declare type SelectedEntities = string[] | {
|
||||
[region: string]: boolean;
|
||||
} | string;
|
||||
export {};
|
||||
@@ -1,35 +0,0 @@
|
||||
import { IAttributeSeries, NormalizeFunctionType } from "../../types";
|
||||
import { IBuilder } from "./types";
|
||||
export declare class AttributeSeriesBuilder implements IBuilder<IAttributeSeries> {
|
||||
private attribute;
|
||||
private scale?;
|
||||
private values?;
|
||||
private normalizeFunction?;
|
||||
constructor(attribute: string);
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setAttribute(value: string): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setScale(value: number[]): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setValues(value: number[]): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setNormalizeFunction(value: NormalizeFunctionType): this;
|
||||
build(): {
|
||||
scale: number[] | undefined;
|
||||
values: number[] | undefined;
|
||||
attribute: string;
|
||||
normalizeFunction: NormalizeFunctionType | undefined;
|
||||
};
|
||||
}
|
||||
19
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/LabelsBuilder.d.ts
generated
vendored
19
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/LabelsBuilder.d.ts
generated
vendored
@@ -1,19 +0,0 @@
|
||||
import { ILabels, ILabelsProps } from "../../types";
|
||||
import { IBuilder } from "./types";
|
||||
export declare class LabelsBuilder implements IBuilder<ILabels> {
|
||||
private markers?;
|
||||
private regions?;
|
||||
/**
|
||||
*
|
||||
* @param values
|
||||
*/
|
||||
addMarkersLabelProps(...values: ILabelsProps[]): this;
|
||||
/**
|
||||
*
|
||||
* @param values
|
||||
*/
|
||||
addRegionsLabelProps(...values: ILabelsProps[]): this;
|
||||
build(): {
|
||||
[k: string]: unknown;
|
||||
};
|
||||
}
|
||||
24
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/LabelsPropsBuilder.d.ts
generated
vendored
24
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/LabelsPropsBuilder.d.ts
generated
vendored
@@ -1,24 +0,0 @@
|
||||
import { GetOffsets, ILabelsProps, RenderLabel } from "../../types";
|
||||
import { IBuilder } from "./types";
|
||||
export declare class LabelsPropsBuilder implements IBuilder<ILabelsProps> {
|
||||
private render;
|
||||
private offsets;
|
||||
constructor(render: RenderLabel, offsets: GetOffsets);
|
||||
/**
|
||||
*
|
||||
* @param render
|
||||
*/
|
||||
setRender(render: RenderLabel): this;
|
||||
/**
|
||||
*
|
||||
* @param offsets
|
||||
*/
|
||||
setOffsets(offsets: GetOffsets): this;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
build(): {
|
||||
render: RenderLabel;
|
||||
offsets: GetOffsets;
|
||||
};
|
||||
}
|
||||
42
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/MarkerBuilder.d.ts
generated
vendored
42
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/MarkerBuilder.d.ts
generated
vendored
@@ -1,42 +0,0 @@
|
||||
import { CSSProperties } from "react";
|
||||
import { Marker } from "../../types";
|
||||
import { IBuilder } from "./types";
|
||||
export declare class MarkerBuilder implements IBuilder<Marker> {
|
||||
private name;
|
||||
private coords?;
|
||||
private latLng?;
|
||||
private style?;
|
||||
constructor(value: string);
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setName(value: string): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setCoords(value: number[]): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setLatLng(value: number[]): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setStyle(value: CSSProperties): this;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
build(): {
|
||||
coords: number[];
|
||||
name: string;
|
||||
style: CSSProperties | undefined;
|
||||
} | {
|
||||
latLng: number[];
|
||||
name: string;
|
||||
style: CSSProperties | undefined;
|
||||
};
|
||||
}
|
||||
39
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/MultiMapBuilder.d.ts
generated
vendored
39
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/MultiMapBuilder.d.ts
generated
vendored
@@ -1,39 +0,0 @@
|
||||
import { IMainMap, IMultiMapProps, IVectorMap } from "../../types";
|
||||
import { IBuilder } from "./types";
|
||||
export declare class MultiMapBuilder implements IBuilder<IMultiMapProps> {
|
||||
private readonly main;
|
||||
private maxLevel?;
|
||||
private mapNameByCode?;
|
||||
private mapUrlByCode?;
|
||||
private getDrillDownMap?;
|
||||
constructor(mainMap: IVectorMap, maxLevel?: number);
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setMainMap(value: IVectorMap): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setMaxLevel(value: number): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setMapNameByCode(value: (code: string) => string): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setUrlByCode(value: (code: string) => string): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setGetDrillDownMap(value: (code: string) => Promise<IVectorMap> | IVectorMap): this;
|
||||
build(): {
|
||||
main: IMainMap;
|
||||
maxLevel: number | undefined;
|
||||
};
|
||||
}
|
||||
19
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/SeriesBuilder.d.ts
generated
vendored
19
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/SeriesBuilder.d.ts
generated
vendored
@@ -1,19 +0,0 @@
|
||||
import { IAttributeSeries, ISeries } from "../../types";
|
||||
import { IBuilder } from "./types";
|
||||
export declare class SeriesBuilder implements IBuilder<ISeries> {
|
||||
private markers?;
|
||||
private regions?;
|
||||
/**
|
||||
*
|
||||
* @param values
|
||||
*/
|
||||
addMarkersSeries(...values: IAttributeSeries[]): this;
|
||||
/**
|
||||
*
|
||||
* @param values
|
||||
*/
|
||||
addRegionsSeries(...values: IAttributeSeries[]): this;
|
||||
build(): {
|
||||
[k: string]: unknown;
|
||||
};
|
||||
}
|
||||
32
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/StyleBuilder.d.ts
generated
vendored
32
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/StyleBuilder.d.ts
generated
vendored
@@ -1,32 +0,0 @@
|
||||
import { CSSProperties } from "react";
|
||||
import { ISVGElementStyleAttributes } from "../../types";
|
||||
import { IBuilder } from "./types";
|
||||
export declare class StyleBuilder implements IBuilder<ISVGElementStyleAttributes> {
|
||||
private initial?;
|
||||
private selected?;
|
||||
private hover?;
|
||||
private selectedHover?;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setInitial(value: CSSProperties): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setSelected(value: CSSProperties): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setHover(value: CSSProperties): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setSelectedHover(value: CSSProperties): this;
|
||||
build(): {
|
||||
[k: string]: unknown;
|
||||
};
|
||||
}
|
||||
108
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/VectorMapBuilder.d.ts
generated
vendored
108
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/VectorMapBuilder.d.ts
generated
vendored
@@ -1,108 +0,0 @@
|
||||
import { ILabels, ISeries, ISVGElementStyleAttributes, IVectorMap, IVectorMapProps, Marker, OnRegionTipShow, SelectedEntities } from "../../types";
|
||||
import { IBuilder } from "./types";
|
||||
export declare class VectorMapBuilder implements IBuilder<IVectorMapProps> {
|
||||
private map;
|
||||
private backgroundColor?;
|
||||
private zoomMin?;
|
||||
private zoomMax?;
|
||||
private markers?;
|
||||
private markerStyle?;
|
||||
private regionStyle?;
|
||||
private regionsSelectable?;
|
||||
private markersSelectable?;
|
||||
private onRegionTipShow?;
|
||||
private series?;
|
||||
private labels?;
|
||||
private selectedRegions?;
|
||||
constructor(map: IVectorMap);
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setMap(value: IVectorMap): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setBackgroundColor(value: string): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setZoomMin(value: number): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setZoomMax(value: number): this;
|
||||
/**
|
||||
*
|
||||
* @param marker
|
||||
*/
|
||||
addMarker(marker: Marker): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setMarkerStyle(value: ISVGElementStyleAttributes): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setRegionStyle(value: ISVGElementStyleAttributes | ((code: string) => ISVGElementStyleAttributes)): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
* @private
|
||||
*/
|
||||
setMarkersSelectable(value: boolean): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setMarkers(value: Marker[]): this;
|
||||
/**
|
||||
*
|
||||
* @private
|
||||
* @param value
|
||||
*/
|
||||
setRegionsSelectable(value: boolean): this;
|
||||
/**
|
||||
*
|
||||
* @private
|
||||
* @param value
|
||||
*/
|
||||
setOnRegionTipShow(value: OnRegionTipShow): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setSeries(value: ISeries): this;
|
||||
/**
|
||||
*
|
||||
* @param values
|
||||
*/
|
||||
setLabels(values: ILabels): this;
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
setSelectedRegions(value: SelectedEntities): this;
|
||||
/**
|
||||
*
|
||||
*/
|
||||
build(): {
|
||||
map: IVectorMap;
|
||||
series: ISeries | undefined;
|
||||
backgroundColor: string | undefined;
|
||||
zoomMax: number | undefined;
|
||||
zoomMin: number | undefined;
|
||||
markerStyle: ISVGElementStyleAttributes | undefined;
|
||||
regionStyle: ISVGElementStyleAttributes | ((code: string) => ISVGElementStyleAttributes) | undefined;
|
||||
markersSelectable: boolean | undefined;
|
||||
regionsSelectable: boolean | undefined;
|
||||
markers: Marker[] | undefined;
|
||||
labels: ILabels | undefined;
|
||||
selectedRegions: SelectedEntities | undefined;
|
||||
};
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
export {};
|
||||
@@ -1 +0,0 @@
|
||||
export {};
|
||||
@@ -1 +0,0 @@
|
||||
export {};
|
||||
@@ -1 +0,0 @@
|
||||
export {};
|
||||
@@ -1 +0,0 @@
|
||||
export {};
|
||||
@@ -1 +0,0 @@
|
||||
export {};
|
||||
@@ -1,27 +0,0 @@
|
||||
export declare const MapMock1: {
|
||||
name: string;
|
||||
content: {
|
||||
insets: {
|
||||
width: number;
|
||||
top: number;
|
||||
height: number;
|
||||
bbox: {
|
||||
y: number;
|
||||
x: number;
|
||||
}[];
|
||||
left: number;
|
||||
}[];
|
||||
paths: {
|
||||
V1: {
|
||||
path: string;
|
||||
name: string;
|
||||
};
|
||||
};
|
||||
height: number;
|
||||
projection: {
|
||||
type: string;
|
||||
centralMeridian: number;
|
||||
};
|
||||
width: number;
|
||||
};
|
||||
};
|
||||
8
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/index.d.ts
generated
vendored
8
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/index.d.ts
generated
vendored
@@ -1,8 +0,0 @@
|
||||
export { VectorMapBuilder } from "./VectorMapBuilder";
|
||||
export { MarkerBuilder } from "./MarkerBuilder";
|
||||
export { StyleBuilder } from "./StyleBuilder";
|
||||
export { AttributeSeriesBuilder } from "./AttributeSeriesBuilder";
|
||||
export { SeriesBuilder } from "./SeriesBuilder";
|
||||
export { LabelsBuilder } from "./LabelsBuilder";
|
||||
export { LabelsPropsBuilder } from "./LabelsPropsBuilder";
|
||||
export { MultiMapBuilder } from "./MultiMapBuilder";
|
||||
3
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/types.d.ts
generated
vendored
3
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/types.d.ts
generated
vendored
@@ -1,3 +0,0 @@
|
||||
export interface IBuilder<T> {
|
||||
build: () => T;
|
||||
}
|
||||
9
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/utils.d.ts
generated
vendored
9
frontend/node_modules/@react-jvectormap/core/dist/utils/builders/utils.d.ts
generated
vendored
@@ -1,9 +0,0 @@
|
||||
/**
|
||||
* remove undefined values from object
|
||||
* @param object
|
||||
*/
|
||||
export declare const stripUndefinedValues: (object: {
|
||||
[key: string]: unknown;
|
||||
}) => {
|
||||
[k: string]: unknown;
|
||||
};
|
||||
1
frontend/node_modules/@react-jvectormap/core/dist/utils/index.d.ts
generated
vendored
1
frontend/node_modules/@react-jvectormap/core/dist/utils/index.d.ts
generated
vendored
@@ -1 +0,0 @@
|
||||
export * from "./builders";
|
||||
44
frontend/node_modules/@react-jvectormap/core/package.json
generated
vendored
44
frontend/node_modules/@react-jvectormap/core/package.json
generated
vendored
@@ -1,44 +0,0 @@
|
||||
{
|
||||
"name": "@react-jvectormap/core",
|
||||
"version": "1.0.4",
|
||||
"description": "> TODO: description",
|
||||
"author": "Mor Kadosh <kadoshms@gmail.com>",
|
||||
"homepage": "https://github.com/kadoshms/react-jvectormap#readme",
|
||||
"license": "ISC",
|
||||
"main": "dist/index.js",
|
||||
"types": "dist/index.d.ts",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"jquery": "^3.6",
|
||||
"react": "^16.8 || ^17 || ^18",
|
||||
"react-dom": "^16.8 || ^17 || ^18"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/kadoshms/react-jvectormap.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "jest",
|
||||
"build": "rimraf dist && yarn run build:types && yarn run build:bundle",
|
||||
"build:bundle": "webpack --mode development",
|
||||
"build:types": "tsc --emitDeclarationOnly"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/kadoshms/react-jvectormap/issues"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/jquery": "^3.5.6",
|
||||
"@types/react": "^17.0.24",
|
||||
"jquery": "^3.6.0",
|
||||
"react": "^17.0.2",
|
||||
"react-dom": "^17.0.2",
|
||||
"webpack-bundle-analyzer": "^4.5.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@react-jvectormap/lib": "^1.0.3",
|
||||
"classnames": "^2.3.1"
|
||||
},
|
||||
"gitHead": "53a4ea6b33d647fef99940b044f140109fec0727"
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
import React, { CSSProperties, FC, Ref } from "react";
|
||||
import classNames from "classnames";
|
||||
import styles from "./styles.module.scss";
|
||||
|
||||
interface IMapContainerProps {
|
||||
style?: CSSProperties;
|
||||
className?: string;
|
||||
containerRef: Ref<HTMLDivElement>;
|
||||
}
|
||||
|
||||
export const MapContainer: FC<IMapContainerProps> = ({
|
||||
containerRef,
|
||||
className,
|
||||
style,
|
||||
}) => (
|
||||
<div
|
||||
style={style}
|
||||
className={classNames(styles.root, className)}
|
||||
ref={containerRef as Ref<HTMLDivElement>}
|
||||
/>
|
||||
);
|
||||
1
frontend/node_modules/@react-jvectormap/core/src/components/MapContainer/index.ts
generated
vendored
1
frontend/node_modules/@react-jvectormap/core/src/components/MapContainer/index.ts
generated
vendored
@@ -1 +0,0 @@
|
||||
export { MapContainer } from "./MapContainer";
|
||||
136
frontend/node_modules/@react-jvectormap/core/src/components/MapContainer/styles.module.scss
generated
vendored
136
frontend/node_modules/@react-jvectormap/core/src/components/MapContainer/styles.module.scss
generated
vendored
@@ -1,136 +0,0 @@
|
||||
:global(.jvectormap-tip) {
|
||||
position: absolute;
|
||||
display: none;
|
||||
border: solid 1px #cdcdcd;
|
||||
border-radius: 3px;
|
||||
background: #292929;
|
||||
color: white;
|
||||
font-family: sans-serif, Verdana;
|
||||
font-size: smaller;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
.root {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
:global(svg) {
|
||||
touch-action: none;
|
||||
}
|
||||
:global(.jvectormap-container) {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
touch-action: none;
|
||||
}
|
||||
:global(.jvectormap-zoomin) {
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
border-radius: 3px;
|
||||
background: #292929;
|
||||
padding: 3px;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
line-height: 10px;
|
||||
text-align: center;
|
||||
box-sizing: content-box;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
top: 10px;
|
||||
}
|
||||
:global(.jvectormap-zoomout) {
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
border-radius: 3px;
|
||||
background: #292929;
|
||||
padding: 3px;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
line-height: 10px;
|
||||
text-align: center;
|
||||
box-sizing: content-box;
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
top: 30px;
|
||||
}
|
||||
:global(.jvectormap-goback) {
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
border-radius: 3px;
|
||||
background: #292929;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
line-height: 10px;
|
||||
text-align: center;
|
||||
box-sizing: content-box;
|
||||
bottom: 10px;
|
||||
z-index: 1000;
|
||||
padding: 6px;
|
||||
}
|
||||
:global(.jvectormap-spinner) {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: center no-repeat
|
||||
url(data:image/gif;base64,R0lGODlhIAAgAPMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==);
|
||||
}
|
||||
:global(.jvectormap-legend-title) {
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
}
|
||||
:global(.jvectormap-legend-cnt) {
|
||||
position: absolute;
|
||||
}
|
||||
:global(.jvectormap-legend-cnt-h) {
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
:global(.jvectormap-legend) {
|
||||
float: left;
|
||||
margin: 0 10px 10px 0;
|
||||
padding: 3px 3px 1px 3px;
|
||||
:global(.jvectormap-legend-tick) {
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
:global(.jvectormap-legend-tick) {
|
||||
width: 40px;
|
||||
}
|
||||
:global(.jvectormap-legend-tick-sample) {
|
||||
height: 15px;
|
||||
}
|
||||
:global(.jvectormap-legend-tick-text) {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
:global(.jvectormap-legend-cnt-v) {
|
||||
top: 0;
|
||||
right: 0;
|
||||
:global(.jvectormap-legend) {
|
||||
margin: 10px 10px 0 0;
|
||||
padding: 3px;
|
||||
}
|
||||
:global(.jvectormap-legend-tick-sample) {
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
:global(.jvectormap-legend-tick-text) {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
line-height: 20px;
|
||||
padding-left: 3px;
|
||||
}
|
||||
}
|
||||
:global(.jvectormap-legend) {
|
||||
background: black;
|
||||
color: white;
|
||||
border-radius: 3px;
|
||||
}
|
||||
:global(.jvectormap-legend-tick-text) {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
export const root: string;
|
||||
39
frontend/node_modules/@react-jvectormap/core/src/components/MultiMap/MultiMap.tsx
generated
vendored
39
frontend/node_modules/@react-jvectormap/core/src/components/MultiMap/MultiMap.tsx
generated
vendored
@@ -1,39 +0,0 @@
|
||||
import React, { FC, Ref, useLayoutEffect, useRef } from "react";
|
||||
import $ from "jquery";
|
||||
import { IMultiMapProps } from "../../types";
|
||||
import { MapContainer } from "../MapContainer";
|
||||
|
||||
export const MultiMap: FC<IMultiMapProps> = ({
|
||||
mapRef,
|
||||
style,
|
||||
className,
|
||||
...props
|
||||
}) => {
|
||||
const containerRef = useRef<JQuery | null>(null);
|
||||
useLayoutEffect(() => {
|
||||
const mapContainer = containerRef.current;
|
||||
const { main, ...rest } = props;
|
||||
const {
|
||||
map: { name, content },
|
||||
...restMain
|
||||
} = main;
|
||||
$.fn.vectorMap("addMap", name, content);
|
||||
if (mapContainer) {
|
||||
$(mapContainer).multiMap({
|
||||
main: {
|
||||
...restMain,
|
||||
map: name,
|
||||
},
|
||||
...rest,
|
||||
});
|
||||
}
|
||||
}, [mapRef, props]);
|
||||
|
||||
return (
|
||||
<MapContainer
|
||||
style={style}
|
||||
className={className}
|
||||
containerRef={containerRef as Ref<HTMLDivElement>}
|
||||
/>
|
||||
);
|
||||
};
|
||||
1
frontend/node_modules/@react-jvectormap/core/src/components/MultiMap/index.ts
generated
vendored
1
frontend/node_modules/@react-jvectormap/core/src/components/MultiMap/index.ts
generated
vendored
@@ -1 +0,0 @@
|
||||
export { MultiMap } from "./MultiMap";
|
||||
62
frontend/node_modules/@react-jvectormap/core/src/components/VectorMap/VectorMap.tsx
generated
vendored
62
frontend/node_modules/@react-jvectormap/core/src/components/VectorMap/VectorMap.tsx
generated
vendored
@@ -1,62 +0,0 @@
|
||||
import React, { FC, Ref, useEffect, useLayoutEffect, useRef } from "react";
|
||||
import $ from "jquery";
|
||||
import { IVectorMapProps, MapObject } from "../../types";
|
||||
import { MapContainer } from "../MapContainer";
|
||||
|
||||
export const VectorMap: FC<IVectorMapProps> = ({
|
||||
map,
|
||||
mapRef,
|
||||
style,
|
||||
className,
|
||||
series,
|
||||
...props
|
||||
}) => {
|
||||
const containerRef = useRef<JQuery | null>(null);
|
||||
useLayoutEffect(() => {
|
||||
const mapContainer = containerRef.current;
|
||||
if (!map) {
|
||||
console.error("[react-jvectormap]: no map was loaded!");
|
||||
}
|
||||
const { name, content } = map;
|
||||
$.fn.vectorMap("addMap", name, content);
|
||||
if (mapContainer) {
|
||||
$(mapContainer).vectorMap({
|
||||
map: name,
|
||||
series,
|
||||
...props,
|
||||
});
|
||||
if (map && mapRef?.current === null) {
|
||||
mapRef.current = $(mapContainer).vectorMap(
|
||||
"get",
|
||||
"mapObject",
|
||||
) as unknown as MapObject;
|
||||
}
|
||||
}
|
||||
}, [map, mapRef, props, series]);
|
||||
|
||||
useEffect(() => {
|
||||
const mapContainer = containerRef.current;
|
||||
if (series && mapContainer) {
|
||||
const map = $(mapContainer).vectorMap("get", "mapObject");
|
||||
const { markers = [], regions = [] } = series;
|
||||
regions.forEach(({ values }, index) => {
|
||||
if (values && map.series?.regions) {
|
||||
map.series?.regions[index]?.clearAndSet(values);
|
||||
}
|
||||
});
|
||||
markers.forEach(({ values }, index) => {
|
||||
if (values && map.series?.markers) {
|
||||
map.series?.markers[index]?.clearAndSet(values);
|
||||
}
|
||||
});
|
||||
}
|
||||
}, [series]);
|
||||
|
||||
return (
|
||||
<MapContainer
|
||||
className={className}
|
||||
style={style}
|
||||
containerRef={containerRef as Ref<HTMLDivElement>}
|
||||
/>
|
||||
);
|
||||
};
|
||||
1
frontend/node_modules/@react-jvectormap/core/src/components/VectorMap/index.ts
generated
vendored
1
frontend/node_modules/@react-jvectormap/core/src/components/VectorMap/index.ts
generated
vendored
@@ -1 +0,0 @@
|
||||
export { VectorMap } from "./VectorMap";
|
||||
2
frontend/node_modules/@react-jvectormap/core/src/components/index.ts
generated
vendored
2
frontend/node_modules/@react-jvectormap/core/src/components/index.ts
generated
vendored
@@ -1,2 +0,0 @@
|
||||
export * from "./VectorMap";
|
||||
export * from "./MultiMap";
|
||||
6
frontend/node_modules/@react-jvectormap/core/src/index.ts
generated
vendored
6
frontend/node_modules/@react-jvectormap/core/src/index.ts
generated
vendored
@@ -1,6 +0,0 @@
|
||||
import { loadJVectorMap } from "@react-jvectormap/lib";
|
||||
import $ from "jquery";
|
||||
export * from "./components";
|
||||
export * from "./utils";
|
||||
|
||||
loadJVectorMap($);
|
||||
410
frontend/node_modules/@react-jvectormap/core/src/types.ts
generated
vendored
410
frontend/node_modules/@react-jvectormap/core/src/types.ts
generated
vendored
@@ -1,410 +0,0 @@
|
||||
import { CSSProperties, MutableRefObject, Ref } from "react";
|
||||
|
||||
export type Nullable<T> = null | T;
|
||||
|
||||
interface ISetFocusParams {
|
||||
regions?: string[];
|
||||
region?: string;
|
||||
scale?: number;
|
||||
lat?: number;
|
||||
lng?: number;
|
||||
x?: number;
|
||||
y?: number;
|
||||
animate?: boolean;
|
||||
}
|
||||
|
||||
export interface IMapObject {
|
||||
/**
|
||||
* Add one marker to the map.
|
||||
* @param key
|
||||
* @param marker
|
||||
* @param seriesData
|
||||
*/
|
||||
addMarker: (
|
||||
key: string,
|
||||
marker: Marker,
|
||||
seriesData: IAttributeSeries[],
|
||||
) => void;
|
||||
/**
|
||||
* Add set of marker to the map.
|
||||
* @param key
|
||||
*/
|
||||
addMarkers: (markers: Marker[], seriesData: IAttributeSeries[]) => void;
|
||||
/**
|
||||
* Remove the selected state from all the currently selected markers.
|
||||
*/
|
||||
clearSelectedMarkers: () => void;
|
||||
/**
|
||||
* Remove the selected state from all the currently selected regions.
|
||||
*/
|
||||
clearSelectedRegions: () => void;
|
||||
/**
|
||||
* Get the name of a region
|
||||
*/
|
||||
getRegionName: (code: string) => void;
|
||||
/**
|
||||
* Return the codes of currently selected markers.
|
||||
*/
|
||||
getSelectedMarkers: () => Marker[];
|
||||
/**
|
||||
* Return the codes of currently selected regions.
|
||||
*/
|
||||
getSelectedRegions: () => IRegion[];
|
||||
/**
|
||||
* Converts coordinates expressed as latitude and longitude to the coordinates in pixels on the map.
|
||||
*/
|
||||
latLngToPoint: (lat: number, lng: number) => number[];
|
||||
/**
|
||||
* Converts cartesian coordinates into coordinates expressed as latitude and longitude.
|
||||
*/
|
||||
pointToLatLng: (x: number, y: number) => number[];
|
||||
/**
|
||||
* Gracefully remove the map and and all its accessories, unbind event handlers.
|
||||
*/
|
||||
remove: () => void;
|
||||
/**
|
||||
* Remove all markers from the map.
|
||||
*/
|
||||
removeAllMarkers: () => void;
|
||||
/**
|
||||
* Remove some markers from the map.
|
||||
*/
|
||||
removeMarkers: () => void;
|
||||
/**
|
||||
* Reset all the series and show the map with the initial zoom.
|
||||
*/
|
||||
reset: () => void;
|
||||
/**
|
||||
* Set background color of the map.
|
||||
*/
|
||||
setBackgroundColor: (backgroundColor: string) => void;
|
||||
/**
|
||||
* Set the map's viewport to the specific point and set zoom of the map to the specific level. Point and zoom level could be defined in two ways: using the code of some region to focus on or a central point and zoom level as numbers.
|
||||
*/
|
||||
setFocus: (params: ISetFocusParams) => void;
|
||||
/**
|
||||
* Set or remove selected state for the markers.
|
||||
* @param keys
|
||||
*/
|
||||
setSelectedMarkers: (
|
||||
keys: string | string[] | { [key: string]: boolean },
|
||||
) => void;
|
||||
/**
|
||||
* Set or remove selected state for the regions.
|
||||
* @param keys
|
||||
*/
|
||||
setSelectedRegions: (
|
||||
keys: string | string[] | { [key: string]: boolean },
|
||||
) => void;
|
||||
/**
|
||||
* Synchronize the size of the map with the size of the container. Suitable in situations where the size of the container is changed programmatically or container is shown after it became visible.
|
||||
*/
|
||||
updateSize: () => void;
|
||||
}
|
||||
|
||||
export type MapObject = IMapObject;
|
||||
|
||||
interface IMapComponent {
|
||||
/**
|
||||
* Optional ref for accessing map methods
|
||||
*/
|
||||
mapRef?: MutableRefObject<MapObject | null>;
|
||||
/**
|
||||
* Container class Name
|
||||
*/
|
||||
className?: string;
|
||||
/**
|
||||
* Container inline CSS-in-JS style
|
||||
*/
|
||||
style?: CSSProperties;
|
||||
}
|
||||
|
||||
export interface IVectorMapProps extends IMapComponent {
|
||||
/**
|
||||
* Map content definition
|
||||
*/
|
||||
map: IVectorMap;
|
||||
/**
|
||||
* Background color of the map in CSS format.
|
||||
*/
|
||||
backgroundColor?: string;
|
||||
/**
|
||||
* Indicates the minimum zoom ratio which could be reached zooming the map. Default value is 1.
|
||||
*/
|
||||
zoomMin?: number;
|
||||
/**
|
||||
* Indicates the maximum zoom ratio which could be reached zooming the map. Default value is 8.
|
||||
*/
|
||||
zoomMax?: number;
|
||||
/**
|
||||
* Indicates the multiplier used to zoom map with +/- buttons. Default value is 1.6.
|
||||
*/
|
||||
zoomStep?: number;
|
||||
/**
|
||||
* When set to true map could be zoomed using mouse scroll. Default value is true.
|
||||
*/
|
||||
zoomOnScroll?: boolean;
|
||||
/**
|
||||
* Indicates whether or not to animate changing of map zoom with zoom buttons.
|
||||
*/
|
||||
zoomAnimate?: boolean;
|
||||
/**
|
||||
* This parameter sets the initial position and scale of the map viewport.
|
||||
*/
|
||||
focusOn?: IFocus;
|
||||
/**
|
||||
* When set to true, the map pans when being dragged. Default value is true.
|
||||
*/
|
||||
panOnDrag?: boolean;
|
||||
/**
|
||||
* When set to true regions of the map could be selected. Default value is false.
|
||||
*/
|
||||
regionsSelectable?: boolean;
|
||||
/**
|
||||
* Allow only one region to be selected at the moment. Default value is false.
|
||||
*/
|
||||
regionsSelectableOne?: boolean;
|
||||
/**
|
||||
* Set of markers to add to the map during initialization. In case of array is provided, codes of markers will be set as string representations of array indexes. Each marker is represented by latLng (array of two numeric values), name (string which will be show on marker's tip) and any marker styles.
|
||||
*/
|
||||
markers?: Marker[];
|
||||
/**
|
||||
* When set to true markers on the map could be selected. Default value is false.
|
||||
*/
|
||||
markersSelectable?: boolean;
|
||||
/**
|
||||
* Allow only one marker to be selected at the moment. Default value is false.
|
||||
*/
|
||||
markersSelectableOne?: boolean;
|
||||
/**
|
||||
* Set the styles for the map's regions. Each region or marker has four states: initial (default state), hover (when the mouse cursor is over the region or marker), selected (when region or marker is selected), selectedHover (when the mouse cursor is over the region or marker and it's selected simultaneously). Styles could be set for each of this states.
|
||||
*/
|
||||
regionStyle?:
|
||||
| ISVGElementStyleAttributes
|
||||
| ((code: string) => ISVGElementStyleAttributes);
|
||||
/**
|
||||
* Set the styles for the regions' labels. Each region or marker has four states: initial (default state), hover (when the mouse cursor is over the region or marker), selected (when region or marker is selected), selectedHover (when the mouse cursor is over the region or marker and it's selected simultaneously). Styles could be set for each of this states.
|
||||
*/
|
||||
regionLabelStyle?: ISVGElementStyleAttributes;
|
||||
/**
|
||||
* Set initially selected markers.
|
||||
*/
|
||||
selectedMarkers?: string[] | { [region: string]: boolean } | string;
|
||||
/**
|
||||
* Set the styles for the map's markers. Any parameter suitable for regionStyle could be used as well as numeric parameter r to set the marker's radius.
|
||||
*/
|
||||
markerStyle?: ISVGElementStyleAttributes | IImageElementStyleAttributes;
|
||||
/**
|
||||
* Will be called on region click event.
|
||||
*/
|
||||
onRegionClick?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called when region is (de)selected. isSelected parameter of the callback indicates whether region is selected or not. selectedRegions contains codes of all currently selected regions.
|
||||
*/
|
||||
onRegionSelected?: (
|
||||
event: JQuery.Event,
|
||||
code: string,
|
||||
isSelected: boolean,
|
||||
selectedRegions: string[],
|
||||
) => void;
|
||||
/**
|
||||
* Will be called right before the region tip is going to be shown.
|
||||
*/
|
||||
onRegionTipShow?: OnRegionTipShow;
|
||||
/**
|
||||
* Will be called on region mouse over event.
|
||||
*/
|
||||
onRegionOver?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called on region mouse out event.
|
||||
*/
|
||||
onRegionOut?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called right before the marker tip is going to be shown.
|
||||
*/
|
||||
onMarkerTipShow?: (event: JQuery.Event, el: Element, code: string) => void;
|
||||
/**
|
||||
* Will be called on marker mouse over event.
|
||||
*/
|
||||
onMarkerOver?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called on marker mouse out event.
|
||||
*/
|
||||
onMarkerOut?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called on marker click event.
|
||||
*/
|
||||
onMarkerClick?: (event: JQuery.Event, code: string) => void;
|
||||
/**
|
||||
* Will be called when marker is (de)selected. isSelected parameter of the callback indicates whether marker is selected or not. selectedMarkers contains codes of all currently selected markers.
|
||||
*/
|
||||
onMarkerSelected?: (
|
||||
event: JQuery.Event,
|
||||
code: string,
|
||||
isSelected: boolean,
|
||||
selectedMarkers: string[],
|
||||
) => void;
|
||||
/**
|
||||
* Triggered when the map's viewport is changed (map was panned or zoomed).
|
||||
*/
|
||||
onViewportChange?: (event: JQuery.Event, scale: number) => void;
|
||||
/**
|
||||
* Set initially selected regions.
|
||||
* examples: ["US-CA"] | { "US-CA": true } | "US-CA"
|
||||
*/
|
||||
selectedRegions?: SelectedEntities;
|
||||
/**
|
||||
* Object with two keys: markers and regions. Each of which is an array of series configs to be applied to the respective map elements.
|
||||
*/
|
||||
series?: ISeries;
|
||||
/**
|
||||
* Object with two keys: markers and regions. Each of which is an array of labels configs to be applied to the respective map elements.
|
||||
*/
|
||||
labels?: ILabels;
|
||||
}
|
||||
|
||||
export interface IMainMap {
|
||||
map: IVectorMap;
|
||||
}
|
||||
|
||||
export interface IMultiMapProps extends IMapComponent {
|
||||
/**
|
||||
* Maximum number of levels user can go through
|
||||
*/
|
||||
maxLevel?: number;
|
||||
/**
|
||||
* Config of the main map.
|
||||
*/
|
||||
main: IMainMap;
|
||||
/**
|
||||
* Function to generate map name by region code. Default value is:
|
||||
*/
|
||||
mapNameByCode?: (code: string) => string;
|
||||
/**
|
||||
* Function to generate map url by region code. Default value is:
|
||||
*/
|
||||
mapUrlByCode?: (code: string) => string;
|
||||
/**
|
||||
* Function to manually retrieve map data
|
||||
* @param code
|
||||
*/
|
||||
getDrillDownMap?: (code: string) => Promise<IVectorMap> | IVectorMap;
|
||||
}
|
||||
|
||||
interface IBBox {
|
||||
x: number;
|
||||
y: number;
|
||||
}
|
||||
|
||||
interface IInset {
|
||||
width: number;
|
||||
height: number;
|
||||
top: number;
|
||||
left: number;
|
||||
bbox: IBBox[];
|
||||
}
|
||||
|
||||
interface IProjection {
|
||||
type: string;
|
||||
centralMeridian: number;
|
||||
}
|
||||
|
||||
export interface IVectorMap {
|
||||
name: string;
|
||||
content: {
|
||||
insets: IInset[];
|
||||
paths: PathsDefinition;
|
||||
height: number;
|
||||
width: number;
|
||||
projection: IProjection;
|
||||
};
|
||||
}
|
||||
|
||||
interface IFocus {
|
||||
scale: number;
|
||||
x: number;
|
||||
y: number;
|
||||
region?: string;
|
||||
lat?: number;
|
||||
lng?: number;
|
||||
animate?: boolean;
|
||||
}
|
||||
|
||||
export interface ISVGElementStyleAttributes {
|
||||
initial?: CSSProperties;
|
||||
hover?: CSSProperties;
|
||||
selected?: CSSProperties;
|
||||
selectedHover?: CSSProperties;
|
||||
}
|
||||
|
||||
interface IImageElementStyleAttributes {
|
||||
url: string;
|
||||
offset?: number[];
|
||||
}
|
||||
|
||||
type PathsDefinition = { [key: string]: { path: string; name: string } };
|
||||
|
||||
export interface ISeries {
|
||||
regions?: IAttributeSeries[];
|
||||
markers?: IAttributeSeries[];
|
||||
}
|
||||
|
||||
type Scale = { [key: string]: string } | number[] | string[];
|
||||
|
||||
type Values = { [key: string]: string | number };
|
||||
|
||||
export type NormalizeFunctionType = "linear" | "polynomial";
|
||||
|
||||
export interface IAttributeSeries {
|
||||
attribute: string;
|
||||
values?: number[] | { [key: string]: number };
|
||||
scale?: Scale;
|
||||
normalizeFunction?: NormalizeFunctionType | ((value?: number) => string);
|
||||
}
|
||||
|
||||
export interface IRegion {
|
||||
scale: Scale;
|
||||
values: Values;
|
||||
attribute: string;
|
||||
normalizeFunction?: NormalizeFunctionType | ((value?: number) => string);
|
||||
}
|
||||
|
||||
interface IMarkerBase {
|
||||
name: string;
|
||||
style?: CSSProperties;
|
||||
}
|
||||
|
||||
interface IMarkerWithCoords extends IMarkerBase {
|
||||
coords: number[];
|
||||
}
|
||||
|
||||
interface IMarkerWithLatLng extends IMarkerBase {
|
||||
latLng: number[];
|
||||
}
|
||||
|
||||
export type RenderLabel = (code: string) => void | string;
|
||||
|
||||
export type GetOffsets = (code: string) => { [key: string | number]: number[] };
|
||||
|
||||
export interface ILabelsProps {
|
||||
render: RenderLabel;
|
||||
offsets: GetOffsets;
|
||||
}
|
||||
|
||||
export interface ILabels {
|
||||
regions?: ILabelsProps;
|
||||
markers?: ILabelsProps;
|
||||
}
|
||||
|
||||
export type Marker = IMarkerWithCoords | IMarkerWithLatLng;
|
||||
|
||||
export type OnRegionTipShow = (
|
||||
event: JQuery.Event,
|
||||
el: Element,
|
||||
code: string,
|
||||
) => void;
|
||||
|
||||
export type SelectedEntities =
|
||||
| string[]
|
||||
| { [region: string]: boolean }
|
||||
| string;
|
||||
@@ -1,58 +0,0 @@
|
||||
import { IAttributeSeries, NormalizeFunctionType } from "../../types";
|
||||
import { IBuilder } from "./types";
|
||||
|
||||
export class AttributeSeriesBuilder implements IBuilder<IAttributeSeries> {
|
||||
private attribute: string;
|
||||
private scale?: number[];
|
||||
private values?: number[];
|
||||
private normalizeFunction?: NormalizeFunctionType;
|
||||
|
||||
constructor(attribute: string) {
|
||||
this.attribute = attribute;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setAttribute(value: string) {
|
||||
this.attribute = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setScale(value: number[]) {
|
||||
this.scale = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setValues(value: number[]) {
|
||||
this.values = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setNormalizeFunction(value: NormalizeFunctionType) {
|
||||
this.normalizeFunction = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
public build() {
|
||||
return {
|
||||
scale: this.scale,
|
||||
values: this.values,
|
||||
attribute: this.attribute,
|
||||
normalizeFunction: this.normalizeFunction,
|
||||
};
|
||||
}
|
||||
}
|
||||
39
frontend/node_modules/@react-jvectormap/core/src/utils/builders/LabelsBuilder.ts
generated
vendored
39
frontend/node_modules/@react-jvectormap/core/src/utils/builders/LabelsBuilder.ts
generated
vendored
@@ -1,39 +0,0 @@
|
||||
import { ILabels, ILabelsProps } from "../../types";
|
||||
import { stripUndefinedValues } from "./utils";
|
||||
import { IBuilder } from "./types";
|
||||
|
||||
export class LabelsBuilder implements IBuilder<ILabels> {
|
||||
private markers?: ILabelsProps[];
|
||||
private regions?: ILabelsProps[];
|
||||
|
||||
/**
|
||||
*
|
||||
* @param values
|
||||
*/
|
||||
public addMarkersLabelProps(...values: ILabelsProps[]) {
|
||||
if (!this.markers) {
|
||||
this.markers = [];
|
||||
}
|
||||
this.markers.push(...values);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param values
|
||||
*/
|
||||
public addRegionsLabelProps(...values: ILabelsProps[]) {
|
||||
if (!this.regions) {
|
||||
this.regions = [];
|
||||
}
|
||||
this.regions.push(...values);
|
||||
return this;
|
||||
}
|
||||
|
||||
public build() {
|
||||
return stripUndefinedValues({
|
||||
markers: this.markers,
|
||||
regions: this.regions,
|
||||
});
|
||||
}
|
||||
}
|
||||
40
frontend/node_modules/@react-jvectormap/core/src/utils/builders/LabelsPropsBuilder.ts
generated
vendored
40
frontend/node_modules/@react-jvectormap/core/src/utils/builders/LabelsPropsBuilder.ts
generated
vendored
@@ -1,40 +0,0 @@
|
||||
import { GetOffsets, ILabelsProps, RenderLabel } from "../../types";
|
||||
import { IBuilder } from "./types";
|
||||
|
||||
export class LabelsPropsBuilder implements IBuilder<ILabelsProps> {
|
||||
private render: RenderLabel;
|
||||
private offsets: GetOffsets;
|
||||
|
||||
public constructor(render: RenderLabel, offsets: GetOffsets) {
|
||||
this.render = render;
|
||||
this.offsets = offsets;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param render
|
||||
*/
|
||||
public setRender(render: RenderLabel) {
|
||||
this.render = render;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param offsets
|
||||
*/
|
||||
public setOffsets(offsets: GetOffsets) {
|
||||
this.offsets = offsets;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public build() {
|
||||
return {
|
||||
render: this.render,
|
||||
offsets: this.offsets,
|
||||
};
|
||||
}
|
||||
}
|
||||
78
frontend/node_modules/@react-jvectormap/core/src/utils/builders/MarkerBuilder.ts
generated
vendored
78
frontend/node_modules/@react-jvectormap/core/src/utils/builders/MarkerBuilder.ts
generated
vendored
@@ -1,78 +0,0 @@
|
||||
import { CSSProperties } from "react";
|
||||
import { Marker } from "../../types";
|
||||
import { IBuilder } from "./types";
|
||||
|
||||
export class MarkerBuilder implements IBuilder<Marker> {
|
||||
private name: string;
|
||||
private coords?: number[];
|
||||
private latLng?: number[];
|
||||
private style?: CSSProperties;
|
||||
|
||||
constructor(value: string) {
|
||||
this.name = value;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setName(value: string) {
|
||||
this.name = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setCoords(value: number[]) {
|
||||
this.latLng = undefined;
|
||||
this.coords = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setLatLng(value: number[]) {
|
||||
this.coords = undefined;
|
||||
this.latLng = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setStyle(value: CSSProperties) {
|
||||
this.style = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public build() {
|
||||
const commonProps = {
|
||||
name: this.name,
|
||||
style: this.style,
|
||||
};
|
||||
|
||||
if (this.coords) {
|
||||
return {
|
||||
...commonProps,
|
||||
coords: this.coords,
|
||||
};
|
||||
} else if (this.latLng) {
|
||||
return {
|
||||
...commonProps,
|
||||
latLng: this.latLng,
|
||||
};
|
||||
}
|
||||
return {
|
||||
...commonProps,
|
||||
latLng: [0, 0],
|
||||
};
|
||||
}
|
||||
}
|
||||
78
frontend/node_modules/@react-jvectormap/core/src/utils/builders/MultiMapBuilder.ts
generated
vendored
78
frontend/node_modules/@react-jvectormap/core/src/utils/builders/MultiMapBuilder.ts
generated
vendored
@@ -1,78 +0,0 @@
|
||||
import { IMainMap, IMultiMapProps, IVectorMap } from "../../types";
|
||||
import { IBuilder } from "./types";
|
||||
import { stripUndefinedValues } from "./utils";
|
||||
|
||||
export class MultiMapBuilder implements IBuilder<IMultiMapProps> {
|
||||
private readonly main: IMainMap;
|
||||
private maxLevel?: number;
|
||||
private mapNameByCode?: (code: string) => string;
|
||||
private mapUrlByCode?: (code: string) => string;
|
||||
private getDrillDownMap?: (code: string) => Promise<IVectorMap> | IVectorMap;
|
||||
|
||||
public constructor(mainMap: IVectorMap, maxLevel = 1) {
|
||||
this.main = { map: mainMap };
|
||||
this.maxLevel = maxLevel;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setMainMap(value: IVectorMap) {
|
||||
this.main.map = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setMaxLevel(value: number) {
|
||||
this.maxLevel = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setMapNameByCode(value: (code: string) => string) {
|
||||
this.mapNameByCode = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setUrlByCode(value: (code: string) => string) {
|
||||
this.mapUrlByCode = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setGetDrillDownMap(
|
||||
value: (code: string) => Promise<IVectorMap> | IVectorMap,
|
||||
) {
|
||||
this.getDrillDownMap = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
build() {
|
||||
const baseProps = {
|
||||
main: this.main,
|
||||
maxLevel: this.maxLevel,
|
||||
};
|
||||
return {
|
||||
...baseProps,
|
||||
...stripUndefinedValues({
|
||||
mapNameByCode: this.mapNameByCode,
|
||||
mapUrlByCode: this.mapUrlByCode,
|
||||
getDrillDownMap: this.getDrillDownMap,
|
||||
}),
|
||||
};
|
||||
}
|
||||
}
|
||||
39
frontend/node_modules/@react-jvectormap/core/src/utils/builders/SeriesBuilder.ts
generated
vendored
39
frontend/node_modules/@react-jvectormap/core/src/utils/builders/SeriesBuilder.ts
generated
vendored
@@ -1,39 +0,0 @@
|
||||
import { IAttributeSeries, ISeries } from "../../types";
|
||||
import { stripUndefinedValues } from "./utils";
|
||||
import { IBuilder } from "./types";
|
||||
|
||||
export class SeriesBuilder implements IBuilder<ISeries> {
|
||||
private markers?: IAttributeSeries[];
|
||||
private regions?: IAttributeSeries[];
|
||||
|
||||
/**
|
||||
*
|
||||
* @param values
|
||||
*/
|
||||
public addMarkersSeries(...values: IAttributeSeries[]) {
|
||||
if (!this.markers) {
|
||||
this.markers = [];
|
||||
}
|
||||
this.markers.push(...values);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param values
|
||||
*/
|
||||
public addRegionsSeries(...values: IAttributeSeries[]) {
|
||||
if (!this.regions) {
|
||||
this.regions = [];
|
||||
}
|
||||
this.regions.push(...values);
|
||||
return this;
|
||||
}
|
||||
|
||||
public build() {
|
||||
return stripUndefinedValues({
|
||||
markers: this.markers,
|
||||
regions: this.regions,
|
||||
});
|
||||
}
|
||||
}
|
||||
56
frontend/node_modules/@react-jvectormap/core/src/utils/builders/StyleBuilder.ts
generated
vendored
56
frontend/node_modules/@react-jvectormap/core/src/utils/builders/StyleBuilder.ts
generated
vendored
@@ -1,56 +0,0 @@
|
||||
import { CSSProperties } from "react";
|
||||
import { ISVGElementStyleAttributes } from "../../types";
|
||||
import { stripUndefinedValues } from "./utils";
|
||||
import { IBuilder } from "./types";
|
||||
|
||||
export class StyleBuilder implements IBuilder<ISVGElementStyleAttributes> {
|
||||
private initial?: CSSProperties;
|
||||
private selected?: CSSProperties;
|
||||
private hover?: CSSProperties;
|
||||
private selectedHover?: CSSProperties;
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setInitial(value: CSSProperties) {
|
||||
this.initial = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setSelected(value: CSSProperties) {
|
||||
this.selected = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setHover(value: CSSProperties) {
|
||||
this.hover = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setSelectedHover(value: CSSProperties) {
|
||||
this.selectedHover = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
public build() {
|
||||
return stripUndefinedValues({
|
||||
selected: this.selected,
|
||||
selectedHover: this.selectedHover,
|
||||
hover: this.hover,
|
||||
initial: this.initial,
|
||||
});
|
||||
}
|
||||
}
|
||||
189
frontend/node_modules/@react-jvectormap/core/src/utils/builders/VectorMapBuilder.ts
generated
vendored
189
frontend/node_modules/@react-jvectormap/core/src/utils/builders/VectorMapBuilder.ts
generated
vendored
@@ -1,189 +0,0 @@
|
||||
import {
|
||||
ILabels,
|
||||
ISeries,
|
||||
ISVGElementStyleAttributes,
|
||||
IVectorMap,
|
||||
IVectorMapProps,
|
||||
Marker,
|
||||
OnRegionTipShow,
|
||||
SelectedEntities,
|
||||
} from "../../types";
|
||||
import { IBuilder } from "./types";
|
||||
|
||||
export class VectorMapBuilder implements IBuilder<IVectorMapProps> {
|
||||
private map: IVectorMap;
|
||||
private backgroundColor?: string;
|
||||
private zoomMin?: number;
|
||||
private zoomMax?: number;
|
||||
private markers?: Marker[];
|
||||
private markerStyle?: ISVGElementStyleAttributes;
|
||||
private regionStyle?:
|
||||
| ISVGElementStyleAttributes
|
||||
| ((code: string) => ISVGElementStyleAttributes);
|
||||
private regionsSelectable?: boolean;
|
||||
private markersSelectable?: boolean;
|
||||
private onRegionTipShow?: OnRegionTipShow;
|
||||
private series?: ISeries;
|
||||
private labels?: ILabels;
|
||||
private selectedRegions?: SelectedEntities = [];
|
||||
|
||||
public constructor(map: IVectorMap) {
|
||||
this.map = map;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setMap(value: IVectorMap) {
|
||||
this.map = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setBackgroundColor(value: string) {
|
||||
this.backgroundColor = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setZoomMin(value: number) {
|
||||
this.zoomMin = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setZoomMax(value: number) {
|
||||
this.zoomMax = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param marker
|
||||
*/
|
||||
public addMarker(marker: Marker) {
|
||||
if (!this.markers) {
|
||||
this.markers = [];
|
||||
}
|
||||
this.markers.push(marker);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setMarkerStyle(value: ISVGElementStyleAttributes) {
|
||||
this.markerStyle = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setRegionStyle(
|
||||
value:
|
||||
| ISVGElementStyleAttributes
|
||||
| ((code: string) => ISVGElementStyleAttributes),
|
||||
) {
|
||||
this.regionStyle = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
* @private
|
||||
*/
|
||||
public setMarkersSelectable(value: boolean) {
|
||||
this.markersSelectable = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setMarkers(value: Marker[]) {
|
||||
this.markers = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @private
|
||||
* @param value
|
||||
*/
|
||||
public setRegionsSelectable(value: boolean) {
|
||||
this.regionsSelectable = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @private
|
||||
* @param value
|
||||
*/
|
||||
public setOnRegionTipShow(value: OnRegionTipShow) {
|
||||
this.onRegionTipShow = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setSeries(value: ISeries) {
|
||||
this.series = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param values
|
||||
*/
|
||||
public setLabels(values: ILabels) {
|
||||
this.labels = values;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param value
|
||||
*/
|
||||
public setSelectedRegions(value: SelectedEntities) {
|
||||
this.selectedRegions = value;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public build() {
|
||||
return {
|
||||
map: this.map,
|
||||
series: this.series,
|
||||
backgroundColor: this.backgroundColor,
|
||||
zoomMax: this.zoomMax,
|
||||
zoomMin: this.zoomMin,
|
||||
markerStyle: this.markerStyle,
|
||||
regionStyle: this.regionStyle,
|
||||
markersSelectable: this.markersSelectable,
|
||||
regionsSelectable: this.regionsSelectable,
|
||||
markers: this.markers,
|
||||
labels: this.labels,
|
||||
selectedRegions: this.selectedRegions,
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
import { AttributeSeriesBuilder } from "../AttributeSeriesBuilder";
|
||||
|
||||
describe("AttributeSeriesBuilder", () => {
|
||||
it("should build an attribute series", () => {
|
||||
const series = new AttributeSeriesBuilder("r")
|
||||
.setValues([10, 10, 10])
|
||||
.setScale([10, 10])
|
||||
.setNormalizeFunction("polynomial")
|
||||
.build();
|
||||
expect(series).toEqual({
|
||||
attribute: "r",
|
||||
scale: [10, 10],
|
||||
values: [10, 10, 10],
|
||||
normalizeFunction: "polynomial",
|
||||
});
|
||||
});
|
||||
|
||||
it("should build an attribute series and change it's values", () => {
|
||||
const series = new AttributeSeriesBuilder("r");
|
||||
series.setAttribute("x").setScale([10, 10]).setValues([0]);
|
||||
expect(series).toEqual({
|
||||
attribute: "x",
|
||||
scale: [10, 10],
|
||||
values: [0],
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -1,41 +0,0 @@
|
||||
import { MarkerBuilder } from "../MarkerBuilder";
|
||||
|
||||
describe("MarkerBuilder", () => {
|
||||
it("should build a simple MarkerBuilder with latLng", () => {
|
||||
const marker = new MarkerBuilder("test-marker").setLatLng([10, 10]).build();
|
||||
expect(marker).toEqual({
|
||||
name: "test-marker",
|
||||
latLng: [10, 10],
|
||||
});
|
||||
});
|
||||
|
||||
it("should build a simple MarkerBuilder with coords", () => {
|
||||
const marker = new MarkerBuilder("test-marker").setCoords([10, 10]).build();
|
||||
expect(marker).toEqual({
|
||||
name: "test-marker",
|
||||
coords: [10, 10],
|
||||
});
|
||||
});
|
||||
|
||||
it("should build a simple MarkerBuilder with both props defined", () => {
|
||||
const marker = new MarkerBuilder("test-marker")
|
||||
.setLatLng([10, 10])
|
||||
.setCoords([11, 11])
|
||||
.build();
|
||||
expect(marker).toEqual({
|
||||
name: "test-marker",
|
||||
coords: [11, 11],
|
||||
});
|
||||
});
|
||||
|
||||
it("should build a simple MarkerBuilder with both props defined, oposite case", () => {
|
||||
const marker = new MarkerBuilder("test-marker")
|
||||
.setCoords([10, 10])
|
||||
.setLatLng([11, 11])
|
||||
.build();
|
||||
expect(marker).toEqual({
|
||||
name: "test-marker",
|
||||
latLng: [11, 11],
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -1,35 +0,0 @@
|
||||
import { MapMock1 } from "./mocks/MapMock1";
|
||||
import { MultiMapBuilder } from "../MultiMapBuilder";
|
||||
|
||||
jest.mock("../MarkerBuilder", () => ({
|
||||
MarkerBuilder: jest.fn().mockImplementation(() => ({
|
||||
build: () => ({
|
||||
name: "test",
|
||||
coords: [10, 10],
|
||||
}),
|
||||
})),
|
||||
}));
|
||||
|
||||
describe("MultiMapBuilder", () => {
|
||||
it("should build a simple MultiMap", () => {
|
||||
const multiMap = new MultiMapBuilder(MapMock1).setMaxLevel(2);
|
||||
expect(multiMap).toEqual({
|
||||
main: {
|
||||
map: MapMock1,
|
||||
},
|
||||
maxLevel: 2,
|
||||
});
|
||||
});
|
||||
|
||||
it("should build a simple MultiMap with a URL getter", () => {
|
||||
const func = (code: string) => code;
|
||||
const multiMap = new MultiMapBuilder(MapMock1, 2).setUrlByCode(func);
|
||||
expect(multiMap).toEqual({
|
||||
main: {
|
||||
map: MapMock1,
|
||||
},
|
||||
mapUrlByCode: func,
|
||||
maxLevel: 2,
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -1,37 +0,0 @@
|
||||
import { SeriesBuilder } from "../SeriesBuilder";
|
||||
import { AttributeSeriesBuilder } from "../AttributeSeriesBuilder";
|
||||
|
||||
jest.mock("../MarkerBuilder", () => ({
|
||||
AttributeSeriesBuilder: jest.fn().mockImplementation(() => ({
|
||||
build: () => ({
|
||||
scale: [10, 20],
|
||||
values: [1, 2, 3],
|
||||
attribute: "r",
|
||||
}),
|
||||
})),
|
||||
}));
|
||||
describe("AttributeSeriesBuilder", () => {
|
||||
it("should add two marker series", () => {
|
||||
const ms1 = new AttributeSeriesBuilder("r").build();
|
||||
const ms2 = new AttributeSeriesBuilder("r").build();
|
||||
const series = new SeriesBuilder().addMarkersSeries(ms1, ms2).build();
|
||||
expect(series).toEqual({
|
||||
markers: [
|
||||
{ attribute: "r", scale: [10, 20], values: [1, 2, 3] },
|
||||
{ attribute: "r", scale: [10, 20], values: [1, 2, 3] },
|
||||
],
|
||||
});
|
||||
});
|
||||
|
||||
it("should add two region series", () => {
|
||||
const rs1 = new AttributeSeriesBuilder("r").build();
|
||||
const rs2 = new AttributeSeriesBuilder("r").build();
|
||||
const series = new SeriesBuilder().addRegionsSeries(rs1, rs2).build();
|
||||
expect(series).toEqual({
|
||||
regions: [
|
||||
{ attribute: "r", scale: [10, 20], values: [1, 2, 3] },
|
||||
{ attribute: "r", scale: [10, 20], values: [1, 2, 3] },
|
||||
],
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -1,23 +0,0 @@
|
||||
import { StyleBuilder } from "../StyleBuilder";
|
||||
|
||||
describe("StyleBuilder", () => {
|
||||
it("should build a simple style builder", () => {
|
||||
const style = new StyleBuilder()
|
||||
.setHover({ fill: "red" })
|
||||
.setInitial({ fill: "blue" })
|
||||
.setSelectedHover({ stroke: "black" })
|
||||
.build();
|
||||
|
||||
expect(style).toEqual({
|
||||
initial: {
|
||||
fill: "blue",
|
||||
},
|
||||
hover: {
|
||||
fill: "red",
|
||||
},
|
||||
selectedHover: {
|
||||
stroke: "black",
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -1,31 +0,0 @@
|
||||
import { VectorMapBuilder } from "../VectorMapBuilder";
|
||||
import { MarkerBuilder } from "../MarkerBuilder";
|
||||
import { MapMock1 } from "./mocks/MapMock1";
|
||||
|
||||
jest.mock("../MarkerBuilder", () => ({
|
||||
MarkerBuilder: jest.fn().mockImplementation(() => ({
|
||||
build: () => ({
|
||||
name: "test",
|
||||
coords: [10, 10],
|
||||
}),
|
||||
})),
|
||||
}));
|
||||
|
||||
describe("VectorMapBuilder", () => {
|
||||
it("should build a simple VectorMap with markers", () => {
|
||||
const marker1 = new MarkerBuilder("test1").build();
|
||||
const marker2 = new MarkerBuilder("test2").build();
|
||||
const marker3 = new MarkerBuilder("test3").build();
|
||||
const vectorMap = new VectorMapBuilder(MapMock1)
|
||||
.addMarker(marker1)
|
||||
.addMarker(marker2)
|
||||
.addMarker(marker3)
|
||||
.build();
|
||||
expect(vectorMap).toEqual({
|
||||
map: MapMock1,
|
||||
series: {
|
||||
markers: [marker1, marker2, marker3],
|
||||
},
|
||||
});
|
||||
});
|
||||
});
|
||||
@@ -1,26 +0,0 @@
|
||||
export const MapMock1 = {
|
||||
name: "map-mock-1",
|
||||
content: {
|
||||
insets: [
|
||||
{
|
||||
width: 200,
|
||||
top: 370,
|
||||
height: 100,
|
||||
bbox: [
|
||||
{ y: -100, x: -100 },
|
||||
{ y: -100, x: -100 },
|
||||
],
|
||||
left: 10,
|
||||
},
|
||||
],
|
||||
paths: {
|
||||
V1: {
|
||||
path: "M759.82,228.61l0.64,-1.34l-0.16,-0.64l0.65,-0.59l-0.36,-0.68l0.65,-0.53l-0.04,-1.04l0.41,-0.18l0.06,-0.65l0.56,-0.07l0.37,-0.53l0.66,-1.7l0.94,-0.11l0.2,-0.72l0.35,-0.03l0.21,-1.09l-0.46,-0.69l0.88,-0.42l0.11,-0.54l2.48,-0.24l-0.28,1.91l-5.78,7.44l-0.16,0.9l-0.99,0.98l-0.74,3.32l-0.49,-1.56l0.38,-0.59l-0.11,-0.6ZM641.4,241.28l7.18,-1.96l1.03,-1.75l3.06,-0.93l0.34,-1.44l2.1,-1.18l0.43,-1.57l5.11,-2.52l5.14,-3.99l0.13,0.53l0.67,0.45l0.07,1.16l1.55,1.56l1.29,0.3l1.66,1.22l1.27,0.15l0.78,-0.2l0.89,-0.86l1.14,-0.27l0.71,-1.01l2.15,1.62l1.46,-0.65l2.17,-0.43l0.66,0.17l1.13,-0.6l0.48,-0.66l-0.25,-0.86l0.24,-0.22l1.58,0.77l3.37,-1.55l0.6,0.64l0.6,0.05l2.55,-1.47l0.35,-0.72l-0.33,-0.48l1.05,-0.67l0.23,-0.54l-0.18,-0.51l-0.77,-0.46l1.18,-2.26l3.23,-3.39l0.91,-1.64l0.35,-1.51l1.93,-1.77l-0.01,-0.8l0.91,-0.91l0.69,-1.32l0.6,-2.51l1.05,0.36l0.73,1.6l3.32,1.02l0.59,-0.12l1.45,-1.85l0.65,-1.86l0.84,-0.71l0.3,-1.33l1.12,-1.68l1.45,0.93l0.62,-0.02l1.85,-2.41l1.12,-0.06l0.72,-0.87l0.88,-0.4l0.77,-1.37l1.75,-1.7l0.23,-2.16l0.85,-1.31l0.13,-1.64l7.33,5.42l0.62,-0.15l1.41,-3.06l2.36,0.44l0.44,0.58l0.9,0.38l-0.85,1.2l0.37,0.92l1.28,1.0l2.27,0.46l0.67,1.15l1.31,0.4l1.59,1.71l-0.16,2.14l-1.67,0.43l-0.29,0.48l-0.93,0.35l-1.52,3.89l-0.32,0.03l-0.17,0.48l0.71,0.91l-0.35,0.74l1.83,0.4l2.46,-0.69l0.6,-0.48l0.09,0.51l-0.59,0.47l1.49,1.26l0.13,0.96l1.35,0.74l1.75,0.22l0.67,0.51l0.87,-0.36l0.72,0.21l0.12,0.51l1.06,0.64l0.18,0.98l0.8,0.1l1.1,0.9l2.34,1.06l0.13,0.73l-0.64,-0.47l-0.62,0.25l0.37,1.6l-0.43,0.76l0.32,0.4l-0.53,0.55l0.0,0.46l-0.43,-0.15l-0.93,-1.04l-0.83,0.27l-1.64,-2.26l-0.47,-0.07l-0.22,-0.51l-0.55,0.14l-1.0,-1.33l-0.96,-0.54l-0.23,-0.57l-0.72,-0.5l-0.34,-1.17l-0.55,-0.67l-1.16,-0.37l-0.82,-0.86l-1.05,-0.19l-0.48,0.35l0.28,0.79l0.95,0.21l0.42,0.66l1.17,0.32l0.4,0.42l0.0,1.27l2.1,1.82l1.22,1.86l1.58,0.87l0.93,1.97l0.83,0.4l1.28,-0.08l0.77,0.55l-0.47,0.42l0.19,0.52l1.64,0.69l0.13,0.6l0.35,0.18l-0.14,1.44l-0.27,-0.68l-0.82,-0.25l-0.78,-1.01l-0.62,0.14l-0.51,1.15l0.39,0.74l-0.23,0.43l0.94,0.56l-1.31,0.28l-4.35,-4.95l-0.55,-0.03l-0.38,0.67l0.11,0.53l1.69,1.67l1.37,2.1l2.17,1.48l1.2,-0.26l0.21,0.88l0.97,0.38l-0.45,0.39l0.15,0.64l0.82,0.05l-0.25,0.82l-1.52,0.58l-0.36,-0.78l-2.47,-1.62l-0.02,-1.25l-0.42,-0.63l-0.75,-0.27l-1.18,0.28l-1.38,-0.66l-0.06,-0.94l-0.66,-0.22l-0.69,1.28l-0.97,-1.32l-1.01,0.32l-0.49,-0.43l-0.97,0.16l-1.95,-0.5l-0.55,0.77l0.23,0.48l3.62,0.92l0.64,-0.44l0.34,0.8l1.1,0.61l1.78,0.14l0.56,0.73l0.71,0.26l0.54,-0.28l0.14,1.99l1.14,0.39l1.42,1.26l0.22,0.54l-0.71,0.72l0.43,0.53l1.79,-0.69l0.75,0.15l0.72,0.73l0.67,-0.14l-0.4,-1.79l2.59,0.79l0.92,0.06l0.79,-0.37l0.95,3.06l-0.47,0.51l-0.14,2.49l-0.87,-0.68l-0.25,0.68l-62.64,0.19l-17.72,-0.53l-10.57,-0.86l-0.83,0.37l-25.18,-0.12Z",
|
||||
name: "V1",
|
||||
},
|
||||
},
|
||||
height: 100,
|
||||
projection: { type: "mill", centralMeridian: 0 },
|
||||
width: 100,
|
||||
},
|
||||
};
|
||||
8
frontend/node_modules/@react-jvectormap/core/src/utils/builders/index.ts
generated
vendored
8
frontend/node_modules/@react-jvectormap/core/src/utils/builders/index.ts
generated
vendored
@@ -1,8 +0,0 @@
|
||||
export { VectorMapBuilder } from "./VectorMapBuilder";
|
||||
export { MarkerBuilder } from "./MarkerBuilder";
|
||||
export { StyleBuilder } from "./StyleBuilder";
|
||||
export { AttributeSeriesBuilder } from "./AttributeSeriesBuilder";
|
||||
export { SeriesBuilder } from "./SeriesBuilder";
|
||||
export { LabelsBuilder } from "./LabelsBuilder";
|
||||
export { LabelsPropsBuilder } from "./LabelsPropsBuilder";
|
||||
export { MultiMapBuilder } from "./MultiMapBuilder";
|
||||
3
frontend/node_modules/@react-jvectormap/core/src/utils/builders/types.ts
generated
vendored
3
frontend/node_modules/@react-jvectormap/core/src/utils/builders/types.ts
generated
vendored
@@ -1,3 +0,0 @@
|
||||
export interface IBuilder<T> {
|
||||
build: () => T;
|
||||
}
|
||||
8
frontend/node_modules/@react-jvectormap/core/src/utils/builders/utils.ts
generated
vendored
8
frontend/node_modules/@react-jvectormap/core/src/utils/builders/utils.ts
generated
vendored
@@ -1,8 +0,0 @@
|
||||
/**
|
||||
* remove undefined values from object
|
||||
* @param object
|
||||
*/
|
||||
export const stripUndefinedValues = (object: { [key: string]: unknown }) =>
|
||||
Object.fromEntries(
|
||||
Object.entries(object).filter((entry) => entry[1] !== undefined),
|
||||
);
|
||||
1
frontend/node_modules/@react-jvectormap/core/src/utils/index.ts
generated
vendored
1
frontend/node_modules/@react-jvectormap/core/src/utils/index.ts
generated
vendored
@@ -1 +0,0 @@
|
||||
export * from "./builders";
|
||||
10
frontend/node_modules/@react-jvectormap/core/tsconfig.json
generated
vendored
10
frontend/node_modules/@react-jvectormap/core/tsconfig.json
generated
vendored
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"rootDir": "src",
|
||||
"outDir": "dist",
|
||||
"declaration": true,
|
||||
"declarationDir": "dist",
|
||||
"emitDeclarationOnly": false
|
||||
}
|
||||
}
|
||||
28
frontend/node_modules/@react-jvectormap/core/typings/declarations.d.ts
generated
vendored
28
frontend/node_modules/@react-jvectormap/core/typings/declarations.d.ts
generated
vendored
@@ -1,28 +0,0 @@
|
||||
import jQuery from "@types/jquery";
|
||||
import { IRegion, Marker } from "../src/types";
|
||||
|
||||
type DataSeries = {
|
||||
clearAndSet: (values: { [key: string]: number } | number[]) => void;
|
||||
};
|
||||
|
||||
declare global {
|
||||
interface Window {
|
||||
jQuery: typeof jQuery;
|
||||
$: typeof jQuery;
|
||||
}
|
||||
interface JQuery {
|
||||
vectorMap(...args: unknown[]): JQuery;
|
||||
multiMap(...args: unknown[]): JQuery;
|
||||
series?: {
|
||||
regions?: DataSeries[];
|
||||
markers?: DataSeries[];
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
declare module "jvectormap-next";
|
||||
|
||||
declare module "*.scss" {
|
||||
const styles: { [className: string]: string };
|
||||
export default styles;
|
||||
}
|
||||
31
frontend/node_modules/@react-jvectormap/core/webpack.config.js
generated
vendored
31
frontend/node_modules/@react-jvectormap/core/webpack.config.js
generated
vendored
@@ -1,31 +0,0 @@
|
||||
const path = require("path");
|
||||
|
||||
module.exports = {
|
||||
entry: path.resolve(__dirname, "./src/index.ts"),
|
||||
output: {
|
||||
path: path.resolve(__dirname, "dist"),
|
||||
filename: "index.js",
|
||||
libraryTarget: "umd",
|
||||
},
|
||||
resolve: {
|
||||
extensions: [".ts", ".tsx", ".js", ".jsx"],
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.tsx?$/,
|
||||
loader: "babel-loader",
|
||||
},
|
||||
{
|
||||
test: /\.s[ac]ss$/i,
|
||||
use: ["style-loader", "css-loader", "sass-loader"],
|
||||
},
|
||||
],
|
||||
},
|
||||
externals: {
|
||||
react: "react",
|
||||
"react-dom": "reactDOM",
|
||||
jquery: "jquery",
|
||||
},
|
||||
plugins: []
|
||||
};
|
||||
147
frontend/node_modules/@react-jvectormap/jquery-mousewheel/ChangeLog.md
generated
vendored
147
frontend/node_modules/@react-jvectormap/jquery-mousewheel/ChangeLog.md
generated
vendored
@@ -1,147 +0,0 @@
|
||||
# Mouse Wheel ChangeLog
|
||||
|
||||
## 3.1.13
|
||||
|
||||
* Update copyright notice and license to remove years
|
||||
* Create the correct compressed version
|
||||
* Remove the obsolete jQuery Plugin Registry file
|
||||
|
||||
## 3.1.12
|
||||
|
||||
* Fix possible 0 value for line height when in delta mode 1
|
||||
|
||||
## 3.1.11
|
||||
|
||||
* Fix version number for package managers...
|
||||
|
||||
## 3.1.10
|
||||
|
||||
* Fix issue with calculating line height when using older versions of jQuery
|
||||
* Add offsetX/Y normalization with setting to turn it off
|
||||
* Cleans up data on teardown
|
||||
|
||||
## 3.1.9
|
||||
|
||||
* Fix bower.json file
|
||||
* Updated how the deltas are adjusted for older mousewheel based events that have deltas that are factors of 120.
|
||||
* Add $.event.special.mousewheel.settings.adjustOldDeltas (defaults to true) to turn off adjusting of old deltas that are factors of 120. You'd turn this off if you want to be as close to native scrolling as possible.
|
||||
|
||||
## 3.1.8
|
||||
|
||||
* Even better handling of older browsers that use a wheelDelta based on 120
|
||||
* And fix version reported by `$.event.special.mousewheel`
|
||||
|
||||
## 3.1.7
|
||||
|
||||
* Better handle the `deltaMode` values 1 (lines) and 2 (pages)
|
||||
* Attempt to better handle older browsers that use a wheelDelta based on 120
|
||||
|
||||
## 3.1.6
|
||||
|
||||
* Deprecating `delta`, `deltaX`, and `deltaY` event handler arguments
|
||||
* Update actual event object with normalized `deltaX `and `deltaY` values (`event.deltaX`, `event.deltaY`)
|
||||
* Add `deltaFactor` to the event object (`event.deltaFactor`)
|
||||
* Handle `> 0` but `< 1` deltas better
|
||||
* Do not fire the event if `deltaX` and `deltaY` are `0`
|
||||
* Better handle different devices that give different `lowestDelta` values
|
||||
* Add `$.event.special.mousewheel.version`
|
||||
* Some clean up
|
||||
|
||||
## 3.1.5
|
||||
|
||||
* Bad release because I did not update the new `$.event.special.mousewheel.version`
|
||||
|
||||
## 3.1.4
|
||||
|
||||
* Always set the `deltaY`
|
||||
* Add back in the `deltaX` and `deltaY` support for older Firefox versions
|
||||
|
||||
## 3.1.3
|
||||
|
||||
* Include `MozMousePixelScroll` in the to fix list to avoid inconsistent behavior in older Firefox
|
||||
|
||||
## 3.1.2
|
||||
|
||||
* Include grunt utilities for development purposes (jshint and uglify)
|
||||
* Include support for browserify
|
||||
* Some basic cleaning up
|
||||
|
||||
## 3.1.1
|
||||
|
||||
* Fix rounding issue with deltas less than zero
|
||||
|
||||
|
||||
## 3.1.0
|
||||
|
||||
* Fix Firefox 17+ issues by using new wheel event
|
||||
* Normalize delta values
|
||||
* Adds horizontal support for IE 9+ by using new wheel event
|
||||
* Support AMD loaders
|
||||
|
||||
|
||||
## 3.0.6
|
||||
|
||||
* Fix issue with delta being 0 in Firefox
|
||||
|
||||
|
||||
## 3.0.5
|
||||
|
||||
* jQuery 1.7 compatibility
|
||||
|
||||
|
||||
## 3.0.4
|
||||
|
||||
* Fix IE issue
|
||||
|
||||
|
||||
## 3.0.3
|
||||
|
||||
* Added `deltaX` and `deltaY` for horizontal scrolling support (Thanks to Seamus Leahy)
|
||||
|
||||
|
||||
## 3.0.2
|
||||
|
||||
* Fixed delta being opposite value in latest Opera
|
||||
* No longer fix `pageX`, `pageY` for older Mozilla browsers
|
||||
* Removed browser detection
|
||||
* Cleaned up the code
|
||||
|
||||
|
||||
## 3.0.1
|
||||
|
||||
* Bad release... creating a new release due to plugins.jquery.com issue :(
|
||||
|
||||
|
||||
## 3.0
|
||||
|
||||
* Uses new special events API in jQuery 1.2.2+
|
||||
* You can now treat `mousewheel` as a normal event and use `.bind`, `.unbind` and `.trigger`
|
||||
* Using jQuery.data API for expandos
|
||||
|
||||
|
||||
## 2.2
|
||||
|
||||
* Fixed `pageX`, `pageY`, `clientX` and `clientY` event properties for Mozilla based browsers
|
||||
|
||||
|
||||
## 2.1.1
|
||||
|
||||
* Updated to work with jQuery 1.1.3
|
||||
* Used one instead of bind to do unload event for clean up
|
||||
|
||||
|
||||
## 2.1
|
||||
|
||||
* Fixed an issue with the unload handler
|
||||
|
||||
|
||||
## 2.0
|
||||
|
||||
* Major reduction in code size and complexity (internals have change a whole lot)
|
||||
|
||||
|
||||
## 1.0
|
||||
|
||||
* Fixed Opera issue
|
||||
* Fixed an issue with children elements that also have a mousewheel handler
|
||||
* Added ability to handle multiple handlers
|
||||
36
frontend/node_modules/@react-jvectormap/jquery-mousewheel/LICENSE.txt
generated
vendored
36
frontend/node_modules/@react-jvectormap/jquery-mousewheel/LICENSE.txt
generated
vendored
@@ -1,36 +0,0 @@
|
||||
Copyright OpenJS Foundation and other contributors, https://openjsf.org/
|
||||
|
||||
This software consists of voluntary contributions made by many
|
||||
individuals. For exact contribution history, see the revision history
|
||||
available at https://github.com/jquery/jquery-mousewheel
|
||||
|
||||
The following license applies to all parts of this software except as
|
||||
documented below:
|
||||
|
||||
====
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
||||
====
|
||||
|
||||
All files located in the node_modules and external directories are
|
||||
externally maintained libraries used by this software which have their
|
||||
own licenses; we recommend you read them, as their terms may differ from
|
||||
the terms above.
|
||||
62
frontend/node_modules/@react-jvectormap/jquery-mousewheel/README.md
generated
vendored
62
frontend/node_modules/@react-jvectormap/jquery-mousewheel/README.md
generated
vendored
@@ -1,62 +0,0 @@
|
||||
# jQuery Mouse Wheel Plugin
|
||||
|
||||
A [jQuery](http://jquery.com/) plugin that adds cross-browser mouse wheel support with delta normalization.
|
||||
|
||||
In order to use the plugin, simply bind the `mousewheel` event to an element.
|
||||
|
||||
It also provides two helper methods called `mousewheel` and `unmousewheel`
|
||||
that act just like other event helper methods in jQuery.
|
||||
|
||||
The event object is updated with the normalized `deltaX` and `deltaY` properties.
|
||||
In addition there is a new property on the event object called `deltaFactor`. Multiply
|
||||
the `deltaFactor` by `deltaX` or `deltaY` to get the scroll distance that the browser
|
||||
has reported.
|
||||
|
||||
Here is an example of using both the bind and helper method syntax:
|
||||
|
||||
```js
|
||||
// using on
|
||||
$('#my_elem').on('mousewheel', function(event) {
|
||||
console.log(event.deltaX, event.deltaY, event.deltaFactor);
|
||||
});
|
||||
|
||||
// using the event helper
|
||||
$('#my_elem').mousewheel(function(event) {
|
||||
console.log(event.deltaX, event.deltaY, event.deltaFactor);
|
||||
});
|
||||
```
|
||||
|
||||
The old behavior of adding three arguments (`delta`, `deltaX`, and `deltaY`) to the
|
||||
event handler is now deprecated and will be removed in later releases.
|
||||
|
||||
|
||||
## The Deltas...
|
||||
|
||||
The combination of browsers, operating systems, and devices offer a huge range of possible delta values. In fact if the user
|
||||
uses a trackpad and then a physical mouse wheel the delta values can differ wildly. This plugin normalizes those
|
||||
values so you get a whole number starting at +-1 and going up in increments of +-1 according to the force or
|
||||
acceleration that is used. This number has the potential to be in the thousands depending on the device.
|
||||
Check out some of the data collected from users [here](http://mousewheeldatacollector.herokuapp.com/).
|
||||
|
||||
### Getting the scroll distance
|
||||
|
||||
In some use-cases we prefer to have the normalized delta but in others we want to know how far the browser should
|
||||
scroll based on the users input. This can be done by multiplying the `deltaFactor` by the `deltaX` or `deltaY`
|
||||
event property to find the scroll distance the browser reported.
|
||||
|
||||
The `deltaFactor` property was added to the event object in 3.1.5 so that the actual reported delta value can be
|
||||
extracted. This is a non-standard property.
|
||||
|
||||
## Building the code in the repo
|
||||
|
||||
```sh
|
||||
$ git clone git@github.com:jquery/jquery-mousewheel.git
|
||||
$ cd jquery-mousewheel/
|
||||
$ npm install
|
||||
$ npm run build
|
||||
$ npm run karma
|
||||
```
|
||||
|
||||
The unit tests run by karma are _very_ basic sanity checks; improvements welcome.
|
||||
To fully test the plugin, load [test/index.html](test/index.html) in each supported
|
||||
browser and follow the instructions at the top of the file after the unit tests finish.
|
||||
236
frontend/node_modules/@react-jvectormap/jquery-mousewheel/jquery.mousewheel.js
generated
vendored
236
frontend/node_modules/@react-jvectormap/jquery-mousewheel/jquery.mousewheel.js
generated
vendored
@@ -1,236 +0,0 @@
|
||||
/*!
|
||||
* jQuery Mousewheel 3.1.13
|
||||
* Copyright OpenJS Foundation and other contributors
|
||||
*/
|
||||
|
||||
export const loadJQueryMouseWheel = ($) =>
|
||||
(function (factory) {
|
||||
factory($);
|
||||
})(function ($) {
|
||||
var toFix = [
|
||||
"wheel",
|
||||
"mousewheel",
|
||||
"DOMMouseScroll",
|
||||
"MozMousePixelScroll",
|
||||
],
|
||||
toBind =
|
||||
"onwheel" in window.document || window.document.documentMode >= 9
|
||||
? ["wheel"]
|
||||
: ["mousewheel", "DomMouseScroll", "MozMousePixelScroll"],
|
||||
slice = Array.prototype.slice,
|
||||
nullLowestDeltaTimeout,
|
||||
lowestDelta;
|
||||
|
||||
if ($.event.fixHooks) {
|
||||
for (var i = toFix.length; i; ) {
|
||||
$.event.fixHooks[toFix[--i]] = $.event.mouseHooks;
|
||||
}
|
||||
}
|
||||
|
||||
var special = ($.event.special.mousewheel = {
|
||||
version: "3.1.12",
|
||||
|
||||
setup: function () {
|
||||
if (this.addEventListener) {
|
||||
for (var i = toBind.length; i; ) {
|
||||
this.addEventListener(toBind[--i], handler, false);
|
||||
}
|
||||
} else {
|
||||
this.onmousewheel = handler;
|
||||
}
|
||||
|
||||
// Store the line height and page height for this particular element
|
||||
$.data(this, "mousewheel-line-height", special.getLineHeight(this));
|
||||
$.data(this, "mousewheel-page-height", special.getPageHeight(this));
|
||||
},
|
||||
|
||||
teardown: function () {
|
||||
if (this.removeEventListener) {
|
||||
for (var i = toBind.length; i; ) {
|
||||
this.removeEventListener(toBind[--i], handler, false);
|
||||
}
|
||||
} else {
|
||||
this.onmousewheel = null;
|
||||
}
|
||||
|
||||
// Clean up the data we added to the element
|
||||
$.removeData(this, "mousewheel-line-height");
|
||||
$.removeData(this, "mousewheel-page-height");
|
||||
},
|
||||
|
||||
getLineHeight: function (elem) {
|
||||
var $elem = $(elem),
|
||||
$parent = $elem["offsetParent" in $.fn ? "offsetParent" : "parent"]();
|
||||
if (!$parent.length) {
|
||||
$parent = $("body");
|
||||
}
|
||||
return (
|
||||
parseInt($parent.css("fontSize"), 10) ||
|
||||
parseInt($elem.css("fontSize"), 10) ||
|
||||
16
|
||||
);
|
||||
},
|
||||
|
||||
getPageHeight: function (elem) {
|
||||
return $(elem).height();
|
||||
},
|
||||
|
||||
settings: {
|
||||
adjustOldDeltas: true, // see shouldAdjustOldDeltas() below
|
||||
normalizeOffset: true, // calls getBoundingClientRect for each event
|
||||
},
|
||||
});
|
||||
|
||||
$.fn.extend({
|
||||
mousewheel: function (fn) {
|
||||
return fn ? this.on("mousewheel", fn) : this.trigger("mousewheel");
|
||||
},
|
||||
|
||||
unmousewheel: function (fn) {
|
||||
return this.off("mousewheel", fn);
|
||||
},
|
||||
});
|
||||
|
||||
function handler(event) {
|
||||
var orgEvent = event || window.event,
|
||||
args = slice.call(arguments, 1),
|
||||
delta = 0,
|
||||
deltaX = 0,
|
||||
deltaY = 0,
|
||||
absDelta = 0;
|
||||
event = $.event.fix(orgEvent);
|
||||
event.type = "mousewheel";
|
||||
|
||||
// Old school scrollwheel delta
|
||||
if ("detail" in orgEvent) {
|
||||
deltaY = orgEvent.detail * -1;
|
||||
}
|
||||
if ("wheelDelta" in orgEvent) {
|
||||
deltaY = orgEvent.wheelDelta;
|
||||
}
|
||||
if ("wheelDeltaY" in orgEvent) {
|
||||
deltaY = orgEvent.wheelDeltaY;
|
||||
}
|
||||
if ("wheelDeltaX" in orgEvent) {
|
||||
deltaX = orgEvent.wheelDeltaX * -1;
|
||||
}
|
||||
|
||||
// Firefox < 17 horizontal scrolling related to DOMMouseScroll event
|
||||
if ("axis" in orgEvent && orgEvent.axis === orgEvent.HORIZONTAL_AXIS) {
|
||||
deltaX = deltaY * -1;
|
||||
deltaY = 0;
|
||||
}
|
||||
|
||||
// Set delta to be deltaY or deltaX if deltaY is 0 for backwards compatabilitiy
|
||||
delta = deltaY === 0 ? deltaX : deltaY;
|
||||
|
||||
// New school wheel delta (wheel event)
|
||||
if ("deltaY" in orgEvent) {
|
||||
deltaY = orgEvent.deltaY * -1;
|
||||
delta = deltaY;
|
||||
}
|
||||
if ("deltaX" in orgEvent) {
|
||||
deltaX = orgEvent.deltaX;
|
||||
if (deltaY === 0) {
|
||||
delta = deltaX * -1;
|
||||
}
|
||||
}
|
||||
|
||||
// No change actually happened, no reason to go any further
|
||||
if (deltaY === 0 && deltaX === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Need to convert lines and pages to pixels if we aren't already in pixels
|
||||
// There are three delta modes:
|
||||
// * deltaMode 0 is by pixels, nothing to do
|
||||
// * deltaMode 1 is by lines
|
||||
// * deltaMode 2 is by pages
|
||||
if (orgEvent.deltaMode === 1) {
|
||||
var lineHeight = $.data(this, "mousewheel-line-height");
|
||||
delta *= lineHeight;
|
||||
deltaY *= lineHeight;
|
||||
deltaX *= lineHeight;
|
||||
} else if (orgEvent.deltaMode === 2) {
|
||||
var pageHeight = $.data(this, "mousewheel-page-height");
|
||||
delta *= pageHeight;
|
||||
deltaY *= pageHeight;
|
||||
deltaX *= pageHeight;
|
||||
}
|
||||
|
||||
// Store lowest absolute delta to normalize the delta values
|
||||
absDelta = Math.max(Math.abs(deltaY), Math.abs(deltaX));
|
||||
|
||||
if (!lowestDelta || absDelta < lowestDelta) {
|
||||
lowestDelta = absDelta;
|
||||
|
||||
// Adjust older deltas if necessary
|
||||
if (shouldAdjustOldDeltas(orgEvent, absDelta)) {
|
||||
lowestDelta /= 40;
|
||||
}
|
||||
}
|
||||
|
||||
// Adjust older deltas if necessary
|
||||
if (shouldAdjustOldDeltas(orgEvent, absDelta)) {
|
||||
// Divide all the things by 40!
|
||||
delta /= 40;
|
||||
deltaX /= 40;
|
||||
deltaY /= 40;
|
||||
}
|
||||
|
||||
// Get a whole, normalized value for the deltas
|
||||
delta = Math[delta >= 1 ? "floor" : "ceil"](delta / lowestDelta);
|
||||
deltaX = Math[deltaX >= 1 ? "floor" : "ceil"](deltaX / lowestDelta);
|
||||
deltaY = Math[deltaY >= 1 ? "floor" : "ceil"](deltaY / lowestDelta);
|
||||
|
||||
// Normalise offsetX and offsetY properties
|
||||
if (special.settings.normalizeOffset && this.getBoundingClientRect) {
|
||||
var boundingRect = this.getBoundingClientRect();
|
||||
event.offsetX = event.clientX - boundingRect.left;
|
||||
event.offsetY = event.clientY - boundingRect.top;
|
||||
}
|
||||
|
||||
// Add information to the event object
|
||||
event.deltaX = deltaX;
|
||||
event.deltaY = deltaY;
|
||||
event.deltaFactor = lowestDelta;
|
||||
|
||||
// Go ahead and set deltaMode to 0 since we converted to pixels
|
||||
// Although this is a little odd since we overwrite the deltaX/Y
|
||||
// properties with normalized deltas.
|
||||
event.deltaMode = 0;
|
||||
|
||||
// Add event and delta to the front of the arguments
|
||||
args.unshift(event, delta, deltaX, deltaY);
|
||||
|
||||
// Clearout lowestDelta after sometime to better
|
||||
// handle multiple device types that give different
|
||||
// a different lowestDelta
|
||||
// Ex: trackpad = 3 and mouse wheel = 120
|
||||
if (nullLowestDeltaTimeout) {
|
||||
window.clearTimeout(nullLowestDeltaTimeout);
|
||||
}
|
||||
nullLowestDeltaTimeout = window.setTimeout(nullLowestDelta, 200);
|
||||
|
||||
return ($.event.dispatch || $.event.handle).apply(this, args);
|
||||
}
|
||||
|
||||
function nullLowestDelta() {
|
||||
lowestDelta = null;
|
||||
}
|
||||
|
||||
function shouldAdjustOldDeltas(orgEvent, absDelta) {
|
||||
// If this is an older event and the delta is divisable by 120,
|
||||
// then we are assuming that the browser is treating this as an
|
||||
// older mouse wheel event and that we should divide the deltas
|
||||
// by 40 to try and get a more usable deltaFactor.
|
||||
// Side note, this actually impacts the reported scroll distance
|
||||
// in older browsers and can cause scrolling to be slower than native.
|
||||
// Turn this off by setting $.event.special.mousewheel.settings.adjustOldDeltas to false.
|
||||
return (
|
||||
special.settings.adjustOldDeltas &&
|
||||
orgEvent.type === "mousewheel" &&
|
||||
absDelta % 120 === 0
|
||||
);
|
||||
}
|
||||
});
|
||||
63
frontend/node_modules/@react-jvectormap/jquery-mousewheel/package.json
generated
vendored
63
frontend/node_modules/@react-jvectormap/jquery-mousewheel/package.json
generated
vendored
@@ -1,63 +0,0 @@
|
||||
{
|
||||
"name": "@react-jvectormap/jquery-mousewheel",
|
||||
"version": "1.0.2",
|
||||
"author": {
|
||||
"name": "jQuery Foundation and other contributors",
|
||||
"url": "https://github.com/jquery/jquery-mousewheel/blob/master/AUTHORS.txt"
|
||||
},
|
||||
"description": "A jQuery plugin that adds cross-browser mouse wheel support.",
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/jquery/jquery-mousewheel",
|
||||
"main": "./jquery.mousewheel.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jquery/jquery-mousewheel.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/jquery/jquery-mousewheel/issues"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"keywords": [
|
||||
"jquery",
|
||||
"mouse",
|
||||
"wheel",
|
||||
"event",
|
||||
"mousewheel",
|
||||
"jquery-plugin",
|
||||
"browser"
|
||||
],
|
||||
"files": [
|
||||
"ChangeLog.md",
|
||||
"jquery.mousewheel.js",
|
||||
"README.md",
|
||||
"LICENSE.txt"
|
||||
],
|
||||
"directories": {
|
||||
"test": "test"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "yarn run lint && yarn run minify",
|
||||
"minify": "uglifyjs -m -c --comments /Copyright/ -o jquery.mousewheel.min.js -- jquery.mousewheel.js",
|
||||
"lint": "eslint jquery.mousewheel.js",
|
||||
"karma": "karma start test/karma.conf.js",
|
||||
"test": "echo Use karma for unit tests or load test/index.html in a browser."
|
||||
},
|
||||
"dependencies": {
|
||||
"jquery": "^3.6.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"eslint": "^8.1.0",
|
||||
"eslint-config-jquery": "^3.0.0",
|
||||
"karma": "^6.3.5",
|
||||
"karma-chrome-launcher": "^3.1.0",
|
||||
"karma-firefox-launcher": "^2.1.1",
|
||||
"karma-qunit": "^4.1.2",
|
||||
"karma-requirejs": "^1.1.0",
|
||||
"qunit": "^2.17.2",
|
||||
"requirejs": "^2.3.6",
|
||||
"uglify-js": "^3.14.2"
|
||||
},
|
||||
"gitHead": "53a4ea6b33d647fef99940b044f140109fec0727"
|
||||
}
|
||||
22
frontend/node_modules/@react-jvectormap/lib/LICENSE
generated
vendored
22
frontend/node_modules/@react-jvectormap/lib/LICENSE
generated
vendored
@@ -1,22 +0,0 @@
|
||||
Copyright (c) 2015 Rubbby
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
files (the "Software"), to deal in the Software without
|
||||
restriction, including without limitation the rights to use,
|
||||
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following
|
||||
conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
||||
661
frontend/node_modules/@react-jvectormap/lib/LICENSE-AGPL
generated
vendored
661
frontend/node_modules/@react-jvectormap/lib/LICENSE-AGPL
generated
vendored
@@ -1,661 +0,0 @@
|
||||
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
Version 3, 19 November 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU Affero General Public License is a free, copyleft license for
|
||||
software and other kinds of works, specifically designed to ensure
|
||||
cooperation with the community in the case of network server software.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
our General Public Licenses are intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
Developers that use our General Public Licenses protect your rights
|
||||
with two steps: (1) assert copyright on the software, and (2) offer
|
||||
you this License which gives you legal permission to copy, distribute
|
||||
and/or modify the software.
|
||||
|
||||
A secondary benefit of defending all users' freedom is that
|
||||
improvements made in alternate versions of the program, if they
|
||||
receive widespread use, become available for other developers to
|
||||
incorporate. Many developers of free software are heartened and
|
||||
encouraged by the resulting cooperation. However, in the case of
|
||||
software used on network servers, this result may fail to come about.
|
||||
The GNU General Public License permits making a modified version and
|
||||
letting the public access it on a server without ever releasing its
|
||||
source code to the public.
|
||||
|
||||
The GNU Affero General Public License is designed specifically to
|
||||
ensure that, in such cases, the modified source code becomes available
|
||||
to the community. It requires the operator of a network server to
|
||||
provide the source code of the modified version running there to the
|
||||
users of that server. Therefore, public use of a modified version, on
|
||||
a publicly accessible server, gives the public access to the source
|
||||
code of the modified version.
|
||||
|
||||
An older license, called the Affero General Public License and
|
||||
published by Affero, was designed to accomplish similar goals. This is
|
||||
a different license, not a version of the Affero GPL, but Affero has
|
||||
released a new version of the Affero GPL which permits relicensing under
|
||||
this license.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU Affero General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Remote Network Interaction; Use with the GNU General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, if you modify the
|
||||
Program, your modified version must prominently offer all users
|
||||
interacting with it remotely through a computer network (if your version
|
||||
supports such interaction) an opportunity to receive the Corresponding
|
||||
Source of your version by providing access to the Corresponding Source
|
||||
from a network server at no charge, through some standard or customary
|
||||
means of facilitating copying of software. This Corresponding Source
|
||||
shall include the Corresponding Source for any work covered by version 3
|
||||
of the GNU General Public License that is incorporated pursuant to the
|
||||
following paragraph.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the work with which it is combined will remain governed by version
|
||||
3 of the GNU General Public License.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU Affero General Public License from time to time. Such new versions
|
||||
will be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU Affero General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU Affero General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU Affero General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If your software can interact with users remotely through a computer
|
||||
network, you should also make sure that it provides a way for users to
|
||||
get its source. For example, if your program is a web application, its
|
||||
interface could display a "Source" link that leads users to an archive
|
||||
of the code. There are many ways you could offer source, and different
|
||||
solutions will be better for different programs; see section 13 for the
|
||||
specific requirements.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU AGPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
16
frontend/node_modules/@react-jvectormap/lib/LICENSE-COMMERCIAL
generated
vendored
16
frontend/node_modules/@react-jvectormap/lib/LICENSE-COMMERCIAL
generated
vendored
@@ -1,16 +0,0 @@
|
||||
Commercial license:
|
||||
- License does not expire.
|
||||
- Can be used on 1 site, unlimited servers
|
||||
- Source-code or binary products cannot be resold or distributed
|
||||
- Commercial use allowed
|
||||
- Can modify source-code but cannot distribute modifications (derivative works)
|
||||
Full licensing terms are avaialble at http://www.binpress.com/license/read/id/3085/app/2122
|
||||
|
||||
|
||||
Developer license:
|
||||
- License does not expire.
|
||||
- Can be distributed in unlimited projects
|
||||
- Can be distributed and / or packaged as a code or binary product (sublicensed)
|
||||
- Commercial use allowed
|
||||
- Can modify source-code but cannot distribute modifications (derivative works)
|
||||
Full licensing terms are avaialble at http://www.binpress.com/license/read/id/3086/app/2122
|
||||
3
frontend/node_modules/@react-jvectormap/lib/README.md
generated
vendored
3
frontend/node_modules/@react-jvectormap/lib/README.md
generated
vendored
@@ -1,3 +0,0 @@
|
||||
jVectorMap is a vector-based, cross-browser and cross-platform component for interactive geography-related data visualization on the web. It provides numerious features like smooth zooming and panning, fully-customizable styling, markers, labels and tooltips.
|
||||
|
||||
You can find maps, documentation, examples and more at [the official site](http://jvectormap.com/)
|
||||
61
frontend/node_modules/@react-jvectormap/lib/build.sh
generated
vendored
61
frontend/node_modules/@react-jvectormap/lib/build.sh
generated
vendored
@@ -1,61 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
files=( \
|
||||
jquery-jvectormap.js \
|
||||
# lib/jquery-mousewheel.js \
|
||||
src/jvectormap.js \
|
||||
src/abstract-element.js \
|
||||
src/abstract-canvas-element.js \
|
||||
src/abstract-shape-element.js \
|
||||
src/svg-element.js \
|
||||
src/svg-group-element.js \
|
||||
src/svg-canvas-element.js \
|
||||
src/svg-shape-element.js \
|
||||
src/svg-path-element.js \
|
||||
src/svg-circle-element.js \
|
||||
src/svg-image-element.js \
|
||||
src/svg-text-element.js \
|
||||
src/vml-element.js \
|
||||
src/vml-group-element.js \
|
||||
src/vml-canvas-element.js \
|
||||
src/vml-shape-element.js \
|
||||
src/vml-path-element.js \
|
||||
src/vml-circle-element.js \
|
||||
src/vector-canvas.js \
|
||||
src/simple-scale.js \
|
||||
src/ordinal-scale.js \
|
||||
src/numeric-scale.js \
|
||||
src/color-scale.js \
|
||||
src/legend.js \
|
||||
src/data-series.js \
|
||||
src/proj.js \
|
||||
src/map-object.js \
|
||||
src/region.js \
|
||||
src/marker.js \
|
||||
src/map.js \
|
||||
src/multimap.js \
|
||||
)
|
||||
|
||||
baseDir=`dirname $0`
|
||||
|
||||
counter=0
|
||||
while [ $counter -lt ${#files[@]} ]; do
|
||||
files[$counter]="$baseDir/${files[$counter]}"
|
||||
let counter=counter+1
|
||||
done
|
||||
|
||||
if [ -z "$1" ]
|
||||
then
|
||||
minified=jquery.jvectormap.min.js
|
||||
else
|
||||
minified=$1
|
||||
fi
|
||||
|
||||
if [ -a $minified ]
|
||||
then
|
||||
rm $minified
|
||||
fi
|
||||
|
||||
cat ${files[*]} >> $minified
|
||||
|
||||
#uglifyjs $minified -o $minified -c
|
||||
299
frontend/node_modules/@react-jvectormap/lib/converter/converter.py
generated
vendored
299
frontend/node_modules/@react-jvectormap/lib/converter/converter.py
generated
vendored
@@ -1,299 +0,0 @@
|
||||
#
|
||||
# jVectorMap version 2.0.5
|
||||
#
|
||||
# Copyright 2011-2013, Kirill Lebedev
|
||||
#
|
||||
|
||||
import sys
|
||||
import shapely.geometry
|
||||
import shapely.wkb
|
||||
import shapely.affinity
|
||||
from osgeo import ogr
|
||||
from osgeo import osr
|
||||
import json
|
||||
import codecs
|
||||
import copy
|
||||
|
||||
class Map:
|
||||
def __init__(self, name, language):
|
||||
self.paths = {}
|
||||
self.name = name
|
||||
self.language = language
|
||||
self.width = 0
|
||||
self.height = 0
|
||||
self.bbox = []
|
||||
|
||||
def addPath(self, path, code, name):
|
||||
self.paths[code] = {"path": path, "name": name}
|
||||
|
||||
def getJSCode(self):
|
||||
map = {"paths": self.paths, "width": self.width, "height": self.height, "insets": self.insets, "projection": self.projection}
|
||||
return "jQuery.fn.vectorMap('addMap', '"+self.name+"_"+self.projection['type']+"_"+self.language+"',"+json.dumps(map)+');'
|
||||
|
||||
|
||||
class Converter:
|
||||
def __init__(self, config):
|
||||
args = {
|
||||
'buffer_distance': -0.4,
|
||||
'simplify_tolerance': 0.2,
|
||||
'longitude0': 0,
|
||||
'projection': 'mill',
|
||||
'name': 'world',
|
||||
'width': 900,
|
||||
'language': 'en',
|
||||
'precision': 2,
|
||||
'insets': []
|
||||
}
|
||||
args.update(config)
|
||||
|
||||
self.map = Map(args['name'], args.get('language'))
|
||||
|
||||
if args.get('sources'):
|
||||
self.sources = args['sources']
|
||||
else:
|
||||
self.sources = [{
|
||||
'input_file': args.get('input_file'),
|
||||
'where': args.get('where'),
|
||||
'name_field': args.get('name_field'),
|
||||
'code_field': args.get('code_field'),
|
||||
'input_file_encoding': args.get('input_file_encoding')
|
||||
}]
|
||||
|
||||
default_source = {
|
||||
'where': '',
|
||||
'name_field': 0,
|
||||
'code_field': 1,
|
||||
'input_file_encoding': 'iso-8859-1'
|
||||
}
|
||||
|
||||
for index in range(len(self.sources)):
|
||||
for key in default_source:
|
||||
if self.sources[index].get(key) is None:
|
||||
self.sources[index][key] = default_source[key]
|
||||
|
||||
self.features = {}
|
||||
self.width = args.get('width')
|
||||
self.minimal_area = args.get('minimal_area')
|
||||
self.longitude0 = float(args.get('longitude0'))
|
||||
self.projection = args.get('projection')
|
||||
self.precision = args.get('precision')
|
||||
self.buffer_distance = args.get('buffer_distance')
|
||||
self.simplify_tolerance = args.get('simplify_tolerance')
|
||||
self.for_each = args.get('for_each')
|
||||
self.emulate_longitude0 = args.get('emulate_longitude0')
|
||||
if args.get('emulate_longitude0') is None and (self.projection == 'merc' or self.projection =='mill') and self.longitude0 != 0:
|
||||
self.emulate_longitude0 = True
|
||||
|
||||
if args.get('viewport'):
|
||||
self.viewport = map(lambda s: float(s), args.get('viewport').split(' '))
|
||||
else:
|
||||
self.viewport = False
|
||||
|
||||
# spatial reference to convert to
|
||||
self.spatialRef = osr.SpatialReference()
|
||||
projString = '+proj='+str(self.projection)+' +a=6381372 +b=6381372 +lat_0=0'
|
||||
if not self.emulate_longitude0:
|
||||
projString += ' +lon_0='+str(self.longitude0)
|
||||
self.spatialRef.ImportFromProj4(projString)
|
||||
|
||||
# handle map insets
|
||||
if args.get('insets'):
|
||||
self.insets = args.get('insets')
|
||||
else:
|
||||
self.insets = []
|
||||
|
||||
def loadData(self):
|
||||
for sourceConfig in self.sources:
|
||||
self.loadDataSource( sourceConfig )
|
||||
|
||||
def loadDataSource(self, sourceConfig):
|
||||
source = ogr.Open( sourceConfig['input_file'] )
|
||||
layer = source.GetLayer(0)
|
||||
layer.SetAttributeFilter( sourceConfig['where'].encode('ascii') )
|
||||
self.viewportRect = False
|
||||
|
||||
transformation = osr.CoordinateTransformation( layer.GetSpatialRef(), self.spatialRef )
|
||||
if self.viewport:
|
||||
layer.SetSpatialFilterRect( *self.viewport )
|
||||
point1 = transformation.TransformPoint(self.viewport[0], self.viewport[1])
|
||||
point2 = transformation.TransformPoint(self.viewport[2], self.viewport[3])
|
||||
self.viewportRect = shapely.geometry.box(point1[0], point1[1], point2[0], point2[1])
|
||||
|
||||
layer.ResetReading()
|
||||
|
||||
codes = {}
|
||||
|
||||
if self.emulate_longitude0:
|
||||
meridian = -180 + self.longitude0
|
||||
p1 = transformation.TransformPoint(-180, 89)
|
||||
p2 = transformation.TransformPoint(meridian, -89)
|
||||
left = shapely.geometry.box(p1[0], p1[1], p2[0], p2[1])
|
||||
p3 = transformation.TransformPoint(meridian, 89)
|
||||
p4 = transformation.TransformPoint(180, -89)
|
||||
right = shapely.geometry.box(p3[0], p3[1], p4[0], p4[1])
|
||||
|
||||
# load features
|
||||
nextCode = 0
|
||||
for feature in layer:
|
||||
geometry = feature.GetGeometryRef()
|
||||
geometryType = geometry.GetGeometryType()
|
||||
|
||||
if geometryType == ogr.wkbPolygon or geometryType == ogr.wkbMultiPolygon:
|
||||
geometry.TransformTo( self.spatialRef )
|
||||
shapelyGeometry = shapely.wkb.loads( geometry.ExportToWkb() )
|
||||
if not shapelyGeometry.is_valid:
|
||||
shapelyGeometry = shapelyGeometry.buffer(0, 1)
|
||||
|
||||
if self.emulate_longitude0:
|
||||
leftPart = shapely.affinity.translate(shapelyGeometry.intersection(left), p4[0] - p3[0])
|
||||
rightPart = shapely.affinity.translate(shapelyGeometry.intersection(right), p1[0] - p2[0])
|
||||
shapelyGeometry = leftPart.buffer(0.1, 1).union(rightPart.buffer(0.1, 1)).buffer(-0.1, 1)
|
||||
|
||||
if not shapelyGeometry.is_valid:
|
||||
shapelyGeometry = shapelyGeometry.buffer(0, 1)
|
||||
shapelyGeometry = self.applyFilters(shapelyGeometry)
|
||||
if shapelyGeometry:
|
||||
name = feature.GetFieldAsString(str(sourceConfig.get('name_field'))).decode(sourceConfig.get('input_file_encoding'))
|
||||
code = feature.GetFieldAsString(str(sourceConfig.get('code_field'))).decode(sourceConfig.get('input_file_encoding'))
|
||||
if code in codes:
|
||||
code = '_' + str(nextCode)
|
||||
nextCode += 1
|
||||
codes[code] = name
|
||||
self.features[code] = {"geometry": shapelyGeometry, "name": name, "code": code}
|
||||
else:
|
||||
raise Exception, "Wrong geometry type: "+geometryType
|
||||
|
||||
|
||||
def convert(self, outputFile):
|
||||
print 'Generating '+outputFile
|
||||
|
||||
self.loadData()
|
||||
|
||||
codes = self.features.keys()
|
||||
main_codes = copy.copy(codes)
|
||||
self.map.insets = []
|
||||
envelope = []
|
||||
for inset in self.insets:
|
||||
insetBbox = self.renderMapInset(inset['codes'], inset['left'], inset['top'], inset['width'])
|
||||
insetHeight = (insetBbox[3] - insetBbox[1]) * (inset['width'] / (insetBbox[2] - insetBbox[0]))
|
||||
self.map.insets.append({
|
||||
"bbox": [{"x": insetBbox[0], "y": -insetBbox[3]}, {"x": insetBbox[2], "y": -insetBbox[1]}],
|
||||
"left": inset['left'],
|
||||
"top": inset['top'],
|
||||
"width": inset['width'],
|
||||
"height": insetHeight
|
||||
})
|
||||
envelope.append(
|
||||
shapely.geometry.box(
|
||||
inset['left'], inset['top'], inset['left'] + inset['width'], inset['top'] + insetHeight
|
||||
)
|
||||
)
|
||||
for code in inset['codes']:
|
||||
main_codes.remove(code)
|
||||
|
||||
insetBbox = self.renderMapInset(main_codes, 0, 0, self.width)
|
||||
insetHeight = (insetBbox[3] - insetBbox[1]) * (self.width / (insetBbox[2] - insetBbox[0]))
|
||||
|
||||
envelope.append( shapely.geometry.box( 0, 0, self.width, insetHeight ) )
|
||||
mapBbox = shapely.geometry.MultiPolygon( envelope ).bounds
|
||||
|
||||
self.map.width = mapBbox[2] - mapBbox[0]
|
||||
self.map.height = mapBbox[3] - mapBbox[1]
|
||||
self.map.insets.append({
|
||||
"bbox": [{"x": insetBbox[0], "y": -insetBbox[3]}, {"x": insetBbox[2], "y": -insetBbox[1]}],
|
||||
"left": 0,
|
||||
"top": 0,
|
||||
"width": self.width,
|
||||
"height": insetHeight
|
||||
})
|
||||
self.map.projection = {"type": self.projection, "centralMeridian": float(self.longitude0)}
|
||||
|
||||
open(outputFile, 'w').write( self.map.getJSCode() )
|
||||
|
||||
if self.for_each is not None:
|
||||
for code in codes:
|
||||
childConfig = copy.deepcopy(self.for_each)
|
||||
for param in ('input_file', 'output_file', 'where', 'name'):
|
||||
childConfig[param] = childConfig[param].replace('{{code}}', code.lower())
|
||||
converter = Converter(childConfig)
|
||||
converter.convert(childConfig['output_file'])
|
||||
|
||||
def renderMapInset(self, codes, left, top, width):
|
||||
envelope = []
|
||||
for code in codes:
|
||||
envelope.append( self.features[code]['geometry'].envelope )
|
||||
|
||||
bbox = shapely.geometry.MultiPolygon( envelope ).bounds
|
||||
|
||||
scale = (bbox[2]-bbox[0]) / width
|
||||
|
||||
# generate SVG paths
|
||||
for code in codes:
|
||||
feature = self.features[code]
|
||||
geometry = feature['geometry']
|
||||
if self.buffer_distance:
|
||||
geometry = geometry.buffer(self.buffer_distance*scale, 1)
|
||||
if geometry.is_empty:
|
||||
continue
|
||||
if self.simplify_tolerance:
|
||||
geometry = geometry.simplify(self.simplify_tolerance*scale, preserve_topology=True)
|
||||
if isinstance(geometry, shapely.geometry.multipolygon.MultiPolygon):
|
||||
polygons = geometry.geoms
|
||||
else:
|
||||
polygons = [geometry]
|
||||
path = ''
|
||||
for polygon in polygons:
|
||||
rings = []
|
||||
rings.append(polygon.exterior)
|
||||
rings.extend(polygon.interiors)
|
||||
for ring in rings:
|
||||
for pointIndex in range( len(ring.coords) ):
|
||||
point = ring.coords[pointIndex]
|
||||
if pointIndex == 0:
|
||||
path += 'M'+str( round( (point[0]-bbox[0]) / scale + left, self.precision) )
|
||||
path += ','+str( round( (bbox[3] - point[1]) / scale + top, self.precision) )
|
||||
else:
|
||||
path += 'l' + str( round(point[0]/scale - ring.coords[pointIndex-1][0]/scale, self.precision) )
|
||||
path += ',' + str( round(ring.coords[pointIndex-1][1]/scale - point[1]/scale, self.precision) )
|
||||
path += 'Z'
|
||||
self.map.addPath(path, feature['code'], feature['name'])
|
||||
return bbox
|
||||
|
||||
|
||||
def applyFilters(self, geometry):
|
||||
if self.viewportRect:
|
||||
geometry = self.filterByViewport(geometry)
|
||||
if not geometry:
|
||||
return False
|
||||
if self.minimal_area:
|
||||
geometry = self.filterByMinimalArea(geometry)
|
||||
if not geometry:
|
||||
return False
|
||||
return geometry
|
||||
|
||||
|
||||
def filterByViewport(self, geometry):
|
||||
try:
|
||||
return geometry.intersection(self.viewportRect)
|
||||
except shapely.geos.TopologicalError:
|
||||
return False
|
||||
|
||||
|
||||
def filterByMinimalArea(self, geometry):
|
||||
if isinstance(geometry, shapely.geometry.multipolygon.MultiPolygon):
|
||||
polygons = geometry.geoms
|
||||
else:
|
||||
polygons = [geometry]
|
||||
polygons = filter(lambda p: p.area > self.minimal_area, polygons)
|
||||
return shapely.geometry.multipolygon.MultiPolygon(polygons)
|
||||
|
||||
|
||||
args = {}
|
||||
if len(sys.argv) > 1:
|
||||
paramsJson = open(sys.argv[1], 'r').read()
|
||||
else:
|
||||
paramsJson = sys.stdin.read()
|
||||
paramsJson = json.loads(paramsJson)
|
||||
|
||||
converter = Converter(paramsJson)
|
||||
converter.convert(paramsJson['output_file'])
|
||||
620
frontend/node_modules/@react-jvectormap/lib/converter/processor.py
generated
vendored
620
frontend/node_modules/@react-jvectormap/lib/converter/processor.py
generated
vendored
@@ -1,620 +0,0 @@
|
||||
import sys
|
||||
import json
|
||||
import csv
|
||||
import shapely.wkb
|
||||
import shapely.geometry
|
||||
import shapely.ops
|
||||
import codecs
|
||||
import os
|
||||
import inspect
|
||||
import copy
|
||||
from osgeo import ogr
|
||||
from osgeo import osr
|
||||
from booleano.parser import Grammar, EvaluableParseManager, SymbolTable, Bind
|
||||
from booleano.operations import Variable
|
||||
|
||||
|
||||
class Map:
|
||||
def __init__(self, name, language):
|
||||
self.paths = {}
|
||||
self.name = name
|
||||
self.language = language
|
||||
self.width = 0
|
||||
self.height = 0
|
||||
self.bbox = []
|
||||
|
||||
def addPath(self, path, code, name):
|
||||
self.paths[code] = {"path": path, "name": name}
|
||||
|
||||
def getJSCode(self):
|
||||
map = {"paths": self.paths, "width": self.width, "height": self.height, "insets": self.insets, "projection": self.projection}
|
||||
return "jQuery.fn.vectorMap('addMap', '"+self.name+"_"+self.projection['type']+"',"+json.dumps(map)+');'
|
||||
|
||||
|
||||
class Converter:
|
||||
def __init__(self, config):
|
||||
args = {
|
||||
'buffer_distance': -0.4,
|
||||
'simplify_tolerance': 0.2,
|
||||
'longitude0': 0,
|
||||
'projection': 'mill',
|
||||
'name': 'world',
|
||||
'width': 900,
|
||||
'left': 0,
|
||||
'top': 0,
|
||||
'language': 'en',
|
||||
'precision': 2,
|
||||
'insets': []
|
||||
}
|
||||
args.update(config)
|
||||
|
||||
self.config = args
|
||||
|
||||
self.map = Map(args['name'], args.get('language'))
|
||||
|
||||
if args.get('sources'):
|
||||
self.sources = args['sources']
|
||||
else:
|
||||
self.sources = [{
|
||||
'input_file': args.get('input_file'),
|
||||
'where': args.get('where'),
|
||||
'name_field': args.get('name_field'),
|
||||
'code_field': args.get('code_field'),
|
||||
'input_file_encoding': args.get('input_file_encoding')
|
||||
}]
|
||||
|
||||
default_source = {
|
||||
'where': '',
|
||||
'name_field': 0,
|
||||
'code_field': 1,
|
||||
'input_file_encoding': 'iso-8859-1'
|
||||
}
|
||||
|
||||
for index in range(len(self.sources)):
|
||||
for key in default_source:
|
||||
if self.sources[index].get(key) is None:
|
||||
self.sources[index][key] = default_source[key]
|
||||
|
||||
self.features = {}
|
||||
self.width = args.get('width')
|
||||
self.left = args.get('left')
|
||||
self.top = args.get('top')
|
||||
self.minimal_area = args.get('minimal_area')
|
||||
self.longitude0 = float(args.get('longitude0'))
|
||||
self.projection = args.get('projection')
|
||||
self.precision = args.get('precision')
|
||||
self.buffer_distance = args.get('buffer_distance')
|
||||
self.simplify_tolerance = args.get('simplify_tolerance')
|
||||
self.for_each = args.get('for_each')
|
||||
self.emulate_longitude0 = args.get('emulate_longitude0')
|
||||
if args.get('emulate_longitude0') is None and (self.projection == 'merc' or self.projection =='mill') and self.longitude0 != 0:
|
||||
self.emulate_longitude0 = True
|
||||
|
||||
if args.get('viewport'):
|
||||
self.viewport = map(lambda s: float(s), args.get('viewport').split(' '))
|
||||
else:
|
||||
self.viewport = False
|
||||
|
||||
# spatial reference to convert to
|
||||
self.spatialRef = osr.SpatialReference()
|
||||
projString = '+proj='+str(self.projection)+' +a=6381372 +b=6381372 +lat_0=0'
|
||||
if not self.emulate_longitude0:
|
||||
projString += ' +lon_0='+str(self.longitude0)
|
||||
self.spatialRef.ImportFromProj4(projString)
|
||||
|
||||
# handle map insets
|
||||
if args.get('insets'):
|
||||
self.insets = args.get('insets')
|
||||
else:
|
||||
self.insets = []
|
||||
|
||||
|
||||
def convert(self, data_source, output_file):
|
||||
codes = map(lambda g: g.properties[self.config['code_field']], data_source.geometries)
|
||||
main_codes = copy.copy(codes)
|
||||
self.map.insets = []
|
||||
envelope = []
|
||||
for inset in self.insets:
|
||||
insetBbox = self.renderMapInset(data_source, inset['codes'], inset['left'], inset['top'], inset['width'])
|
||||
insetHeight = (insetBbox[3] - insetBbox[1]) * (inset['width'] / (insetBbox[2] - insetBbox[0]))
|
||||
self.map.insets.append({
|
||||
"bbox": [{"x": insetBbox[0], "y": -insetBbox[3]}, {"x": insetBbox[2], "y": -insetBbox[1]}],
|
||||
"left": inset['left'],
|
||||
"top": inset['top'],
|
||||
"width": inset['width'],
|
||||
"height": insetHeight
|
||||
})
|
||||
envelope.append(
|
||||
shapely.geometry.box(
|
||||
inset['left'], inset['top'], inset['left'] + inset['width'], inset['top'] + insetHeight
|
||||
)
|
||||
)
|
||||
for code in inset['codes']:
|
||||
main_codes.remove(code)
|
||||
|
||||
insetBbox = self.renderMapInset(data_source, main_codes, self.left, self.top, self.width)
|
||||
insetHeight = (insetBbox[3] - insetBbox[1]) * (self.width / (insetBbox[2] - insetBbox[0]))
|
||||
envelope.append( shapely.geometry.box( self.left, self.top, self.left + self.width, self.top + insetHeight ) )
|
||||
mapBbox = shapely.geometry.MultiPolygon( envelope ).bounds
|
||||
|
||||
self.map.width = mapBbox[2] + mapBbox[0]
|
||||
self.map.height = mapBbox[3] + mapBbox[1]
|
||||
self.map.insets.append({
|
||||
"bbox": [{"x": insetBbox[0], "y": -insetBbox[3]}, {"x": insetBbox[2], "y": -insetBbox[1]}],
|
||||
"left": self.left,
|
||||
"top": self.top,
|
||||
"width": self.width,
|
||||
"height": insetHeight
|
||||
})
|
||||
self.map.projection = {"type": self.projection, "centralMeridian": float(self.longitude0)}
|
||||
|
||||
open(output_file, 'w').write( self.map.getJSCode() )
|
||||
|
||||
if self.for_each is not None:
|
||||
for code in codes:
|
||||
childConfig = copy.deepcopy(self.for_each)
|
||||
for param in ('input_file', 'output_file', 'where', 'name'):
|
||||
childConfig[param] = childConfig[param].replace('{{code}}', code.lower())
|
||||
converter = Converter(childConfig)
|
||||
converter.convert(childConfig['output_file'])
|
||||
|
||||
def renderMapInset(self, data_source, codes, left, top, width):
|
||||
envelope = []
|
||||
geometries = filter(lambda g: g.properties[self.config['code_field']] in codes, data_source.geometries)
|
||||
for geometry in geometries:
|
||||
if isinstance(geometry.geom.envelope, shapely.geometry.Polygon):
|
||||
envelope.append( geometry.geom.envelope )
|
||||
|
||||
bbox = shapely.geometry.MultiPolygon( envelope ).bounds
|
||||
|
||||
scale = (bbox[2]-bbox[0]) / width
|
||||
|
||||
# generate SVG paths
|
||||
for geometry in geometries:
|
||||
geom = geometry.geom
|
||||
if self.buffer_distance:
|
||||
geom = geom.buffer(self.buffer_distance*scale, 1)
|
||||
if geom.is_empty:
|
||||
continue
|
||||
if self.simplify_tolerance:
|
||||
geom = geom.simplify(self.simplify_tolerance*scale, preserve_topology=True)
|
||||
if isinstance(geom, shapely.geometry.multipolygon.MultiPolygon):
|
||||
polygons = geom.geoms
|
||||
else:
|
||||
polygons = [geom]
|
||||
path = ''
|
||||
for polygon in polygons:
|
||||
rings = []
|
||||
rings.append(polygon.exterior)
|
||||
rings.extend(polygon.interiors)
|
||||
for ring in rings:
|
||||
for pointIndex in range( len(ring.coords) ):
|
||||
point = ring.coords[pointIndex]
|
||||
if pointIndex == 0:
|
||||
path += 'M'+str( round( (point[0]-bbox[0]) / scale + left, self.precision) )
|
||||
path += ','+str( round( (bbox[3] - point[1]) / scale + top, self.precision) )
|
||||
else:
|
||||
path += 'l' + str( round(point[0]/scale - ring.coords[pointIndex-1][0]/scale, self.precision) )
|
||||
path += ',' + str( round(ring.coords[pointIndex-1][1]/scale - point[1]/scale, self.precision) )
|
||||
path += 'Z'
|
||||
self.map.addPath(path, geometry.properties[self.config['code_field']], geometry.properties[self.config['name_field']])
|
||||
return bbox
|
||||
|
||||
|
||||
class Geometry:
|
||||
def __init__(self, geometry, properties):
|
||||
self.geom = geometry
|
||||
self.properties = properties
|
||||
|
||||
|
||||
class GeometryProperty(Variable):
|
||||
operations = set(["equality", "membership"])
|
||||
|
||||
def __init__(self, name):
|
||||
self.name = name
|
||||
|
||||
def equals(self, value, context):
|
||||
return context[self.name] == value
|
||||
|
||||
def belongs_to(self, value, context):
|
||||
return value in context[self.name]
|
||||
|
||||
def is_subset(self, value, context):
|
||||
return set(value).issubset(set(context[self.name]))
|
||||
|
||||
def to_python(self, value):
|
||||
return unicode(value[self.name])
|
||||
|
||||
|
||||
class DataSource:
|
||||
def __init__(self, config):
|
||||
default_config = {
|
||||
"projection": "merc",
|
||||
"longitude0": 0
|
||||
}
|
||||
default_config.update(config)
|
||||
self.config = default_config
|
||||
|
||||
self.spatialRef = osr.SpatialReference()
|
||||
projString = '+proj='+str(self.config['projection'])+' +a=6381372 +b=6381372 +lat_0=0'
|
||||
#if 'emulate_longitude0' in self.config and not self.config['emulate_longitude0']:
|
||||
projString += ' +lon_0='+str(self.config['longitude0'])
|
||||
self.spatialRef.ImportFromProj4(projString)
|
||||
|
||||
def load_data(self):
|
||||
filename = self.config['file_name'];
|
||||
if not os.path.isfile(filename):
|
||||
raise IOError('Could not find file \'' + str(filename) + '\'')
|
||||
self.source = ogr.Open(filename, update = 0)
|
||||
if self.source is None:
|
||||
raise IOError('Could not open file ' + str(filename))
|
||||
self.layer = self.source.GetLayer(0)
|
||||
if 'filter' in self.config and self.config['filter'] is not None:
|
||||
self.layer.SetAttributeFilter( self.config['filter'].encode('ascii') )
|
||||
self.layer_dfn = self.layer.GetLayerDefn()
|
||||
|
||||
self.fields = []
|
||||
field_count = self.layer_dfn.GetFieldCount()
|
||||
for field_index in range(field_count):
|
||||
field = self.layer_dfn.GetFieldDefn( field_index )
|
||||
self.fields.append({
|
||||
'name': field.GetName(),
|
||||
'type': field.GetType(),
|
||||
'width': field.GetWidth(),
|
||||
'precision': field.GetPrecision()
|
||||
})
|
||||
|
||||
self.geometries = []
|
||||
|
||||
for feature in self.layer:
|
||||
geometry = feature.GetGeometryRef()
|
||||
geometry.TransformTo( self.spatialRef )
|
||||
geometry = shapely.wkb.loads( geometry.ExportToWkb() )
|
||||
if not geometry.is_valid:
|
||||
geometry = geometry.buffer(0)
|
||||
properties = {}
|
||||
for field in self.fields:
|
||||
properties[field['name']] = feature.GetFieldAsString(field['name']).decode('utf-8')
|
||||
self.geometries.append( Geometry(geometry, properties) )
|
||||
|
||||
self.layer.ResetReading()
|
||||
|
||||
self.create_grammar()
|
||||
|
||||
def create_grammar(self):
|
||||
root_table = SymbolTable("root",
|
||||
map( lambda f: Bind(f['name'], GeometryProperty(f['name'])), self.fields )
|
||||
)
|
||||
|
||||
tokens = {
|
||||
'not': 'not',
|
||||
'eq': '==',
|
||||
'ne': '!=',
|
||||
'belongs_to': 'in',
|
||||
'is_subset': 'are included in',
|
||||
'or': "or",
|
||||
'and': 'and'
|
||||
}
|
||||
grammar = Grammar(**tokens)
|
||||
self.parse_manager = EvaluableParseManager(root_table, grammar)
|
||||
|
||||
def output(self, output):
|
||||
if output.get('format') == 'jvectormap':
|
||||
self.output_jvm(output)
|
||||
else:
|
||||
self.output_ogr(output)
|
||||
|
||||
def output_ogr(self, output):
|
||||
driver = ogr.GetDriverByName( 'ESRI Shapefile' )
|
||||
if os.path.exists( output['file_name'] ):
|
||||
driver.DeleteDataSource( output['file_name'] )
|
||||
source = driver.CreateDataSource( output['file_name'] )
|
||||
layer = source.CreateLayer( self.layer_dfn.GetName(),
|
||||
geom_type = self.layer_dfn.GetGeomType(),
|
||||
srs = self.layer.GetSpatialRef() )
|
||||
|
||||
for field in self.fields:
|
||||
fd = ogr.FieldDefn( str(field['name']), field['type'] )
|
||||
fd.SetWidth( field['width'] )
|
||||
if 'precision' in field:
|
||||
fd.SetPrecision( field['precision'] )
|
||||
layer.CreateField( fd )
|
||||
|
||||
for geometry in self.geometries:
|
||||
if geometry.geom is not None:
|
||||
feature = ogr.Feature( feature_def = layer.GetLayerDefn() )
|
||||
for index, field in enumerate(self.fields):
|
||||
if field['name'] in geometry.properties:
|
||||
feature.SetField( index, geometry.properties[field['name']].encode('utf-8') )
|
||||
else:
|
||||
feature.SetField( index, '' )
|
||||
feature.SetGeometryDirectly(
|
||||
ogr.CreateGeometryFromWkb(
|
||||
shapely.wkb.dumps(
|
||||
geometry.geom
|
||||
)
|
||||
)
|
||||
)
|
||||
layer.CreateFeature( feature )
|
||||
feature.Destroy()
|
||||
|
||||
source.Destroy()
|
||||
|
||||
def output_jvm(self, output):
|
||||
params = copy.deepcopy(output['params'])
|
||||
params.update({
|
||||
"projection": self.config["projection"],
|
||||
"longitude0": self.config["longitude0"]
|
||||
})
|
||||
converter = Converter(params)
|
||||
if not('file_name' in output):
|
||||
raise ValueError('Missing \'file_name\' in the \'write_data block\' of the config file.')
|
||||
converter.convert(self, output['file_name'])
|
||||
|
||||
class PolygonSimplifier:
|
||||
def __init__(self, geometries):
|
||||
self.format = '%.8f %.8f'
|
||||
self.tolerance = 0.05
|
||||
self.geometries = geometries
|
||||
|
||||
connections = {}
|
||||
for geom in geometries:
|
||||
polygons = []
|
||||
|
||||
if isinstance(geom, shapely.geometry.Polygon):
|
||||
polygons.append(geom)
|
||||
else:
|
||||
for polygon in geom:
|
||||
polygons.append(polygon)
|
||||
|
||||
for polygon in polygons:
|
||||
if polygon.area > 0:
|
||||
lines = []
|
||||
lines.append(polygon.exterior)
|
||||
for line in polygon.interiors:
|
||||
lines.append(line)
|
||||
|
||||
for line in lines:
|
||||
for i in range(len(line.coords)-1):
|
||||
indexFrom = i
|
||||
indexTo = i+1
|
||||
pointFrom = self.format % line.coords[indexFrom]
|
||||
pointTo = self.format % line.coords[indexTo]
|
||||
if pointFrom == pointTo:
|
||||
continue
|
||||
if not (pointFrom in connections):
|
||||
connections[pointFrom] = {}
|
||||
connections[pointFrom][pointTo] = 1
|
||||
if not (pointTo in connections):
|
||||
connections[pointTo] = {}
|
||||
connections[pointTo][pointFrom] = 1
|
||||
self.connections = connections
|
||||
self.simplifiedLines = {}
|
||||
self.pivotPoints = {}
|
||||
|
||||
def simplifyRing(self, ring):
|
||||
coords = list(ring.coords)[0:-1]
|
||||
simpleCoords = []
|
||||
|
||||
isPivot = False
|
||||
pointIndex = 0
|
||||
while not isPivot and pointIndex < len(coords):
|
||||
pointStr = self.format % coords[pointIndex]
|
||||
pointIndex += 1
|
||||
isPivot = ((len(self.connections[pointStr]) > 2) or (pointStr in self.pivotPoints))
|
||||
pointIndex = pointIndex - 1
|
||||
|
||||
if not isPivot:
|
||||
simpleRing = shapely.geometry.LineString(coords).simplify(self.tolerance)
|
||||
if len(simpleRing.coords) <= 2:
|
||||
return None
|
||||
else:
|
||||
self.pivotPoints[self.format % coords[0]] = True
|
||||
self.pivotPoints[self.format % coords[-1]] = True
|
||||
simpleLineKey = self.format % coords[0]+':'+self.format % coords[1]+':'+self.format % coords[-1]
|
||||
self.simplifiedLines[simpleLineKey] = simpleRing.coords
|
||||
return simpleRing
|
||||
else:
|
||||
points = coords[pointIndex:len(coords)]
|
||||
points.extend(coords[0:pointIndex+1])
|
||||
iFrom = 0
|
||||
for i in range(1, len(points)):
|
||||
pointStr = self.format % points[i]
|
||||
if ((len(self.connections[pointStr]) > 2) or (pointStr in self.pivotPoints)):
|
||||
line = points[iFrom:i+1]
|
||||
lineKey = self.format % line[-1]+':'+self.format % line[-2]+':'+self.format % line[0]
|
||||
if lineKey in self.simplifiedLines:
|
||||
simpleLine = self.simplifiedLines[lineKey]
|
||||
simpleLine = list(reversed(simpleLine))
|
||||
else:
|
||||
simpleLine = shapely.geometry.LineString(line).simplify(self.tolerance).coords
|
||||
lineKey = self.format % line[0]+':'+self.format % line[1]+':'+self.format % line[-1]
|
||||
self.simplifiedLines[lineKey] = simpleLine
|
||||
simpleCoords.extend( simpleLine[0:-1] )
|
||||
iFrom = i
|
||||
if len(simpleCoords) <= 2:
|
||||
return None
|
||||
else:
|
||||
return shapely.geometry.LineString(simpleCoords)
|
||||
|
||||
def simplifyPolygon(self, polygon):
|
||||
simpleExtRing = self.simplifyRing(polygon.exterior)
|
||||
if simpleExtRing is None:
|
||||
return None
|
||||
simpleIntRings = []
|
||||
for ring in polygon.interiors:
|
||||
simpleIntRing = self.simplifyRing(ring)
|
||||
if simpleIntRing is not None:
|
||||
simpleIntRings.append(simpleIntRing)
|
||||
return shapely.geometry.Polygon(simpleExtRing, simpleIntRings)
|
||||
|
||||
def simplify(self):
|
||||
results = []
|
||||
for geom in self.geometries:
|
||||
polygons = []
|
||||
simplePolygons = []
|
||||
|
||||
if isinstance(geom, shapely.geometry.Polygon):
|
||||
polygons.append(geom)
|
||||
else:
|
||||
for polygon in geom:
|
||||
polygons.append(polygon)
|
||||
|
||||
for polygon in polygons:
|
||||
simplePolygon = self.simplifyPolygon(polygon)
|
||||
if not (simplePolygon is None or simplePolygon._geom is None):
|
||||
simplePolygons.append(simplePolygon)
|
||||
|
||||
if len(simplePolygons) > 0:
|
||||
results.append(shapely.geometry.MultiPolygon(simplePolygons))
|
||||
else:
|
||||
results.append(None)
|
||||
return results
|
||||
|
||||
|
||||
class Processor:
|
||||
def __init__(self, config):
|
||||
self.config = config
|
||||
|
||||
def process(self):
|
||||
self.data_sources = {}
|
||||
for action in self.config:
|
||||
data_source_key = action.get('data_source', '.')
|
||||
getattr(self, action['name'])( action, self.data_sources.get(data_source_key) )
|
||||
|
||||
def read_data(self, config, data_source):
|
||||
data_source_key = config.get('data_source', '.')
|
||||
self.data_sources[data_source_key] = DataSource( config )
|
||||
self.data_sources[data_source_key].load_data()
|
||||
|
||||
def write_data(self, config, data_source):
|
||||
data_source.output( config )
|
||||
|
||||
def copy_field(self, config, data_source):
|
||||
to_field = None
|
||||
for f in data_source.fields:
|
||||
if f['name'] == config['from']:
|
||||
to_field = copy.copy(f)
|
||||
to_field['name'] = config['to']
|
||||
|
||||
if to_field is not None:
|
||||
data_source.fields.append( to_field )
|
||||
for geometry in data_source.geometries:
|
||||
geometry.properties[config['to']] = geometry.properties[config['from']]
|
||||
|
||||
def union(self, config, data_source):
|
||||
groups = {}
|
||||
geometries = []
|
||||
for geometry in data_source.geometries:
|
||||
if geometry.properties[config['by']] in groups:
|
||||
groups[geometry.properties[config['by']]]['geoms'].append(geometry.geom)
|
||||
else:
|
||||
groups[geometry.properties[config['by']]] = {
|
||||
'geoms': [geometry.geom],
|
||||
'properties': geometry.properties
|
||||
}
|
||||
for key in groups:
|
||||
geometries.append( Geometry(shapely.ops.cascaded_union( groups[key]['geoms'] ), groups[key]['properties']) )
|
||||
data_source.geometries = geometries
|
||||
|
||||
def merge(self, config, data_source):
|
||||
new_geometries = []
|
||||
for rule in config['rules']:
|
||||
expression = data_source.parse_manager.parse( rule['where'] )
|
||||
geometries = filter(lambda g: expression(g.properties), data_source.geometries)
|
||||
geometries = map(lambda g: g.geom, geometries)
|
||||
new_geometries.append( Geometry(shapely.ops.cascaded_union( geometries ), rule['fields']) )
|
||||
data_source.fields = config['fields']
|
||||
data_source.geometries = new_geometries
|
||||
|
||||
def join_data(self, config, data_source):
|
||||
field_names = [f['name'] for f in config['fields']]
|
||||
if 'data' in config:
|
||||
data_col = config['data']
|
||||
else:
|
||||
data_file = open(config['file_name'], 'rb')
|
||||
data_col = csv.reader(data_file, delimiter='\t', quotechar='"')
|
||||
data = {}
|
||||
for row in data_col:
|
||||
row_dict = dict(zip(field_names, row))
|
||||
data[row_dict.pop(config['on'])] = row_dict
|
||||
for geometry in data_source.geometries:
|
||||
if geometry.properties[config['on']] in data:
|
||||
geometry.properties.update( data[geometry.properties[config['on']]] )
|
||||
field_names = map(lambda f: f['name'], data_source.fields)
|
||||
data_source.fields = data_source.fields + filter(lambda f: f['name'] not in field_names, config['fields'])
|
||||
|
||||
def remove(self, config, data_source):
|
||||
expression = data_source.parse_manager.parse( config['where'] )
|
||||
data_source.geometries = filter(lambda g: not expression(g.properties), data_source.geometries)
|
||||
|
||||
def remove_fields(self, config, data_source):
|
||||
data_source.fields = filter(lambda f: f.name not in config['fields'], data_source.fields)
|
||||
|
||||
def remove_other_fields(self, config, data_source):
|
||||
data_source.fields = filter(lambda f: f['name'] in config['fields'], data_source.fields)
|
||||
|
||||
def new_data_source(self, config, data_source):
|
||||
data_source = DataSource( config.get('config') )
|
||||
data_source.geometries = []
|
||||
data_source.fields = []
|
||||
for source_name, source_config in config['from'].iteritems():
|
||||
for target_field_name, source_field_name in source_config.iteritems():
|
||||
field = filter(lambda f: f['name'] == source_field_name, self.data_sources[source_name].fields)[0]
|
||||
field['name'] = target_field_name
|
||||
for geometry in self.data_sources[source_name].geometries:
|
||||
geometry.properties[target_field_name] = geometry.properties[source_field_name]
|
||||
del geometry.properties[source_field_name]
|
||||
data_source.fields += field
|
||||
data_source.geometries += self.data_sources[source_name].geometries
|
||||
self.data_sources[config.get('data_source')] = data_source
|
||||
|
||||
def buffer(self, config, data_source):
|
||||
for geometry in data_source.geometries:
|
||||
geometry.geom = geometry.geom.buffer(config['distance'], config['resolution'])
|
||||
|
||||
def border_buffer(self, config, data_source):
|
||||
d = config['distance']
|
||||
borders = []
|
||||
for geometry1 in data_source.geometries:
|
||||
for geometry2 in data_source.geometries:
|
||||
if geometry1.geom != geometry2.geom and geometry1.geom.buffer(d, 0).intersects(geometry2.geom.buffer(d, 0)):
|
||||
borders.append(geometry1.geom.buffer(d, 0).intersection(geometry2.geom.buffer(d, 0)))
|
||||
borders = shapely.ops.cascaded_union( borders )
|
||||
for geometry in data_source.geometries:
|
||||
geometry.geom = geometry.geom.difference(borders)
|
||||
|
||||
def simplify_adjancent_polygons(self, config, data_source):
|
||||
simple_geometries = PolygonSimplifier( map( lambda g: g.geom, data_source.geometries ) ).simplify()
|
||||
for i in range(len(data_source.geometries)):
|
||||
data_source.geometries[i].geom = simple_geometries[i]
|
||||
data_source.geometries = filter(lambda g: g.geom is not None, data_source.geometries)
|
||||
|
||||
def intersect_rect(self, config, data_source):
|
||||
transform = osr.CoordinateTransformation( data_source.layer.GetSpatialRef(), data_source.spatialRef )
|
||||
point1 = transform.TransformPoint(config['rect'][0], config['rect'][1])
|
||||
point2 = transform.TransformPoint(config['rect'][2], config['rect'][3])
|
||||
rect = shapely.geometry.box(point1[0], point1[1], point2[0], point2[1])
|
||||
for geometry in data_source.geometries:
|
||||
geometry.geom = geometry.geom.intersection(rect)
|
||||
|
||||
def remove_small_polygons(self, config, data_source):
|
||||
for geometry in data_source.geometries:
|
||||
if isinstance(geometry.geom, shapely.geometry.multipolygon.MultiPolygon):
|
||||
polygons = geometry.geom.geoms
|
||||
else:
|
||||
polygons = [geometry.geom]
|
||||
polygons = filter(lambda p: p.area > config['minimal_area'], polygons)
|
||||
if len(polygons) > 0:
|
||||
geometry.geom = shapely.geometry.multipolygon.MultiPolygon(polygons)
|
||||
|
||||
|
||||
args = {}
|
||||
if len(sys.argv) > 1:
|
||||
paramsJson = open(sys.argv[1], 'r').read()
|
||||
else:
|
||||
paramsJson = sys.stdin.read()
|
||||
paramsJson = json.loads(paramsJson)
|
||||
|
||||
processor = Processor(paramsJson)
|
||||
processor.process()
|
||||
205
frontend/node_modules/@react-jvectormap/lib/converter/simplifier.py
generated
vendored
205
frontend/node_modules/@react-jvectormap/lib/converter/simplifier.py
generated
vendored
@@ -1,205 +0,0 @@
|
||||
import argparse
|
||||
import sys
|
||||
import os
|
||||
from osgeo import ogr
|
||||
from osgeo import osr
|
||||
import anyjson
|
||||
import shapely.geometry
|
||||
import shapely.ops
|
||||
import codecs
|
||||
import time
|
||||
|
||||
|
||||
format = '%.8f %.8f'
|
||||
tolerance = 0.01
|
||||
infile = '/Users/kirilllebedev/Maps/50m-admin-0-countries/ne_50m_admin_0_countries.shp'
|
||||
outfile = 'map.shp'
|
||||
|
||||
# Open the datasource to operate on.
|
||||
in_ds = ogr.Open( infile, update = 0 )
|
||||
in_layer = in_ds.GetLayer( 0 )
|
||||
in_defn = in_layer.GetLayerDefn()
|
||||
|
||||
|
||||
# Create output file with similar information.
|
||||
shp_driver = ogr.GetDriverByName( 'ESRI Shapefile' )
|
||||
if os.path.exists('map.shp'):
|
||||
shp_driver.DeleteDataSource( outfile )
|
||||
shp_ds = shp_driver.CreateDataSource( outfile )
|
||||
shp_layer = shp_ds.CreateLayer( in_defn.GetName(),
|
||||
geom_type = in_defn.GetGeomType(),
|
||||
srs = in_layer.GetSpatialRef() )
|
||||
|
||||
in_field_count = in_defn.GetFieldCount()
|
||||
for fld_index in range(in_field_count):
|
||||
src_fd = in_defn.GetFieldDefn( fld_index )
|
||||
fd = ogr.FieldDefn( src_fd.GetName(), src_fd.GetType() )
|
||||
fd.SetWidth( src_fd.GetWidth() )
|
||||
fd.SetPrecision( src_fd.GetPrecision() )
|
||||
shp_layer.CreateField( fd )
|
||||
|
||||
|
||||
# Load geometries
|
||||
geometries = []
|
||||
for feature in in_layer:
|
||||
geometry = feature.GetGeometryRef()
|
||||
geometryType = geometry.GetGeometryType()
|
||||
|
||||
if geometryType == ogr.wkbPolygon or geometryType == ogr.wkbMultiPolygon:
|
||||
shapelyGeometry = shapely.wkb.loads( geometry.ExportToWkb() )
|
||||
#if not shapelyGeometry.is_valid:
|
||||
#buffer to fix selfcrosses
|
||||
#shapelyGeometry = shapelyGeometry.buffer(0)
|
||||
if shapelyGeometry:
|
||||
geometries.append(shapelyGeometry)
|
||||
in_layer.ResetReading()
|
||||
|
||||
start = int(round(time.time() * 1000))
|
||||
# Simplification
|
||||
points = []
|
||||
connections = {}
|
||||
counter = 0
|
||||
for geom in geometries:
|
||||
counter += 1
|
||||
polygons = []
|
||||
|
||||
if isinstance(geom, shapely.geometry.Polygon):
|
||||
polygons.append(geom)
|
||||
else:
|
||||
for polygon in geom:
|
||||
polygons.append(polygon)
|
||||
|
||||
for polygon in polygons:
|
||||
if polygon.area > 0:
|
||||
lines = []
|
||||
lines.append(polygon.exterior)
|
||||
for line in polygon.interiors:
|
||||
lines.append(line)
|
||||
|
||||
for line in lines:
|
||||
for i in range(len(line.coords)-1):
|
||||
indexFrom = i
|
||||
indexTo = i+1
|
||||
pointFrom = format % line.coords[indexFrom]
|
||||
pointTo = format % line.coords[indexTo]
|
||||
if pointFrom == pointTo:
|
||||
continue
|
||||
if not (pointFrom in connections):
|
||||
connections[pointFrom] = {}
|
||||
connections[pointFrom][pointTo] = 1
|
||||
if not (pointTo in connections):
|
||||
connections[pointTo] = {}
|
||||
connections[pointTo][pointFrom] = 1
|
||||
print int(round(time.time() * 1000)) - start
|
||||
|
||||
simplifiedLines = {}
|
||||
pivotPoints = {}
|
||||
def simplifyRing(ring):
|
||||
coords = list(ring.coords)[0:-1]
|
||||
simpleCoords = []
|
||||
|
||||
isPivot = False
|
||||
pointIndex = 0
|
||||
while not isPivot and pointIndex < len(coords):
|
||||
pointStr = format % coords[pointIndex]
|
||||
pointIndex += 1
|
||||
isPivot = ((len(connections[pointStr]) > 2) or (pointStr in pivotPoints))
|
||||
pointIndex = pointIndex - 1
|
||||
|
||||
if not isPivot:
|
||||
simpleRing = shapely.geometry.LineString(coords).simplify(tolerance)
|
||||
if len(simpleRing.coords) <= 2:
|
||||
return None
|
||||
else:
|
||||
pivotPoints[format % coords[0]] = True
|
||||
pivotPoints[format % coords[-1]] = True
|
||||
simpleLineKey = format % coords[0]+':'+format % coords[1]+':'+format % coords[-1]
|
||||
simplifiedLines[simpleLineKey] = simpleRing.coords
|
||||
return simpleRing
|
||||
else:
|
||||
points = coords[pointIndex:len(coords)]
|
||||
points.extend(coords[0:pointIndex+1])
|
||||
iFrom = 0
|
||||
for i in range(1, len(points)):
|
||||
pointStr = format % points[i]
|
||||
if ((len(connections[pointStr]) > 2) or (pointStr in pivotPoints)):
|
||||
line = points[iFrom:i+1]
|
||||
lineKey = format % line[-1]+':'+format % line[-2]+':'+format % line[0]
|
||||
if lineKey in simplifiedLines:
|
||||
simpleLine = simplifiedLines[lineKey]
|
||||
simpleLine = list(reversed(simpleLine))
|
||||
else:
|
||||
simpleLine = shapely.geometry.LineString(line).simplify(tolerance).coords
|
||||
lineKey = format % line[0]+':'+format % line[1]+':'+format % line[-1]
|
||||
simplifiedLines[lineKey] = simpleLine
|
||||
simpleCoords.extend( simpleLine[0:-1] )
|
||||
iFrom = i
|
||||
if len(simpleCoords) <= 2:
|
||||
return None
|
||||
else:
|
||||
return shapely.geometry.LineString(simpleCoords)
|
||||
|
||||
|
||||
def simplifyPolygon(polygon):
|
||||
simpleExtRing = simplifyRing(polygon.exterior)
|
||||
if simpleExtRing is None:
|
||||
return None
|
||||
simpleIntRings = []
|
||||
for ring in polygon.interiors:
|
||||
simpleIntRing = simplifyRing(ring)
|
||||
if simpleIntRing is not None:
|
||||
simpleIntRings.append(simpleIntRing)
|
||||
return shapely.geometry.Polygon(simpleExtRing, simpleIntRings)
|
||||
|
||||
|
||||
results = []
|
||||
for geom in geometries:
|
||||
polygons = []
|
||||
simplePolygons = []
|
||||
|
||||
if isinstance(geom, shapely.geometry.Polygon):
|
||||
polygons.append(geom)
|
||||
else:
|
||||
for polygon in geom:
|
||||
polygons.append(polygon)
|
||||
|
||||
for polygon in polygons:
|
||||
simplePolygon = simplifyPolygon(polygon)
|
||||
if not (simplePolygon is None or simplePolygon._geom is None):
|
||||
simplePolygons.append(simplePolygon)
|
||||
|
||||
if len(simplePolygons) > 0:
|
||||
results.append(shapely.geometry.MultiPolygon(simplePolygons))
|
||||
else:
|
||||
results.append(None)
|
||||
|
||||
|
||||
# Process all features in input layer.
|
||||
in_feat = in_layer.GetNextFeature()
|
||||
counter = 0
|
||||
while in_feat is not None:
|
||||
if results[counter] is not None:
|
||||
out_feat = ogr.Feature( feature_def = shp_layer.GetLayerDefn() )
|
||||
out_feat.SetFrom( in_feat )
|
||||
out_feat.SetGeometryDirectly(
|
||||
ogr.CreateGeometryFromWkb(
|
||||
shapely.wkb.dumps(
|
||||
results[counter]
|
||||
)
|
||||
)
|
||||
)
|
||||
shp_layer.CreateFeature( out_feat )
|
||||
out_feat.Destroy()
|
||||
else:
|
||||
print 'geometry is too small: '+in_feat.GetField(16)
|
||||
|
||||
in_feat.Destroy()
|
||||
in_feat = in_layer.GetNextFeature()
|
||||
counter += 1
|
||||
|
||||
|
||||
# Cleanup
|
||||
shp_ds.Destroy()
|
||||
in_ds.Destroy()
|
||||
|
||||
print int(round(time.time() * 1000)) - start
|
||||
1
frontend/node_modules/@react-jvectormap/lib/index.d.ts
generated
vendored
1
frontend/node_modules/@react-jvectormap/lib/index.d.ts
generated
vendored
@@ -1 +0,0 @@
|
||||
export declare const loadJVectorMap: ($: JQueryStatic) => JQueryStatic;
|
||||
1
frontend/node_modules/@react-jvectormap/lib/index.js
generated
vendored
1
frontend/node_modules/@react-jvectormap/lib/index.js
generated
vendored
@@ -1 +0,0 @@
|
||||
export { loadJVectorMap } from "./jquery.jvectormap.min";
|
||||
135
frontend/node_modules/@react-jvectormap/lib/jquery-jvectormap.css
generated
vendored
135
frontend/node_modules/@react-jvectormap/lib/jquery-jvectormap.css
generated
vendored
@@ -1,135 +0,0 @@
|
||||
svg {
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
.jvectormap-container {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
.jvectormap-tip {
|
||||
position: absolute;
|
||||
display: none;
|
||||
border: solid 1px #CDCDCD;
|
||||
border-radius: 3px;
|
||||
background: #292929;
|
||||
color: white;
|
||||
font-family: sans-serif, Verdana;
|
||||
font-size: smaller;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
.jvectormap-zoomin, .jvectormap-zoomout, .jvectormap-goback {
|
||||
position: absolute;
|
||||
left: 10px;
|
||||
border-radius: 3px;
|
||||
background: #292929;
|
||||
padding: 3px;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
line-height: 10px;
|
||||
text-align: center;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
.jvectormap-zoomin, .jvectormap-zoomout {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
.jvectormap-zoomin {
|
||||
top: 10px;
|
||||
}
|
||||
|
||||
.jvectormap-zoomout {
|
||||
top: 30px;
|
||||
}
|
||||
|
||||
.jvectormap-goback {
|
||||
bottom: 10px;
|
||||
z-index: 1000;
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
.jvectormap-spinner {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background: center no-repeat url(data:image/gif;base64,R0lGODlhIAAgAPMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==);
|
||||
}
|
||||
|
||||
.jvectormap-legend-title {
|
||||
font-weight: bold;
|
||||
font-size: 14px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.jvectormap-legend-cnt {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.jvectormap-legend-cnt-h {
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.jvectormap-legend-cnt-v {
|
||||
top: 0;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.jvectormap-legend {
|
||||
background: black;
|
||||
color: white;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.jvectormap-legend-cnt-h .jvectormap-legend {
|
||||
float: left;
|
||||
margin: 0 10px 10px 0;
|
||||
padding: 3px 3px 1px 3px;
|
||||
}
|
||||
|
||||
.jvectormap-legend-cnt-h .jvectormap-legend .jvectormap-legend-tick {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.jvectormap-legend-cnt-v .jvectormap-legend {
|
||||
margin: 10px 10px 0 0;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
.jvectormap-legend-cnt-h .jvectormap-legend-tick {
|
||||
width: 40px;
|
||||
}
|
||||
|
||||
.jvectormap-legend-cnt-h .jvectormap-legend-tick-sample {
|
||||
height: 15px;
|
||||
}
|
||||
|
||||
.jvectormap-legend-cnt-v .jvectormap-legend-tick-sample {
|
||||
height: 20px;
|
||||
width: 20px;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.jvectormap-legend-tick-text {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.jvectormap-legend-cnt-h .jvectormap-legend-tick-text {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.jvectormap-legend-cnt-v .jvectormap-legend-tick-text {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
line-height: 20px;
|
||||
padding-left: 3px;
|
||||
}
|
||||
66
frontend/node_modules/@react-jvectormap/lib/jquery-jvectormap.js
generated
vendored
66
frontend/node_modules/@react-jvectormap/lib/jquery-jvectormap.js
generated
vendored
@@ -1,66 +0,0 @@
|
||||
import { loadJQueryMouseWheel } from "@react-jvectormap/jquery-mousewheel";
|
||||
|
||||
/**
|
||||
* jVectorMap version 2.0.5
|
||||
*
|
||||
* Copyright 2011-2014, Kirill Lebedev
|
||||
*
|
||||
* inspired from: https://github.com/alex-pex/jvectormap/blob/master/jvectormap-next/src/jquery-jvectormap.js
|
||||
*/
|
||||
export const loadJVectorMap = ($) =>
|
||||
(function (factory) {
|
||||
factory($);
|
||||
})(function ($) {
|
||||
loadJQueryMouseWheel($);
|
||||
jvm.$ = $;
|
||||
window.jvm = jvm;
|
||||
|
||||
const apiParams = {
|
||||
set: {
|
||||
colors: 1,
|
||||
values: 1,
|
||||
backgroundColor: 1,
|
||||
scaleColors: 1,
|
||||
normalizeFunction: 1,
|
||||
focus: 1,
|
||||
},
|
||||
get: {
|
||||
selectedRegions: 1,
|
||||
selectedMarkers: 1,
|
||||
mapObject: 1,
|
||||
regionName: 1,
|
||||
},
|
||||
};
|
||||
|
||||
$.fn.multiMap = function (options) {
|
||||
options.container = this;
|
||||
new jvm.MultiMap(options);
|
||||
return this;
|
||||
};
|
||||
|
||||
$.fn.vectorMap = function (options) {
|
||||
let map, methodName;
|
||||
map = this.children(".jvectormap-container").data("mapObject");
|
||||
if (options === "remove") {
|
||||
this.remove();
|
||||
} else if (options === "addMap") {
|
||||
jvm.Map.maps[arguments[1]] = arguments[2];
|
||||
} else if (
|
||||
(options === "set" || options === "get") &&
|
||||
apiParams[options][arguments[1]]
|
||||
) {
|
||||
methodName =
|
||||
arguments[1].charAt(0).toUpperCase() + arguments[1].substr(1);
|
||||
return map[options + methodName].apply(
|
||||
map,
|
||||
Array.prototype.slice.call(arguments, 2),
|
||||
);
|
||||
} else if (!map) {
|
||||
options = options || {};
|
||||
options.container = this;
|
||||
map = new jvm.Map(options);
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
});
|
||||
34
frontend/node_modules/@react-jvectormap/lib/jvectormap.jquery.json
generated
vendored
34
frontend/node_modules/@react-jvectormap/lib/jvectormap.jquery.json
generated
vendored
@@ -1,34 +0,0 @@
|
||||
{
|
||||
"name": "jvectormap",
|
||||
"title": "jVectorMap",
|
||||
"description": "jQuery plugin for embedding vector maps with reach API and methods for data visualization to the web-pages.",
|
||||
"keywords": [
|
||||
"map",
|
||||
"vector",
|
||||
"world",
|
||||
"usa",
|
||||
"choropleth"
|
||||
],
|
||||
"version": "2.0.5",
|
||||
"author": {
|
||||
"name": "Kirill Lebedev",
|
||||
"email" : "echo.bjornd@gmail.com"
|
||||
},
|
||||
"licenses": [
|
||||
{
|
||||
"type": "AGPL",
|
||||
"url": "http://www.gnu.org/copyleft/gpl.html"
|
||||
},
|
||||
{
|
||||
"type": "Commercial",
|
||||
"url": "http://www.binpress.com/license/read/id/3085/app/2122"
|
||||
}
|
||||
],
|
||||
"bugs": "https://github.com/bjornd/jvectormap/issues",
|
||||
"homepage": "http://jvectormap.com",
|
||||
"docs": "http://jvectormap.com/documentation/",
|
||||
"download": "http://jvectormap.com/download/",
|
||||
"dependencies": {
|
||||
"jquery": ">=1.5"
|
||||
}
|
||||
}
|
||||
225
frontend/node_modules/@react-jvectormap/lib/lib/jquery-mousewheel.js
generated
vendored
225
frontend/node_modules/@react-jvectormap/lib/lib/jquery-mousewheel.js
generated
vendored
@@ -1,225 +0,0 @@
|
||||
/*! Copyright (c) 2013 Brandon Aaron (http://brandon.aaron.sh)
|
||||
* Licensed under the MIT License (LICENSE.txt).
|
||||
*
|
||||
* Version: 3.1.9
|
||||
*
|
||||
* Requires: jQuery 1.2.2+
|
||||
*/
|
||||
|
||||
(function (factory) {
|
||||
if (typeof define === "function" && define.amd) {
|
||||
// AMD. Register as an anonymous module.
|
||||
define(["jquery"], factory);
|
||||
} else if (typeof exports === "object") {
|
||||
// Node/CommonJS style for Browserify
|
||||
module.exports = factory;
|
||||
} else {
|
||||
console.log("here im dying");
|
||||
// Browser globals
|
||||
factory(jQuery);
|
||||
}
|
||||
})(function ($) {
|
||||
var toFix = ["wheel", "mousewheel", "DOMMouseScroll", "MozMousePixelScroll"],
|
||||
toBind =
|
||||
"onwheel" in document || document.documentMode >= 9
|
||||
? ["wheel"]
|
||||
: ["mousewheel", "DomMouseScroll", "MozMousePixelScroll"],
|
||||
slice = Array.prototype.slice,
|
||||
nullLowestDeltaTimeout,
|
||||
lowestDelta;
|
||||
|
||||
if ($.event.fixHooks) {
|
||||
for (var i = toFix.length; i; ) {
|
||||
$.event.fixHooks[toFix[--i]] = $.event.mouseHooks;
|
||||
}
|
||||
}
|
||||
|
||||
var special = ($.event.special.mousewheel = {
|
||||
version: "3.1.9",
|
||||
|
||||
setup: function () {
|
||||
if (this.addEventListener) {
|
||||
for (var i = toBind.length; i; ) {
|
||||
this.addEventListener(toBind[--i], handler, false);
|
||||
}
|
||||
} else {
|
||||
this.onmousewheel = handler;
|
||||
}
|
||||
// Store the line height and page height for this particular element
|
||||
$.data(this, "mousewheel-line-height", special.getLineHeight(this));
|
||||
$.data(this, "mousewheel-page-height", special.getPageHeight(this));
|
||||
},
|
||||
|
||||
teardown: function () {
|
||||
if (this.removeEventListener) {
|
||||
for (var i = toBind.length; i; ) {
|
||||
this.removeEventListener(toBind[--i], handler, false);
|
||||
}
|
||||
} else {
|
||||
this.onmousewheel = null;
|
||||
}
|
||||
},
|
||||
|
||||
getLineHeight: function (elem) {
|
||||
return parseInt(
|
||||
$(elem)
|
||||
["offsetParent" in $.fn ? "offsetParent" : "parent"]()
|
||||
.css("fontSize"),
|
||||
10,
|
||||
);
|
||||
},
|
||||
|
||||
getPageHeight: function (elem) {
|
||||
return $(elem).height();
|
||||
},
|
||||
|
||||
settings: {
|
||||
adjustOldDeltas: true,
|
||||
},
|
||||
});
|
||||
|
||||
$.fn.extend({
|
||||
mousewheel: function (fn) {
|
||||
return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
|
||||
},
|
||||
|
||||
unmousewheel: function (fn) {
|
||||
return this.unbind("mousewheel", fn);
|
||||
},
|
||||
});
|
||||
|
||||
function handler(event) {
|
||||
var orgEvent = event || window.event,
|
||||
args = slice.call(arguments, 1),
|
||||
delta = 0,
|
||||
deltaX = 0,
|
||||
deltaY = 0,
|
||||
absDelta = 0;
|
||||
event = $.event.fix(orgEvent);
|
||||
event.type = "mousewheel";
|
||||
|
||||
// Old school scrollwheel delta
|
||||
if ("detail" in orgEvent) {
|
||||
deltaY = orgEvent.detail * -1;
|
||||
}
|
||||
if ("wheelDelta" in orgEvent) {
|
||||
deltaY = orgEvent.wheelDelta;
|
||||
}
|
||||
if ("wheelDeltaY" in orgEvent) {
|
||||
deltaY = orgEvent.wheelDeltaY;
|
||||
}
|
||||
if ("wheelDeltaX" in orgEvent) {
|
||||
deltaX = orgEvent.wheelDeltaX * -1;
|
||||
}
|
||||
|
||||
// Firefox < 17 horizontal scrolling related to DOMMouseScroll event
|
||||
if ("axis" in orgEvent && orgEvent.axis === orgEvent.HORIZONTAL_AXIS) {
|
||||
deltaX = deltaY * -1;
|
||||
deltaY = 0;
|
||||
}
|
||||
|
||||
// Set delta to be deltaY or deltaX if deltaY is 0 for backwards compatabilitiy
|
||||
delta = deltaY === 0 ? deltaX : deltaY;
|
||||
|
||||
// New school wheel delta (wheel event)
|
||||
if ("deltaY" in orgEvent) {
|
||||
deltaY = orgEvent.deltaY * -1;
|
||||
delta = deltaY;
|
||||
}
|
||||
if ("deltaX" in orgEvent) {
|
||||
deltaX = orgEvent.deltaX;
|
||||
if (deltaY === 0) {
|
||||
delta = deltaX * -1;
|
||||
}
|
||||
}
|
||||
|
||||
// No change actually happened, no reason to go any further
|
||||
if (deltaY === 0 && deltaX === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Need to convert lines and pages to pixels if we aren't already in pixels
|
||||
// There are three delta modes:
|
||||
// * deltaMode 0 is by pixels, nothing to do
|
||||
// * deltaMode 1 is by lines
|
||||
// * deltaMode 2 is by pages
|
||||
if (orgEvent.deltaMode === 1) {
|
||||
var lineHeight = $.data(this, "mousewheel-line-height");
|
||||
delta *= lineHeight;
|
||||
deltaY *= lineHeight;
|
||||
deltaX *= lineHeight;
|
||||
} else if (orgEvent.deltaMode === 2) {
|
||||
var pageHeight = $.data(this, "mousewheel-page-height");
|
||||
delta *= pageHeight;
|
||||
deltaY *= pageHeight;
|
||||
deltaX *= pageHeight;
|
||||
}
|
||||
|
||||
// Store lowest absolute delta to normalize the delta values
|
||||
absDelta = Math.max(Math.abs(deltaY), Math.abs(deltaX));
|
||||
|
||||
if (!lowestDelta || absDelta < lowestDelta) {
|
||||
lowestDelta = absDelta;
|
||||
|
||||
// Adjust older deltas if necessary
|
||||
if (shouldAdjustOldDeltas(orgEvent, absDelta)) {
|
||||
lowestDelta /= 40;
|
||||
}
|
||||
}
|
||||
|
||||
// Adjust older deltas if necessary
|
||||
if (shouldAdjustOldDeltas(orgEvent, absDelta)) {
|
||||
// Divide all the things by 40!
|
||||
delta /= 40;
|
||||
deltaX /= 40;
|
||||
deltaY /= 40;
|
||||
}
|
||||
|
||||
// Get a whole, normalized value for the deltas
|
||||
delta = Math[delta >= 1 ? "floor" : "ceil"](delta / lowestDelta);
|
||||
deltaX = Math[deltaX >= 1 ? "floor" : "ceil"](deltaX / lowestDelta);
|
||||
deltaY = Math[deltaY >= 1 ? "floor" : "ceil"](deltaY / lowestDelta);
|
||||
|
||||
// Add information to the event object
|
||||
event.deltaX = deltaX;
|
||||
event.deltaY = deltaY;
|
||||
event.deltaFactor = lowestDelta;
|
||||
// Go ahead and set deltaMode to 0 since we converted to pixels
|
||||
// Although this is a little odd since we overwrite the deltaX/Y
|
||||
// properties with normalized deltas.
|
||||
event.deltaMode = 0;
|
||||
|
||||
// Add event and delta to the front of the arguments
|
||||
args.unshift(event, delta, deltaX, deltaY);
|
||||
|
||||
// Clearout lowestDelta after sometime to better
|
||||
// handle multiple device types that give different
|
||||
// a different lowestDelta
|
||||
// Ex: trackpad = 3 and mouse wheel = 120
|
||||
if (nullLowestDeltaTimeout) {
|
||||
clearTimeout(nullLowestDeltaTimeout);
|
||||
}
|
||||
nullLowestDeltaTimeout = setTimeout(nullLowestDelta, 200);
|
||||
|
||||
return ($.event.dispatch || $.event.handle).apply(this, args);
|
||||
}
|
||||
|
||||
function nullLowestDelta() {
|
||||
lowestDelta = null;
|
||||
}
|
||||
|
||||
function shouldAdjustOldDeltas(orgEvent, absDelta) {
|
||||
// If this is an older event and the delta is divisable by 120,
|
||||
// then we are assuming that the browser is treating this as an
|
||||
// older mouse wheel event and that we should divide the deltas
|
||||
// by 40 to try and get a more usable deltaFactor.
|
||||
// Side note, this actually impacts the reported scroll distance
|
||||
// in older browsers and can cause scrolling to be slower than native.
|
||||
// Turn this off by setting $.event.special.mousewheel.settings.adjustOldDeltas to false.
|
||||
return (
|
||||
special.settings.adjustOldDeltas &&
|
||||
orgEvent.type === "mousewheel" &&
|
||||
absDelta % 120 === 0
|
||||
);
|
||||
}
|
||||
});
|
||||
19
frontend/node_modules/@react-jvectormap/lib/package.json
generated
vendored
19
frontend/node_modules/@react-jvectormap/lib/package.json
generated
vendored
@@ -1,19 +0,0 @@
|
||||
{
|
||||
"name": "@react-jvectormap/lib",
|
||||
"version": "1.0.3",
|
||||
"main": "jquery-jvectormap.min.js",
|
||||
"types": "index.d.ts",
|
||||
"repository": "git@github.com:bjornd/jvectormap.git",
|
||||
"license": "(AGPL OR Commercial)",
|
||||
"author": "Kirill Lebedev <echo.bjornd@gmail.com>",
|
||||
"scripts": {
|
||||
"build": "./build.sh"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"dependencies": {
|
||||
"@react-jvectormap/jquery-mousewheel": "^1.0.2"
|
||||
},
|
||||
"gitHead": "53a4ea6b33d647fef99940b044f140109fec0727"
|
||||
}
|
||||
93
frontend/node_modules/@react-jvectormap/lib/src/abstract-canvas-element.js
generated
vendored
93
frontend/node_modules/@react-jvectormap/lib/src/abstract-canvas-element.js
generated
vendored
@@ -1,93 +0,0 @@
|
||||
/**
|
||||
* Implements abstract vector canvas.
|
||||
* @constructor
|
||||
* @param {HTMLElement} container Container to put element to.
|
||||
* @param {Number} width Width of canvas.
|
||||
* @param {Number} height Height of canvas.
|
||||
*/
|
||||
jvm.AbstractCanvasElement = function(container, width, height){
|
||||
this.container = container;
|
||||
this.setSize(width, height);
|
||||
this.rootElement = new jvm[this.classPrefix+'GroupElement']();
|
||||
this.node.appendChild( this.rootElement.node );
|
||||
this.container.appendChild(this.node);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add element to the certain group inside of the canvas.
|
||||
* @param {HTMLElement} element Element to add to canvas.
|
||||
* @param {HTMLElement} group Group to add element into or into root group if not provided.
|
||||
*/
|
||||
jvm.AbstractCanvasElement.prototype.add = function(element, group){
|
||||
group = group || this.rootElement;
|
||||
group.add(element);
|
||||
element.canvas = this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create path and add it to the canvas.
|
||||
* @param {Object} config Parameters of path to create.
|
||||
* @param {Object} style Styles of the path to create.
|
||||
* @param {HTMLElement} group Group to add path into.
|
||||
*/
|
||||
jvm.AbstractCanvasElement.prototype.addPath = function(config, style, group){
|
||||
var el = new jvm[this.classPrefix+'PathElement'](config, style);
|
||||
|
||||
this.add(el, group);
|
||||
return el;
|
||||
};
|
||||
|
||||
/**
|
||||
* Create circle and add it to the canvas.
|
||||
* @param {Object} config Parameters of path to create.
|
||||
* @param {Object} style Styles of the path to create.
|
||||
* @param {HTMLElement} group Group to add circle into.
|
||||
*/
|
||||
jvm.AbstractCanvasElement.prototype.addCircle = function(config, style, group){
|
||||
var el = new jvm[this.classPrefix+'CircleElement'](config, style);
|
||||
|
||||
this.add(el, group);
|
||||
return el;
|
||||
};
|
||||
|
||||
/**
|
||||
* Create circle and add it to the canvas.
|
||||
* @param {Object} config Parameters of path to create.
|
||||
* @param {Object} style Styles of the path to create.
|
||||
* @param {HTMLElement} group Group to add circle into.
|
||||
*/
|
||||
jvm.AbstractCanvasElement.prototype.addImage = function(config, style, group){
|
||||
var el = new jvm[this.classPrefix+'ImageElement'](config, style);
|
||||
|
||||
this.add(el, group);
|
||||
return el;
|
||||
};
|
||||
|
||||
/**
|
||||
* Create text and add it to the canvas.
|
||||
* @param {Object} config Parameters of path to create.
|
||||
* @param {Object} style Styles of the path to create.
|
||||
* @param {HTMLElement} group Group to add circle into.
|
||||
*/
|
||||
jvm.AbstractCanvasElement.prototype.addText = function(config, style, group){
|
||||
var el = new jvm[this.classPrefix+'TextElement'](config, style);
|
||||
|
||||
this.add(el, group);
|
||||
return el;
|
||||
};
|
||||
|
||||
/**
|
||||
* Add group to the another group inside of the canvas.
|
||||
* @param {HTMLElement} group Group to add circle into or root group if not provided.
|
||||
*/
|
||||
jvm.AbstractCanvasElement.prototype.addGroup = function(parentGroup){
|
||||
var el = new jvm[this.classPrefix+'GroupElement']();
|
||||
|
||||
if (parentGroup) {
|
||||
parentGroup.node.appendChild(el.node);
|
||||
} else {
|
||||
this.node.appendChild(el.node);
|
||||
}
|
||||
el.canvas = this;
|
||||
return el;
|
||||
};
|
||||
75
frontend/node_modules/@react-jvectormap/lib/src/abstract-element.js
generated
vendored
75
frontend/node_modules/@react-jvectormap/lib/src/abstract-element.js
generated
vendored
@@ -1,75 +0,0 @@
|
||||
/**
|
||||
* Basic wrapper for DOM element.
|
||||
* @constructor
|
||||
* @param {String} name Tag name of the element
|
||||
* @param {Object} config Set of parameters to initialize element with
|
||||
*/
|
||||
jvm.AbstractElement = function(name, config){
|
||||
/**
|
||||
* Underlying DOM element
|
||||
* @type {DOMElement}
|
||||
* @private
|
||||
*/
|
||||
this.node = this.createElement(name);
|
||||
|
||||
/**
|
||||
* Name of underlying element
|
||||
* @type {String}
|
||||
* @private
|
||||
*/
|
||||
this.name = name;
|
||||
|
||||
/**
|
||||
* Internal store of attributes
|
||||
* @type {Object}
|
||||
* @private
|
||||
*/
|
||||
this.properties = {};
|
||||
|
||||
if (config) {
|
||||
this.set(config);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Set attribute of the underlying DOM element.
|
||||
* @param {String} name Name of attribute
|
||||
* @param {Number|String} config Set of parameters to initialize element with
|
||||
*/
|
||||
jvm.AbstractElement.prototype.set = function(property, value){
|
||||
var key;
|
||||
|
||||
if (typeof property === 'object') {
|
||||
for (key in property) {
|
||||
this.properties[key] = property[key];
|
||||
this.applyAttr(key, property[key]);
|
||||
}
|
||||
} else {
|
||||
this.properties[property] = value;
|
||||
this.applyAttr(property, value);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns value of attribute.
|
||||
* @param {String} name Name of attribute
|
||||
*/
|
||||
jvm.AbstractElement.prototype.get = function(property){
|
||||
return this.properties[property];
|
||||
};
|
||||
|
||||
/**
|
||||
* Applies attribute value to the underlying DOM element.
|
||||
* @param {String} name Name of attribute
|
||||
* @param {Number|String} config Value of attribute to apply
|
||||
* @private
|
||||
*/
|
||||
jvm.AbstractElement.prototype.applyAttr = function(property, value){
|
||||
if (!Number.isNaN(value)) {
|
||||
this.node.setAttribute(property, value);
|
||||
}
|
||||
};
|
||||
|
||||
jvm.AbstractElement.prototype.remove = function(){
|
||||
jvm.$(this.node).remove();
|
||||
};
|
||||
62
frontend/node_modules/@react-jvectormap/lib/src/abstract-shape-element.js
generated
vendored
62
frontend/node_modules/@react-jvectormap/lib/src/abstract-shape-element.js
generated
vendored
@@ -1,62 +0,0 @@
|
||||
/**
|
||||
* Abstract shape element. Shape element represents some visual vector or raster object.
|
||||
* @constructor
|
||||
* @param {String} name Tag name of the element.
|
||||
* @param {Object} config Set of parameters to initialize element with.
|
||||
* @param {Object} style Object with styles to set on element initialization.
|
||||
*/
|
||||
jvm.AbstractShapeElement = function(name, config, style){
|
||||
this.style = style || {};
|
||||
this.style.current = this.style.current || {};
|
||||
this.isHovered = false;
|
||||
this.isSelected = false;
|
||||
this.updateStyle();
|
||||
};
|
||||
|
||||
/**
|
||||
* Set element's style.
|
||||
* @param {Object|String} property Could be string to set only one property or object to set several style properties at once.
|
||||
* @param {String} value Value to set in case only one property should be set.
|
||||
*/
|
||||
jvm.AbstractShapeElement.prototype.setStyle = function(property, value){
|
||||
var styles = {};
|
||||
|
||||
if (typeof property === 'object') {
|
||||
styles = property;
|
||||
} else {
|
||||
styles[property] = value;
|
||||
}
|
||||
jvm.$.extend(this.style.current, styles);
|
||||
this.updateStyle();
|
||||
};
|
||||
|
||||
|
||||
jvm.AbstractShapeElement.prototype.updateStyle = function(){
|
||||
var attrs = {};
|
||||
|
||||
jvm.AbstractShapeElement.mergeStyles(attrs, this.style.initial);
|
||||
jvm.AbstractShapeElement.mergeStyles(attrs, this.style.current);
|
||||
if (this.isHovered) {
|
||||
jvm.AbstractShapeElement.mergeStyles(attrs, this.style.hover);
|
||||
}
|
||||
if (this.isSelected) {
|
||||
jvm.AbstractShapeElement.mergeStyles(attrs, this.style.selected);
|
||||
if (this.isHovered) {
|
||||
jvm.AbstractShapeElement.mergeStyles(attrs, this.style.selectedHover);
|
||||
}
|
||||
}
|
||||
this.set(attrs);
|
||||
};
|
||||
|
||||
jvm.AbstractShapeElement.mergeStyles = function(styles, newStyles){
|
||||
var key;
|
||||
|
||||
newStyles = newStyles || {};
|
||||
for (key in newStyles) {
|
||||
if (newStyles[key] === null) {
|
||||
delete styles[key];
|
||||
} else {
|
||||
styles[key] = newStyles[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
44
frontend/node_modules/@react-jvectormap/lib/src/color-scale.js
generated
vendored
44
frontend/node_modules/@react-jvectormap/lib/src/color-scale.js
generated
vendored
@@ -1,44 +0,0 @@
|
||||
jvm.ColorScale = function(colors, normalizeFunction, minValue, maxValue) {
|
||||
jvm.ColorScale.parentClass.apply(this, arguments);
|
||||
}
|
||||
|
||||
jvm.inherits(jvm.ColorScale, jvm.NumericScale);
|
||||
|
||||
jvm.ColorScale.prototype.setScale = function(scale) {
|
||||
var i;
|
||||
|
||||
for (i = 0; i < scale.length; i++) {
|
||||
this.scale[i] = jvm.ColorScale.rgbToArray(scale[i]);
|
||||
}
|
||||
};
|
||||
|
||||
jvm.ColorScale.prototype.getValue = function(value) {
|
||||
return jvm.ColorScale.numToRgb(jvm.ColorScale.parentClass.prototype.getValue.call(this, value));
|
||||
};
|
||||
|
||||
jvm.ColorScale.arrayToRgb = function(ar) {
|
||||
var rgb = '#',
|
||||
d,
|
||||
i;
|
||||
|
||||
for (i = 0; i < ar.length; i++) {
|
||||
d = ar[i].toString(16);
|
||||
rgb += d.length == 1 ? '0'+d : d;
|
||||
}
|
||||
return rgb;
|
||||
};
|
||||
|
||||
jvm.ColorScale.numToRgb = function(num) {
|
||||
num = num.toString(16);
|
||||
|
||||
while (num.length < 6) {
|
||||
num = '0' + num;
|
||||
}
|
||||
|
||||
return '#'+num;
|
||||
};
|
||||
|
||||
jvm.ColorScale.rgbToArray = function(rgb) {
|
||||
rgb = rgb.substr(1);
|
||||
return [parseInt(rgb.substr(0, 2), 16), parseInt(rgb.substr(2, 2), 16), parseInt(rgb.substr(4, 2), 16)];
|
||||
};
|
||||
188
frontend/node_modules/@react-jvectormap/lib/src/data-series.js
generated
vendored
188
frontend/node_modules/@react-jvectormap/lib/src/data-series.js
generated
vendored
@@ -1,188 +0,0 @@
|
||||
/**
|
||||
* Creates data series.
|
||||
* @constructor
|
||||
* @param {Object} params Parameters to initialize series with.
|
||||
* @param {Array} params.values The data set to visualize.
|
||||
* @param {String} params.attribute Numeric, color or image attribute to use for data visualization. This could be: <code>fill</code>, <code>stroke</code>, <code>fill-opacity</code>, <code>stroke-opacity</code> for markers and regions and <code>r</code> (radius) or <code>image</code> for markers only.
|
||||
* @param {Array} params.scale Values used to map a dimension of data to a visual representation. The first value sets visualization for minimum value from the data set and the last value sets visualization for the maximum value. There also could be intermidiate values. Default value is <code>['#C8EEFF', '#0071A4']</code>.
|
||||
* @param {Function|String} params.normalizeFunction The function used to map input values to the provided scale. This parameter could be provided as function or one of the strings: <code>'linear'</code> or <code>'polynomial'</code>, while <code>'linear'</code> is used by default. The function provided takes value from the data set as an input and returns corresponding value from the scale.
|
||||
* @param {Number} params.min Minimum value of the data set. Could be calculated automatically if not provided.
|
||||
* @param {Number} params.max Maximum value of the data set. Could be calculated automatically if not provided.
|
||||
*/
|
||||
jvm.DataSeries = function (params, elements, map) {
|
||||
var scaleConstructor;
|
||||
|
||||
params = params || {};
|
||||
params.attribute = params.attribute || "fill";
|
||||
|
||||
this.elements = elements;
|
||||
this.params = params;
|
||||
this.map = map;
|
||||
|
||||
if (params.attributes) {
|
||||
this.setAttributes(params.attributes);
|
||||
}
|
||||
|
||||
if (jvm.$.isArray(params.scale)) {
|
||||
scaleConstructor =
|
||||
params.attribute === "fill" || params.attribute === "stroke"
|
||||
? jvm.ColorScale
|
||||
: jvm.NumericScale;
|
||||
this.scale = new scaleConstructor(
|
||||
params.scale,
|
||||
params.normalizeFunction,
|
||||
params.min,
|
||||
params.max,
|
||||
);
|
||||
} else if (params.scale) {
|
||||
this.scale = new jvm.OrdinalScale(params.scale);
|
||||
} else {
|
||||
this.scale = new jvm.SimpleScale(params.scale);
|
||||
}
|
||||
|
||||
this.values = params.values || {};
|
||||
this.setValues(this.values);
|
||||
|
||||
if (this.params.legend) {
|
||||
this.legend = new jvm.Legend(
|
||||
jvm.$.extend(
|
||||
{
|
||||
map: this.map,
|
||||
series: this,
|
||||
},
|
||||
this.params.legend,
|
||||
),
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
jvm.DataSeries.prototype = {
|
||||
setAttributes: function (key, attr) {
|
||||
var attrs = key,
|
||||
code;
|
||||
|
||||
if (typeof key == "string") {
|
||||
if (this.elements[key]) {
|
||||
this.elements[key].setStyle(this.params.attribute, attr);
|
||||
}
|
||||
} else {
|
||||
for (code in attrs) {
|
||||
if (this.elements[code]) {
|
||||
this.elements[code].element.setStyle(
|
||||
this.params.attribute,
|
||||
attrs[code],
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Set values for the data set.
|
||||
* @param {Object} values Object which maps codes of regions or markers to values.
|
||||
*/
|
||||
setValues: function (values) {
|
||||
var max = -Number.MAX_VALUE,
|
||||
min = Number.MAX_VALUE,
|
||||
val,
|
||||
cc,
|
||||
attrs = {};
|
||||
|
||||
if (
|
||||
!(this.scale instanceof jvm.OrdinalScale) &&
|
||||
!(this.scale instanceof jvm.SimpleScale)
|
||||
) {
|
||||
// we have a color scale as an array
|
||||
if (
|
||||
typeof this.params.min === "undefined" ||
|
||||
typeof this.params.max === "undefined"
|
||||
) {
|
||||
// min and/or max are not defined, so calculate them
|
||||
for (cc in values) {
|
||||
val = parseFloat(values[cc]);
|
||||
if (val > max) max = val;
|
||||
if (val < min) min = val;
|
||||
}
|
||||
}
|
||||
|
||||
if (typeof this.params.min === "undefined") {
|
||||
this.scale.setMin(min);
|
||||
this.params.min = min;
|
||||
} else {
|
||||
this.scale.setMin(this.params.min);
|
||||
}
|
||||
|
||||
if (typeof this.params.max === "undefined") {
|
||||
this.scale.setMax(max);
|
||||
this.params.max = max;
|
||||
} else {
|
||||
this.scale.setMax(this.params.max);
|
||||
}
|
||||
|
||||
for (cc in values) {
|
||||
if (cc != "indexOf") {
|
||||
val = parseFloat(values[cc]);
|
||||
if (!isNaN(val)) {
|
||||
attrs[cc] = this.scale.getValue(val);
|
||||
} else {
|
||||
attrs[cc] =
|
||||
this.elements[cc].element.style.initial[this.params.attribute];
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
for (cc in values) {
|
||||
if (values[cc]) {
|
||||
attrs[cc] = this.scale.getValue(values[cc]);
|
||||
} else {
|
||||
attrs[cc] =
|
||||
this.elements[cc].element.style.initial[this.params.attribute];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
this.setAttributes(attrs);
|
||||
jvm.$.extend(this.values, values);
|
||||
},
|
||||
|
||||
clear: function () {
|
||||
var key,
|
||||
attrs = {};
|
||||
|
||||
for (key in this.values) {
|
||||
if (this.elements[key]) {
|
||||
attrs[key] =
|
||||
this.elements[key].element.shape.style.initial[this.params.attribute];
|
||||
}
|
||||
}
|
||||
this.setAttributes(attrs);
|
||||
this.values = {};
|
||||
},
|
||||
|
||||
clearAndSet: function (values) {
|
||||
this.clear();
|
||||
this.setValues(values);
|
||||
},
|
||||
|
||||
/**
|
||||
* Set scale of the data series.
|
||||
* @param {Array} scale Values representing scale.
|
||||
*/
|
||||
setScale: function (scale) {
|
||||
this.scale.setScale(scale);
|
||||
if (this.values) {
|
||||
this.setValues(this.values);
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Set normalize function of the data series.
|
||||
* @param {Function|String} f Normalize function.
|
||||
*/
|
||||
setNormalizeFunction: function (f) {
|
||||
this.scale.setNormalizeFunction(f);
|
||||
if (this.values) {
|
||||
this.setValues(this.values);
|
||||
}
|
||||
},
|
||||
};
|
||||
183
frontend/node_modules/@react-jvectormap/lib/src/jvectormap.js
generated
vendored
183
frontend/node_modules/@react-jvectormap/lib/src/jvectormap.js
generated
vendored
@@ -1,183 +0,0 @@
|
||||
/**
|
||||
* @namespace jvm Holds core methods and classes used by jVectorMap.
|
||||
*/
|
||||
var jvm = {
|
||||
/**
|
||||
* Inherits child's prototype from the parent's one.
|
||||
* @param {Function} child
|
||||
* @param {Function} parent
|
||||
*/
|
||||
inherits: function (child, parent) {
|
||||
function temp() {}
|
||||
temp.prototype = parent.prototype;
|
||||
child.prototype = new temp();
|
||||
child.prototype.constructor = child;
|
||||
child.parentClass = parent;
|
||||
},
|
||||
|
||||
/**
|
||||
* Mixes in methods from the source constructor to the target one.
|
||||
* @param {Function} target
|
||||
* @param {Function} source
|
||||
*/
|
||||
mixin: function (target, source) {
|
||||
var prop;
|
||||
|
||||
for (prop in source.prototype) {
|
||||
if (source.prototype.hasOwnProperty(prop)) {
|
||||
target.prototype[prop] = source.prototype[prop];
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
min: function (values) {
|
||||
var min = Number.MAX_VALUE,
|
||||
i;
|
||||
|
||||
if (values instanceof Array) {
|
||||
for (i = 0; i < values.length; i++) {
|
||||
if (values[i] < min) {
|
||||
min = values[i];
|
||||
}
|
||||
}
|
||||
} else {
|
||||
for (i in values) {
|
||||
if (values[i] < min) {
|
||||
min = values[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
return min;
|
||||
},
|
||||
|
||||
max: function (values) {
|
||||
var max = Number.MIN_VALUE,
|
||||
i;
|
||||
|
||||
if (values instanceof Array) {
|
||||
for (i = 0; i < values.length; i++) {
|
||||
if (values[i] > max) {
|
||||
max = values[i];
|
||||
}
|
||||
}
|
||||
} else {
|
||||
for (i in values) {
|
||||
if (values[i] > max) {
|
||||
max = values[i];
|
||||
}
|
||||
}
|
||||
}
|
||||
return max;
|
||||
},
|
||||
|
||||
keys: function (object) {
|
||||
var keys = [],
|
||||
key;
|
||||
|
||||
for (key in object) {
|
||||
keys.push(key);
|
||||
}
|
||||
return keys;
|
||||
},
|
||||
|
||||
values: function (object) {
|
||||
var values = [],
|
||||
key,
|
||||
i;
|
||||
|
||||
for (i = 0; i < arguments.length; i++) {
|
||||
object = arguments[i];
|
||||
for (key in object) {
|
||||
values.push(object[key]);
|
||||
}
|
||||
}
|
||||
return values;
|
||||
},
|
||||
|
||||
whenImageLoaded: function (url) {
|
||||
var deferred = new jvm.$.Deferred(),
|
||||
img = jvm.$("<img/>");
|
||||
|
||||
img
|
||||
.on("error", function () {
|
||||
deferred.reject();
|
||||
})
|
||||
.on("load", function () {
|
||||
deferred.resolve(img);
|
||||
});
|
||||
img.attr("src", url);
|
||||
|
||||
return deferred;
|
||||
},
|
||||
|
||||
isImageUrl: function (s) {
|
||||
return /\.\w{3,4}$/.test(s);
|
||||
},
|
||||
};
|
||||
|
||||
/**
|
||||
* indexOf polyfill for IE < 9
|
||||
* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf
|
||||
*/
|
||||
if (!Array.prototype.indexOf) {
|
||||
Array.prototype.indexOf = function (searchElement, fromIndex) {
|
||||
var k;
|
||||
|
||||
// 1. Let O be the result of calling ToObject passing
|
||||
// the this value as the argument.
|
||||
if (this == null) {
|
||||
throw new TypeError('"this" is null or not defined');
|
||||
}
|
||||
|
||||
var O = Object(this);
|
||||
|
||||
// 2. Let lenValue be the result of calling the Get
|
||||
// internal method of O with the argument "length".
|
||||
// 3. Let len be ToUint32(lenValue).
|
||||
var len = O.length >>> 0;
|
||||
|
||||
// 4. If len is 0, return -1.
|
||||
if (len === 0) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
// 5. If argument fromIndex was passed let n be
|
||||
// ToInteger(fromIndex); else let n be 0.
|
||||
var n = +fromIndex || 0;
|
||||
|
||||
if (Math.abs(n) === Infinity) {
|
||||
n = 0;
|
||||
}
|
||||
|
||||
// 6. If n >= len, return -1.
|
||||
if (n >= len) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
// 7. If n >= 0, then Let k be n.
|
||||
// 8. Else, n<0, Let k be len - abs(n).
|
||||
// If k is less than 0, then let k be 0.
|
||||
k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);
|
||||
|
||||
// 9. Repeat, while k < len
|
||||
while (k < len) {
|
||||
// a. Let Pk be ToString(k).
|
||||
// This is implicit for LHS operands of the in operator
|
||||
// b. Let kPresent be the result of calling the
|
||||
// HasProperty internal method of O with argument Pk.
|
||||
// This step can be combined with c
|
||||
// c. If kPresent is true, then
|
||||
// i. Let elementK be the result of calling the Get
|
||||
// internal method of O with the argument ToString(k).
|
||||
// ii. Let same be the result of applying the
|
||||
// Strict Equality Comparison Algorithm to
|
||||
// searchElement and elementK.
|
||||
// iii. If same is true, return k.
|
||||
if (k in O && O[k] === searchElement) {
|
||||
return k;
|
||||
}
|
||||
k++;
|
||||
}
|
||||
return -1;
|
||||
};
|
||||
}
|
||||
83
frontend/node_modules/@react-jvectormap/lib/src/legend.js
generated
vendored
83
frontend/node_modules/@react-jvectormap/lib/src/legend.js
generated
vendored
@@ -1,83 +0,0 @@
|
||||
/**
|
||||
* Represents map legend.
|
||||
* @constructor
|
||||
* @param {Object} params Configuration parameters.
|
||||
* @param {String} params.cssClass Additional CSS class to apply to legend element.
|
||||
* @param {Boolean} params.vertical If <code>true</code> legend will be rendered as vertical.
|
||||
* @param {String} params.title Legend title.
|
||||
* @param {Function} params.labelRender Method to convert series values to legend labels.
|
||||
*/
|
||||
jvm.Legend = function(params) {
|
||||
this.params = params || {};
|
||||
this.map = this.params.map;
|
||||
this.series = this.params.series;
|
||||
this.body = jvm.$('<div/>');
|
||||
this.body.addClass('jvectormap-legend');
|
||||
if (this.params.cssClass) {
|
||||
this.body.addClass(this.params.cssClass);
|
||||
}
|
||||
|
||||
if (params.vertical) {
|
||||
this.map.legendCntVertical.append( this.body );
|
||||
} else {
|
||||
this.map.legendCntHorizontal.append( this.body );
|
||||
}
|
||||
|
||||
this.render();
|
||||
}
|
||||
|
||||
jvm.Legend.prototype.render = function(){
|
||||
var ticks = this.series.scale.getTicks(),
|
||||
i,
|
||||
inner = jvm.$('<div/>').addClass('jvectormap-legend-inner'),
|
||||
tick,
|
||||
sample,
|
||||
label;
|
||||
|
||||
this.body.html('');
|
||||
if (this.params.title) {
|
||||
this.body.append(
|
||||
jvm.$('<div/>').addClass('jvectormap-legend-title').html(this.params.title)
|
||||
);
|
||||
}
|
||||
this.body.append(inner);
|
||||
|
||||
for (i = 0; i < ticks.length; i++) {
|
||||
tick = jvm.$('<div/>').addClass('jvectormap-legend-tick');
|
||||
sample = jvm.$('<div/>').addClass('jvectormap-legend-tick-sample');
|
||||
|
||||
switch (this.series.params.attribute) {
|
||||
case 'fill':
|
||||
if (jvm.isImageUrl(ticks[i].value)) {
|
||||
sample.css('background', 'url('+ticks[i].value+')');
|
||||
} else {
|
||||
sample.css('background', ticks[i].value);
|
||||
}
|
||||
break;
|
||||
case 'stroke':
|
||||
sample.css('background', ticks[i].value);
|
||||
break;
|
||||
case 'image':
|
||||
sample.css('background', 'url('+(typeof ticks[i].value === 'object' ? ticks[i].value.url : ticks[i].value)+') no-repeat center center');
|
||||
break;
|
||||
case 'r':
|
||||
jvm.$('<div/>').css({
|
||||
'border-radius': ticks[i].value,
|
||||
border: this.map.params.markerStyle.initial['stroke-width']+'px '+
|
||||
this.map.params.markerStyle.initial['stroke']+' solid',
|
||||
width: ticks[i].value * 2 + 'px',
|
||||
height: ticks[i].value * 2 + 'px',
|
||||
background: this.map.params.markerStyle.initial['fill']
|
||||
}).appendTo(sample);
|
||||
break;
|
||||
}
|
||||
tick.append( sample );
|
||||
label = ticks[i].label;
|
||||
if (this.params.labelRender) {
|
||||
label = this.params.labelRender(label);
|
||||
}
|
||||
tick.append( jvm.$('<div>'+label+' </div>').addClass('jvectormap-legend-tick-text') );
|
||||
inner.append(tick);
|
||||
}
|
||||
inner.append( jvm.$('<div/>').css('clear', 'both') );
|
||||
}
|
||||
73
frontend/node_modules/@react-jvectormap/lib/src/map-object.js
generated
vendored
73
frontend/node_modules/@react-jvectormap/lib/src/map-object.js
generated
vendored
@@ -1,73 +0,0 @@
|
||||
jvm.MapObject = function(config){};
|
||||
|
||||
jvm.MapObject.prototype.getLabelText = function(key){
|
||||
var text;
|
||||
|
||||
if (this.config.label) {
|
||||
if (typeof this.config.label.render === 'function') {
|
||||
text = this.config.label.render(key);
|
||||
} else {
|
||||
text = key;
|
||||
}
|
||||
} else {
|
||||
text = null;
|
||||
}
|
||||
return text;
|
||||
}
|
||||
|
||||
jvm.MapObject.prototype.getLabelOffsets = function(key){
|
||||
var offsets;
|
||||
|
||||
if (this.config.label) {
|
||||
if (typeof this.config.label.offsets === 'function') {
|
||||
offsets = this.config.label.offsets(key);
|
||||
} else if (typeof this.config.label.offsets === 'object') {
|
||||
offsets = this.config.label.offsets[key];
|
||||
}
|
||||
}
|
||||
return offsets || [0, 0];
|
||||
}
|
||||
|
||||
/**
|
||||
* Set hovered state to the element. Hovered state means mouse cursor is over element. Styles will be updates respectively.
|
||||
* @param {Boolean} isHovered <code>true</code> to make element hovered, <code>false</code> otherwise.
|
||||
*/
|
||||
jvm.MapObject.prototype.setHovered = function(isHovered){
|
||||
if (this.isHovered !== isHovered) {
|
||||
this.isHovered = isHovered;
|
||||
this.shape.isHovered = isHovered;
|
||||
this.shape.updateStyle();
|
||||
if (this.label) {
|
||||
this.label.isHovered = isHovered;
|
||||
this.label.updateStyle();
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Set selected state to the element. Styles will be updates respectively.
|
||||
* @param {Boolean} isSelected <code>true</code> to make element selected, <code>false</code> otherwise.
|
||||
*/
|
||||
jvm.MapObject.prototype.setSelected = function(isSelected){
|
||||
if (this.isSelected !== isSelected) {
|
||||
this.isSelected = isSelected;
|
||||
this.shape.isSelected = isSelected;
|
||||
this.shape.updateStyle();
|
||||
if (this.label) {
|
||||
this.label.isSelected = isSelected;
|
||||
this.label.updateStyle();
|
||||
}
|
||||
jvm.$(this.shape).trigger('selected', [isSelected]);
|
||||
}
|
||||
};
|
||||
|
||||
jvm.MapObject.prototype.setStyle = function(){
|
||||
this.shape.setStyle.apply(this.shape, arguments);
|
||||
};
|
||||
|
||||
jvm.MapObject.prototype.remove = function(){
|
||||
this.shape.remove();
|
||||
if (this.label) {
|
||||
this.label.remove();
|
||||
}
|
||||
};
|
||||
1315
frontend/node_modules/@react-jvectormap/lib/src/map.js
generated
vendored
1315
frontend/node_modules/@react-jvectormap/lib/src/map.js
generated
vendored
File diff suppressed because it is too large
Load Diff
76
frontend/node_modules/@react-jvectormap/lib/src/marker.js
generated
vendored
76
frontend/node_modules/@react-jvectormap/lib/src/marker.js
generated
vendored
@@ -1,76 +0,0 @@
|
||||
jvm.Marker = function(config){
|
||||
var text,
|
||||
offsets;
|
||||
|
||||
this.config = config;
|
||||
this.map = this.config.map;
|
||||
|
||||
this.isImage = !!this.config.style.initial.image;
|
||||
this.createShape();
|
||||
|
||||
text = this.getLabelText(config.index);
|
||||
if (this.config.label && text) {
|
||||
this.offsets = this.getLabelOffsets(config.index);
|
||||
this.labelX = config.cx / this.map.scale - this.map.transX;
|
||||
this.labelY = config.cy / this.map.scale - this.map.transY;
|
||||
this.label = config.canvas.addText({
|
||||
text: text,
|
||||
'data-index': config.index,
|
||||
dy: "0.6ex",
|
||||
x: this.labelX,
|
||||
y: this.labelY
|
||||
}, config.labelStyle, config.labelsGroup);
|
||||
|
||||
this.label.addClass('jvectormap-marker jvectormap-element');
|
||||
}
|
||||
};
|
||||
|
||||
jvm.inherits(jvm.Marker, jvm.MapObject);
|
||||
|
||||
jvm.Marker.prototype.createShape = function(){
|
||||
var that = this;
|
||||
|
||||
if (this.shape) {
|
||||
this.shape.remove();
|
||||
}
|
||||
this.shape = this.config.canvas[this.isImage ? 'addImage' : 'addCircle']({
|
||||
"data-index": this.config.index,
|
||||
cx: this.config.cx,
|
||||
cy: this.config.cy
|
||||
}, this.config.style, this.config.group);
|
||||
|
||||
this.shape.addClass('jvectormap-marker jvectormap-element');
|
||||
|
||||
if (this.isImage) {
|
||||
jvm.$(this.shape.node).on('imageloaded', function(){
|
||||
that.updateLabelPosition();
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
jvm.Marker.prototype.updateLabelPosition = function(){
|
||||
if (this.label) {
|
||||
this.label.set({
|
||||
x: this.labelX * this.map.scale + this.offsets[0] +
|
||||
this.map.transX * this.map.scale + 5 + (this.isImage ? (this.shape.width || 0) / 2 : this.shape.properties.r),
|
||||
y: this.labelY * this.map.scale + this.map.transY * this.map.scale + this.offsets[1]
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
jvm.Marker.prototype.setStyle = function(property, value){
|
||||
var isImage;
|
||||
|
||||
jvm.Marker.parentClass.prototype.setStyle.apply(this, arguments);
|
||||
|
||||
if (property === 'r') {
|
||||
this.updateLabelPosition();
|
||||
}
|
||||
|
||||
isImage = !!this.shape.get('image');
|
||||
if (isImage != this.isImage) {
|
||||
this.isImage = isImage;
|
||||
this.config.style = jvm.$.extend(true, {}, this.shape.style);
|
||||
this.createShape();
|
||||
}
|
||||
};
|
||||
190
frontend/node_modules/@react-jvectormap/lib/src/multimap.js
generated
vendored
190
frontend/node_modules/@react-jvectormap/lib/src/multimap.js
generated
vendored
@@ -1,190 +0,0 @@
|
||||
/**
|
||||
* Creates map with drill-down functionality.
|
||||
* @constructor
|
||||
* @param {Object} params Parameters to initialize map with.
|
||||
* @param {Number} params.maxLevel Maximum number of levels user can go through
|
||||
* @param {Object} params.main Config of the main map. See <a href="./jvm-map/">jvm.Map</a> for more information.
|
||||
* @param {Function} params.mapNameByCode Function to generate map name by region code. Default value is:
|
||||
<pre>
|
||||
function(code, multiMap) {
|
||||
return code.toLowerCase()+'_'+
|
||||
multiMap.defaultProjection+'_en';
|
||||
}
|
||||
</pre>
|
||||
* @param {Function} params.mapUrlByCode Function to generate map url by region code. Default value is:
|
||||
<pre>
|
||||
function(code, multiMap){
|
||||
return 'jquery-jvectormap-data-'+
|
||||
code.toLowerCase()+'-'+
|
||||
multiMap.defaultProjection+'-en.js';
|
||||
}
|
||||
</pre>
|
||||
*/
|
||||
jvm.MultiMap = function (params) {
|
||||
var that = this;
|
||||
|
||||
this.maps = {};
|
||||
this.params = jvm.$.extend(true, {}, jvm.MultiMap.defaultParams, params);
|
||||
this.params.maxLevel = this.params.maxLevel || Number.MAX_VALUE;
|
||||
this.params.main = this.params.main || {};
|
||||
this.params.main.multiMapLevel = 0;
|
||||
this.history = [this.addMap(this.params.main.map, this.params.main)];
|
||||
this.defaultProjection = this.history[0].mapData.projection.type;
|
||||
this.mapsLoaded = {};
|
||||
this.mapsLoadedData = {};
|
||||
|
||||
this.params.container.css({ position: "relative" });
|
||||
this.backButton = jvm
|
||||
.$("<div/>")
|
||||
.addClass("jvectormap-goback")
|
||||
.text("Back")
|
||||
.appendTo(this.params.container);
|
||||
this.backButton.hide();
|
||||
this.backButton.click(function () {
|
||||
that.goBack();
|
||||
});
|
||||
|
||||
this.spinner = jvm
|
||||
.$("<div/>")
|
||||
.addClass("jvectormap-spinner")
|
||||
.appendTo(this.params.container);
|
||||
this.spinner.hide();
|
||||
};
|
||||
|
||||
jvm.MultiMap.prototype = {
|
||||
addMap: function (name, config) {
|
||||
var cnt = jvm.$("<div/>").css({
|
||||
width: "100%",
|
||||
height: "100%",
|
||||
});
|
||||
|
||||
this.params.container.append(cnt);
|
||||
|
||||
this.maps[name] = new jvm.Map(jvm.$.extend(config, { container: cnt }));
|
||||
if (this.params.maxLevel > config.multiMapLevel) {
|
||||
this.maps[name].container.on(
|
||||
"regionClick.jvectormap",
|
||||
{ scope: this },
|
||||
function (e, code) {
|
||||
var multimap = e.data.scope,
|
||||
mapName = multimap.params.mapNameByCode(code, multimap);
|
||||
|
||||
if (
|
||||
!multimap.drillDownPromise ||
|
||||
multimap.drillDownPromise.state() !== "pending"
|
||||
) {
|
||||
multimap.drillDown(mapName, code);
|
||||
}
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
return this.maps[name];
|
||||
},
|
||||
|
||||
downloadMap: function (code) {
|
||||
var that = this,
|
||||
deferred = jvm.$.Deferred();
|
||||
const { getDrillDownMap } = this.params;
|
||||
|
||||
const handleMapData = function (data) {
|
||||
that.mapsLoaded[code] = true;
|
||||
that.mapsLoadedData[code] = data;
|
||||
deferred.resolve();
|
||||
};
|
||||
|
||||
if (!this.mapsLoaded[code]) {
|
||||
if (getDrillDownMap && typeof getDrillDownMap === "function") {
|
||||
const result = getDrillDownMap(code);
|
||||
if (result && typeof result.then === "function") {
|
||||
result
|
||||
.then((data) => {
|
||||
handleMapData(data);
|
||||
})
|
||||
.catch(() => {
|
||||
deferred.reject();
|
||||
});
|
||||
} else {
|
||||
handleMapData(result);
|
||||
}
|
||||
return deferred;
|
||||
}
|
||||
jvm.$.get(this.params.mapUrlByCode(code, this)).then(
|
||||
function (data) {
|
||||
handleMapData(data);
|
||||
},
|
||||
function () {
|
||||
deferred.reject();
|
||||
},
|
||||
);
|
||||
} else {
|
||||
deferred.resolve();
|
||||
}
|
||||
return deferred;
|
||||
},
|
||||
|
||||
drillDown: function (name, code) {
|
||||
var currentMap = this.history[this.history.length - 1],
|
||||
that = this,
|
||||
focusPromise = currentMap.setFocus({ region: code, animate: true }),
|
||||
downloadPromise = this.downloadMap(code);
|
||||
|
||||
focusPromise.then(function () {
|
||||
if (downloadPromise.state() === "pending") {
|
||||
that.spinner.show();
|
||||
}
|
||||
});
|
||||
downloadPromise.always(function () {
|
||||
that.spinner.hide();
|
||||
});
|
||||
this.drillDownPromise = jvm.$.when(downloadPromise, focusPromise);
|
||||
this.drillDownPromise.then(function () {
|
||||
const { content } = that.mapsLoadedData[code];
|
||||
currentMap.params.container.hide();
|
||||
if (!that.maps[name]) {
|
||||
jvm.$.fn.vectorMap("addMap", name, content);
|
||||
that.addMap(name, {
|
||||
map: name,
|
||||
multiMapLevel: currentMap.params.multiMapLevel + 1,
|
||||
});
|
||||
} else {
|
||||
that.maps[name].params.container.show();
|
||||
}
|
||||
that.history.push(that.maps[name]);
|
||||
that.backButton.show();
|
||||
});
|
||||
},
|
||||
|
||||
goBack: function () {
|
||||
var currentMap = this.history.pop(),
|
||||
prevMap = this.history[this.history.length - 1],
|
||||
that = this;
|
||||
|
||||
currentMap
|
||||
.setFocus({ scale: 1, x: 0.5, y: 0.5, animate: true })
|
||||
.then(function () {
|
||||
currentMap.params.container.hide();
|
||||
prevMap.params.container.show();
|
||||
prevMap.updateSize();
|
||||
if (that.history.length === 1) {
|
||||
that.backButton.hide();
|
||||
}
|
||||
prevMap.setFocus({ scale: 1, x: 0.5, y: 0.5, animate: true });
|
||||
});
|
||||
},
|
||||
};
|
||||
|
||||
jvm.MultiMap.defaultParams = {
|
||||
mapNameByCode: function (code, multiMap) {
|
||||
return code.toLowerCase() + "_" + multiMap.defaultProjection + "_en";
|
||||
},
|
||||
mapUrlByCode: function (code, multiMap) {
|
||||
return (
|
||||
"jquery-jvectormap-data-" +
|
||||
code.toLowerCase() +
|
||||
"-" +
|
||||
multiMap.defaultProjection +
|
||||
"-en.js"
|
||||
);
|
||||
},
|
||||
};
|
||||
185
frontend/node_modules/@react-jvectormap/lib/src/numeric-scale.js
generated
vendored
185
frontend/node_modules/@react-jvectormap/lib/src/numeric-scale.js
generated
vendored
@@ -1,185 +0,0 @@
|
||||
jvm.NumericScale = function(scale, normalizeFunction, minValue, maxValue) {
|
||||
this.scale = [];
|
||||
|
||||
normalizeFunction = normalizeFunction || 'linear';
|
||||
|
||||
if (scale) this.setScale(scale);
|
||||
if (normalizeFunction) this.setNormalizeFunction(normalizeFunction);
|
||||
if (typeof minValue !== 'undefined' ) this.setMin(minValue);
|
||||
if (typeof maxValue !== 'undefined' ) this.setMax(maxValue);
|
||||
};
|
||||
|
||||
jvm.NumericScale.prototype = {
|
||||
setMin: function(min) {
|
||||
this.clearMinValue = min;
|
||||
if (typeof this.normalize === 'function') {
|
||||
this.minValue = this.normalize(min);
|
||||
} else {
|
||||
this.minValue = min;
|
||||
}
|
||||
},
|
||||
|
||||
setMax: function(max) {
|
||||
this.clearMaxValue = max;
|
||||
if (typeof this.normalize === 'function') {
|
||||
this.maxValue = this.normalize(max);
|
||||
} else {
|
||||
this.maxValue = max;
|
||||
}
|
||||
},
|
||||
|
||||
setScale: function(scale) {
|
||||
var i;
|
||||
|
||||
this.scale = [];
|
||||
for (i = 0; i < scale.length; i++) {
|
||||
this.scale[i] = [scale[i]];
|
||||
}
|
||||
},
|
||||
|
||||
setNormalizeFunction: function(f) {
|
||||
if (f === 'polynomial') {
|
||||
this.normalize = function(value) {
|
||||
return Math.pow(value, 0.2);
|
||||
}
|
||||
} else if (f === 'linear') {
|
||||
delete this.normalize;
|
||||
} else {
|
||||
this.normalize = f;
|
||||
}
|
||||
this.setMin(this.clearMinValue);
|
||||
this.setMax(this.clearMaxValue);
|
||||
},
|
||||
|
||||
getValue: function(value) {
|
||||
var lengthes = [],
|
||||
fullLength = 0,
|
||||
l,
|
||||
i = 0,
|
||||
c;
|
||||
|
||||
if (typeof this.normalize === 'function') {
|
||||
value = this.normalize(value);
|
||||
}
|
||||
for (i = 0; i < this.scale.length-1; i++) {
|
||||
l = this.vectorLength(this.vectorSubtract(this.scale[i+1], this.scale[i]));
|
||||
lengthes.push(l);
|
||||
fullLength += l;
|
||||
}
|
||||
|
||||
c = (this.maxValue - this.minValue) / fullLength;
|
||||
for (i=0; i<lengthes.length; i++) {
|
||||
lengthes[i] *= c;
|
||||
}
|
||||
|
||||
i = 0;
|
||||
value -= this.minValue;
|
||||
while (value - lengthes[i] >= 0) {
|
||||
value -= lengthes[i];
|
||||
i++;
|
||||
}
|
||||
|
||||
if (i == this.scale.length - 1) {
|
||||
value = this.vectorToNum(this.scale[i])
|
||||
} else {
|
||||
value = (
|
||||
this.vectorToNum(
|
||||
this.vectorAdd(this.scale[i],
|
||||
this.vectorMult(
|
||||
this.vectorSubtract(this.scale[i+1], this.scale[i]),
|
||||
(value) / (lengthes[i])
|
||||
)
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
return value;
|
||||
},
|
||||
|
||||
vectorToNum: function(vector) {
|
||||
var num = 0,
|
||||
i;
|
||||
|
||||
for (i = 0; i < vector.length; i++) {
|
||||
num += Math.round(vector[i])*Math.pow(256, vector.length-i-1);
|
||||
}
|
||||
return num;
|
||||
},
|
||||
|
||||
vectorSubtract: function(vector1, vector2) {
|
||||
var vector = [],
|
||||
i;
|
||||
|
||||
for (i = 0; i < vector1.length; i++) {
|
||||
vector[i] = vector1[i] - vector2[i];
|
||||
}
|
||||
return vector;
|
||||
},
|
||||
|
||||
vectorAdd: function(vector1, vector2) {
|
||||
var vector = [],
|
||||
i;
|
||||
|
||||
for (i = 0; i < vector1.length; i++) {
|
||||
vector[i] = vector1[i] + vector2[i];
|
||||
}
|
||||
return vector;
|
||||
},
|
||||
|
||||
vectorMult: function(vector, num) {
|
||||
var result = [],
|
||||
i;
|
||||
|
||||
for (i = 0; i < vector.length; i++) {
|
||||
result[i] = vector[i] * num;
|
||||
}
|
||||
return result;
|
||||
},
|
||||
|
||||
vectorLength: function(vector) {
|
||||
var result = 0,
|
||||
i;
|
||||
for (i = 0; i < vector.length; i++) {
|
||||
result += vector[i] * vector[i];
|
||||
}
|
||||
return Math.sqrt(result);
|
||||
},
|
||||
|
||||
/* Derived from d3 implementation https://github.com/mbostock/d3/blob/master/src/scale/linear.js#L94 */
|
||||
getTicks: function(){
|
||||
var m = 5,
|
||||
extent = [this.clearMinValue, this.clearMaxValue],
|
||||
span = extent[1] - extent[0],
|
||||
step = Math.pow(10, Math.floor(Math.log(span / m) / Math.LN10)),
|
||||
err = m / span * step,
|
||||
ticks = [],
|
||||
tick,
|
||||
v;
|
||||
|
||||
if (err <= .15) step *= 10;
|
||||
else if (err <= .35) step *= 5;
|
||||
else if (err <= .75) step *= 2;
|
||||
|
||||
extent[0] = Math.floor(extent[0] / step) * step;
|
||||
extent[1] = Math.ceil(extent[1] / step) * step;
|
||||
|
||||
tick = extent[0];
|
||||
while (tick <= extent[1]) {
|
||||
if (tick == extent[0]) {
|
||||
v = this.clearMinValue;
|
||||
} else if (tick == extent[1]) {
|
||||
v = this.clearMaxValue;
|
||||
} else {
|
||||
v = tick;
|
||||
}
|
||||
ticks.push({
|
||||
label: tick,
|
||||
value: this.getValue(v)
|
||||
});
|
||||
tick += step;
|
||||
}
|
||||
|
||||
return ticks;
|
||||
}
|
||||
};
|
||||
21
frontend/node_modules/@react-jvectormap/lib/src/ordinal-scale.js
generated
vendored
21
frontend/node_modules/@react-jvectormap/lib/src/ordinal-scale.js
generated
vendored
@@ -1,21 +0,0 @@
|
||||
jvm.OrdinalScale = function(scale){
|
||||
this.scale = scale;
|
||||
};
|
||||
|
||||
jvm.OrdinalScale.prototype.getValue = function(value){
|
||||
return this.scale[value];
|
||||
};
|
||||
|
||||
jvm.OrdinalScale.prototype.getTicks = function(){
|
||||
var ticks = [],
|
||||
key;
|
||||
|
||||
for (key in this.scale) {
|
||||
ticks.push({
|
||||
label: key,
|
||||
value: this.scale[key]
|
||||
});
|
||||
}
|
||||
|
||||
return ticks;
|
||||
};
|
||||
181
frontend/node_modules/@react-jvectormap/lib/src/proj.js
generated
vendored
181
frontend/node_modules/@react-jvectormap/lib/src/proj.js
generated
vendored
@@ -1,181 +0,0 @@
|
||||
/**
|
||||
* Contains methods for transforming point on sphere to
|
||||
* Cartesian coordinates using various projections.
|
||||
* @class
|
||||
*/
|
||||
jvm.Proj = {
|
||||
degRad: 180 / Math.PI,
|
||||
radDeg: Math.PI / 180,
|
||||
radius: 6381372,
|
||||
|
||||
sgn: function(n){
|
||||
if (n > 0) {
|
||||
return 1;
|
||||
} else if (n < 0) {
|
||||
return -1;
|
||||
} else {
|
||||
return n;
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts point on sphere to the Cartesian coordinates using Miller projection
|
||||
* @param {Number} lat Latitude in degrees
|
||||
* @param {Number} lng Longitude in degrees
|
||||
* @param {Number} c Central meridian in degrees
|
||||
*/
|
||||
mill: function(lat, lng, c){
|
||||
return {
|
||||
x: this.radius * (lng - c) * this.radDeg,
|
||||
y: - this.radius * Math.log(Math.tan((45 + 0.4 * lat) * this.radDeg)) / 0.8
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Inverse function of mill()
|
||||
* Converts Cartesian coordinates to point on sphere using Miller projection
|
||||
* @param {Number} x X of point in Cartesian system as integer
|
||||
* @param {Number} y Y of point in Cartesian system as integer
|
||||
* @param {Number} c Central meridian in degrees
|
||||
*/
|
||||
mill_inv: function(x, y, c){
|
||||
return {
|
||||
lat: (2.5 * Math.atan(Math.exp(0.8 * y / this.radius)) - 5 * Math.PI / 8) * this.degRad,
|
||||
lng: (c * this.radDeg + x / this.radius) * this.degRad
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts point on sphere to the Cartesian coordinates using Mercator projection
|
||||
* @param {Number} lat Latitude in degrees
|
||||
* @param {Number} lng Longitude in degrees
|
||||
* @param {Number} c Central meridian in degrees
|
||||
*/
|
||||
merc: function(lat, lng, c){
|
||||
return {
|
||||
x: this.radius * (lng - c) * this.radDeg,
|
||||
y: - this.radius * Math.log(Math.tan(Math.PI / 4 + lat * Math.PI / 360))
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Inverse function of merc()
|
||||
* Converts Cartesian coordinates to point on sphere using Mercator projection
|
||||
* @param {Number} x X of point in Cartesian system as integer
|
||||
* @param {Number} y Y of point in Cartesian system as integer
|
||||
* @param {Number} c Central meridian in degrees
|
||||
*/
|
||||
merc_inv: function(x, y, c){
|
||||
return {
|
||||
lat: (2 * Math.atan(Math.exp(y / this.radius)) - Math.PI / 2) * this.degRad,
|
||||
lng: (c * this.radDeg + x / this.radius) * this.degRad
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts point on sphere to the Cartesian coordinates using Albers Equal-Area Conic
|
||||
* projection
|
||||
* @see <a href="http://mathworld.wolfram.com/AlbersEqual-AreaConicProjection.html">Albers Equal-Area Conic projection</a>
|
||||
* @param {Number} lat Latitude in degrees
|
||||
* @param {Number} lng Longitude in degrees
|
||||
* @param {Number} c Central meridian in degrees
|
||||
*/
|
||||
aea: function(lat, lng, c){
|
||||
var fi0 = 0,
|
||||
lambda0 = c * this.radDeg,
|
||||
fi1 = 29.5 * this.radDeg,
|
||||
fi2 = 45.5 * this.radDeg,
|
||||
fi = lat * this.radDeg,
|
||||
lambda = lng * this.radDeg,
|
||||
n = (Math.sin(fi1)+Math.sin(fi2)) / 2,
|
||||
C = Math.cos(fi1)*Math.cos(fi1)+2*n*Math.sin(fi1),
|
||||
theta = n*(lambda-lambda0),
|
||||
ro = Math.sqrt(C-2*n*Math.sin(fi))/n,
|
||||
ro0 = Math.sqrt(C-2*n*Math.sin(fi0))/n;
|
||||
|
||||
return {
|
||||
x: ro * Math.sin(theta) * this.radius,
|
||||
y: - (ro0 - ro * Math.cos(theta)) * this.radius
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts Cartesian coordinates to the point on sphere using Albers Equal-Area Conic
|
||||
* projection
|
||||
* @see <a href="http://mathworld.wolfram.com/AlbersEqual-AreaConicProjection.html">Albers Equal-Area Conic projection</a>
|
||||
* @param {Number} x X of point in Cartesian system as integer
|
||||
* @param {Number} y Y of point in Cartesian system as integer
|
||||
* @param {Number} c Central meridian in degrees
|
||||
*/
|
||||
aea_inv: function(xCoord, yCoord, c){
|
||||
var x = xCoord / this.radius,
|
||||
y = yCoord / this.radius,
|
||||
fi0 = 0,
|
||||
lambda0 = c * this.radDeg,
|
||||
fi1 = 29.5 * this.radDeg,
|
||||
fi2 = 45.5 * this.radDeg,
|
||||
n = (Math.sin(fi1)+Math.sin(fi2)) / 2,
|
||||
C = Math.cos(fi1)*Math.cos(fi1)+2*n*Math.sin(fi1),
|
||||
ro0 = Math.sqrt(C-2*n*Math.sin(fi0))/n,
|
||||
ro = Math.sqrt(x*x+(ro0-y)*(ro0-y)),
|
||||
theta = Math.atan( x / (ro0 - y) );
|
||||
|
||||
return {
|
||||
lat: (Math.asin((C - ro * ro * n * n) / (2 * n))) * this.degRad,
|
||||
lng: (lambda0 + theta / n) * this.degRad
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts point on sphere to the Cartesian coordinates using Lambert conformal
|
||||
* conic projection
|
||||
* @see <a href="http://mathworld.wolfram.com/LambertConformalConicProjection.html">Lambert Conformal Conic Projection</a>
|
||||
* @param {Number} lat Latitude in degrees
|
||||
* @param {Number} lng Longitude in degrees
|
||||
* @param {Number} c Central meridian in degrees
|
||||
*/
|
||||
lcc: function(lat, lng, c){
|
||||
var fi0 = 0,
|
||||
lambda0 = c * this.radDeg,
|
||||
lambda = lng * this.radDeg,
|
||||
fi1 = 33 * this.radDeg,
|
||||
fi2 = 45 * this.radDeg,
|
||||
fi = lat * this.radDeg,
|
||||
n = Math.log( Math.cos(fi1) * (1 / Math.cos(fi2)) ) / Math.log( Math.tan( Math.PI / 4 + fi2 / 2) * (1 / Math.tan( Math.PI / 4 + fi1 / 2) ) ),
|
||||
F = ( Math.cos(fi1) * Math.pow( Math.tan( Math.PI / 4 + fi1 / 2 ), n ) ) / n,
|
||||
ro = F * Math.pow( 1 / Math.tan( Math.PI / 4 + fi / 2 ), n ),
|
||||
ro0 = F * Math.pow( 1 / Math.tan( Math.PI / 4 + fi0 / 2 ), n );
|
||||
|
||||
return {
|
||||
x: ro * Math.sin( n * (lambda - lambda0) ) * this.radius,
|
||||
y: - (ro0 - ro * Math.cos( n * (lambda - lambda0) ) ) * this.radius
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts Cartesian coordinates to the point on sphere using Lambert conformal conic
|
||||
* projection
|
||||
* @see <a href="http://mathworld.wolfram.com/LambertConformalConicProjection.html">Lambert Conformal Conic Projection</a>
|
||||
* @param {Number} x X of point in Cartesian system as integer
|
||||
* @param {Number} y Y of point in Cartesian system as integer
|
||||
* @param {Number} c Central meridian in degrees
|
||||
*/
|
||||
lcc_inv: function(xCoord, yCoord, c){
|
||||
var x = xCoord / this.radius,
|
||||
y = yCoord / this.radius,
|
||||
fi0 = 0,
|
||||
lambda0 = c * this.radDeg,
|
||||
fi1 = 33 * this.radDeg,
|
||||
fi2 = 45 * this.radDeg,
|
||||
n = Math.log( Math.cos(fi1) * (1 / Math.cos(fi2)) ) / Math.log( Math.tan( Math.PI / 4 + fi2 / 2) * (1 / Math.tan( Math.PI / 4 + fi1 / 2) ) ),
|
||||
F = ( Math.cos(fi1) * Math.pow( Math.tan( Math.PI / 4 + fi1 / 2 ), n ) ) / n,
|
||||
ro0 = F * Math.pow( 1 / Math.tan( Math.PI / 4 + fi0 / 2 ), n ),
|
||||
ro = this.sgn(n) * Math.sqrt(x*x+(ro0-y)*(ro0-y)),
|
||||
theta = Math.atan( x / (ro0 - y) );
|
||||
|
||||
return {
|
||||
lat: (2 * Math.atan(Math.pow(F/ro, 1/n)) - Math.PI / 2) * this.degRad,
|
||||
lng: (lambda0 + theta / n) * this.degRad
|
||||
};
|
||||
}
|
||||
};
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user