Skip to content

Both copy text to your clipboard — Build with AI copies a setup prompt to paste into Claude Code, Cursor, Codex or Copilot; Copy page as Markdown copies this page to paste into a chat. How it works

Scroll by Method

This example shows how you can move the map by x/y pixels.

kotlin
mapMetricsMap.scrollBy(
    (seekBarX.progress * MULTIPLIER_PER_PIXEL).toFloat(),
    (seekBarY.progress * MULTIPLIER_PER_PIXEL).toFloat()
)