Integrate Google Maps and Appian on 7.10

I have a requirement where I need to integrate Google Maps with Appian. For example origin is A and destination is B and i click on submit, i should get the possible routes as radio buttons and when i select one of them it should display the route. This application is on 7.10

OriginalPostID-185711

OriginalPostID-185711

  Discussion posts and replies are publicly visible

Parents Reply
  • Hi Aditya,

    I have tried to embed google map in SAIL form using webContenFfield() and it is also working for maps.

    just for illustration,PFB the code below:

    a!formLayout(

    label: "Display Google Map",

    instructions: "Enter Latitude and Longitude to locate on map",

    contents: {

    a!columnsLayout(

    columns: {

    a!columnLayout(

    contents: {

    a!floatingPointField(

    label: "Latitude",

    value: ri!latitude,

    saveInto: ri!latitude,

    readOnly: true()

    ),

    a!floatingPointField(

    label: "Longitude",

    value: ri!longitude,

    saveInto: ri!longitude,

    readOnly: true()

    ),

    a!webContentField(

     label:"Map",

       source:"www.google.com/.../place

     height :"MEDIUM"

    )

    }

    )

    }

    )

    })

     

Children