示例#1
0
        public void lonEdited(double newLon)
        {
            LatLon latlon = new LatLon(this.center().llz.lat, newLon);

            latlon.CheckValid(this.GetCoordinateSystem());
            this.center().setPosition(new LatLonZoom(latlon, this.center().llz.zoom));
            this.center().ForceInteractiveUpdate();
        }
示例#2
0
        public void latEdited(double newLat)
        {
            LatLon latlon = new LatLon(newLat, center().llz.lon);

            latlon.CheckValid(GetCoordinateSystem());
            center().setPosition(new LatLonZoom(latlon, center().llz.zoom));
            center().ForceInteractiveUpdate();
        }
示例#3
0
 public void lonEdited(double newLon)
 {
     LatLon latlon = new LatLon(this.center().llz.lat, newLon);
     latlon.CheckValid(this.GetCoordinateSystem());
     this.center().setPosition(new LatLonZoom(latlon, this.center().llz.zoom));
     this.center().ForceInteractiveUpdate();
 }