All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.atlis.location.model.BoundingBox Maven / Gradle / Ivy

Go to download

Java library for interaction with Panoramio API http://www.panoramio.com/api/data/api.html

There is a newer version: 1.0.1
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.atlis.location.model;

import com.atlis.location.panoramio.model.PanoramioAbs;

/**
 *
 * @author nf
 */
public class BoundingBox  extends PanoramioAbs{

    MapPoint minPoint;
    MapPoint maxPoint;

    public BoundingBox(MapPoint minPoint, MapPoint maxPoint) {
        this.minPoint = minPoint;
        this.maxPoint = maxPoint;
    }

    public MapPoint getMinPoint() {
        return minPoint;
    }

    public void setMinPoint(MapPoint minPoint) {
        this.minPoint = minPoint;
    }

    public MapPoint getMaxPoint() {
        return maxPoint;
    }

    public void setMaxPoint(MapPoint maxPoint) {
        this.maxPoint = maxPoint;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy