ol-ext/examples/search/map.control.searchfeature.html
2018-02-10 10:12:52 +01:00

144 lines
4.9 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<!----------------------------------------------------------
Copyright (c) 2017-2018 Jean-Marc VIGLINO,
released under CeCILL-B (french BSD like) licence: http://www.cecill.info/
------------------------------------------------------------>
<title>ol-ext: Search feature control</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Control to add a grid reference to a map." />
<meta name="keywords" content="ol3, control, search, vector, feature" />
<!-- FontAwesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- jQuery -->
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<!-- Openlayers -->
<link rel="stylesheet" href="https://openlayers.org/en/master/css/ol.css" />
<script type="text/javascript" src="https://openlayers.org/en/master/build/ol.js"></script>
<!-- ol-ext -->
<link rel="stylesheet" href="../../dist/ol-ext.css" />
<script type="text/javascript" src="../../dist/ol-ext.js"></script>
<link rel="stylesheet" href="../style.css"/>
</head>
<body >
<a href="https://github.com/Viglino/ol3-ext"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
<a href="../../index.html">
<h1>ol-ext: Search feature control</h1>
</a>
<div class="info">
<i>ol.control.SearchFeature</i> is a control to search features in a source.
<ul>
<li>
You have to define a <i>ol.source.Vector</i> to search in.
</li>
<li>
You can define a <i>property</i> that will be used to search in or define a getTitle/getSearchString function.
</li>
<li>
You can define a <i>getTitle</i> to get the string that will be displayed in the menu
</li>
<li>
You can define a <i>getSearchString</i> function that will take a feature and
return a string to search in.
</li>
</ul>
<br/>
<i>ol.control.SearchFeature</i> use the <a href="map.control.search.html">ol.control.Search</a> control.
</div>
<!-- DIV pour la carte -->
<div id="map" style="width:600px; height:400px;"></div>
<div class="options">
<h2>Options:</h2>
<ul>
<li>
maxInputs: <input type="number" onchange="search.set('maxItems', Number(this.value));" style="width:3em;" value="10" />
</li>
<li>
search property:
<select onchange="search.set('property',this.value); search.search();">
<option value="commune">commune</option>
<option value="region">region</option>
<option value="text">text</option>
</select>
</li>
</ul>
<i>Use the search control to start a new search.</i>
</div>
<script type="text/javascript">
// Layers
var layers = [
new ol.layer.Tile({
name: "Natural Earth",
minResolution: 306,
source: new ol.source.XYZ(
{ url: 'https://{a-d}.tiles.mapbox.com/v3/mapbox.natural-earth-hypso-bathy/{z}/{x}/{y}.png',
attributions: [new ol.Attribution({ html: '&copy; <a href="https://www.mapbox.com/map-feedback/">Mapbox</a> ' })]
})
})
]
// The map
var map = new ol.Map
({ target: 'map',
view: new ol.View
({ zoom: 5,
center: [166326, 5992663]
}),
interactions: ol.interaction.defaults({ altShiftDragRotate:false, pinchRotate:false }),
layers: layers
});
// GeoJSON layer
var vectorSource = new ol.source.Vector(
{ url: '../data/fond_guerre.geojson',
projection: 'EPSG:3857',
format: new ol.format.GeoJSON(),
attributions: [new ol.Attribution({ html: "&copy; <a href='https://www.data.gouv.fr/fr/datasets/fonds-de-la-guerre-14-18-extrait-de-la-base-memoire/'>data.gouv.fr</a>" })],
logo:"https://www.data.gouv.fr/s/avatars/37/e56718abd4465985ddde68b33be1ef.jpg"
});
map.addLayer(new ol.layer.Vector(
{ name: 'Fonds de guerre 14-18',
source: vectorSource,
style: new ol.style.Style({ image: new ol.style.Icon({ src:"../data/camera.png", scale: 0.8 }) })
}));
// Control Select
var select = new ol.interaction.Select({});
map.addInteraction(select);
// Set the control grid reference
var search = new ol.control.SearchFeature(
{ //target: $(".options").get(0),
source: vectorSource,
property: $(".options select").val()
});
map.addControl (search);
// Select feature when click on the reference index
search.on('select', function(e)
{ select.getFeatures().clear();
select.getFeatures().push (e.search);
var p = e.search.getGeometry().getFirstCoordinate();
map.getView().animate({ center:p });
});
</script>
</body>
</html>