Probably the simplest and most basic map demo there is, this initialises the Nokia Maps API, loads a map into an HTML <div>, makes it draggable and ... err .. that's it.


JavaScript Demo Source: nokia-basic-map.js

var	map;

function initialize() {
	map = new nokia.maps.map.Display(
		document.getElementById("map"),
		{
	    	'zoomLevel': 8,
	    	'center': [52.530390, 13.385190],
			components: [ 
				new nokia.maps.map.component.Behavior()
			]
		});
}