Skip to content

Latest commit

 

History

History
49 lines (30 loc) · 1.68 KB

File metadata and controls

49 lines (30 loc) · 1.68 KB

Overview
Overview
Prerequisites
Prerequisites
Discovery
Discovery
Configuration
Configuration
Development
Development

Configuration

Navigate to https://account.hanatrial.ondemand.com/cockpit#/home/trialhome and log on with your SAP account. In the "Next Steps" section on the page, choose Launch SAP Web IDE:

sap trial home

Choose SAP Cloud Platform Cockpit

sap cloud platform cockpit

From the menu, find the "Destinations" option under "Connectivity" and choose New Destination:

sap new destination

Configure the destination as shown below. Use the "New Property" button to add the two additional fields:

sap map image destination

Save your work. You have created a new destination to allow the HERE Geocode API to be used in an SAPUI5 project.

Configure Destination

Open your project from the previous workshop. Find the "neo-app.json" file and add the following node to support the MapImage destination created in previous step:

    {
    	"path": "/geo",
        "target": {
        	"type": "destination",
        	"name": "Geocoder",
        	"entryPath": "/"
    	},
    	"description": "Forward Geocoder"
    }

Your new node should be placed in JSON as shown here:

sap new app

Save changes.

Proceed to next section