I am new to the Here iOS SDK and I am trying to use the places API by searching for places around a location. I did a pod try HEREMapsStarter
and tried the following code:
let places = NMAPlaces()
let location = NMAGeoCoordinates(latitude: yyy, longitude: xxx)
let result2 = places.makeSearchRequest(location: location, query: "restaurant")
let result = places.makeHereRequest(location: location, filters: nil)
result?.start(listener: self)
result2?.start(listener: self)
But this doesn't work because both result and result2 are nil. What am I missing here?
It seems that you are trying to create the places object:
But places object is Singleton and can be retrieved only by calling shared()
Also as you are using
result?.start(listener: self)
method you need to implement the NMAResultListener listener. Example of simple listener:====================================================================
Let's assume you are searching in UK, London(51.514545,-0.131666) and use NMAResultListener as described above. In both requests the listener parameter
self
implements NMAResultListener as described above.The code for makeSearchRequest might be next:
When request is finished the makeSearchRequest will return results:
And code for makeHereRequest:
makeHereRequest will return results:
Also note that depending on network conditions and the location of search there also might be error result like
not found
or other errors.