AngryMonkey.CloudComponents.Maps.Maui 4.2.3

dotnet add package AngryMonkey.CloudComponents.Maps.Maui --version 4.2.3
                    
NuGet\Install-Package AngryMonkey.CloudComponents.Maps.Maui -Version 4.2.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="AngryMonkey.CloudComponents.Maps.Maui" Version="4.2.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AngryMonkey.CloudComponents.Maps.Maui" Version="4.2.3" />
                    
Directory.Packages.props
<PackageReference Include="AngryMonkey.CloudComponents.Maps.Maui" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AngryMonkey.CloudComponents.Maps.Maui --version 4.2.3
                    
#r "nuget: AngryMonkey.CloudComponents.Maps.Maui, 4.2.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package AngryMonkey.CloudComponents.Maps.Maui@4.2.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AngryMonkey.CloudComponents.Maps.Maui&version=4.2.3
                    
Install as a Cake Addin
#tool nuget:?package=AngryMonkey.CloudComponents.Maps.Maui&version=4.2.3
                    
Install as a Cake Tool

Angry Monkey CloudComponents

Website GitHub repository Demo deployment Live demo .NET Blazor License

Free, open-source Blazor component libraries for .NET 10.


Packages

Package Version Downloads Description
AngryMonkey.CloudComponents NuGet Downloads Core UI primitives: Popup, Dialog, Switch, Tabs, ProgressBar, VolumeBar
AngryMonkey.CloudComponents.DataGrid NuGet Downloads Data grid with sorting, paging, selection, actions, reordering, and export
AngryMonkey.CloudComponents.VideoPlayer NuGet Downloads HTML5 and HLS video player with controls, casting, and settings
AngryMonkey.CloudComponents.Maps NuGet Downloads Azure Maps wrapper with markers, regions, geocoding, search, and location lock
AngryMonkey.CloudComponents.Maps.Maui NuGet Downloads .NET MAUI location services for CloudComponents Maps
AngryMonkey.CloudComponents.TextEditor NuGet Downloads Rich-text editor with formatting, media embeds, and validated HTML view
AngryMonkey.CloudComponents.Icons NuGet Downloads SVG icon and logo Razor components

Quick start

1. Install

dotnet add package AngryMonkey.CloudComponents
dotnet add package AngryMonkey.CloudComponents.DataGrid
dotnet add package AngryMonkey.CloudComponents.VideoPlayer
dotnet add package AngryMonkey.CloudComponents.Maps
dotnet add package AngryMonkey.CloudComponents.TextEditor
dotnet add package AngryMonkey.CloudComponents.Icons

2. Add namespaces to _Imports.razor

@using CloudComponents.Basic
@using CloudComponents.DataGrid.Components
@using CloudComponents.DataGrid.Models
@using CloudComponents.VideoPlayer
@using CloudComponents.Maps.Components
@using CloudComponents.Maps.Models
@using CloudComponents.Maps.Services
@using AngryMonkey.CloudComponents.TextEditor.Components
@using AngryMonkey.CloudComponents.TextEditor.Models
@using AngryMonkey.CloudComponents.TextEditor.Services
@using CloudIcons
@using CloudIcons.Icons
@using CloudIcons.Logos
@using AngryMonkey.CloudComponents.Markdown

3. Add required assets to wwwroot/index.html


<link rel="stylesheet" href="_content/AngryMonkey.CloudComponents/css/amc-components.css" />
<script src="_content/AngryMonkey.CloudComponents/js/amc-components.js"></script>
<script src="_content/AngryMonkey.CloudComponents/js/dialog.js"></script>


<script src="_content/AngryMonkey.CloudComponents.VideoPlayer/hls.js"></script>
<script src="_content/AngryMonkey.CloudComponents.VideoPlayer/videoPlayer.js"></script>
<script src="_content/AngryMonkey.CloudComponents.VideoPlayer/progressbar.js"></script>

Components at a glance

Basics (AngryMonkey.CloudComponents)

