You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -39,6 +41,10 @@ Update the following fields in the *appsettings.json* file to connect the web ap
39
41
3. Key Field should be set to the field specified as a key document Id in the index.
40
42
4. Sometimes metadata_storage_path is the key, and it gets base64 encoded. In that case set IsPathBase64Encoded to false.
41
43
5. The GraphFacet is used for generating the relationship graph.
44
+
6. You can optially provide an Azure Maps account if you would like to display a geographic point in a map for a given document.
45
+
The template expects a field called *geolocation*. If your field has a different name, you can modify details.js to use a different field.
46
+
47
+

42
48
43
49
44
50
## 2. Update SearchModel.cs
@@ -57,6 +63,11 @@ If you would like to further customize the UI, you can update the following fiel
57
63
## 3. Add additional customization
58
64
This template serves as a great baseline for a Cognitive Search solution, however, you may want to make additional updates depending on your use case.
59
65
66
+
We have a special behavior if you have a field called *translated_text*. The UI will automatically show the original text and the translated text in the UI. This can be handy. If you would like to change this behavior (disable it, or change the name of the field), you can do that at details.js (GetTranscriptHTML method).
67
+
68
+

69
+
70
+
60
71
### *Notes*
61
72
Much of the UI is rendered dynamically by javascript. Some important files to know when making changes to the UI are:
0 commit comments