Popularity
2.0
Declining
Activity
0.0
Stable
1
3
0

Monthly Downloads: 6
Programming language: Haskell
License: MIT License
Tags: Web    

geo-resolver alternatives and similar packages

Based on the "Web" category.
Alternatively, view geo-resolver alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of geo-resolver or a related project?

Add another 'Web' Package

README

haskell-geo-resolver

A Haskell module offering easy access to the google geocoding web service

Please note that this package is also meant to demonstrate basic Haskell features and thus not always takes the most elegant way but the most educational way.

Install

Stack

If you use stack, you can use the latest commit as an extra package in your stack.yaml under the packages-directive:

packages:
- '.'
- location:
    git: [email protected]:markenwerk/haskell-geo-resolver.git
    commit: whatever hash you'd like to use

Otherwise

The module is a cabal package. Have fun.

Haddock

The package is documented using Haddock.

Usage

A minimum example of usage (with @OverloadedStrings@) is:

import GeoRequester
main = geoRequest "Lornsenstraße 43, Kiel" >>= putStrLn . show

While there are convenience functions for the most common use cases, there are means to send arbitrary requests.

If you do so, please see "Geocoder.Parser" for ways to access the results. As a hint, 'GoogleAnswer' is instance of 'Foldable' and 'Functor'.