Tools-API
Einführung
tools-api ist eine Sammlung an Tools und Werkzeugen zur Unterstützung von Business Prozessen. Unsere Tools-API bietet Prüfmechanismen für Felder wie bspw. VAT (UID Nummer), IBAN und BIC, erlaubt Geocoding und Reverse Geocoding mit zusätzlichen Details (nur Österreich) oder das erstellen von QR Codes und statischen Karten.
Begriffe
Zoom Level
Zoom level 0 is the most zoomed out zoom level available and each integer step in zoom level halves the X and Y extents of the view and doubles the linear resolution.
Google Maps was built on a 256x256 pixel tile system where zoom level 0 was a 256x256 pixel image of the whole earth. A 256x256 tile for zoom level 1 enlarges a 128x128 pixel region from zoom level 0.
Map Scale
Map Scale at Various Zoom Levels
Google Maps uses a Mercator projection so the scale varies substantially with latitude. A formula for calculating the correct scale based on latitude is:
meters_per_pixel = 156543.03392 * Math.cos(latLng.lat() * Math.PI / 180) / Math.pow(2, zoom)