* (Closes #2360) make Layer.addOptions call initResolutions if necessary * (Closes #2656) no way to pass read options from protocol to format * (Closes #2751) Changes in languages: "es" and "ca". * (Closes #2814) SLDSelect control tests failing * (Closes #2815) Cluster Strategy should not destroy all features Also: * Change examples to use OSGeo, rather than MetaCarta, servers. * Change copyright statements to correctly state joint copyright in the project, rather than MetaCarta copyright. git-svn-id: http://svn.openlayers.org/branches/openlayers/2.10@10715 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
50 lines
2.0 KiB
HTML
50 lines
2.0 KiB
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>OpenLayers Vector Behavior Example</title>
|
|
<link rel="stylesheet" href="../theme/default/style.css" type="text/css" />
|
|
<link rel="stylesheet" href="style.css" type="text/css" />
|
|
<script src="../lib/OpenLayers.js"></script>
|
|
<script type="text/javascript">
|
|
var map;
|
|
|
|
function init(){
|
|
map = new OpenLayers.Map('map');
|
|
var wms = new OpenLayers.Layer.WMS(
|
|
"OpenLayers WMS", "http://vmap0.tiles.osgeo.org/wms/vmap0",
|
|
{layers: 'basic'}
|
|
);
|
|
|
|
var layer = new OpenLayers.Layer.Vector("GML", {
|
|
strategies: [new OpenLayers.Strategy.Fixed()],
|
|
protocol: new OpenLayers.Protocol.HTTP({
|
|
url: "gml/polygon.xml",
|
|
format: new OpenLayers.Format.GML()
|
|
})
|
|
});
|
|
|
|
map.addLayers([wms, layer]);
|
|
map.zoomToExtent(new OpenLayers.Bounds(
|
|
-3.92, 44.34, 4.87, 49.55
|
|
));
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="init()">
|
|
<h1 id="title">Vector Behavior Example (Fixed/HTTP/GML)</h1>
|
|
<p id="shortdesc">
|
|
Vector layer with a Fixed strategy, HTTP protocol, and GML format.
|
|
</p>
|
|
<div id="map" class="smallmap"></div>
|
|
<div id="docs">
|
|
The vector layer shown uses the Fixed strategy, the HTTP protocol,
|
|
and the GML format.
|
|
The Fixed strategy is a simple strategy that fetches features once
|
|
and never re-requests new data.
|
|
The HTTP protocol makes requests using HTTP verbs. It should be
|
|
constructed with a url that corresponds to a collection of features
|
|
(a resource on some server).
|
|
The GML format is used to serialize features.
|
|
</div>
|
|
</body>
|
|
</html>
|