Google maps automation using appium

Hi @Aleksei , @anil.jogireddy,
I am trying to automate the application having the HERE maps view.

My scenario is:

  1. I have to tap features on the map.
    Output: Feature highlights on the map and window having the feature details are displayed.

Global.mDriver.findElementById(“com.xyz/addon_controls_Layout”).click();
Dimension size = Global.mDriver.manage().window().getSize();
new TouchAction(Global.mDriver).press(230,225).waitAction(1000).release().perform();

Using the above code, i can able to tap on the object. But it is not working if pan the map or device resolution is changed.

Another problem is: Unable to inspect the features(objects) which are having on the map.

Could you please help with the solution?