|
POST
|
I had the default basemap set in my Organizations Default Basemap as the usgs topomap. That said it would only let me zoom in as far as the usgs topo would go. Once I changed it in my org setting to have bing as the defauly basemap everything worked.
... View more
07-15-2013
07:40 AM
|
0
|
0
|
430
|
|
POST
|
I have bing as my basemap in this map. But when I zoom in it only goes a few clicks.. But If I then go and change the basemap and select bing maps the map will then again let me zoom in further..
... View more
07-11-2013
12:53 PM
|
0
|
2
|
769
|
|
POST
|
Working with the Map Tour template. I share a map as Web Application Map Tour template with a Bing map as my basemap. I go to configure app and the app will just sit there and spin.. If I select a different ESRI basemap the Map Tour template works correctly.
... View more
07-11-2013
12:46 PM
|
0
|
1
|
648
|
|
POST
|
this is a hosted feature service as part of my arcgis online subscription. any idea when attachments will be implemented? its kinda important! Thanks
... View more
03-21-2012
04:13 PM
|
0
|
0
|
767
|
|
POST
|
I am running arcgis advanced 10.1 pre-release as well as arcgis online subscriptions. I have a feature class that has attachments, I am trying view the attachments on arcgis online. I have uploaded the feature class as a service and am following the popup window config here http://help.arcgis.com/en/arcgisonline/help/index.html#//010q0000004m000000. I am unable to find a check box to show feature attachments as links.. any ideas?
... View more
03-21-2012
11:54 AM
|
0
|
6
|
1430
|
|
POST
|
excellent! Now is there a tool that will easily give me the extent for a location? thanks!
... View more
12-20-2011
05:48 AM
|
0
|
0
|
573
|
|
POST
|
I'm alittle confused as how to add multiple dropdown bookmark menus. Using the example what exactly do I need to duplicate as too have 2 dropdown menus right next to each other? I seem to be able to add a second dropdown but it is not pulling from the array.. <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=7,IE=9" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no"/>
<title>Bookmark Widget - Read-only Bookmarks</title>
<link rel="stylesheet" href="http://serverapi.arcgisonline.com/jsapi/arcgis/2.6/js/dojo/dijit/themes/nihilo/nihilo.css">
<link rel="stylesheet" href="http://serverapi.arcgisonline.com/jsapi/arcgis/2.6/js/esri/dijit/css/bookmarks.css">
<style type="text/css">
html, body {
height: 100%; width: 100%;
margin: 0; padding: 0;
}
body{
background-color: #fff; overflow:hidden;
font-family: sans-serif;
}
#header {
padding-top: 4px;
padding-left: 15px;
background-color:#444;
color:#fff;
font-size:16pt;
text-align: left;
font-weight:bold;
height:55px;
}
#subheader {
font-size:small;
color: #cfcfcf;
text-align:left;
padding-left:20px;
}
#bookmarks-wrapper {
position: absolute;
z-index: 40;
top: 15px;
right: 30px;
background: transparent;
font-size: 12pt;
color: #444;
}
#bookmarks-wrapper2 {
position: absolute;
z-index: 40;
top: 15px;
right: 150px;
background: transparent;
font-size: 12pt;
color: #444;
}
.ds { background: #000; overflow: hidden; position: absolute; z-index: 2; }
#ds-h div { width: 100%; }
#ds-l div { height: 100%; }
#ds .o1 { filter: alpha(opacity=10); opacity: .1; }
#ds .o2 { filter: alpha(opacity=8); opacity: .08; }
#ds .o3 { filter: alpha(opacity=6); opacity: .06; }
#ds .o4 { filter: alpha(opacity=4); opacity: .04; }
#ds .o5 { filter: alpha(opacity=2); opacity: .02; }
#ds .h1 { height: 1px; }
#ds .h2 { height: 2px; }
#ds .h3 { height: 3px; }
#ds .h4 { height: 4px; }
#ds .h5 { height: 5px; }
</style>
<script>var dojoConfig = { parseOnLoad: true };</script>
<script src="http://serverapi.arcgisonline.com/jsapi/arcgis/?v=2.6"></script>
<script>
dojo.require("dijit.layout.BorderContainer");
dojo.require("dijit.layout.ContentPane");
dojo.require("dijit.form.DropDownButton");
dojo.require("esri.map");
dojo.require("esri.dijit.Bookmarks");
dojo.require("dijit.form.Button");
dojo.require("dijit.Dialog");
dojo.require("dijit.form.TextBox");
var map, bookmarks;
//var map, bookmarks2;
function init() {
var initialExtent = new esri.geometry.Extent({"xmin":-15949444,"ymin":2286770,"xmax":-6507942,"ymax":7374419,"spatialReference":
{"wkid":102100}});
map = new esri.Map("map", {
extent: initialExtent
});
// Resize the map when the browser resizes
dojo.connect(map, 'onLoad', function() {
dojo.connect(dijit.byId('map'), 'resize', map, map.resize);
});
var url = "http://services.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer";
var tiledLayer = new esri.layers.ArcGISTiledMapServiceLayer(url);
map.addLayer(tiledLayer);
// Bookmarks can be specified as an array of objects with the structure:
// { extent: <esri.geometry.Extent>, name: <some string> }
var bookmarks = [{
"extent": {
"spatialReference": {
"wkid": 102100
},
"xmin":-14201669,
"ymin":4642975,
"xmax":-13021482,
"ymax":5278931
},
"name": "Northern California"
}, {
"extent": {
"spatialReference": {
"wkid":102100
},
"xmin":-8669334,
"ymin":4982379,
"xmax":-8664724,
"ymax":4984864
},
"name": "Central Pennsylvania"
}];
// Bookmarks can be specified as an array of objects with the structure:
// { extent: <esri.geometry.Extent>, name: <some string> }
var bookmarks2 = [{
"extent": {
"spatialReference": {
"wkid": 102100
},
"xmin":-14201669,
"ymin":4642975,
"xmax":-13021482,
"ymax":5278931
},
"name": "Northern California"
}, {
"extent": {
"spatialReference": {
"wkid":102100
},
"xmin":-8669334,
"ymin":4982379,
"xmax":-8664724,
"ymax":4984864
},
"name": "Central Pennsylvania"
}];
// Create the bookmark widget
bookmarks = new esri.dijit.Bookmarks({
map: map,
bookmarks: bookmarks
}, dojo.byId('bookmarks'));
}
//show map on load
dojo.ready(init);
</script>
</head>
<body class="nihilo">
<div id="mainWindow"
data-dojo-type="dijit.layout.BorderContainer"
data-dojo-props="design:'headline',gutters:false"
style="width: 100%; height: 100%; margin: 0;">
<div id="header"
data-dojo-type="dijit.layout.ContentPane"
data-dojo-props="region:'top'">
Bookmark Widget Sample
<div id="subheader">Read-only bookmarks</div>
<div id="bookmarks-wrapper">
<div data-dojo-type="dijit.form.DropDownButton">
<span>Bookmarks</span>
<div data-dojo-type="dijit.TooltipDialog">
<div id="bookmarks"></div>
</div>
</div>
</div>
<div id="bookmarks-wrapper2">
<div data-dojo-type="dijit.form.DropDownButton">
<span>Bookmarks2</span>
<div data-dojo-type="dijit.TooltipDialog">
<div id="bookmarks2"></div>
</div>
</div>
</div>
</div>
<div id="map" class="shadow"
data-dojo-type="dijit.layout.ContentPane"
data-dojo-props="region:'center'">
<div id="ds"> <!-- drop shadow divs -->
<div id="ds-h">
<div class="ds h1 o1"></div>
<div class="ds h2 o2"></div>
<div class="ds h3 o3"></div>
<div class="ds h4 o4"></div>
<div class="ds h5 o5"></div>
</div>
</div> <!-- end drop shadow divs -->
</div>
</div>
</body>
</html>
... View more
12-18-2011
09:20 AM
|
0
|
3
|
1071
|
|
POST
|
Hi Charles, It looks like you need to enter a bing maps key. It's unable to load the map because it may be using a bing maps basemap. See the config or documentation for more. Whoops, yeah. My bad.
... View more
12-09-2011
04:43 PM
|
0
|
0
|
1722
|
|
POST
|
I have followed the instructions for 1.4 and have a problem. demo map when you click on one of the maps the inbed map starts to load but then just hangs with the spinning loading icon. Am I missing something? Thanks
... View more
12-08-2011
10:28 AM
|
0
|
0
|
1619
|
|
POST
|
Yes I see that but I would like to have multiple small images say 30x30px on the same popup window.
... View more
12-08-2011
10:09 AM
|
0
|
0
|
556
|
|
POST
|
Is there a way to show two or more small thumbnail sized images in one popup window?
... View more
12-08-2011
09:05 AM
|
0
|
4
|
3176
|
|
POST
|
Thanks! Im looking to somehow change the mouseover event to an onclick.
... View more
02-07-2011
12:00 PM
|
0
|
0
|
376
|
|
POST
|
I am using a georss layer. I have tried removing all the "geoRSSFeedMouseOver" events but an still getting popups..
... View more
02-07-2011
05:09 AM
|
0
|
0
|
376
|
|
POST
|
Is there a way to turn off the popup on hover over? Make it so a user must click on points to show popups.. Thanks!
... View more
02-04-2011
05:08 AM
|
0
|
3
|
914
|
| Title | Kudos | Posted |
|---|---|---|
| 30 | 11-05-2018 01:27 PM | |
| 2 | 05-15-2015 12:55 PM | |
| 3 | 04-22-2014 04:59 PM |
| Online Status |
Offline
|
| Date Last Visited |
09-17-2025
06:42 AM
|