map - show geometry in MySQL

This commit is contained in:
Jan Prochazka
2022-06-11 09:45:23 +02:00
parent 0a0ce6ad98
commit 343cf84a58
9 changed files with 248 additions and 14 deletions

View File

@@ -84,3 +84,18 @@ export function getIconForRedisType(type) {
return null;
}
}
export function isWktGeometry(s) {
if (!_isString(s)) return false;
return (
s.startsWith('POINT(') ||
s.startsWith('LINESTRING(') ||
s.startsWith('POLYGON(') ||
s.startsWith('MULTIPOINT(') ||
s.startsWith('MULTILINESTRING(') ||
s.startsWith('MULTIPOLYGON(') ||
s.startsWith('GEOMCOLLECTION(') ||
s.startsWith('GEOMETRYCOLLECTION(')
);
}