A quarkus service that shows 5G antennas on a map along with incidents
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
561 B

package org.sebi;
public class Antenna {
private double latitude;
private double longitude;
public double getLatitude() {
return latitude;
}
public void setLatitude(double latitude) {
this.latitude = latitude;
}
public double getLongitude() {
return longitude;
}
public void setLongitude(double longitude) {
this.longitude = longitude;
}
public Antenna(double latitude, double longitude) {
this.latitude = latitude;
this.longitude = longitude;
}
}