|
POST
|
.introjs-tooltip {
box-sizing: content-box;
position: absolute;
visibility: visible;
padding: 10px;
background-color: white;
min-width: 200px;
max-width: 300px;
border-radius: 3px;
box-shadow: 0 1px 10px rgba(0,0,0,.4);
-webkit-transition: opacity 0.1s ease-out;
-moz-transition: opacity 0.1s ease-out;
-ms-transition: opacity 0.1s ease-out;
-o-transition: opacity 0.1s ease-out;
transition: opacity 0.1s ease-out;
}
... View more
11-23-2018
07:14 AM
|
0
|
10
|
2204
|
|
POST
|
Have a tooltip that works well. Just having some trouble to effectively change the text color. Code can be found below // create node for the tooltip
var tip = "Click on problem location";
var tooltip = dojo.create("div", { "class": "tooltip", "innerHTML": tip }, map.container);
dojo.style(tooltip, "position", "fixed");
// update the tooltip as the mouse moves over the map
dojo.connect(map, "onMouseMove", function(evt) {
var px, py;
if (evt.clientX || evt.pageY) {
px = evt.clientX;
py = evt.clientY;
} else {
px = evt.clientX + dojo.body().scrollLeft - dojo.body().clientLeft;
py = evt.clientY + dojo.body().scrollTop - dojo.body().clientTop;
}
// dojo.style(tooltip, "display", "none");
tooltip.style.display = "none";
dojo.style(tooltip, { left: (px + 15) + "px", top: (py) + "px" });
// dojo.style(tooltip, "display", "");
tooltip.style.display = "";
// console.log("updated tooltip pos.");
});
// hide the tooltip the cursor isn't over the map
dojo.connect(map, "onMouseOut", function(evt){
tooltip.style.display = "none";
});
... View more
11-22-2018
10:36 AM
|
0
|
12
|
3312
|
|
BLOG
|
If worst comes to worse, do you have the option to strictly use the web app instead of the field app for your users?
... View more
11-21-2018
07:33 AM
|
0
|
0
|
14037
|
|
BLOG
|
I've tried your link in the stripped down form (arcgis-survey123://?itemID=cdbc37f68e2742b29cdb80470e72496e) on both IE and Firefox and it opens my field app on my Windows machine as expected.
... View more
11-21-2018
06:49 AM
|
0
|
0
|
14037
|
|
POST
|
Need to calculate to pull the objectID from the Survey. Tried ${objectId} with no success.
... View more
11-14-2018
07:57 AM
|
0
|
6
|
7510
|
|
POST
|
I never want the repeat to show to the user. What I have done is set the relevance for the repeat to something that doesn't exist and it seems to still create the repeat. In the end I want to pass in related data into the repeat using REST from another survey. Is there a way to not show a text field if the username = specified user?
... View more
11-13-2018
09:41 AM
|
0
|
0
|
1592
|
|
POST
|
Yes I have been using Integromat to update data from one survey feature service to another survey feature service using REST with success. I was wondering if I can easily do the same thing using repeats and related data? Just to give some context: I have a main feature service that is up to date and a 2nd feature service that updates the 1st feature service with data using REST (both services created from Survey123). Right now I have a repeat on the 1st feature service to create a related table that can be used in either survey or in Collector for my field staff. I want to add a repeat to the 2nd feature service and have the ability to pass the related data to the related table into the 1st feature service without anything going wonky.
... View more
11-13-2018
09:33 AM
|
0
|
0
|
1658
|
|
POST
|
I'm calling Collector from an email and want to pass in an objectID to zoom to
... View more
11-09-2018
01:43 PM
|
0
|
2
|
1800
|
|
POST
|
I need to center on a previously collected point, not based on coordinates
... View more
11-09-2018
10:30 AM
|
0
|
0
|
1800
|
|
POST
|
Apparently the only way to zoom to a point in collector is by starting a new feature collect...I don't want to do this
... View more
11-09-2018
09:07 AM
|
0
|
2
|
1800
|
|
POST
|
I can center on a particular point and pull up the popup via a URL within a Webmap, but can I do the same in Collector? Or at the least be able to center on a particular point?
... View more
11-08-2018
12:33 PM
|
0
|
8
|
1933
|
|
POST
|
I'm using Integromat which has numerous string functions including substring. If the token string length doesn't change, I should be able to use that function.
... View more
11-08-2018
11:49 AM
|
0
|
1
|
2769
|
|
POST
|
Even with f=json I still get this: {"token":"MYemaA7SAJJKcBjIeiGvyyvzoOlp06Q.","expires":1541711897609,"ssl":true I'm using this response outside of python, so I don't have that option. I just want to only grab only the token without the quotes. Maybe regex or google sheets? Other ideas? But if the string length doesn't change for the token, then I can use a substring method that is hardcoded with static start and end parameters
... View more
11-08-2018
11:21 AM
|
0
|
3
|
2769
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-31-2018 08:24 AM | |
| 3 | 12-18-2018 09:23 AM | |
| 1 | 12-02-2019 07:53 AM | |
| 1 | 04-24-2020 11:11 AM | |
| 1 | 08-14-2019 02:25 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:25 AM
|