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

com.dlsc.gmapsfx.service.elevation.ElevationServiceCallback Maven / Gradle / Ivy

/*
 * 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.dlsc.gmapsfx.service.elevation;

/** Parties interested in receiving the results from a call to the 
 * {@link ElevationService} must implement this interface. The results may be 
 * an empty array if the status is anything other than ElevationStatus.OK
 *
 * @author Geoff Capper
 */
public interface ElevationServiceCallback {
    
    public void elevationsReceived(ElevationResult[] results, ElevationStatus status);
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy