|
POST
|
GeoExplorer 6000 Series Windows Mobile 6.5 Professional Cortex-A8 OMAP3503 221.55MB RAM Please provide the Make, Model, Available Memory, and Processor Speed of your mobile device. 1.5GB is a very large file for a data collection device, unless you are using a laptop.
... View more
06-27-2014
07:50 AM
|
0
|
0
|
465
|
|
POST
|
I am having issues with default print widget from esri. Randomly, it takes very long to respond after clicking Print and shows the following error message. [ATTACH=CONFIG]34935[/ATTACH] I am using a print service from ArcGIS Online (http://sampleserver6.arcgisonline.com/arcgis/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task). I would like to include PrintWidget.xml in case. <?xml version="1.0" ?>
<configuration>
<!-- change this URL to your own Export Web Map Task (requires ArcGIS 10.1), or just remove the taskurl tag to get quick printing -->
<taskurl>http://sampleserver6.arcgisonline.com/arcgis/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task</taskurl>
<title visible="true">McDonough County, IL</title>
<author></author>
<dpi>150</dpi>
<usescale defaultvalue="5000">false</usescale>
<layouttemplates>
<layouttemplate>Letter ANSI A Landscape</layouttemplate>
<layouttemplate>Letter ANSI A Portrait</layouttemplate>
<layouttemplate>Tabloid ANSI B Landscape</layouttemplate>
<layouttemplate>Tabloid ANSI B Portrait</layouttemplate>
</layouttemplates>
<copyright visible="true" defaultvalue="WIU GIS Center"></copyright>
<formats visible="true" defaultvalue="PDF">
<format>PDF</format>
<format>JPG</format>
<format>PNG32</format>
</formats>
<excludelayerfromlegend></excludelayerfromlegend>
</configuration> Any advice would be appreciated. Thank you.
... View more
06-26-2014
05:34 PM
|
0
|
1
|
2312
|
|
POST
|
Would it be efficient ways to load large aerials to ArcPad 10.2? About 1.5GB sid loads fine but pretty slow on the map. Thank you for your advice.
... View more
06-19-2014
09:56 AM
|
0
|
2
|
2633
|
|
POST
|
Maps display after matching the projection. However, geocoding still does not work. Here is a site and code. Thanks a lot.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!--The viewport meta tag is used to improve the presentation and behavior of the samples
on iOS devices-->
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no">
<title>Find Address</title>
<link rel="stylesheet" href="http://js.arcgis.com/3.8/js/dojo/dijit/themes/claro/claro.css">
<link rel="stylesheet" href="http://js.arcgis.com/3.8/js/esri/css/esri.css">
<style>
html, body {
height: 100%; width: 100%;
margin: 0; padding: 0;
}
#map{
padding:0;
border:solid 1px #343642;
margin:5px 5px 5px 0px;
}
#top{
width:20%;
border-top: solid 1px #343642;
border-left: solid 1px #343642;
border-bottom: solid 1px #343642;
margin:5px 0px 5px 5px;
color: #343642;
font:90% Arial,"Arial",Arial,Arial;
/*letter-spacing: 0.05em;*/
}
</style>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i =i ||function(){
(i .q=i .q||[]).push(arguments)},i .l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-21888440-1', 'wiu.edu');
ga('send', 'pageview');
</script>
<script src="http://js.arcgis.com/3.8/"></script>
<script>
var map, locator;
require([
"esri/map", "esri/tasks/locator", "esri/graphic",
"esri/dijit/InfoWindowLite", "esri/InfoTemplate", "esri/layers/FeatureLayer", "dojo/dom-construct",
"esri/InfoTemplate", "esri/symbols/SimpleMarkerSymbol",
"esri/symbols/Font", "esri/symbols/TextSymbol",
"dojo/_base/array", "dojo/_base/Color",
"dojo/number", "dojo/parser", "dojo/dom", "dojo/on", "dijit/registry",
"esri/layers/ArcGISDynamicMapServiceLayer",
"esri/layers/ArcGISTiledMapServiceLayer",
"dijit/form/Button", "dijit/form/Textarea",
"dijit/layout/BorderContainer", "dijit/layout/ContentPane", "dojo/domReady!"
], function(
Map, Locator, Graphic,
InfoWindowLite, InfoTemplate, FeatureLayer, domConstruct,
InfoTemplate, SimpleMarkerSymbol,
Font, TextSymbol,
arrayUtils, Color,
number, parser, dom, on, registry,
ArcGISDynamicMapServiceLayer, ArcGISTiledMapServiceLayer
) {
parser.parse();
-->var initExtent = new esri.geometry.Extent({"xmin":2155300,"ymin":1381110,"xmax":2157350,"ymax":1381877,"spatialReference":{"wkid":3436}});
var initExtent = new esri.geometry.Extent({"xmin":-10093755,"ymin":4932648,"xmax":-10093139,"ymax":4933004,"spatialReference":{"wkid":3857}});
var map = new esri.Map("map",{extent:initExtent});
var basemap2 = new ArcGISTiledMapServiceLayer("http://gis.wiu.edu/arcgis/rest/services/basemap/aerial_cache/MapServer");
map.addLayer(basemap2);
var basemap = new esri.layers.ArcGISDynamicMapServiceLayer("http://gis.wiu.edu/arcgis/rest/services/mcdonough_mobile/MapServer");
map.addLayer(basemap);
/*var infoWindow = new InfoWindowLite(null, domConstruct.create("div", null, null, map.root));
infoWindow.startup();
map.setInfoWindow(infoWindow);*/
var template = new InfoTemplate();
template.setTitle("<b>${PARCELID}</b>");
template.setContent("${owner1_name} <br> ${site_address}");
//add a layer to the map
var featureLayer = new FeatureLayer("http://gis.wiu.edu/arcgis/rest/services/mcdonough_highway/MapServer/21", {
mode: FeatureLayer.MODE_ONDEMAND,
infoTemplate:template,
outFields: ["PARCELID" , "site_address", "owner1_name"]
});
map.addLayer(featureLayer);
map.infoWindow.resize(200, 75);
on(dom.byId("address"), "keyup", function(event){
if (event.keyCode == 13 && this.value.length > 0) {
locate();
}
})
locator = new Locator("http://gis.wiu.edu/arcgis/rest/services/mcdonough_structure/GeocodeServer");
locator.on("address-to-locations-complete", showResults);
// listen for button click then geocode
map.infoWindow.resize(200,125);
on(dom.byId("address"), 'onkeyup', function(event) {
if (event.keyCode == 13 && this.value.length > 0) {
locate();
}
});
function locate() {
map.graphics.clear();
var address = {
"Street": dom.byId("address").value
};
locator.outSpatialReference = map.spatialReference;
var options = {
address: address,
outFields: ["HouseNum"]
}
locator.addressToLocations(options);
}
function showResults(evt) {
var candidate;
var symbol = new SimpleMarkerSymbol();
var infoTemplate = new InfoTemplate(
"Location",
"Address: ${address}<br />Score: ${score}<br />Source locator: ${locatorName}"
);
symbol.setStyle(SimpleMarkerSymbol.STYLE_SQUARE);
symbol.setSize(10);
symbol.setColor(new Color("#ffff00"));
var geom;
arrayUtils.every(evt.addresses, function(candidate) {
console.log(candidate.score);
if (candidate.score > 80) {
console.log(candidate.location);
var attributes = {
address: candidate.address,
score: candidate.score,
locatorName: candidate.attributes.StreetName
};
geom = candidate.location;
var graphic = new Graphic(geom, symbol, attributes, infoTemplate);
//add a graphic to the map at the geocoded location
map.graphics.add(graphic);
//add a text symbol to the map listing the location of the matched address.
var displayText = candidate.address;
var font = new Font(
"12pt",
Font.STYLE_NORMAL,
Font.VARIANT_NORMAL,
Font.WEIGHT_BOLD,
"Helvetica"
);
var textSymbol = new TextSymbol(
displayText,
font,
new Color("#ffff00")
);
textSymbol.setOffset(0,15);
map.graphics.add(new Graphic(geom, textSymbol));
return false; //break out of loop after one candidate with score greater than 80 is found.
}
else{
alert("No results found, please enter another address");
}
});
if ( geom !== undefined ) {
map.centerAndZoom(geom, 0.5);
}
}
});
</script>
</head>
<body class="claro">
<div id="mainWindow" data-dojo-type="dijit/layout/BorderContainer"
data-dojo-props="design:'sidebar', gutters:false"
style="width:100%; height:100%;">
<div id="top"
data-dojo-type="dijit/layout/ContentPane"
data-dojo-props="region:'top'">
Enter address then hit ENTER. <br>
Example: <b>232 e jackson st</b><br>
<br>
<input type="text" id="address" size="25" autofocus="autofocus"/>
<br>
</div>
<div id="map"
data-dojo-type="dijit/layout/ContentPane"
data-dojo-props="region:'center'">
</div>
</div>
</body>
</html>
... View more
05-28-2014
11:49 AM
|
0
|
0
|
865
|
|
POST
|
I noticed locator stopped working once I added tiled map service on the top. It seems dynamic service needs to be on the top. Please see the codes below.
var basemap2 = new ArcGISTiledMapServiceLayer("http://gis.wiu.edu/arcgis/rest/services/basemap/aerial_cache/MapServer");
map.addLayer(basemap2);
var basemap = new esri.layers.ArcGISDynamicMapServiceLayer("http://gis.wiu.edu/arcgis/rest/services/mcdonough_mobile/MapServer",
{"opacity" : 0.5,});
map.addLayer(basemap);
Please let me know if any workaround. Thank you very much.
... View more
05-28-2014
06:41 AM
|
0
|
0
|
865
|
|
POST
|
I understand map services need to be stopped before updating data. But is it possible to stop entire ArcGIS Server service instead for the same purpose? Please let me know. Thank you.
... View more
03-17-2014
07:40 AM
|
0
|
2
|
802
|
|
POST
|
I was able to add pop-ups but the map no longer zooms when hitting ENTER. Here is my code. Thanks a lot. <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!--The viewport meta tag is used to improve the presentation and behavior of the samples
on iOS devices-->
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no">
<title>Find Address</title>
<link rel="stylesheet" href="http://js.arcgis.com/3.8/js/dojo/dijit/themes/claro/claro.css">
<link rel="stylesheet" href="http://js.arcgis.com/3.8/js/esri/css/esri.css">
<style>
html, body {
height: 100%; width: 100%;
margin: 0; padding: 0;
}
#map{
padding:0;
border:solid 1px #343642;
margin:5px 5px 5px 0px;
}
#top{
width:20%;
border-top: solid 1px #343642;
border-left: solid 1px #343642;
border-bottom: solid 1px #343642;
margin:5px 0px 5px 5px;
color: #343642;
font:90% Arial,"Arial",Arial,Arial;
/*letter-spacing: 0.05em;*/
}
</style>
<script src="http://js.arcgis.com/3.8/"></script>
<script>
var map, locator;
require([
"esri/map", "esri/tasks/locator", "esri/graphic",
"esri/dijit/InfoWindowLite", "esri/InfoTemplate", "esri/layers/FeatureLayer", "dojo/dom-construct",
"esri/InfoTemplate", "esri/symbols/SimpleMarkerSymbol",
"esri/symbols/Font", "esri/symbols/TextSymbol",
"dojo/_base/array", "dojo/_base/Color",
"dojo/number", "dojo/parser", "dojo/dom", "dijit/registry",
"dijit/form/Button", "dijit/form/Textarea",
"dijit/layout/BorderContainer", "dijit/layout/ContentPane", "dojo/domReady!"
], function(
Map, Locator, Graphic,
InfoWindowLite, InfoTemplate, FeatureLayer, domConstruct,
InfoTemplate, SimpleMarkerSymbol,
Font, TextSymbol,
arrayUtils, Color,
number, parser, dom, registry
) {
parser.parse();
var initExtent = new esri.geometry.Extent({"xmin":2155300,"ymin":1381110,"xmax":2157350,"ymax":1381877,"spatialReference":{"wkid":3436}});
var map = new esri.Map("map",{extent:initExtent});
var basemap = new esri.layers.ArcGISDynamicMapServiceLayer("http://gis.wiu.edu/arcgis/rest/services/mcdonough_highway_old/MapServer");
map.addLayer(basemap);
/*var infoWindow = new InfoWindowLite(null, domConstruct.create("div", null, null, map.root));
infoWindow.startup();
map.setInfoWindow(infoWindow);*/
var template = new InfoTemplate();
template.setTitle("<b>${PARCELID}</b>");
template.setContent("${owner1_name} <br> ${site_address}");
//add a layer to the map
var featureLayer = new FeatureLayer("http://gis.wiu.edu/arcgis/rest/services/mcdonough_highway/MapServer/21", {
mode: FeatureLayer.MODE_ONDEMAND,
infoTemplate:template,
outFields: ["PARCELID" , "site_address", "owner1_name"]
});
map.addLayer(featureLayer);
map.infoWindow.resize(200, 75);
on(dom.byId("address"), "keyup", function(event){
if (event.keyCode == 13 && this.value.length > 0) {
locate();
}
})
locator = new Locator("http://gis.wiu.edu/arcgis/rest/services/mcdonough_structure/GeocodeServer");
locator.on("address-to-locations-complete", showResults);
// listen for button click then geocode
<!--registry.byId("locate").on("click", locate);-->
map.infoWindow.resize(200,125);
dojo.connect(dom.byId("address"), 'onkeyup', function(event) {
if (event.keyCode == 13 && this.value.length > 0) {
locate();
}
});
function locate() {
map.graphics.clear();
var address = {
"Street": dom.byId("address").value
};
locator.outSpatialReference = map.spatialReference;
var options = {
address: address,
outFields: ["HouseNum"]
}
locator.addressToLocations(options);
}
function showResults(evt) {
var candidate;
var symbol = new SimpleMarkerSymbol();
var infoTemplate = new InfoTemplate(
"Location",
"Address: ${address}<br />Score: ${score}<br />Source locator: ${locatorName}"
);
symbol.setStyle(SimpleMarkerSymbol.STYLE_SQUARE);
symbol.setSize(10);
symbol.setColor(new Color("#ffff00"));
var geom;
arrayUtils.every(evt.addresses, function(candidate) {
console.log(candidate.score);
if (candidate.score > 80) {
console.log(candidate.location);
var attributes = {
address: candidate.address,
score: candidate.score,
locatorName: candidate.attributes.StreetName
};
geom = candidate.location;
var graphic = new Graphic(geom, symbol, attributes, infoTemplate);
//add a graphic to the map at the geocoded location
map.graphics.add(graphic);
//add a text symbol to the map listing the location of the matched address.
var displayText = candidate.address;
var font = new Font(
"12pt",
Font.STYLE_NORMAL,
Font.VARIANT_NORMAL,
Font.WEIGHT_BOLD,
"Helvetica"
);
var textSymbol = new TextSymbol(
displayText,
font,
new Color("#ffff00")
);
textSymbol.setOffset(0,15);
map.graphics.add(new Graphic(geom, textSymbol));
return false; //break out of loop after one candidate with score greater than 80 is found.
}
else{
alert("No results found, please enter another address");
}
});
if ( geom !== undefined ) {
map.centerAndZoom(geom, 0.35);
}
}
});
</script>
</head>
<body class="claro">
<div id="mainWindow" data-dojo-type="dijit/layout/BorderContainer"
data-dojo-props="design:'sidebar', gutters:false"
style="width:100%; height:100%;">
<div id="top"
data-dojo-type="dijit/layout/ContentPane"
data-dojo-props="region:'top'">
Enter address then hit ENTER. <br>
Example: <b>232 e jackson st</b><br>
<br>
<input type="text" id="address" size="25" autofocus="autofocus"/>
<br>
</div>
<div id="map"
data-dojo-type="dijit/layout/ContentPane"
data-dojo-props="region:'center'">
</div>
</div>
</body>
</html>
... View more
02-25-2014
06:18 AM
|
0
|
0
|
865
|
|
POST
|
I have a code for pop-up window. Is it possible to combine this function to the existing code? <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=7, IE=9, IE=10" > <!--The viewport meta tag is used to improve the presentation and behavior of the samples on iOS devices--> <meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/> <title>Info Window Lite</title> <link rel="stylesheet" href="http://js.arcgis.com/3.7/js/esri/css/esri.css"> <style> html, body, #mapDiv { height: 100%; margin: 0; padding: 0; } </style> <script src="http://js.arcgis.com/3.7/"></script> <script> require([ "esri/map", "esri/dijit/InfoWindowLite", "esri/InfoTemplate", "esri/layers/FeatureLayer", "dojo/dom-construct", "dojo/domReady!" ], function( Map, InfoWindowLite, InfoTemplate, FeatureLayer, domConstruct ) { var map = new Map("mapDiv", { basemap: "topo", center: [-98.416, 39.781], zoom: 6 }); var infoWindow = new InfoWindowLite(null, domConstruct.create("div", null, null, map.root)); infoWindow.startup(); map.setInfoWindow(infoWindow); var template = new InfoTemplate(); template.setTitle("<b>${PARCELID}</b>"); template.setContent("${owner1_name} \n ${site_address}"); //add a layer to the map var featureLayer = new FeatureLayer("http://gis.wiu.edu/arcgis/rest/services/mcdonough_highway/MapServer/21", { mode: FeatureLayer.MODE_ONDEMAND, infoTemplate:template, outFields: ["PARCELID" , "site_address", "owner1_name"] }); map.addLayer(featureLayer); map.infoWindow.resize(200, 75); }); </script> </head> <body c> <div id="mapDiv"></div> </body> </html>
... View more
02-14-2014
09:42 AM
|
0
|
0
|
1584
|
|
POST
|
May I ask couple questions? 1. When address does not match, no error message shows up. User may think program is not working. 2. Starting this page, user needs to click textbox to enter address. Is there a way to highlight textbox as default to save user's steps? Thank you very much. I would recommend creating a text input rather than textarea: <input type="text" id="address" value="380 New York St, Redlands" size="30"/>
... View more
02-14-2014
05:40 AM
|
0
|
0
|
1584
|
|
POST
|
Thank you so much, Robert! Keisuke, Here is the 3.6 version. Both compiled and uncompiled have been updated:
... View more
02-13-2014
04:32 AM
|
0
|
0
|
243
|
|
POST
|
Would you mind sharing the compiled widget? Hi Robert, Thanks for the help, the widget was compiled perfectly with the 3 updated lines of code. Att,
... View more
02-11-2014
10:18 AM
|
0
|
0
|
1091
|
|
POST
|
When I hit ENTER, a cursor automatically moves to the second line while map zooming. Is it possible to disable the second line or stay on the first line? If not, clear button for textbox would be useful. Thanks a lot! It will work after you comment out the following line: registry.byId("locate").on("click", locate); Also, here is an update to the previous code I sent using the new "dojo/on" module if you're interested: on(dom.byId("address"), "keyup", function(event){
if (event.keyCode == 13 && this.value.length > 0) {
locate();
}
}) You will need to add "dojo/on" and "on" to require and function.
... View more
02-11-2014
10:01 AM
|
0
|
0
|
1584
|
|
POST
|
It works great! I may not need Locate button. But if I remove <button id="locate" data-dojo-type="dijit/form/Button">Locate</button>, it stops working. Is there a good way to hide the button? Hi Keisuke, Try adding the following before the locate() function: dojo.connect(dom.byId("address"), 'onkeyup', function(event) {
if (event.keyCode == 13 && this.value.length > 0) {
locate();
}
});
... View more
02-11-2014
09:30 AM
|
0
|
0
|
1584
|
|
POST
|
I would like to trigger Locate by the Enter key as well as clicking the button. Please let me know where I need to add codes. Thank you very much. <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <!--The viewport meta tag is used to improve the presentation and behavior of the samples on iOS devices--> <meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"> <title>Find Address</title> <link rel="stylesheet" href="http://js.arcgis.com/3.8/js/dojo/dijit/themes/claro/claro.css"> <link rel="stylesheet" href="http://js.arcgis.com/3.8/js/esri/css/esri.css"> <style> html, body { height: 100%; width: 100%; margin: 0; padding: 0; } #map{ padding:0; border:solid 1px #343642; margin:5px 5px 5px 0px; } #leftPane{ width:20%; border-top: solid 1px #343642; border-left: solid 1px #343642; border-bottom: solid 1px #343642; margin:5px 0px 5px 5px; color: #343642; font:100% Georgia,"Times New Roman",Times,serif; /*letter-spacing: 0.05em;*/ } </style> <script src="http://js.arcgis.com/3.8/"></script> <script> var map, locator; require([ "esri/map", "esri/tasks/locator", "esri/graphic", "esri/InfoTemplate", "esri/symbols/SimpleMarkerSymbol", "esri/symbols/Font", "esri/symbols/TextSymbol", "dojo/_base/array", "dojo/_base/Color", "dojo/number", "dojo/parser", "dojo/dom", "dijit/registry", "dijit/form/Button", "dijit/form/Textarea", "dijit/layout/BorderContainer", "dijit/layout/ContentPane", "dojo/domReady!" ], function( Map, Locator, Graphic, InfoTemplate, SimpleMarkerSymbol, Font, TextSymbol, arrayUtils, Color, number, parser, dom, registry ) { parser.parse(); map = new Map("map", { basemap: "streets", center: [-93.5, 41.431], zoom: 5 }); locator = new Locator("http://geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer"); locator.on("address-to-locations-complete", showResults); // listen for button click then geocode registry.byId("locate").on("click", locate); map.infoWindow.resize(200,125); function locate() { map.graphics.clear(); var address = { "SingleLine": dom.byId("address").value }; locator.outSpatialReference = map.spatialReference; var options = { address: address, outFields: ["Loc_name"] } locator.addressToLocations(options); } function showResults(evt) { var candidate; var symbol = new SimpleMarkerSymbol(); var infoTemplate = new InfoTemplate( "Location", "Address: ${address}<br />Score: ${score}<br />Source locator: ${locatorName}" ); symbol.setStyle(SimpleMarkerSymbol.STYLE_SQUARE); symbol.setColor(new Color([153,0,51,0.75])); var geom; arrayUtils.every(evt.addresses, function(candidate) { console.log(candidate.score); if (candidate.score > 80) { console.log(candidate.location); var attributes = { address: candidate.address, score: candidate.score, locatorName: candidate.attributes.Loc_name }; geom = candidate.location; var graphic = new Graphic(geom, symbol, attributes, infoTemplate); //add a graphic to the map at the geocoded location map.graphics.add(graphic); //add a text symbol to the map listing the location of the matched address. var displayText = candidate.address; var font = new Font( "16pt", Font.STYLE_NORMAL, Font.VARIANT_NORMAL, Font.WEIGHT_BOLD, "Helvetica" ); var textSymbol = new TextSymbol( displayText, font, new Color("#666633") ); textSymbol.setOffset(0,8); map.graphics.add(new Graphic(geom, textSymbol)); return false; //break out of loop after one candidate with score greater than 80 is found. } }); if ( geom !== undefined ) { map.centerAndZoom(geom, 12); } } }); </script> </head> <body class="claro"> <div id="mainWindow" data-dojo-type="dijit/layout/BorderContainer" data-dojo-props="design:'sidebar', gutters:false" style="width:100%; height:100%;"> <div id="leftPane" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'left'"> Enter an address then click the locate button to use a sample address locator to return the location for street addresses in the United States. <br> <textarea type="text" id="address"/>380 New York St, Redlands</textArea> <br> <button id="locate" data-dojo-type="dijit/form/Button">Locate</button> </div> <div id="map" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'center'"> </div> </div> </body> </html>
... View more
02-11-2014
08:08 AM
|
0
|
16
|
3378
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 01-22-2015 07:37 AM | |
| 1 | 08-15-2014 09:43 AM | |
| 1 | 11-25-2014 11:00 AM | |
| 1 | 08-20-2014 11:30 AM | |
| 8 | 02-01-2012 06:32 AM |
| Online Status |
Offline
|
| Date Last Visited |
10-07-2022
10:01 AM
|