}
}
private void addGeonamesPointMarker(BookmarkManager bookmarkManager,Bookmark bookmark, MachineTag mt) throws NoSuchUserException, NoSuchLinkException, MissingIdException, NoSuchBookmarkException{
String placename = TagUtil.mapUnderscoreToSpace(mt.getValue());
Geo geo = GeonamesSearch.searchGeonames(placename);
if(geo != null){
PointMarker pm = new PointMarker();
pm.setPoint(geo.getLongitude(), geo.getLatitude());
pm.setNotes(placename);
bookmarkManager.addPointMarker(bookmark,pm);
}
}