|
POST
|
Can you open a bug ticket? Sounds like you have a reproduceable case and if it worked at 3.11 and not at 3.12 that is definitely are error.,
... View more
01-09-2015
01:01 PM
|
0
|
1
|
548
|
|
POST
|
can you move loading the xhrPlugins.addCrossSiteXhr to the onLayersAdded event so that it doesnt load until after the map has finished loading all layers?
... View more
01-09-2015
12:46 PM
|
0
|
3
|
2107
|
|
POST
|
So simply changing from 3.12 to 3.11 fixes it? 1.Are you using https and http combined? 2. do you specify a baseUrl in your dojo.config? 3. are you using sync or async in dojo.config
... View more
01-09-2015
10:15 AM
|
0
|
1
|
2107
|
|
POST
|
Usually this kind of this is because of out of order declares. Have you added any new classes to your "require" without adding the alias to the "function"?
... View more
01-09-2015
08:48 AM
|
0
|
2
|
2107
|
|
POST
|
David, Thanks for reproducing. Anyone else having the issue with local geocoders? Kelly Hutchins
... View more
01-02-2015
09:56 AM
|
0
|
3
|
1134
|
|
POST
|
You have to pay (subscription) for this service with credits
... View more
12-30-2014
11:49 AM
|
0
|
0
|
765
|
|
BLOG
|
IE8 is still in major use, and we still have to support back to IE7 (government), although that is waning. IE8 will be here for at least 5 more years. Dropping support is unrealistic.
... View more
12-30-2014
08:26 AM
|
1
|
0
|
1410
|
|
POST
|
I may have found something If you "click to add a stop" within the bounds of my geolocator, it adds the coordinates in web mercator. If you add one outside (say Naples to the south) it adds Lat/Long to the Display.
... View more
12-23-2014
11:16 AM
|
0
|
5
|
1134
|
|
POST
|
Ok i was able to reproduce in the sandbox I get a reverse geocode result {"address":{"Street":"325 21ST ST W","City":"Bradenton","ZIP":"34205"},"location":{"x":-9193059.6560794469,"y":3185651.2728893212,"spatialReference":{"wkid":102100,"latestWkid":3857}}} But it doesnt update the box. Clicking to add a point also adds at coordinates instead of address. Printing with overview map works however, so that must be on my end <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no">
<title>Directions Widget</title>
<link rel="stylesheet" href="http://js.arcgis.com/3.12/dijit/themes/claro/claro.css">
<link rel="stylesheet" href="http://js.arcgis.com/3.12/esri/css/esri.css">
<style>
html, body, #map {
height:100%;
width:100%;
margin:0;
padding:0;
}
body {
background-color:#FFF;
overflow:hidden;
font-family:"Trebuchet MS";
}
</style>
<script src="http://js.arcgis.com/3.12/"></script>
<script>
require([
"esri/urlUtils", "esri/map", "esri/dijit/Directions",
"dojo/parser",
"dijit/layout/BorderContainer", "dijit/layout/ContentPane", "dojo/domReady!"
], function(
urlUtils, Map, Directions,
parser
) {
parser.parse();
//all requests to route.arcgis.com will proxy to the proxyUrl defined in this object.
//urlUtils.addProxyRule({
// urlPrefix: "route.arcgis.com",
// proxyUrl: "/sproxy/"
// });
// urlUtils.addProxyRule({
// urlPrefix: "traffic.arcgis.com",
// proxyUrl: "/sproxy/"
// });
var geometryService = "http://www.mymanatee.org/arcgis01/rest/services/Utilities/Geometry/GeometryServer";
var locatorUrl = "http://www.mymanatee.org/arcgis01/rest/services/tools/AGSStreetOnly/GeocodeServer";
var routingUrl = "http://www.mymanatee.org/arcgis02/rest/services/routing/routing/NAServer/Route";
var printUrl = "http://www.mymanatee.org/arcgis01/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task";
var map = new Map("map", {
basemap: "streets",
center:[-98.56,39.82],
zoom: 4
});
var options = {
autoComplete:true,
arcgisGeocoder: false,
geocoders:[{
url: locatorUrl ,
name:"centerlineLocator"
} ]
};
var directions = new Directions({
map: map,
routeTaskUrl:routingUrl,
printTaskUrl:printUrl,
showSegmentPopup:false,
directionsLengthUnits:"MILES",
geometryTaskUrl:geometryService,
geocoderOptions: options
}, "dir");
directions.startup();
});
</script>
</head>
<body class="claro">
<div data-dojo-type="dijit/layout/BorderContainer"
data-dojo-props="design:'headline', gutters:false"
style="width:100%;height:100%;">
<div data-dojo-type="dijit/layout/ContentPane"
data-dojo-props="region:'right'"
style="width:250px;">
<div id="dir"></div>
</div>
<div id="map"
data-dojo-type="dijit/layout/ContentPane"
data-dojo-props="region:'center'">
</div>
</div>
</body>
</html>
... View more
12-23-2014
10:41 AM
|
0
|
0
|
1134
|
|
POST
|
Manatee County GIS Mobile Server Directions are on the tools tab on the left. Add two addresses, for example 1112 Manatee Ave W, Bradenton 2027 Manatee Ave W, Bradenton And then move one of the points. It will show coordinates. Fiddler and Firebug show the reverse geocode is called and that an address is returned, it just doesnt update the box.
... View more
12-22-2014
12:24 PM
|
0
|
8
|
2553
|
|
POST
|
Thats awesome Kelly Hutchins!! Thank you. Still not sure why my Stop is not updating the location with the reverse geocode address though, or why my overview map is not showing. Help.
... View more
12-17-2014
12:37 PM
|
0
|
1
|
2553
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-22-2014 08:35 AM | |
| 1 | 05-02-2012 04:56 AM | |
| 1 | 10-29-2021 07:40 AM | |
| 1 | 10-28-2021 05:26 AM | |
| 1 | 07-17-2012 08:48 AM |
| Online Status |
Offline
|
| Date Last Visited |
03-01-2022
02:00 PM
|