mirror of https://gitee.com/antv-l7/antv-l7
177 lines
3.9 KiB
TypeScript
177 lines
3.9 KiB
TypeScript
import { Version } from '../src/interface/map';
|
|
import { lineAtOffset, lineAtOffsetAsyc } from '../src/lineAtOffset/index';
|
|
const arcSource = {
|
|
inited: true,
|
|
data: {
|
|
dataArray: [
|
|
{
|
|
coordinates: [
|
|
[99.228515625, 37.43997405227057],
|
|
[100.72265625, 27.994401411046148],
|
|
],
|
|
offset: 0.3,
|
|
id: 0,
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
describe('lineAtOffset', () => {
|
|
(async () => {
|
|
const asyncOffsetPoint = await lineAtOffsetAsyc(arcSource, {
|
|
shape: 'arc',
|
|
offset: 0.1,
|
|
mapVersion: Version['GAODE1.x'],
|
|
});
|
|
it('asyncOffsetPoint', () => {
|
|
expect(asyncOffsetPoint).toEqual([
|
|
{
|
|
coordinates: [
|
|
[99.228515625, 37.43997405227057],
|
|
[100.72265625, 27.994401411046148],
|
|
],
|
|
offset: 0.3,
|
|
id: 0,
|
|
lng: 99.66757224332352,
|
|
lat: 36.507847734146466,
|
|
height: 0,
|
|
},
|
|
]);
|
|
});
|
|
})();
|
|
const arcOffsetPoint = lineAtOffset(arcSource, {
|
|
shape: 'arc',
|
|
offset: 0.1,
|
|
mapVersion: Version['GAODE1.x'],
|
|
});
|
|
|
|
const arcOffsetPoint2 = lineAtOffset(arcSource, {
|
|
shape: 'arc',
|
|
offset: 0.1,
|
|
mapVersion: Version['GAODE2.x'],
|
|
thetaOffset: 0.314,
|
|
});
|
|
|
|
const arcOffsetPoint3 = lineAtOffset(arcSource, {
|
|
shape: 'arc',
|
|
offset: 0.1,
|
|
mapVersion: Version['GAODE2.x'],
|
|
thetaOffset: 0.314,
|
|
featureId: 0,
|
|
});
|
|
|
|
const greatCircleOffsetPoint = lineAtOffset(arcSource, {
|
|
shape: 'greatcircle',
|
|
offset: 0.1,
|
|
mapVersion: Version['GAODE1.x'],
|
|
});
|
|
|
|
const greatCircleOffsetPoint2 = lineAtOffset(arcSource, {
|
|
shape: 'greatcircle',
|
|
offset: 0.1,
|
|
mapVersion: Version['GAODE2.x'],
|
|
});
|
|
|
|
const lineOffsetPoint = lineAtOffset(arcSource, {
|
|
shape: 'line',
|
|
offset: 0.1,
|
|
mapVersion: Version['GAODE1.x'],
|
|
});
|
|
|
|
it('arcOffsetPoint', () => {
|
|
expect(arcOffsetPoint).toEqual([
|
|
{
|
|
coordinates: [
|
|
[99.228515625, 37.43997405227057],
|
|
[100.72265625, 27.994401411046148],
|
|
],
|
|
offset: 0.3,
|
|
id: 0,
|
|
lng: 99.66757224332352,
|
|
lat: 36.507847734146466,
|
|
height: 0,
|
|
},
|
|
]);
|
|
});
|
|
|
|
it('arcOffsetPoint2', () => {
|
|
expect(arcOffsetPoint2).toEqual([
|
|
{
|
|
coordinates: [
|
|
[99.228515625, 37.43997405227057],
|
|
[100.72265625, 27.994401411046148],
|
|
],
|
|
offset: 0.3,
|
|
id: 0,
|
|
lng: 99.72191962749187,
|
|
lat: 36.54640697914567,
|
|
height: 0,
|
|
},
|
|
]);
|
|
});
|
|
|
|
it('arcOffsetPoint3', () => {
|
|
expect(arcOffsetPoint3).toEqual([
|
|
{
|
|
coordinates: [
|
|
[99.228515625, 37.43997405227057],
|
|
[100.72265625, 27.994401411046148],
|
|
],
|
|
height: 0,
|
|
id: 0,
|
|
lat: 36.54640697914567,
|
|
lng: 99.72191962749187,
|
|
offset: 0.3,
|
|
},
|
|
]);
|
|
});
|
|
|
|
it('greatCircleOffsetPoint', () => {
|
|
expect(greatCircleOffsetPoint).toEqual([
|
|
{
|
|
coordinates: [
|
|
[99.228515625, 37.43997405227057],
|
|
[100.72265625, 27.994401411046148],
|
|
],
|
|
offset: 0.3,
|
|
id: 0,
|
|
lng: 99.39897617955312,
|
|
lat: 36.46373143064039,
|
|
height: undefined,
|
|
},
|
|
]);
|
|
});
|
|
|
|
it('greatCircleOffsetPoint2', () => {
|
|
expect(greatCircleOffsetPoint2).toEqual([
|
|
{
|
|
coordinates: [
|
|
[99.228515625, 37.43997405227057],
|
|
[100.72265625, 27.994401411046148],
|
|
],
|
|
offset: 0.3,
|
|
id: 0,
|
|
lng: 1.7395272931153063,
|
|
lat: 0.6371821457776072,
|
|
height: 0,
|
|
},
|
|
]);
|
|
});
|
|
|
|
it('lineOffsetPoint', () => {
|
|
expect(lineOffsetPoint).toEqual([
|
|
{
|
|
coordinates: [
|
|
[99.228515625, 37.43997405227057],
|
|
[100.72265625, 27.994401411046148],
|
|
],
|
|
offset: 0.3,
|
|
id: 0,
|
|
lng: 99.3779296875,
|
|
lat: 36.495416788148134,
|
|
height: 0,
|
|
},
|
|
]);
|
|
});
|
|
});
|