Example #1
0
 def __init__(self, monav_server_executable_path, monav_data_path):
     threadName = constants.THREAD_ROUTING_OFFLINE_MONAV
     RoutingProvider.__init__(self, threadName=threadName)
     from core import monav_support
     self._monav = monav_support.MonavServer(
         monav_data_path=monav_data_path,
         monav_server_executable_path=monav_server_executable_path)
Example #2
0
 def __init__(self, monav_server_executable_path, monav_data_path):
     threadName = constants.THREAD_ROUTING_OFFLINE_MONAV
     RoutingProvider.__init__(self, threadName=threadName)
     from core import monav_support
     self._monav = monav_support.MonavServer(
         monav_data_path=monav_data_path,
         monav_server_executable_path=monav_server_executable_path
     )
Example #3
0
    def __init__(self, monav_light_executable_path, monav_data_path):
        threadName = constants.THREAD_ROUTING_OFFLINE_MONAV
        RoutingProvider.__init__(self, threadName=threadName)
        self._utility_path = monav_light_executable_path
        self._data_path = monav_data_path

        from core import monav_support
        self._monav = monav_support.MonavLight(
            monav_light_executable_path=monav_light_executable_path,
            monav_data_path=monav_data_path,
        )
Example #4
0
    def __init__(self, monav_light_executable_path, monav_data_path):
        threadName = constants.THREAD_ROUTING_OFFLINE_MONAV
        RoutingProvider.__init__(self, threadName=threadName)
        self._utility_path = monav_light_executable_path
        self._data_path = monav_data_path

        from core import monav_support
        self._monav = monav_support.MonavLight(
            monav_light_executable_path=monav_light_executable_path,
            monav_data_path=monav_data_path,
        )
Example #5
0
 def __init__(self):
     threadName = constants.THREAD_ROUTING_ONLINE_GOOGLE
     RoutingProvider.__init__(self, threadName=threadName)
Example #6
0
 def __init__(self):
     threadName = constants.THREAD_ROUTING_OFFLINE_OSM_SCOUT_SERVER
     RoutingProvider.__init__(self, threadName=threadName)
Example #7
0
 def __init__(self):
     threadName = constants.THREAD_ROUTING_ONLINE_GOOGLE
     RoutingProvider.__init__(self, threadName=threadName)