mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-05 00:09:32 -04:00
Merge pull request #52051 from pathmapper/full_pagination
[server/OAPIF] Add full pagination for collection items HTML page
This commit is contained in:
commit
184b5e452d
@ -2,16 +2,18 @@
|
||||
{% include "header.html" %}
|
||||
|
||||
<div class="row">
|
||||
<nav aria-label="Page navigation example">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
{% for link in links_filter( links, "rel", "prev" ) %}
|
||||
<li class="page-item"><a class="page-link" href="{{ link.href }}">Previous</a></li>
|
||||
<li class="page-item"><a class="page-link" href="{{ link.href }}">{{ link.title }}</a></li>
|
||||
{% endfor %}
|
||||
{% for pageitem in metadata.pagination %}
|
||||
<li class="{{ pageitem.class }}"><a class="page-link" {% if existsIn(pageitem, "href" ) %}
|
||||
href="{{ pageitem.href }}" {% endif %}>{{ pageitem.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
<!-- TODO: full pagination: li class="page-item"><a class="page-link" href="#">1</a></li>
|
||||
<li class="page-item"><a class="page-link" href="#">2</a></li>
|
||||
<li class="page-item"><a class="page-link" href="#">3</a></li-->
|
||||
{% for link in links_filter( links, "rel", "next" ) %}
|
||||
<li class="page-item"><a class="page-link" href="{{ link.href }}">Next</a></li>
|
||||
<li class="page-item"><a class="page-link" href="{{ link.href }}">{{ link.title }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</nav>
|
||||
|
@ -1399,23 +1399,94 @@ void QgsWfs3CollectionsItemsHandler::handleRequest( const QgsServerApiContext &c
|
||||
}
|
||||
}
|
||||
|
||||
// Add prev - next links
|
||||
if ( offset != 0 )
|
||||
{
|
||||
json prevLink = selfLink;
|
||||
prevLink["href"] = cleanedUrlAsString.toStdString() + QStringLiteral( "offset=%1&limit=%2" ).arg( std::max<long>( 0, offset - limit ) ).arg( limit ).toStdString();
|
||||
prevLink["rel"] = "prev";
|
||||
prevLink["title"] = "Previous page";
|
||||
data["links"].push_back( prevLink );
|
||||
}
|
||||
// Pagination metadata
|
||||
json pagination = json::array();
|
||||
|
||||
if ( limit + offset < matchedFeaturesCount )
|
||||
if ( limit != 0 )
|
||||
{
|
||||
json nextLink = selfLink;
|
||||
nextLink["href"] = cleanedUrlAsString.toStdString() + QStringLiteral( "offset=%1&limit=%2" ).arg( std::min<long>( matchedFeaturesCount, limit + offset ) ).arg( limit ).toStdString();
|
||||
nextLink["rel"] = "next";
|
||||
nextLink["title"] = "Next page";
|
||||
data["links"].push_back( nextLink );
|
||||
// Add prev - next links
|
||||
json prevLink;
|
||||
if ( offset != 0 )
|
||||
{
|
||||
prevLink = selfLink;
|
||||
prevLink["href"] = cleanedUrlAsString.toStdString() + QStringLiteral( "offset=%1&limit=%2" ).arg( std::max<long>( 0, offset - limit ) ).arg( limit ).toStdString();
|
||||
prevLink["rel"] = "prev";
|
||||
prevLink["title"] = "Previous page";
|
||||
data["links"].push_back( prevLink );
|
||||
}
|
||||
|
||||
json nextLink;
|
||||
if ( limit + offset < matchedFeaturesCount )
|
||||
{
|
||||
nextLink = selfLink;
|
||||
nextLink["href"] = cleanedUrlAsString.toStdString() + QStringLiteral( "offset=%1&limit=%2" ).arg( std::min<long>( matchedFeaturesCount, limit + offset ) ).arg( limit ).toStdString();
|
||||
nextLink["rel"] = "next";
|
||||
nextLink["title"] = "Next page";
|
||||
data["links"].push_back( nextLink );
|
||||
}
|
||||
|
||||
// Pagination
|
||||
if ( matchedFeaturesCount - limit > 0 )
|
||||
{
|
||||
const int totalPages { static_cast<int>( std::ceil( static_cast<float>( matchedFeaturesCount ) / static_cast<float>( limit ) ) ) };
|
||||
const int currentPage { static_cast<int>( offset / limit + 1 ) };
|
||||
const std::string currentPageLink { selfLink["href"] };
|
||||
|
||||
std::string prevPageLink;
|
||||
if ( prevLink.contains( std::string{ "href" } ) )
|
||||
{
|
||||
prevPageLink = prevLink["href"];
|
||||
}
|
||||
|
||||
std::string nextPageLink;
|
||||
if ( nextLink.contains( std::string{ "href" } ) )
|
||||
{
|
||||
nextPageLink = nextLink["href"];
|
||||
}
|
||||
|
||||
const std::string firstPageLink { cleanedUrlAsString.toStdString() + QStringLiteral( "offset=0&limit=%1" ).arg( limit ).toStdString() };
|
||||
const std::string lastPageLink { cleanedUrlAsString.toStdString() + QStringLiteral( "offset=%1&limit=%2" ).arg( totalPages * limit - limit ).arg( limit ).toStdString() };
|
||||
|
||||
if ( currentPage != 1 )
|
||||
{
|
||||
pagination.push_back( {{ "title", "1" }, { "href", firstPageLink }, { "class", "page-item" }} ) ;
|
||||
}
|
||||
if ( currentPage > 3 )
|
||||
{
|
||||
pagination.push_back( {{ "title", "\u2026" }, { "class", "page-item disabled" }} ) ;
|
||||
}
|
||||
if ( currentPage > 2 )
|
||||
{
|
||||
pagination.push_back( {{ "title", std::to_string( currentPage - 1 ) }, { "href", prevPageLink }, { "class", "page-item" }} ) ;
|
||||
}
|
||||
pagination.push_back( {{ "title", std::to_string( currentPage ) }, { "href", currentPageLink }, { "class", "page-item active" }} ) ;
|
||||
if ( currentPage < totalPages - 1 )
|
||||
{
|
||||
pagination.push_back( {{ "title", std::to_string( currentPage + 1 ) }, { "href", nextPageLink }, { "class", "page-item" }} ) ;
|
||||
}
|
||||
if ( currentPage < totalPages - 2 )
|
||||
{
|
||||
pagination.push_back( {{ "title", "\u2026" }, { "class", "page-item disabled" }} ) ;
|
||||
}
|
||||
if ( currentPage != totalPages )
|
||||
{
|
||||
pagination.push_back( {{ "title", std::to_string( totalPages ) }, { "href", lastPageLink }, { "class", "page-item" }} ) ;
|
||||
}
|
||||
|
||||
// Add first - last links
|
||||
// Since we are having them ready, not mandatory by the spec but allowed
|
||||
json firstLink = selfLink;
|
||||
firstLink["href"] = firstPageLink;
|
||||
firstLink["rel"] = "first";
|
||||
firstLink["title"] = "First page";
|
||||
data["links"].push_back( firstLink );
|
||||
|
||||
json lastLink = selfLink;
|
||||
lastLink["href"] = lastPageLink;
|
||||
lastLink["rel"] = "last";
|
||||
lastLink["title"] = "Last page";
|
||||
data["links"].push_back( lastLink );
|
||||
}
|
||||
}
|
||||
|
||||
json navigation = json::array();
|
||||
@ -1431,6 +1502,7 @@ void QgsWfs3CollectionsItemsHandler::handleRequest( const QgsServerApiContext &c
|
||||
"geojsonUrl", href( context, "/",
|
||||
QgsServerOgcApi::contentTypeToExtension( QgsServerOgcApi::ContentType::GEOJSON ) )
|
||||
},
|
||||
{ "pagination", pagination },
|
||||
{ "navigation", navigation }
|
||||
};
|
||||
|
||||
|
@ -540,6 +540,48 @@ class QgsServerAPITest(QgsServerAPITestBase):
|
||||
self.compareApi(request, project,
|
||||
'test_wfs3_collections_items_testlayer_èé.html')
|
||||
|
||||
def test_wfs3_collection_items_html_limit_0(self):
|
||||
"""Test WFS3 API items limit=0"""
|
||||
project = QgsProject()
|
||||
project.read(os.path.join(self.temporary_path, 'qgis_server', 'test_project_api.qgs'))
|
||||
request = QgsBufferServerRequest(
|
||||
'http://server.qgis.org/wfs3/collections/testlayer%20èé/items.html?limit=0')
|
||||
self.compareApi(request, project,
|
||||
'test_wfs3_collections_items_testlayer_èé_1.html')
|
||||
|
||||
def test_wfs3_collection_items_html_pagination(self):
|
||||
"""Test WFS3 API items pagination"""
|
||||
project = QgsProject()
|
||||
project.read(os.path.join(self.temporary_path, 'qgis_server', 'test_project_wms_grouped_nested_layers.qgs'))
|
||||
request = QgsBufferServerRequest(
|
||||
'http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6')
|
||||
self.compareApi(request, project,
|
||||
'test_wfs3_collections_items_as_areas_short_name_1.html')
|
||||
request = QgsBufferServerRequest(
|
||||
'http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=6&limit=6')
|
||||
self.compareApi(request, project,
|
||||
'test_wfs3_collections_items_as_areas_short_name_2.html')
|
||||
request = QgsBufferServerRequest(
|
||||
'http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=12&limit=6')
|
||||
self.compareApi(request, project,
|
||||
'test_wfs3_collections_items_as_areas_short_name_3.html')
|
||||
request = QgsBufferServerRequest(
|
||||
'http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=18&limit=6')
|
||||
self.compareApi(request, project,
|
||||
'test_wfs3_collections_items_as_areas_short_name_4.html')
|
||||
request = QgsBufferServerRequest(
|
||||
'http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=24&limit=6')
|
||||
self.compareApi(request, project,
|
||||
'test_wfs3_collections_items_as_areas_short_name_5.html')
|
||||
request = QgsBufferServerRequest(
|
||||
'http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=30&limit=6')
|
||||
self.compareApi(request, project,
|
||||
'test_wfs3_collections_items_as_areas_short_name_6.html')
|
||||
request = QgsBufferServerRequest(
|
||||
'http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6')
|
||||
self.compareApi(request, project,
|
||||
'test_wfs3_collections_items_as_areas_short_name_7.html')
|
||||
|
||||
def test_wfs3_collection_items_crs(self):
|
||||
"""Test WFS3 API items with CRS"""
|
||||
project = QgsProject()
|
||||
@ -636,6 +678,15 @@ class QgsServerAPITest(QgsServerAPITestBase):
|
||||
self.compareApi(
|
||||
request, project, 'test_wfs3_collections_items_testlayer_èé_limit_1_offset_2.json')
|
||||
|
||||
def test_wfs3_collection_items_limit_2(self):
|
||||
"""Test WFS3 API limit 2"""
|
||||
project = QgsProject()
|
||||
project.read(os.path.join(self.temporary_path, 'qgis_server', 'test_project_api.qgs'))
|
||||
request = QgsBufferServerRequest(
|
||||
'http://server.qgis.org/wfs3/collections/testlayer%20èé/items?limit=2')
|
||||
self.compareApi(
|
||||
request, project, 'test_wfs3_collections_items_testlayer_èé_limit_2.json')
|
||||
|
||||
def test_wfs3_collection_items_bbox(self):
|
||||
"""Test WFS3 API bbox"""
|
||||
project = QgsProject()
|
||||
|
@ -989,6 +989,18 @@ Content-Type: application/geo+json
|
||||
"rel": "next",
|
||||
"title": "Next page",
|
||||
"type": "application/geo+json"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/as-areas-short-name/items?crs=http%3A%2F%2Fwww.opengis.net%2Fdef%2Fcrs%2FEPSG%2F0%2F3857&offset=0&limit=10",
|
||||
"rel": "first",
|
||||
"title": "First page",
|
||||
"type": "application/geo+json"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/as-areas-short-name/items?crs=http%3A%2F%2Fwww.opengis.net%2Fdef%2Fcrs%2FEPSG%2F0%2F3857&offset=30&limit=10",
|
||||
"rel": "last",
|
||||
"title": "Last page",
|
||||
"type": "application/geo+json"
|
||||
}
|
||||
],
|
||||
"numberMatched": 38,
|
||||
|
@ -989,6 +989,18 @@ Content-Type: application/geo+json
|
||||
"rel": "next",
|
||||
"title": "Next page",
|
||||
"type": "application/geo+json"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/as-areas-short-name/items?crs=http%3A%2F%2Fwww.opengis.net%2Fdef%2Fcrs%2FEPSG%2F0%2F4326&offset=0&limit=10",
|
||||
"rel": "first",
|
||||
"title": "First page",
|
||||
"type": "application/geo+json"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/as-areas-short-name/items?crs=http%3A%2F%2Fwww.opengis.net%2Fdef%2Fcrs%2FEPSG%2F0%2F4326&offset=30&limit=10",
|
||||
"rel": "last",
|
||||
"title": "Last page",
|
||||
"type": "application/geo+json"
|
||||
}
|
||||
],
|
||||
"numberMatched": 38,
|
||||
|
580
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_1.html
vendored
Normal file
580
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_1.html
vendored
Normal file
@ -0,0 +1,580 @@
|
||||
<!-- template for the WFS3 API getFeatures page -->
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css"
|
||||
integrity="sha384-o/2yZuJZWGJ4s/adjxVW71R+EO/LyCwdQfP5UWSgX/w87iiTXuvDZaejd3TsN7mf"
|
||||
crossorigin=""/>
|
||||
<link rel="stylesheet" href="/wfs3/static/style.css" />
|
||||
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
|
||||
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
|
||||
crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="/wfs3/static/jsonFormatter/jsonFormatter.min.css" crossorigin="anonymous">
|
||||
<script src="/wfs3/static/jsonFormatter/jsonFormatter.min.js" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- template for the WFS3 API links list, to be included in HEAD -->
|
||||
|
||||
<link rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=0&limit=6" title="Retrieve the features of the collection as GEOJSON" type="application/geo+json">
|
||||
|
||||
<link rel="self" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" title="Retrieve the features of the collection as HTML" type="text/html">
|
||||
|
||||
<link rel="next" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=6&limit=6" title="Next page" type="text/html">
|
||||
|
||||
<link rel="first" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" title="First page" type="text/html">
|
||||
|
||||
<link rel="last" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" title="Last page" type="text/html">
|
||||
|
||||
|
||||
|
||||
<title>Features in layer as_areas</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-light bg-light navbar-expand-sm">
|
||||
<div class="container">
|
||||
<div id="navbar" class="navbar-collapse collapse d-flex justify-content-between align-items-center">
|
||||
<ol class="breadcrumb bg-light my-0 pl-0">
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/" >Landing page</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/" >Collections</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/" >as_areas</a></li>
|
||||
|
||||
<li class="breadcrumb-item active">
|
||||
Features in layer as_areas
|
||||
</li>
|
||||
</ol>
|
||||
<ul class="list-unstyled list-separated m-0 p-0 text-muted">
|
||||
|
||||
<li><a rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=0&limit=6" target="_blank">GEOJSON</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container pt-4">
|
||||
<!-- END HEADER TEMPLATE header.html -->
|
||||
|
||||
|
||||
<div class="row">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
|
||||
|
||||
<li class="page-item active"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" >1</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=6&limit=6" >2</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item disabled"><a class="page-link" >…</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" >7</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="page-item"><a class="page-link" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=6&limit=6">Next page</a></li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h1>Features in layer as_areas</h1>
|
||||
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/1.html?offset=0&limit=6">as_areas 1</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-07</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">255 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">71379.115</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">22</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-07 12:10:44.84292+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">20</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">60.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">5</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">15.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">90</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">2224.3285</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/2.html?offset=0&limit=6">as_areas 2</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-10</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">255 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">5682.0</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Vollflächig</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">23</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-10 07:21:28.296581+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">280.5785</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/3.html?offset=0&limit=6">as_areas 3</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">F1</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-05</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">255 170 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">3</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">18430.5</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">6</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-05 11:13:05.193224+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">25</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">75.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">527.8188</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/4.html?offset=0&limit=6">as_areas 4</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-10</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">4</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">4419.5</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Vollflächig</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">24</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-10 07:21:53.193582+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">272.9494</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/5.html?offset=0&limit=6">as_areas 5</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-20</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 255 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">5</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">255067.6299</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">36</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-20 10:04:27.528814+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">90</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">2035.8331</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">5</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">15.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/6.html?offset=0&limit=6">as_areas 6</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-07</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">6</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">3257.5</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">17</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-07 11:24:20.639802+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">-45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">211.6085</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- template for the WFS3 API leaflet map -->
|
||||
<div class="col-md-6">
|
||||
<div id="mapid" class="small"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery( document ).ready(function( $ ) {
|
||||
var map = L.map( 'mapid', { attributionControl: false } ).setView( [0, 0], 13 );
|
||||
L.control.attribution( { prefix: false } ).addTo( map );
|
||||
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
||||
}).addTo(map)
|
||||
$.get( "http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=0&limit=6", function( data ) {
|
||||
var jl = L.geoJSON( data, {
|
||||
onEachFeature: function (feature, layer) {
|
||||
layer.bindPopup('<h1>'+feature.id +'</h1>');
|
||||
}
|
||||
}).addTo(map);
|
||||
map.setView(jl.getBounds().getCenter());
|
||||
if ( jl.getBounds().getEast() != jl.getBounds().getWest() && jl.getBounds().getNorth() != jl.getBounds().getSouth() )
|
||||
{
|
||||
map.fitBounds(jl.getBounds());
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!-- FOOTER TEMPLATE footer.html -->
|
||||
</div> <!-- //container -->
|
||||
|
||||
<footer class="footer bg-light py-4 d-flex flex-column justify-content-around align-items-center">
|
||||
<div class="container d-flex flex-row justify-content-between align-items-center w-100">
|
||||
<span><span class="text-muted small mr-2">powered by</span><a class="navbar-brand" href="https://www.qgis.org/" target="_blank">QGIS Server</a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<!-- Make sure you put this AFTER Leaflet's CSS -->
|
||||
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js"
|
||||
integrity="sha384-okbbMvvx/qfQkmiQKfd5VifbKZ/W8p1qIsWvE1ROPUfHWsDcC8/BnHohF7vPg2T6"
|
||||
crossorigin=""></script>
|
||||
<script>
|
||||
jQuery('.jref').jsonFormatter();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
588
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_2.html
vendored
Normal file
588
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_2.html
vendored
Normal file
@ -0,0 +1,588 @@
|
||||
<!-- template for the WFS3 API getFeatures page -->
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css"
|
||||
integrity="sha384-o/2yZuJZWGJ4s/adjxVW71R+EO/LyCwdQfP5UWSgX/w87iiTXuvDZaejd3TsN7mf"
|
||||
crossorigin=""/>
|
||||
<link rel="stylesheet" href="/wfs3/static/style.css" />
|
||||
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
|
||||
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
|
||||
crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="/wfs3/static/jsonFormatter/jsonFormatter.min.css" crossorigin="anonymous">
|
||||
<script src="/wfs3/static/jsonFormatter/jsonFormatter.min.js" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- template for the WFS3 API links list, to be included in HEAD -->
|
||||
|
||||
<link rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=6&limit=6" title="Retrieve the features of the collection as GEOJSON" type="application/geo+json">
|
||||
|
||||
<link rel="self" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=6&limit=6" title="Retrieve the features of the collection as HTML" type="text/html">
|
||||
|
||||
<link rel="prev" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" title="Previous page" type="text/html">
|
||||
|
||||
<link rel="next" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=12&limit=6" title="Next page" type="text/html">
|
||||
|
||||
<link rel="first" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" title="First page" type="text/html">
|
||||
|
||||
<link rel="last" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" title="Last page" type="text/html">
|
||||
|
||||
|
||||
|
||||
<title>Features in layer as_areas</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-light bg-light navbar-expand-sm">
|
||||
<div class="container">
|
||||
<div id="navbar" class="navbar-collapse collapse d-flex justify-content-between align-items-center">
|
||||
<ol class="breadcrumb bg-light my-0 pl-0">
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/" >Landing page</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/" >Collections</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/" >as_areas</a></li>
|
||||
|
||||
<li class="breadcrumb-item active">
|
||||
Features in layer as_areas
|
||||
</li>
|
||||
</ol>
|
||||
<ul class="list-unstyled list-separated m-0 p-0 text-muted">
|
||||
|
||||
<li><a rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=6&limit=6" target="_blank">GEOJSON</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container pt-4">
|
||||
<!-- END HEADER TEMPLATE header.html -->
|
||||
|
||||
|
||||
<div class="row">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
|
||||
<li class="page-item"><a class="page-link" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6">Previous page</a></li>
|
||||
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" >1</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item active"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=6&limit=6" >2</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=12&limit=6" >3</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item disabled"><a class="page-link" >…</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" >7</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="page-item"><a class="page-link" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=12&limit=6">Next page</a></li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h1>Features in layer as_areas</h1>
|
||||
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/7.html?offset=6&limit=6">as_areas 7</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-10</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 255 197</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">7</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">9504.9512</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">25</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-10 07:22:28.519133+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">430.5526</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/8.html?offset=6&limit=6">as_areas 8</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">F2</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-05</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">8</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">2242.73</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Vollflächig</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">9</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-05 13:36:58.366035+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">195.3386</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/9.html?offset=6&limit=6">as_areas 9</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-05</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">9</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">109919.115</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-05 15:41:36.951661+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">20</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">60.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">5</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">15.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">1364.1616</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/10.html?offset=6&limit=6">as_areas 10</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-05</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 255 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">38540.0</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">11</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-05 15:44:57.930124+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">20</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">60.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">-45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">860.1669</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/11.html?offset=6&limit=6">as_areas 11</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">F2</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-10</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 255 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">11</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">965.0879</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">26</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-10 12:42:32.91072+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">123.3826</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/12.html?offset=6&limit=6">as_areas 12</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">F1</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-07</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">197 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">12</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">15173.0</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">19</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-07 11:28:46.183932+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">5</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">15.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">0</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">739.4273</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">197 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">4</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">12.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">gestrichelt</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- template for the WFS3 API leaflet map -->
|
||||
<div class="col-md-6">
|
||||
<div id="mapid" class="small"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery( document ).ready(function( $ ) {
|
||||
var map = L.map( 'mapid', { attributionControl: false } ).setView( [0, 0], 13 );
|
||||
L.control.attribution( { prefix: false } ).addTo( map );
|
||||
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
||||
}).addTo(map)
|
||||
$.get( "http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=6&limit=6", function( data ) {
|
||||
var jl = L.geoJSON( data, {
|
||||
onEachFeature: function (feature, layer) {
|
||||
layer.bindPopup('<h1>'+feature.id +'</h1>');
|
||||
}
|
||||
}).addTo(map);
|
||||
map.setView(jl.getBounds().getCenter());
|
||||
if ( jl.getBounds().getEast() != jl.getBounds().getWest() && jl.getBounds().getNorth() != jl.getBounds().getSouth() )
|
||||
{
|
||||
map.fitBounds(jl.getBounds());
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!-- FOOTER TEMPLATE footer.html -->
|
||||
</div> <!-- //container -->
|
||||
|
||||
<footer class="footer bg-light py-4 d-flex flex-column justify-content-around align-items-center">
|
||||
<div class="container d-flex flex-row justify-content-between align-items-center w-100">
|
||||
<span><span class="text-muted small mr-2">powered by</span><a class="navbar-brand" href="https://www.qgis.org/" target="_blank">QGIS Server</a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<!-- Make sure you put this AFTER Leaflet's CSS -->
|
||||
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js"
|
||||
integrity="sha384-okbbMvvx/qfQkmiQKfd5VifbKZ/W8p1qIsWvE1ROPUfHWsDcC8/BnHohF7vPg2T6"
|
||||
crossorigin=""></script>
|
||||
<script>
|
||||
jQuery('.jref').jsonFormatter();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
592
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_3.html
vendored
Normal file
592
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_3.html
vendored
Normal file
@ -0,0 +1,592 @@
|
||||
<!-- template for the WFS3 API getFeatures page -->
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css"
|
||||
integrity="sha384-o/2yZuJZWGJ4s/adjxVW71R+EO/LyCwdQfP5UWSgX/w87iiTXuvDZaejd3TsN7mf"
|
||||
crossorigin=""/>
|
||||
<link rel="stylesheet" href="/wfs3/static/style.css" />
|
||||
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
|
||||
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
|
||||
crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="/wfs3/static/jsonFormatter/jsonFormatter.min.css" crossorigin="anonymous">
|
||||
<script src="/wfs3/static/jsonFormatter/jsonFormatter.min.js" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- template for the WFS3 API links list, to be included in HEAD -->
|
||||
|
||||
<link rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=12&limit=6" title="Retrieve the features of the collection as GEOJSON" type="application/geo+json">
|
||||
|
||||
<link rel="self" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=12&limit=6" title="Retrieve the features of the collection as HTML" type="text/html">
|
||||
|
||||
<link rel="prev" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=6&limit=6" title="Previous page" type="text/html">
|
||||
|
||||
<link rel="next" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=18&limit=6" title="Next page" type="text/html">
|
||||
|
||||
<link rel="first" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" title="First page" type="text/html">
|
||||
|
||||
<link rel="last" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" title="Last page" type="text/html">
|
||||
|
||||
|
||||
|
||||
<title>Features in layer as_areas</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-light bg-light navbar-expand-sm">
|
||||
<div class="container">
|
||||
<div id="navbar" class="navbar-collapse collapse d-flex justify-content-between align-items-center">
|
||||
<ol class="breadcrumb bg-light my-0 pl-0">
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/" >Landing page</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/" >Collections</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/" >as_areas</a></li>
|
||||
|
||||
<li class="breadcrumb-item active">
|
||||
Features in layer as_areas
|
||||
</li>
|
||||
</ol>
|
||||
<ul class="list-unstyled list-separated m-0 p-0 text-muted">
|
||||
|
||||
<li><a rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=12&limit=6" target="_blank">GEOJSON</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container pt-4">
|
||||
<!-- END HEADER TEMPLATE header.html -->
|
||||
|
||||
|
||||
<div class="row">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
|
||||
<li class="page-item"><a class="page-link" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=6&limit=6">Previous page</a></li>
|
||||
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" >1</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=6&limit=6" >2</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item active"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=12&limit=6" >3</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=18&limit=6" >4</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item disabled"><a class="page-link" >…</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" >7</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="page-item"><a class="page-link" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=18&limit=6">Next page</a></li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h1>Features in layer as_areas</h1>
|
||||
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/13.html?offset=12&limit=6">as_areas 13</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-07</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">255 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">13</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">51702.8774</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">21</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-07 11:32:43.525563+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">90</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">914.2296</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/14.html?offset=12&limit=6">as_areas 14</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">F2</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-10</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">255 170 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">14</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">1644.0176</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">27</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-10 12:44:48.270064+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">-45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">158.1306</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/15.html?offset=12&limit=6">as_areas 15</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">F2-4</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-10</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">197 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">15</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">372.3552</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">28</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-10 13:01:22.435971+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">5</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">15.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">90</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">89.1416</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/16.html?offset=12&limit=6">as_areas 16</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-11</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">197 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">16</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">72018.1919</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">31</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-11 09:59:22.353284+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">0</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">1039.8103</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/17.html?offset=12&limit=6">as_areas 17</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-07</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">255 170 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">17</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">22183.3076</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">20</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-11 10:00:08.447557+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">-45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">684.897</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/18.html?offset=12&limit=6">as_areas 18</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-11</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">255 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">18</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">12879.0</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">34</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-11 10:03:45.52301+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">758.4703</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- template for the WFS3 API leaflet map -->
|
||||
<div class="col-md-6">
|
||||
<div id="mapid" class="small"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery( document ).ready(function( $ ) {
|
||||
var map = L.map( 'mapid', { attributionControl: false } ).setView( [0, 0], 13 );
|
||||
L.control.attribution( { prefix: false } ).addTo( map );
|
||||
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
||||
}).addTo(map)
|
||||
$.get( "http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=12&limit=6", function( data ) {
|
||||
var jl = L.geoJSON( data, {
|
||||
onEachFeature: function (feature, layer) {
|
||||
layer.bindPopup('<h1>'+feature.id +'</h1>');
|
||||
}
|
||||
}).addTo(map);
|
||||
map.setView(jl.getBounds().getCenter());
|
||||
if ( jl.getBounds().getEast() != jl.getBounds().getWest() && jl.getBounds().getNorth() != jl.getBounds().getSouth() )
|
||||
{
|
||||
map.fitBounds(jl.getBounds());
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!-- FOOTER TEMPLATE footer.html -->
|
||||
</div> <!-- //container -->
|
||||
|
||||
<footer class="footer bg-light py-4 d-flex flex-column justify-content-around align-items-center">
|
||||
<div class="container d-flex flex-row justify-content-between align-items-center w-100">
|
||||
<span><span class="text-muted small mr-2">powered by</span><a class="navbar-brand" href="https://www.qgis.org/" target="_blank">QGIS Server</a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<!-- Make sure you put this AFTER Leaflet's CSS -->
|
||||
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js"
|
||||
integrity="sha384-okbbMvvx/qfQkmiQKfd5VifbKZ/W8p1qIsWvE1ROPUfHWsDcC8/BnHohF7vPg2T6"
|
||||
crossorigin=""></script>
|
||||
<script>
|
||||
jQuery('.jref').jsonFormatter();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
595
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_4.html
vendored
Normal file
595
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_4.html
vendored
Normal file
@ -0,0 +1,595 @@
|
||||
<!-- template for the WFS3 API getFeatures page -->
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css"
|
||||
integrity="sha384-o/2yZuJZWGJ4s/adjxVW71R+EO/LyCwdQfP5UWSgX/w87iiTXuvDZaejd3TsN7mf"
|
||||
crossorigin=""/>
|
||||
<link rel="stylesheet" href="/wfs3/static/style.css" />
|
||||
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
|
||||
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
|
||||
crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="/wfs3/static/jsonFormatter/jsonFormatter.min.css" crossorigin="anonymous">
|
||||
<script src="/wfs3/static/jsonFormatter/jsonFormatter.min.js" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- template for the WFS3 API links list, to be included in HEAD -->
|
||||
|
||||
<link rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=18&limit=6" title="Retrieve the features of the collection as GEOJSON" type="application/geo+json">
|
||||
|
||||
<link rel="self" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=18&limit=6" title="Retrieve the features of the collection as HTML" type="text/html">
|
||||
|
||||
<link rel="prev" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=12&limit=6" title="Previous page" type="text/html">
|
||||
|
||||
<link rel="next" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=24&limit=6" title="Next page" type="text/html">
|
||||
|
||||
<link rel="first" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" title="First page" type="text/html">
|
||||
|
||||
<link rel="last" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" title="Last page" type="text/html">
|
||||
|
||||
|
||||
|
||||
<title>Features in layer as_areas</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-light bg-light navbar-expand-sm">
|
||||
<div class="container">
|
||||
<div id="navbar" class="navbar-collapse collapse d-flex justify-content-between align-items-center">
|
||||
<ol class="breadcrumb bg-light my-0 pl-0">
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/" >Landing page</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/" >Collections</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/" >as_areas</a></li>
|
||||
|
||||
<li class="breadcrumb-item active">
|
||||
Features in layer as_areas
|
||||
</li>
|
||||
</ol>
|
||||
<ul class="list-unstyled list-separated m-0 p-0 text-muted">
|
||||
|
||||
<li><a rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=18&limit=6" target="_blank">GEOJSON</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container pt-4">
|
||||
<!-- END HEADER TEMPLATE header.html -->
|
||||
|
||||
|
||||
<div class="row">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
|
||||
<li class="page-item"><a class="page-link" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=12&limit=6">Previous page</a></li>
|
||||
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" >1</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item disabled"><a class="page-link" >…</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=12&limit=6" >3</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item active"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=18&limit=6" >4</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=24&limit=6" >5</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item disabled"><a class="page-link" >…</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" >7</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="page-item"><a class="page-link" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=24&limit=6">Next page</a></li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h1>Features in layer as_areas</h1>
|
||||
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/19.html?offset=18&limit=6">as_areas 19</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-19</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">255 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">19</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">266982.3696</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Vollflächig</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">35</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-20 10:05:15.202569+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">2071.8266</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">5</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">15.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/20.html?offset=18&limit=6">as_areas 20</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-20</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">20</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">39500.0</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">37</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-20 10:06:19.200744+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">5</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">15.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">802.536</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/21.html?offset=18&limit=6">as_areas 21</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-20</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">197 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">21</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">227482.3696</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">38</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-20 10:07:11.878292+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">-45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">2874.3626</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/22.html?offset=18&limit=6">as_areas 22</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-20</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 255 197</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">22</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">522049.9995</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Umriss</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">39</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2013-06-20 10:10:01.157621+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">2987.812</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 255 197</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/23.html?offset=18&limit=6">as_areas 23</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2014-01-27</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 255 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">23</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">78448.5</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Vollflächig</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">40</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2014-01-27 14:53:50.931948+01</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">1363.9801</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">3</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">9.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">Strich-Punkt</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/24.html?offset=18&limit=6">as_areas 24</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2014-11-25</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 255 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">24</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">12588.0</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Vollflächig</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">41</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2014-11-25 14:29:47.858261+01</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">503.3922</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- template for the WFS3 API leaflet map -->
|
||||
<div class="col-md-6">
|
||||
<div id="mapid" class="small"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery( document ).ready(function( $ ) {
|
||||
var map = L.map( 'mapid', { attributionControl: false } ).setView( [0, 0], 13 );
|
||||
L.control.attribution( { prefix: false } ).addTo( map );
|
||||
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
||||
}).addTo(map)
|
||||
$.get( "http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=18&limit=6", function( data ) {
|
||||
var jl = L.geoJSON( data, {
|
||||
onEachFeature: function (feature, layer) {
|
||||
layer.bindPopup('<h1>'+feature.id +'</h1>');
|
||||
}
|
||||
}).addTo(map);
|
||||
map.setView(jl.getBounds().getCenter());
|
||||
if ( jl.getBounds().getEast() != jl.getBounds().getWest() && jl.getBounds().getNorth() != jl.getBounds().getSouth() )
|
||||
{
|
||||
map.fitBounds(jl.getBounds());
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!-- FOOTER TEMPLATE footer.html -->
|
||||
</div> <!-- //container -->
|
||||
|
||||
<footer class="footer bg-light py-4 d-flex flex-column justify-content-around align-items-center">
|
||||
<div class="container d-flex flex-row justify-content-between align-items-center w-100">
|
||||
<span><span class="text-muted small mr-2">powered by</span><a class="navbar-brand" href="https://www.qgis.org/" target="_blank">QGIS Server</a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<!-- Make sure you put this AFTER Leaflet's CSS -->
|
||||
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js"
|
||||
integrity="sha384-okbbMvvx/qfQkmiQKfd5VifbKZ/W8p1qIsWvE1ROPUfHWsDcC8/BnHohF7vPg2T6"
|
||||
crossorigin=""></script>
|
||||
<script>
|
||||
jQuery('.jref').jsonFormatter();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
592
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_5.html
vendored
Normal file
592
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_5.html
vendored
Normal file
@ -0,0 +1,592 @@
|
||||
<!-- template for the WFS3 API getFeatures page -->
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css"
|
||||
integrity="sha384-o/2yZuJZWGJ4s/adjxVW71R+EO/LyCwdQfP5UWSgX/w87iiTXuvDZaejd3TsN7mf"
|
||||
crossorigin=""/>
|
||||
<link rel="stylesheet" href="/wfs3/static/style.css" />
|
||||
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
|
||||
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
|
||||
crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="/wfs3/static/jsonFormatter/jsonFormatter.min.css" crossorigin="anonymous">
|
||||
<script src="/wfs3/static/jsonFormatter/jsonFormatter.min.js" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- template for the WFS3 API links list, to be included in HEAD -->
|
||||
|
||||
<link rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=24&limit=6" title="Retrieve the features of the collection as GEOJSON" type="application/geo+json">
|
||||
|
||||
<link rel="self" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=24&limit=6" title="Retrieve the features of the collection as HTML" type="text/html">
|
||||
|
||||
<link rel="prev" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=18&limit=6" title="Previous page" type="text/html">
|
||||
|
||||
<link rel="next" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=30&limit=6" title="Next page" type="text/html">
|
||||
|
||||
<link rel="first" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" title="First page" type="text/html">
|
||||
|
||||
<link rel="last" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" title="Last page" type="text/html">
|
||||
|
||||
|
||||
|
||||
<title>Features in layer as_areas</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-light bg-light navbar-expand-sm">
|
||||
<div class="container">
|
||||
<div id="navbar" class="navbar-collapse collapse d-flex justify-content-between align-items-center">
|
||||
<ol class="breadcrumb bg-light my-0 pl-0">
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/" >Landing page</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/" >Collections</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/" >as_areas</a></li>
|
||||
|
||||
<li class="breadcrumb-item active">
|
||||
Features in layer as_areas
|
||||
</li>
|
||||
</ol>
|
||||
<ul class="list-unstyled list-separated m-0 p-0 text-muted">
|
||||
|
||||
<li><a rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=24&limit=6" target="_blank">GEOJSON</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container pt-4">
|
||||
<!-- END HEADER TEMPLATE header.html -->
|
||||
|
||||
|
||||
<div class="row">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
|
||||
<li class="page-item"><a class="page-link" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=18&limit=6">Previous page</a></li>
|
||||
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" >1</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item disabled"><a class="page-link" >…</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=18&limit=6" >4</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item active"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=24&limit=6" >5</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=30&limit=6" >6</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" >7</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="page-item"><a class="page-link" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=30&limit=6">Next page</a></li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h1>Features in layer as_areas</h1>
|
||||
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/25.html?offset=24&limit=6">as_areas 25</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2015-08-05</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">25</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">46900.0</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">42</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2015-08-05 11:31:08.829984+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">842.1024</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/26.html?offset=24&limit=6">as_areas 26</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2015-08-29</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 255 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">26</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">7319.5</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">43</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2015-08-29 19:28:51.203869+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">341.4407</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/27.html?offset=24&limit=6">as_areas 27</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2016-03-09</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">255 170 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">27</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">5432.7491</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Vollflächig</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">45</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2016-03-09 08:11:41.787773+01</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">298.1537</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/28.html?offset=24&limit=6">as_areas 28</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2016-03-10</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">255 170 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">28</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">18206.2949</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Vollflächig</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">46</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2016-03-10 07:13:00.881358+01</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">651.7758</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/29.html?offset=24&limit=6">as_areas 29</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2017-02-08</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">29</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">154717.4346</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">51</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2017-02-08 11:30:36.965061+01</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">1537.0502</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/30.html?offset=24&limit=6">as_areas 30</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2017-02-08</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">30</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">124017.7984</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">vollflächig</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">52</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2017-02-08 11:33:12.5725+01</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">1365.7077</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- template for the WFS3 API leaflet map -->
|
||||
<div class="col-md-6">
|
||||
<div id="mapid" class="small"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery( document ).ready(function( $ ) {
|
||||
var map = L.map( 'mapid', { attributionControl: false } ).setView( [0, 0], 13 );
|
||||
L.control.attribution( { prefix: false } ).addTo( map );
|
||||
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
||||
}).addTo(map)
|
||||
$.get( "http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=24&limit=6", function( data ) {
|
||||
var jl = L.geoJSON( data, {
|
||||
onEachFeature: function (feature, layer) {
|
||||
layer.bindPopup('<h1>'+feature.id +'</h1>');
|
||||
}
|
||||
}).addTo(map);
|
||||
map.setView(jl.getBounds().getCenter());
|
||||
if ( jl.getBounds().getEast() != jl.getBounds().getWest() && jl.getBounds().getNorth() != jl.getBounds().getSouth() )
|
||||
{
|
||||
map.fitBounds(jl.getBounds());
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!-- FOOTER TEMPLATE footer.html -->
|
||||
</div> <!-- //container -->
|
||||
|
||||
<footer class="footer bg-light py-4 d-flex flex-column justify-content-around align-items-center">
|
||||
<div class="container d-flex flex-row justify-content-between align-items-center w-100">
|
||||
<span><span class="text-muted small mr-2">powered by</span><a class="navbar-brand" href="https://www.qgis.org/" target="_blank">QGIS Server</a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<!-- Make sure you put this AFTER Leaflet's CSS -->
|
||||
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js"
|
||||
integrity="sha384-okbbMvvx/qfQkmiQKfd5VifbKZ/W8p1qIsWvE1ROPUfHWsDcC8/BnHohF7vPg2T6"
|
||||
crossorigin=""></script>
|
||||
<script>
|
||||
jQuery('.jref').jsonFormatter();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
588
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_6.html
vendored
Normal file
588
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_6.html
vendored
Normal file
@ -0,0 +1,588 @@
|
||||
<!-- template for the WFS3 API getFeatures page -->
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css"
|
||||
integrity="sha384-o/2yZuJZWGJ4s/adjxVW71R+EO/LyCwdQfP5UWSgX/w87iiTXuvDZaejd3TsN7mf"
|
||||
crossorigin=""/>
|
||||
<link rel="stylesheet" href="/wfs3/static/style.css" />
|
||||
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
|
||||
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
|
||||
crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="/wfs3/static/jsonFormatter/jsonFormatter.min.css" crossorigin="anonymous">
|
||||
<script src="/wfs3/static/jsonFormatter/jsonFormatter.min.js" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- template for the WFS3 API links list, to be included in HEAD -->
|
||||
|
||||
<link rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=30&limit=6" title="Retrieve the features of the collection as GEOJSON" type="application/geo+json">
|
||||
|
||||
<link rel="self" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=30&limit=6" title="Retrieve the features of the collection as HTML" type="text/html">
|
||||
|
||||
<link rel="prev" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=24&limit=6" title="Previous page" type="text/html">
|
||||
|
||||
<link rel="next" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" title="Next page" type="text/html">
|
||||
|
||||
<link rel="first" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" title="First page" type="text/html">
|
||||
|
||||
<link rel="last" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" title="Last page" type="text/html">
|
||||
|
||||
|
||||
|
||||
<title>Features in layer as_areas</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-light bg-light navbar-expand-sm">
|
||||
<div class="container">
|
||||
<div id="navbar" class="navbar-collapse collapse d-flex justify-content-between align-items-center">
|
||||
<ol class="breadcrumb bg-light my-0 pl-0">
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/" >Landing page</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/" >Collections</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/" >as_areas</a></li>
|
||||
|
||||
<li class="breadcrumb-item active">
|
||||
Features in layer as_areas
|
||||
</li>
|
||||
</ol>
|
||||
<ul class="list-unstyled list-separated m-0 p-0 text-muted">
|
||||
|
||||
<li><a rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=30&limit=6" target="_blank">GEOJSON</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container pt-4">
|
||||
<!-- END HEADER TEMPLATE header.html -->
|
||||
|
||||
|
||||
<div class="row">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
|
||||
<li class="page-item"><a class="page-link" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=24&limit=6">Previous page</a></li>
|
||||
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" >1</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item disabled"><a class="page-link" >…</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=24&limit=6" >5</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item active"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=30&limit=6" >6</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" >7</a>
|
||||
</li>
|
||||
|
||||
|
||||
<li class="page-item"><a class="page-link" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6">Next page</a></li>
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h1>Features in layer as_areas</h1>
|
||||
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/31.html?offset=30&limit=6">as_areas 31</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2017-02-08</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">31</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">19717.082</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">vollflächig</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">54</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2017-02-08 11:38:54.411464+01</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">801.298</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/32.html?offset=30&limit=6">as_areas 32</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2017-04-10</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 255 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">32</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">10694.8073</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Vollflächig</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">56</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2017-04-10 11:58:26.281451+02</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">512.5381</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/33.html?offset=30&limit=6">as_areas 33</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2018-03-07</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">33</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">29306.6118</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Vollflächig</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">57</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2018-03-07 10:37:38.901535+01</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">708.2925</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/34.html?offset=30&limit=6">as_areas 34</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-07</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 255 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">34</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">63900.0</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">14</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2018-12-11 08:39:06.973306+01</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">1025.0632</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/35.html?offset=30&limit=6">as_areas 35</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-07</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">35</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">16185.5</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">15</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2018-12-11 08:39:06.973306+01</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">-45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">485.2578</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/36.html?offset=30&limit=6">as_areas 36</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-07</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">255 170 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">36</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">77789.3346</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Umriss</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">16</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2018-12-11 08:39:06.973306+01</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">90</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">1315.0628</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">255 170 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">20</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">60.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- template for the WFS3 API leaflet map -->
|
||||
<div class="col-md-6">
|
||||
<div id="mapid" class="small"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery( document ).ready(function( $ ) {
|
||||
var map = L.map( 'mapid', { attributionControl: false } ).setView( [0, 0], 13 );
|
||||
L.control.attribution( { prefix: false } ).addTo( map );
|
||||
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
||||
}).addTo(map)
|
||||
$.get( "http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=30&limit=6", function( data ) {
|
||||
var jl = L.geoJSON( data, {
|
||||
onEachFeature: function (feature, layer) {
|
||||
layer.bindPopup('<h1>'+feature.id +'</h1>');
|
||||
}
|
||||
}).addTo(map);
|
||||
map.setView(jl.getBounds().getCenter());
|
||||
if ( jl.getBounds().getEast() != jl.getBounds().getWest() && jl.getBounds().getNorth() != jl.getBounds().getSouth() )
|
||||
{
|
||||
map.fitBounds(jl.getBounds());
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!-- FOOTER TEMPLATE footer.html -->
|
||||
</div> <!-- //container -->
|
||||
|
||||
<footer class="footer bg-light py-4 d-flex flex-column justify-content-around align-items-center">
|
||||
<div class="container d-flex flex-row justify-content-between align-items-center w-100">
|
||||
<span><span class="text-muted small mr-2">powered by</span><a class="navbar-brand" href="https://www.qgis.org/" target="_blank">QGIS Server</a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<!-- Make sure you put this AFTER Leaflet's CSS -->
|
||||
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js"
|
||||
integrity="sha384-okbbMvvx/qfQkmiQKfd5VifbKZ/W8p1qIsWvE1ROPUfHWsDcC8/BnHohF7vPg2T6"
|
||||
crossorigin=""></script>
|
||||
<script>
|
||||
jQuery('.jref').jsonFormatter();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
296
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_7.html
vendored
Normal file
296
tests/testdata/qgis_server/api/test_wfs3_collections_items_as_areas_short_name_7.html
vendored
Normal file
@ -0,0 +1,296 @@
|
||||
<!-- template for the WFS3 API getFeatures page -->
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css"
|
||||
integrity="sha384-o/2yZuJZWGJ4s/adjxVW71R+EO/LyCwdQfP5UWSgX/w87iiTXuvDZaejd3TsN7mf"
|
||||
crossorigin=""/>
|
||||
<link rel="stylesheet" href="/wfs3/static/style.css" />
|
||||
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
|
||||
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
|
||||
crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="/wfs3/static/jsonFormatter/jsonFormatter.min.css" crossorigin="anonymous">
|
||||
<script src="/wfs3/static/jsonFormatter/jsonFormatter.min.js" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- template for the WFS3 API links list, to be included in HEAD -->
|
||||
|
||||
<link rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=36&limit=6" title="Retrieve the features of the collection as GEOJSON" type="application/geo+json">
|
||||
|
||||
<link rel="self" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" title="Retrieve the features of the collection as HTML" type="text/html">
|
||||
|
||||
<link rel="prev" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=30&limit=6" title="Previous page" type="text/html">
|
||||
|
||||
<link rel="first" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" title="First page" type="text/html">
|
||||
|
||||
<link rel="last" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" title="Last page" type="text/html">
|
||||
|
||||
|
||||
|
||||
<title>Features in layer as_areas</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-light bg-light navbar-expand-sm">
|
||||
<div class="container">
|
||||
<div id="navbar" class="navbar-collapse collapse d-flex justify-content-between align-items-center">
|
||||
<ol class="breadcrumb bg-light my-0 pl-0">
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/" >Landing page</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/" >Collections</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/" >as_areas</a></li>
|
||||
|
||||
<li class="breadcrumb-item active">
|
||||
Features in layer as_areas
|
||||
</li>
|
||||
</ol>
|
||||
<ul class="list-unstyled list-separated m-0 p-0 text-muted">
|
||||
|
||||
<li><a rel="alternate" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=36&limit=6" target="_blank">GEOJSON</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container pt-4">
|
||||
<!-- END HEADER TEMPLATE header.html -->
|
||||
|
||||
|
||||
<div class="row">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
|
||||
<li class="page-item"><a class="page-link" href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=30&limit=6">Previous page</a></li>
|
||||
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=0&limit=6" >1</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item disabled"><a class="page-link" >…</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=30&limit=6" >6</a>
|
||||
</li>
|
||||
|
||||
<li class="page-item active"><a class="page-link"
|
||||
href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items.html?offset=36&limit=6" >7</a>
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h1>Features in layer as_areas</h1>
|
||||
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/37.html?offset=36&limit=6">as_areas 37</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-10</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">0 0 255</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">37</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">67853.6892</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">29</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2018-12-11 08:39:06.973306+01</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">-45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">1088.7917</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12">null</dd>
|
||||
|
||||
</dl>
|
||||
|
||||
<h2><a href="http://server.qgis.org/wfs3/collections/as-areas-short-name/items/38.html?offset=36&limit=6">as_areas 38</a></h2>
|
||||
<dl class="row">
|
||||
|
||||
<dt class="col-sm-12">bearbeiter</dt>
|
||||
<dd class="col-sm-12">scholle-b</dd>
|
||||
|
||||
<dt class="col-sm-12">bemerkung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">beschriftung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">datum</dt>
|
||||
<dd class="col-sm-12">2013-06-10</dd>
|
||||
|
||||
<dt class="col-sm-12">farbe</dt>
|
||||
<dd class="col-sm-12">255 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">fid</dt>
|
||||
<dd class="col-sm-12">38</dd>
|
||||
|
||||
<dt class="col-sm-12">flaeche</dt>
|
||||
<dd class="col-sm-12">58446.3111</dd>
|
||||
|
||||
<dt class="col-sm-12">flaechentyp</dt>
|
||||
<dd class="col-sm-12">Schraffur</dd>
|
||||
|
||||
<dt class="col-sm-12">gid</dt>
|
||||
<dd class="col-sm-12">30</dd>
|
||||
|
||||
<dt class="col-sm-12">last_change</dt>
|
||||
<dd class="col-sm-12">2018-12-11 08:39:06.973306+01</dd>
|
||||
|
||||
<dt class="col-sm-12">name</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size</dt>
|
||||
<dd class="col-sm-12">10</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_size_prt</dt>
|
||||
<dd class="col-sm-12">30.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width</dt>
|
||||
<dd class="col-sm-12">2</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_width_prt</dt>
|
||||
<dd class="col-sm-12">6.00</dd>
|
||||
|
||||
<dt class="col-sm-12">schraff_winkel</dt>
|
||||
<dd class="col-sm-12">45</dd>
|
||||
|
||||
<dt class="col-sm-12">umfang</dt>
|
||||
<dd class="col-sm-12">1041.7968</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissfarbe</dt>
|
||||
<dd class="col-sm-12">0 0 0</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke</dt>
|
||||
<dd class="col-sm-12">1</dd>
|
||||
|
||||
<dt class="col-sm-12">umrissstaerke_prt</dt>
|
||||
<dd class="col-sm-12">3.00</dd>
|
||||
|
||||
<dt class="col-sm-12">umrisstyp</dt>
|
||||
<dd class="col-sm-12">durchgezogen</dd>
|
||||
|
||||
<dt class="col-sm-12">veranstaltung</dt>
|
||||
<dd class="col-sm-12"></dd>
|
||||
|
||||
</dl>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- template for the WFS3 API leaflet map -->
|
||||
<div class="col-md-6">
|
||||
<div id="mapid" class="small"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery( document ).ready(function( $ ) {
|
||||
var map = L.map( 'mapid', { attributionControl: false } ).setView( [0, 0], 13 );
|
||||
L.control.attribution( { prefix: false } ).addTo( map );
|
||||
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
||||
}).addTo(map)
|
||||
$.get( "http://server.qgis.org/wfs3/collections/as-areas-short-name/items.geojson?offset=36&limit=6", function( data ) {
|
||||
var jl = L.geoJSON( data, {
|
||||
onEachFeature: function (feature, layer) {
|
||||
layer.bindPopup('<h1>'+feature.id +'</h1>');
|
||||
}
|
||||
}).addTo(map);
|
||||
map.setView(jl.getBounds().getCenter());
|
||||
if ( jl.getBounds().getEast() != jl.getBounds().getWest() && jl.getBounds().getNorth() != jl.getBounds().getSouth() )
|
||||
{
|
||||
map.fitBounds(jl.getBounds());
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!-- FOOTER TEMPLATE footer.html -->
|
||||
</div> <!-- //container -->
|
||||
|
||||
<footer class="footer bg-light py-4 d-flex flex-column justify-content-around align-items-center">
|
||||
<div class="container d-flex flex-row justify-content-between align-items-center w-100">
|
||||
<span><span class="text-muted small mr-2">powered by</span><a class="navbar-brand" href="https://www.qgis.org/" target="_blank">QGIS Server</a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<!-- Make sure you put this AFTER Leaflet's CSS -->
|
||||
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js"
|
||||
integrity="sha384-okbbMvvx/qfQkmiQKfd5VifbKZ/W8p1qIsWvE1ROPUfHWsDcC8/BnHohF7vPg2T6"
|
||||
crossorigin=""></script>
|
||||
<script>
|
||||
jQuery('.jref').jsonFormatter();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -59,12 +59,10 @@
|
||||
|
||||
|
||||
<div class="row">
|
||||
<nav aria-label="Page navigation example">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
|
||||
<!-- TODO: full pagination: li class="page-item"><a class="page-link" href="#">1</a></li>
|
||||
<li class="page-item"><a class="page-link" href="#">2</a></li>
|
||||
<li class="page-item"><a class="page-link" href="#">3</a></li-->
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
131
tests/testdata/qgis_server/api/test_wfs3_collections_items_testlayer_èé_1.html
vendored
Normal file
131
tests/testdata/qgis_server/api/test_wfs3_collections_items_testlayer_èé_1.html
vendored
Normal file
@ -0,0 +1,131 @@
|
||||
<!-- template for the WFS3 API getFeatures page -->
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css"
|
||||
integrity="sha384-o/2yZuJZWGJ4s/adjxVW71R+EO/LyCwdQfP5UWSgX/w87iiTXuvDZaejd3TsN7mf"
|
||||
crossorigin=""/>
|
||||
<link rel="stylesheet" href="/wfs3/static/style.css" />
|
||||
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
|
||||
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
|
||||
crossorigin="anonymous"></script>
|
||||
<link rel="stylesheet" href="/wfs3/static/jsonFormatter/jsonFormatter.min.css" crossorigin="anonymous">
|
||||
<script src="/wfs3/static/jsonFormatter/jsonFormatter.min.js" crossorigin="anonymous"></script>
|
||||
|
||||
<!-- template for the WFS3 API links list, to be included in HEAD -->
|
||||
|
||||
<link rel="alternate" href="http://server.qgis.org/wfs3/collections/testlayer%20%C3%A8%C3%A9/items.geojson?limit=0" title="Retrieve the features of the collection as GEOJSON" type="application/geo+json">
|
||||
|
||||
<link rel="self" href="http://server.qgis.org/wfs3/collections/testlayer%20%C3%A8%C3%A9/items.html?limit=0" title="Retrieve the features of the collection as HTML" type="text/html">
|
||||
|
||||
|
||||
|
||||
<title>Features in layer A test vector layer èé</title>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-light bg-light navbar-expand-sm">
|
||||
<div class="container">
|
||||
<div id="navbar" class="navbar-collapse collapse d-flex justify-content-between align-items-center">
|
||||
<ol class="breadcrumb bg-light my-0 pl-0">
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/" >Landing page</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/" >Collections</a></li>
|
||||
|
||||
<li class="breadcrumb-item"><a href="http://server.qgis.org/wfs3/collections/testlayer èé/" >A test vector layer èé</a></li>
|
||||
|
||||
<li class="breadcrumb-item active">
|
||||
Features in layer A test vector layer èé
|
||||
</li>
|
||||
</ol>
|
||||
<ul class="list-unstyled list-separated m-0 p-0 text-muted">
|
||||
|
||||
<li><a rel="alternate" href="http://server.qgis.org/wfs3/collections/testlayer%20%C3%A8%C3%A9/items.geojson?limit=0" target="_blank">GEOJSON</a></li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
<div class="container pt-4">
|
||||
<!-- END HEADER TEMPLATE header.html -->
|
||||
|
||||
|
||||
<div class="row">
|
||||
<nav aria-label="Page navigation">
|
||||
<ul class="pagination">
|
||||
|
||||
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<h1>Features in layer A test vector layer èé</h1>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!-- template for the WFS3 API leaflet map -->
|
||||
<div class="col-md-6">
|
||||
<div id="mapid" class="small"></div>
|
||||
|
||||
<script type="text/javascript">
|
||||
jQuery( document ).ready(function( $ ) {
|
||||
var map = L.map( 'mapid', { attributionControl: false } ).setView( [0, 0], 13 );
|
||||
L.control.attribution( { prefix: false } ).addTo( map );
|
||||
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
||||
}).addTo(map)
|
||||
$.get( "http://server.qgis.org/wfs3/collections/testlayer%20%C3%A8%C3%A9/items.geojson?limit=0", function( data ) {
|
||||
var jl = L.geoJSON( data, {
|
||||
onEachFeature: function (feature, layer) {
|
||||
layer.bindPopup('<h1>'+feature.id +'</h1>');
|
||||
}
|
||||
}).addTo(map);
|
||||
map.setView(jl.getBounds().getCenter());
|
||||
if ( jl.getBounds().getEast() != jl.getBounds().getWest() && jl.getBounds().getNorth() != jl.getBounds().getSouth() )
|
||||
{
|
||||
map.fitBounds(jl.getBounds());
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<!-- FOOTER TEMPLATE footer.html -->
|
||||
</div> <!-- //container -->
|
||||
|
||||
<footer class="footer bg-light py-4 d-flex flex-column justify-content-around align-items-center">
|
||||
<div class="container d-flex flex-row justify-content-between align-items-center w-100">
|
||||
<span><span class="text-muted small mr-2">powered by</span><a class="navbar-brand" href="https://www.qgis.org/" target="_blank">QGIS Server</a></span>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<!-- Optional JavaScript -->
|
||||
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
||||
<!-- Make sure you put this AFTER Leaflet's CSS -->
|
||||
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js"
|
||||
integrity="sha384-okbbMvvx/qfQkmiQKfd5VifbKZ/W8p1qIsWvE1ROPUfHWsDcC8/BnHohF7vPg2T6"
|
||||
crossorigin=""></script>
|
||||
<script>
|
||||
jQuery('.jref').jsonFormatter();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -37,6 +37,18 @@ Content-Type: application/geo+json
|
||||
"rel": "next",
|
||||
"title": "Next page",
|
||||
"type": "application/geo+json"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/testlayer èé/items?offset=0&limit=1",
|
||||
"rel": "first",
|
||||
"title": "First page",
|
||||
"type": "application/geo+json"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/testlayer èé/items?offset=2&limit=1",
|
||||
"rel": "last",
|
||||
"title": "Last page",
|
||||
"type": "application/geo+json"
|
||||
}
|
||||
],
|
||||
"numberMatched": 3,
|
||||
|
@ -43,6 +43,18 @@ Content-Type: application/geo+json
|
||||
"rel": "next",
|
||||
"title": "Next page",
|
||||
"type": "application/geo+json"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/testlayer èé/items?offset=0&limit=1",
|
||||
"rel": "first",
|
||||
"title": "First page",
|
||||
"type": "application/geo+json"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/testlayer èé/items?offset=2&limit=1",
|
||||
"rel": "last",
|
||||
"title": "Last page",
|
||||
"type": "application/geo+json"
|
||||
}
|
||||
],
|
||||
"numberMatched": 3,
|
||||
|
@ -37,6 +37,18 @@ Content-Type: application/geo+json
|
||||
"rel": "prev",
|
||||
"title": "Previous page",
|
||||
"type": "application/geo+json"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/testlayer èé/items?offset=0&limit=1",
|
||||
"rel": "first",
|
||||
"title": "First page",
|
||||
"type": "application/geo+json"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/testlayer èé/items?offset=2&limit=1",
|
||||
"rel": "last",
|
||||
"title": "Last page",
|
||||
"type": "application/geo+json"
|
||||
}
|
||||
],
|
||||
"numberMatched": 3,
|
||||
|
74
tests/testdata/qgis_server/api/test_wfs3_collections_items_testlayer_èé_limit_2.json
vendored
Normal file
74
tests/testdata/qgis_server/api/test_wfs3_collections_items_testlayer_èé_limit_2.json
vendored
Normal file
@ -0,0 +1,74 @@
|
||||
Content-Type: application/geo+json
|
||||
|
||||
{
|
||||
"features": [
|
||||
{
|
||||
"geometry": {
|
||||
"coordinates": [
|
||||
8.203496,
|
||||
44.901483
|
||||
],
|
||||
"type": "Point"
|
||||
},
|
||||
"id": "0",
|
||||
"properties": {
|
||||
"id": 1,
|
||||
"name": "one",
|
||||
"utf8nameè": "one èé"
|
||||
},
|
||||
"type": "Feature"
|
||||
},
|
||||
{
|
||||
"geometry": {
|
||||
"coordinates": [
|
||||
8.203547,
|
||||
44.901436
|
||||
],
|
||||
"type": "Point"
|
||||
},
|
||||
"id": "1",
|
||||
"properties": {
|
||||
"id": 2,
|
||||
"name": "two",
|
||||
"utf8nameè": "two àò"
|
||||
},
|
||||
"type": "Feature"
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/testlayer%20%C3%A8%C3%A9/items.geojson?limit=2",
|
||||
"rel": "self",
|
||||
"title": "Retrieve the features of the collection as GEOJSON",
|
||||
"type": "application/geo+json"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/testlayer%20%C3%A8%C3%A9/items.html?limit=2",
|
||||
"rel": "alternate",
|
||||
"title": "Retrieve the features of the collection as HTML",
|
||||
"type": "text/html"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/testlayer èé/items?offset=2&limit=2",
|
||||
"rel": "next",
|
||||
"title": "Next page",
|
||||
"type": "application/geo+json"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/testlayer èé/items?offset=0&limit=2",
|
||||
"rel": "first",
|
||||
"title": "First page",
|
||||
"type": "application/geo+json"
|
||||
},
|
||||
{
|
||||
"href": "http://server.qgis.org/wfs3/collections/testlayer èé/items?offset=2&limit=2",
|
||||
"rel": "last",
|
||||
"title": "Last page",
|
||||
"type": "application/geo+json"
|
||||
}
|
||||
],
|
||||
"numberMatched": 3,
|
||||
"numberReturned": 2,
|
||||
"timeStamp": "2019-07-05T12:27:07Z",
|
||||
"type": "FeatureCollection"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user