mirror of
https://github.com/drygdryg/netbox-plugin-device-map.git
synced 2024-11-26 12:10:54 +03:00
28 lines
791 B
Python
28 lines
791 B
Python
from extras.plugins import PluginConfig
|
|
|
|
|
|
class DeviceMapConfig(PluginConfig):
|
|
name = 'netbox_device_map'
|
|
verbose_name = 'Device map'
|
|
version = '0.1.1'
|
|
author = 'Victor Golovanenko'
|
|
author_email = 'drygdryg2014@yandex.com'
|
|
base_url = 'device-map'
|
|
default_settings = {
|
|
'device_geolocation_cf': 'geolocation',
|
|
'cpe_device_role': 'CPE',
|
|
'geomap_settings': {
|
|
'attribution': 'Data by © <a href="https://openstreetmap.org">OpenStreetMap</a>',
|
|
'crs': 'EPSG3857',
|
|
'tiles': {
|
|
'url_template': 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
|
|
'options': {
|
|
'subdomains': 'abc',
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
config = DeviceMapConfig
|