sourceid
, sourcename
, url
, layer
, style
, format
, matrixSet
, description
sourceid
, sourcename
, url
, logo
, useSpatialIndex
, wrapX
, description
sourceid
, sourcename
, url
, crossOrigin
, projection
, wrapX
, description
sourceid
, sourcename
, url
, wrapX
, opaque
, description
INSERT INTO c3gis_ol_source_tilearcgisrest(
sourceid
, sourcename
, url
, crossOrigin
, projection
, wrapX
, description
)
VALUES(
#{sourceId}
, #{sourceName}
, #{url}
, #{crossOrigin}
, #{projection}
, #{wrapX}
, #{description});
INSERT INTO c3gis_ol_source_tilesupermaprest(
sourceid
, sourcename
, url
, wrapX
, opaque
, description
)
VALUES(
#{sourceId}
, #{sourceName}
, #{url}
, #{wrapX}
, #{opaque}
, #{description});
INSERT INTO c3gis_ol_source_vector(
sourceid
, sourcename
, url
, logo
, useSpatialIndex
, wrapX
, description
)
VALUES(
#{sourceId}
, #{sourceName}
, #{url}
, #{logo}
, #{useSpatialIndex}
, #{wrapX}
, #{description});
INSERT INTO c3gis_ol_source_wmts(
sourceid
, sourcename
, url
, layer
, style
, format
, matrixSet
, description
)
VALUES(
#{sourceId}
, #{sourceName}
, #{url}
, #{layer}
, #{style}
, #{format}
, #{matrixSet}
, #{description}
);