Component Minimum usage
PopupComp <PopupComp @ref="_p" Title="Hello"><p>Body</p></PopupComp> then await _p.Open()
Dialog <Dialog @ref="_d" Title="Confirm" Buttons="@_btns">Message</Dialog>
Switch <Switch Value="@_val" ValueChanged="OnChanged" AllowNone="true" DisplayText="true" />
Tabs <Tabs TabsList="@_tabs" /> where _tabs is a List<TabItem>
ProgressBar <ProgressBar Style="ProgressBarStyle.Flat" Value="@_v" Total="100" OnChanged="OnChanged" />
VolumeBar <VolumeBar Value="@_vol" Extended="true" OnChanged="OnChanged" />
CloudMarkdown <CloudMarkdown SourceUrl="@readmeUrl" DocumentRoute="/docs" />

CloudMarkdown

CloudMarkdown renders either a remote .md / .markdown document (SourceUrl) or supplied Markdown (Content) inside isolated documentation styles. It resets surrounding page styles, resolves GitHub README links through DocumentRoutes, preserves external GitHub links, and scrolls local fragments without leaving #... in the address bar. Register builder.Services.AddHttpClient() in the host app before loading remote documents. Theme overrides can be passed through Style with component-local variables such as --cloud-markdown-link, --cloud-markdown-surface, and --cloud-markdown-font-size. Raw HTML is intentionally disabled for safe remote rendering.

CloudGrid (AngryMonkey.CloudComponents.DataGrid)

<CloudGrid TItem="MyModel" DataProvider="LoadData" Columns="@_columns" />
  • DataProvider — async callback for server-driven load, sort, and page
  • CloudGridHeaderOptions — adds search, refresh, export toolbar
  • Paging modes: None, LoadMore, Pager
  • Row actions, bulk selection, column reordering, drag-and-drop row reordering

See CloudComponents.DataGrid/README.md for the full API.

VideoPlayer (AngryMonkey.CloudComponents.VideoPlayer)

<VideoPlayer Metadata="@_metadata" />

Build VideoPlayerMetadata to configure source URL, type (MP4 / HLS), controls, volume, loop, aspect ratio, and captions. See CloudComponents.VideoPlayer/README.md for all options.

AzureMap (AngryMonkey.CloudComponents.Maps)

<AzureMap @ref="_map" Options="@_options" OnMapReady="OnMapReady" />

Register your key in Program.cs:

builder.Services.AddAzureMaps(options => options.SubscriptionKey = "YOUR_AZURE_MAPS_KEY");

Features: markers, regions, polygon boundaries, geocoding, reverse geocoding, place search, pin-my-location, location lock, camera and style updates at runtime. See CloudComponents.Maps/README.md for the full API.

CloudEditor (AngryMonkey.CloudComponents.TextEditor)

<CloudEditor @bind-Value="_html" Placeholder="Start writing…" FirstHeadingLevel="2" />

Rich text editor with headings, bold/italic/strikethrough, colors, alignment, lists, links, image/video insertion, fullscreen mode, and HTML code view with validation. See CloudComponents.TextEditor/README.md for the full API.

CloudIcons (AngryMonkey.CloudComponents.Icons)

<PlayIcon />  <PauseIcon />  <SearchIcon />  <GoogleLogo />  <MicrosoftLogo />

SVG icon and logo Razor components — no extra CSS class or import required.


Repository structure

CloudComponents/
+-- CloudComponents.Basic/         # Core UI primitives package
+-- CloudComponents.DataGrid/          # Data grid library
+-- CloudComponents.VideoPlayer/   # Video player library
+-- CloudComponents.Maps/          # Azure Maps library
+-- CloudComponents.Maps.Web/      # Maps web helpers
+-- CloudComponents.TextEditor/        # Rich text editor library
+-- CloudComponents.Icons/         # SVG icon components
+-- CloudComponents.Demo/          # Unified demo app (deployed to GitHub Pages)
+-- archived/                      # Legacy standalone demo projects (reference only)

Contributing

Pull requests are welcome. For larger changes please open an issue first to discuss the approach.

License

MIT


Angry Monkey Cloud

This project is part of the Angry Monkey Cloud open-source ecosystem. Follow the shared AI development instructions and browse the project catalog and GitHub organization.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
4.2.3 40 7/25/2026
4.2.2 53 7/22/2026
4.2.1 92 7/20/2026
4.2.0 99 7/12/2026