@geoblocks/edittrack
Advanced tools
Comparing version 1.2.0 to 1.2.1
{ | ||
"name": "@geoblocks/edittrack", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "Geoblocks edittrack", | ||
@@ -5,0 +5,0 @@ "module": "src/index.js", |
@@ -25,3 +25,3 @@ import Polyline, {decodeDeltas, encodeDeltas} from 'ol/format/Polyline.js'; | ||
protected readGeometryFromText(text: string, opt_options: ReadOptions): LineString { | ||
protected override readGeometryFromText(text: string, opt_options: ReadOptions): LineString { | ||
const stride = 3; | ||
@@ -64,3 +64,3 @@ const flatCoordinates = decodeDeltas(text, stride, 1e5); | ||
*/ | ||
protected writeGeometryText(geometry: LineString, options: WriteOptions): string { | ||
protected override writeGeometryText(geometry: LineString, options: WriteOptions): string { | ||
geometry = transformGeometryWithOptions( | ||
@@ -67,0 +67,0 @@ geometry, |
77411