openlayers 4.6.5距離測定と面積測定を実現する。
8392 ワード
本論文の例では、Onelayers 4.4.5距離測定と面積測定の具体的なコードを共有しています。参考にしてください。具体的な内容は以下の通りです。
バージョン:openlayers 4.6.5
効果図:
エピソード:
元々はolオフィシャルで提供されている測定例を使っていますが、いいです。でもプロジェクトの中に置いてから。測定パターンはなぜ出られないのか分かりませんが、原因を探しても見つけられませんでした。単独で一つのhtmlの中では大丈夫です。ですから、プロジェクトのどこと衝突するかと推測していますが、問題はまだ見つかっていません。プロジェクトも急なので、自分で文字表記部門の様式を実現するしかないです。
実現原理:
量測定機能はやはりol例の提供するソースコードを使っています。修正部分は主にこのブロックを表示しています。また、いつでもこの表示を追加してから、この表示を削除すればいいです。
完全なjsコードは以下の通りです。
バージョン:openlayers 4.6.5
効果図:
エピソード:
元々はolオフィシャルで提供されている測定例を使っていますが、いいです。でもプロジェクトの中に置いてから。測定パターンはなぜ出られないのか分かりませんが、原因を探しても見つけられませんでした。単独で一つのhtmlの中では大丈夫です。ですから、プロジェクトのどこと衝突するかと推測していますが、問題はまだ見つかっていません。プロジェクトも急なので、自分で文字表記部門の様式を実現するしかないです。
実現原理:
量測定機能はやはりol例の提供するソースコードを使っています。修正部分は主にこのブロックを表示しています。また、いつでもこの表示を追加してから、この表示を削除すればいいです。
完全なjsコードは以下の通りです。
var draw;
var click=false;
var output=0;
var vector;
var source;
var lastPolygonLabelFeature;//
var lastLengthLabelFeature;//
$(
function(){
$("#measureDistance").click(function(){
if(draw){
map.removeInteraction(draw);
}
addInteraction("length");
setMeasureCur();
})
$("#measureArea").click(function(){
if(draw){
map.removeInteraction(draw);
}
addInteraction("area");
setMeasureCur();
})
$("#measureClear").click(function(){
map.removeInteraction(draw);
vector.setSource(null);
source=new ol.source.Vector();
vector.setSource(source);
lastPolygonLabelFeature=null;
lastLengthLabelFeature=null;
click=false;
sketch = null;
output="0";
reSetCur();
})
function setMeasureCur(){
$('#map').css({
cursor:"url(../../static/images/measureIcon/measure.cur), auto"
});
}
function reSetCur(){
$('#map').css('cursor','default');
}
source = new ol.source.Vector();
vector = new ol.layer.Vector({
source: source,
style: new ol.style.Style({
fill: new ol.style.Fill({//
color: 'rgba(255, 0, 0, 0.1)'
}),
stroke: new ol.style.Stroke({
color: 'rgb(255,116,3)',
width: 2
}),
image: new ol.style.Circle({
radius: 3,
stroke: new ol.style.Stroke({
color: 'rgba(255, 0, 0,1)',
width: 2
}),
fill: new ol.style.Fill({
color: 'rgba(255,255,255)'
})
})
})
});
map.addLayer(vector);
var sketch;
var pointerMoveHandler = function(evt) {
if (evt.dragging) {
return;
}
var Coord;
if(sketch){
var geom = sketch.getGeometry();
if (geom instanceof ol.geom.Polygon) {
if(lastPolygonLabelFeature){
//
source.removeFeature(lastPolygonLabelFeature);
}
Coord = geom.getInteriorPoint().getCoordinates();
// ol.Feature
var newFeature = new ol.Feature({
geometry: new ol.geom.Point(Coord), //
name: output
});
lastPolygonLabelFeature=newFeature;
newFeature.setStyle(createLabelStyle(newFeature,0,0));
} else if (geom instanceof ol.geom.LineString) {
if(lastLengthLabelFeature){
source.removeFeature(lastLengthLabelFeature);
}
Coord = geom.getLastCoordinate();
// ol.Feature
var newFeature = new ol.Feature({
geometry: new ol.geom.Point(Coord), //
name: output
});
lastLengthLabelFeature=newFeature;
newFeature.setStyle(createLabelStyle(newFeature,35,-10));
}
//
source.addFeature(newFeature);
}
};
map.on('pointermove', pointerMoveHandler);
map.on('click', function(evt){
var coordinate = evt.coordinate; //
console.log(coordinate);
if(output=="0"){
lastPolygonLabelFeature=null;
if(lastLengthLabelFeature){
source.removeFeature(lastLengthLabelFeature);
lastLengthLabelFeature=null;
}
return;
}
var Coord;
if(sketch){
var geom = sketch.getGeometry();
if (geom instanceof ol.geom.Polygon) {
if(lastPolygonLabelFeature){
source.removeFeature(lastPolygonLabelFeature);
}
Coord = geom.getInteriorPoint().getCoordinates();
// ol.Feature
var newFeature = new ol.Feature({
geometry: new ol.geom.Point(Coord), //
name: output
});
lastPolygonLabelFeature=newFeature;
newFeature.setStyle(createLabelStyle(newFeature,0,0)); //
source.addFeature(newFeature);
} else if (geom instanceof ol.geom.LineString) {
Coord = geom.getLastCoordinate();
// ol.Feature
var newFeature = new ol.Feature({
geometry: new ol.geom.Point(Coord), //
name: output
});
newFeature.setStyle(createLabelStyle(newFeature,35,-10)); //
source.addFeature(newFeature);
}
var pointFeature = new ol.Feature({
geometry: new ol.geom.Point(coordinate), //
name: output
});
source.addFeature(pointFeature);
}
});
// , image ol.style.Icon
function createLabelStyle(feature,offsetX,offsetY){
return new ol.style.Style({
// image: new ol.style.Icon({
// anchor: [0.5, 60], //
// anchorOrigin:'top-right', //
// anchorXUnits: 'fraction', // X
// anchorYUnits: 'pixels', // Y
// offsetOrigin: 'top-right', //
// opacity: 0.75,
// src: 'OL3Demo/images/label/blueIcon.png' // URL
// }),
text: new ol.style.Text({
textAlign: 'center', //
textBaseline: 'middle', //
font: 'normal 10px sans-serif', //
text: feature.get('name'), //
fill: new ol.style.Fill({ // ( )
color: 'white'
}),
stroke: new ol.style.Stroke({
color: 'black',
width: 5
}),
offsetX:offsetX,
offsetY:offsetY
})
});
}
function addInteraction(drawType) {
var type = (drawType== 'area' ? 'Polygon' : 'LineString');
draw = new ol.interaction.Draw({
source: source,
type: type,
style: new ol.style.Style({
fill: new ol.style.Fill({
color: 'rgba(255, 0, 0, 0.2)'
}),
stroke: new ol.style.Stroke({
color: 'rgb(255,116,3)',
// lineDash: [10, 10],//
width: 2
}),
image: new ol.style.Circle({
radius: 5,
stroke: new ol.style.Stroke({
color: 'rgba(255, 0, 0, 0.1)'
}),
fill: new ol.style.Fill({
color: 'rgba(255,116,3, 0.3)'
})
})
})
});
map.addInteraction(draw);
var listener;
draw.on('drawstart',
function(evt) {
// set sketch
sketch = evt.feature;
listener = sketch.getGeometry().on('change', function(evt) {
var geom = evt.target;
if (geom instanceof ol.geom.Polygon) {
output = formatArea(geom);
} else if (geom instanceof ol.geom.LineString) {
output = formatLength(geom);
}
});
}, this);
draw.on('drawend',
function() {
// unset sketch
sketch = null;
ol.Observable.unByKey(listener);
output="0";
}, this);
}
var formatLength = function(line) {
var length = ol.Sphere.getLength(line);
var output;
if (length > 100) {
output = (Math.round(length / 1000 * 100) / 100) +
' ' + ' ';
} else {
output = (Math.round(length * 100) / 100) +
' ' + ' ';
}
return output;
};
var formatArea = function(polygon) {
var area = ol.Sphere.getArea(polygon);
var output;
if (area > 10000) {
output = (Math.round(area / 1000000 * 100) / 100) +
' ' + ' ';
} else {
output = (Math.round(area * 100) / 100) +
' ' + ' ';
}
return output;
};
})
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。