|
POST
|
Hello Is there any way to get list of services used by applications/maps we don't have a track/list maintained from long and we were trying to find unused or duplicates services Any suggestions . Thanks
... View more
07-16-2019
09:54 AM
|
1
|
4
|
2892
|
|
POST
|
Hi I have history of some x number of vehicles, like which route it travelled(data in polyline format) I'm trying to figure out how to calculate/find most used route by these vehicles. I do know about heat map, but I'm interested to find particular most used route's by vehicles. Is there any way to calculate, Any suggestions please Thanks
... View more
05-14-2019
08:08 AM
|
0
|
1
|
686
|
|
POST
|
Hi Daniel Cota Thanks for your reply Yes, I was looking for Header Parameter Name:Value List property to be automatically/programmatically updating. In my case, I will pass token in the Header Parameter Name:Value property, token will expire in a week, so I created a separate code to generate token and store it in local file. so am planning to get the token value from the file and automatically update in input connector. can this be achieved or I need to create a new transport?
... View more
04-23-2019
08:02 AM
|
0
|
0
|
2228
|
|
POST
|
Hi I was looking for is there anyway to run a job and update a token(Header Parameter Name: Value lIst) in input connector type "poll an external website for json". how to get control of input connector and update the fields in it. Thanks In advance
... View more
04-22-2019
06:52 AM
|
1
|
4
|
2625
|
|
POST
|
I did it in this way function generateSVGURL(number) { let prefix = 'data:image/svg+xml;base64,'; let svgStr = '<svg xmlns="http://www.w3.org/2000/svg"><circle cx="8" cy="8" r="8" fill="#000000"/>' + '<text x="4" y="8" font-family="Verdana" font-size="8pt" fill="#FFFFFF" dy="0.35em">' + number + '</text></svg>'; return prefix + btoa(svgStr); } var symbol = new PictureMarkerSymbol({ url: generateSVGURL("A"), width: 12, height: 12 }); var BRenderer = new SimpleRenderer(symbol); fservice.setRenderer(BRenderer);
... View more
03-28-2019
08:22 AM
|
1
|
0
|
1412
|
|
POST
|
Hi I used below code to draw a red color circle var PendingSymbol = new esri.symbol.SimpleMarkerSymbol(esri.symbol.SimpleMarkerSymbol.STYLE_CIRCLE, 15, new esri.symbol.SimpleLineSymbol(), new dojo.Color([255, 0, 0, 1])); var BRenderer = new SimpleRenderer(PendingSymbol); fservice.setRenderer(BRenderer); I was looking is it possible to keep a letter inside the circle Thanks
... View more
03-28-2019
07:31 AM
|
0
|
2
|
1707
|
|
POST
|
I tried with below code but it didn't worked var uvr2 = { type: "colorInfo", field: "event_type", uniqueValueInfos: [{ value: "available", symbol: LiSymbol }, { value: "reserved", symbol: BoSymbol} , { value: "unavailable", symbol: ltSymbol}, { value: "removed", symbol: ltSymbol}] }; streamLayer = new StreamLayer(url, { renderer: uvr2, purgeOptions: { displayCount: 5000, age: 2.5 } }); map.addLayer(streamLayer);
... View more
03-26-2019
01:57 PM
|
0
|
0
|
787
|
|
POST
|
hi In stream layer service, I have a "type" field I was trying to make if type is "a" then color blue else if "b" then red else green.......... streamLayer = new StreamLayer(url, { purgeOptions: { displayCount: 5000, age: 2.5 } }); map.addLayer(streamLayer); how to assign color for streamLayer? Thanks
... View more
03-26-2019
12:29 PM
|
0
|
2
|
870
|
|
POST
|
it solved by below lines in stream layer object purgeOptions: { displayCount: 2000, age: 2.5 }
... View more
03-18-2019
11:17 AM
|
0
|
0
|
1465
|
|
POST
|
Robert, I created a custom html page, where I need to add clear graphics line <!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no" />
<title>StreamLayer-Simple</title>
<link rel="stylesheet" href="https://js.arcgis.com/3.27/esri/css/esri.css">
<style type="text/css">
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
.banner {
margin-top: 5px;
margin-bottom: 5px;
color: #000080;
font-size: 2em;
font-weight: bold;
}
#mapDiv {
height: 90%;
width: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
</style>
<script src="https://js.arcgis.com/3.27/"></script>
</head>
<body>
<div class="banner">
Scooter Data Stream Feed
</div>
<div id="mapDiv"></div>
</body>
<script type="text/javascript">
require([
"esri/map",
"esri/InfoTemplate",
"esri/layers/StreamLayer",
"dojo/domReady!"
], function(Map, InfoTemplate, StreamLayer){
var url = "http://abc.123.com/arcgis/rest/services/StatusinputStream/StreamServer";
var streamLayer = new StreamLayer(url, {
infoTemplate: new InfoTemplate("Attributes", "${*}")
});
var map = new Map("mapDiv", {
basemap: "topo",
center: [-90, 50],
zoom: 13
});
map.addLayer(streamLayer);
});
</script>
</html>
... View more
03-18-2019
10:56 AM
|
0
|
1
|
1465
|
|
POST
|
I downloaded WAB code from online, I'm trying to clear graphics clear in that code
... View more
03-18-2019
09:59 AM
|
0
|
3
|
1465
|
|
POST
|
hi Robert thanks for your reply, can we able to add this line in WAB code or need to create a custom application Thanks
... View more
03-18-2019
09:22 AM
|
0
|
5
|
1465
|
|
POST
|
Hi I have a stream layer configured in web app builder. data is related to ongoing trips tracking. stream layer only gets data related to active trips. map is not clearing previous trips data(point) can anyone suggest me where to clear the map graphics Thanks
... View more
03-18-2019
08:55 AM
|
0
|
8
|
1555
|
|
POST
|
Hi I have a stream layer configured in web app builder. data is related to ongoing trips tracking. stream layer only gets data related to active trips. map is not clearing previous trips data(point) can anyone suggest me where to clear the map graphics Thanks
... View more
03-18-2019
08:54 AM
|
0
|
1
|
1051
|
|
POST
|
, instead of copying files and publishing all again, I have some 100+ services
... View more
02-26-2019
06:18 AM
|
0
|
1
|
1576
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-22-2019 06:52 AM | |
| 1 | 08-27-2018 09:37 AM | |
| 1 | 08-20-2019 01:12 PM | |
| 1 | 12-18-2018 12:17 PM | |
| 1 | 03-28-2019 08:22 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-22-2024
08:32 PM
|