Bug report #15874
Updated by Paolo Cavallini over 6 years ago
A table created with SRID=0:
<pre>
CREATE TABLE pt
(id INTEGER, name text, geom GEOMETRY(Point,0,2));
INSERT INTO pt (id, name, geom)
VALUES (1, 'Origin', ST_GeomFromText('POINT(0 0)', 0));
</pre>
results in two entries: one with mouseover= geom as Point in 0 and one geom as Point in -2147483648
<pre>
CREATE TABLE pt
(id INTEGER, name text, geom GEOMETRY(Point,0,2));
INSERT INTO pt (id, name, geom)
VALUES (1, 'Origin', ST_GeomFromText('POINT(0 0)', 0));
</pre>
results in two entries: one with mouseover= geom as Point in 0 and one geom as Point in -2147483648