⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 regionbacking.java

📁 一个基于PlaceLab的室内和室外的智能导航系统
💻 JAVA
字号:
package org.placelab.demo.mapview;/** * A Region is place defined by a rectangle that encloses it. */public class RegionBacking {	public String name;	public String text;		// lower left coords	public double originLat, originLon;	// upper right coords	public double upperRightLat, upperRightLon;		public RegionBacking(String _name, String _text,			double _originLat, double _originLon, double _upperRightLat, double _upperRightLon) {		super();		this.name = _name;		this.text = _text;		this.originLat = _originLat;		this.originLon = _originLon;		this.upperRightLat = _upperRightLat;		this.upperRightLon = _upperRightLon;	}		public String getName() {		return name;	}	public void setName(String name) {		this.name = name;	}	public double getOriginLat() {		return originLat;	}	public void setOriginLat(double originLat) {		this.originLat = originLat;	}	public double getOriginLon() {		return originLon;	}	public void setOriginLon(double originLon) {		this.originLon = originLon;	}	public String getText() {		return text;	}	public void setText(String text) {		this.text = text;	}	public double getUpperRightLat() {		return upperRightLat;	}	public void setUpperRightLat(double upperRightLat) {		this.upperRightLat = upperRightLat;	}	public double getUpperRightLon() {		return upperRightLon;	}	public void setUpperRightLon(double upperRightLon) {		this.upperRightLon = upperRightLon;	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -