Merge pull request #13464 from ahocevar/projection-warning
Do not warn about coordinates when view projection is configured
This commit is contained in:
@@ -401,15 +401,15 @@ class View extends BaseObject {
|
||||
*/
|
||||
this.cancelAnchor_ = undefined;
|
||||
|
||||
if (options.projection) {
|
||||
disableCoordinateWarning();
|
||||
}
|
||||
if (options.center) {
|
||||
options.center = fromUserCoordinate(options.center, this.projection_);
|
||||
}
|
||||
if (options.extent) {
|
||||
options.extent = fromUserExtent(options.extent, this.projection_);
|
||||
}
|
||||
if (options.projection) {
|
||||
disableCoordinateWarning();
|
||||
}
|
||||
|
||||
this.applyOptions_(options);
|
||||
}
|
||||
|
||||
@@ -620,7 +620,7 @@ export function fromUserCoordinate(coordinate, destProjection) {
|
||||
showCoordinateWarning = false;
|
||||
// eslint-disable-next-line no-console
|
||||
console.warn(
|
||||
'Call useGeographic() ol/proj once to work with [longitude, latitude] coordinates.'
|
||||
'Call useGeographic() from ol/proj once to work with [longitude, latitude] coordinates.'
|
||||
);
|
||||
}
|
||||
return coordinate;
|
||||
|
||||
Reference in New Issue
Block a user