in wicket/common/src/main/java/demoapp/webapp/wicket/common/featured/customui/WhereInTheWorldPanel.java [67:85]
public void onInitialize() {
super.onInitialize();
val managedObject = getModel().getObject();; // <.>
val customUiVm = (WhereInTheWorldPage) managedObject.getPojo(); // <.>
val latitude = new Label("latitude", customUiVm.getLatitude()); // <.>
val longitude = new Label("longitude", customUiVm.getLongitude()); // <.>
val address = new Label("address", customUiVm.getAddress()); // <.>
val map = createMapComponent("map", customUiVm); // <.>
val sourcesComponent = createPropertyComponent("sources"); // <.>
val descriptionComponent = createPropertyComponent("description"); // <.>
addOrReplace(
latitude, longitude, address, map,
sourcesComponent, descriptionComponent); // <.>
}