BlackWasp
BlackWasp

Reputation: 4971

Is there a free maps API like Bing/Google maps that can be used in internal applications

The licenses for both of the above allow certain free use but not for my requirements. I need a map API that can be used to find a place by postcode, then narrow down the position of a specific building to obtain the lat/long. The customer doesn't technically need this but it will make the locating of their store lat/longs easier. The very low usage involved doesn't warrant a paid subscription, as we are expecting up to 25 store position look ups per year.

Will be using the solution from WPF, though a browser-based option is fine.

Upvotes: 0

Views: 4152

Answers (3)

Nicolas Boonaert
Nicolas Boonaert

Reputation: 2952

What you're trying to do is perform a geocode operation over a maps platform. There is currently no free platform that would allow to do so in an internal application.

There are several platforms that will allow you to use it in your internal application with dedicated licensing model and with adapted restrictions:

Google does not provide a known user for internal application out of the licensing of the JavaScript API that might not be the best option to integrate in your WPF control (without using WebBrowser control and interop code).

OpenStreetMap also had limitations regarding the Licence that applies which was Share-A-Like, now it's ODBL and you should be able to use this project but the license only apply to the database, not the service that might be exposed (hosted) by tiers company. You might be interested in CloudMade offers.

Upvotes: 3

Chris Badman
Chris Badman

Reputation: 501

I still think Bing will be suitable for your situation. I think what you are looking for is the Bing Search Service.

Using this, you can construct a StructuredSearchQuery to obtain the results of the place (which will be your Keyword), which should contain the Lat/Lon that you are after.

Have a look at the Microsoft example here.

The licensing is the same as for the Bing Maps control, so with your expected lookups range, it should be free for you to use.

Upvotes: 0

Stefan B.
Stefan B.

Reputation: 384

Yes it is http://www.openstreetmap.org/

but I have not used is until yet

http://wiki.openstreetmap.org/wiki/API

Upvotes: 5

Related Questions