Skip to content

Commit 1a6f65b

Browse files
authored
Merge branch 'main' into rc1.6.5
2 parents 0ca5d9a + 7567128 commit 1a6f65b

5 files changed

Lines changed: 19 additions & 3 deletions

File tree

src/Providers/Maps/Google/Configuration/Shape/CircleShapeConfig.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
/// <reference path="./FilledShapeConfig.ts" />
22

33
// eslint-disable-next-line @typescript-eslint/no-unused-vars
4+
<<<<<<<< HEAD:src/Providers/Maps/Google/Configuration/Shape/CircleShapeConfig.ts
45
namespace Provider.Maps.Google.Configuration.Shape {
6+
========
7+
namespace Provider.Maps.Leaflet.Configuration.Shape {
8+
>>>>>>>> rc1.6.3:src/Providers/Maps/Leaflet/Configuration/Shape/CircleShapeConfig.ts
59
export class CircleShapeConfig extends FilledShapeConfig {
610
public center: string;
711
public radius: number;

src/Providers/Maps/Google/Configuration/Shape/RectangleShapeConfig.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
/// <reference path="./FilledShapeConfig.ts" />
22

33
// eslint-disable-next-line @typescript-eslint/no-unused-vars
4+
<<<<<<<< HEAD:src/Providers/Maps/Google/Configuration/Shape/RectangleShapeConfig.ts
45
namespace Provider.Maps.Google.Configuration.Shape {
6+
========
7+
namespace Provider.Maps.Leaflet.Configuration.Shape {
8+
>>>>>>>> rc1.6.3:src/Providers/Maps/Leaflet/Configuration/Shape/RectangleShapeConfig.ts
59
export class RectangleShapeConfig extends FilledShapeConfig {
610
public bounds: string;
711

src/Providers/Maps/Leaflet/Configuration/Shape/CircleShapeConfig.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
/// <reference path="./FilledShapeConfig.ts" />
22

33
// eslint-disable-next-line @typescript-eslint/no-unused-vars
4+
<<<<<<<< HEAD:src/Providers/Maps/Leaflet/Configuration/Shape/CircleShapeConfig.ts
45
namespace Provider.Maps.Leaflet.Configuration.Shape {
6+
========
7+
namespace Provider.Maps.Google.Configuration.Shape {
8+
>>>>>>>> rc1.6.3:src/Providers/Maps/Google/Configuration/Shape/CircleShapeConfig.ts
59
export class CircleShapeConfig extends FilledShapeConfig {
610
public center: string;
711
public radius: number;

src/Providers/Maps/Leaflet/Configuration/Shape/RectangleShapeConfig.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
/// <reference path="./FilledShapeConfig.ts" />
22

33
// eslint-disable-next-line @typescript-eslint/no-unused-vars
4+
<<<<<<<< HEAD:src/Providers/Maps/Leaflet/Configuration/Shape/RectangleShapeConfig.ts
45
namespace Provider.Maps.Leaflet.Configuration.Shape {
6+
========
7+
namespace Provider.Maps.Google.Configuration.Shape {
8+
>>>>>>>> rc1.6.3:src/Providers/Maps/Google/Configuration/Shape/RectangleShapeConfig.ts
59
export class RectangleShapeConfig extends FilledShapeConfig {
610
public bounds: string;
711

src/Providers/Maps/Leaflet/OSMap/OSMap.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ namespace Provider.Maps.Leaflet.OSMap {
8181
.ProviderEvent,
8282
this,
8383
eventName,
84-
e && e.latlng !== undefined
84+
e && e.target.getLatLng() !== undefined
8585
? JSON.stringify({
86-
Lat: e.latlng.lat,
87-
Lng: e.latlng.lng
86+
Lat: e.target.getLatLng().lat,
87+
Lng: e.target.getLatLng().lng
8888
})
8989
: undefined
9090
);

0 commit comments

Comments
 (0)