Tagged Questions
0
votes
0answers
20 views
Google Maps API v3 click events not fired while using DrawingManager
Consider this code
// There's a global var map which is a reference to the google map
google.maps.event.addListener(map, 'click', function(event) {
// Some code here...
});
var dm = new ...
0
votes
1answer
39 views
javascipt:Need to smooth the the lines drawn on canvas
so i have been trying to work on a canvas sketching app. and i had this problem where the line drawn are very unclean. As you can see from image below.
then i tried this and got the below result ...
0
votes
1answer
68 views
HTML5 Canvas drawing ellipse increasingly
I am writing on whiteboard using HTML5 drawing.
The problem is when I am trying to draw ellipse, so press down and drag, many ellipse are drawn.
ctx.moveTo(startX, startY + (y-startY)/2);
...
1
vote
1answer
47 views
Draw text on Google Maps
I know you can draw basic shapes on Google Maps but has anyone tried to draw text on the map? I've seen that this may have been available in the past...
I would like to use JavaScript to draw text ...
3
votes
1answer
71 views
Technologies for writing a web Paint program
I would like to do a a web Paint program.
Basically I would like to mimic the Windows Paint program in a web application.
The features that I don't really know how to implement are:
the drawing ...
4
votes
1answer
208 views
Draw a (progressive) paint splash on a canvas
I'm looking for a simple method which can able me to draw in a canvas a paint splash like this on :
One method will be to fire a lot of small particles which will paint a little circle, but I don't ...
0
votes
2answers
160 views
How to automatically scale pixel positions in HTML5 Canvas?
I have created an HTML5 based drawing application which used HTML5 Canvas element . I have written code to draw sketches on the Canvas .
The original size of the Canvas was 500 px x 500 px . All ...
0
votes
1answer
29 views
Canvas Drawing Flickring
I'm hoping that somebody with drawing experience can help me figure out why, in the following example, I'm seeing occasional flickering of the dots. I'm at a loss here. Thanks for any possible ...
-1
votes
1answer
71 views
How do I draw a closed curve over a set of points?
Basically I want to draw a polygon, but I want the edges to appear soft rather than hard. Since the shape of the polygon is important, the edges have to go over the points.
I've found monotone cubic ...
5
votes
1answer
87 views
Interconnected curved lines
Given a series of JSON co-ordinates typically in the format:
{from: {x:0, y:0}, to: {x:0, y:10}, ...}
I would like to draw a series of straight dotted paths which are connected with simple, fixed ...
0
votes
0answers
46 views
Using three.js, how would I do to draw freehand on a cube?
I've been trying for most of today to find a way to basically represent a graffitti wall, and can't find any pointers in that direction. My first assumption was that I'd need to do some kind of custom ...
0
votes
1answer
25 views
Dragging Still Highlights Text
After reading the responses to this question, I have implemented the same functionality where I check for event.preventDefault and either run event.preventDefault() or event.returnValue = false. This ...
1
vote
2answers
109 views
Algorithm to Move / Rotate Points
What is the algorithm to move / "rotate" a point in the (x, y) coordinate by x degrees relative to (0, 0)? For example, in the picture below, I want to move point A to B, by x degrees; the distance ...
3
votes
1answer
89 views
Can clipping the context before drawing help HTML5 canvas performance?
I'm looking at the workings of an HTML5 game framework, and was wondering about a particular optimization it makes.
The framework keeps track of "dirty" ares of the screen that might have changed. ...
2
votes
1answer
148 views
Rectangle tessellation in 2D Polygon Sides without overlapping
I am implementing a map-like interface for a personal project, in Javascript with HTML5 canvas, and I am mostly looking for ideas on how I could properly tessellate all 2D polygon sides with ...
0
votes
1answer
38 views
Creating a 3d roof in javascript
I need to make a 3d roof for a project, now the only thing I could come up with is using a library to make a triangle and then put a angled rectangle next to it, to get a 3d effect. Also the height of ...
0
votes
1answer
80 views
FabricJS drawing image dissapears
I'm new with the FabricJS library and I used it for the following,
I have a draggable object on the left side of my screen, which is only drag-able in an y direction. A function reads out the y ...
2
votes
2answers
343 views
How to change for drawing Manager selection option by default?
I use google.maps.drawing.DrawingManager that seems like:
drawingManager = new google.maps.drawing.DrawingManager({
drawingMode: google.maps.drawing.OverlayType.MARKER,
markerOptions: {
...
1
vote
2answers
80 views
HTML5 Canvas Drawing functions blocks other JS functions if isn't declared as first
So I have this function which I use to draw a triangle to make a "Comic Cloud". Well anyway, here's the code:
function drawTriangle(param)
{
var context = document.getElementById("triangle" + ...
1
vote
2answers
112 views
Moving A Point Along Ellipse
I have created an ellipse on my canvas and now I need to draw three lines stemming from the origin. As an example let's say the first line is 90 degrees (vertical) so the point is (0, 10). I need the ...
0
votes
1answer
81 views
Drawing App - Curve Fitting
I'm currently working on a web-based drawing app, where I use the position of the pointer to generate a line. The speed determines the width of the line.
My problem is that the browser events does ...
0
votes
1answer
128 views
Drawing with JavaScript
I'm trying to write something that draws on an image. I have a flow chart that's in a .png and I want to draw a circle around a specific step in the chart based on the page that the user is on. I ...
1
vote
1answer
175 views
Search JS-library (Free lic) drawing diagrams (tree elements) with automatic placement of nodes with
Search JS-library (free license) drawing diagrams (tree elements) with automatic placement of nodes.
License - free (preferably with the possibility of commercial use)
Example, what I need: ...
1
vote
1answer
194 views
draw imaginary path between two points and print image along that path?
Is there a way with Javascript (or jQuery) to draw lines between coordinates (not necessarily showing those lines) and then repeat an image or a letter along those "paths"?
I am talking straight lines ...
-5
votes
1answer
426 views
Free hand drawing using JavaScript [closed]
What solutions other than HTML5 canvas can be used to implement free-hand drawing in JavaScript?
I have tried using HTML5 canvas but it did not work out as i was having problem in saving the canvas ...
3
votes
2answers
144 views
Drawing fancy Circle on canvas has weird effect
I'm trying to draw a circle on a canvas and it's generating as follows:
, and zoomed:
I'm not sure why this is happening, though I've seen the effect before and I suspect it's something to do with ...
3
votes
2answers
131 views
Best way to do smooth motion for an Image
I wrote a quick program to bounce a ball on the screen. Everything works, but the image is prone to flickering and is not smooth.
I suspect that the image flickers because the velocity is ...
2
votes
1answer
89 views
Trying to draw SVG to canvas, but it's being cut short
http://jsfiddle.net/NV6Cr/1/
If you click "Create Canvas", it'll draw the SVG text at the bottom of the page onto the canvas. The only problem is that it's only taking the top left portion of the ...
0
votes
0answers
31 views
How can I determine which SVG elements are within a range of pixels using Raphael? [duplicate]
Possible Duplicate:
Hit-testing SVG shapes?
I have a web application that draws out maps with certain regions colored, similar to an election map of red and blue states in the US. I have ...
1
vote
2answers
146 views
When I draw my SVG contents to a canvas, the SVG is cropped
I have a bunch of lines of SVG text that I need to draw to a canvas. I'm converting my SVG object into an SVG data URI, applying that to an image's source, and then drawing that image to the canvas, ...
4
votes
1answer
160 views
Drawing line over picture - Javascript?
I have some graphs on my page. When the user drags his cursor over the picture, I'd like to show a horizontal line over the graph.
The one above is the starting point and the latter shows what ...
2
votes
2answers
315 views
Sync timing with two animations using RaphaelJS
Using RaphaelJS, I adapted a couple scripts to create two animations I want to combine:
First, drawing dashed lines to coordinates http://jsfiddle.net/jbirthler/CvhKx/2/
var canvas = ...
0
votes
0answers
123 views
drawImage and a jiggling effect
I'm rendering offscreen canvas content on a onscreen canvas. I'm using drawImage to achieve that. To create a scrolling effect, I move the rendering zone (a rectangle) on the offscreen canvas. The ...
0
votes
0answers
32 views
I am looking for the optimal library (preferred) or data structure to simulate notebook paper - draw, type, erase at any coordinate
I'm trying to essentially simulate paper, I've seen it done, but I'm not sure of where to start with strategies to implement or libraries that have already done it for you. I see some that work to an ...
1
vote
2answers
185 views
cleared sketch still on canvas in html5
I just get confused about canvas clear stuff -- the sketch has been cleared from canvas, but when I click the canvas to draw something new, the cleared sketch just come back at the same position ...
0
votes
1answer
101 views
clearRect doesn't erase last line
I draw two images. One says "1x10" the other "10x10". Basically, I just draw a square divided by 9 vertical lines or the same square divided by 9 horizontal and 9 vertical lines when the user clicks ...
1
vote
1answer
74 views
Canvas, calculating start point 20% in line
http://jsfiddle.net/psycketom/TUyJb/3/
I recently asked a question to calculate the endpoint of a line in canvas based on percentage: Canvas, drawing a line segment
Now, I am stuck with how to ...
0
votes
1answer
99 views
Canvas, drawing a line segment
My trigonometry is more than weak, and therefore I do not know how to draw a line segment shorter than full lines start point and end point.
http://jsfiddle.net/psycketom/TUyJb/
What I have tried, ...
2
votes
1answer
198 views
HTML5 canvas draw section of image with rotation
I am busy writing a Texture Atlas class for my HTML5 games but,
I am having trouble with drawing a section of an image with rotation.
For example: extracting a soccer ball from the spritesheet and ...
0
votes
0answers
79 views
Temporarily lock drawing in javascript
Whenever the browser is resized, I must call javascript / jquery to correctly resize some controls.
I went my way to optimize it the best I could, but I also wonder if I can temporarily freeze ...
0
votes
1answer
135 views
Resizable ellipse html5 canvas
I am trying to draw an ellipse onto an html5 canvas by defining a rectangle via the mouse. I can do this but using my current method, the ellipse is not snuggly fitting into my bounding rectangle. How ...
2
votes
2answers
131 views
JS/HTML or FLASH action diagram displayer
I'm already looking several hours for a tool that matches my requirements but can't seem to find anything.
The tool that I want (regardless of the technology) should be able to draw a diagram where ...
1
vote
1answer
615 views
How add polyline to mapbox.js map?
I'm using mapbox.js map javascript api but I didn't found native methods to creating lines, polylines, polygons and etc. I founded one example which probably can help me, but it look difficult.
I use ...
0
votes
1answer
77 views
How to constrain a text element within an square with RaphaelJS?
I'm trying to constrain a text element with custom font within a square. I'm having difficulties to let the constrainment take place.
My code looks like this for the move function:
if ...
2
votes
2answers
2k views
JavaScript framework for drawing workflow diagrams
Does anyone know about any JavaScript frameworks used for developing workflow-like diagrams? I'm looking for ways to show relationships between objects and to be able to drag the objects around ...
1
vote
1answer
764 views
How to draw gradient background in HTML or javascript?
Is there an easy way to draw a gradient like what is pictured here? Or would it be best to create an image?
I want it to be a square or rectangle, as pictured.
I would like to create multiple ...
0
votes
1answer
51 views
Is there anyway to get increased resolution for mouse movement?
I'm currently using canvas.onmousemove to keep track of the mouse position for a drawing application and the resolution (especially when moving fast) is contributing to some problems. Is there any way ...
4
votes
1answer
563 views
Draw a curved line on a webpage as the user scrolls
I was wondering if it's possible to dynamically draw a curved line on a website as the user scrolls. I'm pretty sure it could be done using HTML5 Canvas with the bezierCurveTo() method, but that just ...
0
votes
0answers
38 views
Looking for graphics library for JavaScript that provides selection of different brushes
I'm looking for graphics library for JavaScript that provides selection of different brushes. I want to be able to use JavaScript programming to draw curves to a page but need to select the brush (and ...
0
votes
1answer
508 views
Draw line on map when button is clicked (using Google Maps API 3, Javascript)
I am using Google Maps API 3. I have a map and a button. On the map, I have two markers. When I click the button, I want to draw a line between the two markers.





