2020-12-16 16:54:41 +00:00
|
|
|
/*
|
2021-07-25 14:12:40 +00:00
|
|
|
* Copyright 2021 James Lyne
|
2020-12-16 16:54:41 +00:00
|
|
|
*
|
|
|
|
* Some portions of this file were taken from https://github.com/webbukkit/dynmap.
|
|
|
|
* These portions are Copyright 2020 Dynmap Contributors.
|
|
|
|
*
|
2021-07-25 14:12:40 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2020-12-16 16:54:41 +00:00
|
|
|
*
|
2021-07-25 14:12:40 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2020-12-16 16:54:41 +00:00
|
|
|
*
|
2021-07-25 14:12:40 +00:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2020-12-16 16:54:41 +00:00
|
|
|
*/
|
|
|
|
|
2020-12-18 20:25:34 +00:00
|
|
|
import {LatLngExpression} from "leaflet";
|
2021-07-23 21:28:06 +00:00
|
|
|
import LiveAtlasPolyline from "@/leaflet/vector/LiveAtlasPolyline";
|
|
|
|
import LiveAtlasPolygon from "@/leaflet/vector/LiveAtlasPolygon";
|
2021-07-24 03:06:19 +00:00
|
|
|
import {LiveAtlasCircle} from "@/index";
|
2021-07-28 16:49:38 +00:00
|
|
|
import {createPopup} from "@/util/paths";
|
2020-12-11 15:28:51 +00:00
|
|
|
|
2021-07-24 03:06:19 +00:00
|
|
|
export const createCircle = (options: LiveAtlasCircle, converter: Function): LiveAtlasPolyline | LiveAtlasPolygon => {
|
2020-12-11 15:28:51 +00:00
|
|
|
const outline = !options.style.fillOpacity || (options.style.fillOpacity <= 0),
|
2020-12-18 20:25:34 +00:00
|
|
|
points = getCirclePoints(options, converter, outline),
|
2021-07-28 01:14:20 +00:00
|
|
|
circle = outline ? new LiveAtlasPolyline(points, options) : new LiveAtlasPolygon(points, options);
|
2020-12-11 15:28:51 +00:00
|
|
|
|
2021-07-28 16:49:38 +00:00
|
|
|
if(options.popupContent) {
|
|
|
|
circle.bindPopup(() => createPopup(options, 'CirclePopup'));
|
2020-12-11 15:28:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return circle;
|
|
|
|
};
|
|
|
|
|
2021-07-24 03:06:19 +00:00
|
|
|
export const updateCircle = (circle: LiveAtlasPolyline | LiveAtlasPolygon | undefined, options: LiveAtlasCircle, converter: Function): LiveAtlasPolyline | LiveAtlasPolygon => {
|
2020-12-11 15:28:51 +00:00
|
|
|
if (!circle) {
|
|
|
|
return createCircle(options, converter);
|
|
|
|
}
|
|
|
|
|
2021-07-28 01:14:20 +00:00
|
|
|
const outline = (options.style && options.style.fillOpacity && (options.style.fillOpacity <= 0)) as boolean;
|
|
|
|
|
2021-01-26 14:42:31 +00:00
|
|
|
circle.closePopup();
|
2020-12-11 15:28:51 +00:00
|
|
|
circle.unbindPopup();
|
2021-07-28 16:49:38 +00:00
|
|
|
circle.bindPopup(() => createPopup(options, 'CirclePopup'));
|
2020-12-11 15:28:51 +00:00
|
|
|
circle.setStyle(options.style);
|
2021-07-28 01:14:20 +00:00
|
|
|
circle.setLatLngs(getCirclePoints(options, converter, outline));
|
2020-12-11 15:28:51 +00:00
|
|
|
circle.redraw();
|
|
|
|
|
|
|
|
return circle;
|
|
|
|
}
|
|
|
|
|
2021-07-24 03:06:19 +00:00
|
|
|
export const getCirclePoints = (options: LiveAtlasCircle, converter: Function, outline: boolean): LatLngExpression[] => {
|
2020-12-11 15:28:51 +00:00
|
|
|
const points = [];
|
|
|
|
|
|
|
|
for(let i = 0; i < 360; i++) {
|
|
|
|
const rad = i * Math.PI / 180.0,
|
|
|
|
x = options.radius[0] * Math.sin(rad) + options.location.x,
|
|
|
|
z = options.radius[1] * Math.cos(rad) + options.location.z;
|
|
|
|
|
2021-07-28 00:56:41 +00:00
|
|
|
points.push(converter({x, y:options.location.y, z}));
|
2020-12-11 15:28:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(outline && points.length) {
|
|
|
|
points.push(points[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return points;
|
|
|
|
};
|