Ero sivun ”Widget:Ol3MuniMap” versioiden välillä
Järvi-meriwikistä
p (Tekstin korvaus – ”//cdn.polyfill.io/v2/polyfill.min.js?features=requestAnimationFrame,Element.prototype.classList,URL” muotoon ”https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js”) |
|||
(9 välissä olevaa versiota samalta käyttäjältä ei näytetä) | |||
Rivi 2: | Rivi 2: | ||
<link rel="stylesheet" href="/scripts/ol3/ol.css" type="text/css"> | <link rel="stylesheet" href="/scripts/ol3/ol.css" type="text/css"> | ||
− | <script src="// | + | <script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js"></script> |
<script src="/scripts/ol3/ol.js"></script> | <script src="/scripts/ol3/ol.js"></script> | ||
<script src="/scripts/proj4js/dist/proj4.js"></script> | <script src="/scripts/proj4js/dist/proj4.js"></script> | ||
Rivi 45: | Rivi 45: | ||
function gotSeaVPDs(request) { | function gotSeaVPDs(request) { | ||
− | + | ||
− | |||
− | |||
var layersArr = []; | var layersArr = []; | ||
Rivi 54: | Rivi 52: | ||
'type': 'anyrest', | 'type': 'anyrest', | ||
'name': 'Kunta', | 'name': 'Kunta', | ||
− | 'restUrl': '//paikkatieto.ymparisto.fi/arcgis/rest/services/ | + | 'restUrl': '//paikkatieto.ymparisto.fi/arcgis/rest/services/sykemaps/GISAineistot2/MapServer/0/query', |
'search': "KuntaNimi = '" + muni + "'", | 'search': "KuntaNimi = '" + muni + "'", | ||
'selectable': false, | 'selectable': false, | ||
'zoomToExtent': true, | 'zoomToExtent': true, | ||
'bbox': false, | 'bbox': false, | ||
+ | 'fillColor': 'rgba( 0, 0, 0, 0 )', | ||
+ | 'strokeColor': 'rgba( 200, 100, 100, 0.5 )', | ||
+ | 'strokeWidth': 5 | ||
//'attribution': '<a href="//wwwp2.ymparisto.fi/kayttoehdot.html">Ympäristöhallinnon paikkatietoaineistot</a>', | //'attribution': '<a href="//wwwp2.ymparisto.fi/kayttoehdot.html">Ympäristöhallinnon paikkatietoaineistot</a>', | ||
}); | }); | ||
− | + | ||
− | if ( request.query.results | + | if ( typeof request.query.results != 'undefined' ) { |
+ | |||
+ | var vpdsearchA = []; | ||
− | |||
− | |||
− | |||
− | |||
for ( var r in request.query.results ) { | for ( var r in request.query.results ) { | ||
vpdsearchA.push( "VPDTunnus = '" + request.query.results[ r ].printouts.VPDTunnus[0] + "'" ); | vpdsearchA.push( "VPDTunnus = '" + request.query.results[ r ].printouts.VPDTunnus[0] + "'" ); | ||
} | } | ||
− | + | if ( vpdsearchA.length > 0 ) { | |
− | + | layersArr.push( { | |
− | + | 'id': 'seavpd', | |
− | + | 'type': 'anyrest', | |
− | + | 'name': 'Merialueet', | |
− | + | 'restUrl': '//paikkatieto.ymparisto.fi/arcgis/rest/services/INSPIRE/SYKE_AlueidenHallintaJaRajoitukset1/MapServer/3/query', | |
− | + | 'search': vpdsearchA.join( ' OR ' ), | |
− | + | 'selectable': true, | |
− | + | 'zoomToExtent': false, | |
− | + | 'bbox': false, | |
− | + | //'attribution': '<a href="//wwwp2.ymparisto.fi/kayttoehdot.html">Ympäristöhallinnon paikkatietoaineistot</a>', | |
− | + | }); | |
+ | } | ||
} | } | ||
Rivi 114: | Rivi 114: | ||
}); | }); | ||
− | layersArr.push({ 'type': 'geoloc', 'name': 'Sijaintisi', 'show': true, 'center': false, 'zoom': 12, 'track': false }); | + | //layersArr.push({ 'type': 'geoloc', 'name': 'Sijaintisi', 'show': true, 'center': false, 'zoom': 12, 'track': false }); |
// do the base map with these settings | // do the base map with these settings |