Download the PHP package equi/opengeodb-laravel without Composer

On this page you can find all versions of the php package equi/opengeodb-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package opengeodb-laravel

Opengeodb Laravel

Creative Commons Lizenzvertrag
Dieses Werk ist lizenziert unter einer Creative Commons Namensnennung-Keine Bearbeitung 3.0 Deutschland Lizenz.

�ber

Installieren

Composer /Artisan

entweder

oder in die composer.json die Zeile "equi/opengeodb-laravel": "~1.0", hinzuf�gen

Beim manuellen Updaten noch den Befehl ausf�hren

in die /config/app.php im Array "providers" diese Zeile einf�gen

anschlie�end default configs/migrations/.. in den /app Ordner kopieren.

Fehlende Dateien suchen

OpenGeoDB -> Downloads

Welche Dateien braucht ihr?

Pflicht:

Optional je Nachdem welches Land ihr ben�tigt paarwei�e laden:

Die Dateien scheinen veraltet diese werden aber in changes.sql aktualisiert

wohin damit?

Standardm��ig unter /Storage/app/opengeodb/sql oder den festgelegten Ordner in der Config unter storageopengodbsql

Konfiguration config/opengeodb.php

Datenbanken erstellen und f�llen

F�r manche PHP Konfiguration ist die de.sql zu gro� hierf�r k�nnt ihr folgendes versuchen:

Einbinden/Benutzen

Karte zeichnen

Das Beispiel zeigt ein Controller der in der routes.php auf /Karte/ reagiert.

Dies ist mein aktueller weg um die Ladezeiten gering zu halten. Die Punkte sind in der map.blade.php:

  1. Um nur die Karte von Deutschland anzuzeigen kann einfach /Karte/show/105 (250px) aufgerufen werden.
    • <img src="{{URL::Asset('/karte/show/' . $demaps[$x]->loc_id)}}" alt="Karte {{$demaps[$x]->GeodbMaster()->name()}}">
    • Bitte in eine for-schleife setzen oder das $x mit einer zahl ersetzen.
  2. In der Funktion /Karte/showbig/105 (1090px) werden noch die Punkte hinzugezeichnet.
    • <img src="{{URL::Asset('/karte/showbig/' . $demaps[$x]->loc_id)}}" alt="Karte {{$demaps[$x]->GeodbMaster()->name()}}" usemap="#map-{{$demaps[$x]->loc_id}}">
    • Bitte in eine for-schleife setzen oder das $x mit einer Zahl ersetzen.
  3. In der Funktion /Karte/json/105 gebe ich noch die einzelnen Punkte als JSON zur�ck.

    • <map name="map-{{$demaps[$x]->loc_id}}" id="map-{{$demaps[$x]->loc_id}}">

    • Einfach als Javascript gethtmlmap($demaps[$x]->loc_id) aufrufen um an das JSON f�r die Karte zu kommen.
    • UIkit.notify(....); setzt ein kleines notify am Kopf der Seite ab. (ben�tigt uikit)

Daten abholen/Entfernung berechnen

Weg 1:

Das Model Location hat die felder lat und lon gef�llt um nicht immer 100 MB an Daten zu durchsuchen.

Weg 2:

Sonstiges

Um das ganze Skript in Aktion zu erleben besucht einfach Thermen-Portal


All versions of opengeodb-laravel with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.9
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package equi/opengeodb-laravel contains the following files

Loading the files please wait ....