JSFiddle - React, Tailwind, and code Playground
by shitao1988
HTML
<link rel="stylesheet" href="http://openlayers.org/en/v3.15.1/css/ol.css">
<script src="http://openlayers.org/en/v3.15.1/build/ol.js"></script>
<div id="map" class="map"></div>
<div id="info"> </div>
JavaScript
function makeGradient() {
var cnv = document.createElement('canvas');
var ctx = cnv.getContext('2d');
var gradient = ctx.createLinearGradient(0, 0, 1000, 0);
gradient.addColorStop(0,'rgb(255, 0, 0)');
gradient.addColorStop(1,'rgb(128, 128, 128)');
return gradient;
}
var map = new ol.Map({
layers: [
new ol.layer.Tile({
source: new ol.source.MapQuest({layer: 'sat'})
}),
new ol.layer.Image({
source: new ol.source.ImageVector({
source: new ol.source.Vector({
url: 'http://openlayers.org/en/master/examples/data/geojson/countries.geojson',
format: new ol.format.GeoJSON()
}),
style: new ol.style.Style({
fill: new ol.style.Fill({
//color: 'rgba(255, 255, 255, 0.6)'
color: makeGradient()
}),
stroke: new ol.style.Stroke({
color: '#319FD3',
width: 1
})
})
})
})
],
target: 'map',
view: new ol.View({
center: [0, 0],
zoom: 1
})
});
var featureOverlay = new ol.layer.Vector({
source: new ol.source.Vector(),
map: map,
style: new ol.style.Style({
stroke: new ol.style.Stroke({
color: '#f00',
width: 1
}),
fill: new ol.style.Fill({
color: 'rgba(255,0,0,0.1)'
})
})
});
var highlight;
var displayFeatureInfo = function(pixel) {
var feature = map.forEachFeatureAtPixel(pixel, function(feature) {
return feature;
});
var info = document.getElementById('info');
if (feature) {
info.innerHTML = feature.getId() + ': ' + feature.get('name');
} else {
info.innerHTML = ' ';
}
if (feature !== highlight) {
if (highlight) {
featureOverlay.getSource().removeFeature(highlight);
}
if (feature) {
featureOverlay.getSource().addFeature(feature);
}
highlight = feature;
}
};
map.on('pointermove', function(evt) {
if (evt.dragging) {
return;
}
var pixel =...