mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
556 B
Python
18 lines
556 B
Python
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
class EmulatorGeo(object):
|
|
|
|
def __init__(self, emulator):
|
|
self.emulator = emulator
|
|
|
|
def set_default_location(self):
|
|
self.lon = -122.08769
|
|
self.lat = 37.41857
|
|
self.set_location(self.lon, self.lat)
|
|
|
|
def set_location(self, lon, lat):
|
|
self.emulator._run_telnet('geo fix %0.5f %0.5f' % (self.lon, self.lat))
|
|
|