Karte mit Geocode/Zoomlevel initialisiert:

 
© 2025 Falk Verlag, map data © OpenStreetMap contributors, License
2km
  1. registerNodeListener(window, "load", main);  
  2. // define map gobal  
  3. var map;      
  4. // html loaded  
  5. function main(){  
  6.     // create a new map  
  7.     map = new FalkMap("mymap");  
  8.     geocode = new FalkPoint(1025593, 6220893);  
  9.     map.centerMapToGeocode(geocode, 4);  
  10. }  

Für die Karte wurde per CSS Breite und Höhe festgelegt.

  1. #mymap { width600pxheight300px;}