//===================================================
// Prototyp für den Kartenzugriff
//===================================================


function WWMapBase() {

  //-----------------------------------------------
  // Karte laden
  //-----------------------------------------------
  this.LoadMap = function() {
  }

  //-----------------------------------------------
  // Karte entfernen 
  //-----------------------------------------------
  this.UnloadMap = function() {
  }

  //-----------------------------------------------
  // Marker (und InfoWindow) in Karte zeigen
  //-----------------------------------------------
  this.ShowMarker = function (strDescription, strTitle, pathMarker, lat, lng, id, bShowInfo, bZoom, country, species) {
  }

  //-----------------------------------------------
  // Marker verbergen
  //-----------------------------------------------
  this.HideMarker = function (id) {
  }

  //-----------------------------------------------
  // Kartenausschnitt anpassen
  //-----------------------------------------------
  this.FitBounds = function (minLat, maxLat, minLng, maxLng) {
  }

  //------------------------------------
  // lat vom Kartenmittelpunkt
  //------------------------------------
  this.GetCenterLat = function() {
    return 0;
  }

  //------------------------------------
  // lng vom Kartenmittelpunkt
  //------------------------------------
  this.GetCenterLng = function() {
    return 0;
  }

  //------------------------------------
  // aktueller Zoom
  //------------------------------------
  this.GetZoom = function() {
    return 0;
  }

  //------------------------------------
  // geocodeAddress
  //------------------------------------
  this.geocodeAddress = function() {
  }

  //------------------------------------
  // Datum für daylight Objekt setzen
  // (nur für Google Maps API V2)
  //------------------------------------
  this.SetDaylightWhen = function(datum) {
  }

}

