Missing semicolon.
git-svn-id: http://svn.openlayers.org/trunk/openlayers@9944 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -70,7 +70,7 @@
|
|||||||
out_options
|
out_options
|
||||||
);
|
);
|
||||||
var kmlOptionsIn = OpenLayers.Util.extend(
|
var kmlOptionsIn = OpenLayers.Util.extend(
|
||||||
{extractStyles: true}, in_options)
|
{extractStyles: true}, in_options);
|
||||||
formats = {
|
formats = {
|
||||||
'in': {
|
'in': {
|
||||||
wkt: new OpenLayers.Format.WKT(in_options),
|
wkt: new OpenLayers.Format.WKT(in_options),
|
||||||
@@ -146,7 +146,7 @@
|
|||||||
vectors.addFeatures(features);
|
vectors.addFeatures(features);
|
||||||
map.zoomToExtent(bounds);
|
map.zoomToExtent(bounds);
|
||||||
var plural = (features.length > 1) ? 's' : '';
|
var plural = (features.length > 1) ? 's' : '';
|
||||||
element.value = features.length + ' feature' + plural + ' added'
|
element.value = features.length + ' feature' + plural + ' added';
|
||||||
} else {
|
} else {
|
||||||
element.value = 'Bad input ' + type;
|
element.value = 'Bad input ' + type;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user