56 lines
1.8 KiB
HTML
56 lines
1.8 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title></title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.0/dist/leaflet.css" />
|
|
|
|
<link rel="stylesheet" href="../src/leaflet-search.css" />
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<h3><a href="../"><big>◄</big> Leaflet.Control.Search</a></h3>
|
|
|
|
<h4>AJAX Example(by jQuery): <em>search locations by Ajax request</em></h4>
|
|
<div id="map"></div>
|
|
|
|
<div id="post-it">
|
|
<b>Search values:</b><br />
|
|
black, blue, cyan, darkblue, darkred, darkgray, gray, gree, red, yellow, white
|
|
</div>
|
|
|
|
<script src="https://unpkg.com/jquery@3.3.1/dist/jquery.js"></script>
|
|
<script src="https://unpkg.com/leaflet@1.3.0/dist/leaflet.js"></script>
|
|
<script src="../src/leaflet-search.js"></script>
|
|
<script>
|
|
|
|
var map = new L.Map('map', {zoom: 9, center: new L.latLng([41.575730,13.002411]) });
|
|
|
|
map.addLayer(new L.TileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png')); //base layer
|
|
|
|
function searchByAjax(text, callResponse)//callback for 3rd party ajax requests
|
|
{
|
|
return $.ajax({
|
|
url: 'search.php', //read comments in search.php for more information usage
|
|
type: 'GET',
|
|
data: {q: text},
|
|
dataType: 'json',
|
|
success: function(json) {
|
|
callResponse(json);
|
|
}
|
|
});
|
|
}
|
|
|
|
map.addControl( new L.Control.Search({sourceData: searchByAjax, text:'Color...', markerLocation: true}) );
|
|
|
|
</script>
|
|
|
|
<div id="copy"><a href="https://opengeo.tech/">Website</a> • <a rel="author" href="https://opengeo.tech/stefano-cudini/">Stefano Cudini</a></div>
|
|
|
|
<script type="text/javascript" src="/labs-common.js"></script>
|
|
|
|
</body>
|
|
</html>
|