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

com.venky.geo.City Maven / Gradle / Ivy

There is a newer version: 1.18
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.venky.geo;




/**
 *
 * @author venky
 */
public class City {
    private GeoLocation location; 
    public City(String name){
        this.location = new GeoCoder().getLocation(name);
    }

    public GeoLocation getLocation() {
        return location;
    }
    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy