Are you sure you're looking at the right variable? I'm seeing these options for the overview map widget
[ATTACH=CONFIG]32878[/ATTACH]
Are you sure you're looking at the right variable? I'm seeing these options for the overviewmap widget
[ATTACH=CONFIG]32878[/ATTACH]
Are you sure you're looking at the right variable? I'm seeing these options for the overviewmap widget
[ATTACH=CONFIG]32878[/ATTACH]
esriBundle.widgets.overviewMap.NLS_show.title = "SHOW"
var locateText = esriBundle.widgets.overviewMap.NLS_show.title;
var overviewshowText = esriBundle.widgets.overviewMap.NLS_show.title;
overviewMap.on("load", function(){
query('div[title ="' + overviewshowText + '"]').forEach(function(node){
domAttr.remove(node, "title");
domAttr.set(node, "show-title", overviewshowText);
});
});
<!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>Overview Map</title>
<link rel="stylesheet" href="http://js.arcgis.com/3.9/js/dojo/dijit/themes/claro/claro.css">
<link rel="stylesheet" href="http://js.arcgis.com/3.9/js/esri/css/esri.css">
<style>
html, body { height: 100%; width: 100%; margin: 0; padding: 0; }
</style>
<script src="http://js.arcgis.com/3.9/"></script>
<script>
var map;
require([
"esri/map", "esri/dijit/OverviewMap",
"dojo/parser",
"dojo/i18n!esri/nls/jsapi",
"dijit/layout/BorderContainer", "dijit/layout/ContentPane", "dojo/domReady!"
], function (
Map, OverviewMap,
parser, esriBundle
) {
parser.parse();
map = new Map("map", {
basemap: "topo",
center: [-122.445, 37.752],
zoom: 14
});
esriBundle.widgets.overviewMap.NLS_show = "Testing";
var overviewMapDijit = new OverviewMap({
map: map,
visible: true
});
overviewMapDijit.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%; margin:0;">
<div id="map"
data-dojo-type="dijit/layout/ContentPane"
data-dojo-props="region:'center'"
style="padding:0">
</div>
</div>
</body>
</html>
Did you try what Kelly suggested in an earlier post?
var showText = esriBundle.widgets.overviewMap.NLS_show;
overviewMapDijit.on("load", function(){
query('div[title ="' + showText + '"]').forEach(function(node){
domAttr.remove(node, "title");
domAttr.set(node, "data-title", showText);
});
});
[data-title]:hover:after {
content: attr(data-title);
text-align: center;
font-family: Arial;
font-size: 11px;
font-weight: bold;
background-color: white;
border: 1px solid #000000;
border-radius: 1px;
padding: 4px 8px;
left: 40px;
width: 40px;
z-index: 20px;
position: absolute;
}Can you show an example in Fiddle or JSBin?