arcgis layer to html
입력 텍스트 상자에서
attribute
값을 표시 할
를 HTML로?
최고 감사합니다.디스플레이 속성 값은 <code>javascript</code></p>가 <p>사람이 문제에 좀 도와 줄래 사용하여 텍스트 상자
arcgis layer to html
입력 텍스트 상자에서
attribute
값을 표시 할
를 HTML로?
최고 감사합니다.디스플레이 속성 값은 <code>javascript</code></p>가 <p>사람이 문제에 좀 도와 줄래 사용하여 텍스트 상자
그냥 오른쪽 상단 모서리에
<link rel="stylesheet" type="text/css" href="https://js.arcgis.com/3.19/esri/css/esri.css">
<style>
html, body, #mapDiv {
height: 100%;
padding: 0;
margin: 0;
}
#inputAttribute {
position: absolute;
top: 10px;
right: 10px;
width: 300px;
}
</style>
<script>var dojoConfig = { parseOnLoad:true };</script>
<script src="https://js.arcgis.com/3.19compact/"></script>
<script>
require(["esri/map", "esri/layers/FeatureLayer", "dojo/on", "dojo/dom", "dojo/domReady!"], function(Map, FeatureLayer, On, Dom) {
var node = Dom.byId('inputAttribute');
var map = new Map("mapDiv", {
center: [-122.41, 37.78],
zoom: 17,
basemap: "topo"
});
var featureLayer = new FeatureLayer("https://services.arcgis.com/V6ZHFr6zdgNZuVG0/arcgis/rest/services/Street_Trees/FeatureServer/0",{
outFields: ["qSpecies"]
});
map.addLayer(featureLayer);
On(featureLayer, 'click', function (e) {
node.value = e.graphic.attributes.qSpecies;
});
});
</script>
<div id="mapDiv"></div>
<input type="text" name="attribut" id="inputAttribute">
덕분에 많은 regeads을 InputText]를을 채울 것입니다, 나무에 클릭 –
투표를 추가 하시겠습니까? 내 대답이 유효합니까? 나중에 sahbi :) – LMokrane
당신이 시도 것과 코드의 조각을 제공 할 수 –