defmodule Paleta.Components.Live.GoogleMap do use Phoenix.LiveComponent @impl true def update(assigns, socket) do socket = assign(socket, id: assigns.id) {:ok, push_event(socket, "googlemap:#{socket.assigns.id}:locations", %{ "locations" => assigns.locations })} end @impl true def render(assigns) do ~H"""