Overview
Summary
Contact
Donate
Imprint
Prompt for the
MapViewSessionView
Please create a React-JS view called "MapViewSessionView" for the fields of the MapViewSession entity. The MapViewSessionView must contain the following fields: - name: CenterLatitude type: DOUBLE - name: CenterLongitude type: DOUBLE - name: ClientDevice type: STRING - name: ClientIp type: STRING - name: EndedAtUtc type: DATE - name: StartedAtUtc type: DATE - name: UserAccount type: UserAccount - name: ZoomLevel type: INT The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing MapViewSession entity should be loaded from the relative URL: "/UserAccountService/mapviewsession/{id}" (HTTP-GET) If a new MapViewSession entity has been created, the new entity should be posted to the relative URL: "/UserAccountService/mapviewsession" (HTTP-POST) If an existing MapViewSession entity has been updated, the modified entity should be sent to the relative URL: "/UserAccountService/mapviewsession/{id}" (HTTP-PUT) If an existing MapViewSession entity has to be deleted, the following relative URL should be called: "/UserAccountService/mapviewsession/{id}" (HTTP-DELETE) Add a HTML table to the view with the following MapViewWeatherLayer columns: - column: MapViewSession - column: WeatherLayer - column: Visible The table should have the title "MapViewWeatherLayers" und the data must be loaded from the server with the following relative URL: "/UserAccountService/mapviewweatherlayer/mapviewsession/{id}" Add a HTML table to the view with the following MapViewFilterPreset columns: - column: MapViewSession - column: FilterPreset The table should have the title "MapViewFilterPresets" und the data must be loaded from the server with the following relative URL: "/WeatherLayerService/mapviewfilterpreset/mapviewsession/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint