|
POST
|
ESN is the Emergency Service Number. In our county each Public Answering Point has its own ESN (some dispatch centers have more than one). When a 911 call comes in, each phone number has one of these ESNs attached to it, which will tell the system where the call needs to be routed to. If the address point is present, it will also have that same ESN attached to it. If the address point should be missing, our mapping system will look at the street centerline, which means you will also have to have an ESN there. I hope this make sense!
... View more
10-27-2016
06:12 AM
|
0
|
4
|
1664
|
|
POST
|
Is the project on track for 2020 in all areas? There is a 99% chance that it won't be ready in all areas by 2020. Has anyone fully implemented NextGen 911 already? I don't know about that. What level of effort does it typically require municipalities to update their centerline data so it works with surrounding municipalities in NextGen 911? I maintain centerline data for our whole county (little more than 500k population) which is a full-time job, but I think it is better to do it that wa,y than having 10 cooks(cities doing their own thing) in the kitchen. I also maintain the address point data for the whole county. What level of effort is anticipated once the centerline data is in use in NextGen 911 to do the ongoing maintenance? Is it expected to require extra staffing? If your data is already NextGen ready, there won't be any need for more staffing. The biggest issue will be to get your data ready (left and right ranges, ESN for left and right....) Is it expected that address points will be a requirement in the near future (sounds like they are not required in the current implementation)? Address Points are key for 911! I can only echo what Joe said. Your locator should first look at address points and street centerline ranges should only be a fallback in case an address point is missing. Have municipalities and call centers (PSAP) been able to get funding to help implement NextGen 911? Organizational funding? Grants? I don't know about that. If you have worked on this, any insight on issues that have come up? We had issues with street centerlines being digitized in every direction, meaning you should digitize your centerlines with the addresses flow. ------>----->------> instead of -----><------<------------>. Don't have overlapping ranges. No holes in your ESN layer. Pretty much your data needs to be in tip top shape. When choosing a mapping system make sure they know about NextGen 911 and are able to use both address points and street centerlines for verification.
... View more
10-26-2016
05:52 AM
|
1
|
9
|
2944
|
|
POST
|
Andrew sums it up nicely, I would also throw in the Webapp builder. Which is out of the box, but you can also customize it to fit your needs.
... View more
09-06-2016
05:46 AM
|
1
|
0
|
1736
|
|
POST
|
In 3.xx you are able to call the following Map | API Reference | ArcGIS API for JavaScript 3.17 does that work in 4.0?
... View more
09-01-2016
06:59 AM
|
0
|
0
|
523
|
|
POST
|
Oh, it is redirected link from arcscripts and I thought Timothy might be able to bring the content over.
... View more
08-30-2016
06:18 AM
|
0
|
1
|
5468
|
|
POST
|
Is there a way to bring this one over? ArcGIS Code Sharing
... View more
08-30-2016
05:32 AM
|
0
|
5
|
5468
|
|
DOC
|
Hey Raimonds, this seems to be a bug, try this js code: var map; var geocoder; require([ "esri/geometry/Extent", "esri/map", "esri/layers/ArcGISTiledMapServiceLayer", "esri/dijit/Geocoder", "esri/SpatialReference", "dijit/form/TextBox", "dojo/parser", "esri/tasks/locator", "dojo/on", "dojo/dom", "dijit/registry","esri/geometry/webMercatorUtils", "esri/tasks/GeometryService","esri/geometry/Point", "dijit/form/Button" ,"dojo/domReady!" ], function( Extent, Map, ArcGISTiledMapServiceLayer, Geocoder, SpatialReference, TextBox, parser, Locator, on, dom, registry, webMercatorUtils ,GeometryService, Point ) { parser.parse(); var initialExtent = new Extent({ "xmin": 505737.38, "ymin": 311874.88, "ymax": 311874.88, "xmax": 505737.38, "spatialReference": { "wkid": 3059 } }); map = new Map("map", { logo: false, sliderOrientation: "horizontal", extent: initialExtent, zoom: 7 }); gsvc = new GeometryService("https://utility.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer"); var tiled = new ArcGISTiledMapServiceLayer("http://kartes.lgia.gov.lv/arcgis/rest/services/mobilais/topo_mobilais/MapServer"); map.addLayer(tiled); var locatorUrl = "http://serverapps101.esri.com/arcgis/rest/services/MGRS/GeocodeServer"; var Gridlocator = new Locator(locatorUrl); var locator = new Locator("http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer"); var GridTextBox = new TextBox({ placeHolder: "35VMD0911152290", value:"35VMD0911152290" },"GridTextBoxDiv"); on(registry.byId("grid"), "click", setgrid); function setgrid (){ var GridPoint = registry.byId("GridTextBoxDiv").get("value"); var gridnmb = {MGRS:GridPoint}; Gridlocator.addressToLocations(gridnmb); map.graphics.clear(); } Gridlocator.on("address-to-locations-complete", locateMeGridAddress); function locateMeGridAddress(evt){ var FoundPointAr = evt.addresses; var FoundPoint = FoundPointAr[0]; var LocPoint = FoundPoint.location; var outSR = new SpatialReference(3059); gsvc.project([ LocPoint ], outSR, function(projectedPoints) { var renesPoint = new Point(projectedPoints[0].x, projectedPoints[0].y, new SpatialReference({ wkid: 3059 })) map.centerAndZoom(renesPoint); map.graphics.clear(); }); } }); Hope this helps! Tim
... View more
08-25-2016
08:05 AM
|
1
|
0
|
4270
|
|
POST
|
You could do a for loop on your getSelectedFeatures and then use push to get them into a new array?
... View more
08-04-2016
06:44 AM
|
0
|
0
|
2210
|
|
POST
|
Hey Doris, you can go to the webmap that is used in your story map. Click on "Show Item Details" ( see screenshot). Then under Layers click on "Export to" and choose which format you would like to have the data. Hope this helps! TIm
... View more
08-04-2016
06:40 AM
|
0
|
1
|
1626
|
|
DOC
|
Currently it shows that 27 people are using the extension. Anybody have any idea where I could post the extension to get more exposure?
... View more
07-29-2016
10:38 AM
|
0
|
0
|
13567
|
|
DOC
|
That is neat! I'll definitely look if I can get that in.
... View more
07-28-2016
11:43 AM
|
0
|
0
|
13567
|
|
DOC
|
Just checking in to see if anybody has any ideas of what else can be added?
... View more
07-28-2016
08:12 AM
|
0
|
0
|
13567
|
|
POST
|
When you click the button to make it visible, did you try to run the refresh method? Legend | API Reference | ArcGIS API for JavaScript 3.17
... View more
07-25-2016
06:06 AM
|
0
|
0
|
1838
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-06-2015 06:58 AM | |
| 1 | 05-04-2016 07:27 AM | |
| 1 | 07-06-2017 08:12 AM | |
| 1 | 10-26-2015 11:51 AM | |
| 1 | 12-12-2014 12:05 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|