Liste de tous les membres
Description détaillée
Définition à la ligne 19 du fichier openstreetmap.php.
Documentation des constructeurs et destructeur
Constructor.
- Paramètres:
-
- Depuis:
- 13.1
Définition à la ligne 94 du fichier openstreetmap.php.
{
$this->options = isset($options) ? $options :
new JRegistry;
$this->client = isset($client) ? $client :
new JHttp($this->options);
$this->options->def('api.url', 'http://api.openstreetmap.org/api/0.6/');
}
Documentation des fonctions membres
JOpenstreetmap::__get |
( |
|
$name | ) |
|
Method to get object instances
- Paramètres:
-
string | $name | Name of property to retrieve |
- Renvoie:
- JOpenstreetmapObject Openstreetmap API object
- Depuis:
- 13.1
- Exceptions:
-
Définition à la ligne 116 du fichier openstreetmap.php.
{
$class = 'JOpenstreetmap' . ucfirst($name);
if (class_exists($class))
{
if (false == isset($this->$name))
{
$this->$name = new $class($this->options, $this->client, $this->oauth);
}
return $this->$name;
}
throw new InvalidArgumentException(sprintf('Argument %s produced an invalid class name: %s', $name, $class));
}
JOpenstreetmap::getOption |
( |
|
$key | ) |
|
Get an option from the JOpenstreetmap instance.
- Paramètres:
-
string | $key | The name of the option to get. |
- Renvoie:
- mixed The option value.
- Depuis:
- 13.1
Définition à la ligne 142 du fichier openstreetmap.php.
{
return $this->options->get($key);
}
JOpenstreetmap::setOption |
( |
|
$key, |
|
|
|
$value |
|
) |
| |
Set an option for the Openstreetmap instance.
- Paramètres:
-
string | $key | The name of the option to set. |
mixed | $value | The option value to set. |
- Renvoie:
- JOpenstreetmap This object for method chaining.
- Depuis:
- 13.1
Définition à la ligne 157 du fichier openstreetmap.php.
{
$this->options->set($key, $value);
return $this;
}
Documentation des données membres
JOpenstreetmap::$changesets |
|
protected |
JOpenstreetmap::$elements |
|
protected |
La documentation de cette classe a été générée à partir du fichier suivant :