Skip to content

woheller69/OmGeoDialog

Repository files navigation

OmGeoDialog

Overview

This library contains an Android DialogFragment for search-as-you-type via the Open-Meteo geocoding API. (see https://open-meteo.com/en/docs/geocoding-api) You can type an address and get the coordinates back. The result will be shown on a map.

Installation

Add the JitPack repository to your root build.gradle at the end of repositories:

allprojects {
  repositories {
    ...
    maven { url 'https://jitpack.io' }
  }
}

Add the library dependency to your build.gradle file.

dependencies {
    implementation 'com.github.woheller69:OmGeoDialog:V1.5'
}

Usage

Let your activity implement OmGeoDialog.OmGeoDialogResult

        public class MainActivity extends AppCompatActivity implements OmGeoDialog.OmGeoDialogResult

and override onOmGeoDialogResult, where you define what to do with the result

    @Override
    public void onOmGeoDialogResult(City city) {

    String cityName = city.getCityName();
    String countryCode = city.getCountryCode();
    float lon = city.getLongitude();
    float lat = city.getLatitude();
    
    // do what you need to do
    
    }

Open a search dialog:

        FragmentManager fragmentManager = getSupportFragmentManager();
        OmGeoDialog omGeoDialog = new OmGeoDialog();
        omGeoDialog.setTitle("Search");
        omGeoDialog.setNegativeButtonText("Cancel");
        omGeoDialog.setPositiveButtonText("Select");
        
        //Optional: Define countries. Otherwise locations in all countries are shown
        ArrayList<String> countryList = new ArrayList<>();
        countryList.add("DE");
        countryList.add("AT");
        omGeoDialog.setCountryList(countryList);
        
        //Optional: Define User-Agent
        omGeoDialog.setUserAgentString(BuildConfig.APPLICATION_ID+"/"+BuildConfig.VERSION_NAME);
        
        omGeoDialog.show(fragmentManager, "");
        getSupportFragmentManager().executePendingTransactions();

License

This library is licensed under the GPLv3.

The library uses:

About

Android DialogFragment for search via Open-Meteo geocoding API

Resources

License

Stars

Watchers

Forks

Packages

No packages published