if (mapViewManager.tryToChangeToMapView(url))
return false;
try {
Controller.getCurrentController().getViewController().setWaitingCursor(true);
final MapModel newModel = new MMapModel();
newModel.addExtension(DocuMapAttribute.instance);
UrlManager.getController().load(url, newModel);
newModel.setReadOnly(true);
fireMapCreated(newModel);
newMapView(newModel);
return true;